From 4d4f67132c5740839c48de06fa93d34b1667f41e Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:48:00 -0700 Subject: [PATCH 01/97] Allow attack while pulling (#29703) * Make VirtualItem not block attacking * Remove unneeded usings --- Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index b67acdea4f9..42b6a3c9c74 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -12,7 +12,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory; -using Content.Shared.Item; +using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Physics; using Content.Shared.Popups; @@ -27,7 +27,6 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Robust.Shared.Toolshed.Syntax; using ItemToggleMeleeWeaponComponent = Content.Shared.Item.ItemToggle.Components.ItemToggleMeleeWeaponComponent; namespace Content.Shared.Weapons.Melee; @@ -276,7 +275,8 @@ public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen return true; } - return false; + if (!HasComp(held)) + return false; } // Use hands clothing if applicable. From e01af4d602479887915774d5a6cdcbf0d9c72188 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 11 Jul 2024 04:49:06 +0000 Subject: [PATCH 02/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f52dc2bfd37..ce042e5e136 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: The internal volume of cryopods has been increased from 101.3 to 1000L. - This speeds up cooling patients inside. - type: Tweak - id: 6400 - time: '2024-04-20T03:44:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27148 - author: UBlueberry changes: - message: Changed the guidebook entry for the Space Ninja, bringing it up to the @@ -3826,3 +3818,11 @@ id: 6899 time: '2024-07-11T00:24:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29875 +- author: ShadowCommander + changes: + - message: Players can now use melee attacks and shoves while dragging an entity + in their active hand. + type: Tweak + id: 6900 + time: '2024-07-11T04:48:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29703 From 6371a046215b90f1ca57ca8135c677786f79a413 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:14:01 -0500 Subject: [PATCH 03/97] Fix baby jail (#29896) * Revert "Revert Baby Jail (#29891)" This reverts commit 24a2866747e6de37ab2c4395bee9ea44c9211c6f. * the fix --- .../Administration/UI/AdminMenuWindow.xaml | 4 +- .../Administration/UI/AdminMenuWindow.xaml.cs | 20 ++- .../BabyJailTab/BabyJailStatusWindow.xaml | 6 + .../BabyJailTab/BabyJailStatusWindow.xaml.cs | 21 +++ .../UI/Tabs/BabyJailTab/BabyJailTab.xaml | 26 ++++ .../UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs | 75 ++++++++++ .../Systems/Admin/AdminUIController.cs | 22 +++ Content.Server.Database/Model.cs | 4 + .../Commands/BabyJailCommand.cs | 139 ++++++++++++++++++ .../Administration/Systems/AdminSystem.cs | 50 +++++++ .../Connection/ConnectionManager.cs | 66 +++++++++ .../GameTicking/GameTicker.StatusShell.cs | 6 + .../Events/BabyJailChangedEvent.cs | 22 +++ Content.Shared/CCVar/CCVars.cs | 42 ++++++ .../WizardsDen/wizardsDenGateway.toml | 6 + .../WizardsDen/wizardsDenLRPTide.toml | 4 + .../administration/commands/babyjail.ftl | 19 +++ .../administration/ui/admin-menu-window.ftl | 1 + .../administration/ui/tabs/babyjail-tab.ftl | 16 ++ .../Locale/en-US/connection-messages.ftl | 5 + 20 files changed, 545 insertions(+), 9 deletions(-) create mode 100644 Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml create mode 100644 Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs create mode 100644 Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml create mode 100644 Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs create mode 100644 Content.Server/Administration/Commands/BabyJailCommand.cs create mode 100644 Content.Shared/Administration/Events/BabyJailChangedEvent.cs create mode 100644 Resources/Locale/en-US/administration/commands/babyjail.ftl create mode 100644 Resources/Locale/en-US/administration/ui/tabs/babyjail-tab.ftl diff --git a/Content.Client/Administration/UI/AdminMenuWindow.xaml b/Content.Client/Administration/UI/AdminMenuWindow.xaml index 311d67b826c..d3d3df02d93 100644 --- a/Content.Client/Administration/UI/AdminMenuWindow.xaml +++ b/Content.Client/Administration/UI/AdminMenuWindow.xaml @@ -6,7 +6,8 @@ xmlns:tabs="clr-namespace:Content.Client.Administration.UI.Tabs" xmlns:playerTab="clr-namespace:Content.Client.Administration.UI.Tabs.PlayerTab" xmlns:objectsTab="clr-namespace:Content.Client.Administration.UI.Tabs.ObjectsTab" - xmlns:panic="clr-namespace:Content.Client.Administration.UI.Tabs.PanicBunkerTab"> + xmlns:panic="clr-namespace:Content.Client.Administration.UI.Tabs.PanicBunkerTab" + xmlns:baby="clr-namespace:Content.Client.Administration.UI.Tabs.BabyJailTab"> @@ -14,6 +15,7 @@ + diff --git a/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs b/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs index 51330a547ec..d5c43e2a500 100644 --- a/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs +++ b/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs @@ -15,14 +15,18 @@ public AdminMenuWindow() MinSize = new Vector2(650, 250); Title = Loc.GetString("admin-menu-title"); RobustXamlLoader.Load(this); - MasterTabContainer.SetTabTitle(0, Loc.GetString("admin-menu-admin-tab")); - MasterTabContainer.SetTabTitle(1, Loc.GetString("admin-menu-adminbus-tab")); - MasterTabContainer.SetTabTitle(2, Loc.GetString("admin-menu-atmos-tab")); - MasterTabContainer.SetTabTitle(3, Loc.GetString("admin-menu-round-tab")); - MasterTabContainer.SetTabTitle(4, Loc.GetString("admin-menu-server-tab")); - MasterTabContainer.SetTabTitle(5, Loc.GetString("admin-menu-panic-bunker-tab")); - MasterTabContainer.SetTabTitle(6, Loc.GetString("admin-menu-players-tab")); - MasterTabContainer.SetTabTitle(7, Loc.GetString("admin-menu-objects-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Admin, Loc.GetString("admin-menu-admin-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Adminbus, Loc.GetString("admin-menu-adminbus-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Atmos, Loc.GetString("admin-menu-atmos-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Round, Loc.GetString("admin-menu-round-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Server, Loc.GetString("admin-menu-server-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.PanicBunker, Loc.GetString("admin-menu-panic-bunker-tab")); + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + MasterTabContainer.SetTabTitle((int) TabIndex.BabyJail, Loc.GetString("admin-menu-baby-jail-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Players, Loc.GetString("admin-menu-players-tab")); + MasterTabContainer.SetTabTitle((int) TabIndex.Objects, Loc.GetString("admin-menu-objects-tab")); MasterTabContainer.OnTabChanged += OnTabChanged; } diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml new file mode 100644 index 00000000000..b8034faf52a --- /dev/null +++ b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml @@ -0,0 +1,6 @@ + + + diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs new file mode 100644 index 00000000000..9e1d53818f2 --- /dev/null +++ b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs @@ -0,0 +1,21 @@ +using Content.Client.Message; +using Content.Client.UserInterface.Controls; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.CustomControls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Administration.UI.Tabs.BabyJailTab; + +/* + * TODO: Remove me once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + +[GenerateTypedNameReferences] +public sealed partial class BabyJailStatusWindow : FancyWindow +{ + public BabyJailStatusWindow() + { + RobustXamlLoader.Load(this); + MessageLabel.SetMarkup(Loc.GetString("admin-ui-baby-jail-is-enabled")); + } +} diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml new file mode 100644 index 00000000000..dd770c2be53 --- /dev/null +++ b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs new file mode 100644 index 00000000000..aa9d6ced951 --- /dev/null +++ b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs @@ -0,0 +1,75 @@ +using Content.Shared.Administration.Events; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Console; + +/* + * TODO: Remove me once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + +namespace Content.Client.Administration.UI.Tabs.BabyJailTab; + +[GenerateTypedNameReferences] +public sealed partial class BabyJailTab : Control +{ + [Dependency] private readonly IConsoleHost _console = default!; + + private string _maxAccountAge; + private string _maxOverallMinutes; + + public BabyJailTab() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + MaxAccountAge.OnTextEntered += args => SendMaxAccountAge(args.Text); + MaxAccountAge.OnFocusExit += args => SendMaxAccountAge(args.Text); + _maxAccountAge = MaxAccountAge.Text; + + MaxOverallMinutes.OnTextEntered += args => SendMaxOverallMinutes(args.Text); + MaxOverallMinutes.OnFocusExit += args => SendMaxOverallMinutes(args.Text); + _maxOverallMinutes = MaxOverallMinutes.Text; + } + + private void SendMaxAccountAge(string text) + { + if (string.IsNullOrWhiteSpace(text) || + text == _maxAccountAge || + !int.TryParse(text, out var minutes)) + { + return; + } + + _console.ExecuteCommand($"babyjail_max_account_age {minutes}"); + } + + private void SendMaxOverallMinutes(string text) + { + if (string.IsNullOrWhiteSpace(text) || + text == _maxOverallMinutes || + !int.TryParse(text, out var minutes)) + { + return; + } + + _console.ExecuteCommand($"babyjail_max_overall_minutes {minutes}"); + } + + public void UpdateStatus(BabyJailStatus status) + { + EnabledButton.Pressed = status.Enabled; + EnabledButton.Text = Loc.GetString(status.Enabled + ? "admin-ui-baby-jail-enabled" + : "admin-ui-baby-jail-disabled" + ); + EnabledButton.ModulateSelfOverride = status.Enabled ? Color.Red : null; + ShowReasonButton.Pressed = status.ShowReason; + + MaxAccountAge.Text = status.MaxAccountAgeMinutes.ToString(); + _maxAccountAge = MaxAccountAge.Text; + + MaxOverallMinutes.Text = status.MaxOverallMinutes.ToString(); + _maxOverallMinutes = MaxOverallMinutes.Text; + } +} diff --git a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs index 392a1a96de2..d36a91c3733 100644 --- a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs +++ b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs @@ -3,6 +3,7 @@ using Content.Client.Administration.UI; using Content.Client.Administration.UI.Tabs.ObjectsTab; using Content.Client.Administration.UI.Tabs.PanicBunkerTab; +using Content.Client.Administration.UI.Tabs.BabyJailTab; using Content.Client.Administration.UI.Tabs.PlayerTab; using Content.Client.Gameplay; using Content.Client.Lobby; @@ -37,11 +38,13 @@ public sealed class AdminUIController : UIController, private AdminMenuWindow? _window; private MenuButton? AdminButton => UIManager.GetActiveUIWidgetOrNull()?.AdminButton; private PanicBunkerStatus? _panicBunker; + private BabyJailStatus? _babyJail; public override void Initialize() { base.Initialize(); SubscribeNetworkEvent(OnPanicBunkerUpdated); + SubscribeNetworkEvent(OnBabyJailUpdated); } private void OnPanicBunkerUpdated(PanicBunkerChangedEvent msg, EntitySessionEventArgs args) @@ -56,6 +59,18 @@ private void OnPanicBunkerUpdated(PanicBunkerChangedEvent msg, EntitySessionEven } } + private void OnBabyJailUpdated(BabyJailChangedEvent msg, EntitySessionEventArgs args) + { + var showDialog = _babyJail == null && msg.Status.Enabled; + _babyJail = msg.Status; + _window?.BabyJailControl.UpdateStatus(msg.Status); + + if (showDialog) + { + UIManager.CreateWindow().OpenCentered(); + } + } + public void OnStateEntered(GameplayState state) { EnsureWindow(); @@ -101,6 +116,13 @@ private void EnsureWindow() if (_panicBunker != null) _window.PanicBunkerControl.UpdateStatus(_panicBunker); + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + + if (_babyJail != null) + _window.BabyJailControl.UpdateStatus(_babyJail); + _window.PlayerTabControl.OnEntryKeyBindDown += PlayerTabEntryKeyBindDown; _window.ObjectsTabControl.OnEntryKeyBindDown += ObjectsTabEntryKeyBindDown; _window.OnOpen += OnWindowOpen; diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index bd5c4f5d7e8..dea8f9558ab 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -901,6 +901,10 @@ public enum ConnectionDenyReason : byte Whitelist = 1, Full = 2, Panic = 3, + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + BabyJail = 4, } public class ServerBanHit diff --git a/Content.Server/Administration/Commands/BabyJailCommand.cs b/Content.Server/Administration/Commands/BabyJailCommand.cs new file mode 100644 index 00000000000..058b67ca528 --- /dev/null +++ b/Content.Server/Administration/Commands/BabyJailCommand.cs @@ -0,0 +1,139 @@ +using Content.Shared.Administration; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; +using Robust.Shared.Console; + +/* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + +namespace Content.Server.Administration.Commands; + +[AdminCommand(AdminFlags.Server)] +public sealed class BabyJailCommand : LocalizedCommands +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override string Command => "babyjail"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + var toggle = Toggle(CCVars.BabyJailEnabled, shell, args, _cfg); + if (toggle == null) + return; + + shell.WriteLine(Loc.GetString(toggle.Value ? "babyjail-command-enabled" : "babyjail-command-disabled")); + } + + public static bool? Toggle(CVarDef cvar, IConsoleShell shell, string[] args, IConfigurationManager config) + { + if (args.Length > 1) + { + shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); + return null; + } + + var enabled = config.GetCVar(cvar); + + switch (args.Length) + { + case 0: + enabled = !enabled; + break; + case 1 when !bool.TryParse(args[0], out enabled): + shell.WriteError(Loc.GetString("shell-argument-must-be-boolean")); + return null; + } + + config.SetCVar(cvar, enabled); + + return enabled; + } +} + + +[AdminCommand(AdminFlags.Server)] +public sealed class BabyJailShowReasonCommand : LocalizedCommands +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override string Command => "babyjail_show_reason"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + var toggle = BabyJailCommand.Toggle(CCVars.BabyJailShowReason, shell, args, _cfg); + if (toggle == null) + return; + + shell.WriteLine(Loc.GetString(toggle.Value + ? "babyjail-command-show-reason-enabled" + : "babyjail-command-show-reason-disabled" + )); + } +} + +[AdminCommand(AdminFlags.Server)] +public sealed class BabyJailMinAccountAgeCommand : LocalizedCommands +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override string Command => "babyjail_max_account_age"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + switch (args.Length) + { + case 0: + { + var current = _cfg.GetCVar(CCVars.BabyJailMaxAccountAge); + shell.WriteLine(Loc.GetString("babyjail-command-max-account-age-is", ("minutes", current))); + break; + } + case > 1: + shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); + return; + } + + if (!int.TryParse(args[0], out var minutes)) + { + shell.WriteError(Loc.GetString("shell-argument-must-be-number")); + return; + } + + _cfg.SetCVar(CCVars.BabyJailMaxAccountAge, minutes); + shell.WriteLine(Loc.GetString("babyjail-command-max-account-age-set", ("minutes", minutes))); + } +} + +[AdminCommand(AdminFlags.Server)] +public sealed class BabyJailMinOverallHoursCommand : LocalizedCommands +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override string Command => "babyjail_max_overall_minutes"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + switch (args.Length) + { + case 0: + { + var current = _cfg.GetCVar(CCVars.BabyJailMaxOverallMinutes); + shell.WriteLine(Loc.GetString("babyjail-command-max-overall-minutes-is", ("minutes", current))); + break; + } + case > 1: + shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); + return; + } + + if (!int.TryParse(args[0], out var hours)) + { + shell.WriteError(Loc.GetString("shell-argument-must-be-number")); + return; + } + + _cfg.SetCVar(CCVars.BabyJailMaxOverallMinutes, hours); + shell.WriteLine(Loc.GetString("babyjail-command-overall-minutes-set", ("hours", hours))); + } +} diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 6a59aebfd02..16c079e4ba1 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -61,6 +61,7 @@ public sealed class AdminSystem : EntitySystem private readonly HashSet _roundActivePlayers = new(); public readonly PanicBunkerStatus PanicBunker = new(); + public readonly BabyJailStatus BabyJail = new(); public override void Initialize() { @@ -70,6 +71,7 @@ public override void Initialize() _adminManager.OnPermsChanged += OnAdminPermsChanged; _playTime.SessionPlayTimeUpdated += OnSessionPlayTimeUpdated; + // Panic Bunker Settings Subs.CVar(_config, CCVars.PanicBunkerEnabled, OnPanicBunkerChanged, true); Subs.CVar(_config, CCVars.PanicBunkerDisableWithAdmins, OnPanicBunkerDisableWithAdminsChanged, true); Subs.CVar(_config, CCVars.PanicBunkerEnableWithoutAdmins, OnPanicBunkerEnableWithoutAdminsChanged, true); @@ -78,6 +80,16 @@ public override void Initialize() Subs.CVar(_config, CCVars.PanicBunkerMinAccountAge, OnPanicBunkerMinAccountAgeChanged, true); Subs.CVar(_config, CCVars.PanicBunkerMinOverallMinutes, OnPanicBunkerMinOverallMinutesChanged, true); + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + + // Baby Jail Settings + Subs.CVar(_config, CCVars.BabyJailEnabled, OnBabyJailChanged, true); + Subs.CVar(_config, CCVars.BabyJailShowReason, OnBabyJailShowReasonChanged, true); + Subs.CVar(_config, CCVars.BabyJailMaxAccountAge, OnBabyJailMaxAccountAgeChanged, true); + Subs.CVar(_config, CCVars.BabyJailMaxOverallMinutes, OnBabyJailMaxOverallMinutesChanged, true); + SubscribeLocalEvent(OnIdentityChanged); SubscribeLocalEvent(OnPlayerAttached); SubscribeLocalEvent(OnPlayerDetached); @@ -250,6 +262,17 @@ private void OnPanicBunkerChanged(bool enabled) SendPanicBunkerStatusAll(); } + private void OnBabyJailChanged(bool enabled) + { + BabyJail.Enabled = enabled; + _chat.SendAdminAlert(Loc.GetString(enabled + ? "admin-ui-baby-jail-enabled-admin-alert" + : "admin-ui-baby-jail-disabled-admin-alert" + )); + + SendBabyJailStatusAll(); + } + private void OnPanicBunkerDisableWithAdminsChanged(bool enabled) { PanicBunker.DisableWithAdmins = enabled; @@ -274,18 +297,36 @@ private void OnPanicBunkerShowReasonChanged(bool enabled) SendPanicBunkerStatusAll(); } + private void OnBabyJailShowReasonChanged(bool enabled) + { + BabyJail.ShowReason = enabled; + SendBabyJailStatusAll(); + } + private void OnPanicBunkerMinAccountAgeChanged(int minutes) { PanicBunker.MinAccountAgeMinutes = minutes; SendPanicBunkerStatusAll(); } + private void OnBabyJailMaxAccountAgeChanged(int minutes) + { + BabyJail.MaxAccountAgeMinutes = minutes; + SendBabyJailStatusAll(); + } + private void OnPanicBunkerMinOverallMinutesChanged(int minutes) { PanicBunker.MinOverallMinutes = minutes; SendPanicBunkerStatusAll(); } + private void OnBabyJailMaxOverallMinutesChanged(int minutes) + { + BabyJail.MaxOverallMinutes = minutes; + SendBabyJailStatusAll(); + } + private void UpdatePanicBunker() { var admins = PanicBunker.CountDeadminnedAdmins @@ -327,6 +368,15 @@ private void SendPanicBunkerStatusAll() } } + private void SendBabyJailStatusAll() + { + var ev = new BabyJailChangedEvent(BabyJail); + foreach (var admin in _adminManager.AllAdmins) + { + RaiseNetworkEvent(ev, admin); + } + } + /// /// Erases a player from the round. /// This removes them and any trace of them from the round, deleting their diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 42732ff1b1c..cf7581aa4e6 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -17,6 +17,9 @@ using Robust.Shared.Player; using Robust.Shared.Timing; +/* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ namespace Content.Server.Connection { @@ -248,6 +251,14 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame } } + if (_cfg.GetCVar(CCVars.BabyJailEnabled) && adminData == null) + { + var result = await IsInvalidConnectionDueToBabyJail(userId, e); + + if (result.IsInvalid) + return (ConnectionDenyReason.BabyJail, result.Reason, null); + } + var wasInGame = EntitySystem.TryGet(out var ticker) && ticker.PlayerGameStatuses.TryGetValue(userId, out var status) && status == PlayerGameStatus.JoinedGame; @@ -277,6 +288,61 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame return null; } + private async Task<(bool IsInvalid, string Reason)> IsInvalidConnectionDueToBabyJail(NetUserId userId, NetConnectingArgs e) + { + // If you're whitelisted then bypass this whole thing + if (await _db.GetWhitelistStatusAsync(userId)) + return (false, ""); + + // Initial cvar retrieval + var showReason = _cfg.GetCVar(CCVars.BabyJailShowReason); + var reason = _cfg.GetCVar(CCVars.BabyJailCustomReason); + var maxAccountAgeMinutes = _cfg.GetCVar(CCVars.BabyJailMaxAccountAge); + var maxPlaytimeMinutes = _cfg.GetCVar(CCVars.BabyJailMaxOverallMinutes); + + // Wait some time to lookup data + var record = await _dbManager.GetPlayerRecordByUserId(userId); + + // No player record = new account or the DB is having a skill issue + if (record == null) + return (false, ""); + + var isAccountAgeInvalid = record.FirstSeenTime.CompareTo(DateTimeOffset.Now - TimeSpan.FromMinutes(maxAccountAgeMinutes)) <= 0; + if (isAccountAgeInvalid && showReason) + { + var locAccountReason = reason != string.Empty + ? reason + : Loc.GetString("baby-jail-account-denied-reason", + ("reason", + Loc.GetString( + "baby-jail-account-reason-account", + ("minutes", maxAccountAgeMinutes)))); + + return (true, locAccountReason); + } + + var overallTime = ( await _db.GetPlayTimes(e.UserId)).Find(p => p.Tracker == PlayTimeTrackingShared.TrackerOverall); + var isTotalPlaytimeInvalid = overallTime == null || overallTime.TimeSpent.TotalMinutes >= maxPlaytimeMinutes; + + if (isTotalPlaytimeInvalid && showReason) + { + var locPlaytimeReason = reason != string.Empty + ? reason + : Loc.GetString("baby-jail-account-denied-reason", + ("reason", + Loc.GetString( + "baby-jail-account-reason-overall", + ("minutes", maxPlaytimeMinutes)))); + + return (true, locPlaytimeReason); + } + + if (!showReason && isTotalPlaytimeInvalid || isAccountAgeInvalid) + return (true, Loc.GetString("baby-jail-account-denied")); + + return (false, ""); + } + private bool HasTemporaryBypass(NetUserId user) { return _temporaryBypasses.TryGetValue(user, out var time) && time > _gameTiming.RealTime; diff --git a/Content.Server/GameTicking/GameTicker.StatusShell.cs b/Content.Server/GameTicking/GameTicker.StatusShell.cs index fcf5b1c25cd..67367b94b7f 100644 --- a/Content.Server/GameTicking/GameTicker.StatusShell.cs +++ b/Content.Server/GameTicking/GameTicker.StatusShell.cs @@ -46,6 +46,12 @@ private void GetStatusResponse(JsonNode jObject) jObject["players"] = _playerManager.PlayerCount; jObject["soft_max_players"] = _cfg.GetCVar(CCVars.SoftMaxPlayers); jObject["panic_bunker"] = _cfg.GetCVar(CCVars.PanicBunkerEnabled); + + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + + jObject["baby_jail"] = _cfg.GetCVar(CCVars.BabyJailEnabled); jObject["run_level"] = (int) _runLevel; if (preset != null) jObject["preset"] = Loc.GetString(preset.ModeTitle); diff --git a/Content.Shared/Administration/Events/BabyJailChangedEvent.cs b/Content.Shared/Administration/Events/BabyJailChangedEvent.cs new file mode 100644 index 00000000000..56d5ce51626 --- /dev/null +++ b/Content.Shared/Administration/Events/BabyJailChangedEvent.cs @@ -0,0 +1,22 @@ +using Robust.Shared.Serialization; + +/* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + +namespace Content.Shared.Administration.Events; + +[Serializable, NetSerializable] +public sealed class BabyJailStatus +{ + public bool Enabled; + public bool ShowReason; + public int MaxAccountAgeMinutes; + public int MaxOverallMinutes; +} + +[Serializable, NetSerializable] +public sealed class BabyJailChangedEvent(BabyJailStatus status) : EntityEventArgs +{ + public BabyJailStatus Status = status; +} diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 8c70631b945..a0e9157e922 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -332,6 +332,48 @@ public static readonly CVarDef public static readonly CVarDef BypassBunkerWhitelist = CVarDef.Create("game.panic_bunker.whitelisted_can_bypass", true, CVar.SERVERONLY); + /* + * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. + */ + + /// + /// Whether the baby jail is currently enabled. + /// + public static readonly CVarDef BabyJailEnabled = + CVarDef.Create("game.baby_jail.enabled", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); + + /// + /// Show reason of disconnect for user or not. + /// + public static readonly CVarDef BabyJailShowReason = + CVarDef.Create("game.baby_jail.show_reason", false, CVar.SERVERONLY); + + /// + /// Maximum age of the account (from server's PoV, so from first-seen date) in minutes that can access baby + /// jailed servers. + /// + public static readonly CVarDef BabyJailMaxAccountAge = + CVarDef.Create("game.baby_jail.max_account_age", 1440, CVar.SERVERONLY); + + /// + /// Maximum overall played time allowed to access baby jailed servers. + /// + public static readonly CVarDef BabyJailMaxOverallMinutes = + CVarDef.Create("game.baby_jail.max_overall_minutes", 120, CVar.SERVERONLY); + + /// + /// A custom message that will be used for connections denied due to the baby jail. + /// If not empty, then will overwrite + /// + public static readonly CVarDef BabyJailCustomReason = + CVarDef.Create("game.baby_jail.custom_reason", string.Empty, CVar.SERVERONLY); + + /// + /// Allow bypassing the baby jail if the user is whitelisted. + /// + public static readonly CVarDef BypassBabyJailWhitelist = + CVarDef.Create("game.baby_jail.whitelisted_can_bypass", true, CVar.SERVERONLY); + /// /// Make people bonk when trying to climb certain objects like tables. /// diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml index 78732123260..b0f955bddec 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml @@ -11,6 +11,12 @@ panic_bunker.enabled = false panic_bunker.disable_with_admins = false panic_bunker.enable_without_admins = false panic_bunker.custom_reason = "" +baby_jail.enabled = true +baby_jail.show_reason = true +baby_jail.max_account_age = 5256000 # 10 years. Disabling this check specifically isn't currently supported +baby_jail.max_overall_minutes = 3000 # 50 hours +baby_jail.custom_reason = "Sorry! Only new players can join the servers, try joining another one instead!" +baby_jail.whitelisted_can_bypass = true [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDenLRPTide.toml b/Resources/ConfigPresets/WizardsDen/wizardsDenLRPTide.toml index d1cbfb9c905..21abbf2e3f0 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDenLRPTide.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDenLRPTide.toml @@ -8,6 +8,10 @@ soft_max_players = 50 hostname = "[EN] Wizard's Den Granite Flea [US East]" desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." +panic_bunker.enabled = false +panic_bunker.disable_with_admins = false +panic_bunker.enable_without_admins = false +panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/Locale/en-US/administration/commands/babyjail.ftl b/Resources/Locale/en-US/administration/commands/babyjail.ftl new file mode 100644 index 00000000000..5a9d9490517 --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/babyjail.ftl @@ -0,0 +1,19 @@ +cmd-babyjail-desc = Toggles the baby jail, which enables stricter restrictions on who's allowed to join the server. +cmd-babyjail-help = Usage: babyjail +babyjail-command-enabled = Baby jail has been enabled. +babyjail-command-disabled = Baby jail has been disabled. + +cmd-babyjail_show_reason-desc = Toggles whether or not to show connecting clients the reason why the baby jail blocked them from joining. +cmd-babyjail_show_reason-help = Usage: babyjail_show_reason +babyjail-command-show-reason-enabled = The baby jail will now show a reason to users it blocks from connecting. +babyjail-command-show-reason-disabled = The baby jail will no longer show a reason to users it blocks from connecting. + +cmd-babyjail_max_account_age-desc = Gets or sets the maximum account age in minutes that an account can have to be allowed to connect with the baby jail enabled. +cmd-babyjail_max_account_age-help = Usage: babyjail_max_account_age +babyjail-command-max-account-age-is = The maximum account age for the baby jail is {$minutes} minutes. +babyjail-command-max-account-age-set = Set the maximum account age for the baby jail to {$minutes} minutes. + +cmd-babyjail_max_overall_minutes-desc = Gets or sets the maximum overall playtime in minutes that an account can have to be allowed to connect with the baby jail enabled. +cmd-babyjail_max_overall_minutes-help = Usage: babyjail_max_overall_minutes +babyjail-command-max-overall-minutes-is = The maximum overall playtime for the baby jail is {$minutes} minutes. +babyjail-command-max-overall-minutes-set = Set the maximum overall playtime for the baby jail to {$minutes} minutes. diff --git a/Resources/Locale/en-US/administration/ui/admin-menu-window.ftl b/Resources/Locale/en-US/administration/ui/admin-menu-window.ftl index c759e4c2cb1..03b2046a9e1 100644 --- a/Resources/Locale/en-US/administration/ui/admin-menu-window.ftl +++ b/Resources/Locale/en-US/administration/ui/admin-menu-window.ftl @@ -7,5 +7,6 @@ admin-menu-atmos-tab = Atmos admin-menu-round-tab = Round admin-menu-server-tab = Server admin-menu-panic-bunker-tab = Panic Bunker +admin-menu-baby-jail-tab = Baby Jail admin-menu-players-tab = Players admin-menu-objects-tab = Objects diff --git a/Resources/Locale/en-US/administration/ui/tabs/babyjail-tab.ftl b/Resources/Locale/en-US/administration/ui/tabs/babyjail-tab.ftl new file mode 100644 index 00000000000..46dce54c1fc --- /dev/null +++ b/Resources/Locale/en-US/administration/ui/tabs/babyjail-tab.ftl @@ -0,0 +1,16 @@ +admin-ui-baby-jail-window-title = Baby Jail + +admin-ui-baby-jail-enabled = Baby Jail Enabled +admin-ui-baby-jail-disabled = Baby Jail Disabled +admin-ui-baby-jail-tooltip = The baby jail restricts players from joining if their account is too old or they do have too much overall playtime on this server. + +admin-ui-baby-jail-show-reason = Show Reason +admin-ui-baby-jail-show-reason-tooltip = Show the user why they were blocked from connecting by the baby jail. + +admin-ui-baby-jail-max-account-age = Max. Account Age +admin-ui-baby-jail-max-overall-minutes = Max. Overall Playtime + +admin-ui-baby-jail-is-enabled = [font size=20][bold]The baby jail is currently enabled.[/bold][/font] + +admin-ui-baby-jail-enabled-admin-alert = The baby jail has been enabled. +admin-ui-baby-jail-disabled-admin-alert = The baby jail has been disabled. diff --git a/Resources/Locale/en-US/connection-messages.ftl b/Resources/Locale/en-US/connection-messages.ftl index 65796b9c795..f1596d90152 100644 --- a/Resources/Locale/en-US/connection-messages.ftl +++ b/Resources/Locale/en-US/connection-messages.ftl @@ -40,3 +40,8 @@ panic-bunker-account-denied-reason = This server is in panic bunker mode, often panic-bunker-account-reason-account = Your Space Station 14 account is too new. It must be older than {$minutes} minutes panic-bunker-account-reason-overall = Your overall playtime on the server must be greater than {$minutes} $minutes +baby-jail-account-denied = This server is a newbie server, intended for new players and those who want to help them. New connections by accounts that are too old or are not on a whitelist are not accepted. Check out some other servers and see everything Space Station 14 has to offer. Have fun! +baby-jail-account-denied-reason = This server is a newbie server, intended for new players and those who want to help them. New connections by accounts that are too old or are not on a whitelist are not accepted. Check out some other servers and see everything Space Station 14 has to offer. Have fun! Reason: "{$reason}" +baby-jail-account-reason-account = Your Space Station 14 account is too old. It must be younger than {$minutes} minutes +baby-jail-account-reason-overall = Your overall playtime on the server must be younger than {$minutes} $minutes + From 19a06b6cc0498fa59ffe7328df0f524f753968f4 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:14:49 -0500 Subject: [PATCH 04/97] Fix the ability to shoot out of crates (#28961) * Fix the ability to shoot out of crates * Makes it check what inventory the player is in * use IsEntityOrParentInContainer * Fix Issues Github had * gaahhh... Prevents lasers from being shot out of crates * gaahhh... Prevents lasers from being shot out of crates * Fix laser? * hmmm... this is better looking I think? * Uncook indentation * Rerun tests? --- .../Weapons/Ranged/Systems/GunSystem.cs | 22 ++++++++++++------- .../Systems/RequireProjectileTargetSystem.cs | 13 +++++++++-- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 7f7c7ba8557..29f91988182 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -24,6 +24,7 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Robust.Shared.Containers; namespace Content.Server.Weapons.Ranged.Systems; @@ -38,6 +39,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly StunSystem _stun = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; private const float DamagePitchVariation = 0.05f; public const float GunClumsyChance = 0.5f; @@ -204,17 +206,21 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? var result = rayCastResults[0]; - // Checks if the laser should pass over unless targeted by its user - foreach (var collide in rayCastResults) + // Check if laser is shot from in a container + if (!_container.IsEntityOrParentInContainer(lastUser)) { - if (collide.HitEntity != gun.Target && - CompOrNull(collide.HitEntity)?.Active == true) + // Checks if the laser should pass over unless targeted by its user + foreach (var collide in rayCastResults) { - continue; + if (collide.HitEntity != gun.Target && + CompOrNull(collide.HitEntity)?.Active == true) + { + continue; + } + + result = collide; + break; } - - result = collide; - break; } var hit = result.HitEntity; diff --git a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs index 79b374a60f3..12838eb04d9 100644 --- a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs +++ b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs @@ -2,11 +2,14 @@ using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Standing; using Robust.Shared.Physics.Events; +using Robust.Shared.Containers; namespace Content.Shared.Damage.Components; public sealed class RequireProjectileTargetSystem : EntitySystem { + [Dependency] private readonly SharedContainerSystem _container = default!; + public override void Initialize() { SubscribeLocalEvent(PreventCollide); @@ -23,10 +26,16 @@ private void PreventCollide(Entity ent, ref Pr return; var other = args.OtherEntity; - if (HasComp(other) && + if (TryComp(other, out ProjectileComponent? projectile) && CompOrNull(other)?.Target != ent) { - args.Cancelled = true; + // Prevents shooting out of while inside of crates + var shooter = projectile.Shooter; + if (!shooter.HasValue) + return; + + if (!_container.IsEntityOrParentInContainer(shooter.Value)) + args.Cancelled = true; } } From 3ebfe468cafdac8eb9dcfc4ad9105270d29be17e Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 11 Jul 2024 05:15:55 +0000 Subject: [PATCH 05/97] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ Resources/Changelog/Changelog.yml | 15 +++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 1d270f3c0ee..56b708a79e3 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -359,5 +359,13 @@ Entries: id: 44 time: '2024-06-30T12:26:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29582 +- author: Chief-Engineer + changes: + - message: Baby jail no longer prevents accounts with no prior connections from + connecting + type: Fix + id: 45 + time: '2024-07-11T05:14:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29896 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ce042e5e136..c1589a65671 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: UBlueberry - changes: - - message: Changed the guidebook entry for the Space Ninja, bringing it up to the - same quality as the other antagonist entries. - type: Tweak - id: 6401 - time: '2024-04-20T06:10:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26650 - author: Vermidia changes: - message: You can now bless many more containers with a bible. @@ -3826,3 +3818,10 @@ id: 6900 time: '2024-07-11T04:48:00.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29703 +- author: Cojoke-dot + changes: + - message: You can no longer shoot out of crates with guns + type: Fix + id: 6901 + time: '2024-07-11T05:14:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28961 From eae04129cfd3083847bbc4ce16861ca5aacc7f45 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:33:20 -0500 Subject: [PATCH 06/97] Glass Airlocks In Spray Painter (#29869) --- .../Prototypes/Entities/Structures/Doors/airlock_groups.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml index 09ce1a05d94..4226c39f6b4 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml @@ -24,6 +24,7 @@ science: Structures/Doors/Airlocks/Glass/science.rsi cargo: Structures/Doors/Airlocks/Glass/cargo.rsi engineering: Structures/Doors/Airlocks/Glass/engineering.rsi + glass: Structures/Doors/Airlocks/Glass/glass.rsi maintenance: Structures/Doors/Airlocks/Glass/maint.rsi medical: Structures/Doors/Airlocks/Glass/medical.rsi security: Structures/Doors/Airlocks/Glass/security.rsi @@ -69,6 +70,7 @@ command: Command engineering: Engineering freezer: Civilian + glass: Civilian maintenance: Civilian medical: Medical science: Science From 1ea7e3e71fc2e9c1ee87f95f687d4054decb48d7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 11 Jul 2024 05:34:27 +0000 Subject: [PATCH 07/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c1589a65671..3f6bf5cadea 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Vermidia - changes: - - message: You can now bless many more containers with a bible. - type: Tweak - id: 6402 - time: '2024-04-20T06:16:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26526 - author: SoulFN changes: - message: Various types of glass shards now causes diffrent damage @@ -3825,3 +3818,11 @@ id: 6901 time: '2024-07-11T05:14:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/28961 +- author: Cojoke-dot + changes: + - message: The Spray Painter can now be used to paint glass airlocks to look like + regular glass airlocks. + type: Tweak + id: 6902 + time: '2024-07-11T05:33:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29869 From 1a50760e674134de6065bff3bc76739526ea5429 Mon Sep 17 00:00:00 2001 From: MFMessage <22904993+MFMessage@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:53:14 -0500 Subject: [PATCH 08/97] Picking a ghostrole as an admin will now deadmin you. (#29790) * @forcibly deadmins you * Added checks for AdminDeadminOnJoin --- Content.Server/Ghost/Roles/GhostRoleSystem.cs | 13 +++++++++++++ Content.Shared/CCVar/CCVars.cs | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index b6627f11540..dfb0c8e0865 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -31,6 +31,9 @@ using Content.Server.Popups; using Content.Shared.Verbs; using Robust.Shared.Collections; +using Content.Server.Administration.Managers; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; namespace Content.Server.Ghost.Roles { @@ -48,6 +51,8 @@ public sealed class GhostRoleSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; private uint _nextRoleIdentifier; private bool _needsUpdateGhostRoleCount = true; @@ -587,6 +592,14 @@ private void OnPlayerAttached(PlayerAttachedEvent message) // forced into a ghost role. LeaveAllRaffles(message.Player); CloseEui(message.Player); + + // The player is no longer a ghost, so they should not be adminned anymore. Deadmin them. + // Ensures that admins do not forget to deadmin themselves upon entering a ghost role. + var autoDeAdmin = _cfg.GetCVar(CCVars.AdminDeadminOnJoin); + if (autoDeAdmin && _adminManager.IsAdmin(message.Entity)) + { + _adminManager.DeAdmin(message.Player); + } } private void OnMindAdded(EntityUid uid, GhostTakeoverAvailableComponent component, MindAddedMessage args) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index a0e9157e922..044a95c4583 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -870,7 +870,7 @@ public static readonly CVarDef CVarDef.Create("admin.show_pii_onban", false, CVar.SERVERONLY); /// - /// If an admin joins a round by reading up or using the late join button, automatically + /// If an admin joins a round by readying up or using the late join button, automatically /// de-admin them. /// public static readonly CVarDef AdminDeadminOnJoin = From e45f55e36d67ace2c2c5bc723082255f2ed909c4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 11 Jul 2024 05:54:21 +0000 Subject: [PATCH 09/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3f6bf5cadea..edf342f5aa5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SoulFN - changes: - - message: Various types of glass shards now causes diffrent damage - type: Tweak - id: 6403 - time: '2024-04-20T06:21:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26783 - author: Vermidia changes: - message: Most medical roles now can choose to start with nitrile or latex gloves, @@ -3826,3 +3819,10 @@ id: 6902 time: '2024-07-11T05:33:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29869 +- author: MFMessage + changes: + - message: Picking a ghost role as an admin will now deadmin. + type: Fix + id: 6903 + time: '2024-07-11T05:53:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29790 From 02636386b5140bdeae7583f2a3eb1e17166e5db3 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 11 Jul 2024 05:55:56 +0000 Subject: [PATCH 10/97] item toggling giga rework + full ninja refactor (#28039) * item toggle refactoring and some new systems * add ToggleClothing component/system * unhardcode magboots gravity logic * make magboots and speedboots use ItemToggle and stuff * remove now useless clothing components * update client/server magboots systems * add note to use ItemToggledEvent in ToggleActionEvent doc * refactor PowerCellDraw to use ItemToggle for ui open/close control * add TryUseCharges, refactor charges system * update magboot trigger code * make borg use ItemToggle, network SelectedModule instead of now removed Activated * add AccessToggle for borg * the giga ninja refactor * update ninja yml * update ItemToggle usage for some stuff * fix activatableui requires power * random fixing * yaml fixing * nuke ItemToggleDisarmMalus * make defib use ItemToggle * make things that use power not turn on if missing use charge * pro * fix sound prediction * bruh * proximity detector use ItemToggle * oop * big idiot syndrome * fix ninja spawn rule and make it generic * fix ninja spawn rule yml * move loading profiles into AntagLoadProfileRule * more ninja refactor * ninja yml fixes * the dreaded copy paste ops * remove useless NinjaRuleComponent and ue AntagSelection for greeting * fix invisibility * move IsCompleted to SharedObjectivesSystem * ability fixes * oop fix powercell instantly draining itself * sentient speedboots gaming * make reflect use ItemToggle * fix other test * loadprofilerule moved into its own pr * remove conflict with dragon refactor * remove all GenericAntag code from ninja * ) * probably * remove old enabled * great language bravo vince * GREAT LANGUAGE * who made this language * because it stinks * reparent blood-red magboots to magboots probbbly works * most of the review stuff * hasGrav doesnt mean what i thought it did * make health analyzer use itemtoggle, not fail test * fix mag/speed boots being wacky * UNTROLL * add ItemToggle to the random health analyzers * a * remove unused obsolete borg func * untrolling * :trollface: * fix test * fix * g * untroll --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Items/Systems/ItemToggleSystem.cs | 9 - .../Ninja/Systems/ItemCreatorSystem.cs | 5 + .../Ninja/Systems/NinjaGlovesSystem.cs | 7 +- .../Ninja/Systems/NinjaSuitSystem.cs | 21 +-- Content.Client/Ninja/Systems/NinjaSystem.cs | 9 +- .../Ninja/Systems/SpiderChargeSystem.cs | 5 + .../Interaction/InteractionTest.Helpers.cs | 2 +- .../Tests/Interaction/InteractionTest.cs | 4 +- .../Components/AutoRechargeComponent.cs | 1 + .../Charges/Systems/ChargesSystem.cs | 12 +- .../Rules/Components/NinjaRuleComponent.cs | 27 --- .../ItemToggleDisarmMalusComponent.cs | 22 --- .../Components/ItemToggleSharpComponent.cs | 9 - .../Item/ItemToggle/ItemToggleSystem.cs | 44 ----- .../Components/HealthAnalyzerComponent.cs | 3 + Content.Server/Medical/DefibrillatorSystem.cs | 68 +------ .../Medical/HealthAnalyzerSystem.cs | 21 ++- .../Ninja/Events/BatteryChangedEvent.cs | 2 +- .../Ninja/Systems/BatteryDrainerSystem.cs | 21 ++- .../Ninja/Systems/ItemCreatorSystem.cs | 57 ++++++ .../Ninja/Systems/NinjaGlovesSystem.cs | 102 +++-------- .../Ninja/Systems/NinjaSuitSystem.cs | 79 ++------- .../Ninja/Systems/SpaceNinjaSystem.cs | 80 +-------- .../Ninja/Systems/SpiderChargeSystem.cs | 3 +- .../Ninja/Systems/StunProviderSystem.cs | 24 +-- .../Objectives/Systems/CodeConditionSystem.cs | 14 -- .../PowerCell/PowerCellSystem.Draw.cs | 38 ++-- Content.Server/PowerCell/PowerCellSystem.cs | 2 +- .../Silicons/Borgs/BorgSystem.Modules.cs | 4 +- Content.Server/Silicons/Borgs/BorgSystem.cs | 79 +++------ .../Components/NinjaSpawnRuleComponent.cs | 16 -- .../Components/SpaceSpawnRuleComponent.cs | 25 +++ .../{NinjaSpawnRule.cs => SpaceSpawnRule.cs} | 38 ++-- .../Stunnable/Systems/StunbatonSystem.cs | 2 +- .../Weapons/Misc/TetherGunSystem.cs | 6 +- .../Systems/ArtifactMagnetTriggerSystem.cs | 9 +- .../Components/AccessToggleComponent.cs | 11 ++ .../Access/Systems/AccessToggleSystem.cs | 21 +++ .../Beeper/Components/BeeperComponent.cs | 11 +- Content.Shared/Beeper/Systems/BeeperSystem.cs | 37 ++-- .../Beeper/Systems/ProximityBeeperSystem.cs | 84 +-------- .../Charges/Systems/SharedChargesSystem.cs | 33 +++- .../ClothingSpeedModifierComponent.cs | 19 +- .../Clothing/ClothingSpeedModifierSystem.cs | 107 ++--------- .../Components/StealthClothingComponent.cs | 43 ----- .../Components/ToggleClothingComponent.cs | 40 +++++ .../ToggleClothingSpeedComponent.cs | 35 ---- .../EntitySystems/StealthClothingSystem.cs | 144 --------------- .../EntitySystems/ToggleClothingSystem.cs | 58 ++++++ Content.Shared/Clothing/MagbootsComponent.cs | 18 +- Content.Shared/Clothing/MagbootsSystem.cs | 90 ++++++++++ .../Clothing/SharedMagbootsSystem.cs | 160 ----------------- .../Item/ItemToggle/ComponentTogglerSystem.cs | 26 +++ .../Components/ComponentTogglerComponent.cs | 32 ++++ .../ItemToggleActiveSoundComponent.cs | 4 +- .../Components/ItemToggleComponent.cs | 9 +- .../Components/ToggleVerbComponent.cs | 18 ++ ...temToggleSystem.cs => ItemToggleSystem.cs} | 167 ++++++++++-------- .../Item/ItemToggle/ToggleVerbSystem.cs | 34 ++++ .../Medical/DefibrillatorComponent.cs | 16 +- .../Components/BatteryDrainerComponent.cs | 12 +- .../Components/BombingTargetComponent.cs | 4 +- .../Ninja/Components/DashAbilityComponent.cs | 14 +- .../Ninja/Components/EmagProviderComponent.cs | 13 +- .../Ninja/Components/EnergyKatanaComponent.cs | 4 +- .../Ninja/Components/ItemCreatorComponent.cs | 52 ++++++ .../Ninja/Components/NinjaGlovesComponent.cs | 44 +++-- .../Ninja/Components/NinjaSuitComponent.cs | 87 ++------- .../Ninja/Components/SpaceNinjaComponent.cs | 19 +- .../Ninja/Components/SpiderChargeComponent.cs | 9 +- .../Ninja/Components/StunProviderComponent.cs | 38 ++-- .../Ninja/Systems/DashAbilitySystem.cs | 80 +++------ .../Ninja/Systems/EmagProviderSystem.cs | 28 +-- .../Ninja/Systems/EnergyKatanaSystem.cs | 25 +-- .../Ninja/Systems/ItemCreatorSystem.cs | 56 ++++++ .../Systems/SharedBatteryDrainerSystem.cs | 25 ++- .../Ninja/Systems/SharedNinjaGlovesSystem.cs | 108 ++++++----- .../Ninja/Systems/SharedNinjaSuitSystem.cs | 154 +++++++++------- .../Ninja/Systems/SharedSpaceNinjaSystem.cs | 59 ++++--- .../Ninja/Systems/SharedSpiderChargeSystem.cs | 6 + .../Ninja/Systems/SharedStunProviderSystem.cs | 18 +- .../Systems/SharedObjectivesSystem.cs | 35 +++- .../Pinpointer/SharedProximityBeeper.cs | 9 - .../PowerCell/PowerCellDrawComponent.cs | 18 +- .../PowerCell/SharedPowerCellSystem.cs | 27 ++- .../Components/ProximityDetectorComponent.cs | 8 +- .../Systems/ProximityDetectionSystem.cs | 86 +++++---- .../Borgs/Components/BorgChassisComponent.cs | 8 +- .../Silicons/Borgs/SharedBorgSystem.cs | 4 +- .../Toggleable/ToggleActionEvent.cs | 7 +- .../Tools/Systems/SharedToolSystem.cs | 2 +- .../ActivatableUISystem.Power.cs | 24 ++- .../Weapons/Reflect/ReflectComponent.cs | 7 +- .../Weapons/Reflect/ReflectSystem.cs | 14 +- Resources/Prototypes/Actions/ninja.yml | 10 +- .../Entities/Clothing/Hands/gloves.yml | 26 ++- .../Entities/Clothing/Head/misc.yml | 30 ++++ .../Entities/Clothing/OuterClothing/suits.yml | 26 ++- .../Entities/Clothing/Shoes/magboots.yml | 108 ++++------- .../Entities/Clothing/Shoes/misc.yml | 13 +- .../Entities/Clothing/base_clothing.yml | 9 + .../Entities/Markers/Spawners/ghost_roles.yml | 7 +- .../Mobs/Cyborgs/base_borg_chassis.yml | 5 + .../Prototypes/Entities/Mobs/Player/human.yml | 25 --- .../Prototypes/Entities/Mobs/Species/base.yml | 3 - .../Objects/Devices/base_handheld.yml | 11 ++ .../Entities/Objects/Devices/pda.yml | 3 + .../Entities/Objects/Devices/station_map.yml | 11 +- .../Entities/Objects/Shields/shields.yml | 13 +- .../Objects/Specific/Medical/defib.yml | 5 + .../Medical/handheld_crew_monitor.yml | 8 +- .../Specific/Medical/healthanalyzer.yml | 2 + .../Objects/Specific/Research/anomaly.yml | 9 +- .../Objects/Tools/handheld_mass_scanner.yml | 3 +- .../Entities/Objects/Tools/welders.yml | 6 +- .../Weapons/Guns/Launchers/launchers.yml | 4 + .../Objects/Weapons/Melee/e_sword.yml | 32 ++-- .../Entities/Objects/Weapons/Melee/sword.yml | 2 - .../Structures/Machines/Medical/cryo_pod.yml | 1 + Resources/Prototypes/GameRules/events.yml | 38 +++- Resources/Prototypes/GameRules/midround.yml | 18 -- 121 files changed, 1617 insertions(+), 2002 deletions(-) delete mode 100644 Content.Client/Items/Systems/ItemToggleSystem.cs create mode 100644 Content.Client/Ninja/Systems/ItemCreatorSystem.cs create mode 100644 Content.Client/Ninja/Systems/SpiderChargeSystem.cs delete mode 100644 Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs delete mode 100644 Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs delete mode 100644 Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs delete mode 100644 Content.Server/Item/ItemToggle/ItemToggleSystem.cs create mode 100644 Content.Server/Ninja/Systems/ItemCreatorSystem.cs delete mode 100644 Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs create mode 100644 Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs rename Content.Server/StationEvents/Events/{NinjaSpawnRule.cs => SpaceSpawnRule.cs} (53%) create mode 100644 Content.Shared/Access/Components/AccessToggleComponent.cs create mode 100644 Content.Shared/Access/Systems/AccessToggleSystem.cs delete mode 100644 Content.Shared/Clothing/Components/StealthClothingComponent.cs create mode 100644 Content.Shared/Clothing/Components/ToggleClothingComponent.cs delete mode 100644 Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs delete mode 100644 Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs create mode 100644 Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs create mode 100644 Content.Shared/Clothing/MagbootsSystem.cs delete mode 100644 Content.Shared/Clothing/SharedMagbootsSystem.cs create mode 100644 Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs create mode 100644 Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs create mode 100644 Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs rename Content.Shared/Item/ItemToggle/{SharedItemToggleSystem.cs => ItemToggleSystem.cs} (54%) create mode 100644 Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs create mode 100644 Content.Shared/Ninja/Components/ItemCreatorComponent.cs create mode 100644 Content.Shared/Ninja/Systems/ItemCreatorSystem.cs create mode 100644 Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs delete mode 100644 Content.Shared/Pinpointer/SharedProximityBeeper.cs create mode 100644 Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml diff --git a/Content.Client/Items/Systems/ItemToggleSystem.cs b/Content.Client/Items/Systems/ItemToggleSystem.cs deleted file mode 100644 index 46d6f1b464d..00000000000 --- a/Content.Client/Items/Systems/ItemToggleSystem.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Item.ItemToggle; - -namespace Content.Shared.Item; - -/// -public sealed class ItemToggleSystem : SharedItemToggleSystem -{ - -} diff --git a/Content.Client/Ninja/Systems/ItemCreatorSystem.cs b/Content.Client/Ninja/Systems/ItemCreatorSystem.cs new file mode 100644 index 00000000000..9ab62cc12db --- /dev/null +++ b/Content.Client/Ninja/Systems/ItemCreatorSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Ninja.Systems; + +namespace Content.Client.Ninja.Systems; + +public sealed class ItemCreatorSystem : SharedItemCreatorSystem; diff --git a/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs index 7758c3d7e2b..5b07b1588fd 100644 --- a/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs +++ b/Content.Client/Ninja/Systems/NinjaGlovesSystem.cs @@ -2,9 +2,4 @@ namespace Content.Client.Ninja.Systems; -/// -/// Does nothing special, only exists to provide a client implementation. -/// -public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem -{ -} +public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem; diff --git a/Content.Client/Ninja/Systems/NinjaSuitSystem.cs b/Content.Client/Ninja/Systems/NinjaSuitSystem.cs index fde1801b37d..852ea8af46e 100644 --- a/Content.Client/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Client/Ninja/Systems/NinjaSuitSystem.cs @@ -1,24 +1,5 @@ -using Content.Shared.Clothing.EntitySystems; -using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; namespace Content.Client.Ninja.Systems; -/// -/// Disables cloak prediction since client has no knowledge of battery power. -/// Cloak will still be enabled after server tells it. -/// -public sealed class NinjaSuitSystem : SharedNinjaSuitSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnAttemptStealth); - } - - private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args) - { - args.Cancel(); - } -} +public sealed class NinjaSuitSystem : SharedNinjaSuitSystem; diff --git a/Content.Client/Ninja/Systems/NinjaSystem.cs b/Content.Client/Ninja/Systems/NinjaSystem.cs index aa2fa2047f1..958dc6a5d9a 100644 --- a/Content.Client/Ninja/Systems/NinjaSystem.cs +++ b/Content.Client/Ninja/Systems/NinjaSystem.cs @@ -2,11 +2,4 @@ namespace Content.Client.Ninja.Systems; -/// -/// Currently does nothing special clientside. -/// All functionality is in shared and server. -/// Only exists to prevent crashing. -/// -public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem -{ -} +public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem; diff --git a/Content.Client/Ninja/Systems/SpiderChargeSystem.cs b/Content.Client/Ninja/Systems/SpiderChargeSystem.cs new file mode 100644 index 00000000000..b107fd3867d --- /dev/null +++ b/Content.Client/Ninja/Systems/SpiderChargeSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Ninja.Systems; + +namespace Content.Client.Ninja.Systems; + +public sealed class SpiderChargeSystem : SharedSpiderChargeSystem; diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index a09126a7f7c..33e4da3fa34 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -171,7 +171,7 @@ await Server.WaitPost(() => // turn on welders if (enableToggleable && SEntMan.TryGetComponent(item, out itemToggle) && !itemToggle.Activated) { - Assert.That(ItemToggleSys.TryActivate(item, playerEnt, itemToggle: itemToggle)); + Assert.That(ItemToggleSys.TryActivate((item, itemToggle), user: playerEnt)); } }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 457d3e31920..b3d684e01a0 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -104,7 +104,7 @@ public abstract partial class InteractionTest protected Content.Server.Construction.ConstructionSystem SConstruction = default!; protected SharedDoAfterSystem DoAfterSys = default!; protected ToolSystem ToolSys = default!; - protected SharedItemToggleSystem ItemToggleSys = default!; + protected ItemToggleSystem ItemToggleSys = default!; protected InteractionTestSystem STestSystem = default!; protected SharedTransformSystem Transform = default!; protected SharedMapSystem MapSystem = default!; @@ -165,7 +165,7 @@ public virtual async Task Setup() HandSys = SEntMan.System(); InteractSys = SEntMan.System(); ToolSys = SEntMan.System(); - ItemToggleSys = SEntMan.System(); + ItemToggleSys = SEntMan.System(); DoAfterSys = SEntMan.System(); Transform = SEntMan.System(); MapSystem = SEntMan.System(); diff --git a/Content.Server/Charges/Components/AutoRechargeComponent.cs b/Content.Server/Charges/Components/AutoRechargeComponent.cs index 9dcf555ea93..165b181dcbc 100644 --- a/Content.Server/Charges/Components/AutoRechargeComponent.cs +++ b/Content.Server/Charges/Components/AutoRechargeComponent.cs @@ -7,6 +7,7 @@ namespace Content.Server.Charges.Components; /// Something with limited charges that can be recharged automatically. /// Requires LimitedChargesComponent to function. /// +// TODO: no reason this cant be predicted and server system deleted [RegisterComponent, AutoGenerateComponentPause] [Access(typeof(ChargesSystem))] public sealed partial class AutoRechargeComponent : Component diff --git a/Content.Server/Charges/Systems/ChargesSystem.cs b/Content.Server/Charges/Systems/ChargesSystem.cs index 03e192e680e..974928ee4bb 100644 --- a/Content.Server/Charges/Systems/ChargesSystem.cs +++ b/Content.Server/Charges/Systems/ChargesSystem.cs @@ -37,15 +37,17 @@ protected override void OnExamine(EntityUid uid, LimitedChargesComponent comp, E args.PushMarkup(Loc.GetString("limited-charges-recharging", ("seconds", timeRemaining))); } - public override void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + public override void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) { - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return; var startRecharge = comp.Charges == comp.MaxCharges; - base.UseCharge(uid, comp); - // start the recharge time after first use at full charge - if (startRecharge && TryComp(uid, out var recharge)) + base.AddCharges(uid, change, comp); + + // if a charge was just used from full, start the recharge timer + // TODO: probably make this an event instead of having le server system that just does this + if (change < 0 && startRecharge && TryComp(uid, out var recharge)) recharge.NextChargeTime = _timing.CurTime + recharge.RechargeDuration; } } diff --git a/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs deleted file mode 100644 index fa352eb320b..00000000000 --- a/Content.Server/GameTicking/Rules/Components/NinjaRuleComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Ninja.Systems; -using Content.Shared.Communications; -using Content.Shared.Random; -using Robust.Shared.Audio; -using Robust.Shared.Prototypes; - -namespace Content.Server.GameTicking.Rules.Components; - -/// -/// Stores some configuration used by the ninja system. -/// Objectives and roundend summary are handled by . -/// -[RegisterComponent, Access(typeof(SpaceNinjaSystem))] -public sealed partial class NinjaRuleComponent : Component -{ - /// - /// List of threats that can be called in. Copied onto when gloves are enabled. - /// - [DataField(required: true)] - public ProtoId Threats = string.Empty; - - /// - /// Sound played when making the player a ninja via antag control or ghost role - /// - [DataField] - public SoundSpecifier? GreetingSound = new SoundPathSpecifier("/Audio/Misc/ninja_greeting.ogg"); -} diff --git a/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs b/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs deleted file mode 100644 index 30fa84ed90b..00000000000 --- a/Content.Server/Item/ItemToggle/Components/ItemToggleDisarmMalusComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Content.Server.Item; - -/// -/// Handles whether this item applies a disarm malus when active. -/// -[RegisterComponent] -public sealed partial class ItemToggleDisarmMalusComponent : Component -{ - /// - /// Item has this modifier to the chance to disarm when activated. - /// If null, the value will be inferred from the current malus just before the malus is first deactivated. - /// - [ViewVariables(VVAccess.ReadOnly), DataField] - public float? ActivatedDisarmMalus = null; - - /// - /// Item has this modifier to the chance to disarm when deactivated. If none is mentioned, it uses the item's default disarm modifier. - /// If null, the value will be inferred from the current malus just before the malus is first activated. - /// - [ViewVariables(VVAccess.ReadOnly), DataField] - public float? DeactivatedDisarmMalus = null; -} diff --git a/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs b/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs deleted file mode 100644 index 227491b16c2..00000000000 --- a/Content.Server/Item/ItemToggle/Components/ItemToggleSharpComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.Item; - -/// -/// Handles whether this item is sharp when toggled on. -/// -[RegisterComponent] -public sealed partial class ItemToggleSharpComponent : Component -{ -} diff --git a/Content.Server/Item/ItemToggle/ItemToggleSystem.cs b/Content.Server/Item/ItemToggle/ItemToggleSystem.cs deleted file mode 100644 index f98415eb08f..00000000000 --- a/Content.Server/Item/ItemToggle/ItemToggleSystem.cs +++ /dev/null @@ -1,44 +0,0 @@ -using Content.Server.CombatMode.Disarm; -using Content.Server.Kitchen.Components; -using Content.Shared.Item.ItemToggle; -using Content.Shared.Item.ItemToggle.Components; - -namespace Content.Server.Item; - -public sealed class ItemToggleSystem : SharedItemToggleSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(ToggleSharp); - SubscribeLocalEvent(ToggleMalus); - } - - private void ToggleSharp(Entity ent, ref ItemToggledEvent args) - { - // TODO generalize this into a "ToggleComponentComponent", though probably with a better name - if (args.Activated) - EnsureComp(ent); - else - RemCompDeferred(ent); - } - - private void ToggleMalus(Entity ent, ref ItemToggledEvent args) - { - if (!TryComp(ent, out var malus)) - return; - - if (args.Activated) - { - ent.Comp.DeactivatedDisarmMalus ??= malus.Malus; - if (ent.Comp.ActivatedDisarmMalus is {} activatedMalus) - malus.Malus = activatedMalus; - return; - } - - ent.Comp.ActivatedDisarmMalus ??= malus.Malus; - if (ent.Comp.DeactivatedDisarmMalus is {} deactivatedMalus) - malus.Malus = deactivatedMalus; - } -} diff --git a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs index 6380b71c8a0..de40e98e182 100644 --- a/Content.Server/Medical/Components/HealthAnalyzerComponent.cs +++ b/Content.Server/Medical/Components/HealthAnalyzerComponent.cs @@ -6,6 +6,9 @@ namespace Content.Server.Medical.Components; /// /// After scanning, retrieves the target Uid to use with its related UI. /// +/// +/// Requires ItemToggleComponent. +/// [RegisterComponent, AutoGenerateComponentPause] [Access(typeof(HealthAnalyzerSystem), typeof(CryoPodSystem))] public sealed partial class HealthAnalyzerComponent : Component diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 4373532f018..1896f51eddc 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Interaction; using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Medical; using Content.Shared.Mind; using Content.Shared.Mobs; @@ -37,6 +38,7 @@ public sealed class DefibrillatorSystem : EntitySystem [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly ElectrocutionSystem _electrocution = default!; [Dependency] private readonly EuiManager _euiManager = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly RottingSystem _rotting = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; @@ -50,30 +52,10 @@ public sealed class DefibrillatorSystem : EntitySystem /// public override void Initialize() { - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); } - private void OnUseInHand(EntityUid uid, DefibrillatorComponent component, UseInHandEvent args) - { - if (args.Handled || !TryComp(uid, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((uid, useDelay))) - return; - - if (!TryToggle(uid, component, args.User)) - return; - - args.Handled = true; - _useDelay.TryResetDelay((uid, useDelay)); - } - - private void OnPowerCellSlotEmpty(EntityUid uid, DefibrillatorComponent component, ref PowerCellSlotEmptyEvent args) - { - if (!TerminatingOrDeleted(uid)) - TryDisable(uid, component); - } - private void OnAfterInteract(EntityUid uid, DefibrillatorComponent component, AfterInteractEvent args) { if (args.Handled || args.Target is not { } target) @@ -96,54 +78,12 @@ private void OnDoAfter(EntityUid uid, DefibrillatorComponent component, Defibril Zap(uid, target, args.User, component); } - public bool TryToggle(EntityUid uid, DefibrillatorComponent? component = null, EntityUid? user = null) - { - if (!Resolve(uid, ref component)) - return false; - - return component.Enabled - ? TryDisable(uid, component) - : TryEnable(uid, component, user); - } - - public bool TryEnable(EntityUid uid, DefibrillatorComponent? component = null, EntityUid? user = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (component.Enabled) - return false; - - if (!_powerCell.HasActivatableCharge(uid)) - return false; - - component.Enabled = true; - _appearance.SetData(uid, ToggleVisuals.Toggled, true); - _audio.PlayPvs(component.PowerOnSound, uid); - return true; - } - - public bool TryDisable(EntityUid uid, DefibrillatorComponent? component = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (!component.Enabled) - return false; - - component.Enabled = false; - _appearance.SetData(uid, ToggleVisuals.Toggled, false); - - _audio.PlayPvs(component.PowerOffSound, uid); - return true; - } - public bool CanZap(EntityUid uid, EntityUid target, EntityUid? user = null, DefibrillatorComponent? component = null) { if (!Resolve(uid, ref component)) return false; - if (!component.Enabled) + if (!_toggle.IsActivated(uid)) { if (user != null) _popup.PopupEntity(Loc.GetString("defibrillator-not-on"), uid, user.Value); @@ -257,7 +197,7 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo // if we don't have enough power left for another shot, turn it off if (!_powerCell.HasActivatableCharge(uid)) - TryDisable(uid, component); + _toggle.TryDeactivate(uid); // TODO clean up this clown show above var ev = new TargetDefibrillatedEvent(user, (uid, component)); diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index c72cd2ddf6f..1d6e564a32d 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -8,6 +8,8 @@ using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.MedicalScanner; using Content.Shared.Mobs.Components; using Content.Shared.Popups; @@ -26,6 +28,7 @@ public sealed class HealthAnalyzerSystem : EntitySystem [Dependency] private readonly PowerCellSystem _cell = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; @@ -36,7 +39,7 @@ public override void Initialize() SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnInsertedIntoContainer); - SubscribeLocalEvent(OnPowerCellSlotEmpty); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnDropped); } @@ -111,16 +114,16 @@ private void OnDoAfter(Entity uid, ref HealthAnalyzerDo private void OnInsertedIntoContainer(Entity uid, ref EntGotInsertedIntoContainerMessage args) { if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + _toggle.TryDeactivate(uid.Owner); } /// - /// Disable continuous updates once battery is dead + /// Disable continuous updates once turned off /// - private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + if (!args.Activated && ent.Comp.ScannedEntity is { } patient) + StopAnalyzingEntity(ent, patient); } /// @@ -129,7 +132,7 @@ private void OnPowerCellSlotEmpty(Entity uid, ref Power private void OnDropped(Entity uid, ref DroppedEvent args) { if (uid.Comp.ScannedEntity is { } patient) - StopAnalyzingEntity(uid, patient); + _toggle.TryDeactivate(uid.Owner); } private void OpenUserInterface(EntityUid user, EntityUid analyzer) @@ -150,7 +153,7 @@ private void BeginAnalyzingEntity(Entity healthAnalyzer //Link the health analyzer to the scanned entity healthAnalyzer.Comp.ScannedEntity = target; - _cell.SetPowerCellDrawEnabled(healthAnalyzer, true); + _toggle.TryActivate(healthAnalyzer.Owner); UpdateScannedUser(healthAnalyzer, target, true); } @@ -165,7 +168,7 @@ private void StopAnalyzingEntity(Entity healthAnalyzer, //Unlink the analyzer healthAnalyzer.Comp.ScannedEntity = null; - _cell.SetPowerCellDrawEnabled(target, false); + _toggle.TryDeactivate(healthAnalyzer.Owner); UpdateScannedUser(healthAnalyzer, target, false); } diff --git a/Content.Server/Ninja/Events/BatteryChangedEvent.cs b/Content.Server/Ninja/Events/BatteryChangedEvent.cs index 45bfedfee76..1848e881868 100644 --- a/Content.Server/Ninja/Events/BatteryChangedEvent.cs +++ b/Content.Server/Ninja/Events/BatteryChangedEvent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Ninja.Events; /// -/// Raised on the ninja when the suit has its powercell changed. +/// Raised on the ninja and suit when the suit has its powercell changed. /// [ByRefEvent] public record struct NinjaBatteryChangedEvent(EntityUid Battery, EntityUid BatteryHolder); diff --git a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs index 59dec556fa0..4baf0913cec 100644 --- a/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs +++ b/Content.Server/Ninja/Systems/BatteryDrainerSystem.cs @@ -33,16 +33,17 @@ public override void Initialize() /// Start do after for draining a power source. /// Can't predict PNBC existing so only done on server. /// - private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { + var (uid, comp) = ent; var target = args.Target; - if (args.Handled || comp.BatteryUid == null || !HasComp(target)) + if (args.Handled || comp.BatteryUid is not {} battery || !HasComp(target)) return; // handles even if battery is full so you can actually see the poup args.Handled = true; - if (_battery.IsFull(comp.BatteryUid.Value)) + if (_battery.IsFull(battery)) { _popup.PopupEntity(Loc.GetString("battery-drainer-full"), uid, uid, PopupType.Medium); return; @@ -59,23 +60,24 @@ private void OnBeforeInteractHand(EntityUid uid, BatteryDrainerComponent comp, B _doAfter.TryStartDoAfter(doAfterArgs); } - private void OnBatteryChanged(EntityUid uid, BatteryDrainerComponent comp, ref NinjaBatteryChangedEvent args) + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) { - SetBattery(uid, args.Battery, comp); + SetBattery((ent, ent.Comp), args.Battery); } /// - protected override void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + protected override void OnDoAfterAttempt(Entity ent, ref DoAfterAttemptEvent args) { - base.OnDoAfterAttempt(uid, comp, args); + base.OnDoAfterAttempt(ent, ref args); - if (comp.BatteryUid == null || _battery.IsFull(comp.BatteryUid.Value)) + if (ent.Comp.BatteryUid is not {} battery || _battery.IsFull(battery)) args.Cancel(); } /// - protected override bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + protected override bool TryDrainPower(Entity ent, EntityUid target) { + var (uid, comp) = ent; if (comp.BatteryUid == null || !TryComp(comp.BatteryUid.Value, out var battery)) return false; @@ -98,6 +100,7 @@ protected override bool TryDrainPower(EntityUid uid, BatteryDrainerComponent com var output = input * comp.DrainEfficiency; _battery.SetCharge(comp.BatteryUid.Value, battery.CurrentCharge + output, battery); + // TODO: create effect message or something Spawn("EffectSparks", Transform(target).Coordinates); _audio.PlayPvs(comp.SparkSound, target); _popup.PopupEntity(Loc.GetString("battery-drainer-success", ("battery", target)), uid, uid); diff --git a/Content.Server/Ninja/Systems/ItemCreatorSystem.cs b/Content.Server/Ninja/Systems/ItemCreatorSystem.cs new file mode 100644 index 00000000000..d7a7be995db --- /dev/null +++ b/Content.Server/Ninja/Systems/ItemCreatorSystem.cs @@ -0,0 +1,57 @@ +using Content.Server.Ninja.Events; +using Content.Server.Power.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; +using Content.Shared.Popups; + +namespace Content.Server.Ninja.Systems; + +public sealed class ItemCreatorSystem : SharedItemCreatorSystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCreateItem); + SubscribeLocalEvent(OnBatteryChanged); + } + + private void OnCreateItem(Entity ent, ref CreateItemEvent args) + { + var (uid, comp) = ent; + if (comp.Battery is not {} battery) + return; + + args.Handled = true; + + var user = args.Performer; + if (!_battery.TryUseCharge(battery, comp.Charge)) + { + _popup.PopupEntity(Loc.GetString(comp.NoPowerPopup), user, user); + return; + } + + var ev = new CreateItemAttemptEvent(user); + RaiseLocalEvent(uid, ref ev); + if (ev.Cancelled) + return; + + // try to put throwing star in hand, otherwise it goes on the ground + var star = Spawn(comp.SpawnedPrototype, Transform(user).Coordinates); + _hands.TryPickupAnyHand(user, star); + } + + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) + { + if (ent.Comp.Battery == args.Battery) + return; + + ent.Comp.Battery = args.Battery; + Dirty(ent, ent.Comp); + } +} diff --git a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs index ac76ae6b771..3aaf7c5d58e 100644 --- a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs @@ -1,13 +1,8 @@ -using Content.Server.Communications; -using Content.Server.Mind; using Content.Server.Ninja.Events; -using Content.Server.Objectives.Systems; -using Content.Shared.Communications; -using Content.Shared.CriminalRecords.Components; +using Content.Shared.Mind; +using Content.Shared.Objectives.Systems; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; -using Content.Shared.Research.Components; -using Content.Shared.Toggleable; namespace Content.Server.Ninja.Systems; @@ -16,89 +11,44 @@ namespace Content.Server.Ninja.Systems; /// public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem { - [Dependency] private readonly EmagProviderSystem _emagProvider = default!; - [Dependency] private readonly CodeConditionSystem _codeCondition = default!; - [Dependency] private readonly CommsHackerSystem _commsHacker = default!; - [Dependency] private readonly SharedStunProviderSystem _stunProvider = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; - public override void Initialize() + protected override void EnableGloves(Entity ent, Entity user) { - base.Initialize(); + base.EnableGloves(ent, user); - SubscribeLocalEvent(OnToggleAction); - } - - /// - /// Toggle gloves, if the user is a ninja wearing a ninja suit. - /// - private void OnToggleAction(EntityUid uid, NinjaGlovesComponent comp, ToggleActionEvent args) - { - if (args.Handled) + // can't use abilities if suit is not equipped, this is checked elsewhere but just making sure to satisfy nullability + if (user.Comp.Suit is not {} suit) return; - args.Handled = true; - - var user = args.Performer; - // need to wear suit to enable gloves - if (!TryComp(user, out var ninja) - || ninja.Suit == null - || !HasComp(ninja.Suit.Value)) - { - Popup.PopupEntity(Loc.GetString("ninja-gloves-not-wearing-suit"), user, user); + if (!_mind.TryGetMind(user, out var mindId, out var mind)) return; - } - - // show its state to the user - var enabling = comp.User == null; - Appearance.SetData(uid, ToggleVisuals.Toggled, enabling); - var message = Loc.GetString(enabling ? "ninja-gloves-on" : "ninja-gloves-off"); - Popup.PopupEntity(message, user, user); - if (enabling) + foreach (var ability in ent.Comp.Abilities) { - EnableGloves(uid, comp, user, ninja); + // non-objective abilities are added in shared already + if (ability.Objective is not {} objId) + continue; + + // prevent doing an objective multiple times by toggling gloves after doing them + // if it's not tied to an objective always add them anyway + if (!_mind.TryFindObjective((mindId, mind), objId, out var obj)) + { + Log.Error($"Ninja glove ability of {ent} referenced missing objective {ability.Objective} of {_mind.MindOwnerLoggingString(mind)}"); + continue; + } + + if (!_objectives.IsCompleted(obj.Value, (mindId, mind))) + EntityManager.AddComponents(user, ability.Components); } - else - { - DisableGloves(uid, comp); - } - } - private void EnableGloves(EntityUid uid, NinjaGlovesComponent comp, EntityUid user, SpaceNinjaComponent ninja) - { - // can't use abilities if suit is not equipped, this is checked elsewhere but just making sure to satisfy nullability - if (ninja.Suit == null) - return; - - comp.User = user; - Dirty(uid, comp); - _ninja.AssignGloves(user, uid, ninja); - - var drainer = EnsureComp(user); - var stun = EnsureComp(user); - _stunProvider.SetNoPowerPopup(user, "ninja-no-power", stun); + // let abilities that use battery power work if (_ninja.GetNinjaBattery(user, out var battery, out var _)) { - var ev = new NinjaBatteryChangedEvent(battery.Value, ninja.Suit.Value); + var ev = new NinjaBatteryChangedEvent(battery.Value, suit); RaiseLocalEvent(user, ref ev); } - - var emag = EnsureComp(user); - _emagProvider.SetWhitelist(user, comp.DoorjackWhitelist, emag); - - EnsureComp(user); - // prevent calling in multiple threats by toggling gloves after - if (!_codeCondition.IsCompleted(user, ninja.TerrorObjective)) - { - var hacker = EnsureComp(user); - var rule = _ninja.NinjaRule(user); - if (rule != null) - _commsHacker.SetThreats(user, rule.Threats, hacker); - } - if (!_codeCondition.IsCompleted(user, ninja.MassArrestObjective)) - { - EnsureComp(user); - } } } diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 04095b549c6..63054eaad50 100644 --- a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Ninja.Events; using Content.Server.Power.Components; using Content.Server.PowerCell; -using Content.Shared.Clothing.EntitySystems; using Content.Shared.Hands.EntitySystems; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; @@ -29,15 +28,13 @@ public override void Initialize() SubscribeLocalEvent(OnSuitInsertAttempt); SubscribeLocalEvent(OnEmpAttempt); - SubscribeLocalEvent(OnAttemptStealth); - SubscribeLocalEvent(OnCreateThrowingStar); SubscribeLocalEvent(OnRecallKatana); SubscribeLocalEvent(OnEmp); } - protected override void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + protected override void NinjaEquipped(Entity ent, Entity user) { - base.NinjaEquippedSuit(uid, comp, user, ninja); + base.NinjaEquipped(ent, user); _ninja.SetSuitPowerAlert(user); } @@ -57,16 +54,15 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) - { args.Cancel(); - } // tell ninja abilities that use battery to update it so they don't use charge from the old one var user = Transform(uid).ParentUid; - if (!HasComp(user)) + if (!_ninja.IsNinja(user)) return; var ev = new NinjaBatteryChangedEvent(args.EntityUid, uid); + RaiseLocalEvent(uid, ref ev); RaiseLocalEvent(user, ref ev); } @@ -77,64 +73,22 @@ private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEven args.Cancel(); } - protected override void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + protected override void UserUnequippedSuit(Entity ent, Entity user) { - base.UserUnequippedSuit(uid, comp, user); + base.UserUnequippedSuit(ent, user); // remove power indicator _ninja.SetSuitPowerAlert(user); } - private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args) + private void OnRecallKatana(Entity ent, ref RecallKatanaEvent args) { - var user = args.User; - // need 1 second of charge to turn on stealth - var chargeNeeded = SuitWattage(uid, comp); - // being attacked while cloaked gives no power message since it overloads the power supply or something - if (!_ninja.GetNinjaBattery(user, out _, out var battery) || battery.CurrentCharge < chargeNeeded) - { - Popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); - args.Cancel(); - return; - } - - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); - args.Cancel(); - return; - } - - StealthClothing.SetEnabled(uid, user, true); - } - - private void OnCreateThrowingStar(EntityUid uid, NinjaSuitComponent comp, CreateThrowingStarEvent args) - { - args.Handled = true; + var (uid, comp) = ent; var user = args.Performer; - if (!_ninja.TryUseCharge(user, comp.ThrowingStarCharge)) - { - Popup.PopupEntity(Loc.GetString("ninja-no-power"), user, user); + if (!_ninja.NinjaQuery.TryComp(user, out var ninja) || ninja.Katana == null) return; - } - - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); - return; - } - - // try to put throwing star in hand, otherwise it goes on the ground - var star = Spawn(comp.ThrowingStarPrototype, Transform(user).Coordinates); - _hands.TryPickupAnyHand(user, star); - } - private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatanaEvent args) - { args.Handled = true; - var user = args.Performer; - if (!TryComp(user, out var ninja) || ninja.Katana == null) - return; var katana = ninja.Katana.Value; var coords = _transform.GetWorldPosition(katana); @@ -146,11 +100,8 @@ private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatana return; } - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + if (CheckDisabled(ent, user)) return; - } // TODO: teleporting into belt slot var message = _hands.TryPickupAnyHand(user, katana) @@ -159,9 +110,11 @@ private void OnRecallKatana(EntityUid uid, NinjaSuitComponent comp, RecallKatana Popup.PopupEntity(Loc.GetString(message), user, user); } - private void OnEmp(EntityUid uid, NinjaSuitComponent comp, NinjaEmpEvent args) + private void OnEmp(Entity ent, ref NinjaEmpEvent args) { + var (uid, comp) = ent; args.Handled = true; + var user = args.Performer; if (!_ninja.TryUseCharge(user, comp.EmpCharge)) { @@ -169,13 +122,9 @@ private void OnEmp(EntityUid uid, NinjaSuitComponent comp, NinjaEmpEvent args) return; } - if (comp.DisableCooldown > GameTiming.CurTime) - { - Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + if (CheckDisabled(ent, user)) return; - } - // I don't think this affects the suit battery, but if it ever does in the future add a blacklist for it var coords = _transform.GetMapCoordinates(user); _emp.EmpPulse(coords, comp.EmpRange, comp.EmpConsumption, comp.EmpDuration); } diff --git a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs index 0c1e88653fa..28ab6332276 100644 --- a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs +++ b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Chat.Managers; using Content.Server.CriminalRecords.Systems; using Content.Server.GameTicking.Rules.Components; -using Content.Server.GenericAntag; using Content.Server.Objectives.Components; using Content.Server.Objectives.Systems; using Content.Server.Power.Components; @@ -11,7 +10,6 @@ using Content.Server.Research.Systems; using Content.Server.Roles; using Content.Shared.Alert; -using Content.Shared.Clothing.EntitySystems; using Content.Shared.Doors.Components; using Content.Shared.IdentityManagement; using Content.Shared.Mind; @@ -26,11 +24,6 @@ namespace Content.Server.Ninja.Systems; -// TODO: when syndiborgs are a thing have a borg converter with 6 second doafter -// engi -> saboteur -// medi -> idk reskin it -// other -> assault - /// /// Main ninja system that handles ninja setup, provides helper methods for the rest of the code to use. /// @@ -44,13 +37,11 @@ public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem [Dependency] private readonly RoleSystem _role = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly StealthClothingSystem _stealthClothing = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnNinjaCreated); SubscribeLocalEvent(OnDoorjack); SubscribeLocalEvent(OnResearchStolen); SubscribeLocalEvent(OnThreatCalledIn); @@ -62,7 +53,7 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var ninja)) { - UpdateNinja(uid, ninja, frameTime); + SetSuitPowerAlert((uid, ninja)); } } @@ -80,31 +71,13 @@ private int Download(EntityUid uid, List ids) return newCount - oldCount; } - /// - /// Returns a ninja's gamerule config data. - /// If the gamerule was not started then it will be started automatically. - /// - public NinjaRuleComponent? NinjaRule(EntityUid uid, GenericAntagComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return null; - - // mind not added yet so no rule - if (comp.RuleEntity == null) - return null; - - return CompOrNull(comp.RuleEntity); - } - // TODO: can probably copy paste borg code here /// /// Update the alert for the ninja's suit power indicator. /// - public void SetSuitPowerAlert(EntityUid uid, SpaceNinjaComponent? comp = null) + public void SetSuitPowerAlert(Entity ent) { - if (!Resolve(uid, ref comp, false)) - return; - + var (uid, comp) = ent; if (comp.Deleted || comp.Suit == null) { _alerts.ClearAlert(uid, comp.SuitPowerAlert); @@ -145,53 +118,6 @@ public override bool TryUseCharge(EntityUid user, float charge) return GetNinjaBattery(user, out var uid, out var battery) && _battery.TryUseCharge(uid.Value, charge, battery); } - /// - /// Set up everything for ninja to work and send the greeting message/sound. - /// Objectives are added by . - /// - private void OnNinjaCreated(EntityUid uid, SpaceNinjaComponent comp, ref GenericAntagCreatedEvent args) - { - var mindId = args.MindId; - var mind = args.Mind; - - if (mind.Session == null) - return; - - var config = NinjaRule(uid); - if (config == null) - return; - - var role = new NinjaRoleComponent - { - PrototypeId = "SpaceNinja" - }; - _role.MindAddRole(mindId, role, mind); - _role.MindPlaySound(mindId, config.GreetingSound, mind); - - var session = mind.Session; - _audio.PlayGlobal(config.GreetingSound, Filter.Empty().AddPlayer(session), false, AudioParams.Default); - _chatMan.DispatchServerMessage(session, Loc.GetString("ninja-role-greeting")); - } - - // TODO: PowerCellDraw, modify when cloak enabled - /// - /// Handle constant power drains from passive usage and cloak. - /// - private void UpdateNinja(EntityUid uid, SpaceNinjaComponent ninja, float frameTime) - { - if (ninja.Suit == null) - return; - - float wattage = Suit.SuitWattage(ninja.Suit.Value); - - SetSuitPowerAlert(uid, ninja); - if (!TryUseCharge(uid, wattage * frameTime)) - { - // ran out of power, uncloak ninja - _stealthClothing.SetEnabled(ninja.Suit.Value, uid, false); - } - } - /// /// Increment greentext when emagging a door. /// diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index 64c958d6f1a..c262651f27a 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Sticky.Events; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; +using Content.Shared.Ninja.Systems; using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -14,7 +15,7 @@ namespace Content.Server.Ninja.Systems; /// /// Prevents planting a spider charge outside of its location and handles greentext. /// -public sealed class SpiderChargeSystem : EntitySystem +public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; diff --git a/Content.Server/Ninja/Systems/StunProviderSystem.cs b/Content.Server/Ninja/Systems/StunProviderSystem.cs index 1768606ad20..822486cff52 100644 --- a/Content.Server/Ninja/Systems/StunProviderSystem.cs +++ b/Content.Server/Ninja/Systems/StunProviderSystem.cs @@ -6,10 +6,11 @@ using Content.Shared.Ninja.Systems; using Content.Shared.Popups; using Content.Shared.Stunnable; -using Robust.Shared.Prototypes; +using Content.Shared.Timing; +using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; -using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; namespace Content.Server.Ninja.Systems; @@ -20,12 +21,12 @@ public sealed class StunProviderSystem : SharedStunProviderSystem { [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() { @@ -38,16 +39,18 @@ public override void Initialize() /// /// Stun clicked mobs on the whitelist, if there is enough power. /// - private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { // TODO: generic check + var (uid, comp) = ent; if (args.Handled || comp.BatteryUid == null || !_gloves.AbilityCheck(uid, args, out var target)) return; - if (target == uid || _whitelistSystem.IsWhitelistFail(comp.Whitelist, target)) + if (target == uid || _whitelist.IsWhitelistFail(comp.Whitelist, target)) return; - if (_timing.CurTime < comp.NextStun) + var useDelay = EnsureComp(uid); + if (_useDelay.IsDelayed((uid, useDelay), id: comp.DelayId)) return; // take charge from battery @@ -63,13 +66,14 @@ private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, Bef _stun.TryParalyze(target, comp.StunTime, refresh: false); // short cooldown to prevent instant stunlocking - comp.NextStun = _timing.CurTime + comp.Cooldown; + _useDelay.SetLength((uid, useDelay), comp.Cooldown, id: comp.DelayId); + _useDelay.TryResetDelay((uid, useDelay), id: comp.DelayId); args.Handled = true; } - private void OnBatteryChanged(EntityUid uid, StunProviderComponent comp, ref NinjaBatteryChangedEvent args) + private void OnBatteryChanged(Entity ent, ref NinjaBatteryChangedEvent args) { - SetBattery(uid, args.Battery, comp); + SetBattery((ent, ent.Comp), args.Battery); } } diff --git a/Content.Server/Objectives/Systems/CodeConditionSystem.cs b/Content.Server/Objectives/Systems/CodeConditionSystem.cs index 7ba312f4bb9..fbc58dafe82 100644 --- a/Content.Server/Objectives/Systems/CodeConditionSystem.cs +++ b/Content.Server/Objectives/Systems/CodeConditionSystem.cs @@ -35,20 +35,6 @@ public bool IsCompleted(Entity ent) return ent.Comp.Completed; } - /// - /// Returns true if a mob's objective with a certain prototype is completed. - /// - public bool IsCompleted(Entity mob, string prototype) - { - if (_mind.GetMind(mob, mob.Comp) is not {} mindId) - return false; - - if (!_mind.TryFindObjective(mindId, prototype, out var obj)) - return false; - - return IsCompleted(obj.Value); - } - /// /// Sets an objective's completed field. /// diff --git a/Content.Server/PowerCell/PowerCellSystem.Draw.cs b/Content.Server/PowerCell/PowerCellSystem.Draw.cs index 4155a4f6bec..9ebd677f473 100644 --- a/Content.Server/PowerCell/PowerCellSystem.Draw.cs +++ b/Content.Server/PowerCell/PowerCellSystem.Draw.cs @@ -1,4 +1,5 @@ using Content.Server.Power.Components; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -10,22 +11,20 @@ public sealed partial class PowerCellSystem * Handles PowerCellDraw */ - private static readonly TimeSpan Delay = TimeSpan.FromSeconds(1); - public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out var slot)) + while (query.MoveNext(out var uid, out var comp, out var slot, out var toggle)) { - if (!comp.Drawing) + if (!comp.Enabled || !toggle.Activated) continue; if (Timing.CurTime < comp.NextUpdateTime) continue; - comp.NextUpdateTime += Delay; + comp.NextUpdateTime += comp.Delay; if (!TryGetBatteryFromSlot(uid, out var batteryEnt, out var battery, slot)) continue; @@ -33,7 +32,8 @@ public override void Update(float frameTime) if (_battery.TryUseCharge(batteryEnt.Value, comp.DrawRate, battery)) continue; - comp.Drawing = false; + Toggle.TryDeactivate((uid, toggle)); + var ev = new PowerCellSlotEmptyEvent(); RaiseLocalEvent(uid, ref ev); } @@ -42,26 +42,9 @@ public override void Update(float frameTime) private void OnDrawChargeChanged(EntityUid uid, PowerCellDrawComponent component, ref ChargeChangedEvent args) { // Update the bools for client prediction. - bool canDraw; - bool canUse; - - if (component.UseRate > 0f) - { - canUse = args.Charge > component.UseRate; - } - else - { - canUse = true; - } + var canUse = component.UseRate <= 0f || args.Charge > component.UseRate; - if (component.DrawRate > 0f) - { - canDraw = args.Charge > 0f; - } - else - { - canDraw = true; - } + var canDraw = component.DrawRate <= 0f || args.Charge > 0f; if (canUse != component.CanUse || canDraw != component.CanDraw) { @@ -76,6 +59,9 @@ private void OnDrawCellChanged(EntityUid uid, PowerCellDrawComponent component, var canDraw = !args.Ejected && HasCharge(uid, float.MinValue); var canUse = !args.Ejected && HasActivatableCharge(uid, component); + if (!canDraw) + Toggle.TryDeactivate(uid); + if (canUse != component.CanUse || canDraw != component.CanDraw) { component.CanDraw = canDraw; diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index f45a01b2e1b..0d2d9012bc7 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -39,8 +39,8 @@ public override void Initialize() SubscribeLocalEvent(OnDrawChargeChanged); SubscribeLocalEvent(OnDrawCellChanged); - // funny SubscribeLocalEvent(OnCellSlotExamined); + // funny SubscribeLocalEvent(OnSlotMicrowaved); } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index 746d75f0d85..f289752b7cf 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -29,7 +29,7 @@ private void OnModuleGotInserted(EntityUid uid, BorgModuleComponent component, E if (!TryComp(chassis, out var chassisComp) || args.Container != chassisComp.ModuleContainer || - !chassisComp.Activated) + !Toggle.IsActivated(chassis)) return; if (!_powerCell.HasDrawCharge(uid)) @@ -143,6 +143,7 @@ public void SelectModule(EntityUid chassis, var ev = new BorgModuleSelectedEvent(chassis); RaiseLocalEvent(moduleUid, ref ev); chassisComp.SelectedModule = moduleUid; + Dirty(chassis, chassisComp); } /// @@ -162,6 +163,7 @@ public void UnselectModule(EntityUid chassis, BorgChassisComponent? chassisComp var ev = new BorgModuleUnselectedEvent(chassis); RaiseLocalEvent(chassisComp.SelectedModule.Value, ref ev); chassisComp.SelectedModule = null; + Dirty(chassis, chassisComp); } private void OnItemModuleSelected(EntityUid uid, ItemBorgModuleComponent component, ref BorgModuleSelectedEvent args) diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index c97ca9cbc0d..1c40e9489eb 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Database; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs; @@ -73,6 +74,7 @@ public override void Initialize() SubscribeLocalEvent(OnPowerCellChanged); SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnGetDeadIC); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnBrainMindAdded); SubscribeLocalEvent(OnBrainPointAttempt); @@ -173,11 +175,11 @@ private void OnMobStateChanged(EntityUid uid, BorgChassisComponent component, Mo if (args.NewMobState == MobState.Alive) { if (_mind.TryGetMind(uid, out _, out _)) - _powerCell.SetPowerCellDrawEnabled(uid, true); + _powerCell.SetDrawEnabled(uid, true); } else { - _powerCell.SetPowerCellDrawEnabled(uid, false); + _powerCell.SetDrawEnabled(uid, false); } } @@ -185,24 +187,10 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P { UpdateBatteryAlert((uid, component)); - if (!TryComp(uid, out var draw)) - return; - - // if we eject the battery or run out of charge, then disable - if (args.Ejected || !_powerCell.HasDrawCharge(uid)) - { - DisableBorgAbilities(uid, component); - return; - } - // if we aren't drawing and suddenly get enough power to draw again, reeanble. - if (_powerCell.HasDrawCharge(uid, draw)) + if (_powerCell.HasDrawCharge(uid)) { - // only reenable the powerdraw if a player has the role. - if (!draw.Drawing && _mind.TryGetMind(uid, out _, out _) && _mobState.IsAlive(uid)) - _powerCell.SetPowerCellDrawEnabled(uid, true); - - EnableBorgAbilities(uid, component); + Toggle.TryActivate(uid); } UpdateUI(uid, component); @@ -210,7 +198,7 @@ private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, P private void OnPowerCellSlotEmpty(EntityUid uid, BorgChassisComponent component, ref PowerCellSlotEmptyEvent args) { - DisableBorgAbilities(uid, component); + Toggle.TryDeactivate(uid); UpdateUI(uid, component); } @@ -219,6 +207,23 @@ private void OnGetDeadIC(EntityUid uid, BorgChassisComponent component, ref GetC args.Dead = true; } + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var (uid, comp) = ent; + if (args.Activated) + InstallAllModules(uid, comp); + else + DisableAllModules(uid, comp); + + // only enable the powerdraw if there is a player in the chassis + var drawing = _mind.TryGetMind(uid, out _, out _) && _mobState.IsAlive(ent); + _powerCell.SetDrawEnabled(uid, drawing); + + UpdateUI(uid, comp); + + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + } + private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindAddedMessage args) { if (!Container.TryGetOuterContainer(uid, Transform(uid), out var container)) @@ -271,44 +276,14 @@ private void UpdateBatteryAlert(Entity ent, PowerCellSlotC _alerts.ShowAlert(ent, ent.Comp.BatteryAlert, chargePercent); } - /// - /// Activates the borg, enabling all of its modules. - /// - public void EnableBorgAbilities(EntityUid uid, BorgChassisComponent component, PowerCellDrawComponent? powerCell = null) - { - if (component.Activated) - return; - - component.Activated = true; - InstallAllModules(uid, component); - Dirty(uid, component); - _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); - } - - /// - /// Deactivates the borg, disabling all of its modules and decreasing its speed. - /// - public void DisableBorgAbilities(EntityUid uid, BorgChassisComponent component) - { - if (!component.Activated) - return; - - component.Activated = false; - DisableAllModules(uid, component); - Dirty(uid, component); - _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); - } - /// /// Activates a borg when a player occupies it /// public void BorgActivate(EntityUid uid, BorgChassisComponent component) { Popup.PopupEntity(Loc.GetString("borg-mind-added", ("name", Identity.Name(uid, EntityManager))), uid); - _powerCell.SetPowerCellDrawEnabled(uid, true); - _access.SetAccessEnabled(uid, true); + Toggle.TryActivate(uid); _appearance.SetData(uid, BorgVisuals.HasPlayer, true); - Dirty(uid, component); } /// @@ -317,10 +292,8 @@ public void BorgActivate(EntityUid uid, BorgChassisComponent component) public void BorgDeactivate(EntityUid uid, BorgChassisComponent component) { Popup.PopupEntity(Loc.GetString("borg-mind-removed", ("name", Identity.Name(uid, EntityManager))), uid); - _powerCell.SetPowerCellDrawEnabled(uid, false); - _access.SetAccessEnabled(uid, false); + Toggle.TryDeactivate(uid); _appearance.SetData(uid, BorgVisuals.HasPlayer, false); - Dirty(uid, component); } /// diff --git a/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs deleted file mode 100644 index d758247eca2..00000000000 --- a/Content.Server/StationEvents/Components/NinjaSpawnRuleComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Server.StationEvents.Events; - -namespace Content.Server.StationEvents.Components; - -/// -/// Configuration component for the Space Ninja antag. -/// -[RegisterComponent, Access(typeof(NinjaSpawnRule))] -public sealed partial class NinjaSpawnRuleComponent : Component -{ - /// - /// Distance that the ninja spawns from the station's half AABB radius - /// - [DataField("spawnDistance")] - public float SpawnDistance = 20f; -} diff --git a/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs b/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs new file mode 100644 index 00000000000..a0168077fd6 --- /dev/null +++ b/Content.Server/StationEvents/Components/SpaceSpawnRuleComponent.cs @@ -0,0 +1,25 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.StationEvents.Components; + +/// +/// Component for spawning antags in space around a station. +/// Requires AntagSelectionComponent. +/// +[RegisterComponent, Access(typeof(SpaceSpawnRule))] +public sealed partial class SpaceSpawnRuleComponent : Component +{ + /// + /// Distance that the entity spawns from the station's half AABB radius + /// + [DataField] + public float SpawnDistance = 20f; + + /// + /// Location that was picked. + /// + [DataField] + public MapCoordinates? Coords; +} diff --git a/Content.Server/StationEvents/Events/NinjaSpawnRule.cs b/Content.Server/StationEvents/Events/SpaceSpawnRule.cs similarity index 53% rename from Content.Server/StationEvents/Events/NinjaSpawnRule.cs rename to Content.Server/StationEvents/Events/SpaceSpawnRule.cs index 9cbc193ce61..6fccaaa5cfc 100644 --- a/Content.Server/StationEvents/Events/NinjaSpawnRule.cs +++ b/Content.Server/StationEvents/Events/SpaceSpawnRule.cs @@ -1,5 +1,5 @@ +using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Ninja.Systems; using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Shared.GameTicking.Components; @@ -9,18 +9,28 @@ namespace Content.Server.StationEvents.Events; /// -/// Event for spawning a Space Ninja mid-game. +/// Station event component for spawning this rules antags in space around a station. /// -public sealed class NinjaSpawnRule : StationEventSystem +public sealed class SpaceSpawnRule : StationEventSystem { [Dependency] private readonly SharedTransformSystem _transform = default!; - protected override void Started(EntityUid uid, NinjaSpawnRuleComponent comp, GameRuleComponent gameRule, GameRuleStartedEvent args) + public override void Initialize() { - base.Started(uid, comp, gameRule, args); + base.Initialize(); + + SubscribeLocalEvent(OnSelectLocation); + } + + protected override void Added(EntityUid uid, SpaceSpawnRuleComponent comp, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, comp, gameRule, args); if (!TryGetRandomStation(out var station)) + { + ForceEndSelf(uid, gameRule); return; + } var stationData = Comp(station.Value); @@ -28,22 +38,28 @@ protected override void Started(EntityUid uid, NinjaSpawnRuleComponent comp, Gam var gridUid = StationSystem.GetLargestGrid(stationData); if (gridUid == null || !TryComp(gridUid, out var grid)) { - Sawmill.Warning("Chosen station has no grids, cannot spawn space ninja!"); + Sawmill.Warning("Chosen station has no grids, cannot pick location for {ToPrettyString(uid):rule}"); + ForceEndSelf(uid, gameRule); return; } - // figure out its AABB size and use that as a guide to how far ninja should be + // figure out its AABB size and use that as a guide to how far the spawner should be var size = grid.LocalAABB.Size.Length() / 2; var distance = size + comp.SpawnDistance; var angle = RobustRandom.NextAngle(); // position relative to station center var location = angle.ToVec() * distance; - // create the spawner, the ninja will appear when a ghost has picked the role + // create the spawner! var xform = Transform(gridUid.Value); var position = _transform.GetWorldPosition(xform) + location; - var coords = new MapCoordinates(position, xform.MapID); - Sawmill.Info($"Creating ninja spawnpoint at {coords}"); - Spawn("SpawnPointGhostSpaceNinja", coords); + comp.Coords = new MapCoordinates(position, xform.MapID); + Sawmill.Info($"Picked location {comp.Coords} for {ToPrettyString(uid):rule}"); + } + + private void OnSelectLocation(Entity ent, ref AntagSelectLocationEvent args) + { + if (ent.Comp.Coords is {} coords) + args.Coordinates.Add(coords); } } diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index c1782efabaf..97dd2c7e735 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -19,7 +19,7 @@ public sealed class StunbatonSystem : SharedStunbatonSystem [Dependency] private readonly RiggableSystem _riggableSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; + [Dependency] private readonly ItemToggleSystem _itemToggle = default!; public override void Initialize() { diff --git a/Content.Server/Weapons/Misc/TetherGunSystem.cs b/Content.Server/Weapons/Misc/TetherGunSystem.cs index f6aafe376d6..2bf53d46f4b 100644 --- a/Content.Server/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Server/Weapons/Misc/TetherGunSystem.cs @@ -1,4 +1,5 @@ using Content.Server.PowerCell; +using Content.Shared.Item.ItemToggle; using Content.Shared.PowerCell; using Content.Shared.Weapons.Misc; using Robust.Shared.Physics.Components; @@ -8,6 +9,7 @@ namespace Content.Server.Weapons.Misc; public sealed class TetherGunSystem : SharedTetherGunSystem { [Dependency] private readonly PowerCellSystem _cell = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; public override void Initialize() { @@ -36,12 +38,12 @@ protected override void StartTether(EntityUid gunUid, BaseForceGunComponent comp PhysicsComponent? targetPhysics = null, TransformComponent? targetXform = null) { base.StartTether(gunUid, component, target, user, targetPhysics, targetXform); - _cell.SetPowerCellDrawEnabled(gunUid, true); + _toggle.TryActivate(gunUid); } protected override void StopTether(EntityUid gunUid, BaseForceGunComponent component, bool land = true, bool transfer = false) { base.StopTether(gunUid, component, land, transfer); - _cell.SetPowerCellDrawEnabled(gunUid, false); + _toggle.TryDeactivate(gunUid); } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs index c6f56a27508..a585a9ef452 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Salvage; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; using Content.Shared.Clothing; +using Content.Shared.Item.ItemToggle.Components; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems; @@ -29,11 +30,11 @@ public override void Update(float frameTime) _toActivate.Clear(); - //assume that there's more instruments than artifacts - var query = EntityQueryEnumerator(); - while (query.MoveNext(out _, out var magboot, out var magXform)) + //assume that there's more magboots than artifacts + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out var magboot, out var magXform, out var toggle)) { - if (!magboot.On) + if (!toggle.Activated) continue; var artiQuery = EntityQueryEnumerator(); diff --git a/Content.Shared/Access/Components/AccessToggleComponent.cs b/Content.Shared/Access/Components/AccessToggleComponent.cs new file mode 100644 index 00000000000..60a606ac7ea --- /dev/null +++ b/Content.Shared/Access/Components/AccessToggleComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Access.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Access.Components; + +/// +/// Toggles an access provider with ItemToggle. +/// Requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(AccessToggleSystem))] +public sealed partial class AccessToggleComponent : Component; diff --git a/Content.Shared/Access/Systems/AccessToggleSystem.cs b/Content.Shared/Access/Systems/AccessToggleSystem.cs new file mode 100644 index 00000000000..564aca06812 --- /dev/null +++ b/Content.Shared/Access/Systems/AccessToggleSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Access.Components; +using Content.Shared.Item.ItemToggle.Components; + +namespace Content.Shared.Access.Systems; + +public sealed class AccessToggleSystem : EntitySystem +{ + [Dependency] private readonly SharedAccessSystem _access = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + _access.SetAccessEnabled(ent, args.Activated); + } +} diff --git a/Content.Shared/Beeper/Components/BeeperComponent.cs b/Content.Shared/Beeper/Components/BeeperComponent.cs index 54d242709c4..f6efbb10f3e 100644 --- a/Content.Shared/Beeper/Components/BeeperComponent.cs +++ b/Content.Shared/Beeper/Components/BeeperComponent.cs @@ -10,15 +10,12 @@ namespace Content.Shared.Beeper.Components; /// This is used for an item that beeps based on /// proximity to a specified component. /// +/// +/// Requires ItemToggleComponent to control it. +/// [RegisterComponent, NetworkedComponent, Access(typeof(BeeperSystem)), AutoGenerateComponentState] public sealed partial class BeeperComponent : Component { - /// - /// Whether or not it's on. - /// - [DataField, AutoNetworkedField] - public bool Enabled = true; - /// /// How much to scale the interval by (< 0 = min, > 1 = max) /// @@ -56,7 +53,7 @@ public sealed partial class BeeperComponent : Component /// Is the beep muted /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool IsMuted = false; + public bool IsMuted; /// /// The sound played when the locator beeps. diff --git a/Content.Shared/Beeper/Systems/BeeperSystem.cs b/Content.Shared/Beeper/Systems/BeeperSystem.cs index c51eef4da9d..a52e19f7552 100644 --- a/Content.Shared/Beeper/Systems/BeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/BeeperSystem.cs @@ -1,5 +1,7 @@ using Content.Shared.Beeper.Components; using Content.Shared.FixedPoint; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Timing; @@ -11,34 +13,20 @@ namespace Content.Shared.Beeper.Systems; public sealed class BeeperSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly INetManager _net = default!; - - public override void Initialize() - { - } + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Update(float frameTime) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var beeper)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var beeper, out var toggle)) { - if (!beeper.Enabled) - continue; - RunUpdate_Internal(uid, beeper); + if (toggle.Activated) + RunUpdate_Internal(uid, beeper); } } - public void SetEnable(EntityUid owner, bool isEnabled, BeeperComponent? beeper = null) - { - if (!Resolve(owner, ref beeper) || beeper.Enabled == isEnabled) - return; - beeper.Enabled = isEnabled; - - RunUpdate_Internal(owner, beeper); - Dirty(owner, beeper); - } - public void SetIntervalScaling(EntityUid owner, BeeperComponent beeper, FixedPoint2 newScaling) { newScaling = FixedPoint2.Clamp(newScaling, 0, 1); @@ -70,6 +58,7 @@ public void SetMute(EntityUid owner, bool isMuted, BeeperComponent? comp = null) if (!Resolve(owner, ref comp)) return; comp.IsMuted = isMuted; + Dirty(owner, comp); } private void UpdateBeepInterval(EntityUid owner, BeeperComponent beeper) @@ -91,19 +80,17 @@ public void ForceUpdate(EntityUid owner, BeeperComponent? beeper = null) private void RunUpdate_Internal(EntityUid owner, BeeperComponent beeper) { - if (!beeper.Enabled) - { + if (!_toggle.IsActivated(owner)) return; - } + UpdateBeepInterval(owner, beeper); if (beeper.NextBeep >= _timing.CurTime) return; + var beepEvent = new BeepPlayedEvent(beeper.IsMuted); RaiseLocalEvent(owner, ref beepEvent); if (!beeper.IsMuted && _net.IsServer) - { _audio.PlayPvs(beeper.BeepSound, owner); - } beeper.LastBeepTime = _timing.CurTime; } } diff --git a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs index bd857d4c29b..ed3c6366c13 100644 --- a/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs +++ b/Content.Shared/Beeper/Systems/ProximityBeeperSystem.cs @@ -1,7 +1,6 @@ using Content.Shared.Beeper.Components; -using Content.Shared.Interaction.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Pinpointer; -using Content.Shared.PowerCell; using Content.Shared.ProximityDetection; using Content.Shared.ProximityDetection.Components; using Content.Shared.ProximityDetection.Systems; @@ -9,20 +8,17 @@ namespace Content.Shared.Beeper.Systems; /// -/// This handles logic for implementing proximity beeper as a handheld tool /> +/// This handles controlling a beeper from proximity detector events. /// public sealed class ProximityBeeperSystem : EntitySystem { [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; [Dependency] private readonly ProximityDetectionSystem _proximity = default!; [Dependency] private readonly BeeperSystem _beeper = default!; /// public override void Initialize() { - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnPowerCellSlotEmpty); SubscribeLocalEvent(OnNewProximityTarget); SubscribeLocalEvent(OnProximityTargetUpdate); } @@ -33,82 +29,16 @@ private void OnProximityTargetUpdate(EntityUid owner, ProximityBeeperComponent p return; if (args.Target == null) { - _beeper.SetEnable(owner, false, beeper); + _beeper.SetMute(owner, true, beeper); return; } - _beeper.SetIntervalScaling(owner,args.Distance/args.Detector.Range, beeper); - _beeper.SetEnable(owner, true, beeper); - } - - private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) - { - _beeper.SetEnable(owner, args.Target != null); - } - private void OnUseInHand(EntityUid uid, ProximityBeeperComponent proxBeeper, UseInHandEvent args) - { - if (args.Handled) - return; - args.Handled = TryToggle(uid, proxBeeper, user: args.User); + _beeper.SetIntervalScaling(owner, args.Distance / args.Detector.Range, beeper); + _beeper.SetMute(owner, false, beeper); } - private void OnPowerCellSlotEmpty(EntityUid uid, ProximityBeeperComponent beeper, ref PowerCellSlotEmptyEvent args) - { - if (_proximity.GetEnable(uid)) - TryDisable(uid); - } - public bool TryEnable(EntityUid owner, BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, - PowerCellDrawComponent? draw = null,EntityUid? user = null) - { - if (!Resolve(owner, ref beeper, ref detector)) - return false; - if (Resolve(owner, ref draw, false) && !_powerCell.HasActivatableCharge(owner, battery: draw, user: user)) - return false; - Enable(owner, beeper, detector, draw); - return true; - } - private void Enable(EntityUid owner, BeeperComponent beeper, - ProximityDetectorComponent detector, PowerCellDrawComponent? draw) - { - _proximity.SetEnable(owner, true, detector); - _appearance.SetData(owner, ProximityBeeperVisuals.Enabled, true); - _powerCell.SetPowerCellDrawEnabled(owner, true, draw); - } - - - /// - /// Disables the proximity beeper - /// - public bool TryDisable(EntityUid owner,BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, PowerCellDrawComponent? draw = null) - { - if (!Resolve(owner, ref beeper, ref detector)) - return false; - - if (!detector.Enabled) - return false; - Disable(owner, beeper, detector, draw); - return true; - } - private void Disable(EntityUid owner, BeeperComponent beeper, - ProximityDetectorComponent detector, PowerCellDrawComponent? draw) - { - _proximity.SetEnable(owner, false, detector); - _appearance.SetData(owner, ProximityBeeperVisuals.Enabled, false); - _beeper.SetEnable(owner, false, beeper); - _powerCell.SetPowerCellDrawEnabled(owner, false, draw); - } - - /// - /// toggles the proximity beeper - /// - public bool TryToggle(EntityUid owner, ProximityBeeperComponent? proxBeeper = null, BeeperComponent? beeper = null, ProximityDetectorComponent? detector = null, - PowerCellDrawComponent? draw = null, EntityUid? user = null) + private void OnNewProximityTarget(EntityUid owner, ProximityBeeperComponent proxBeeper, ref NewProximityTargetEvent args) { - if (!Resolve(owner, ref proxBeeper, ref beeper, ref detector)) - return false; - - return detector.Enabled - ? TryDisable(owner, beeper, detector, draw) - : TryEnable(owner, beeper, detector, draw,user); + _beeper.SetMute(owner, args.Target != null); } } diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index 5de1383cde0..7f95ef184e4 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -5,10 +5,14 @@ namespace Content.Shared.Charges.Systems; public abstract class SharedChargesSystem : EntitySystem { + protected EntityQuery Query; + public override void Initialize() { base.Initialize(); + Query = GetEntityQuery(); + SubscribeLocalEvent(OnExamine); } @@ -30,9 +34,9 @@ protected virtual void OnExamine(EntityUid uid, LimitedChargesComponent comp, Ex /// /// Tries to add a number of charges. If it over or underflows it will be clamped, wasting the extra charges. /// - public void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) + public virtual void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp = null) { - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return; var old = comp.Charges; @@ -47,7 +51,7 @@ public void AddCharges(EntityUid uid, int change, LimitedChargesComponent? comp public bool IsEmpty(EntityUid uid, LimitedChargesComponent? comp = null) { // can't be empty if there are no limited charges - if (!Resolve(uid, ref comp, false)) + if (!Query.Resolve(uid, ref comp, false)) return false; return comp.Charges <= 0; @@ -56,10 +60,24 @@ public bool IsEmpty(EntityUid uid, LimitedChargesComponent? comp = null) /// /// Uses a single charge. Must check IsEmpty beforehand to prevent using with 0 charge. /// - public virtual void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + public void UseCharge(EntityUid uid, LimitedChargesComponent? comp = null) + { + AddCharges(uid, -1, comp); + } + + /// + /// Checks IsEmpty and uses a charge if it isn't empty. + /// + public bool TryUseCharge(Entity ent) { - if (Resolve(uid, ref comp, false)) - AddCharges(uid, -1, comp); + if (!Query.Resolve(ent, ref ent.Comp, false)) + return true; + + if (IsEmpty(ent, ent.Comp)) + return false; + + UseCharge(ent, ent.Comp); + return true; } /// @@ -80,7 +98,6 @@ public bool HasInsufficientCharges(EntityUid uid, int requiredCharges, LimitedCh /// public virtual void UseCharges(EntityUid uid, int chargesUsed, LimitedChargesComponent? comp = null) { - if (Resolve(uid, ref comp, false)) - AddCharges(uid, -chargesUsed, comp); + AddCharges(uid, -chargesUsed, comp); } } diff --git a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs index c3c4baf19d0..866ce38a572 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs @@ -3,20 +3,18 @@ namespace Content.Shared.Clothing; +/// +/// Modifies speed when worn and activated. +/// Supports ItemToggleComponent. +/// [RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem))] public sealed partial class ClothingSpeedModifierComponent : Component { - [DataField("walkModifier", required: true)] [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float WalkModifier = 1.0f; - [DataField("sprintModifier", required: true)] [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float SprintModifier = 1.0f; - - /// - /// Is this clothing item currently 'actively' slowing you down? - /// e.g. magboots can be turned on and off. - /// - [DataField("enabled")] public bool Enabled = true; } [Serializable, NetSerializable] @@ -25,12 +23,9 @@ public sealed class ClothingSpeedModifierComponentState : ComponentState public float WalkModifier; public float SprintModifier; - public bool Enabled; - - public ClothingSpeedModifierComponentState(float walkModifier, float sprintModifier, bool enabled) + public ClothingSpeedModifierComponentState(float walkModifier, float sprintModifier) { WalkModifier = walkModifier; SprintModifier = sprintModifier; - Enabled = enabled; } } diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 4198c5c165b..c1efe0b3ddd 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -1,11 +1,10 @@ -using Content.Shared.Actions; using Content.Shared.Clothing.Components; using Content.Shared.Examine; -using Content.Shared.IdentityManagement; using Content.Shared.Inventory; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Movement.Systems; using Content.Shared.PowerCell; -using Content.Shared.Toggleable; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -15,12 +14,12 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; public override void Initialize() @@ -31,39 +30,12 @@ public override void Initialize() SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent>(OnRefreshMoveSpeed); SubscribeLocalEvent>(OnClothingVerbExamine); - - SubscribeLocalEvent>(AddToggleVerb); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleSpeed); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnPowerCellSlotEmpty); + SubscribeLocalEvent(OnToggled); } - // Public API - - public void SetClothingSpeedModifierEnabled(EntityUid uid, bool enabled, ClothingSpeedModifierComponent? component = null) - { - if (!Resolve(uid, ref component, false)) - return; - - if (component.Enabled != enabled) - { - component.Enabled = enabled; - Dirty(uid, component); - - // inventory system will automatically hook into the event raised by this and update accordingly - if (_container.TryGetContainingContainer(uid, out var container)) - { - _movementSpeed.RefreshMovementSpeedModifiers(container.Owner); - } - } - } - - // Event handlers - private void OnGetState(EntityUid uid, ClothingSpeedModifierComponent component, ref ComponentGetState args) { - args.State = new ClothingSpeedModifierComponentState(component.WalkModifier, component.SprintModifier, component.Enabled); + args.State = new ClothingSpeedModifierComponentState(component.WalkModifier, component.SprintModifier); } private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent component, ref ComponentHandleState args) @@ -71,13 +43,11 @@ private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent compone if (args.Current is not ClothingSpeedModifierComponentState state) return; - var diff = component.Enabled != state.Enabled || - !MathHelper.CloseTo(component.SprintModifier, state.SprintModifier) || + var diff = !MathHelper.CloseTo(component.SprintModifier, state.SprintModifier) || !MathHelper.CloseTo(component.WalkModifier, state.WalkModifier); component.WalkModifier = state.WalkModifier; component.SprintModifier = state.SprintModifier; - component.Enabled = state.Enabled; // Avoid raising the event for the container if nothing changed. // We'll still set the values in case they're slightly different but within tolerance. @@ -89,10 +59,8 @@ private void OnHandleState(EntityUid uid, ClothingSpeedModifierComponent compone private void OnRefreshMoveSpeed(EntityUid uid, ClothingSpeedModifierComponent component, InventoryRelayedEvent args) { - if (!component.Enabled) - return; - - args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); + if (_toggle.IsActivated(uid)) + args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); } private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent component, GetVerbsEvent args) @@ -142,60 +110,15 @@ private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent _examine.AddDetailedExamineVerb(args, component, msg, Loc.GetString("clothing-speed-examinable-verb-text"), "/Textures/Interface/VerbIcons/outfit.svg.192dpi.png", Loc.GetString("clothing-speed-examinable-verb-message")); } - private void OnMapInit(Entity uid, ref MapInitEvent args) - { - _actions.AddAction(uid, ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); - } - - private void OnToggleSpeed(Entity uid, ref ToggleClothingSpeedEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, args.Performer); - } - - private void SetSpeedToggleEnabled(Entity uid, bool value, EntityUid? user) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - if (uid.Comp.Enabled == value) - return; - - TryComp(uid, out var draw); - if (value && !_powerCell.HasDrawCharge(uid, draw, user: user)) - return; + // make sentient boots slow or fast too + _movementSpeed.RefreshMovementSpeedModifiers(ent); - uid.Comp.Enabled = value; - - _appearance.SetData(uid, ToggleVisuals.Toggled, uid.Comp.Enabled); - _actions.SetToggled(uid.Comp.ToggleActionEntity, uid.Comp.Enabled); - _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid.Owner, uid.Comp.Enabled); - _powerCell.SetPowerCellDrawEnabled(uid, uid.Comp.Enabled, draw); - Dirty(uid, uid.Comp); - } - - private void AddToggleVerb(Entity uid, ref GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var user = args.User; - ActivationVerb verb = new() + if (_container.TryGetContainingContainer(ent.Owner, out var container)) { - Text = Loc.GetString("toggle-clothing-verb-text", - ("entity", Identity.Entity(uid, EntityManager))), - Act = () => SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, user) - }; - args.Verbs.Add(verb); - } - - private void OnGetActions(Entity uid, ref GetItemActionsEvent args) - { - args.AddAction(ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); - } - - private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) - { - SetSpeedToggleEnabled(uid, false, null); + // inventory system will automatically hook into the event raised by this and update accordingly + _movementSpeed.RefreshMovementSpeedModifiers(container.Owner); + } } } diff --git a/Content.Shared/Clothing/Components/StealthClothingComponent.cs b/Content.Shared/Clothing/Components/StealthClothingComponent.cs deleted file mode 100644 index fedf48b36ed..00000000000 --- a/Content.Shared/Clothing/Components/StealthClothingComponent.cs +++ /dev/null @@ -1,43 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Clothing.EntitySystems; -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Clothing.Components; - -/// -/// Adds StealthComponent to the user when enabled, either by an action or the system's SetEnabled method. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(StealthClothingSystem))] -public sealed partial class StealthClothingComponent : Component -{ - /// - /// Whether stealth effect is enabled. - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Enabled; - - /// - /// Number added to MinVisibility when stealthed, to make the user not fully invisible. - /// - [DataField("visibility"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Visibility; - - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleAction = "ActionTogglePhaseCloak"; - - /// - /// The action for enabling and disabling stealth. - /// - [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; -} - -/// -/// When stealth is enabled, disables it. -/// When it is disabled, raises before enabling. -/// Put any checks in a handler for that event to cancel it. -/// -public sealed partial class ToggleStealthEvent : InstantActionEvent -{ -} diff --git a/Content.Shared/Clothing/Components/ToggleClothingComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingComponent.cs new file mode 100644 index 00000000000..c77aa03475f --- /dev/null +++ b/Content.Shared/Clothing/Components/ToggleClothingComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.EntitySystems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +/// +/// Clothing that can be enabled and disabled with an action. +/// Requires . +/// +/// +/// Not to be confused with for hardsuit helmets and such. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(ToggleClothingSystem))] +public sealed partial class ToggleClothingComponent : Component +{ + /// + /// The action to add when equipped, even if not worn. + /// This must raise to then get handled. + /// + [DataField(required: true)] + public EntProtoId Action = string.Empty; + + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + + /// + /// If true, automatically disable the clothing after unequipping it. + /// + [DataField] + public bool DisableOnUnequip; +} + +/// +/// Raised on the clothing when being equipped to see if it should add the action. +/// +[ByRefEvent] +public record struct ToggleClothingCheckEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs deleted file mode 100644 index 90b2d7322e0..00000000000 --- a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs +++ /dev/null @@ -1,35 +0,0 @@ -using Content.Shared.Actions; -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Clothing.Components; - -/// -/// This is used for a clothing item that gives a speed modification that is toggleable. -/// -[RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem)), AutoGenerateComponentState] -public sealed partial class ToggleClothingSpeedComponent : Component -{ - /// - /// The action for toggling the clothing. - /// - [DataField] - public EntProtoId ToggleAction = "ActionToggleSpeedBoots"; - - /// - /// The action entity - /// - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; - - /// - /// The state of the toggle. - /// - [DataField, AutoNetworkedField] - public bool Enabled; -} - -public sealed partial class ToggleClothingSpeedEvent : InstantActionEvent -{ - -} diff --git a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs deleted file mode 100644 index e96d9f866aa..00000000000 --- a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs +++ /dev/null @@ -1,144 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; -using Content.Shared.Stealth; -using Content.Shared.Stealth.Components; - -namespace Content.Shared.Clothing.EntitySystems; - -/// -/// Handles the toggle action and disables stealth when clothing is unequipped. -/// -public sealed class StealthClothingSystem : EntitySystem -{ - [Dependency] private readonly SharedStealthSystem _stealth = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetItemActions); - SubscribeLocalEvent(OnToggleStealth); - SubscribeLocalEvent(OnHandleState); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnMapInit); - } - - private void OnMapInit(EntityUid uid, StealthClothingComponent component, MapInitEvent args) - { - _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); - } - - /// - /// Sets the clothing's stealth effect for the user. - /// - /// True if it was changed, false otherwise - public bool SetEnabled(EntityUid uid, EntityUid user, bool enabled, StealthClothingComponent? comp = null) - { - if (!Resolve(uid, ref comp) || comp.Enabled == enabled) - return false; - - // TODO remove this when clothing unequip on delete is less sus - // prevent debug assert when ending round and its disabled - if (MetaData(user).EntityLifeStage >= EntityLifeStage.Terminating) - return false; - - comp.Enabled = enabled; - Dirty(uid, comp); - - var stealth = EnsureComp(user); - // slightly visible, but doesn't change when moving so it's ok - var visibility = enabled ? stealth.MinVisibility + comp.Visibility : stealth.MaxVisibility; - _stealth.SetVisibility(user, visibility, stealth); - _stealth.SetEnabled(user, enabled, stealth); - return true; - } - - /// - /// Raise then add the toggle action if it was not cancelled. - /// - private void OnGetItemActions(EntityUid uid, StealthClothingComponent comp, GetItemActionsEvent args) - { - var ev = new AddStealthActionEvent(args.User); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) - return; - - args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); - } - - /// - /// Raises if enabling. - /// - private void OnToggleStealth(EntityUid uid, StealthClothingComponent comp, ToggleStealthEvent args) - { - args.Handled = true; - var user = args.Performer; - if (comp.Enabled) - { - SetEnabled(uid, user, false, comp); - return; - } - - var ev = new AttemptStealthEvent(user); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) - return; - - SetEnabled(uid, user, true, comp); - } - - /// - /// Calls when server sends new state. - /// - private void OnHandleState(EntityUid uid, StealthClothingComponent comp, ref AfterAutoHandleStateEvent args) - { - // SetEnabled checks if it is the same, so change it to before state was received from the server - var enabled = comp.Enabled; - comp.Enabled = !enabled; - var user = Transform(uid).ParentUid; - SetEnabled(uid, user, enabled, comp); - } - - /// - /// Force unstealths the user, doesnt remove StealthComponent since other things might use it - /// - private void OnUnequipped(EntityUid uid, StealthClothingComponent comp, GotUnequippedEvent args) - { - SetEnabled(uid, args.Equipee, false, comp); - } -} - -/// -/// Raised on the stealth clothing when attempting to add an action. -/// -public sealed class AddStealthActionEvent : CancellableEntityEventArgs -{ - /// - /// User that equipped the stealth clothing. - /// - public EntityUid User; - - public AddStealthActionEvent(EntityUid user) - { - User = user; - } -} - -/// -/// Raised on the stealth clothing when the user is attemping to enable it. -/// -public sealed class AttemptStealthEvent : CancellableEntityEventArgs -{ - /// - /// User that is attempting to enable the stealth clothing. - /// - public EntityUid User; - - public AttemptStealthEvent(EntityUid user) - { - User = user; - } -} diff --git a/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs new file mode 100644 index 00000000000..9889376c9d4 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/ToggleClothingSystem.cs @@ -0,0 +1,58 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing; +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Toggleable; + +namespace Content.Shared.Clothing.EntitySystems; + +/// +/// Handles adding and using a toggle action for . +/// +public sealed class ToggleClothingSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnToggleAction); + SubscribeLocalEvent(OnUnequipped); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + // test funny + if (string.IsNullOrEmpty(comp.Action)) + return; + + _actions.AddAction(uid, ref comp.ActionEntity, comp.Action); + _actions.SetToggled(comp.ActionEntity, _toggle.IsActivated(ent.Owner)); + Dirty(uid, comp); + } + + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) + { + var ev = new ToggleClothingCheckEvent(args.User); + RaiseLocalEvent(ent, ref ev); + if (!ev.Cancelled) + args.AddAction(ent.Comp.ActionEntity); + } + + private void OnToggleAction(Entity ent, ref ToggleActionEvent args) + { + args.Handled = _toggle.Toggle(ent.Owner, args.Performer); + } + + private void OnUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + if (ent.Comp.DisableOnUnequip) + _toggle.TryDeactivate(ent.Owner, args.Wearer); + } +} diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index b3fb607a38b..4bef74fd335 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,23 +1,13 @@ using Content.Shared.Alert; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Clothing; -[RegisterComponent, NetworkedComponent(), AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent] [Access(typeof(SharedMagbootsSystem))] public sealed partial class MagbootsComponent : Component { - [DataField] - public EntProtoId ToggleAction = "ActionToggleMagboots"; - - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; - - [DataField("on"), AutoNetworkedField] - public bool On; - [DataField] public ProtoId MagbootsAlert = "Magboots"; @@ -26,4 +16,10 @@ public sealed partial class MagbootsComponent : Component /// [DataField] public bool RequiresGrid = true; + + /// + /// Slot the clothing has to be worn in to work. + /// + [DataField] + public string Slot = "shoes"; } diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs new file mode 100644 index 00000000000..88d987aae18 --- /dev/null +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -0,0 +1,90 @@ +using Content.Shared.Actions; +using Content.Shared.Alert; +using Content.Shared.Atmos.Components; +using Content.Shared.Clothing.EntitySystems; +using Content.Shared.Gravity; +using Content.Shared.Inventory; +using Content.Shared.Item; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; +using Robust.Shared.Containers; + +namespace Content.Shared.Clothing; + +public sealed class SharedMagbootsSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly ClothingSystem _clothing = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnIsWeightless); + SubscribeLocalEvent>(OnIsWeightless); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var (uid, comp) = ent; + // only stick to the floor if being worn in the correct slot + if (_container.TryGetContainingContainer(uid, out var container) && + _inventory.TryGetSlotEntity(container.Owner, comp.Slot, out var worn) + && uid == worn) + { + UpdateMagbootEffects(container.Owner, ent, args.Activated); + } + + var prefix = args.Activated ? "on" : null; + _item.SetHeldPrefix(ent, prefix); + _clothing.SetEquippedPrefix(ent, prefix); + } + + private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + UpdateMagbootEffects(args.Wearer, ent, false); + } + + private void OnGotEquipped(Entity ent, ref ClothingGotEquippedEvent args) + { + UpdateMagbootEffects(args.Wearer, ent, _toggle.IsActivated(ent.Owner)); + } + + public void UpdateMagbootEffects(EntityUid user, Entity ent, bool state) + { + // TODO: public api for this and add access + if (TryComp(user, out var moved)) + moved.Enabled = !state; + + if (state) + _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); + else + _alerts.ClearAlert(user, ent.Comp.MagbootsAlert); + } + + private void OnIsWeightless(Entity ent, ref IsWeightlessEvent args) + { + if (args.Handled || !_toggle.IsActivated(ent.Owner)) + return; + + // do not cancel weightlessness if the person is in off-grid. + if (ent.Comp.RequiresGrid && !_gravity.EntityOnGravitySupportingGridOrMap(ent.Owner)) + return; + + args.IsWeightless = false; + args.Handled = true; + } + + private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) + { + OnIsWeightless(ent, ref args.Args); + } +} diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs deleted file mode 100644 index 68145936152..00000000000 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ /dev/null @@ -1,160 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Alert; -using Content.Shared.Atmos.Components; -using Content.Shared.Clothing.EntitySystems; -using Content.Shared.Gravity; -using Content.Shared.Inventory; -using Content.Shared.Item; -using Content.Shared.Slippery; -using Content.Shared.Toggleable; -using Content.Shared.Verbs; -using Robust.Shared.Containers; - -namespace Content.Shared.Clothing; - -public sealed class SharedMagbootsSystem : EntitySystem -{ - [Dependency] private readonly AlertsSystem _alerts = default!; - [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; - [Dependency] private readonly ClothingSystem _clothing = default!; - [Dependency] private readonly SharedGravitySystem _gravity = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly SharedActionsSystem _sharedActions = default!; - [Dependency] private readonly SharedActionsSystem _actionContainer = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedContainerSystem _sharedContainer = default!; - [Dependency] private readonly SharedItemSystem _item = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(AddToggleVerb); - SubscribeLocalEvent>(OnSlipAttempt); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleMagboots); - SubscribeLocalEvent(OnMapInit); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - - SubscribeLocalEvent>(OnIsWeightless); - } - - private void OnMapInit(EntityUid uid, MagbootsComponent component, MapInitEvent args) - { - _actionContainer.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); - } - - private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, ref ClothingGotUnequippedEvent args) - { - UpdateMagbootEffects(args.Wearer, uid, false, component); - } - - private void OnGotEquipped(EntityUid uid, MagbootsComponent component, ref ClothingGotEquippedEvent args) - { - UpdateMagbootEffects(args.Wearer, uid, true, component); - } - - private void OnToggleMagboots(EntityUid uid, MagbootsComponent component, ToggleMagbootsEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - - ToggleMagboots(uid, component); - } - - private void ToggleMagboots(EntityUid uid, MagbootsComponent magboots) - { - magboots.On = !magboots.On; - - if (_sharedContainer.TryGetContainingContainer((uid, Transform(uid)), out var container) && - _inventory.TryGetSlotEntity(container.Owner, "shoes", out var entityUid) && entityUid == uid) - { - UpdateMagbootEffects(container.Owner, uid, true, magboots); - } - - if (TryComp(uid, out var item)) - { - _item.SetHeldPrefix(uid, magboots.On ? "on" : null, component: item); - _clothing.SetEquippedPrefix(uid, magboots.On ? "on" : null); - } - - _appearance.SetData(uid, ToggleVisuals.Toggled, magboots.On); - OnChanged(uid, magboots); - Dirty(uid, magboots); - } - - public void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) - { - if (!Resolve(uid, ref component)) - return; - state = state && component.On; - - if (TryComp(parent, out MovedByPressureComponent? movedByPressure)) - { - movedByPressure.Enabled = !state; - } - - if (state) - { - _alerts.ShowAlert(parent, component.MagbootsAlert); - } - else - { - _alerts.ClearAlert(parent, component.MagbootsAlert); - } - } - - private void OnChanged(EntityUid uid, MagbootsComponent component) - { - _sharedActions.SetToggled(component.ToggleActionEntity, component.On); - _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid, component.On); - } - - private void AddToggleVerb(EntityUid uid, MagbootsComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - ActivationVerb verb = new() - { - Text = Loc.GetString("toggle-magboots-verb-get-data-text"), - Act = () => ToggleMagboots(uid, component), - // TODO VERB ICON add toggle icon? maybe a computer on/off symbol? - }; - args.Verbs.Add(verb); - } - - private void OnSlipAttempt(EntityUid uid, MagbootsComponent component, InventoryRelayedEvent args) - { - if (component.On) - args.Args.Cancel(); - } - - private void OnGetActions(EntityUid uid, MagbootsComponent component, GetItemActionsEvent args) - { - args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); - } - - private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) - { - if (args.Args.Handled) - return; - - if (!ent.Comp.On) - return; - - // do not cancel weightlessness if the person is in off-grid. - if (ent.Comp.RequiresGrid && !_gravity.EntityOnGravitySupportingGridOrMap(ent.Owner)) - return; - - args.Args.IsWeightless = false; - args.Args.Handled = true; - } -} - -public sealed partial class ToggleMagbootsEvent : InstantActionEvent; diff --git a/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs new file mode 100644 index 00000000000..760cefe27d4 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/ComponentTogglerSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.Item.ItemToggle.Components; + +namespace Content.Shared.Item.ItemToggle; + +/// +/// Handles component manipulation. +/// +public sealed class ComponentTogglerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggled); + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + var target = ent.Comp.Parent ? Transform(ent).ParentUid : ent.Owner; + + if (args.Activated) + EntityManager.AddComponents(target, ent.Comp.Components); + else + EntityManager.RemoveComponents(target, ent.Comp.RemoveComponents ?? ent.Comp.Components); + } +} diff --git a/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs new file mode 100644 index 00000000000..20ef0a02315 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/Components/ComponentTogglerComponent.cs @@ -0,0 +1,32 @@ +using Content.Shared.Item.ItemToggle; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Item.ItemToggle.Components; + +/// +/// Adds or removes components when toggled. +/// Requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ComponentTogglerSystem))] +public sealed partial class ComponentTogglerComponent : Component +{ + /// + /// The components to add when activated. + /// + [DataField(required: true)] + public ComponentRegistry Components = new(); + + /// + /// The components to remove when deactivated. + /// If this is null is reused. + /// + [DataField] + public ComponentRegistry? RemoveComponents; + + /// + /// If true, adds components on the entity's parent instead of the entity itself. + /// + [DataField] + public bool Parent; +} diff --git a/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs b/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs index 6d534713578..cdac49ae6d6 100644 --- a/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs +++ b/Content.Shared/Item/ItemToggle/Components/ItemToggleActiveSoundComponent.cs @@ -12,12 +12,12 @@ public sealed partial class ItemToggleActiveSoundComponent : Component /// /// The continuous noise this item makes when it's activated (like an e-sword's hum). /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField(required: true), AutoNetworkedField] public SoundSpecifier? ActiveSound; /// /// Used when the item emits sound while active. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public EntityUid? PlayingStream; } diff --git a/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs b/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs index 620ddfd1942..46249fdd0de 100644 --- a/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs +++ b/Content.Shared/Item/ItemToggle/Components/ItemToggleComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Item.ItemToggle.Components; /// /// /// If you need extended functionality (e.g. requiring power) then add a new component and use events: -/// ItemToggleActivateAttemptEvent, ItemToggleDeactivateAttemptEvent or ItemToggleForceToggleEvent. +/// ItemToggleActivateAttemptEvent, ItemToggleDeactivateAttemptEvent, ItemToggledEvent. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ItemToggleComponent : Component @@ -19,6 +19,13 @@ public sealed partial class ItemToggleComponent : Component [DataField, AutoNetworkedField] public bool Activated = false; + /// + /// If this is set to false then the item can't be toggled by pressing Z. + /// Use another system to do it then. + /// + [DataField] + public bool OnUse = true; + /// /// Whether the item's toggle can be predicted by the client. /// diff --git a/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs b/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs new file mode 100644 index 00000000000..b673c55e0f1 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/Components/ToggleVerbComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Item.ItemToggle; +using Robust.Shared.GameStates; + +namespace Content.Shared.Item.ItemToggle.Components; + +/// +/// Adds a verb for toggling something, requires . +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ToggleVerbSystem))] +public sealed partial class ToggleVerbComponent : Component +{ + /// + /// Text the verb will have. + /// Gets passed "entity" as the entity's identity string. + /// + [DataField(required: true)] + public LocId Text = string.Empty; +} diff --git a/Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs similarity index 54% rename from Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs rename to Content.Shared/Item/ItemToggle/ItemToggleSystem.cs index 523f67bac3d..6b969d1d62b 100644 --- a/Content.Shared/Item/ItemToggle/SharedItemToggleSystem.cs +++ b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs @@ -15,12 +15,12 @@ namespace Content.Shared.Item.ItemToggle; /// /// If you need extended functionality (e.g. requiring power) then add a new component and use events. /// -public abstract class SharedItemToggleSystem : EntitySystem +public sealed class ItemToggleSystem : EntitySystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPointLightSystem _light = default!; - [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() @@ -28,8 +28,9 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(TurnOffonUnwielded); - SubscribeLocalEvent(TurnOnonWielded); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(TurnOffOnUnwielded); + SubscribeLocalEvent(TurnOnOnWielded); SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnIsHotEvent); @@ -42,57 +43,76 @@ private void OnStartup(Entity ent, ref ComponentStartup arg UpdateVisuals(ent); } - private void OnUseInHand(EntityUid uid, ItemToggleComponent itemToggle, UseInHandEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (!ent.Comp.Activated) + return; + + var ev = new ItemToggledEvent(Predicted: ent.Comp.Predictable, Activated: ent.Comp.Activated, User: null); + RaiseLocalEvent(ent, ref ev); + } + + private void OnUseInHand(Entity ent, ref UseInHandEvent args) { - if (args.Handled) + if (args.Handled || !ent.Comp.OnUse) return; args.Handled = true; - Toggle(uid, args.User, predicted: itemToggle.Predictable, itemToggle: itemToggle); + Toggle((ent, ent.Comp), args.User, predicted: ent.Comp.Predictable); } /// /// Used when an item is attempted to be toggled. + /// Sets its state to the opposite of what it is. /// - public void Toggle(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + /// Same as + public bool Toggle(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) - return; + if (!Resolve(ent, ref ent.Comp)) + return false; - if (itemToggle.Activated) - { - TryDeactivate(uid, user, itemToggle: itemToggle, predicted: predicted); - } + return TrySetActive(ent, !ent.Comp.Activated, user, predicted); + } + + /// + /// Tries to set the activated bool from a value. + /// + /// false if the attempt fails for any reason + public bool TrySetActive(Entity ent, bool active, EntityUid? user = null, bool predicted = true) + { + if (active) + return TryActivate(ent, user, predicted: predicted); else - { - TryActivate(uid, user, itemToggle: itemToggle, predicted: predicted); - } + return TryDeactivate(ent, user, predicted: predicted); } /// /// Used when an item is attempting to be activated. It returns false if the attempt fails any reason, interrupting the activation. /// - public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + public bool TryActivate(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) + if (!Resolve(ent, ref ent.Comp)) return false; - if (itemToggle.Activated) + var uid = ent.Owner; + var comp = ent.Comp; + if (comp.Activated) return true; - if (!itemToggle.Predictable && _netManager.IsClient) + if (!comp.Predictable && _netManager.IsClient) return true; var attempt = new ItemToggleActivateAttemptEvent(user); RaiseLocalEvent(uid, ref attempt); + if (!comp.Predictable) predicted = false; if (attempt.Cancelled) { if (predicted) - _audio.PlayPredicted(itemToggle.SoundFailToActivate, uid, user); + _audio.PlayPredicted(comp.SoundFailToActivate, uid, user); else - _audio.PlayPvs(itemToggle.SoundFailToActivate, uid); + _audio.PlayPvs(comp.SoundFailToActivate, uid); if (attempt.Popup != null && user != null) { @@ -105,7 +125,7 @@ public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = return false; } - Activate(uid, itemToggle, predicted, user); + Activate((uid, comp), predicted, user); return true; } @@ -113,75 +133,65 @@ public bool TryActivate(EntityUid uid, EntityUid? user = null, bool predicted = /// /// Used when an item is attempting to be deactivated. It returns false if the attempt fails any reason, interrupting the deactivation. /// - public bool TryDeactivate(EntityUid uid, EntityUid? user = null, bool predicted = true, ItemToggleComponent? itemToggle = null) + public bool TryDeactivate(Entity ent, EntityUid? user = null, bool predicted = true) { - if (!Resolve(uid, ref itemToggle)) + if (!Resolve(ent, ref ent.Comp)) return false; - if (!itemToggle.Predictable && _netManager.IsClient) + var uid = ent.Owner; + var comp = ent.Comp; + if (!comp.Activated) return true; - if (!itemToggle.Activated) + if (!comp.Predictable && _netManager.IsClient) return true; var attempt = new ItemToggleDeactivateAttemptEvent(user); RaiseLocalEvent(uid, ref attempt); if (attempt.Cancelled) - { return false; - } - Deactivate(uid, itemToggle, predicted, user); + if (!comp.Predictable) predicted = false; + Deactivate((uid, comp), predicted, user); return true; } - private void Activate(EntityUid uid, ItemToggleComponent itemToggle, bool predicted, EntityUid? user = null) + private void Activate(Entity ent, bool predicted, EntityUid? user = null) { - // TODO: Fix this hardcoding - TryComp(uid, out AppearanceComponent? appearance); - _appearance.SetData(uid, ToggleableLightVisuals.Enabled, true, appearance); - _appearance.SetData(uid, ToggleVisuals.Toggled, true, appearance); - - if (_light.TryGetLight(uid, out var light)) - { - _light.SetEnabled(uid, true, light); - } - - var soundToPlay = itemToggle.SoundActivate; + var (uid, comp) = ent; + var soundToPlay = comp.SoundActivate; if (predicted) _audio.PlayPredicted(soundToPlay, uid, user); else _audio.PlayPvs(soundToPlay, uid); - // END FIX HARDCODING + comp.Activated = true; + UpdateVisuals((uid, comp)); + Dirty(uid, comp); var toggleUsed = new ItemToggledEvent(predicted, Activated: true, user); RaiseLocalEvent(uid, ref toggleUsed); - - itemToggle.Activated = true; - UpdateVisuals((uid, itemToggle)); - Dirty(uid, itemToggle); } /// /// Used to make the actual changes to the item's components on deactivation. /// - private void Deactivate(EntityUid uid, ItemToggleComponent itemToggle, bool predicted, EntityUid? user = null) + private void Deactivate(Entity ent, bool predicted, EntityUid? user = null) { - var soundToPlay = itemToggle.SoundDeactivate; + var (uid, comp) = ent; + var soundToPlay = comp.SoundDeactivate; if (predicted) _audio.PlayPredicted(soundToPlay, uid, user); else _audio.PlayPvs(soundToPlay, uid); - // END FIX HARDCODING + + comp.Activated = false; + UpdateVisuals((uid, comp)); + Dirty(uid, comp); var toggleUsed = new ItemToggledEvent(predicted, Activated: false, user); RaiseLocalEvent(uid, ref toggleUsed); - - itemToggle.Activated = false; - UpdateVisuals((uid, itemToggle)); - Dirty(uid, itemToggle); } private void UpdateVisuals(Entity ent) @@ -204,55 +214,56 @@ private void UpdateVisuals(Entity ent) /// /// Used for items that require to be wielded in both hands to activate. For instance the dual energy sword will turn off if not wielded. /// - private void TurnOffonUnwielded(EntityUid uid, ItemToggleComponent itemToggle, ItemUnwieldedEvent args) + private void TurnOffOnUnwielded(Entity ent, ref ItemUnwieldedEvent args) { - if (itemToggle.Activated) - TryDeactivate(uid, args.User, itemToggle: itemToggle); + TryDeactivate((ent, ent.Comp), args.User); } /// /// Wieldable items will automatically turn on when wielded. /// - private void TurnOnonWielded(EntityUid uid, ItemToggleComponent itemToggle, ref ItemWieldedEvent args) + private void TurnOnOnWielded(Entity ent, ref ItemWieldedEvent args) { - if (!itemToggle.Activated) - TryActivate(uid, itemToggle: itemToggle); + // FIXME: for some reason both client and server play sound + TryActivate((ent, ent.Comp)); } - public bool IsActivated(EntityUid uid, ItemToggleComponent? comp = null) + public bool IsActivated(Entity ent) { - if (!Resolve(uid, ref comp, false)) + if (!Resolve(ent, ref ent.Comp, false)) return true; // assume always activated if no component - return comp.Activated; + return ent.Comp.Activated; } /// /// Used to make the item hot when activated. /// - private void OnIsHotEvent(EntityUid uid, ItemToggleHotComponent itemToggleHot, IsHotEvent args) + private void OnIsHotEvent(Entity ent, ref IsHotEvent args) { - args.IsHot |= IsActivated(uid); + args.IsHot |= IsActivated(ent.Owner); } /// /// Used to update the looping active sound linked to the entity. /// - private void UpdateActiveSound(EntityUid uid, ItemToggleActiveSoundComponent activeSound, ref ItemToggledEvent args) + private void UpdateActiveSound(Entity ent, ref ItemToggledEvent args) { - if (args.Activated) + var (uid, comp) = ent; + if (!args.Activated) { - if (activeSound.ActiveSound != null && activeSound.PlayingStream == null) - { - if (args.Predicted) - activeSound.PlayingStream = _audio.PlayPredicted(activeSound.ActiveSound, uid, args.User, AudioParams.Default.WithLoop(true)).Value.Entity; - else - activeSound.PlayingStream = _audio.PlayPvs(activeSound.ActiveSound, uid, AudioParams.Default.WithLoop(true)).Value.Entity; - } + comp.PlayingStream = _audio.Stop(comp.PlayingStream); + return; } - else + + if (comp.ActiveSound != null && comp.PlayingStream == null) { - activeSound.PlayingStream = _audio.Stop(activeSound.PlayingStream); + var loop = AudioParams.Default.WithLoop(true); + var stream = args.Predicted + ? _audio.PlayPredicted(comp.ActiveSound, uid, args.User, loop) + : _audio.PlayPvs(comp.ActiveSound, uid, loop); + if (stream?.Entity is {} entity) + comp.PlayingStream = entity; } } } diff --git a/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs b/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs new file mode 100644 index 00000000000..858cd9bc111 --- /dev/null +++ b/Content.Shared/Item/ItemToggle/ToggleVerbSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.IdentityManagement; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Verbs; + +namespace Content.Shared.Item.ItemToggle; + +/// +/// Adds a verb for toggling something with . +/// +public sealed class ToggleVerbSystem : EntitySystem +{ + [Dependency] private readonly ItemToggleSystem _toggle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerbs); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var name = Identity.Entity(ent, EntityManager); + var user = args.User; + args.Verbs.Add(new ActivationVerb() + { + Text = Loc.GetString(ent.Comp.Text, ("entity", name)), + Act = () => _toggle.Toggle(ent.Owner, user) + }); + } +} diff --git a/Content.Shared/Medical/DefibrillatorComponent.cs b/Content.Shared/Medical/DefibrillatorComponent.cs index 61a02187d09..e4cd8077d26 100644 --- a/Content.Shared/Medical/DefibrillatorComponent.cs +++ b/Content.Shared/Medical/DefibrillatorComponent.cs @@ -10,16 +10,11 @@ namespace Content.Shared.Medical; /// /// This is used for defibrillators; a machine that shocks a dead /// person back into the world of the living. +/// Uses ItemToggleComponent /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] public sealed partial class DefibrillatorComponent : Component { - /// - /// Whether or not it's turned on and able to be used. - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite)] - public bool Enabled; - /// /// The time at which the zap cooldown will be completed /// @@ -72,15 +67,6 @@ public sealed partial class DefibrillatorComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("zapSound")] public SoundSpecifier? ZapSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_zap.ogg"); - /// - /// The sound when the defib is powered on. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("powerOnSound")] - public SoundSpecifier? PowerOnSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_safety_on.ogg"); - - [ViewVariables(VVAccess.ReadWrite), DataField("powerOffSound")] - public SoundSpecifier? PowerOffSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_safety_off.ogg"); - [ViewVariables(VVAccess.ReadWrite), DataField("chargeSound")] public SoundSpecifier? ChargeSound = new SoundPathSpecifier("/Audio/Items/Defib/defib_charge.ogg"); diff --git a/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs index 55bcdd0f0a5..9c39c4724ce 100644 --- a/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs +++ b/Content.Shared/Ninja/Components/BatteryDrainerComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Ninja.Systems; using Robust.Shared.Audio; +using Robust.Shared.GameStates; namespace Content.Shared.Ninja.Components; @@ -7,32 +8,33 @@ namespace Content.Shared.Ninja.Components; /// Component for draining power from APCs/substations/SMESes, when ProviderUid is set to a battery cell. /// Does not rely on relay, simply being on the user and having BatteryUid set is enough. /// -[RegisterComponent, Access(typeof(SharedBatteryDrainerSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedBatteryDrainerSystem))] public sealed partial class BatteryDrainerComponent : Component { /// /// The powercell entity to drain power into. /// Determines whether draining is possible. /// - [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public EntityUid? BatteryUid; /// /// Conversion rate between joules in a device and joules added to battery. /// Should be very low since powercells store nothing compared to even an APC. /// - [DataField("drainEfficiency"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DrainEfficiency = 0.001f; /// /// Time that the do after takes to drain charge from a battery, in seconds /// - [DataField("drainTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DrainTime = 1f; /// /// Sound played after the doafter ends. /// - [DataField("sparkSound")] + [DataField] public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks"); } diff --git a/Content.Shared/Ninja/Components/BombingTargetComponent.cs b/Content.Shared/Ninja/Components/BombingTargetComponent.cs index bf0eaec84be..c429eb6880e 100644 --- a/Content.Shared/Ninja/Components/BombingTargetComponent.cs +++ b/Content.Shared/Ninja/Components/BombingTargetComponent.cs @@ -4,6 +4,4 @@ namespace Content.Shared.Ninja.Components; /// Makes this warp point a valid bombing target for ninja's spider charge. /// [RegisterComponent] -public sealed partial class BombingTargetComponent : Component -{ -} +public sealed partial class BombingTargetComponent : Component; diff --git a/Content.Shared/Ninja/Components/DashAbilityComponent.cs b/Content.Shared/Ninja/Components/DashAbilityComponent.cs index ba4060c7035..464f48f187e 100644 --- a/Content.Shared/Ninja/Components/DashAbilityComponent.cs +++ b/Content.Shared/Ninja/Components/DashAbilityComponent.cs @@ -8,6 +8,7 @@ namespace Content.Shared.Ninja.Components; /// /// Adds an action to dash, teleport to clicked position, when this item is held. +/// Cancel to prevent using it. /// [RegisterComponent, NetworkedComponent, Access(typeof(DashAbilitySystem)), AutoGenerateComponentState] public sealed partial class DashAbilityComponent : Component @@ -16,19 +17,10 @@ public sealed partial class DashAbilityComponent : Component /// The action id for dashing. /// [DataField] - public EntProtoId DashAction = "ActionEnergyKatanaDash"; + public EntProtoId DashAction = "ActionEnergyKatanaDash"; [DataField, AutoNetworkedField] public EntityUid? DashActionEntity; - - /// - /// Sound played when using dash action. - /// - [DataField("blinkSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg") - { - Params = AudioParams.Default.WithVolume(5f) - }; } -public sealed partial class DashEvent : WorldTargetActionEvent { } +public sealed partial class DashEvent : WorldTargetActionEvent; diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs index db7678f61d7..ae3e85cbe42 100644 --- a/Content.Shared/Ninja/Components/EmagProviderComponent.cs +++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Tag; using Content.Shared.Whitelist; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Shared.Ninja.Components; @@ -10,19 +10,18 @@ namespace Content.Shared.Ninja.Components; /// Component for emagging things on click. /// No charges but checks against a whitelist. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -[Access(typeof(EmagProviderSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(EmagProviderSystem))] public sealed partial class EmagProviderComponent : Component { /// /// The tag that marks an entity as immune to emagging. /// - [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EmagImmuneTag = "EmagImmune"; + [DataField] + public ProtoId EmagImmuneTag = "EmagImmune"; /// /// Whitelist that entities must be on to work. /// - [DataField("whitelist"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public EntityWhitelist? Whitelist = null; + [DataField] + public EntityWhitelist? Whitelist; } diff --git a/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs index 33b8fc78933..84c58bb6480 100644 --- a/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs +++ b/Content.Shared/Ninja/Components/EnergyKatanaComponent.cs @@ -7,6 +7,4 @@ namespace Content.Shared.Ninja.Components; /// Requires a ninja with a suit for abilities to work. /// [RegisterComponent, NetworkedComponent] -public sealed partial class EnergyKatanaComponent : Component -{ -} +public sealed partial class EnergyKatanaComponent : Component; diff --git a/Content.Shared/Ninja/Components/ItemCreatorComponent.cs b/Content.Shared/Ninja/Components/ItemCreatorComponent.cs new file mode 100644 index 00000000000..d9f66d21a31 --- /dev/null +++ b/Content.Shared/Ninja/Components/ItemCreatorComponent.cs @@ -0,0 +1,52 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Ninja.Components; + +/// +/// Uses battery charge to spawn an item and place it in the user's hands. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedItemCreatorSystem))] +public sealed partial class ItemCreatorComponent : Component +{ + /// + /// The battery entity to use charge from + /// + [DataField, AutoNetworkedField] + public EntityUid? Battery; + + /// + /// The action id for creating an item. + /// + [DataField(required: true)] + public EntProtoId Action = string.Empty; + + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + + /// + /// Battery charge used to create an item. + /// + [DataField(required: true)] + public float Charge = 14.4f; + + /// + /// Item to create with the action + /// + [DataField(required: true)] + public EntProtoId SpawnedPrototype = string.Empty; + + /// + /// Popup shown to the user when there isn't enough power to create an item. + /// + [DataField(required: true)] + public LocId NoPowerPopup = string.Empty; +} + +/// +/// Action event to use an . +/// +public sealed partial class CreateItemEvent : InstantActionEvent; diff --git a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs index 7b57926330b..3b9e2a5e356 100644 --- a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs @@ -1,20 +1,17 @@ -using Content.Shared.DoAfter; using Content.Shared.Ninja.Systems; -using Content.Shared.Toggleable; -using Content.Shared.Whitelist; +using Content.Shared.Objectives.Components; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Utility; namespace Content.Shared.Ninja.Components; /// /// Component for toggling glove powers. -/// Powers being enabled is controlled by User not being null. /// +/// +/// Requires ItemToggleComponent. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [Access(typeof(SharedNinjaGlovesSystem))] public sealed partial class NinjaGlovesComponent : Component @@ -22,24 +19,33 @@ public sealed partial class NinjaGlovesComponent : Component /// /// Entity of the ninja using these gloves, usually means enabled /// - [DataField("user"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? User; /// - /// The action id for toggling ninja gloves abilities + /// Abilities to give to the user when enabled. /// - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ToggleAction = "ActionToggleNinjaGloves"; + [DataField(required: true)] + public List Abilities = new(); +} - [DataField, AutoNetworkedField] - public EntityUid? ToggleActionEntity; +/// +/// An ability that adds components to the user when the gloves are enabled. +/// +[DataRecord] +public record struct NinjaGloveAbility() +{ + /// + /// If not null, checks if an objective with this prototype has been completed. + /// If it has, the ability components are skipped to prevent doing the objective twice. + /// The objective must have CodeConditionComponent to be checked. + /// + [DataField] + public EntProtoId? Objective; /// - /// The whitelist used for the emag provider to emag airlocks only (not regular doors). + /// Components to add and remove. /// - [DataField("doorjackWhitelist")] - public EntityWhitelist DoorjackWhitelist = new() - { - Components = new[] {"Airlock"} - }; + [DataField(required: true)] + public ComponentRegistry Components = new(); } diff --git a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs index 7e7b1ffcd30..8b477b2aa5f 100644 --- a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs @@ -3,9 +3,6 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; namespace Content.Shared.Ninja.Components; @@ -14,68 +11,27 @@ namespace Content.Shared.Ninja.Components; /// Component for ninja suit abilities and power consumption. /// As an implementation detail, dashing with katana is a suit action which isn't ideal. /// -[RegisterComponent, NetworkedComponent, Access(typeof(SharedNinjaSuitSystem)), AutoGenerateComponentState] -[AutoGenerateComponentPause] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedNinjaSuitSystem))] public sealed partial class NinjaSuitComponent : Component { - /// - /// Battery charge used passively, in watts. Will last 1000 seconds on a small-capacity power cell. - /// - [DataField("passiveWattage")] - public float PassiveWattage = 0.36f; - - /// - /// Battery charge used while cloaked, stacks with passive. Will last 200 seconds while cloaked on a small-capacity power cell. - /// - [DataField("cloakWattage")] - public float CloakWattage = 1.44f; - /// /// Sound played when a ninja is hit while cloaked. /// - [DataField("revealSound")] + [DataField] public SoundSpecifier RevealSound = new SoundPathSpecifier("/Audio/Effects/chime.ogg"); /// - /// How long to disable all abilities when revealed. - /// Normally, ninjas are revealed when attacking or getting damaged. - /// - [DataField("disableTime")] - public TimeSpan DisableTime = TimeSpan.FromSeconds(5); - - /// - /// Time at which we will be able to use our abilities again + /// ID of the use delay to disable all ninja abilities. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - [AutoPausedField] - public TimeSpan DisableCooldown; - - /// - /// The action id for creating throwing stars. - /// - [DataField("createThrowingStarAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string CreateThrowingStarAction = "ActionCreateThrowingStar"; - - [DataField, AutoNetworkedField] - public EntityUid? CreateThrowingStarActionEntity; - - /// - /// Battery charge used to create a throwing star. Can do it 25 times on a small-capacity power cell. - /// - [DataField("throwingStarCharge")] - public float ThrowingStarCharge = 14.4f; - - /// - /// Throwing star item to create with the action - /// - [DataField("throwingStarPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ThrowingStarPrototype = "ThrowingStarNinja"; + [DataField] + public string DisableDelayId = "suit_powers"; /// /// The action id for recalling a bound energy katana /// - [DataField("recallKatanaAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string RecallKatanaAction = "ActionRecallKatana"; + [DataField] + public EntProtoId RecallKatanaAction = "ActionRecallKatana"; [DataField, AutoNetworkedField] public EntityUid? RecallKatanaActionEntity; @@ -84,14 +40,14 @@ public sealed partial class NinjaSuitComponent : Component /// Battery charge used per tile the katana teleported. /// Uses 1% of a default battery per tile. /// - [DataField("recallCharge")] + [DataField] public float RecallCharge = 3.6f; /// /// The action id for creating an EMP burst /// - [DataField("empAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string EmpAction = "ActionNinjaEmp"; + [DataField] + public EntProtoId EmpAction = "ActionNinjaEmp"; [DataField, AutoNetworkedField] public EntityUid? EmpActionEntity; @@ -99,36 +55,29 @@ public sealed partial class NinjaSuitComponent : Component /// /// Battery charge used to create an EMP burst. Can do it 2 times on a small-capacity power cell. /// - [DataField("empCharge")] + [DataField] public float EmpCharge = 180f; + // TODO: EmpOnTrigger bruh /// /// Range of the EMP in tiles. /// - [DataField("empRange")] + [DataField] public float EmpRange = 6f; /// /// Power consumed from batteries by the EMP /// - [DataField("empConsumption")] + [DataField] public float EmpConsumption = 100000f; /// /// How long the EMP effects last for, in seconds /// - [DataField("empDuration")] + [DataField] public float EmpDuration = 60f; } -public sealed partial class CreateThrowingStarEvent : InstantActionEvent -{ -} - -public sealed partial class RecallKatanaEvent : InstantActionEvent -{ -} +public sealed partial class RecallKatanaEvent : InstantActionEvent; -public sealed partial class NinjaEmpEvent : InstantActionEvent -{ -} +public sealed partial class NinjaEmpEvent : InstantActionEvent; diff --git a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs index 91c816df5c9..a19537be1c8 100644 --- a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs +++ b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs @@ -7,34 +7,28 @@ namespace Content.Shared.Ninja.Components; /// /// Component placed on a mob to make it a space ninja, able to use suit and glove powers. -/// Contains ids of all ninja equipment and the game rule. +/// Contains ids of all ninja equipment. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [Access(typeof(SharedSpaceNinjaSystem))] public sealed partial class SpaceNinjaComponent : Component { - /// - /// The ninja game rule that spawned this ninja. - /// - [DataField("rule")] - public EntityUid? Rule; - /// /// Currently worn suit /// - [DataField("suit"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Suit; /// - /// Currently worn gloves + /// Currently worn gloves, if enabled. /// - [DataField("gloves"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Gloves; /// /// Bound katana, set once picked up and never removed /// - [DataField("katana"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Katana; /// @@ -55,6 +49,9 @@ public sealed partial class SpaceNinjaComponent : Component [DataField] public EntProtoId SpiderChargeObjective = "SpiderChargeObjective"; + /// + /// Alert to show for suit power. + /// [DataField] public ProtoId SuitPowerAlert = "SuitPower"; } diff --git a/Content.Shared/Ninja/Components/SpiderChargeComponent.cs b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs index dacf47bb235..3ba4494cca4 100644 --- a/Content.Shared/Ninja/Components/SpiderChargeComponent.cs +++ b/Content.Shared/Ninja/Components/SpiderChargeComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Ninja.Systems; using Robust.Shared.GameStates; namespace Content.Shared.Ninja.Components; @@ -6,14 +7,14 @@ namespace Content.Shared.Ninja.Components; /// Component for the Space Ninja's unique Spider Charge. /// Only this component detonating can trigger the ninja's objective. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, Access(typeof(SharedSpiderChargeSystem))] public sealed partial class SpiderChargeComponent : Component { /// Range for planting within the target area - [DataField("range")] + [DataField] public float Range = 10f; /// The ninja that planted this charge - [DataField("planter")] - public EntityUid? Planter = null; + [DataField] + public EntityUid? Planter; } diff --git a/Content.Shared/Ninja/Components/StunProviderComponent.cs b/Content.Shared/Ninja/Components/StunProviderComponent.cs index 37a27074a49..2da094291d7 100644 --- a/Content.Shared/Ninja/Components/StunProviderComponent.cs +++ b/Content.Shared/Ninja/Components/StunProviderComponent.cs @@ -3,7 +3,6 @@ using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Ninja.Components; @@ -11,32 +10,33 @@ namespace Content.Shared.Ninja.Components; /// Component for stunning mobs on click outside of harm mode. /// Knocks them down for a bit and deals shock damage. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStunProviderSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedStunProviderSystem))] public sealed partial class StunProviderComponent : Component { /// /// The powercell entity to take power from. /// Determines whether stunning is possible. /// - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? BatteryUid; /// /// Sound played when stunning someone. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public SoundSpecifier Sound = new SoundCollectionSpecifier("sparks"); /// /// Joules required in the battery to stun someone. Defaults to 10 uses on a small battery. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float StunCharge = 36f; /// /// Damage dealt when stunning someone /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public DamageSpecifier StunDamage = new() { DamageDict = new() @@ -48,34 +48,30 @@ public sealed partial class StunProviderComponent : Component /// /// Time that someone is stunned for, stacks if done multiple times. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan StunTime = TimeSpan.FromSeconds(5); /// /// How long stunning is disabled after stunning something. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan Cooldown = TimeSpan.FromSeconds(2); /// - /// Locale string to popup when there is no power + /// ID of the cooldown use delay. /// - [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] - public string NoPowerPopup = string.Empty; + [DataField] + public string DelayId = "stun_cooldown"; /// - /// Whitelist for what counts as a mob. + /// Locale string to popup when there is no power /// - [DataField] - public EntityWhitelist Whitelist = new() - { - Components = new[] {"Stamina"} - }; + [DataField(required: true)] + public LocId NoPowerPopup = string.Empty; /// - /// When someone can next be stunned. - /// Essentially a UseDelay unique to this component. + /// Whitelist for what counts as a mob. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan NextStun = TimeSpan.Zero; + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); } diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index 4853968b61f..1385219e473 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -16,6 +16,7 @@ namespace Content.Shared.Ninja.Systems; /// public sealed class DashAbilitySystem : EntitySystem { + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; @@ -23,48 +24,40 @@ public sealed class DashAbilitySystem : EntitySystem [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnDash); SubscribeLocalEvent(OnMapInit); } - private void OnMapInit(EntityUid uid, DashAbilityComponent component, MapInitEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) { - _actionContainer.EnsureAction(uid, ref component.DashActionEntity, component.DashAction); - Dirty(uid, component); + var (uid, comp) = ent; + _actionContainer.EnsureAction(uid, ref comp.DashActionEntity, comp.DashAction); + Dirty(uid, comp); } - private void OnGetItemActions(EntityUid uid, DashAbilityComponent comp, GetItemActionsEvent args) + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) { - var ev = new AddDashActionEvent(args.User); - RaiseLocalEvent(uid, ev); - - if (ev.Cancelled) - return; - - args.AddAction(ref comp.DashActionEntity, comp.DashAction); + if (CheckDash(ent, args.User)) + args.AddAction(ent.Comp.DashActionEntity); } /// /// Handle charges and teleport to a visible location. /// - private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) + private void OnDash(Entity ent, ref DashEvent args) { if (!_timing.IsFirstTimePredicted) return; + var (uid, comp) = ent; var user = args.Performer; - args.Handled = true; - - var ev = new DashAttemptEvent(user); - RaiseLocalEvent(uid, ev); - if (ev.Cancelled) + if (!CheckDash(uid, user)) return; if (!_hands.IsHolding(user, uid, out var _)) @@ -73,15 +66,8 @@ private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) return; } - TryComp(uid, out var charges); - if (_charges.IsEmpty(uid, charges)) - { - _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); - return; - } var origin = _transform.GetMapCoordinates(user); var target = args.Target.ToMap(EntityManager, _transform); - // prevent collision with the user duh if (!_examine.InRangeUnOccluded(origin, target, SharedInteractionSystem.MaxRaycastRange, null)) { // can only dash if the destination is visible on screen @@ -89,36 +75,28 @@ private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) return; } - _transform.SetCoordinates(user, args.Target); - _transform.AttachToGridOrMap(user); - _audio.PlayPredicted(comp.BlinkSound, user, user); - if (charges != null) - _charges.UseCharge(uid, charges); - } -} + if (!_charges.TryUseCharge(uid)) + { + _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); + return; + } -/// -/// Raised on the item before adding the dash action -/// -public sealed class AddDashActionEvent : CancellableEntityEventArgs -{ - public EntityUid User; + var xform = Transform(user); + _transform.SetCoordinates(user, xform, args.Target); + _transform.AttachToGridOrMap(user, xform); + args.Handled = true; + } - public AddDashActionEvent(EntityUid user) + public bool CheckDash(EntityUid uid, EntityUid user) { - User = user; + var ev = new CheckDashEvent(user); + RaiseLocalEvent(uid, ref ev); + return !ev.Cancelled; } } /// -/// Raised on the item before dashing is done. +/// Raised on the item before adding the dash action and when using the action. /// -public sealed class DashAttemptEvent : CancellableEntityEventArgs -{ - public EntityUid User; - - public DashAttemptEvent(EntityUid user) - { - User = user; - } -} +[ByRefEvent] +public record struct CheckDashEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs index 6838e7982cb..ae0bacaf5f6 100644 --- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs +++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs @@ -1,6 +1,6 @@ using Content.Shared.Administration.Logs; -using Content.Shared.Emag.Systems; using Content.Shared.Database; +using Content.Shared.Emag.Systems; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Tag; @@ -14,10 +14,10 @@ namespace Content.Shared.Ninja.Systems; public sealed class EmagProviderSystem : EntitySystem { [Dependency] private readonly EmagSystem _emag = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -29,18 +29,20 @@ public override void Initialize() /// /// Emag clicked entities that are on the whitelist. /// - private void OnBeforeInteractHand(EntityUid uid, EmagProviderComponent comp, BeforeInteractHandEvent args) + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) { // TODO: change this into a generic check event thing - if (args.Handled || !_gloves.AbilityCheck(uid, args, out var target)) + if (args.Handled || !_gloves.AbilityCheck(ent, args, out var target)) return; + var (uid, comp) = ent; + // only allowed to emag entities on the whitelist - if (_whitelistSystem.IsWhitelistFail(comp.Whitelist, target)) + if (_whitelist.IsWhitelistFail(comp.Whitelist, target)) return; // only allowed to emag non-immune entities - if (_tags.HasTag(target, comp.EmagImmuneTag)) + if (_tag.HasTag(target, comp.EmagImmuneTag)) return; var handled = _emag.DoEmagEffect(uid, target); @@ -52,18 +54,6 @@ private void OnBeforeInteractHand(EntityUid uid, EmagProviderComponent comp, Bef RaiseLocalEvent(uid, ref ev); args.Handled = true; } - - /// - /// Set the whitelist for emagging something outside of yaml. - /// - public void SetWhitelist(EntityUid uid, EntityWhitelist? whitelist, EmagProviderComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return; - - comp.Whitelist = whitelist; - Dirty(uid, comp); - } } /// diff --git a/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs index d427ffa39b4..281b97a648a 100644 --- a/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs +++ b/Content.Shared/Ninja/Systems/EnergyKatanaSystem.cs @@ -15,33 +15,20 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnAddDashAction); - SubscribeLocalEvent(OnDashAttempt); + SubscribeLocalEvent(OnCheckDash); } /// /// When equipped by a ninja, try to bind it. /// - private void OnEquipped(EntityUid uid, EnergyKatanaComponent comp, GotEquippedEvent args) + private void OnEquipped(Entity ent, ref GotEquippedEvent args) { - // check if user isnt a ninja or already has a katana bound - var user = args.Equipee; - if (!TryComp(user, out var ninja) || ninja.Katana != null) - return; - - // bind it since its unbound - _ninja.BindKatana(user, uid, ninja); - } - - private void OnAddDashAction(EntityUid uid, EnergyKatanaComponent comp, AddDashActionEvent args) - { - if (!HasComp(args.User)) - args.Cancel(); + _ninja.BindKatana(args.Equipee, ent); } - private void OnDashAttempt(EntityUid uid, EnergyKatanaComponent comp, DashAttemptEvent args) + private void OnCheckDash(Entity ent, ref CheckDashEvent args) { - if (!TryComp(args.User, out var ninja) || ninja.Katana != uid) - args.Cancel(); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } } diff --git a/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs b/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs new file mode 100644 index 00000000000..56112e9a697 --- /dev/null +++ b/Content.Shared/Ninja/Systems/ItemCreatorSystem.cs @@ -0,0 +1,56 @@ +using Content.Shared.Actions; +using Content.Shared.Ninja.Components; + +namespace Content.Shared.Ninja.Systems; + +/// +/// Handles predicting that the action exists, creating items is done serverside. +/// +public abstract class SharedItemCreatorSystem : EntitySystem +{ + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnGetActions); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + // test funny dont mind me + if (string.IsNullOrEmpty(comp.Action)) + return; + + _actionContainer.EnsureAction(uid, ref comp.ActionEntity, comp.Action); + Dirty(uid, comp); + } + + private void OnGetActions(Entity ent, ref GetItemActionsEvent args) + { + if (CheckItemCreator(ent, args.User)) + args.AddAction(ent.Comp.ActionEntity); + } + + public bool CheckItemCreator(EntityUid uid, EntityUid user) + { + var ev = new CheckItemCreatorEvent(user); + RaiseLocalEvent(uid, ref ev); + return !ev.Cancelled; + } +} + +/// +/// Raised on the item creator before adding the action. +/// +[ByRefEvent] +public record struct CheckItemCreatorEvent(EntityUid User, bool Cancelled = false); + +/// +/// Raised on the item creator before creating an item. +/// +[ByRefEvent] +public record struct CreateItemAttemptEvent(EntityUid User, bool Cancelled = false); diff --git a/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs index ac11063eb71..0abcca7d1bd 100644 --- a/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedBatteryDrainerSystem.cs @@ -18,34 +18,32 @@ public override void Initialize() } /// - /// Cancel any drain doafters if the battery is removed or gets filled. + /// Cancel any drain doafters if the battery is removed or, on the server, gets filled. /// - protected virtual void OnDoAfterAttempt(EntityUid uid, BatteryDrainerComponent comp, DoAfterAttemptEvent args) + protected virtual void OnDoAfterAttempt(Entity ent, ref DoAfterAttemptEvent args) { - if (comp.BatteryUid == null) - { + if (ent.Comp.BatteryUid == null) args.Cancel(); - } } /// /// Drain power from a power source (on server) and repeat if it succeeded. /// Client will predict always succeeding since power is serverside. /// - private void OnDoAfter(EntityUid uid, BatteryDrainerComponent comp, DrainDoAfterEvent args) + private void OnDoAfter(Entity ent, ref DrainDoAfterEvent args) { - if (args.Cancelled || args.Handled || args.Target == null) + if (args.Cancelled || args.Handled || args.Target is not {} target) return; // repeat if there is still power to drain - args.Repeat = TryDrainPower(uid, comp, args.Target.Value); + args.Repeat = TryDrainPower(ent, target); } /// /// Attempt to drain as much power as possible into the powercell. /// Client always predicts this as succeeding since power is serverside and it can only fail once, when the powercell is filled or the target is emptied. /// - protected virtual bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp, EntityUid target) + protected virtual bool TryDrainPower(Entity ent, EntityUid target) { return true; } @@ -53,12 +51,13 @@ protected virtual bool TryDrainPower(EntityUid uid, BatteryDrainerComponent comp /// /// Sets the battery field on the drainer. /// - public void SetBattery(EntityUid uid, EntityUid? battery, BatteryDrainerComponent? comp = null) + public void SetBattery(Entity ent, EntityUid? battery) { - if (!Resolve(uid, ref comp)) + if (!Resolve(ent, ref ent.Comp) || ent.Comp.BatteryUid == battery) return; - comp.BatteryUid = battery; + ent.Comp.BatteryUid = battery; + Dirty(ent, ent.Comp); } } @@ -66,4 +65,4 @@ public void SetBattery(EntityUid uid, EntityUid? battery, BatteryDrainerComponen /// DoAfter event for . /// [Serializable, NetSerializable] -public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent { } +public sealed partial class DrainDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs index f61d0c6a908..8b892190b7b 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs @@ -1,15 +1,13 @@ -using Content.Shared.Actions; +using Content.Shared.Clothing.Components; using Content.Shared.CombatMode; -using Content.Shared.Communications; -using Content.Shared.CriminalRecords.Components; using Content.Shared.Examine; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Ninja.Components; using Content.Shared.Popups; -using Content.Shared.Research.Components; -using Content.Shared.Toggleable; using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; @@ -20,85 +18,105 @@ namespace Content.Shared.Ninja.Systems; public abstract class SharedNinjaGlovesSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; - [Dependency] protected readonly SharedInteractionSystem Interaction = default!; - [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetItemActions); + SubscribeLocalEvent(OnToggleCheck); + SubscribeLocalEvent(OnActivateAttempt); + SubscribeLocalEvent(OnToggled); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnMapInit); - } - - private void OnMapInit(EntityUid uid, NinjaGlovesComponent component, MapInitEvent args) - { - _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); } /// /// Disable glove abilities and show the popup if they were enabled previously. /// - public void DisableGloves(EntityUid uid, NinjaGlovesComponent? comp = null) + private void DisableGloves(Entity ent) { + var (uid, comp) = ent; + // already disabled? - if (!Resolve(uid, ref comp) || comp.User == null) + if (comp.User is not {} user) return; - var user = comp.User.Value; comp.User = null; Dirty(uid, comp); - Appearance.SetData(uid, ToggleVisuals.Toggled, false); - Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); - - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); - RemComp(user); + foreach (var ability in comp.Abilities) + { + EntityManager.RemoveComponents(user, ability.Components); + } } /// - /// Adds the toggle action when equipped. + /// Adds the toggle action when equipped by a ninja only. /// - private void OnGetItemActions(EntityUid uid, NinjaGlovesComponent comp, GetItemActionsEvent args) + private void OnToggleCheck(Entity ent, ref ToggleClothingCheckEvent args) { - if (HasComp(args.User)) - args.AddAction(ref comp.ToggleActionEntity, comp.ToggleAction); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } /// /// Show if the gloves are enabled when examining. /// - private void OnExamined(EntityUid uid, NinjaGlovesComponent comp, ExaminedEvent args) + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!args.IsInDetailsRange) return; - args.PushText(Loc.GetString(comp.User != null ? "ninja-gloves-examine-on" : "ninja-gloves-examine-off")); + var on = _toggle.IsActivated(ent.Owner) ? "on" : "off"; + args.PushText(Loc.GetString($"ninja-gloves-examine-{on}")); } - /// - /// Disable gloves when unequipped and clean up ninja's gloves reference - /// - private void OnUnequipped(EntityUid uid, NinjaGlovesComponent comp, GotUnequippedEvent args) + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) { - if (comp.User != null) + if (args.User is not {} user + || !_ninja.NinjaQuery.TryComp(user, out var ninja) + // need to wear suit to enable gloves + || !HasComp(ninja.Suit)) { - var user = comp.User.Value; - Popup.PopupClient(Loc.GetString("ninja-gloves-off"), user, user); - DisableGloves(uid, comp); + args.Cancelled = true; + args.Popup = Loc.GetString("ninja-gloves-not-wearing-suit"); + return; } } + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + if ((args.User ?? ent.Comp.User) is not {} user) + return; + + var message = Loc.GetString(args.Activated ? "ninja-gloves-on" : "ninja-gloves-off"); + _popup.PopupClient(message, user, user); + + if (args.Activated && _ninja.NinjaQuery.TryComp(user, out var ninja)) + EnableGloves(ent, (user, ninja)); + else + DisableGloves(ent); + } + + protected virtual void EnableGloves(Entity ent, Entity user) + { + var (uid, comp) = ent; + comp.User = user; + Dirty(uid, comp); + _ninja.AssignGloves(user, uid); + + // yeah this is just ComponentToggler but with objective checking + foreach (var ability in comp.Abilities) + { + // can't predict the objective related abilities + if (ability.Objective == null) + EntityManager.AddComponents(user, ability.Components); + } + } // TODO: generic event thing /// @@ -112,6 +130,6 @@ public bool AbilityCheck(EntityUid uid, BeforeInteractHandEvent args, out Entity && !_combatMode.IsInCombatMode(uid) && TryComp(uid, out var hands) && hands.ActiveHandEntity == null - && Interaction.InRangeUnobstructed(uid, target); + && _interaction.InRangeUnobstructed(uid, target); } } diff --git a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs index fed41eaed8a..3800d15b267 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs @@ -1,11 +1,14 @@ using Content.Shared.Actions; +using Content.Shared.Clothing; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Ninja.Components; using Content.Shared.Popups; +using Content.Shared.Timing; using Robust.Shared.Audio.Systems; -using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; @@ -14,137 +17,158 @@ namespace Content.Shared.Ninja.Systems; /// public abstract class SharedNinjaSuitSystem : EntitySystem { - [Dependency] protected readonly IGameTiming GameTiming = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; - [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] protected readonly StealthClothingSystem StealthClothing = default!; + [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnMapInit); - - SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnEquipped); SubscribeLocalEvent(OnGetItemActions); - SubscribeLocalEvent(OnAddStealthAction); + SubscribeLocalEvent(OnCloakCheck); + SubscribeLocalEvent(OnStarCheck); + SubscribeLocalEvent(OnCreateStarAttempt); + SubscribeLocalEvent(OnActivateAttempt); SubscribeLocalEvent(OnUnequipped); } - private void OnMapInit(EntityUid uid, NinjaSuitComponent component, MapInitEvent args) + private void OnEquipped(Entity ent, ref ClothingGotEquippedEvent args) { - _actionContainer.EnsureAction(uid, ref component.RecallKatanaActionEntity, component.RecallKatanaAction); - _actionContainer.EnsureAction(uid, ref component.CreateThrowingStarActionEntity, component.CreateThrowingStarAction); - _actionContainer.EnsureAction(uid, ref component.EmpActionEntity, component.EmpAction); - Dirty(uid, component); + var user = args.Wearer; + if (_ninja.NinjaQuery.TryComp(user, out var ninja)) + NinjaEquipped(ent, (user, ninja)); } - /// - /// Call the shared and serverside code for when a ninja equips the suit. - /// - private void OnEquipped(EntityUid uid, NinjaSuitComponent comp, GotEquippedEvent args) + protected virtual void NinjaEquipped(Entity ent, Entity user) { - var user = args.Equipee; - if (!TryComp(user, out var ninja)) - return; + // mark the user as wearing this suit, used when being attacked among other things + _ninja.AssignSuit(user, ent); + } - NinjaEquippedSuit(uid, comp, user, ninja); + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + var (uid, comp) = ent; + _actionContainer.EnsureAction(uid, ref comp.RecallKatanaActionEntity, comp.RecallKatanaAction); + _actionContainer.EnsureAction(uid, ref comp.EmpActionEntity, comp.EmpAction); + Dirty(uid, comp); } /// /// Add all the actions when a suit is equipped by a ninja. /// - private void OnGetItemActions(EntityUid uid, NinjaSuitComponent comp, GetItemActionsEvent args) + private void OnGetItemActions(Entity ent, ref GetItemActionsEvent args) { - if (!HasComp(args.User)) + if (!_ninja.IsNinja(args.User)) return; + var comp = ent.Comp; args.AddAction(ref comp.RecallKatanaActionEntity, comp.RecallKatanaAction); - args.AddAction(ref comp.CreateThrowingStarActionEntity, comp.CreateThrowingStarAction); args.AddAction(ref comp.EmpActionEntity, comp.EmpAction); } /// - /// Only add stealth clothing's toggle action when equipped by a ninja. + /// Only add toggle cloak action when equipped by a ninja. /// - private void OnAddStealthAction(EntityUid uid, NinjaSuitComponent comp, AddStealthActionEvent args) + private void OnCloakCheck(Entity ent, ref ToggleClothingCheckEvent args) { - if (!HasComp(args.User)) - args.Cancel(); + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; } - /// - /// Call the shared and serverside code for when anyone unequips a suit. - /// - private void OnUnequipped(EntityUid uid, NinjaSuitComponent comp, GotUnequippedEvent args) + private void OnStarCheck(Entity ent, ref CheckItemCreatorEvent args) + { + if (!_ninja.IsNinja(args.User)) + args.Cancelled = true; + } + + private void OnCreateStarAttempt(Entity ent, ref CreateItemAttemptEvent args) { - UserUnequippedSuit(uid, comp, args.Equipee); + if (CheckDisabled(ent, args.User)) + args.Cancelled = true; } /// - /// Called when a suit is equipped by a space ninja. - /// In the future it might be changed to an explicit activation toggle/verb like gloves are. + /// Call the shared and serverside code for when anyone unequips a suit. /// - protected virtual void NinjaEquippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user, SpaceNinjaComponent ninja) + private void OnUnequipped(Entity ent, ref GotUnequippedEvent args) { - // mark the user as wearing this suit, used when being attacked among other things - _ninja.AssignSuit(user, uid, ninja); - - // initialize phase cloak, but keep it off - StealthClothing.SetEnabled(uid, user, false); + var user = args.Equipee; + if (_ninja.NinjaQuery.TryComp(user, out var ninja)) + UserUnequippedSuit(ent, (user, ninja)); } /// /// Force uncloaks the user and disables suit abilities. /// - public void RevealNinja(EntityUid uid, EntityUid user, bool disable = true, NinjaSuitComponent? comp = null, StealthClothingComponent? stealthClothing = null) + public void RevealNinja(Entity ent, EntityUid user, bool disable = true) { - if (!Resolve(uid, ref comp, ref stealthClothing)) + if (!Resolve(ent, ref ent.Comp)) return; - if (!StealthClothing.SetEnabled(uid, user, false, stealthClothing)) - return; - - if (!disable) + var uid = ent.Owner; + var comp = ent.Comp; + if (_toggle.TryDeactivate(uid, user) || !disable) return; // previously cloaked, disable abilities for a short time _audio.PlayPredicted(comp.RevealSound, uid, user); Popup.PopupClient(Loc.GetString("ninja-revealed"), user, user, PopupType.MediumCaution); - comp.DisableCooldown = GameTiming.CurTime + comp.DisableTime; + _useDelay.TryResetDelay(uid, id: comp.DisableDelayId); + } + + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) + { + if (!_ninja.IsNinja(args.User)) + { + args.Cancelled = true; + return; + } + + if (IsDisabled((ent, ent.Comp, null))) + { + args.Cancelled = true; + args.Popup = Loc.GetString("ninja-suit-cooldown"); + } } - // TODO: modify PowerCellDrain /// - /// Returns the power used by a suit + /// Returns true if the suit is currently disabled /// - public float SuitWattage(EntityUid uid, NinjaSuitComponent? suit = null) + public bool IsDisabled(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return false; + + return _useDelay.IsDelayed((ent, ent.Comp2), ent.Comp1.DisableDelayId); + } + + protected bool CheckDisabled(Entity ent, EntityUid user) { - if (!Resolve(uid, ref suit)) - return 0f; + if (IsDisabled((ent, ent.Comp, null))) + { + Popup.PopupEntity(Loc.GetString("ninja-suit-cooldown"), user, user, PopupType.Medium); + return true; + } - float wattage = suit.PassiveWattage; - if (TryComp(uid, out var stealthClothing) && stealthClothing.Enabled) - wattage += suit.CloakWattage; - return wattage; + return false; } /// /// Called when a suit is unequipped, not necessarily by a space ninja. /// In the future it might be changed to also have explicit deactivation via toggle. /// - protected virtual void UserUnequippedSuit(EntityUid uid, NinjaSuitComponent comp, EntityUid user) + protected virtual void UserUnequippedSuit(Entity ent, Entity user) { - if (!TryComp(user, out var ninja)) - return; - // mark the user as not wearing a suit - _ninja.AssignSuit(user, null, ninja); + _ninja.AssignSuit(user, null); // disable glove abilities - if (ninja.Gloves != null && TryComp(ninja.Gloves.Value, out var gloves)) - _gloves.DisableGloves(ninja.Gloves.Value, gloves); + if (user.Comp.Gloves is {} uid) + _toggle.TryDeactivate(uid, user: user); } } diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs index 522f29fe420..d738f2dd8a2 100644 --- a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Events; using Content.Shared.Popups; +using System.Diagnostics.CodeAnalysis; namespace Content.Shared.Ninja.Systems; @@ -14,49 +15,59 @@ public abstract class SharedSpaceNinjaSystem : EntitySystem [Dependency] protected readonly SharedNinjaSuitSystem Suit = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; + public EntityQuery NinjaQuery; + public override void Initialize() { base.Initialize(); + NinjaQuery = GetEntityQuery(); + SubscribeLocalEvent(OnNinjaAttacked); SubscribeLocalEvent(OnNinjaAttack); SubscribeLocalEvent(OnShotAttempted); } + public bool IsNinja([NotNullWhen(true)] EntityUid? uid) + { + return NinjaQuery.HasComp(uid); + } + /// /// Set the ninja's worn suit entity /// - public void AssignSuit(EntityUid uid, EntityUid? suit, SpaceNinjaComponent? comp = null) + public void AssignSuit(Entity ent, EntityUid? suit) { - if (!Resolve(uid, ref comp) || comp.Suit == suit) + if (ent.Comp.Suit == suit) return; - comp.Suit = suit; - Dirty(uid, comp); + ent.Comp.Suit = suit; + Dirty(ent, ent.Comp); } /// /// Set the ninja's worn gloves entity /// - public void AssignGloves(EntityUid uid, EntityUid? gloves, SpaceNinjaComponent? comp = null) + public void AssignGloves(Entity ent, EntityUid? gloves) { - if (!Resolve(uid, ref comp) || comp.Gloves == gloves) + if (ent.Comp.Gloves == gloves) return; - comp.Gloves = gloves; - Dirty(uid, comp); + ent.Comp.Gloves = gloves; + Dirty(ent, ent.Comp); } /// /// Bind a katana entity to a ninja, letting it be recalled and dash. + /// Does nothing if the player is not a ninja or already has a katana bound. /// - public void BindKatana(EntityUid uid, EntityUid? katana, SpaceNinjaComponent? comp = null) + public void BindKatana(Entity ent, EntityUid katana) { - if (!Resolve(uid, ref comp) || comp.Katana == katana) + if (!NinjaQuery.Resolve(ent, ref ent.Comp) || ent.Comp.Katana != null) return; - comp.Katana = katana; - Dirty(uid, comp); + ent.Comp.Katana = katana; + Dirty(ent, ent.Comp); } /// @@ -71,32 +82,32 @@ public virtual bool TryUseCharge(EntityUid user, float charge) /// /// Handle revealing ninja if cloaked when attacked. /// - private void OnNinjaAttacked(EntityUid uid, SpaceNinjaComponent comp, AttackedEvent args) + private void OnNinjaAttacked(Entity ent, ref AttackedEvent args) { - if (comp.Suit != null && TryComp(comp.Suit, out var stealthClothing) && stealthClothing.Enabled) - { - Suit.RevealNinja(comp.Suit.Value, uid, true, null, stealthClothing); - } + TryRevealNinja(ent, disable: true); } /// /// Handle revealing ninja if cloaked when attacking. /// Only reveals, there is no cooldown. /// - private void OnNinjaAttack(EntityUid uid, SpaceNinjaComponent comp, ref MeleeAttackEvent args) + private void OnNinjaAttack(Entity ent, ref MeleeAttackEvent args) + { + TryRevealNinja(ent, disable: false); + } + + private void TryRevealNinja(Entity ent, bool disable) { - if (comp.Suit != null && TryComp(comp.Suit, out var stealthClothing) && stealthClothing.Enabled) - { - Suit.RevealNinja(comp.Suit.Value, uid, false, null, stealthClothing); - } + if (ent.Comp.Suit is {} uid && TryComp(ent.Comp.Suit, out var suit)) + Suit.RevealNinja((uid, suit), ent, disable: disable); } /// /// Require ninja to fight with HONOR, no guns! /// - private void OnShotAttempted(EntityUid uid, SpaceNinjaComponent comp, ref ShotAttemptedEvent args) + private void OnShotAttempted(Entity ent, ref ShotAttemptedEvent args) { - Popup.PopupClient(Loc.GetString("gun-disabled"), uid, uid); + Popup.PopupClient(Loc.GetString("gun-disabled"), ent, ent); args.Cancel(); } } diff --git a/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs b/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs new file mode 100644 index 00000000000..f4b158aced4 --- /dev/null +++ b/Content.Shared/Ninja/Systems/SharedSpiderChargeSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Ninja.Systems; + +/// +/// Sticking triggering and exploding are all in server so this is just for access. +/// +public abstract class SharedSpiderChargeSystem : EntitySystem; diff --git a/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs index 61b6e4313ed..061c019c9b6 100644 --- a/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedStunProviderSystem.cs @@ -11,22 +11,12 @@ public abstract class SharedStunProviderSystem : EntitySystem /// /// Set the battery field on the stun provider. /// - public void SetBattery(EntityUid uid, EntityUid? battery, StunProviderComponent? comp = null) + public void SetBattery(Entity ent, EntityUid? battery) { - if (!Resolve(uid, ref comp)) + if (!Resolve(ent, ref ent.Comp) || ent.Comp.BatteryUid == battery) return; - comp.BatteryUid = battery; - } - - /// - /// Set the no power popup field on the stun provider. - /// - public void SetNoPowerPopup(EntityUid uid, string popup, StunProviderComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return; - - comp.NoPowerPopup = popup; + ent.Comp.BatteryUid = battery; + Dirty(ent, ent.Comp); } } diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs index 07032a00ce9..8d2c4dcfebe 100644 --- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs +++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs @@ -92,7 +92,7 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O } /// - /// Get the title, description, icon and progress of an objective using . + /// Get the title, description, icon and progress of an objective using . /// If any of them are null it is logged and null is returned. /// /// ID of the condition entity @@ -103,20 +103,43 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O if (!Resolve(mindId, ref mind)) return null; - var ev = new ObjectiveGetProgressEvent(mindId, mind); - RaiseLocalEvent(uid, ref ev); + if (GetProgress(uid, (mindId, mind)) is not {} progress) + return null; var comp = Comp(uid); var meta = MetaData(uid); var title = meta.EntityName; var description = meta.EntityDescription; - if (comp.Icon == null || ev.Progress == null) + if (comp.Icon == null) { - Log.Error($"An objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind)} is missing icon or progress ({ev.Progress})"); + Log.Error($"An objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind)} is missing an icon!"); return null; } - return new ObjectiveInfo(title, description, comp.Icon, ev.Progress.Value); + return new ObjectiveInfo(title, description, comp.Icon, progress); + } + + /// + /// Gets the progress of an objective using . + /// Returning null is a programmer error. + /// + public float? GetProgress(EntityUid uid, Entity mind) + { + var ev = new ObjectiveGetProgressEvent(mind, mind.Comp); + RaiseLocalEvent(uid, ref ev); + if (ev.Progress != null) + return ev.Progress; + + Log.Error($"Objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind.Comp)} didn't set a progress value!"); + return null; + } + + /// + /// Returns true if an objective is completed. + /// + public bool IsCompleted(EntityUid uid, Entity mind) + { + return (GetProgress(uid, mind) ?? 0f) >= 0.999f; } /// diff --git a/Content.Shared/Pinpointer/SharedProximityBeeper.cs b/Content.Shared/Pinpointer/SharedProximityBeeper.cs deleted file mode 100644 index 51631126833..00000000000 --- a/Content.Shared/Pinpointer/SharedProximityBeeper.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Pinpointer; - -[Serializable, NetSerializable] -public enum ProximityBeeperVisuals : byte -{ - Enabled -} diff --git a/Content.Shared/PowerCell/PowerCellDrawComponent.cs b/Content.Shared/PowerCell/PowerCellDrawComponent.cs index 708a86a8eaf..94de7c77878 100644 --- a/Content.Shared/PowerCell/PowerCellDrawComponent.cs +++ b/Content.Shared/PowerCell/PowerCellDrawComponent.cs @@ -6,6 +6,10 @@ namespace Content.Shared.PowerCell; /// /// Indicates that the entity's ActivatableUI requires power or else it closes. /// +/// +/// With ActivatableUI it will activate and deactivate when the ui is opened and closed, drawing power inbetween. +/// Requires to work. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class PowerCellDrawComponent : Component { @@ -26,10 +30,12 @@ public sealed partial class PowerCellDrawComponent : Component #endregion /// - /// Is this power cell currently drawing power every tick. + /// Whether drawing is enabled, regardless of ItemToggle. + /// Having no cell will still disable it. + /// Only use this if you really don't want it to use power for some time. /// - [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] - public bool Drawing; + [DataField, AutoNetworkedField] + public bool Enabled = true; /// /// How much the entity draws while the UI is open. @@ -51,4 +57,10 @@ public sealed partial class PowerCellDrawComponent : Component [DataField("nextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextUpdateTime; + + /// + /// How long to wait between power drawing. + /// + [DataField] + public TimeSpan Delay = TimeSpan.FromSeconds(1); } diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index 508bfc85f08..2b2a836633c 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -1,4 +1,6 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell.Components; using Content.Shared.Rejuvenate; using Robust.Shared.Containers; @@ -11,14 +13,19 @@ public abstract class SharedPowerCellSystem : EntitySystem [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] protected readonly ItemToggleSystem Toggle = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnCellInserted); SubscribeLocalEvent(OnCellRemoved); SubscribeLocalEvent(OnCellInsertAttempt); + + SubscribeLocalEvent(OnActivateAttempt); + SubscribeLocalEvent(OnToggled); } private void OnRejuvenate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) @@ -63,13 +70,25 @@ protected virtual void OnCellRemoved(EntityUid uid, PowerCellSlotComponent compo RaiseLocalEvent(uid, new PowerCellChangedEvent(true), false); } - public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) + private void OnActivateAttempt(Entity ent, ref ItemToggleActivateAttemptEvent args) + { + if (!HasDrawCharge(ent, ent.Comp, user: args.User) + || !HasActivatableCharge(ent, ent.Comp, user: args.User)) + args.Cancelled = true; + } + + private void OnToggled(Entity ent, ref ItemToggledEvent args) + { + ent.Comp.NextUpdateTime = Timing.CurTime; + } + + public void SetDrawEnabled(Entity ent, bool enabled) { - if (!Resolve(uid, ref component, false) || enabled == component.Drawing) + if (!Resolve(ent, ref ent.Comp, false) || ent.Comp.Enabled == enabled) return; - component.Drawing = enabled; - component.NextUpdateTime = Timing.CurTime; + ent.Comp.Enabled = enabled; + Dirty(ent, ent.Comp); } /// diff --git a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs index 09cb7f06d5d..7e2bb4dfe62 100644 --- a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs +++ b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs @@ -10,12 +10,6 @@ namespace Content.Shared.ProximityDetection.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState ,Access(typeof(ProximityDetectionSystem))] public sealed partial class ProximityDetectorComponent : Component { - /// - /// Whether or not it's on. - /// - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public bool Enabled = true; - /// /// The criteria used to filter entities /// Note: RequireAll is only supported for tags, all components are required to count as a match! @@ -35,13 +29,13 @@ public sealed partial class ProximityDetectorComponent : Component [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public FixedPoint2 Distance = -1; - /// /// The farthest distance to search for targets /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public FixedPoint2 Range = 10f; + // TODO: use timespans not this public float AccumulatedFrameTime; [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] diff --git a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs index db25e8bc511..df302f94771 100644 --- a/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs +++ b/Content.Shared/ProximityDetection/Systems/ProximityDetectionSystem.cs @@ -1,4 +1,6 @@ -using Content.Shared.ProximityDetection.Components; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.ProximityDetection.Components; using Content.Shared.Tag; using Robust.Shared.Network; @@ -9,6 +11,7 @@ namespace Content.Shared.ProximityDetection.Systems; public sealed class ProximityDetectionSystem : EntitySystem { [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly INetManager _net = default!; @@ -17,10 +20,10 @@ public sealed class ProximityDetectionSystem : EntitySystem public override void Initialize() { - SubscribeLocalEvent(OnPaused); - SubscribeLocalEvent(OnUnpaused); - SubscribeLocalEvent(OnCompInit); + base.Initialize(); + SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnToggled); } private void OnCompInit(EntityUid uid, ProximityDetectorComponent component, ComponentInit args) @@ -30,57 +33,39 @@ private void OnCompInit(EntityUid uid, ProximityDetectorComponent component, Com Log.Debug("DetectorComponent only supports requireAll = false for tags. All components are required for a match!"); } - private void OnPaused(EntityUid owner, ProximityDetectorComponent component, EntityPausedEvent args) - { - SetEnable_Internal(owner,component,false); - } - - private void OnUnpaused(EntityUid owner, ProximityDetectorComponent detector, ref EntityUnpausedEvent args) - { - SetEnable_Internal(owner, detector,true); - } - public void SetEnable(EntityUid owner, bool enabled, ProximityDetectorComponent? detector = null) - { - if (!Resolve(owner, ref detector) || detector.Enabled == enabled) - return; - SetEnable_Internal(owner ,detector, enabled); - } - public override void Update(float frameTime) { if (_net.IsClient) return; + var query = EntityQueryEnumerator(); while (query.MoveNext(out var owner, out var detector)) { - if (!detector.Enabled) + if (!_toggle.IsActivated(owner)) continue; + detector.AccumulatedFrameTime += frameTime; if (detector.AccumulatedFrameTime < detector.UpdateRate) continue; + detector.AccumulatedFrameTime -= detector.UpdateRate; RunUpdate_Internal(owner, detector); } } - public bool GetEnable(EntityUid owner, ProximityDetectorComponent? detector = null) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - return Resolve(owner, ref detector, false) && detector.Enabled; - } - - private void SetEnable_Internal(EntityUid owner,ProximityDetectorComponent detector, bool enabled) - { - detector.Enabled = enabled; - var noDetectEvent = new ProximityTargetUpdatedEvent(detector, detector.TargetEnt, detector.Distance); - RaiseLocalEvent(owner, ref noDetectEvent); - if (!enabled) + if (args.Activated) { - detector.AccumulatedFrameTime = 0; - RunUpdate_Internal(owner, detector); - Dirty(owner, detector); + RunUpdate_Internal(ent, ent.Comp); return; } - RunUpdate_Internal(owner, detector); + + var noDetectEvent = new ProximityTargetUpdatedEvent(ent.Comp, Target: null, ent.Comp.Distance); + RaiseLocalEvent(ent, ref noDetectEvent); + + ent.Comp.AccumulatedFrameTime = 0; + Dirty(ent, ent.Comp); } public void ForceUpdate(EntityUid owner, ProximityDetectorComponent? detector = null) @@ -90,11 +75,31 @@ public void ForceUpdate(EntityUid owner, ProximityDetectorComponent? detector = RunUpdate_Internal(owner, detector); } + private void ClearTarget(Entity ent) + { + var (uid, comp) = ent; + if (comp.TargetEnt == null) + return; + + comp.Distance = -1; + comp.TargetEnt = null; + var noDetectEvent = new ProximityTargetUpdatedEvent(comp, null, -1); + RaiseLocalEvent(uid, ref noDetectEvent); + var newTargetEvent = new NewProximityTargetEvent(comp, null); + RaiseLocalEvent(uid, ref newTargetEvent); + Dirty(uid, comp); + } private void RunUpdate_Internal(EntityUid owner,ProximityDetectorComponent detector) { if (!_net.IsServer) //only run detection checks on the server! return; + + if (Deleted(detector.TargetEnt)) + { + ClearTarget((owner, detector)); + } + var xformQuery = GetEntityQuery(); var xform = xformQuery.GetComponent(owner); List<(EntityUid TargetEnt, float Distance)> detections = new(); @@ -173,15 +178,7 @@ private void UpdateTargetFromClosest(EntityUid owner, ProximityDetectorComponent { if (detections.Count == 0) { - if (detector.TargetEnt == null) - return; - detector.Distance = -1; - detector.TargetEnt = null; - var noDetectEvent = new ProximityTargetUpdatedEvent(detector, null, -1); - RaiseLocalEvent(owner, ref noDetectEvent); - var newTargetEvent = new NewProximityTargetEvent(detector, null); - RaiseLocalEvent(owner, ref newTargetEvent); - Dirty(owner, detector); + ClearTarget((owner, detector)); return; } var closestDistance = detections[0].Distance; @@ -198,6 +195,7 @@ private void UpdateTargetFromClosest(EntityUid owner, ProximityDetectorComponent var newData = newTarget || detector.Distance != closestDistance; detector.TargetEnt = closestEnt; detector.Distance = closestDistance; + Dirty(owner, detector); if (newTarget) { var newTargetEvent = new NewProximityTargetEvent(detector, closestEnt); diff --git a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs index e1776873da9..de0fe0bce38 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs @@ -15,12 +15,6 @@ namespace Content.Shared.Silicons.Borgs.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem)), AutoGenerateComponentState] public sealed partial class BorgChassisComponent : Component { - /// - /// Whether or not the borg is activated, meaning it has access to modules and a heightened movement speed - /// - [DataField("activated"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Activated; - #region Brain /// /// A whitelist for which entities count as valid brains @@ -68,7 +62,7 @@ public sealed partial class BorgChassisComponent : Component /// /// The currently selected module /// - [DataField("selectedModule")] + [DataField("selectedModule"), AutoNetworkedField] public EntityUid? SelectedModule; #region Visuals diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs index 2983c0d642f..48d23578368 100644 --- a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs +++ b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Item.ItemToggle; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Popups; @@ -18,6 +19,7 @@ public abstract partial class SharedBorgSystem : EntitySystem { [Dependency] protected readonly SharedContainerSystem Container = default!; [Dependency] protected readonly ItemSlotsSystem ItemSlots = default!; + [Dependency] protected readonly ItemToggleSystem Toggle = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; /// @@ -96,7 +98,7 @@ protected virtual void OnRemoved(EntityUid uid, BorgChassisComponent component, private void OnRefreshMovementSpeedModifiers(EntityUid uid, BorgChassisComponent component, RefreshMovementSpeedModifiersEvent args) { - if (component.Activated) + if (Toggle.IsActivated(uid)) return; if (!TryComp(uid, out var movement)) diff --git a/Content.Shared/Toggleable/ToggleActionEvent.cs b/Content.Shared/Toggleable/ToggleActionEvent.cs index 1283b6699bf..f28e62e7dd1 100644 --- a/Content.Shared/Toggleable/ToggleActionEvent.cs +++ b/Content.Shared/Toggleable/ToggleActionEvent.cs @@ -4,9 +4,12 @@ namespace Content.Shared.Toggleable; /// -/// Generic action-event for toggle-able components. +/// Generic action-event for toggle-able components. /// -public sealed partial class ToggleActionEvent : InstantActionEvent { } +/// +/// If you are using ItemToggleComponent subscribe to ItemToggledEvent instead. +/// +public sealed partial class ToggleActionEvent : InstantActionEvent; /// /// Generic enum keys for toggle-visualizer appearance data & sprite layers. diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 56ce81413fb..201eb19a88b 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -24,7 +24,7 @@ public abstract partial class SharedToolSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedInteractionSystem InteractionSystem = default!; - [Dependency] protected readonly SharedItemToggleSystem ItemToggle = default!; + [Dependency] protected readonly ItemToggleSystem ItemToggle = default!; [Dependency] private readonly SharedMapSystem _maps = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainerSystem = default!; diff --git a/Content.Shared/UserInterface/ActivatableUISystem.Power.cs b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs index b8a815c7a81..e494253c832 100644 --- a/Content.Shared/UserInterface/ActivatableUISystem.Power.cs +++ b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs @@ -1,3 +1,5 @@ +using Content.Shared.Item.ItemToggle; +using Content.Shared.Item.ItemToggle.Components; using Content.Shared.PowerCell; using Robust.Shared.Containers; @@ -5,6 +7,7 @@ namespace Content.Shared.UserInterface; public sealed partial class ActivatableUISystem { + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedPowerCellSystem _cell = default!; private void InitializePower() @@ -12,27 +15,22 @@ private void InitializePower() SubscribeLocalEvent(OnBatteryOpenAttempt); SubscribeLocalEvent(OnBatteryOpened); SubscribeLocalEvent(OnBatteryClosed); - - SubscribeLocalEvent(OnPowerCellRemoved); + SubscribeLocalEvent(OnToggled); } - private void OnPowerCellRemoved(EntityUid uid, PowerCellDrawComponent component, EntRemovedFromContainerMessage args) + private void OnToggled(Entity ent, ref ItemToggledEvent args) { - _cell.SetPowerCellDrawEnabled(uid, false); - - if (!HasComp(uid) || - !TryComp(uid, out ActivatableUIComponent? activatable)) - { + // only close ui when losing power + if (!TryComp(ent, out var activatable) || args.Activated) return; - } if (activatable.Key == null) { - Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(uid)}"); + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(ent)}"); return; } - _uiSystem.CloseUi(uid, activatable.Key); + _uiSystem.CloseUi(ent.Owner, activatable.Key); } private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIOpenedEvent args) @@ -42,7 +40,7 @@ private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellCompon if (!args.UiKey.Equals(activatable.Key)) return; - _cell.SetPowerCellDrawEnabled(uid, true); + _toggle.TryActivate(uid); } private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIClosedEvent args) @@ -54,7 +52,7 @@ private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellCompon // Stop drawing power if this was the last person with the UI open. if (!_uiSystem.IsUiOpen(uid, activatable.Key)) - _cell.SetPowerCellDrawEnabled(uid, false); + _toggle.TryDeactivate(uid); } /// diff --git a/Content.Shared/Weapons/Reflect/ReflectComponent.cs b/Content.Shared/Weapons/Reflect/ReflectComponent.cs index 8e7b8975d9d..8418c1f3efb 100644 --- a/Content.Shared/Weapons/Reflect/ReflectComponent.cs +++ b/Content.Shared/Weapons/Reflect/ReflectComponent.cs @@ -5,16 +5,11 @@ namespace Content.Shared.Weapons.Reflect; /// /// Entities with this component have a chance to reflect projectiles and hitscan shots +/// Uses ItemToggleComponent to control reflection. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ReflectComponent : Component { - /// - /// Can only reflect when enabled - /// - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public bool Enabled = true; - /// /// What we reflect. /// diff --git a/Content.Shared/Weapons/Reflect/ReflectSystem.cs b/Content.Shared/Weapons/Reflect/ReflectSystem.cs index 7a2e733bf7c..881b547f27f 100644 --- a/Content.Shared/Weapons/Reflect/ReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/ReflectSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Hands; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; +using Content.Shared.Item.ItemToggle; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -27,10 +28,11 @@ namespace Content.Shared.Weapons.Reflect; /// public sealed class ReflectSystem : EntitySystem { + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ItemToggleSystem _toggle = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -93,7 +95,7 @@ private void OnReflectCollide(EntityUid uid, ReflectComponent component, ref Pro private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid projectile, ProjectileComponent? projectileComp = null, ReflectComponent? reflect = null) { if (!Resolve(reflector, ref reflect, false) || - !reflect.Enabled || + !_toggle.IsActivated(reflector) || !TryComp(projectile, out var reflective) || (reflect.Reflects & reflective.Reflective) == 0x0 || !_random.Prob(reflect.ReflectProb) || @@ -162,7 +164,7 @@ private bool TryReflectHitscan( [NotNullWhen(true)] out Vector2? newDirection) { if (!TryComp(reflector, out var reflect) || - !reflect.Enabled || + !_toggle.IsActivated(reflector) || !_random.Prob(reflect.ReflectProb)) { newDirection = null; @@ -214,8 +216,8 @@ private void OnReflectHandUnequipped(EntityUid uid, ReflectComponent component, private void OnToggleReflect(EntityUid uid, ReflectComponent comp, ref ItemToggledEvent args) { - comp.Enabled = args.Activated; - Dirty(uid, comp); + if (args.User is {} user) + RefreshReflectUser(user); } /// @@ -225,7 +227,7 @@ private void RefreshReflectUser(EntityUid user) { foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(user, SlotFlags.All & ~SlotFlags.POCKET)) { - if (!HasComp(ent)) + if (!HasComp(ent) || !_toggle.IsActivated(ent)) continue; EnsureComp(user); diff --git a/Resources/Prototypes/Actions/ninja.yml b/Resources/Prototypes/Actions/ninja.yml index adaf563692d..47cb8a83f44 100644 --- a/Resources/Prototypes/Actions/ninja.yml +++ b/Resources/Prototypes/Actions/ninja.yml @@ -2,7 +2,7 @@ - type: entity id: ActionToggleNinjaGloves name: Toggle ninja gloves - description: Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies, downloading research and calling in a threat. + description: Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies and hacking certain computers. components: - type: InstantAction priority: -13 @@ -21,7 +21,7 @@ state: icon itemIconStyle: NoItem priority: -10 - event: !type:CreateThrowingStarEvent {} + event: !type:CreateItemEvent {} - type: entity id: ActionRecallKatana @@ -59,7 +59,7 @@ # have to plan (un)cloaking ahead of time useDelay: 5 priority: -9 - event: !type:ToggleStealthEvent + event: !type:ToggleActionEvent # katana - type: entity @@ -72,6 +72,10 @@ sprite: Objects/Magic/magicactions.rsi state: blink itemIconStyle: NoItem + sound: + path: /Audio/Magic/blink.ogg + params: + volume: 5 priority: -12 event: !type:DashEvent checkCanAccess: false diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 8b73eee0d24..f1d99884658 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -206,7 +206,7 @@ - type: FingerprintMask - type: entity - parent: ClothingHandsBase + parent: [ClothingHandsBase, BaseToggleClothing] id: ClothingHandsGlovesSpaceNinja name: space ninja gloves description: These black nano-enhanced gloves insulate from electricity and provide fire resistance. @@ -234,7 +234,31 @@ - type: Thieving stripTimeReduction: 1 stealthy: true + - type: ToggleClothing + action: ActionToggleNinjaGloves - type: NinjaGloves + abilities: + - components: + - type: BatteryDrainer + - type: StunProvider + noPowerPopup: ninja-no-power + whitelist: + components: + - Stamina + - type: EmagProvider + whitelist: + components: + - Airlock + - objective: StealResearchObjective + components: + - type: ResearchStealer + - objective: TerrorObjective + components: + - type: CommsHacker + threats: NinjaThreats + - objective: MassArrestObjective + components: + - type: CriminalRecordsHacker - type: entity parent: ClothingHandsGlovesColorBlack diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index c6a556b2d32..c32f485f9ca 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -183,6 +183,36 @@ - type: AddAccentClothing accent: OwOAccent +- type: entity + parent: [ClothingHeadHatCatEars, BaseToggleClothing] + id: ClothingHeadHatCatEarsValid + suffix: Valid, DO NOT MAP + components: + - type: ToggleClothing + action: ActionBecomeValid + disableOnUnequip: true + - type: ComponentToggler + parent: true + components: + - type: KillSign + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: Sprite + sprite: Clothing/Head/Hats/catears.rsi + - type: Clothing + sprite: Clothing/Head/Hats/catears.rsi + - type: AddAccentClothing + accent: OwOAccent + +- type: entity + noSpawn: true + id: ActionBecomeValid + name: Become Valid + description: "*notices your killsign* owo whats this" + components: + - type: InstantAction + event: !type:ToggleActionEvent + - type: entity parent: ClothingHeadBase id: ClothingHeadHatDogEars diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 2053ced0f63..bacdd0046f8 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -127,7 +127,7 @@ slots: WITHOUT_POCKET - type: entity - parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseToggleClothing] id: ClothingOuterSuitSpaceNinja name: space ninja suit description: This black technologically advanced, cybernetically-enhanced suit provides many abilities like invisibility or teleportation. @@ -136,9 +136,7 @@ sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/spaceninja.rsi - - type: StealthClothing - visibility: 1.1 - toggleAction: ActionTogglePhaseCloak + # hardsuit stuff - type: PressureProtection highPressureMultiplier: 0.6 lowPressureMultiplier: 1000 @@ -151,7 +149,27 @@ Slash: 0.8 Piercing: 0.8 Heat: 0.8 + # phase cloak + - type: ToggleClothing + action: ActionTogglePhaseCloak + - type: ComponentToggler + parent: true + components: + - type: Stealth + minVisibility: 0.1 + lastVisibility: 0.1 + - type: PowerCellDraw + drawRate: 1.8 # 200 seconds on the default cell + # throwing star ability + - type: ItemCreator + action: ActionCreateThrowingStar + charge: 14.4 + spawnedPrototype: ThrowingStarNinja + noPowerPopup: ninja-no-power + # core ninja suit stuff - type: NinjaSuit + - type: UseDelay + delay: 5 # disable time - type: PowerCellSlot cellSlotId: cell_slot # throwing in a recharger would bypass glove charging mechanic diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index d934a8b97e1..19fa86a6312 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -1,33 +1,39 @@ - type: entity - parent: ClothingShoesBase + parent: [ClothingShoesBase, BaseToggleClothing] id: ClothingShoesBootsMag name: magboots description: Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - - type: Sprite - sprite: Clothing/Shoes/Boots/magboots.rsi - layers: - - state: icon - map: [ "enum.ToggleVisuals.Layer" ] - - type: Clothing - sprite: Clothing/Shoes/Boots/magboots.rsi - - type: Magboots - - type: ClothingSpeedModifier - walkModifier: 0.85 - sprintModifier: 0.8 - enabled: false - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ToggleVisuals.Toggled: - enum.ToggleVisuals.Layer: - True: {state: icon-on} - False: {state: icon} - - type: StaticPrice - price: 200 - - type: Tag - tags: - - WhitelistChameleon + - type: Sprite + sprite: Clothing/Shoes/Boots/magboots.rsi + layers: + - state: icon + map: [ "enum.ToggleVisuals.Layer" ] + - type: Clothing + sprite: Clothing/Shoes/Boots/magboots.rsi + - type: ToggleClothing + action: ActionToggleMagboots + - type: ToggleVerb + text: toggle-magboots-verb-get-data-text + - type: ComponentToggler + components: + - type: NoSlip + - type: Magboots + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.8 + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: icon-on} + False: {state: icon} + - type: StaticPrice + price: 200 + - type: Tag + tags: + - WhitelistChameleon - type: entity parent: ClothingShoesBootsMag @@ -40,13 +46,9 @@ state: icon - type: Clothing sprite: Clothing/Shoes/Boots/magboots-advanced.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsAdvanced - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 1 - enabled: false - - type: NoSlip - type: Tag tags: - WhitelistChameleon @@ -64,8 +66,6 @@ sprite: Clothing/Shoes/Boots/magboots-science.rsi - type: Clothing sprite: Clothing/Shoes/Boots/magboots-science.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsSci - type: entity parent: ClothingShoesBootsMag @@ -76,7 +76,6 @@ - type: ClothingSpeedModifier walkModifier: 1.10 #PVS isn't too much of an issue when you are blind... sprintModifier: 1.10 - enabled: false - type: StaticPrice price: 3000 @@ -91,12 +90,9 @@ state: icon - type: Clothing sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - - type: Magboots - toggleAction: ActionToggleMagbootsSyndie - type: ClothingSpeedModifier walkModifier: 0.95 sprintModifier: 0.9 - enabled: false - type: GasTank outputPressure: 42.6 air: @@ -104,49 +100,17 @@ volume: 0.75 temperature: 293.15 moles: - - 0.153853429 # oxygen - - 0.153853429 # nitrogen + - 0.153853429 # oxygen + - 0.153853429 # nitrogen - type: Item sprite: null size: Normal - type: entity - id: ActionBaseToggleMagboots + id: ActionToggleMagboots name: Toggle Magboots description: Toggles the magboots on and off. components: - type: InstantAction - itemIconStyle: NoItem - event: !type:ToggleMagbootsEvent - -- type: entity - id: ActionToggleMagboots - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots.rsi, state: icon } - iconOn: { sprite : Clothing/Shoes/Boots/magboots.rsi, state: icon-on } - -- type: entity - id: ActionToggleMagbootsAdvanced - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png - -- type: entity - id: ActionToggleMagbootsSci - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-science.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-science.rsi/icon-on.png - -- type: entity - id: ActionToggleMagbootsSyndie - parent: ActionBaseToggleMagboots - components: - - type: InstantAction - icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png + itemIconStyle: BigItem + event: !type:ToggleActionEvent diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 22cd13af600..fae87172238 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -88,7 +88,7 @@ - type: NoSlip - type: entity - parent: [ClothingShoesBase, PowerCellSlotSmallItem] + parent: [ClothingShoesBase, PowerCellSlotSmallItem, BaseToggleClothing] id: ClothingShoesBootsSpeed name: speed boots description: High-tech boots woven with quantum fibers, able to convert electricity into pure speed! @@ -100,12 +100,11 @@ map: [ "enum.ToggleVisuals.Layer" ] - type: Clothing sprite: Clothing/Shoes/Boots/speedboots.rsi - - type: ToggleClothingSpeed - toggleAction: ActionToggleSpeedBoots + - type: ToggleClothing + action: ActionToggleSpeedBoots - type: ClothingSpeedModifier walkModifier: 1.5 sprintModifier: 1.5 - enabled: false - type: Appearance - type: GenericVisualizer visuals: @@ -130,10 +129,8 @@ description: Toggles the speed boots on and off. components: - type: InstantAction - itemIconStyle: NoItem - event: !type:ToggleClothingSpeedEvent - icon: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon } - iconOn: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon-on } + itemIconStyle: BigItem + event: !type:ToggleActionEvent - type: entity parent: ClothingShoesBase diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index a96ca2d23c8..02a2ddce411 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -57,3 +57,12 @@ - type: GroupExamine - type: Armor modifiers: {} + +# for clothing that can be toggled, like magboots +- type: entity + abstract: true + id: BaseToggleClothing + components: + - type: ItemToggle + onUse: false # can't really wear it like that + - type: ToggleClothing diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index b6f9287cf7f..b8cf755d0ff 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -151,10 +151,9 @@ state: alive - type: entity + noSpawn: true + parent: BaseAntagSpawner id: SpawnPointGhostSpaceNinja - name: ghost role spawn point - suffix: space ninja - parent: MarkerBase components: - type: GhostRole name: ghost-role-information-space-ninja-name @@ -162,8 +161,6 @@ rules: ghost-role-information-antagonist-rules raffle: settings: default - - type: GhostRoleMobSpawner - prototype: MobHumanSpaceNinja - type: Sprite sprite: Markers/jobs.rsi layers: diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 3b8e5bde6ae..6656a7aadbf 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -112,6 +112,11 @@ - type: PowerCellSlot cellSlotId: cell_slot fitsInCharger: true + - type: ItemToggle + onUse: false # no item-borg toggling sorry + - type: AccessToggle + # TODO: refactor movement to just be based on toggle like speedboots but for the boots themselves + # TODO: or just have sentient speedboots be fast idk - type: PowerCellDraw drawRate: 0.6 - type: ItemSlots diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 629ba91518a..0b26668e103 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -68,28 +68,3 @@ - type: NpcFactionMember factions: - Syndicate - -# Space Ninja -- type: entity - noSpawn: true - name: Space Ninja - parent: MobHuman - id: MobHumanSpaceNinja - components: - - type: RandomHumanoidAppearance - randomizeName: false - - type: Loadout - prototypes: [SpaceNinjaGear] - - type: NpcFactionMember - factions: - - Syndicate - - type: SpaceNinja - - type: GenericAntag - rule: Ninja - - type: AutoImplant - implants: - - DeathAcidifierImplant - - type: RandomMetadata - nameSegments: - - names_ninja_title - - names_ninja diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index d956f1871d7..8702bbe0218 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -142,9 +142,6 @@ - Pacified - StaminaModifier - Flashed - - type: Reflect - enabled: false - reflectProb: 0 - type: Body prototype: Human requiredLegs: 2 diff --git a/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml b/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml new file mode 100644 index 00000000000..259323fede3 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/base_handheld.yml @@ -0,0 +1,11 @@ +- type: entity + abstract: true + parent: [BaseItem, PowerCellSlotSmallItem] + id: BaseHandheldComputer + components: + - type: ActivatableUIRequiresPowerCell + - type: ItemToggle + onUse: false # above component does the toggling + - type: PowerCellDraw + drawRate: 0 + useRate: 20 diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 84f0f4ae94c..bf0b7190b5b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -109,6 +109,9 @@ id: BaseMedicalPDA abstract: true components: + - type: ItemToggle + toggleLight: false + onUse: false - type: HealthAnalyzer scanDelay: 1 scanningEndSound: diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index 0d2f890a1d3..54fc4a70c5a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -1,9 +1,9 @@ - type: entity + parent: BaseItem id: BaseHandheldStationMap name: station map description: Displays a readout of the current station. abstract: true - parent: BaseItem components: - type: StationMap - type: Sprite @@ -34,14 +34,9 @@ - type: entity id: HandheldStationMap parent: - - BaseHandheldStationMap - - PowerCellSlotSmallItem + - BaseHandheldStationMap + - BaseHandheldComputer suffix: Handheld, Powered - components: - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell - type: entity id: HandheldStationMapEmpty diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index dc24ac485a1..8182accfb6f 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -382,8 +382,10 @@ path: /Audio/Weapons/ebladehum.ogg - type: ItemToggleSize activatedSize: Huge - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: Sprite sprite: Objects/Weapons/Melee/e_shield.rsi layers: @@ -415,7 +417,6 @@ energy: 2 color: blue - type: Reflect - enabled: false reflectProb: 0.95 reflects: - Energy @@ -492,8 +493,10 @@ path: /Audio/Weapons/telescopicoff.ogg params: volume: -5 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: ItemToggleSize activatedSize: Huge - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 4a61074a8d5..2d06ed0f1dc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -31,6 +31,11 @@ size: Large - type: Speech speechVerb: Robotic + - type: ItemToggle + soundActivate: + path: /Audio/Items/Defib/defib_safety_on.ogg + soundDeactivate: + path: /Audio/Items/Defib/defib_safety_off.ogg - type: Defibrillator zapHeal: types: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml index 19a0b36ee9f..c9ab24274da 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -1,9 +1,7 @@ - type: entity name: handheld crew monitor suffix: DO NOT MAP - parent: - - BaseItem - - PowerCellSlotSmallItem + parent: BaseHandheldComputer # CMO-only bud, don't add more. id: HandheldCrewMonitor description: A hand-held crew monitor displaying the status of suit sensors. @@ -11,10 +9,6 @@ - type: Sprite sprite: Objects/Specific/Medical/handheldcrewmonitor.rsi state: scanner - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell - type: ActivatableUI key: enum.CrewMonitoringUIKey.Key - type: UserInterface diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index c01aaa84a9d..d8547d92948 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -21,6 +21,8 @@ interfaces: enum.HealthAnalyzerUiKey.Key: type: HealthAnalyzerBoundUserInterface + - type: ItemToggle + onUse: false - type: HealthAnalyzer scanningEndSound: path: "/Audio/Items/Medical/healthscanner.ogg" diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index bf0a3be4e51..99f874406b4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -36,23 +36,22 @@ - state: screen shader: unshaded visible: false - map: ["enum.PowerDeviceVisualLayers.Powered"] + map: ["enum.ToggleVisuals.Layer"] - type: Appearance - type: GenericVisualizer visuals: - enum.ProximityBeeperVisuals.Enabled: - enum.PowerDeviceVisualLayers.Powered: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: True: { visible: true } False: { visible: false } + - type: ItemToggle - type: ProximityBeeper - type: ProximityDetector - enabled: false range: 20 criteria: components: - Anomaly - type: Beeper - enabled: false minBeepInterval: 0.15 maxBeepInterval: 1.00 beepSound: diff --git a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml index 5938193181e..78abedc28ab 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml @@ -1,6 +1,6 @@ - type: entity name: handheld mass scanner - parent: [ BaseItem, PowerCellSlotSmallItem] + parent: BaseHandheldComputer id: HandHeldMassScanner description: A hand-held mass scanner. components: @@ -27,7 +27,6 @@ - type: PowerCellDraw drawRate: 3 useRate: 100 - - type: ActivatableUIRequiresPowerCell - type: ActivatableUI key: enum.RadarConsoleUiKey.Key inHandsOnly: true diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 9db30edb52e..cd188969b53 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -55,8 +55,10 @@ - type: ItemToggleSize activatedSize: Large - type: ItemToggleHot - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 + - type: ComponentToggler + components: + - type: DisarmMalus + malus: 0.6 - type: ToggleableLightVisuals spriteLayer: flame inhandVisuals: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 0d10411cfbb..19a0cf30e86 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -166,6 +166,8 @@ - type: TetherGun frequency: 5 dampingRatio: 4 + - type: ItemToggle + onUse: false - type: PowerCellDraw - type: Sprite sprite: Objects/Weapons/Guns/Launchers/tether_gun.rsi @@ -211,6 +213,8 @@ path: /Audio/Weapons/soup.ogg params: volume: 2 + - type: ItemToggle + onUse: false - type: PowerCellDraw - type: Sprite sprite: Objects/Weapons/Guns/Launchers/force_gun.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index fbf8b1003c3..ce3545920ac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -13,10 +13,12 @@ - type: ItemToggleActiveSound activeSound: path: /Audio/Weapons/ebladehum.ogg - - type: ItemToggleSharp + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.6 - type: ItemToggleHot - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 - type: ItemToggleSize activatedSize: Huge - type: ItemToggleMeleeWeapon @@ -74,10 +76,7 @@ right: - state: inhand-right-blade shader: unshaded - - type: DisarmMalus - malus: 0 - type: Reflect - enabled: false - type: IgnitionSource temperature: 700 @@ -88,7 +87,6 @@ suffix: E-Dagger description: 'A dark ink pen.' components: - - type: EnergySword - type: ItemToggle soundActivate: path: /Audio/Weapons/ebladeon.ogg @@ -114,8 +112,11 @@ path: /Audio/Weapons/ebladehum.ogg params: volume: -6 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.4 + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.4 - type: Sprite sprite: Objects/Weapons/Melee/e_dagger.rsi layers: @@ -183,15 +184,12 @@ id: EnergyCutlass description: An exotic energy weapon. components: - - type: EnergySword - type: ItemToggleMeleeWeapon activatedDamage: types: Slash: 10 Heat: 12 deactivatedSecret: true - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.6 - type: Sprite sprite: Objects/Weapons/Melee/e_cutlass.rsi layers: @@ -220,8 +218,8 @@ id: EnergySwordDouble description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. This can be stored in pockets. components: - - type: EnergySword - type: ItemToggle + onUse: false # wielding events control it instead soundActivate: path: /Audio/Weapons/ebladeon.ogg params: @@ -246,9 +244,13 @@ path: /Audio/Weapons/ebladehum.ogg params: volume: 3 - - type: ItemToggleDisarmMalus - activatedDisarmMalus: 0.7 + - type: ComponentToggler + components: + - type: Sharp + - type: DisarmMalus + malus: 0.7 - type: Wieldable + wieldSound: null # esword light sound instead - type: MeleeWeapon wideAnimationRotation: -135 attackRate: 1.5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index d0d85beb6f5..0bab2c828de 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -30,7 +30,6 @@ soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Reflect - enabled: true reflectProb: .1 spread: 90 - type: Item @@ -175,7 +174,6 @@ soundHit: path: /Audio/Effects/explosion_small1.ogg - type: Reflect - enabled: true reflectProb: .25 spread: 90 - type: Item diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 4cb76ea4b92..0485b5a5178 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -85,6 +85,7 @@ whitelist: components: - FitsInDispenser + - type: ItemToggle - type: HealthAnalyzer scanDelay: 0 - type: UserInterface diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 39e29ad1158..0b183039a99 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -149,7 +149,43 @@ earliestStart: 30 reoccurrenceDelay: 20 minimumPlayers: 30 - - type: NinjaSpawnRule + - type: SpaceSpawnRule + - type: AntagLoadProfileRule + - type: AntagObjectives + objectives: + - StealResearchObjective + - DoorjackObjective + - SpiderChargeObjective + - TerrorObjective + - MassArrestObjective + - NinjaSurviveObjective + - type: AntagSelection + agentName: ninja-round-end-agent-name + definitions: + - spawnerPrototype: SpawnPointGhostSpaceNinja + min: 1 + max: 1 + pickPlayer: false + startingGear: SpaceNinjaGear + briefing: + text: ninja-role-greeting + color: Green + sound: /Audio/Misc/ninja_greeting.ogg + components: + - type: SpaceNinja + - type: NpcFactionMember + factions: + - Syndicate + - type: AutoImplant + implants: + - DeathAcidifierImplant + - type: RandomMetadata + nameSegments: + - names_ninja_title + - names_ninja + mindComponents: + - type: NinjaRole + prototype: SpaceNinja - type: entity parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 5a38c222154..43cdca3bc33 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -1,21 +1,3 @@ -# doesnt spawn a ninja or anything, just stores configuration for it -# see NinjaSpawn event for spawning -- type: entity - id: Ninja - parent: BaseGameRule - components: - - type: GenericAntagRule - agentName: ninja-round-end-agent-name - objectives: - - StealResearchObjective - - DoorjackObjective - - SpiderChargeObjective - - TerrorObjective - - MassArrestObjective - - NinjaSurviveObjective - - type: NinjaRule - threats: NinjaThreats - - type: entity parent: BaseGameRule id: Thief From e6f55fafb49625678bff63211313f06aae48e159 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 11 Jul 2024 02:14:34 -0400 Subject: [PATCH 11/97] Fix AtmosDeviceSystem debug assert Heisenbug (#29752) Fix AtmosDeviceSystem debug assertion Heisenbug --- .../Tests/Atmos/GridJoinTest.cs | 53 +++++++++++++++++++ .../Piping/EntitySystems/AtmosDeviceSystem.cs | 11 +++- 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs diff --git a/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs new file mode 100644 index 00000000000..3a1ec7fd40e --- /dev/null +++ b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs @@ -0,0 +1,53 @@ +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Atmos.Piping.EntitySystems; +using Robust.Shared.GameObjects; + +namespace Content.IntegrationTests.Tests.Atmos; + +[TestFixture] +public sealed class GridJoinTest +{ + private const string CanisterProtoId = "AirCanister"; + + [Test] + public async Task TestGridJoinAtmosphere() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var protoMan = server.ProtoMan; + var atmosSystem = entMan.System(); + var atmosDeviceSystem = entMan.System(); + var transformSystem = entMan.System(); + + var testMap = await pair.CreateTestMap(); + + await server.WaitPost(() => + { + // Spawn an atmos device on the grid + var canister = entMan.Spawn(CanisterProtoId); + transformSystem.SetCoordinates(canister, testMap.GridCoords); + var deviceComp = entMan.GetComponent(canister); + var canisterEnt = (canister, deviceComp); + + // Make sure the canister is tracked as an off-grid device + Assert.That(atmosDeviceSystem.IsJoinedOffGrid(canisterEnt)); + + // Add an atmosphere to the grid + entMan.AddComponent(testMap.Grid); + + // Force AtmosDeviceSystem to update off-grid devices + // This means the canister is now considered on-grid, + // but it's still tracked as off-grid! + Assert.DoesNotThrow(() => atmosDeviceSystem.Update(atmosSystem.AtmosTime)); + + // Make sure that the canister is now properly tracked as on-grid + Assert.That(atmosDeviceSystem.IsJoinedOffGrid(canisterEnt), Is.False); + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs index 3c73a8f64ee..f932ef36208 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs @@ -132,10 +132,19 @@ public override void Update(float frameTime) var ev = new AtmosDeviceUpdateEvent(_atmosphereSystem.AtmosTime, null, null); foreach (var device in _joinedDevices) { - DebugTools.Assert(!HasComp(Transform(device).GridUid)); + var deviceGrid = Transform(device).GridUid; + if (HasComp(deviceGrid)) + { + RejoinAtmosphere(device); + } RaiseLocalEvent(device, ref ev); device.Comp.LastProcess = time; } } + + public bool IsJoinedOffGrid(Entity device) + { + return _joinedDevices.Contains(device); + } } } From 03f0257ae9b0c3d2d349bd2bcc4670a7ac92e139 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:04:10 +1000 Subject: [PATCH 12/97] Revert "Picking a ghostrole as an admin will now deadmin you. (#29790)" (#29901) This reverts commit 1a50760e674134de6065bff3bc76739526ea5429. --- Content.Server/Ghost/Roles/GhostRoleSystem.cs | 13 ------------- Content.Shared/CCVar/CCVars.cs | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index dfb0c8e0865..b6627f11540 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -31,9 +31,6 @@ using Content.Server.Popups; using Content.Shared.Verbs; using Robust.Shared.Collections; -using Content.Server.Administration.Managers; -using Content.Shared.CCVar; -using Robust.Shared.Configuration; namespace Content.Server.Ghost.Roles { @@ -51,8 +48,6 @@ public sealed class GhostRoleSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; private uint _nextRoleIdentifier; private bool _needsUpdateGhostRoleCount = true; @@ -592,14 +587,6 @@ private void OnPlayerAttached(PlayerAttachedEvent message) // forced into a ghost role. LeaveAllRaffles(message.Player); CloseEui(message.Player); - - // The player is no longer a ghost, so they should not be adminned anymore. Deadmin them. - // Ensures that admins do not forget to deadmin themselves upon entering a ghost role. - var autoDeAdmin = _cfg.GetCVar(CCVars.AdminDeadminOnJoin); - if (autoDeAdmin && _adminManager.IsAdmin(message.Entity)) - { - _adminManager.DeAdmin(message.Player); - } } private void OnMindAdded(EntityUid uid, GhostTakeoverAvailableComponent component, MindAddedMessage args) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 044a95c4583..a0e9157e922 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -870,7 +870,7 @@ public static readonly CVarDef CVarDef.Create("admin.show_pii_onban", false, CVar.SERVERONLY); /// - /// If an admin joins a round by readying up or using the late join button, automatically + /// If an admin joins a round by reading up or using the late join button, automatically /// de-admin them. /// public static readonly CVarDef AdminDeadminOnJoin = From 9a17154d83f99da09ae42ef99bb8f3e6b09f2451 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:02:53 +0300 Subject: [PATCH 13/97] =?UTF-8?q?=D0=90nnouncement=20sender=20localization?= =?UTF-8?q?=20(#29907)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs | 2 +- Content.Server/Chat/Systems/ChatSystem.cs | 8 ++++++-- Resources/Locale/en-US/chat/managers/chat-manager.ftl | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs index 0f0365e56ba..cc46545237b 100644 --- a/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs +++ b/Content.Server/Chat/Systems/AnnounceOnSpawnSystem.cs @@ -16,7 +16,7 @@ public override void Initialize() private void OnInit(EntityUid uid, AnnounceOnSpawnComponent comp, MapInitEvent args) { var message = Loc.GetString(comp.Message); - var sender = comp.Sender != null ? Loc.GetString(comp.Sender) : "Central Command"; + var sender = comp.Sender != null ? Loc.GetString(comp.Sender) : Loc.GetString("chat-manager-sender-announcement"); _chat.DispatchGlobalAnnouncement(message, sender, playSound: true, comp.Sound, comp.Color); } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 55beaf1f7f5..5358cdb4420 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -319,12 +319,14 @@ public void TrySendInGameOOCMessage( /// Optional color for the announcement message public void DispatchGlobalAnnouncement( string message, - string sender = "Central Command", + string? sender = null, bool playSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null ) { + sender ??= Loc.GetString("chat-manager-sender-announcement"); + var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) @@ -345,11 +347,13 @@ public void DispatchGlobalAnnouncement( public void DispatchStationAnnouncement( EntityUid source, string message, - string sender = "Central Command", + string? sender = null, bool playDefaultSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null) { + sender ??= Loc.GetString("chat-manager-sender-announcement"); + var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); var station = _stationSystem.GetOwningStation(source); diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 38b12251bec..75ff4351c1d 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -19,6 +19,7 @@ chat-manager-no-such-channel = There is no channel with key '{$key}'! chat-manager-whisper-headset-on-message = You can't whisper on the radio! chat-manager-server-wrap-message = [bold]{$message}[/bold] +chat-manager-sender-announcement = Central Command chat-manager-sender-announcement-wrap-message = [font size=14][bold]{$sender} Announcement:[/font][font size=12] {$message}[/bold][/font] chat-manager-entity-say-wrap-message = [BubbleHeader][bold][Name]{$entityName}[/Name][/bold][/BubbleHeader] {$verb}, [font={$fontType} size={$fontSize}]"[BubbleContent]{$message}[/BubbleContent]"[/font] From bb673649000315ddaa226342a795ac65e1f65367 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:03:21 +0300 Subject: [PATCH 14/97] Better admin note popups text visibility (#29909) * Better admin note popup text visibility * Bring buttons closer to the border --- .../Administration/UI/Notes/AdminNotesLinePopup.xaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml b/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml index f978138ca58..4a3c0ef7ace 100644 --- a/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml +++ b/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml @@ -1,10 +1,10 @@ - + - + - + [DataField] [ViewVariables(VVAccess.ReadWrite)] - public float BaseThrowspeed { get; set; } = 10f; + public float BaseThrowspeed { get; set; } = 11f; /// /// Distance after which longer throw targets stop increasing throw impulse. diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 56bbf4c2bf3..549473278e4 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -26,11 +26,6 @@ public sealed class ThrowingSystem : EntitySystem public const float PushbackDefault = 2f; - /// - /// The minimum amount of time an entity needs to be thrown before the timer can be run. - /// Anything below this threshold never enters the air. - /// - public const float MinFlyTime = 0.15f; public const float FlyTimePercentage = 0.8f; private float _frictionModifier; @@ -168,9 +163,6 @@ public void TryThrow(EntityUid uid, var flyTime = direction.Length() / baseThrowSpeed; if (compensateFriction) flyTime *= FlyTimePercentage; - - if (flyTime < MinFlyTime) - flyTime = 0f; comp.ThrownTime = _gameTiming.CurTime; comp.LandTime = comp.ThrownTime + TimeSpan.FromSeconds(flyTime); comp.PlayLandSound = playSound; From caf8776d071027bdefdd0003fb2e99a981040fa6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 12 Jul 2024 10:33:53 +0000 Subject: [PATCH 30/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 90c02169465..5784e248714 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: IProduceWidgets - changes: - - message: New map Oasis. - type: Add - id: 6409 - time: '2024-04-21T05:59:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25736 - author: KittenColony changes: - message: Added a new lizard snout, featuring a split muzzle and snoot that can @@ -3821,3 +3814,14 @@ id: 6908 time: '2024-07-12T09:24:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29900 +- author: coffeeware, slarticodefast + changes: + - message: Fixed items thrown very fast not being in the air. In particular this + fixes the pneumatic cannon. + type: Fix + - message: Buffed base hand throwing speed by 10% to be more similar to before the + recent throwing changes. + type: Tweak + id: 6909 + time: '2024-07-12T10:32:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29935 From 7ce3a1f27ff5a1f4c4aa5898227bfca2a427202c Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:36:40 +0200 Subject: [PATCH 31/97] Fix supplybot movement state (#29944) Fix supplybot movement sprite --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 172ed66cc3a..d34b1b536b2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -337,7 +337,8 @@ - type: Sprite sprite: Mobs/Silicon/Bots/supplybot.rsi layers: - - state: supplybot + - map: ["enum.DamageStateVisualLayers.Base", "movement"] + state: supplybot - type: SpriteMovement movementLayers: movement: From 3ee7d7bc353dffccc0fee088d2480bb11cf78c3a Mon Sep 17 00:00:00 2001 From: osjarw <62134478+osjarw@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:37:47 +0300 Subject: [PATCH 32/97] Implement Health Consideration for NPCs (#29922) Implement TargetHealthCon --- .../NPC/Queries/Considerations/TargetHealthCon.cs | 10 ++++++++++ Content.Server/NPC/Systems/NPCUtilitySystem.cs | 12 +++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs index d4e8a277ea6..cc9c6df83f3 100644 --- a/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs +++ b/Content.Server/NPC/Queries/Considerations/TargetHealthCon.cs @@ -1,6 +1,16 @@ +using Content.Shared.Mobs; + namespace Content.Server.NPC.Queries.Considerations; +/// +/// Goes linearly from 1f to 0f, with 0 damage returning 1f and damage returning 0f +/// public sealed partial class TargetHealthCon : UtilityConsideration { + /// + /// Which MobState the consideration returns 0f at, defaults to choosing earliest incapacitating MobState + /// + [DataField("targetState")] + public MobState TargetState = MobState.Invalid; } diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index ca74d713357..72833fc35ef 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -7,10 +7,13 @@ using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Storage.Components; +using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Fluids.Components; using Content.Shared.Hands.Components; using Content.Shared.Inventory; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.Components; @@ -48,6 +51,7 @@ public sealed class NPCUtilitySystem : EntitySystem [Dependency] private readonly WeldableSystem _weldable = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly MobThresholdSystem _thresholdSystem = default!; private EntityQuery _puddleQuery; private EntityQuery _xformQuery; @@ -293,8 +297,14 @@ private float GetScore(NPCBlackboard blackboard, EntityUid targetUid, UtilityCon return (float) ev.Count / ev.Capacity; } - case TargetHealthCon: + case TargetHealthCon con: { + if (!TryComp(targetUid, out DamageableComponent? damage)) + return 0f; + if (con.TargetState != MobState.Invalid && _thresholdSystem.TryGetPercentageForState(targetUid, con.TargetState, damage.TotalDamage, out var percentage)) + return Math.Clamp((float)(1 - percentage), 0f, 1f); + if (_thresholdSystem.TryGetIncapPercentage(targetUid, damage.TotalDamage, out var incapPercentage)) + return Math.Clamp((float)(1 - incapPercentage), 0f, 1f); return 0f; } case TargetInLOSCon: From a314a967c29f7f2b2322e1213cd894bb76b6ccc4 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Fri, 12 Jul 2024 07:38:58 -0400 Subject: [PATCH 33/97] Fix timer deconstruction (#29917) Fix deconstruction for timers --- .../Entities/Structures/Wallmounts/timer.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index dd7eb5bea82..271a9a65cdc 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -44,6 +44,14 @@ - type: Construction graph: Timer node: signal + containers: + - board + - type: ContainerContainer + containers: + board: !type:Container + - type: ContainerFill + containers: + board: [ SignalTimerElectronics ] - type: entity id: ScreenTimer @@ -67,6 +75,11 @@ - type: Construction graph: Timer node: screen + containers: + - board + - type: ContainerFill + containers: + board: [ ScreenTimerElectronics ] - type: entity id: BrigTimer @@ -79,6 +92,11 @@ - type: Construction graph: Timer node: brig + containers: + - board + - type: ContainerFill + containers: + board: [ BrigTimerElectronics ] # Construction Frame From e3697c6fdafc72ebb55aaeecfe5fa52da61c70d7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 12 Jul 2024 11:40:04 +0000 Subject: [PATCH 34/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5784e248714..e51638b71e9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: KittenColony - changes: - - message: Added a new lizard snout, featuring a split muzzle and snoot that can - be coloured independently - type: Add - id: 6410 - time: '2024-04-21T06:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27143 - author: SpeltIncorrectyl changes: - message: Security Officers, Head of Security, and Warden can now choose to start @@ -3825,3 +3817,10 @@ id: 6909 time: '2024-07-12T10:32:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29935 +- author: themias + changes: + - message: Timers can now be deconstructed + type: Fix + id: 6910 + time: '2024-07-12T11:38:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29917 From c94c72785df97e7a98097a0bc4733e998e4454a8 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 04:44:45 -0700 Subject: [PATCH 35/97] Updates GasTankSystem and InternalsSystem to not use Component.Owner (#29934) * blah, setup * Updates GasTankSystem and InternalsSystem to not use Component.Owner * squish the diff * Fixa the rest --------- Co-authored-by: plykiya --- .../Atmos/EntitySystems/GasTankSystem.cs | 72 +++++++++++++------ .../Body/Systems/InternalsSystem.cs | 21 +++--- 2 files changed, 60 insertions(+), 33 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index baad739804b..2d703439c0f 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -81,7 +81,7 @@ public void UpdateUserInterface(Entity ent, bool initialUpdate TankPressure = component.Air?.Pressure ?? 0, OutputPressure = initialUpdate ? component.OutputPressure : null, InternalsConnected = component.IsConnected, - CanConnectInternals = CanConnectToInternals(component) + CanConnectInternals = CanConnectToInternals(ent) }); } @@ -217,24 +217,24 @@ public GasMixture RemoveAirVolume(Entity gasTank, float volume return air; } - public bool CanConnectToInternals(GasTankComponent component) + public bool CanConnectToInternals(Entity ent) { - var internals = GetInternalsComponent(component, component.User); - return internals != null && internals.BreathTools.Count != 0 && !component.IsValveOpen; + TryGetInternalsComp(ent, out _, out var internalsComp, ent.Comp.User); + return internalsComp != null && internalsComp.BreathTools.Count != 0 && !ent.Comp.IsValveOpen; } public void ConnectToInternals(Entity ent) { var (owner, component) = ent; - if (component.IsConnected || !CanConnectToInternals(component)) + if (component.IsConnected || !CanConnectToInternals(ent)) return; - var internals = GetInternalsComponent(component); - if (internals == null) + TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, ent.Comp.User); + if (internalsUid == null || internalsComp == null) return; - if (_internals.TryConnectTank((internals.Owner, internals), owner)) - component.User = internals.Owner; + if (_internals.TryConnectTank((internalsUid.Value, internalsComp), owner)) + component.User = internalsUid.Value; _actions.SetToggled(component.ToggleActionEntity, component.IsConnected); @@ -243,7 +243,7 @@ public void ConnectToInternals(Entity ent) return; component.ConnectStream = _audioSys.Stop(component.ConnectStream); - component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, component.Owner)?.Entity; + component.ConnectStream = _audioSys.PlayPvs(component.ConnectSound, owner)?.Entity; UpdateUserInterface(ent); } @@ -251,29 +251,59 @@ public void ConnectToInternals(Entity ent) public void DisconnectFromInternals(Entity ent) { var (owner, component) = ent; + if (component.User == null) return; - var internals = GetInternalsComponent(component); + TryGetInternalsComp(ent, out var internalsUid, out var internalsComp, component.User); component.User = null; _actions.SetToggled(component.ToggleActionEntity, false); - _internals.DisconnectTank(internals); + if (internalsUid != null && internalsComp != null) + _internals.DisconnectTank((internalsUid.Value, internalsComp)); component.DisconnectStream = _audioSys.Stop(component.DisconnectStream); - component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, component.Owner)?.Entity; + component.DisconnectStream = _audioSys.PlayPvs(component.DisconnectSound, owner)?.Entity; UpdateUserInterface(ent); } - private InternalsComponent? GetInternalsComponent(GasTankComponent component, EntityUid? owner = null) + /// + /// Tries to retrieve the internals component of either the gas tank's user, + /// or the gas tank's... containing container + /// + /// The user of the gas tank + /// True if internals comp isn't null, false if it is null + private bool TryGetInternalsComp(Entity ent, out EntityUid? internalsUid, out InternalsComponent? internalsComp, EntityUid? user = null) { - owner ??= component.User; - if (Deleted(component.Owner))return null; - if (owner != null) return CompOrNull(owner.Value); - return _containers.TryGetContainingContainer(component.Owner, out var container) - ? CompOrNull(container.Owner) - : null; + internalsUid = default; + internalsComp = default; + + // If the gas tank doesn't exist for whatever reason, don't even bother + if (TerminatingOrDeleted(ent.Owner)) + return false; + + user ??= ent.Comp.User; + // Check if the gas tank's user actually has the component that allows them to use a gas tank and mask + if (TryComp(user, out var userInternalsComp) && userInternalsComp != null) + { + internalsUid = user; + internalsComp = userInternalsComp; + return true; + } + + // Yeah I have no clue what this actually does, I appreciate the lack of comments on the original function + if (_containers.TryGetContainingContainer((ent.Owner, Transform(ent.Owner)), out var container) && container != null) + { + if (TryComp(container.Owner, out var containerInternalsComp) && containerInternalsComp != null) + { + internalsUid = container.Owner; + internalsComp = containerInternalsComp; + return true; + } + } + + return false; } public void AssumeAir(Entity ent, GasMixture giver) @@ -321,7 +351,7 @@ public void CheckStatus(Entity ent) if(environment != null) _atmosphereSystem.Merge(environment, component.Air); - _audioSys.PlayPvs(component.RuptureSound, Transform(component.Owner).Coordinates, AudioParams.Default.WithVariation(0.125f)); + _audioSys.PlayPvs(component.RuptureSound, Transform(owner).Coordinates, AudioParams.Default.WithVariation(0.125f)); QueueDel(owner); return; diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index d6ece39d590..10ebd934aa4 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -102,7 +102,7 @@ public void ToggleInternals( { if (force) { - DisconnectTank(internals); + DisconnectTank((uid, internals)); return; } @@ -199,16 +199,13 @@ public void ConnectBreathTool(Entity ent, EntityUid toolEnti _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); } - public void DisconnectTank(InternalsComponent? component) + public void DisconnectTank(Entity ent) { - if (component is null) - return; - - if (TryComp(component.GasTankEntity, out GasTankComponent? tank)) - _gasTank.DisconnectFromInternals((component.GasTankEntity.Value, tank)); + if (TryComp(ent.Comp.GasTankEntity, out GasTankComponent? tank)) + _gasTank.DisconnectFromInternals((ent.Comp.GasTankEntity.Value, tank)); - component.GasTankEntity = null; - _alerts.ShowAlert(component.Owner, component.InternalsAlert, GetSeverity(component)); + ent.Comp.GasTankEntity = null; + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent.Comp)); } public bool TryConnectTank(Entity ent, EntityUid tankEntity) @@ -267,21 +264,21 @@ private short GetSeverity(InternalsComponent component) if (_inventory.TryGetSlotEntity(user, "back", out var backEntity, user.Comp2, user.Comp3) && TryComp(backEntity, out var backGasTank) && - _gasTank.CanConnectToInternals(backGasTank)) + _gasTank.CanConnectToInternals((backEntity.Value, backGasTank))) { return (backEntity.Value, backGasTank); } if (_inventory.TryGetSlotEntity(user, "suitstorage", out var entity, user.Comp2, user.Comp3) && TryComp(entity, out var gasTank) && - _gasTank.CanConnectToInternals(gasTank)) + _gasTank.CanConnectToInternals((entity.Value, gasTank))) { return (entity.Value, gasTank); } foreach (var item in _inventory.GetHandOrInventoryEntities((user.Owner, user.Comp1, user.Comp2))) { - if (TryComp(item, out gasTank) && _gasTank.CanConnectToInternals(gasTank)) + if (TryComp(item, out gasTank) && _gasTank.CanConnectToInternals((item, gasTank))) return (item, gasTank); } From 2e694f109d3eb998dc237a0fc8ef4a241469b4e9 Mon Sep 17 00:00:00 2001 From: Jonathan Argo Date: Fri, 12 Jul 2024 11:00:40 -0400 Subject: [PATCH 36/97] Centered hard hat sprites (#29953) --- .../Clothing/Head/Hardhats/armored.rsi/icon.png | Bin 326 -> 288 bytes .../Head/Hardhats/armored.rsi/light-icon.png | Bin 256 -> 202 bytes .../Clothing/Head/Hardhats/blue.rsi/icon.png | Bin 242 -> 193 bytes .../Head/Hardhats/blue.rsi/light-icon.png | Bin 256 -> 204 bytes .../Head/Hardhats/dark_yellow.rsi/icon.png | Bin 242 -> 193 bytes .../Hardhats/dark_yellow.rsi/light-icon.png | Bin 256 -> 204 bytes .../Clothing/Head/Hardhats/orange.rsi/icon.png | Bin 242 -> 192 bytes .../Head/Hardhats/orange.rsi/light-icon.png | Bin 243 -> 204 bytes .../Clothing/Head/Hardhats/red.rsi/icon.png | Bin 242 -> 192 bytes .../Head/Hardhats/red.rsi/light-icon.png | Bin 256 -> 204 bytes .../Clothing/Head/Hardhats/white.rsi/icon.png | Bin 242 -> 193 bytes .../Head/Hardhats/white.rsi/light-icon.png | Bin 243 -> 204 bytes .../Clothing/Head/Hardhats/yellow.rsi/icon.png | Bin 242 -> 192 bytes .../Head/Hardhats/yellow.rsi/light-icon.png | Bin 256 -> 204 bytes 14 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/armored.rsi/icon.png index 7adc2b1385919de3691bf660a7c812275c6f40da..fc2328e7d149e66e43586cab81345675bbee87ef 100644 GIT binary patch delta 247 zcmV%Q6F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m60x&w?%HUJuEjTQbo6co zvf7vKRX8F0Z1-W#xX<=Wd@BBEaXAznQz_<9XkdtC0+CFcn7f|%=KCxO5iH-xyWjl5 zz0iJt^$XYLYcWhPF_bCiaOgQbuZr2Bih0%F1grREuYW9McpB};z{v81Z4b~5|Nk>H YTvV-`eDAP>9gxf5>FVdQ&MBb@0Q3h^A^-pY diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/icon.png index fee14e7a8cd54b8eb6f24241f36bc1f00dad78cf..f3d81549e3d91dc7e42d2ee67330e0a7566ebec5 100644 GIT binary patch delta 98 zcmV-o0GJ5=02lFA*c0^Lt^BVlBP9JE_Ie% xI3l*>Y0#3(tbJd0=ub)zPGasqq-!q_!u~@|+WmgX7jdA`44$rjF6*2UngBnuI8Xop diff --git a/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/blue.rsi/light-icon.png index 3a850ef0d89953c939f371809f8b31c012e41ea9..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 176 zcmV;h08jsb0?YxBB!2;OQb$4nuFf3k0001nNkl60x&w?%HUJuEjTQbo6co zvf7vKRX8F0Z1-W#xX<=Wd@BBEaXAznQz_<9XkdtC0+CFcn7f|%=KCxO5iH-xyWjl5 zz0iJt^$XYLYcWhPF_bCiaOgQbuZr2Bih0%F1grREuYW9McpB};z{v81Z4b~5|Nk>H YTvV-`eDAP>9gxf5>FVdQ&MBb@0QJvOBme*a diff --git a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/icon.png index 3d3aa75958dcf9f5e581b13ba9b5e6ba5b8a3554..2728bf501bddd75eede1b8e20096a8d394ae189d 100644 GIT binary patch delta 98 zcmV-o0GDmi~u>Vk#cE4ZpMI2}}gQu&X%Q~loCIGw4HxmE= diff --git a/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/dark_yellow.rsi/light-icon.png index 3a850ef0d89953c939f371809f8b31c012e41ea9..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 176 zcmV;h08jsb0?YxBB!2;OQb$4nuFf3k0001nNkl60x&w?%HUJuEjTQbo6co zvf7vKRX8F0Z1-W#xX<=Wd@BBEaXAznQz_<9XkdtC0+CFcn7f|%=KCxO5iH-xyWjl5 zz0iJt^$XYLYcWhPF_bCiaOgQbuZr2Bih0%F1grREuYW9McpB};z{v81Z4b~5|Nk>H YTvV-`eDAP>9gxf5>FVdQ&MBb@0QJvOBme*a diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/icon.png index ba88c23f723c7f37cf76336606234cd3f7fbf881..b4bbfa0e09e99dfd09969b8553c849e0cf91a31b 100644 GIT binary patch delta 97 zcmeywcz|(&;Y3G^a3@a}#}JF&w`UB67!){|4@wyR`+q#?rN*tG8IvOU{uzmvv4FO#s`A BA=Ur@ delta 145 zcmV;C0B--l0rCNmF%1M~K}|sb0I`n?{9y%=E<1S%a7bBm000id000id0mpBsWB>pF zPf0{UR5(xVjKL0oAPhsxgzo?U*pYFt3h`)6c$cNiYvC_!A=yImf$%8k1I5ZskqEQH ztd5ji1vJJ2o0i7yRH8$f5FsWQ1507b4+QrU09+eR<{agB00000NkvXXu0mjf)|oi) diff --git a/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/orange.rsi/light-icon.png index 316cf7a9bccd9d0bf418f16fc955c0afc93e7888..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 163 zcmV;U09^m`0n7oAF@J_hL_t(oh3(d%4Z|=H1<-$|qOK7Z+ATUtMky(YN`gbPMdv6i zj}$4g)%)Gy0vzzaWa#tLCubvxmhq;q3m||10tj#hz$JY%ZVp@xh=9M-8!g>H#L)fX zwUYNfI|BefGIeVC?xm2m&Y$cIlKBSA9#6Mvb6dtE1(-f00vre+Kx=@aD1Vswd55Cn R3Sj^M002ovPDHLkV1g#GMt}eS delta 202 zcmX@Z_?dBnVLeN_qpu?a!^VE@KZ&di3=EtF9+AZi4BWyX%*Zfnjs#G!!_&nvB*H!U z&;S4ShaH&IG;9+Rt}rgh;8jB)dyiGZ0a=H-$#3QxUicW(<8aKLZQ0_K z?XOSpHP-*%H0A%l+23CNuh-XIAyCO6!t~_9{r&U)|M=?s`v3p?`={SKuI8_!X3ZiY zx%<~liS+u^q!@EnEf+C~+-dz*5UUc{4Gb6FVdQ&MBb@02<9s AivR!s diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/icon.png index 011962037d6b4ab8f8612210bb9a50553287e788..5a8fb92ef916f063c6df7be23c9d514812f9adee 100644 GIT binary patch delta 97 zcmeywcz|(&;Y3G^a3@a}#}JF&w`UB67!){|4@wyR`+q#?rN*tG8IvOU{uzmvv4FO#s`A BA=Ur@ delta 145 zcmV;C0B--l0rCNmF%1M~K}|sb0I`n?{9y%=E<1S%a7bBm000id000id0mpBsWB>pF zPf0{UR5(xVjKL0oAPhsxgzo?U*pYFt3h`)6c$cNiYvC_!A=yImf$%8k1I5ZskqEQH ztd5ji1vJJ2o0i7yRH8$f5FsWQ1507b4+QrU09+eR<{agB00000NkvXXu0mjf)|oi) diff --git a/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/red.rsi/light-icon.png index 3a850ef0d89953c939f371809f8b31c012e41ea9..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 176 zcmV;h08jsb0?YxBB!2;OQb$4nuFf3k0001nNkl60x&w?%HUJuEjTQbo6co zvf7vKRX8F0Z1-W#xX<=Wd@BBEaXAznQz_<9XkdtC0+CFcn7f|%=KCxO5iH-xyWjl5 zz0iJt^$XYLYcWhPF_bCiaOgQbuZr2Bih0%F1grREuYW9McpB};z{v81Z4b~5|Nk>H YTvV-`eDAP>9gxf5>FVdQ&MBb@0QJvOBme*a diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/icon.png index 2a5093d619ea4aa930175f15f39eb8e2cdea69f4..06af0dcd0aec9f5523f4f8eec947871f33b33df7 100644 GIT binary patch delta 98 zcmV-o0GJ5=02lFA*c0^Lt^BVlBP9JE_Ie% xI3l*>Y0#3(tbJd0=ub)zPGasqq-!q_!u~@|+WmgX7jdA`44$rjF6*2UngBnuI8Xop diff --git a/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/white.rsi/light-icon.png index 316cf7a9bccd9d0bf418f16fc955c0afc93e7888..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 163 zcmV;U09^m`0n7oAF@J_hL_t(oh3(d%4Z|=H1<-$|qOK7Z+ATUtMky(YN`gbPMdv6i zj}$4g)%)Gy0vzzaWa#tLCubvxmhq;q3m||10tj#hz$JY%ZVp@xh=9M-8!g>H#L)fX zwUYNfI|BefGIeVC?xm2m&Y$cIlKBSA9#6Mvb6dtE1(-f00vre+Kx=@aD1Vswd55Cn R3Sj^M002ovPDHLkV1g#GMt}eS delta 202 zcmX@Z_?dBnVLeN_qpu?a!^VE@KZ&di3=EtF9+AZi4BWyX%*Zfnjs#G!!_&nvB*H!U z&;S4ShaH&IG;9+Rt}rgh;8jB)dyiGZ0a=H-$#3QxUicW(<8aKLZQ0_K z?XOSpHP-*%H0A%l+23CNuh-XIAyCO6!t~_9{r&U)|M=?s`v3p?`={SKuI8_!X3ZiY zx%<~liS+u^q!@EnEf+C~+-dz*5UUc{4Gb6FVdQ&MBb@02<9s AivR!s diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/icon.png index 1a3f49cc1b30f6b656b560d44aefbb4d3ecb4300..0978e7886c605a7a31808c54545265e113cd38e6 100644 GIT binary patch delta 97 zcmeywcz|(&;Y3G^a3@a}#}JF&w`UB67!){|4@wyR`+q#?rN*tG8IvOU{uzmvv4FO#s`A BA=Ur@ delta 145 zcmV;C0B--l0rCNmF%1M~K}|sb0I`n?{9y%=E<1S%a7bBm000id000id0mpBsWB>pF zPf0{UR5(xVjKL0oAPhsxgzo?U*pYFt3h`)6c$cNiYvC_!A=yImf$%8k1I5ZskqEQH ztd5ji1vJJ2o0i7yRH8$f5FsWQ1507b4+QrU09+eR<{agB00000NkvXXu0mjf)|oi) diff --git a/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png b/Resources/Textures/Clothing/Head/Hardhats/yellow.rsi/light-icon.png index 3a850ef0d89953c939f371809f8b31c012e41ea9..f385d0187d3475fbbaa1244ba2ba89f9f7a7b2ab 100644 GIT binary patch delta 176 zcmV;h08jsb0?YxBB!2;OQb$4nuFf3k0001nNkl60x&w?%HUJuEjTQbo6co zvf7vKRX8F0Z1-W#xX<=Wd@BBEaXAznQz_<9XkdtC0+CFcn7f|%=KCxO5iH-xyWjl5 zz0iJt^$XYLYcWhPF_bCiaOgQbuZr2Bih0%F1grREuYW9McpB};z{v81Z4b~5|Nk>H YTvV-`eDAP>9gxf5>FVdQ&MBb@0QJvOBme*a From a1000587cfc0293e045bff29835719e8c4767e4b Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 12 Jul 2024 15:01:46 +0000 Subject: [PATCH 37/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e51638b71e9..1dfa17c2b06 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SpeltIncorrectyl - changes: - - message: Security Officers, Head of Security, and Warden can now choose to start - with a security webbing instead of a belt in their loadout menu. - type: Add - id: 6411 - time: '2024-04-21T06:19:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27189 - author: ElectroJr changes: - message: Fixed the nukie station not getting properly initialized. @@ -3824,3 +3816,10 @@ id: 6910 time: '2024-07-12T11:38:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29917 +- author: jonathanargo + changes: + - message: Hard hat icon sprites are now centered correctly. + type: Fix + id: 6911 + time: '2024-07-12T15:00:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29953 From 890c15f3477695e129330d52e376e8c94f00cd71 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 12 Jul 2024 22:34:51 +0200 Subject: [PATCH 38/97] Translate vox names :trollface: (#2403) --- Resources/Prototypes/Datasets/Names/vox.yml | 5524 +++++++++---------- 1 file changed, 2762 insertions(+), 2762 deletions(-) diff --git a/Resources/Prototypes/Datasets/Names/vox.yml b/Resources/Prototypes/Datasets/Names/vox.yml index 891094d95b2..76cb9009789 100644 --- a/Resources/Prototypes/Datasets/Names/vox.yml +++ b/Resources/Prototypes/Datasets/Names/vox.yml @@ -1,2765 +1,2765 @@ - type: dataset id: names_vox values: - - Bakabepa - - Babapir - - Babasri - - Babepipit - - Bachakehi - - Bacheska - - Bachishesher - - Bacrapri - - Bacreska - - Bahepra - - Bahicrecrek - - Bahikravre - - Bakabepa - - Bakehahak - - Bakeki - - Bapechichik - - Bapekikik - - Baperi - - Bapravavar - - Bapreba - - Bapretritrir - - Baracreber - - Barahri - - Baraskahrita - - Baraxixik - - Bashiskir - - Baskaskakre - - Baskivihi - - Basreba - - Batapriri - - Batasrecrar - - Batehrahrat - - Batrakiha - - Batravika - - Batrepriski - - Batresri - - Batriska - - Batritra - - Bavasha - - Bavebebek - - Bavraskikaka - - Bavricriski - - Baxahehrer - - Baxeve - - Bebebapa - - Bebeterara - - Bebipaska - - Bechetapeka - - Becrerisre - - Becretretrer - - Beheka - - Behivresha - - Behrechechek - - Behrekri - - Behreyayat - - Behricririri - - Behritixaxa - - Bekapesresre - - Bekashishik - - Beketatratra - - Bekrechaxe - - Bekresrare - - Bekribe - - Bepararakrit - - Bepatricher - - Bepehisrepra - - Bepihar - - Bepitrashi - - Bepresri - - Berabi - - Beraka - - Berecricrir - - Berisre - - Beshachari - - Besheskexexe - - Beshesre - - Beshesretre - - Beskayavrer - - Beskisrasrak - - Beskitre - - Besravivit - - Besrivir - - Betababatrat - - Betere - - Beticreche - - Bevekakat - - Bevihichabi - - Bevihraki - - Bevrasheshet - - Bibaba - - Bibabir - - Bibati - - Bibekricha - - Bibexa - - Bibibabat - - Bibiya - - Bichechir - - Bicrakipepe - - Bicrevrite - - Bihrapivra - - Bihraxibebe - - Bihrishicha - - Bihrivriski - - Bikivri - - Bikraskixexe - - Bikrivrivrit - - Bipekisri - - Bipiritecre - - Bipratraxi - - Biprexi - - Biprivar - - Birachi - - Bisheba - - Bishehri - - Bishevrivra - - Bishiki - - Biskeskavra - - Bisrahresha - - Bisrepipit - - Bitavi - - Bitehatiti - - Bivacri - - Bivape - - Bivihachakre - - Bivitikiva - - Bivrapri - - Bivraske - - Bivrehaski - - Bivrihra - - Bixachetra - - Bixapetra - - Bixapriprik - - Bixexir - - Biyakir - - Chabaha - - Chabakrekrer - - Chabebache - - Chabepebe - - Chabikrahihi - - Chachahe - - Chachevra - - Chacrerehra - - Chahekre - - Chahixe - - Chahravrer - - Chahrixehra - - Chakakiva - - Chakapraprar - - Chakehashe - - Chakiprihi - - Chakivre - - Chakricrivi - - Chapachichit - - Chaparachi - - Chapehresha - - Chapeshiski - - Chapixahi - - Chaprahebibi - - Chaprecraha - - Chaprecrevi - - Charaprehiki - - Charapriska - - Charara - - Charate - - Charatraki - - Charekreski - - Charesribe - - Charichechet - - Charisha - - Chashaber - - Chashereska - - Chaskeke - - Chasraskaska - - Chasrechata - - Chasrevravi - - Chasrihiprer - - Chatrexixe - - Chavicreshi - - Chavrikre - - Chaxakrahehe - - Chaxeskehre - - Chaxevrahi - - Chaxivre - - Chebabebet - - Chebavi - - Chebebibivar - - Chebehecri - - Chebehrihrit - - Chebihihit - - Chebiretete - - Chebisra - - Chechapraver - - Checraxa - - Checrera - - Checretasre - - Checretrisre - - Checrisre - - Chehashababa - - Chehebicri - - Chehepre - - Chehisker - - Chehraxashir - - Chekrahraka - - Chekravixa - - Chekretitit - - Chepakakatat - - Chepekakak - - Chepipracra - - Chepitipe - - Chepraskavri - - Cheshirikra - - Cheshive - - Cheskapra - - Cheskavre - - Chesrakeyaya - - Chesravre - - Chesrevi - - Chesrevratra - - Chesrirititi - - Chetaxapa - - Chetaxapre - - Cheterarat - - Chetiska - - Chetritreti - - Chetriya - - Chevasrasrak - - Chevrepre - - Chevrivir - - Chexararahir - - Chexecraski - - Chexepraprar - - Chexexaxapa - - Chexisreka - - Chexitre - - Cheyaverere - - Chibakre - - Chibihra - - Chichabikaka - - Chichavrehre - - Chicrikishi - - Chicrirake - - Chicrivivit - - Chihahrehrek - - Chihasre - - Chihatrachi - - Chihayayabik - - Chiheche - - Chihehreba - - Chihreratri - - Chihriveka - - Chikakre - - Chikaskitre - - Chikate - - Chikiprecri - - Chikraki - - Chikraskiska - - Chikrekra - - Chikrekre - - Chipabeske - - Chipererer - - Chipicracrak - - Chiprexexet - - Chipriprisre - - Chiprivrecha - - Chishakepi - - Chishipepri - - Chisrashi - - Chisretri - - Chisriher - - Chisriva - - Chisrivevri - - Chitisrevre - - Chitixahra - - Chitrechicra - - Chitresravri - - Chivechachat - - Chiveprepret - - Chiveprikri - - Chiviki - - Chivikiya - - Chivishir - - Chivrakakak - - Chivrakri - - Chivrasher - - Chivrepapar - - Chixacra - - Chixihebakra - - Crabecrapapa - - Crachikrisre - - Cracrahravri - - Cracratiya - - Cracretipi - - Cracrihe - - Cracritri - - Crahayayak - - Craheki - - Crahrashi - - Crahrehi - - Crahretetek - - Crakapeper - - Crakaskeba - - Crakavravrat - - Crakehri - - Crakirer - - Crakrashiski - - Crakrehra - - Crakriskipir - - Crapipaka - - Crapiriyaya - - Craprati - - Crapresker - - Craresraxe - - Crarevexa - - Crashahresri - - Crashehihik - - Craskahraske - - Craskatrapra - - Craskicrete - - Craskivi - - Cratatrihi - - Cratikre - - Cratikrekrek - - Cratiprar - - Cratrehra - - Cravehri - - Cravrikra - - Cravrisrere - - Cravritiriri - - Cravriyayak - - Crayahrehret - - Crayakrer - - Crayapraprar - - Crayaripipi - - Crayayaricri - - Crebaxa - - Crebehrita - - Crechavre - - Crechesrehar - - Crechichevre - - Crecrabibik - - Crecriri - - Crehepapepe - - Creheriki - - Crehexi - - Crehipavava - - Crehraver - - Crekatri - - Crekavexa - - Crekeki - - Creketri - - Crekiskeya - - Crekitati - - Crekrepreki - - Crekrivavak - - Crepahripa - - Crepekecre - - Crepekrekret - - Crepiba - - Crepihri - - Creprepravri - - Creraxi - - Crerehihit - - Creshekrapa - - Creskekri - - Cresketita - - Creskihre - - Cresripepet - - Cretarevripa - - Cretebe - - Cretehra - - Creterarar - - Cretibehihi - - Cretrapi - - Cretrekerara - - Cretrepepet - - Crevapir - - Crevixesra - - Crexahava - - Crexepapacre - - Cribavribibi - - Cribitratrat - - Crichecrite - - Crichipi - - Cricraprehre - - Cricrirar - - Cricrisre - - Cricritika - - Crihevar - - Crihitehre - - Crikatrikre - - Crikebepapa - - Crikekakat - - Crikeshivra - - Crikisheski - - Crikrahrata - - Crikretevabi - - Crikricretri - - Cripichahi - - Criprishapa - - Crirachi - - Crirakratra - - Crishave - - Criskahe - - Crisrehapahi - - Critachatri - - Critrabibir - - Critresrir - - Critrikracri - - Crivacriti - - Crivacrive - - Crivayasra - - Crivrakre - - Crivrecri - - Crixixaske - - Habavavak - - Habepa - - Habikikaka - - Habikrihita - - Hachabe - - Hachehekre - - Hacheske - - Hacreha - - Hacrere - - Hahebapapa - - Hahecrecha - - Haheha - - Hahetasrike - - Hahihahatrar - - Hahihasreche - - Hahripraxaxa - - Hakepa - - Hakirer - - Hakraxixit - - Hakrekikik - - Hakrixexeret - - Hapacharepri - - Hapacre - - Hapahri - - Hapeti - - Hapitahri - - Hapreska - - Haprihrisha - - Harebabi - - Harexiveve - - Haricracre - - Haririsheska - - Harishi - - Hashakrakrak - - Hashehracri - - Hashepracha - - Haskaritepra - - Hasketer - - Haskibebeyat - - Haskikretete - - Hasrabake - - Hasracritehe - - Hasrekitra - - Hasrekrer - - Hasrihaxa - - Hasripeshar - - Hatabibivet - - Havavresra - - Havixe - - Havreki - - Havrepekre - - Havretri - - Havrichatata - - Haxikeker - - Hayahriyaxa - - Hebahrevrir - - Hebapri - - Hebihihichit - - Hebikratahe - - Hecheshehixi - - Hechetra - - Hechevakrer - - Hecraba - - Hecrabi - - Hecrevrivrik - - Hecrirecha - - Hehere - - Hehiskitri - - Hehrapike - - Hehrepri - - Hehreskaskat - - Hehrikra - - Hekikrexa - - Hekrasre - - Hekrekicre - - Hekreracre - - Hekriheti - - Hepevivikrik - - Hepraskibebe - - Heprivresker - - Heprixasheri - - Herecrerivi - - Hereririket - - Heriheyacri - - Heripa - - Heripreka - - Heshahraveti - - Heshepepevik - - Heskashachi - - Heskaxixe - - Heskererepet - - Heskeshishit - - Heskisker - - Hesrepahri - - Hesreski - - Hetahetritri - - Hetiheheprit - - Hetrare - - Hetrevihra - - Hetrihahri - - Hetrirebibi - - Hevababaker - - Hevetihre - - Hevexixik - - Heviricrecre - - Hevrevipa - - Hevrexir - - Hevrichar - - Hevriraravit - - Hevrivrivre - - Hexasrichi - - Hexaxipri - - Heyashipre - - Hibasher - - Hiberarakrar - - Hibesrache - - Hicrapre - - Hicrecrahera - - Hicreteba - - Hicriba - - Hihacha - - Hihepapak - - Hihichitre - - Hihireret - - Hihrevra - - Hikikri - - Hikitritrir - - Hikrakre - - Hikrepa - - Hipavi - - Hipitratrak - - Hirepabe - - Hirichachar - - Hiricheya - - Hiricrabakri - - Hiricraske - - Hiricrevitri - - Hirihrachi - - Hirihraski - - Hirihraxaxat - - Hirikachi - - Hirikretetet - - Hirikrikra - - Hiripebahre - - Hiripehixixi - - Hiriper - - Hiripesri - - Hiripeta - - Hiripevivik - - Hirirahehet - - Hirirecrevre - - Hirishihra - - Hiriskeva - - Hiritapatiti - - Hiriteker - - Hiritrari - - Hiritraxe - - Hiritricri - - Hirivavavri - - Hiriviske - - Hirivivre - - Hirivra - - Hirivrari - - Hirivrexita - - Hirivrivri - - Hirixashahre - - Hirixicraya - - Hishave - - Hishesritra - - Hishiskahra - - Hishivrevrek - - Hiskakecra - - Hiskatetek - - Hiskekreche - - Hiskeva - - Hiskisrare - - Hisrakikit - - Hisratrepepe - - Hitava - - Hiterehaha - - Hitratra - - Hivacracrat - - Hivatritrik - - Hivayayar - - Hivrababar - - Hivrahrir - - Hixacre - - Hixashape - - Hixashetiti - - Hixekrasra - - Hixepi - - Hixeripe - - Hiyacrakra - - Hrabatitit - - Hrabaxa - - Hrabike - - Hrabipre - - Hracrabixi - - Hracrehra - - Hrahepivivi - - Hraherikrexi - - Hrahikrer - - Hrahrakahre - - Hrahraska - - Hrahrasrebe - - Hrahrehehek - - Hrahritra - - Hrakachabexi - - Hrakarerek - - Hrakeshi - - Hrakiski - - Hrakretri - - Hrakrichapri - - Hrakrishi - - Hrapavevek - - Hrapicra - - Hrapraber - - Hraprapreche - - Hrarachihi - - Hrarahrahrar - - Hrarecri - - Hrarikrixabi - - Hrarishesher - - Hrashepa - - Hrashibisra - - Hrashihir - - Hrashikavexa - - Hrasketre - - Hraskibe - - Hraskikexaxa - - Hrasrecrixi - - Hrasrevraxi - - Hrasrevrehra - - Hratatrasre - - Hratayati - - Hratere - - Hratrachari - - Hratreki - - Hravahiche - - Hravapeki - - Hravaskeki - - Hraveska - - Hravihre - - Hravrahaheya - - Hravrekra - - Hraxehrehiri - - Hraxekrebe - - Hraxichebar - - Hraxivivivet - - Hrayacha - - Hrayavrar - - Hrebavihra - - Hrebetra - - Hrechaxer - - Hrecreti - - Hrecrihahar - - Hrehikrekrer - - Hrehresra - - Hreketra - - Hrekrativi - - Hrepihepre - - Hrepipake - - Hrerasri - - Hreravexe - - Hrereprehir - - Hreriba - - Hreshahetiti - - Hreshehakake - - Hreskapahre - - Hresrakakre - - Hresrechike - - Hresrekasha - - Hretite - - Hretrecre - - Hretreski - - Hretrevri - - Hrevrehe - - Hrexakekek - - Hrexatika - - Hrexebe - - Hribahar - - Hribehrati - - Hribipe - - Hrichiski - - Hrihevrivrir - - Hrihitra - - Hrihrakihri - - Hrihrechar - - Hrikichecra - - Hrikiskate - - Hripricrahra - - Hrirehrikra - - Hriresri - - Hrishabar - - Hrishaxeyar - - Hrishehrahi - - Hrishexixik - - Hrisheyakra - - Hrishipete - - Hriskacrecra - - Hriskaheba - - Hriskari - - Hriskevetabi - - Hriskexa - - Hriskihete - - Hriskihri - - Hrisrechi - - Hrisrera - - Hrisriri - - Hrisrishapa - - Hrisrivavar - - Hritachecri - - Hritexa - - Hritihihri - - Hritihra - - Hritiker - - Hritisrasrat - - Hrivaxa - - Hrivripira - - Hrixebabatir - - Hrixebi - - Hrixihri - - Hrixiva - - Hriyahriya - - Kabavi - - Kabaxesha - - Kachaske - - Kachaya - - Kachihe - - Kacrahesha - - Kahakichi - - Kahaxipa - - Kahepapatret - - Kahiki - - Kahishe - - Kahrakrekret - - Kahratrer - - Kahriche - - Kahricrikra - - Kakatahrare - - Kakebi - - Kakihrasri - - Kapakriska - - Kapracre - - Kaprashesher - - Kaprehrakaka - - Kapreri - - Karakahre - - Karapihehe - - Kashaya - - Kashipri - - Kaskachekeke - - Kaskivrer - - Kasrabacre - - Kasrakapre - - Kasraxar - - Kasresreyaya - - Kasrivrata - - Katasker - - Katehreyaya - - Katetrike - - Katexaxak - - Katrehre - - Kavababat - - Kavashishit - - Kavihrahrat - - Kavitratrak - - Kavratevriya - - Kaxecri - - Kaxetavre - - Kaxetretret - - Kayararat - - Kayavrivrik - - Kayaxi - - Kebasrevikri - - Kechatra - - Kechavrepri - - Kecresra - - Kecrevrir - - Kecriha - - Kecrikra - - Kecrixa - - Kehave - - Kehitichacha - - Kehivehrihri - - Kehrachechek - - Kehrehi - - Kekabibit - - Kekahi - - Kekahrexi - - Kekarar - - Kekasritri - - Kekebapisra - - Kekebibivrer - - Kekekahihi - - Kekrishe - - Kepetre - - Kepevra - - Kepraki - - Keprepara - - Kerahacheche - - Keratra - - Kerihi - - Keriskehisri - - Keshevaskiva - - Keshika - - Keshiti - - Keskarahita - - Keteskesket - - Ketesketa - - Ketribabar - - Ketribipi - - Kevatra - - Kevatre - - Keveki - - Keveshatra - - Keveshexiki - - Kevesraxe - - Kevexa - - Kevikaxe - - Kevivri - - Kevrahreri - - Kevrahrihrit - - Kexapriprik - - Kexerava - - Kexeshacha - - Kexisrepe - - Keyararak - - Kibevavacrak - - Kibeyachichi - - Kibipavava - - Kichitra - - Kicricreva - - Kicrikrikrik - - Kiharesra - - Kihiya - - Kihrexexevek - - Kihriprira - - Kikeke - - Kikexitretre - - Kikrabikichi - - Kikrehi - - Kikrekrakrat - - Kikreri - - Kikretrapa - - Kikrevavak - - Kikrivikar - - Kipivaxe - - Kipreya - - Kireche - - Kiresrisrir - - Kirevi - - Kiribapra - - Kiribaprive - - Kirichaketra - - Kirichiska - - Kiricrakakri - - Kirihererek - - Kirihrepi - - Kirihreviche - - Kirikachicha - - Kirikatriki - - Kirikivrivri - - Kirikrakra - - Kiripabi - - Kiripahritri - - Kiriprihri - - Kirirahixera - - Kirireti - - Kirirevri - - Kirishavavar - - Kirishekeket - - Kiriteska - - Kiritracha - - Kiritrepeper - - Kiritreyapri - - Kirivipe - - Kirivrivepi - - Kirixaticher - - Kirixepepek - - Kirixicra - - Kishahapatre - - Kishehakaka - - Kiskashapra - - Kiskekehra - - Kiskekicre - - Kiskipri - - Kitraka - - Kitrevevri - - Kivraheherat - - Kivrahi - - Kivrashe - - Kivrera - - Kivretrakeke - - Kixatritrit - - Kixichetiti - - Kixichicrar - - Kixivra - - Krabareyaya - - Krabeherere - - Krachehre - - Kracheyaba - - Kracrirarak - - Krahebikaba - - Krahechikri - - Krahiha - - Krahrakri - - Krahraririk - - Krahrepexi - - Krahrepri - - Krahrerar - - Krakahra - - Krakrekiski - - Krakrepapat - - Krapari - - Krapibi - - Krapitahri - - Krapreve - - Kraprisrisre - - Kraprivrarar - - Krarakrikrit - - Krarekri - - Kraricri - - Krashatatahi - - Krashavecra - - Kraskisretra - - Krasrarevi - - Krasripapat - - Kratachavri - - Kratare - - Kratikepi - - Kraveke - - Kravraxeveve - - Kravrepachi - - Kravricrahra - - Kraxabi - - Kraxasrir - - Krayakrikrit - - Krebekri - - Krebibikre - - Krebivi - - Krechahe - - Krechepraxa - - Krechititik - - Krecrashepra - - Krecravicha - - Krecreri - - Krehekikihit - - Krehrakakre - - Krehrita - - Krehrixa - - Krekacrechi - - Krekebeta - - Krekracri - - Krekrapri - - Krekrishaski - - Krepeviske - - Krepitir - - Krepiya - - Kreprahetaya - - Krepretasha - - Kreprivreski - - Krererisri - - Krerexeskeva - - Kreskaviha - - Kresrepaxexe - - Kretahre - - Kretavi - - Kretepapatir - - Krevavikeke - - Krevesher - - Krevesrisrit - - Krevrexer - - Krevrivriske - - Krexaya - - Kreyacrepe - - Kreyatriri - - Kreyavi - - Kribeshi - - Kribetibi - - Kribexixik - - Kribirecri - - Kribivra - - Krichakehra - - Kricrava - - Kricrirepe - - Kricritaka - - Krihaprir - - Krihesre - - Krihexarava - - Krihreskekre - - Krikapepek - - Krikatitixer - - Krikesrixixi - - Krikrashar - - Krikrikesre - - Kripahri - - Kripritri - - Kriripriprit - - Kririve - - Krishebiriba - - Krishebite - - Krishecrapi - - Kriskexer - - Krisribariri - - Krisrisher - - Kritahe - - Kritarerek - - Kritechihihi - - Kritiha - - Kritixa - - Kritresra - - Kritrivrevra - - Krivaxixipak - - Krivripri - - Krixehraski - - Krixesrepri - - Krixirar - - Pabaskare - - Pabecrechi - - Pabixashaha - - Pachatatak - - Pachetra - - Pachikri - - Pachisra - - Pacrachisri - - Pacraheha - - Pahrecrahati - - Pahrixeke - - Pakaririhrek - - Pakashexa - - Pakaskesha - - Pakavrevaha - - Pakihechacha - - Pakishi - - Pakivrapapa - - Pakrakrasra - - Pakrasrer - - Pakrava - - Pakresra - - Pakrexetihe - - Pakrika - - Papaskaxa - - Papavivivrik - - Papesheher - - Papivahre - - Papratrakiki - - Parerakre - - Pashaskaskak - - Pashevravrat - - Paskasretiti - - Paskiske - - Paskixexek - - Pasrabicra - - Pasraprikepa - - Pasrehe - - Pasrepratri - - Pataprivra - - Patesrateke - - Patexexet - - Patreshe - - Pavaba - - Pavrapishi - - Paxarerechak - - Paxecri - - Paxitirechi - - Payahreshi - - Pebakrikrik - - Pebate - - Pebeskahepre - - Pebevravi - - Pebibebek - - Pechaka - - Pechekripi - - Pechetraya - - Pechikreke - - Pechivrar - - Pecracha - - Pecritrasre - - Pehasra - - Pehecha - - Pehisresrer - - Pehrakresha - - Pehrihivreya - - Pehriva - - Pekecricrik - - Pekrava - - Pekraya - - Pekrepitri - - Pepehri - - Pepexekaka - - Pepirer - - Pepiska - - Pepitre - - Pepreba - - Pepreha - - Peprerar - - Pepresri - - Pepresrikeke - - Peprevahe - - Peraxatrikri - - Perebecrate - - Peribi - - Perisrehri - - Peshipaha - - Peskavavaxek - - Peskehihik - - Peskikikitir - - Pesraski - - Pesratra - - Pesravre - - Pesraya - - Pesretetetat - - Pesrikre - - Pesritra - - Petevrivrit - - Petihri - - Petivrate - - Petripetete - - Pevekriska - - Pevera - - Pevetiska - - Pevetrepri - - Pevikixi - - Pevipraprak - - Pevitetecrak - - Pevixihre - - Pevracher - - Pevrakrakrat - - Pevrehita - - Pexepraprat - - Pexihibe - - Pibehra - - Pibekrite - - Pibetiskiski - - Pibibipa - - Pibikekek - - Pichehi - - Pichetreta - - Pichicreve - - Pichikrarar - - Picreprecha - - Pihasresret - - Piheki - - Pihepa - - Pihibeskaska - - Pihichar - - Pihitetek - - Pihrebi - - Pihreshapibe - - Pihretitir - - Pikaskaskar - - Pikaxer - - Pikrehreka - - Pikripreprer - - Pipasha - - Pipaxacricri - - Pipesresri - - Pipribepri - - Piprishixi - - Piraxiprar - - Pirekrehi - - Pireveverik - - Piribaxa - - Piribipriski - - Pirichivapi - - Piricrahra - - Piricrakra - - Pirihepre - - Pirihichati - - Pirikretra - - Pirikritere - - Pirikrivra - - Piripaba - - Piripacripri - - Piripihrishe - - Piripite - - Piripitri - - Piriprabepa - - Pirireprishe - - Piriririke - - Piriskateke - - Piriskiki - - Pirisretiva - - Piritavre - - Piritihre - - Piritratavri - - Piritrecrara - - Piritreke - - Pirivakixaxa - - Pirivikrar - - Pirixaxa - - Pirixaxevre - - Piriyakribi - - Piriyapesra - - Pishakakaxet - - Pishashetepi - - Pishavraska - - Pishevra - - Piskipre - - Pisrasheshek - - Pisripre - - Pisrixekete - - Pitibi - - Pitraprivre - - Pitraskeche - - Pitratebi - - Pitrevreyaya - - Pitriprivra - - Pitriske - - Pivaka - - Pivatatakir - - Pivekrixehri - - Piveyashi - - Pivrakevi - - Pivrakipre - - Pivrakitibe - - Pivrashir - - Pivrirater - - Pivritatabet - - Pixeriti - - Pixicha - - Prabibiprepi - - Prabichixaxa - - Prabixite - - Pracheteter - - Prachiba - - Pracrahrive - - Prahihrahrak - - Prahisresrek - - Prahitrivi - - Prahrebesra - - Prahripebaba - - Prahrivapapa - - Prakiskesket - - Prakrehrahri - - Prakripi - - Prapicresri - - Praprexexek - - Prarachaxi - - Prarecrahi - - Prarikra - - Praripraka - - Prashicribi - - Prashivepapa - - Prashixitata - - Pratakra - - Praterahira - - Pratreki - - Pravashipebe - - Pravesrisrit - - Pravixihehe - - Pravrashi - - Pravrepi - - Pravricrir - - Pravritrer - - Praxahihir - - Praxechaxere - - Praxekrakrat - - Praxevitetra - - Praxexe - - Praxichi - - Prayaraxir - - Prebavre - - Prechakavra - - Prechavre - - Precratetet - - Preherihra - - Prehiviveve - - Prehrakriska - - Prehribi - - Prekakra - - Prekaya - - Prekiprever - - Prekirar - - Prepahihibar - - Prepetratrat - - Prepixihrapa - - Preprete - - Preretetre - - Prerexike - - Presharesre - - Presravi - - Presrere - - Presriskipre - - Pretere - - Pretetisrir - - Pretexiprar - - Pretihre - - Pretrakre - - Pretrike - - Pretrisra - - Prevakre - - Prevecrere - - Prevesriti - - Preveti - - Previkrahihi - - Previkri - - Prevritrare - - Prevrivi - - Prexatrar - - Prexeshe - - Prexicracrak - - Preyatra - - Pribatretrek - - Pribavibache - - Pribirivava - - Pribivrivrit - - Pricheyayat - - Pricrapapat - - Pricrihi - - Prihavri - - Prihetiya - - Prihrechabi - - Prikebixi - - Prikricha - - Prikripi - - Prikripikiki - - Prikrishi - - Pripachiya - - Pripavrepri - - Pripixixik - - Pripraske - - Priprecheha - - Pripripepek - - Prirakre - - Prirasher - - Priraske - - Prireprehar - - Pririhi - - Prishehe - - Prishepaxixi - - Prishitarabe - - Priskake - - Prisraxi - - Pritabaski - - Pritakir - - Pritecra - - Pritehavivi - - Pritepa - - Pritichahi - - Privayayak - - Privipecre - - Privrihareya - - Prixarake - - Prixepa - - Prixetre - - Prixivrekri - - Priyaprar - - Rabehiya - - Rabeparere - - Rabereshebe - - Rabichechet - - Rachare - - Racraba - - Racrakeka - - Racrakreheri - - Rahavevahi - - Rahevripeshi - - Rahibebetat - - Rahihratata - - Rahipe - - Rahraba - - Rahrecri - - Rahreyavri - - Rahritretrek - - Rakekikitrir - - Rakicrecrek - - Rakipipihrat - - Rakreprikri - - Rapivrivrere - - Rarahaka - - Raretriya - - Rasheshashat - - Rasheshevri - - Rashihretra - - Rashikrehre - - Rasriber - - Ratabibihet - - Ratesraprar - - Ratitritrik - - Ratravi - - Ratrebi - - Ratreyayak - - Ratrihrikri - - Ravecher - - Ravepexi - - Ravihrahrak - - Ravixexebet - - Ravrisheke - - Ravrivrikri - - Raxahehet - - Raxetapa - - Raxete - - Raxevahre - - Rayachesheta - - Rebakre - - Rebebikiki - - Rebicracrak - - Rebipi - - Rebisriyaya - - Rebitetebit - - Recheper - - Recraskehe - - Recrekariri - - Rehepipibet - - Rehresheshet - - Rehrikrikrik - - Rehrire - - Rekaskaskak - - Rekracha - - Rekripreprek - - Repeche - - Repetrir - - Repexishe - - Repivesheri - - Repivrasra - - Reprihri - - Reprishishik - - Rerahahat - - Rereba - - Rerirevra - - Reskebexexe - - Reskehahat - - Reskivavak - - Reskixibira - - Resrecracrat - - Resretra - - Resrihrepeke - - Resriske - - Resrixiha - - Retaskahri - - Retavavatet - - Retaveche - - Retecha - - Retevravrak - - Retrete - - Retrexehehri - - Retripritri - - Revasri - - Revetitipret - - Revikrebiya - - Revripra - - Revritrer - - Rexabaska - - Rexataxa - - Ribatre - - Ribebahihi - - Ribehashishi - - Ribiheva - - Ricrehaska - - Rihava - - Rihaxicre - - Rihekrekrek - - Rihipapar - - Rihrachepi - - Rihravatir - - Rikevra - - Rikipa - - Rikiskapipi - - Rikivrevra - - Rikrachi - - Rikrepa - - Rikreravribe - - Ripibivrir - - Ripihrepapa - - Ripreshikre - - Rirevi - - Riribebe - - Riribeska - - Riricheshe - - Riricrehra - - Riricriti - - Ririhari - - Ririhepreski - - Ririhite - - Ririhixir - - Ririkavrire - - Ririkeve - - Ririkrekaska - - Ririkrexeti - - Riripasha - - Riripraprapi - - Ririrarerera - - Riririhacha - - Ririshihi - - Ririskatre - - Ririskihe - - Ririskiri - - Ririsravra - - Riritihihit - - Riritiskaba - - Rirititahi - - Riritrebi - - Riritrexexek - - Ririvihrar - - Ririvreshiya - - Ririvretra - - Ririyaskihe - - Rishacriker - - Rishaskar - - Rishepi - - Riskavrer - - Riskekar - - Riskepriba - - Riskesre - - Riskirasre - - Riskiskeha - - Risratretete - - Risratrihihi - - Risrevre - - Risritracre - - Risrivire - - Ritaha - - Ritahrecra - - Ritekrakapre - - Riteva - - Ritresrakri - - Ritrihe - - Ritrirecra - - Ritrishixi - - Rivretripapa - - Rivrivrishi - - Rixahritri - - Rixaterete - - Rixecrekre - - Rixepapat - - Rixeti - - Rixibihrihri - - Rixiskirepri - - Rixixaxavrat - - Riyahrahrat - - Riyapare - - Riyasri - - Shabirivri - - Shachikir - - Shacrevavak - - Shacrevrake - - Shahaprahri - - Shahaxaxak - - Shahekeket - - Shaheskate - - Shahexer - - Shahrasher - - Shahrati - - Shahripracri - - Shakekrirabe - - Shakrichar - - Shapesrikaka - - Shapibi - - Shapretra - - Sharapire - - Sharesrasrat - - Sharihesrehi - - Sharihre - - Sharipiva - - Sharitrihri - - Shashishibe - - Shashisravi - - Shaskehepre - - Shaskepahre - - Shaskitra - - Shatretaxi - - Shavaprika - - Shavashakri - - Shavexexati - - Shavisha - - Shavrivre - - Shaxepachi - - Shayakrakrak - - Shebevrirere - - Shebipeskixa - - Shebiva - - Shecheyababa - - Shecrapricre - - Shehibe - - Shehrayashar - - Shehrebite - - Shehreha - - Shehreske - - Shehreyayar - - Shehriskar - - Shekake - - Shekakesri - - Shekapiski - - Shekeska - - Shekikakat - - Shekrira - - Shepechichik - - Shepeshesra - - Shepeskiskik - - Shepetrati - - Shepevrevrer - - Shepikitepa - - Sheprekritri - - Shepreskete - - Sherati - - Sherikre - - Sheriskahe - - Sheshasri - - Sheshihesha - - Shesrabibik - - Shesrachiski - - Shesrihihit - - Shetachavre - - Shetasre - - Shetikitata - - Shetracrar - - Shetriha - - Shevabi - - Shevecrepi - - Shevrahe - - Shevrevri - - Shevriya - - Shexachi - - Shexahrehret - - Shexecra - - Shexishishit - - Shexivir - - Sheyasha - - Shibatra - - Shibecreka - - Shibekrekret - - Shibivribe - - Shichebebet - - Shichecha - - Shicheririt - - Shichikrakre - - Shicrachi - - Shihebihre - - Shihecricrik - - Shihishar - - Shihiska - - Shihrapikra - - Shihrehepri - - Shihrerebe - - Shihrevihre - - Shikechachat - - Shikeshecra - - Shikikivri - - Shikraxi - - Shikrehre - - Shikreprer - - Shipehabaske - - Shipicreki - - Shipipapaxak - - Shipratate - - Shipriki - - Shipritraha - - Shiribebepit - - Shisrisheri - - Shitehechi - - Shitexihre - - Shitibibik - - Shitravrekra - - Shivababat - - Shivexehra - - Shivive - - Shivraheki - - Shivrayayak - - Shivrebapra - - Shivrepa - - Shixaya - - Sikibavipa - - Sikibisriche - - Sikichape - - Sikichapi - - Sikichekasha - - Sikichiyaski - - Sikicracre - - Sikicrexa - - Sikicrixi - - Sikiketraya - - Sikikrasre - - Sikikreke - - Sikipecripre - - Sikipetre - - Sikiprasrake - - Sikiprira - - Sikirehivre - - Sikirepreri - - Sikiskacra - - Sikiskevavak - - Sikiskite - - Sikisraber - - Sikisrekakat - - Sikisresha - - Sikitaski - - Sikitevre - - Sikiticre - - Sikitrashate - - Sikitrihrepi - - Sikitrirepre - - Sikivate - - Sikiveskar - - Sikivrahra - - Sikivrisrita - - Sikivritiri - - Sikixicrebar - - Siribacrache - - Siribetraska - - Siribikra - - Siricharabe - - Sirihaxer - - Sirihicripa - - Sirihihahat - - Sirihihapa - - Sirikaski - - Sirikatatat - - Siripepahe - - Siriprahra - - Siriprehavi - - Siripreteske - - Siriraki - - Siriraski - - Sirirekeba - - Sirireter - - Sirishatache - - Sirishehevre - - Siriskesrave - - Siriskihipe - - Sirisrekivi - - Sirisretre - - Siriteche - - Siritrahe - - Siritrixexet - - Sirivrekehri - - Sirivretatre - - Skabaresre - - Skabehricra - - Skabipre - - Skachabeta - - Skachibi - - Skachihive - - Skachishaha - - Skacraxaxak - - Skacrehrapre - - Skacrichisre - - Skacrixiche - - Skahipevra - - Skahixahehe - - Skahracha - - Skahravrive - - Skahreve - - Skahrivrepra - - Skakasha - - Skakava - - Skakavevet - - Skakeskaskat - - Skakevravrak - - Skapape - - Skapapriprit - - Skarebihira - - Skarechachak - - Skarepishi - - Skarexapreti - - Skashihrir - - Skaterarar - - Skatetasre - - Skatrichebe - - Skavarerahri - - Skavicrecrer - - Skavitetexi - - Skavrekreti - - Skavritre - - Skaxisrakre - - Skayabere - - Skayatepra - - Skebaprara - - Skechikreba - - Skecracheker - - Skecraprir - - Skecrita - - Skehevreshe - - Skehichitra - - Skehipe - - Skekapra - - Skekekritra - - Skeketir - - Skekrababe - - Skekraxer - - Skekretake - - Skepare - - Skepitetexik - - Skerepepehit - - Skereri - - Skeripribihe - - Skeriska - - Skeshikite - - Skeskahe - - Skeskibishi - - Skesrisrer - - Sketaha - - Sketahevra - - Sketashakra - - Sketatretrek - - Sketavri - - Sketepechi - - Sketivapapa - - Sketivre - - Sketrarivava - - Sketrekrepe - - Skevaskiskik - - Skevaxi - - Skevrabari - - Skevrahrepa - - Skevrecra - - Skevrehraki - - Skevrihrave - - Skexipi - - Skexixeska - - Skibacricrit - - Skibapraxe - - Skibevravrat - - Skibiravri - - Skibita - - Skichabi - - Skichapipit - - Skichebir - - Skichiske - - Skicreraskar - - Skicrihihe - - Skihekar - - Skiheyaskir - - Skihricher - - Skikeskesket - - Skikrahre - - Skikraprara - - Skikrisha - - Skipashihre - - Skipechishi - - Skiprapra - - Skipraripi - - Skipreve - - Skiprevivik - - Skiripipik - - Skishachi - - Skishapehehe - - Skiskevaski - - Skiskevririr - - Skisrekecra - - Skitraki - - Skitrepi - - Skitreske - - Skivekri - - Skivibibik - - Skiviska - - Skivrihri - - Skivrivreki - - Skixara - - Skixareter - - Skixetihechi - - Skixiha - - Skixisrapre - - Srabavrechi - - Srabisreveke - - Srachavicha - - Sracrare - - Srahahihir - - Srahihripra - - Srahriyar - - Srakipahehe - - Srakireret - - Srakrakrishi - - Srapahre - - Srapikretra - - Srapribekehi - - Srarekepar - - Sraribeski - - Srariprer - - Srarisha - - Srashacha - - Srashakri - - Srashaxata - - Srashikirir - - Sraskabikri - - Sraskechipe - - Sraskehreri - - Sraskekepiva - - Sraskekisra - - Sraskiba - - Sraskishar - - Srasrivate - - Sratepre - - Srateve - - Sraticre - - Sratihi - - Sratiki - - Sratraxixir - - Sratrike - - Sravechachar - - Sravrapapat - - Sraxape - - Sraxepipir - - Sraxeskicri - - Srebaskaskar - - Srebecrir - - Srebekrabi - - Srebikrir - - Srechepe - - Srecravra - - Srecravre - - Srecrisre - - Srehetahi - - Srehikrar - - Srehivavri - - Srehrehiske - - Srekacrexeve - - Srekreprexe - - Srekrikra - - Srekrititit - - Srepesrexi - - Srepipritri - - Srepisrasre - - Sreprekra - - Srepreshe - - Sreracricrar - - Srerevre - - Srerihra - - Sreshebakiki - - Sresheskixi - - Sreshiprari - - Sreskichi - - Sreskicre - - Sresrahapi - - Sresrekikit - - Sresrikre - - Sretasresri - - Sretishashak - - Sretraticrir - - Srevesra - - Srevesrixari - - Srevivre - - Srevraxipi - - Srevreyayak - - Srexatreva - - Srexikrata - - Srexiskahehe - - Sribavar - - Sribebe - - Sribireke - - Srichepi - - Srichivekaka - - Sricrevepa - - Sriheshexi - - Srihrahevrir - - Srihrakratri - - Srihrekexi - - Srikasresha - - Srikiriki - - Srikratra - - Sripaba - - Sripahebevri - - Sripahre - - Sriprikacha - - Sriracricrit - - Sririhre - - Sriripre - - Srisheyaxexe - - Srishibicri - - Srishikatre - - Sriskicrixi - - Sriskihra - - Sriskisha - - Srisratreba - - Srisrebepi - - Srisrete - - Sritasker - - Sritekrikrir - - Sriteskabe - - Sritiprebe - - Sritiske - - Sritrapashe - - Sritricha - - Sritripipir - - Srivake - - Srivaxa - - Srivekater - - Srivisra - - Srivrasrer - - Srivratre - - Srivrihrir - - Srixakrabebe - - Srixiveyaya - - Sriyapir - - Taabavrivrir - - Taabexitaski - - Taabiprete - - Taachabe - - Taacrahre - - Taacrecrasra - - Taacripi - - Taacrisretri - - Taahahre - - Taahecreta - - Taaherarak - - Taahiha - - Taahiska - - Taahivri - - Taahreke - - Taahrishepri - - Taakahevava - - Taakapa - - Taakexisker - - Taakraba - - Taapavevekik - - Taapecra - - Taapikashi - - Taapipihare - - Taapishi - - Taaprachikri - - Taaprivrapre - - Taarecra - - Taareshekra - - Taashaxikir - - Taashebititi - - Taaskatir - - Taaskevevava - - Taaskiteki - - Taasrebicre - - Taasrehrira - - Taasrikikit - - Taasritar - - Taataxe - - Taatevasre - - Taatihra - - Taatrate - - Taatrivivit - - Taavape - - Taavavrexi - - Taavrerapava - - Taavretri - - Taavrivi - - Taaxekakat - - Taaxesrite - - Taaxikra - - Taayarashe - - Teebapresri - - Teebechiya - - Teebivrichi - - Teechacraha - - Teechexe - - Teechihakri - - Teecrekrihre - - Teecrepeski - - Teecretri - - Teecrevretre - - Teehapraprar - - Teeheri - - Teehrahar - - Teehrepeskir - - Teehrirepipi - - Teekahicravi - - Teekepraxahe - - Teekipra - - Teepracrivri - - Teeprikexixi - - Teeraheher - - Teerecritri - - Teeriviyara - - Teeskapesri - - Teeskebecrar - - Teesrasraxa - - Teesrecha - - Teesretrir - - Teesribiba - - Teetahra - - Teetixi - - Teetrasrer - - Teetreskapri - - Teevahihivik - - Teevapriprar - - Teevepa - - Teevravreske - - Teexaketiti - - Teexera - - Teexihrir - - Teeyakra - - Tibaskaskak - - Tibasravava - - Tibihi - - Tibixita - - Ticheskivre - - Tichetritrir - - Tichiber - - Ticratevipe - - Tihichisketi - - Tihitre - - Tihresrevivi - - Tihrikakar - - Tikara - - Tikecribe - - Tikekitata - - Tikrasra - - Tikrevrihre - - Tipape - - Tipekrihripa - - Tipetripe - - Tipicre - - Tipreritaha - - Tipresrita - - Tiprititik - - Tireper - - Tiribavre - - Tiriberihehe - - Tiribikehe - - Tiribirakeke - - Tirichera - - Tirihayaya - - Tirihi - - Tirihra - - Tirihretrir - - Tirihriririk - - Tiriketeche - - Tirikeviha - - Tirikihrer - - Tirikrachir - - Tirikrasri - - Tiripechapre - - Tiripratra - - Tiriprexer - - Tirirahi - - Tirirapahre - - Tirirarat - - Tirirexiprer - - Tirisrehihit - - Tirisribe - - Tiritetasra - - Tiritrexi - - Tiritrivever - - Tiriveshi - - Tirivihachi - - Tirivrebire - - Tirixahiri - - Tirixebayar - - Tirixetatak - - Tirixishiski - - Tiriyaskacha - - Tishetrakaka - - Tiskasheske - - Tiskevritre - - Tiskicrar - - Tisraprepret - - Tisrasheshet - - Tisreshishit - - Tisreska - - Tisricre - - Tisriskiskir - - Tisrivexa - - Titeskeskek - - Titrabetiti - - Titretepeka - - Tivarahi - - Tivecra - - Tivecri - - Tivepa - - Tivevipe - - Tivexa - - Tiviskaskak - - Tixapipripri - - Tixetritrik - - Tixikekra - - Tixititik - - Tixixesrer - - Tiyapraprak - - Tiyaskaskat - - Trabari - - Trabisrer - - Tracrecrehri - - Tracreprake - - Trahahehetir - - Trahekehe - - Trahevreske - - Trahrepa - - Trahrevrava - - Trakehre - - Trakrapra - - Trakritevrer - - Trapavrivrir - - Trareskire - - Trashete - - Trasheve - - Trashevepri - - Trashipaxe - - Trasraveski - - Trasreve - - Tratibekaka - - Tratihrer - - Tratravi - - Tratraxixik - - Tratribi - - Travaxeski - - Travetretrek - - Travraripepe - - Travribesre - - Traxipi - - Traxiprer - - Trebahe - - Trebirerever - - Trebishivava - - Trebitratrak - - Trechacra - - Trechekrasri - - Trechesre - - Trechesrecre - - Trecrehehek - - Trehixapri - - Trehrakrepre - - Trehripra - - Trekatri - - Trekatricre - - Trekavixixi - - Trekavriki - - Trekebeti - - Trekeski - - Treketibita - - Treketra - - Trekibabat - - Trepake - - Treprabiveve - - Treprahrepi - - Treprebekra - - Treprehehet - - Trerevivipek - - Treshepra - - Treshibar - - Treshipeska - - Treskari - - Tresketara - - Treskiskakir - - Tresracrir - - Tresrasker - - Tresratracre - - Tresravritre - - Tresreba - - Tresrihivri - - Tretapra - - Tretrahri - - Tretreske - - Tretrikicha - - Trevabihra - - Trevepa - - Trevetretrek - - Trevicra - - Trexatri - - Trexavra - - Trexetri - - Trexiricrara - - Treyakracra - - Treyaxihehe - - Tribexexet - - Tribirekri - - Trichakripre - - Trichiski - - Tricracri - - Tricrekapa - - Tricripe - - Trihavever - - Trihera - - Trihexisra - - Trihicrecrek - - Trihitrar - - Tripesrishe - - Tripever - - Triprakraxi - - Triprakri - - Trirahecri - - Trirapraxar - - Trireche - - Trishakretra - - Trishecrexir - - Trishepi - - Trishisrar - - Triskavri - - Trisketir - - Triskiyayat - - Trisrachiri - - Trisrevre - - Trisrisri - - Trisrisriper - - Trisrite - - Tritetre - - Tritrakepre - - Tritrichatri - - Tritriskari - - Trivriskeki - - Trivritipipi - - Trivriyayak - - Trixihahar - - Trixitri - - Triyashekiki - - Vabahecre - - Vabahrabebe - - Vabebir - - Vabehetre - - Vabetrahacha - - Vabivri - - Vachahrirere - - Vachavri - - Vachekihri - - Vachicratata - - Vachiske - - Vacracreki - - Vacrebihi - - Vacripra - - Vahapapashek - - Vahapraxe - - Vahasker - - Vaherekiki - - Vahibebeprek - - Vahivihahe - - Vakaheva - - Vakecha - - Vakevixixi - - Vakikepripra - - Vapeyayak - - Vapikevra - - Vapipribe - - Vaprakakak - - Vaprisra - - Vapritasha - - Varebitacre - - Varekricreki - - Vashakrikrik - - Vaskexititi - - Vaskiprexi - - Vaskivri - - Vaskiyahi - - Vasraprikre - - Vasrevi - - Vatracraxixi - - Vatrevi - - Vatriva - - Vavehihisrek - - Vavrisrasri - - Vaxeki - - Vaxeraskeske - - Vebexaxat - - Vebicheta - - Vechecricrik - - Vecraxicra - - Vecriche - - Vecritrika - - Vehevrer - - Vehratrir - - Vehraxexek - - Vehritrexe - - Vekarasra - - Vekaxivivi - - Vekehribaba - - Vekirevi - - Vekracri - - Vekreka - - Vekrekrikrit - - Vekrerikra - - Vekrishar - - Vekrishicha - - Vepekre - - Veprahahat - - Veprechahri - - Veprecrar - - Veprecrecrek - - Vepreritare - - Veretitishit - - Vericharihra - - Verikisresre - - Veshacricrik - - Veshebixexe - - Veshecrihapi - - Veshehe - - Veshepreprek - - Veshishakra - - Veskapi - - Veskepayaya - - Veskepevra - - Vesrihiska - - Vetepeti - - Vetracripi - - Vetreshashat - - Vetriskira - - Vevatre - - Vevevre - - Vevivesha - - Vevreshir - - Vevricrecrek - - Vevrisrasrat - - Vexachebashi - - Vexavever - - Vexikar - - Vexisrecri - - Vibepraxaba - - Vibeta - - Vichehiriri - - Vichitribihe - - Vicrahrehrek - - Vicrevevre - - Vicrikre - - Vicripasre - - Vicritebaba - - Vicriviriki - - Viheche - - Vihecracheki - - Vihepra - - Vihratekra - - Vihrexahihi - - Vihribihiska - - Vihricra - - Vihriher - - Vihriprar - - Vihrisreher - - Vikahrekri - - Vikakehreri - - Vikavebari - - Vikekiski - - Vikihahre - - Vikitrexa - - Vikrebibit - - Vikrihi - - Vikritahahe - - Vipeskixa - - Vipravrakrar - - Viprevrar - - Virabebevrek - - Viratrerera - - Virepri - - Viriprixiche - - Virirevrare - - Viritritrik - - Viskeski - - Visrecrecret - - Visriskir - - Vitexexet - - Vitibibihrik - - Vitika - - Vitracrevi - - Vitrasheshek - - Vitraviketa - - Vitravrire - - Vitreskaskak - - Vitrisrasha - - Vitrivechere - - Vivashate - - Vivecrixexe - - Viveprehehe - - Viveprepe - - Vivixixihir - - Vivrashaya - - Vixiticrixi - - Vrabaprakaka - - Vrabikape - - Vracharitri - - Vrachishachi - - Vrachitasre - - Vracrebihehe - - Vraheska - - Vrahrehripre - - Vrakasrahi - - Vrakayasraxi - - Vrakebibit - - Vrakriperi - - Vrakritatat - - Vrapaheke - - Vrapresriki - - Vraprexave - - Vrarekikik - - Vrarihritete - - Vraripechi - - Vrashexa - - Vraskekaki - - Vraskevexar - - Vrasrehahar - - Vrasreshahi - - Vratavivit - - Vratevretra - - Vratrakere - - Vratreskevi - - Vratrite - - Vratrivar - - Vravabepra - - Vravacrahri - - Vravavra - - Vravexe - - Vraviveya - - Vravrache - - Vraxihihit - - Vrayavri - - Vrebehrihrik - - Vrebisra - - Vrecrarake - - Vrecrihri - - Vrehabi - - Vrehacre - - Vrehakatar - - Vrehasker - - Vrehecreri - - Vrehibehe - - Vrehibibipik - - Vrehipe - - Vrehipraprak - - Vrehriviche - - Vrekahrichi - - Vrekihrer - - Vrekipepet - - Vrekrixa - - Vrepate - - Vrepexexer - - Vreprehapre - - Vreprihrite - - Vrererikra - - Vrerikriskir - - Vreshabar - - Vreshihishar - - Vreshike - - Vreskatre - - Vresrasre - - Vresretatra - - Vretesravi - - Vretixixir - - Vretrapapar - - Vretrehivivi - - Vretricre - - Vrevahrir - - Vrevashixexe - - Vrevrekrer - - Vrexacracrat - - Vrexaker - - Vribetretret - - Vribipita - - Vribiprevite - - Vricrehakra - - Vricrihi - - Vricriskeche - - Vrihehra - - Vriheski - - Vrihrakre - - Vrihrekrepi - - Vrikayaba - - Vrikivresker - - Vrikrake - - Vrikrebacre - - Vrikresrasri - - Vripere - - Vripexavri - - Vripitikeske - - Vriprivra - - Vrirachesri - - Vririsha - - Vrisketaske - - Vriskiraxe - - Vriskire - - Vrisracrakri - - Vrisrekari - - Vrisreviki - - Vritasre - - Vriterepi - - Vritetrexa - - Vritika - - Vritiske - - Vritivraki - - Vritrihrar - - Vritrisre - - Vrivahi - - Vrivahishaya - - Vrivehatri - - Vrivitri - - Vrixashashar - - Vrixavribape - - Vrixeprir - - Vrixiprehre - - Vrixitreveki - - Vrixivraxe - - Xabishetra - - Xachivrivrit - - Xacripikar - - Xacriprixi - - Xacrivir - - Xahatavri - - Xahesketivri - - Xahrapaba - - Xahraprer - - Xahrebave - - Xahripavava - - Xakahri - - Xakayayakat - - Xakrevaratra - - Xapakra - - Xapikrikrik - - Xapipevrevre - - Xapraskapika - - Xaprate - - Xapravri - - Xapripraprar - - Xaracrivri - - Xaratripepe - - Xarebiya - - Xareva - - Xariheheprat - - Xashihapa - - Xaskakaba - - Xaskararater - - Xasrapipik - - Xasreskihibi - - Xatachasri - - Xatereret - - Xatiriskiski - - Xatrexixik - - Xavasrarihi - - Xaveshi - - Xavicrari - - Xavrahavri - - Xavricri - - Xavrire - - Xavrixecre - - Xaxikaxexe - - Xaxikresha - - Xaxiska - - Xayaskihri - - Xebechi - - Xebetetet - - Xebitretrek - - Xechacrecrek - - Xechibare - - Xecrixaxitre - - Xehekikir - - Xehetipe - - Xehichatavra - - Xehiprishe - - Xehiteche - - Xehrevrakre - - Xehrishe - - Xekerarivra - - Xekicra - - Xekrecri - - Xekrevri - - Xekrevripa - - Xepavikeba - - Xepehati - - Xepeter - - Xepetitipet - - Xeprasre - - Xeprekivra - - Xeprihehek - - Xeshachikaha - - Xeskapakre - - Xeskehrabe - - Xesribar - - Xetekir - - Xetraskesket - - Xetravivik - - Xetrexahihi - - Xetribirer - - Xetripi - - Xevetaske - - Xevratikepa - - Xevriya - - Xexapra - - Xexavi - - Xexibir - - Xexiski - - Xeyapre - - Xeyaribe - - Xeyaskapibe - - Xibecracrak - - Xibeha - - Xibepribe - - Xibitratrar - - Xihechevar - - Xihrahehete - - Xihrashehihi - - Xihrecreve - - Xihresra - - Xihrivever - - Xikabebet - - Xikahihi - - Xikashaxe - - Xikaske - - Xikepehrahra - - Xikicha - - Xikrahrihrik - - Xikrakipi - - Xikreshe - - Xikreska - - Xikrexiva - - Xikrihe - - Xikripar - - Xipahihik - - Xipita - - Xiprahahatek - - Xirechiske - - Xireshishit - - Xiribakrivi - - Xirichare - - Xirichebacra - - Xirichiter - - Xiricraki - - Xirihacrir - - Xirihiske - - Xirihiyatape - - Xirihrekakar - - Xirihretecre - - Xirihriti - - Xirikesrirer - - Xiriketi - - Xiripape - - Xiririhecher - - Xiririke - - Xiriripatibe - - Xirishepivre - - Xirishexi - - Xiriskapa - - Xirisketa - - Xiriskicreha - - Xirisrevre - - Xirisricreva - - Xiritracre - - Xiritreprer - - Xiritretrar - - Xirivetrikra - - Xirivexicri - - Xirivre - - Xirivrehra - - Xirixekrari - - Xishahrixixi - - Xishatre - - Xishehraxaxa - - Xishikra - - Xiskatreka - - Xiskeche - - Xiskehrahar - - Xiskicratake - - Xiskiririr - - Xisrecracrak - - Xisreva - - Xisritetet - - Xitachabibi - - Xitachixaxa - - Xitariritak - - Xitebehrer - - Xitreprecri - - Xivavraxexe - - Xiveski - - Xivivri - - Xivrahrare - - Xivrakrakrak - - Xivrihihicra - - Xixaxekaka - - Xixecra - - Xixiche + - Бакабепа + - Бабапир + - Бабасри + - Бабепипит + - Бачакехи + - Баческа + - Бачишешер + - Бакрапри + - Бакреска + - Бахепра + - Бахикрекрек + - Бахикравр + - Бакабепа + - Бакехахак + - Бакеки + - Бапечичик + - Бапекикик + - Бапери + - Баправавар + - Бапреба + - Бапретритрир + - Баракребер + - Барахри + - Бараскахрита + - Бараксиксик + - Башискикир + - Баскаскакре + - Баскивихи + - Басреба + - Батаприри + - Батасрекрар + - Батехрарат + - Батракиха + - Батравика + - Батреприски + - Батресри + - Батриска + - Батритра + - Баваша + - Бавебебек + - Бавраскикака + - Баврикриски + - Баксахерер + - Баксев + - Бебебапа + - Бебетерара + - Бебипаска + - Бекетапека + - Бекрерисре + - Бекретретрер + - Бехека + - Бехивреша + - Бехречечек + - Бехрекри + - Бехреят + - Бехрикририри + - Бехритиксакса + - Бекапесресре + - Бекашишик + - Бекетатратра + - Бекречакс + - Бекресраре + - Бекриб + - Бепараракрит + - Бепатричер + - Бепехисрепра + - Бепихар + - Бепитраши + - Бепресри + - Бераби + - Берака + - Берекрикрир + - Берисре + - Бешачари + - Бешескексексе + - Бешесре + - Бешесретре + - Бескаяврер + - Бескисрак + - Бескитре + - Бесравивит + - Бесривир + - Бетабабатрат + - Бетере + - Бетикрече + - Бевекакат + - Бевихаби + - Бевихраки + - Беврашет + - Бибаба + - Бибабир + - Бибати + - Бибекрича + - Бибекса + - Бибибабат + - Бибия + - Бичечир + - Бикракипе + - Бикрэврит + - Бихрапивра + - Бихраксибебе + - Биришиха + - Бихривриски + - Бикиври + - Бикраскиксекс + - Бикриврит + - Бипекисри + - Бипиритекр + - Бипратракси + - Бипрекси + - Бипривар + - Бирачи + - Бишеба + - Бишехри + - Бишевривра + - Бишики + - Бискескавра + - Бисрахреша + - Бисрепипит + - Битави + - Битехатити + - Бивакри + - Бивапе + - Бивихачакре + - Бивитикива + - Биврапри + - Бивраске + - Биврехаски + - Биврихра + - Биксахетра + - Биксапетра + - Биксаприк + - Биксексир + - Биякир + - Чабаха + - Чабакрер + - Чабебаче + - Чабепебе + - Чабикрахи + - Чачахе + - Чачевра + - Чакрера + - Чахекре + - Чахиксе + - Чахраврер + - Чахрикшехра + - Чакакива + - Чакапрапрар + - Чакехаше + - Чакиприхи + - Чакивре + - Чакриви + - Чапачичит + - Чапарачи + - Чапехреша + - Чапешиски + - Чапиксахи + - Чапрахебиби + - Чапрекраха + - Чапрекреви + - Чарапрехики + - Чараприска + - Чарара + - Чарате + - Чаратраки + - Шарекрески + - Чаресрибе + - Шарише + - Чариша + - Чашабер + - Чашереска + - Часкике + - Часраскаска + - Часречата + - Часреврави + - Часрихипрер + - Чатрексиксе + - Чавикреши + - Чаврикре + - Чаксакрахехе + - Чаксескере + - Чаксеврахи + - Чаксивр + - Чебабебет + - Чебави + - Чебибивар + - Чебегекри + - Чебехрит + - Чебихит + - Чебирете + - Чебисра + - Чечаправер + - Чекракса + - Чекрера + - Шекретаср + - Чекретрисре + - Чекрисре + - Чехашабаба + - Чехебикри + - Чехепре + - Чехискер + - Чехраксашир + - Чекрахрака + - Чекравикса + - Чекретит + - Чепакакат + - Чепекак + - Чепипракра + - Чепитипе + - Чепраскаври + - Чеширикра + - Чешиве + - Ческапра + - Ческавре + - Чесракая + - Чезравр + - Чесриве + - Чевратра + - Чезритити + - Четаксапа + - Четаксапре + - Четерарат + - Четиска + - Читритрети + - Четрия + - Чевасрак + - Шеврепр + - Шевривир + - Чексарахир + - Чексекраски + - Чексепрапрар + - Чексексаксапа + - Чексисрека + - Чекситре + - Шайавере + - Чибакре + - Чибихра + - Чичабикака + - Чичавре + - Чикрикиши + - Чикрираке + - Чикрививит + - Чихахрек + - Чихасре + - Чихатрачи + - Чихайябик + - Чихече + - Чихехреба + - Чихрератри + - Чихривека + - Чикакре + - Чикаскитре + - Чикате + - Чикипрекри + - Чикраки + - Чикраскиска + - Чикрекра + - Чикрекре + - Чипабеске + - Чиперерер + - Чипикрак + - Чипрексет + - Чиприприсре + - Чипривреча + - Чишакепи + - Чишипепри + - Чизраши + - Чисретри + - Чисрихер + - Чисрива + - Чисриври + - Читисревре + - Читиксахра + - Хитречикра + - Читрасраври + - Чивечачата + - Чивепрет + - Чивеприкри + - Чивики + - Чивикия + - Чивишир + - Чивракак + - Чивракри + - Чиврашер + - Чиврепапар + - Чиксакра + - Чиксихебакра + - Крабекрабапа + - Крачикрисре + - Кракраври + - Кракратия + - Кракретипи + - Кракрих + - Кракрити + - Крахайяк + - Крахеки + - Крахраши + - Крахрехи + - Крарететек + - Кракапепер + - Кракаскеба + - Кракаврат + - Кракехри + - Кракирер + - Кракрашиски + - Кракрехра + - Кракрискипир + - Крапипака + - Крапирийайа + - Крапрати + - Крапрескер + - Краресраксе + - Краревекса + - Крашахрешри + - Крашехик + - Краскараске + - Краскатрапра + - Краскикрете + - Краскиви + - Крататрихи + - Кратикр + - Кратикрекрек + - Кратипрар + - Кратрехра + - Кравехри + - Краврикра + - Краврисрер + - Кравритири + - Краврияяк + - Крайаререт + - Крейакрер + - Краяпрапрар + - Краярипипи + - Крайайарикри + - Кребакса + - Креберита + - Кречавр + - Кречесрерар + - Кречичевре + - Крекрабик + - Крекрири + - Крехепапепе + - Крехерики + - Кехекси + - Крипава + - Креравер + - Крекатри + - Крекавекса + - Крекеки + - Крекетри + - Крекискея + - Крекитати + - Крекрепки + - Крекривавак + - Чепахрипа + - Крепеж + - Крепекрекрет + - Крепиба + - Крепихри + - Крепреправри + - Креракси + - Керехит + - Крешкрапа + - Крескекри + - Крескетита + - Крескихра + - Кресрипепет + - Кретареврипа + - Кретебе + - Критхра + - Кретерарар + - Кретибехихи + - Кретрапи + - Кретрекерара + - Кретрепепет + - Кревапир + - Кревиксесра + - Крексахава + - Крексепапакр + - Крибаврибиби + - Крибитрат + - Кричекрит + - Кричипи + - Крикрапре + - Крикрирар + - Крисре + - Критика + - Крихевар + - Крихатрикре + - Крикатрикре + - Крикебепапа + - Крикекат + - Крикешивра + - Крикишеский + - Крикрата + - Крикретеваби + - Крикрикретри + - Крипичахи + - Крипришапа + - Крирачи + - Крикратра + - Кришаве + - Крискахе + - Крисрехапахи + - Криташатри + - Критрабибиру + - Критрисрир + - Критрикри + - Кривакрити + - Кривакрив + - Криваясра + - Кривракре + - Криврекри + - Криксикаске + - Хабавак + - Хабепа + - Хабикикака + - Хабикрихита + - Хачабэ + - Хачехекре + - Хаческе + - Хакреха + - Хакрер + - Хахебапа + - Хахекреча + - Хаеха + - Хахетасрайк + - Хахихатрар + - Хахихасрече + - Хахрипраксакса + - Хакепа + - Хакирер + - Хакраксиксит + - Хакрекик + - Хакриксексерет + - Хапачарепри + - Хапакре + - Хапахри + - Хапети + - Хапитахри + - Гапреска + - Хаприхриша + - Харебаби + - Харексивеве + - Харикракре + - Хариришеска + - Хариши + - Хашакракрак + - Хашеракри + - Хашепраха + - Хаскаритепра + - Хаскетер + - Хаскибеят + - Хаскикретете + - Хасрабаке + - Хасракритехе + - Хасрекитра + - Хасрекрер + - Хасрихакса + - Хасрипешар + - Хатабивет + - Гававресра + - Хавиксе + - Гаврики + - Гаврепекр + - Хавретри + - Хавричата + - Хаксикекер + - Хаяхриякса + - Хебахреврир + - Гебапри + - Хебихит + - Хебикратахе + - Хечхешикси + - Хечетра + - Хечевакрер + - Хекраба + - Хекраби + - Гекреврик + - Хекриреча + - Хехере + - Хехискитри + - Храпик + - Хехрепри + - Хехрескаскат + - Хехрикра + - Хекикрекса + - Хекраср + - Хекрекичре + - Хекреракре + - Хекрихети + - Хепевивикрик + - Хепраскибебе + - Хеприврескер + - Хеприксашери + - Херекрериви + - Хереририкет + - Херихейакри + - Херипа + - Херипрека + - Хешахравети + - Хешепевик + - Хескашати + - Хескаксикс + - Хескеррепет + - Хескешишит + - Хескискер + - Гесрепахри + - Гесрески + - Хетахетри + - Хетихехеприт + - Хетраре + - Хетревихра + - Хетрихахри + - Хетриребиби + - Хевабабакер + - Хеветихре + - Хевексиксик + - Хевирикрек + - Хевревипа + - Хеврексир + - Хеврихар + - Хевраравит + - Хевривривр + - Хексасрикхи + - Хексаксипри + - Хейашипре + - Хибашер + - Хиберакрар + - Хибесраче + - Хикрапре + - Хикрекрахера + - Хикретеба + - Хикриба + - Хихача + - Хихепапак + - Хихихитр + - Хихирет + - Хихревра + - Хикикри + - Хикитритрир + - Хикракре + - Хикрепа + - Хипави + - Гипитратрак + - Хирепабе + - Хиричачар + - Хиричейа + - Хирикрабакри + - Хирикраске + - Хирикревитри + - Хирихрачи + - Хирихраски + - Хирихраксаксат + - Хирикати + - Хирикрететет + - Хирикрикра + - Хирипебахре + - Хирипехиксикси + - Хирипер + - Хирипесри + - Хирипета + - Хирипевивик + - Хирирахет + - Хирирекревре + - Хирисихра + - Хирискева + - Хиритапатити + - Хиритекер + - Хиритрари + - Хиритраксе + - Хиритрикри + - Хиривававри + - Хиривиске + - Хирививр + - Хиривра + - Хириврари + - Хириврексита + - Хиривриври + - Хириксашахре + - Хириксикрайа + - Хишаве + - Хишешритра + - Хишискахра + - Хишиврек + - Хискакекра + - Хискатетек + - Хискекрече + - Хискева + - Хискисраре + - Хисракикит + - Хисратрепепе + - Хитава + - Хитереха + - Хитратра + - Хивакрат + - Хиватрик + - Хиваяр + - Хиврабабар + - Хиврарир + - Хиксакр + - Хиксашапе + - Хиксашетити + - Хиксекрасра + - Хиксепи + - Хиксерипе + - Хиякра + - Грабатит + - Храбакса + - Храбике + - Храбипре + - Гракрабикси + - Хракрехра + - Храхепививи + - Храхерикрекси + - Храхикрер + - Храхракахре + - Храхраска + - Храхрасребе + - Храхрехек + - Храхритра + - Хракачабекси + - Хракаререк + - Хракеши + - Хракиски + - Хракретри + - Хракричапри + - Хракриши + - Храпавек + - Храпикра + - Храпрабер + - Храпрапрече + - Храрачи + - Храрахрар + - Храрекри + - Харикриксаби + - Храришер + - Храшепа + - Храшибисра + - Храшихир + - Храсхикавекса + - Храскетре + - Храскибе + - Храскикексакса + - Храсрекрикси + - Храсревракси + - Храврехра + - Хрататрасре + - Хратайати + - Хратере + - Хратрачари + - Хратреки + - Хравахиче + - Хравапеки + - Храваскеки + - Гравеска + - Хравихре + - Храврахейя + - Храврекра + - Храксехрехири + - Храксекребе + - Храксичебар + - Храксивививет + - Храйакха + - Храяврар + - Хребавихра + - Хребетра + - Хречаксер + - Хрекрети + - Хрекрихахар + - Хрехикрекрер + - Хрехресра + - Хрекетра + - Хрекративи + - Хрепихепре + - Хрепипаке + - Хрерасри + - Хреравексе + - Хререпрехир + - Хрериба + - Хрешахетити + - Хрешехакаке + - Хрескапахре + - Хресракакре + - Хресрекхике + - Хресрекаша + - Хретите + - Хретрекре + - Хретрески + - Хретреври + - Хреврехе + - Хрексакекек + - Хрексатика + - Хрексебе + - Хрибахар + - Хрибехрати + - Хрибипе + - Хричиски + - Хрихевриврир + - Хрихитра + - Хрихракихри + - Хрихречар + - Хрикичекра + - Хрикискате + - Хриприкра + - Хририкра + - Хриресри + - Хришабар + - Хришаксеяр + - Хришехрахи + - Хрисхексиксик + - Хришьякра + - Хрисхипете + - Хрискакрекра + - Хрискахеба + - Хрискари + - Гришкеветаби + - Хрискекса + - Хрискихете + - Хрискири + - Хрисрекхи + - Хрисрера + - Хрисрири + - Хрисришапа + - Хришривавар + - Хритачекри + - Хритекса + - Хритихри + - Хритихра + - Хритикер + - Хритизрат + - Хривакса + - Хриврипира + - Хриксебабатир + - Хриксеби + - Хриксихри + - Хриксива + - Хрияхрия + - Кабави + - Кабаксеша + - Качаске + - Качай + - Качихе + - Какрахеша + - Кахакити + - Кахаксипа + - Кахепапатрет + - Кахики + - Кахише + - Кахракрекрет + - Кахратрер + - Кахриче + - Кахрикра + - Какатахраре + - Какеби + - Какихрасри + - Капакриска + - Капракр + - Капрашер + - Капрехрака + - Капрери + - Каракахре + - Карапихе + - Кашайя + - Кашипри + - Каскачеке + - Каскиврер + - Касрабакр + - Касракапре + - Касраксар + - Касресрейайа + - Касриврата + - Катаскер + - Катехрейайа + - Катетрик + - Катексаксак + - Катрехре + - Кавабабат + - Кавашишит + - Кавихрат + - Кавитратрак + - Кавратеврия + - Каксекри + - Каксетавре + - Каксетретрет + - Каярарат + - Каяврик + - Кайакси + - Кебасревикри + - Кечатра + - Кечаврепри + - Кекресра + - Кекреврир + - Кекриха + - Кекрикра + - Кекрикса + - Кехаве + - Кехитихача + - Кехивехрихри + - Кехрачек + - Кехрехи + - Кекабибит + - Кекахи + - Кекахрекси + - Кекарар + - Кекасритри + - Кекебаписра + - Кекебибиврер + - Кекекахихи + - Кекрише + - Кепетре + - Кепевра + - Кепраки + - Кепрепара + - Керахачече + - Кератра + - Керихи + - Керискехисри + - Кешеваскива + - Кешика + - Кешити + - Кескарахита + - Кетескескет + - Кетескета + - Кетрибабар + - Кетрибипи + - Кеватра + - Кеватре + - Кевеки + - Кевешатра + - Кевешики + - Кевесракс + - Кевекса + - Кевикаксе + - Кевиври + - Кеврарери + - Кеврахрит + - Кексаприприк + - Кексерава + - Кексешакха + - Кексисрепе + - Кейарарак + - Кибевакрак + - Кибеячичи + - Кибипава + - Кичитра + - Кикричева + - Кикрикрик + - Кихаресра + - Кихия + - Кихрексексевек + - Кихриприра + - Кикеке + - Кикекситретре + - Кикрабикити + - Кикрехи + - Кикрекрат + - Кикрери + - Кикретрапа + - Кикревавака + - Кикривикар + - Кипиваксе + - Кипрея + - Кирече + - Киресрисрир + - Киреви + - Кирибапра + - Кирибаприв + - Киричакетра + - Киричишка + - Кирикракакри + - Кириерек + - Кирирепи + - Киригревиче + - Кирикачиха + - Кирикатрики + - Кириковри + - Кирикракра + - Кирипаби + - Кирипахритри + - Кириприхри + - Кирирахиксера + - Кирирети + - Кириври + - Киришававар + - Киришекет + - Киритеска + - Киритрача + - Киритрепер + - Киритрияпри + - Киривипе + - Киривривепи + - Кириксатичер + - Кириксепек + - Кириксикра + - Кишахапатре + - Кишехакака + - Кискашапра + - Кискехра + - Кискичре + - Кискипри + - Китрака + - Китревеври + - Киврахерат + - Киврахи + - Кивраше + - Киврера + - Кивретракеке + - Киксатрит + - Киксичетити + - Киксичрар + - Киксивра + - Крабарея + - Крабехерере + - Крачехре + - Крачеяба + - Кракрирарак + - Крахебикаба + - Крахечикри + - Крахиха + - Крахракри + - Крахаририк + - Крахрепекси + - Крахрепри + - Крарерар + - Кракахра + - Кракрекиски + - Кракрепапат + - Крапари + - Крапиби + - Крапитахри + - Крапреве + - Краприсрисре + - Краприврар + - Краракрикрит + - Крарекри + - Крарикри + - Крашатахи + - Крашавекра + - Краскисретра + - Красрави + - Красрипапат + - Кратачаври + - Кратаре + - Кратикепи + - Кравеке + - Кравраксевеве + - Краврепачи + - Краврикра + - Краксаби + - Краксасрир + - Краякрит + - Кребекри + - Кребибикре + - Кребиви + - Крекхахе + - Кречепракса + - Крекхититик + - Крекрасхепра + - Крекравикха + - Крекрери + - Крехекихит + - Крехракакре + - Крехрита + - Крехрикса + - Крекакречи + - Крекебета + - Крекракри + - Крекрапри + - Крекришаски + - Крепевиске + - Крепитир + - Крепия + - Крепостная + - Крепреташа + - Креприврески + - Кререрисри + - Кререксескева + - Крескавиха + - Кресрепаксексе + - Кретахре + - Кретави + - Кретепапатир + - Кревавике + - Кревешер + - Кревесрисрит + - Креврексер + - Кревривриске + - Крексайа + - Крейакрепе + - Крейятрири + - Крейяви + - Крибеши + - Крибетиби + - Крибексиксик + - Крибирекри + - Крибивра + - Кричакехра + - Крикрава + - Крикрирепе + - Крикритака + - Крихаприр + - Крихесре + - Крихексарава + - Крихрескер + - Крикапепек + - Крикатиксер + - Крикесриксикси + - Крикрашар + - Крикрикесре + - Крипахри + - Крипритри + - Криприприт + - Кририве + - Кришебириба + - Кришебите + - Кришекрапи + - Крискексер + - Крисрибарири + - Крисришер + - Критахе + - Критарек + - Критечихи + - Критиха + - Критикса + - Критресра + - Критривревра + - Криваксисипак + - Криврипри + - Криксехраски + - Криксесрепри + - Криксирар + - Пабаскаре + - Пабекрекхи + - Пабиксашаха + - Пачатак + - Пашетра + - Пачикри + - Пакхисра + - Пакракхисри + - Пакрахеха + - Пахрекрахати + - Пахриксеке + - Пакаририхрек + - Пакашекса + - Пакаскеша + - Пакавреваха + - Пакичача + - Пакиши + - Пакиврапа + - Пакракрасра + - Пакрашрер + - Пакрава + - Пакресра + - Пакрексетихе + - Пакрика + - Папаскакса + - Папавиврик + - Папешехер + - Папивахре + - Папратракики + - Пареракре + - Пашаскак + - Пашеврат + - Паскасретити + - Паскиске + - Паскиксексек + - Пасрабикра + - Пасраприкепа + - Пасрехе + - Пасрепратри + - Патапривра + - Патесратеке + - Патексет + - Патресхе + - Паваба + - Паврапиши + - Паксаречак + - Паксекри + - Пакситиреки + - Пайахреши + - Пебакрикрик + - Пебате + - Пебескахепре + - Пебеврави + - Пебибек + - Печака + - Печекрипи + - Печетрайа + - Печикреке + - Печиврар + - Пекрача + - Пекритрасре + - Пехасра + - Пеха + - Пехисресрер + - Пхеракреша + - Пехрихиврея + - Пехрива + - Пекекрикрик + - Пекрава + - Пекрая + - Пекрепитри + - Пепехри + - Пепексекака + - Пепирер + - Пеписка + - Пепитре + - Пепреба + - Пепреха + - Пепрерар + - Пепресри + - Пепресрикке + - Пепревахе + - Пераксатрикри + - Перебекрате + - Периби + - Перисрехри + - Пешипаха + - Пескаваксек + - Пескехик + - Пескикитир + - Песраски + - Песратра + - Песравре + - Песрайа + - Песретететат + - Песрикре + - Песритра + - Петеврит + - Петихри + - Петиврат + - Петрипетете + - Певекрисская + - Певера + - Певетиска + - Певтрепри + - Певикиси + - Певипрак + - Певитетекрак + - Певиксихре + - Певрачер + - Певракрат + - Певрехита + - Пексепрапрат + - Пексихибе + - Пибехра + - Пибекрит + - Пибетиски + - Пибибипа + - Пибикек + - Пичехи + - Пичета + - Пичикрев + - Пичикрар + - Пикреча + - Пихасресрет + - Пихеки + - Пихепа + - Пихибеска + - Пихичар + - Пихитетек + - Пихреби + - Пихрешапибе + - Пихретитир + - Пикаскара + - Пикаксер + - Пикрехрека + - Пикрипрепрер + - Пипаша + - Пипаксакрикри + - Пипесресри + - Пиприбепри + - Пиприсхикси + - Пираксипрар + - Пирекрехи + - Пиревеверик + - Пирибакса + - Пирибиприски + - Пиричивапи + - Пирикра + - Пирикракра + - Пирихепре + - Пирихичати + - Пирикретра + - Пирикритере + - Пирикривра + - Пирипаба + - Пирипакрипри + - Пирипихрише + - Пирипит + - Пирипитри + - Пирипрабепа + - Пириреприсхе + - Пиририке + - Пирискатеке + - Пирискики + - Пирисретива + - Пиритавр + - Пиритихре + - Пиритратаври + - Пиритрекрара + - Пиритрек + - Пиривакиксакса + - Пиривикрар + - Пириксакса + - Пириксаксевр + - Пириякриби + - Пирияпесра + - Пишакаксет + - Пишаштепи + - Пишавраска + - Пишевра + - Пискипре + - Писрашек + - Писрипре + - Писриксекете + - Питиби + - Питрапривр + - Питраскече + - Питратеби + - Питреврейайа + - Питрипривра + - Питриске + - Пивака + - Пивататакир + - Пивекриксерри + - Пивеяси + - Пивракеви + - Пивракипре + - Пивракитибе + - Пиврашир + - Пивриратер + - Пивритатабет + - Пиксерити + - Пиксикха + - Прабипрепи + - Прабикхиксакса + - Прабиксите + - Прачететер + - Прачиба + - Пракрахриве + - Прахихрака + - Прахисрек + - Прахитриви + - Прахребесра + - Прахрипебаба + - Прахривапапа + - Пракискескет + - Пракрихри + - Пракрипи + - Прапикресри + - Прапрексексек + - Прарачакси + - Прарекрахи + - Прарикра + - Прарипрака + - Прашикриби + - Прашивепапа + - Прасхикситата + - Пратакра + - Пратерахира + - Пратреки + - Правашипебе + - Правесрисрит + - Правиксихе + - Правраши + - Праврепи + - Праврикрир + - Правритрер + - Праксахир + - Праксекхаксере + - Праксекракрат + - Праксевитетра + - Праксексе + - Праксичи + - Праяраксир + - Пребавр + - Пречакавра + - Прехавр + - Прекратетет + - Прехерихра + - Прехививеве + - Прехракриска + - Прехриби + - Прекакра + - Прекая + - Прекипревер + - Прекирар + - Препахихибар + - Препетрат + - Препиксихрапа + - Препрете + - Прерететре + - Пререксике + - Прешер + - Пресрави + - Пресрере + - Пресрискипре + - Претере + - Прететисрир + - Претексипрар + - Претихре + - Претракре + - Претрике + - Претрисра + - Превакре + - Превекрере + - Превесрити + - Превети + - Превикрахи + - Превикри + - Превритраре + - Превриви + - Прексатрар + - Прексесхе + - Прексикрак + - Прейатра + - Прибатретрек + - Прибавибаче + - Прибиривава + - Прибиврит + - Причейайат + - Прикрапапат + - Прикрихи + - Прихаври + - Прихтия + - Прихречаби + - Прикебикси + - Прикрича + - Прикрипи + - Прикрипикики + - Прикриши + - Припахия + - Припаврепри + - Припиксиксик + - Припраске + - Припреха + - Приприпепек + - Приракре + - Прирашер + - Прираске + - Прирепар + - Пририхи + - Пришехе + - Присхепаксикси + - Пришитарабе + - Прискаке + - Присракси + - Притабаски + - Притакир + - Притекра + - Притехавиви + - Притепа + - Притихахи + - Приваяк + - Привипекре + - Приврихарейа + - Приксараке + - Приксепа + - Приксетре + - Приксиврекри + - Прияпрар + - Рабехия + - Рабепарере + - Раберешебе + - Рабише + - Ракхаре + - Ракраба + - Ракракека + - Ракракрехери + - Рахавевахи + - Рахеврипеши + - Рахибебетат + - Рахиратата + - Рахипе + - Рахраба + - Рахрекри + - Рахреяври + - Рахритретрек + - Ракекикитрир + - Ракикрекрек + - Ракипихрат + - Ракреприкри + - Рапивриврере + - Рарахака + - Раретрийа + - Рашешат + - Рашшеври + - Рашихретра + - Расхикрехре + - Расрибер + - Ратабибихет + - Ратесрапрар + - Ратитрик + - Ратрави + - Ратреби + - Ратрейяк + - Ратрихрикри + - Равечер + - Равепекси + - Равихрака + - Равиксексебет + - Равришеке + - Равриврикри + - Раксагет + - Раксетапа + - Раксет + - Раксевахре + - Райачета + - Ребакре + - Ребебикики + - Ребикрак + - Ребипи + - Ребисрийайа + - Ребитебит + - Речепер + - Рекраскехе + - Рекрекарири + - Рехепипибет + - Рехресхесхет + - Рехрикрик + - Рехрире + - Рекаскак + - Рекракха + - Рекрипрепрек + - Репече + - Повторить + - Репексисхе + - Репивешери + - Репиврасра + - Реприхри + - Репришик + - Рерахат + - Ререба + - Рериревра + - Рескебексексе + - Рескехат + - Рескивавак + - Рескиксибира + - Ресрекракрат + - Ресретра + - Ресрихрепеке + - Ресриске + - Ресриксиха + - Ретаскахри + - Ретававатет + - Ретавек + - Ретекха + - Ретеврак + - Ретрете + - Ретрексехри + - Ретрипритри + - Ревасри + - Реветитипрет + - Ревикребия + - Реврипра + - Ревритрер + - Рексабаска + - Рексатакса + - Рибатр + - Рибебахихи + - Рибехаши + - Рибихева + - Рикрехаска + - Рихава + - Рихаксикре + - Рихекрекрек + - Ригипапар + - Рихрачепи + - Рихраватир + - Рикевра + - Рикипа + - Рикискапипи + - Рикивревра + - Рикрати + - Рикрепа + - Рикрераврибе + - Рипибиврир + - Рипихрепапа + - Рипрешикре + - Риреви + - Ририбебе + - Ририбеска + - Риричеше + - Ририкрехра + - Ририкрити + - Ририхари + - Ририхепрески + - Ририхит + - Ририхиксир + - Ририкаврире + - Ририкеве + - Ририкрекаска + - Ририкрексети + - Ририпаша + - Ририпрапи + - Ририрарера + - Ририхача + - Риришихи + - Ририскатре + - Ририскихе + - Ририскири + - Ририсравра + - Риритихит + - Риритискаба + - Рирититахи + - Риритреби + - Риритрексексек + - Риривихрар + - Ририврешия + - Риривретра + - Ририяскихе + - Ришакрикер + - Ришаскар + - Ришепи + - Рискаврер + - Рискекар + - Рискеприба + - Рискесре + - Рискирасре + - Рискискеха + - Рисратретете + - Рисратрихи + - Рисревре + - Рисритракре + - Рисривире + - Ритаха + - Ритахрекра + - Ритекракапре + - Ритева + - Ритресракри + - Ритрихе + - Ритрирекра + - Ритришикси + - Ривретрипапа + - Ривривриши + - Риксахритри + - Риксатерет + - Риксекре + - Риксепапат + - Риксети + - Риксибихри + - Риксискипри + - Риксиксаврат + - Рияхрат + - Рияпаре + - Риясри + - Шабириври + - Шачикир + - Шакревак + - Шакревраке + - Шахапрахри + - Шахаксак + - Шахекет + - Шахескате + - Шахексер + - Шахрашер + - Шахрати + - Шахрипракри + - Шакрирабе + - Шакричар + - шапесрикака + - Шапиби + - Шапретра + - Шарапире + - Шаресрат + - Шарихесрехи + - Шарихре + - Шарипива + - Шаритрихри + - Шашишибе + - Шашисрави + - Шаскехепре + - Шаскепахре + - Шаскитра + - Шатретакси + - Шаваприка + - Шавашакри + - шавексексати + - Шавиша + - Шавривр + - Шаксепачи + - Шайакрак + - Шебеврирер + - Шебипескикса + - Шебива + - Шечиабаба + - Схекраприкре + - Шехибе + - Шехраяшар + - Шехребит + - Шехреха + - Шехреске + - Шехреяр + - Шерискар + - Шекаке + - Шекаксри + - Шекаписки + - Шекеска + - Шекикакат + - Шекрира + - Шепечич + - Шепешра + - Шепескик + - Шепетрати + - Шепеврер + - Шепикитепа + - Шепрекритри + - Шепрескете + - Шерати + - Шерикре + - Шерискахе + - Шешасри + - Шешихеша + - Шесрабик + - Шесрачиски + - Шешрихит + - Шетачавре + - Шетасре + - Шетикитата + - Шетракрар + - Шетриха + - Шеваби + - Шевекрепи + - Шеврахе + - Шевреври + - Шеврия + - Шексачи + - Схексахрехрет + - Схексекра + - Шексишит + - Шексивир + - Шейаша + - Шибатра + - Шибекрека + - Шибекрекрет + - шибиврибе + - Шичебебет + - Шичеча + - Шишеририт + - Шичикракре + - Шикрачи + - Шихебихре + - шихекрикрик + - Шихишар + - Шихиска + - Шихрапикра + - Шихрехепри + - Шихребе + - Шихревихр + - Шикечачат + - Шикешекра + - Шикикиври + - Шикракси + - шикрехре + - Шикрепрер + - Шипехабаске + - Шипикреки + - Шипипапаксак + - Шипратат + - Шиприки + - Шипритраха + - Ширибепит + - Шисришери + - Шитехи + - шитексихре + - Шитибик + - Шитраврекра + - Шивабабат + - Шивексехра + - Шивив + - Шиврахеки + - Шивраяк + - Шивребапра + - Шиврепа + - Шиксая + - Сикибавипа + - Сикибисриче + - Сикикхапе + - Сикичапи + - Сикичекаша + - Сикичияски + - Сикикракре + - Сикикрекса + - Сикикрикси + - Сикикетрайя + - Сикикрасре + - Сикикреке + - Сикипекрипре + - Сикипетр + - Сикипрасраке + - Сикиприра + - Сикирехивре + - Сикирепрери + - Сикискакра + - Сикискевавака + - Сикискит + - Сикисрабер + - Сикисрекакат + - Сикишреша + - Сикитаски + - Сикитевр + - Сикитикре + - Сикитрашат + - Сикитрихрепи + - Сикитрипре + - Сикивата + - Сикивескар + - Сикивра + - Сикиврисрита + - Сикивритири + - Сикиксикребар + - Сирибакраче + - Сирибетраска + - Сирибикра + - Сиричарабе + - Сирихаксер + - Сирихикрипа + - Сирихихат + - Сирихихапа + - Сирикаски + - Сирикатат + - Сирипепахе + - Сирипрахра + - Сирипрехави + - Сирипретеске + - Сирираки + - Сирираски + - Сирирекеба + - Сириретер + - Сиришатаче + - Сиришехевр + - Сирискесраве + - Сирискихипе + - Сирисрекиви + - Сирисретр + - Сиритеч + - Сиритрахе + - Сиритриксет + - Сириврекехри + - Сиривретатре + - Скабаресре + - Скабехрикра + - Скабипр + - Скакхабета + - Скачиби + - Скачихив + - Скачиша + - Скакраксаксак + - Скакрехрапре + - Скакрикхисре + - Скакриксиче + - Скахипевры + - Скахиксахехе + - Скахрача + - Скахравриве + - Скахреве + - Скагриврепра + - Скакаша + - Скакава + - Скакавевет + - Скакескаскат + - Скакеврак + - Скапапе + - Скапаприт + - Скаребихира + - Скаречак + - Скарепиши + - Скарексапрети + - Скашир + - Скатерарар + - Скатетасре + - Скатричебе + - Скаварерахри + - Скавикрекрер + - Скавитетекси + - Скаврекрети + - Скавритр + - Скаксисракре + - Скайабер + - Скайатепра + - Скебапрара + - Скечикреба + - Скекрачекер + - Скекраприр + - Скекрита + - Скехевреш + - Скехичитра + - Скехип + - Скекапра + - Скекекритра + - Скекетир + - Скекрабабе + - Скекраксер + - Скекретаке + - Скепаре + - Скепитетексик + - Скерипехит + - Скери + - Скериприбихе + - Скериска + - Скешиките + - Скескахе + - Скескибиши + - Скесрисрер + - Скетаха + - Скитавры + - Скеташакра + - Скетатретрек + - Скетаври + - Скитепечи + - Скетивапапа + - Скетивре + - Скетраривава + - Скетрекрепе + - Скеваскискик + - Скевакси + - Скеврабари + - Скеврахрепа + - Скеврекра + - Скеврехраки + - Скеврихрейв + - Скексипи + - Скексиксеска + - Скибаккрит + - Скибапраксе + - Скибеврат + - Скибираври + - Скибита + - Скичаби + - Скичапипит + - Скичебир + - Скикхиске + - Скикрераскар + - Скикрихихе + - Скихекар + - Скихейаскир + - Скихричер + - Скикескескет + - Скикрахр + - Скикрапрара + - Скикриша + - Скипашир + - Скипечиши + - Скипрапра + - Скипрарипи + - Скипрев + - Скипревивик + - Скирипипик + - Скишачи + - Скишапехе + - Скискеваски + - Скискевририр + - Скисрекекра + - Скитраки + - Скитрепи + - Скитреске + - Скивекри + - Скивибик + - Скивиска + - Скиврихри + - Скивривреки + - Скиксара + - Скиксаретер + - Скиксетихечи + - Скиксиха + - Скиксисрапре + - Срабавречи + - Срабисревеке + - Срачавича + - Сракраре + - Срахахихир + - Срахихрипра + - Срахрияр + - Сракипахехе + - Сракиререт + - Сракракриши + - Срапахре + - Срапикретра + - Сраприбекехи + - Срарекепар + - Срарибески + - Шрарипрер + - Шрариша + - Шрашача + - Шрашакри + - Срашаксата + - Шрашикирир + - Сраскабикри + - Сраскечипе + - Сраскехрери + - Сраскекепива + - Сраскекисра + - Сраскиба + - Сраскишар + - Срасривате + - Сратепре + - Сратеве + - Сратикре + - Сратихи + - Сратики + - Сратраксиксир + - Сратрике + - Сравечачар + - Сраврапапат + - Сраксапе + - Сраксепир + - Сраксескикри + - Сребаскаскар + - Сребекрир + - Сребекраби + - Сребикрир + - Сречепе + - Срекравра + - Срекравре + - Срекрисре + - Срехетахи + - Срехикрар + - Срехиваври + - Срехрехиске + - Срекакрексеве + - Срекрепрексе + - Срекрикра + - Срекритит + - Срепесрекси + - Срепипритри + - Среписрасре + - Срепрекра + - Срепресхе + - Среракрикрар + - Среревре + - Срерихра + - Грешебакики + - Срешескикси + - Срешипрари + - Срескичи + - Срескикре + - Сресрахапи + - Сресрекикит + - Сресрикре + - Сретасресри + - Сретишашак + - Сретратикрир + - Сревесра + - Сревесриксари + - Сревивре + - Сревраксипи + - Сревреяк + - Срексатрева + - Срексикрата + - Срексискахехе + - Срибавар + - Срибебе + - Срибиреке + - Сричепи + - Сричивекака + - Срикревепа + - Шрихешекси + - Шрихраеврир + - Шрихракратри + - Шрихрекекси + - Шрикасреша + - Срикирики + - Срикратра + - Срипаба + - Шрипахебеври + - Шрипахре + - Сриприкача + - Шриракрит + - Шририхре + - Шрипре + - Срисхейаксексе + - Шришибикри + - Срисхикатре + - Срискикрикси + - Срискихра + - Шрискиша + - Срисратреба + - Срисребепи + - Срисрете + - Сритаскер + - Сритекрикрир + - Сритескабе + - Сритипребе + - Сритиске + - Сритрапаше + - Сритриха + - Сритрипир + - Шриваке + - Шривакса + - Сривекатер + - Шривишра + - Шриврасрер + - Сриврат + - Сривририр + - Сриксакрабебе + - Шриксивея + - Шрияпир + - Таабавриврир + - Таабекситаски + - Таабипрет + - Таахабе + - Таакрар + - Таакрекра + - Таакрипи + - Таакрисретри + - Таахахре + - Таахекрета + - Таахерарак + - Таахиха + - Таахиска + - Таахиври + - Таахреке + - Таахришепри + - Таакаева + - Таакапа + - Таакексискер + - Таакраба + - Таапавекик + - Таапекра + - Таапикаси + - Таапипихаре + - Таапиши + - Таапрачикри + - Тааприврапре + - Таарекра + - Таарешекра + - Таашаксикир + - Таашебити + - Тааскатир + - Тааскевева + - Тааскитеки + - Таасребикр + - Таасрехрира + - Таасрикикит + - Таасритар + - Таатаксе + - Таатевасре + - Таатихра + - Таатрат + - Таатрививит + - Таавапе + - Таававрекси + - Тааврерапава + - Таавретри + - Таавриви + - Тааксекакат + - Тааксесрит + - Тааксикра + - Тааяраше + - Теебапресри + - Тибечия + - Тибивричи + - Тичакраха + - Течексе + - Тичихакри + - Теекрекрихре + - Текрепески + - Теекретри + - Теекревретре + - Тихапрапрар + - Тихери + - Тиграхар + - Теехрепескир + - Теехрирепипи + - Теекахикрави + - Теекепраксахе + - Текипра + - Теепракриври + - Тееприкексикси + - Терахехер + - Теерекритри + - Тиривияра + - Теескапесри + - Тискебекрар + - Теесрасракса + - Тизреча + - Теесретрир + - Теесрибиба + - Теетахра + - Теетикси + - Теетрасрер + - Тетрескапри + - Теевахихивик + - Тееваприпрар + - Тивепа + - Теевравреске + - Теексакетити + - Теексера + - Теексихрир + - Тиякра + - Тибаскак + - Тибасравава + - Тибихи + - Тибиксита + - Тическивре + - Тичетритрир + - Тичибер + - Тикратевипе + - Тихикхискети + - Тихитр + - Тихресревиви + - Тихрикакар + - Тикара + - Тикекрибе + - Тикекитата + - Тикрасра + - Тикреврихр + - Типапе + - Типекрихрипа + - Типетрипе + - Типикре + - Типреритаха + - Типресрита + - Типрититик + - Тирепер + - Тирибавр + - Тириберихе + - Тирибикехе + - Тирибиракеке + - Тиричера + - Тирихайя + - Тирихи + - Тирихра + - Тирихретрир + - Тирихририк + - Тирикетече + - Тирикевиха + - Тирикихрер + - Тирикрачир + - Тирикрасри + - Тирипечапре + - Тирипратра + - Тирипрексер + - Тирирахи + - Тирирапахре + - Тирирарат + - Тирирексипрер + - Тирисрехит + - Тирисриб + - Тиритетасра + - Тиритрекси + - Тиритривевер + - Тиривеши + - Тиривихати + - Тиривребире + - Тириксахири + - Тириксебайяр + - Тириксетатак + - Тириксишиски + - Тирияскача + - Тишетракака + - Тискашеское + - Тискевритре + - Тискикрар + - Тисрапрет + - Тисрашет + - Тисрешишит + - Тисреска + - Тисрич + - Тисрискир + - Тисривекса + - Титескесек + - Титрабетити + - Титретепека + - Тиварахи + - Тивекра + - Тивекри + - Тивепа + - Тивевипе + - Тивекса + - Тивискаскак + - Тиксапипри + - Тиксетритрик + - Тиксикекра + - Тиксититик + - Тиксиксесрер + - Тияпрак + - Тияскаскат + - Трабари + - Трабисрер + - Тракрекрехри + - Трекрейк + - Трахехетир + - Трахекее + - Трахевреске + - Трахрепа + - Трахреврава + - Тракехре + - Тракрапра + - Тракритеврер + - Трапавриврир + - Трарескире + - Трасхете + - Трасхеве + - Трашевепри + - Трасхипаксе + - Травески + - Трасреве + - Тратибекака + - Тратихрер + - Тратрави + - Тратраксиксик + - Тратриби + - Траваксески + - Траветретрек + - Траврарипепе + - Траврибесре + - Траксипи + - Траксипрер + - Требахе + - Требиревер + - Требишивава + - Требитрак + - Тречакра + - Тречекрасри + - Трехсре + - Тречесрекре + - Трекрехек + - Трехиксапри + - Трехракрепость + - Трехрипра + - Трекатри + - Трекатрикре + - Трекавикси + - Трекаврики + - Трекебети + - Трекески + - Трекетибита + - Трекетра + - Трекибабат + - Трепаке + - Трепрабивеве + - Трепрахрепи + - Трепебра + - Трепрехет + - Теревипек + - Трешепра + - Трешибар + - Трешипешка + - Трескари + - Трескетара + - Трескискакир + - Тресракрир + - Тресраскер + - Тресратракре + - Тресравритре + - Тресреба + - Тресрихиври + - Третапра + - Третрахри + - Третреске + - Третрикикха + - Тревабихра + - Тревепа + - Треветретрек + - Тревикра + - Трексатри + - Трексавра + - Трексетри + - Трексирикрара + - Трейакра + - Трейаксихехе + - Трибексексет + - Трибирекри + - Трикхакрипре + - Трихиски + - Трикракри + - Трикрекапа + - Трикотаж + - Трихавевер + - Трихера + - Тригексисра + - Трихикрек + - Трихитрар + - Трипесрише + - Трипевер + - Трипракракси + - Трипракри + - Трирахекри + - Трипраксар + - Трирече + - Тришакретра + - Тришекрексир + - Тришепи + - Тришисрар + - Трискаври + - Трискетир + - Триският + - Трисрахири + - Трисревр + - Трисрисри + - Трисриприпер + - Трисрит + - Тритетре + - Тритракепре + - Тритрихатри + - Тритрискари + - Триврискеки + - Тривритипипи + - Триврияк + - Триксихахар + - Трикситри + - Трияшекики + - Вабахекре + - Вабахрабебе + - Вабебир + - Вабехетр + - Вабетрахача + - Вабиври + - Вачахрирере + - Вачаври + - Вачекигри + - Вакхикратата + - Вачиске + - Вацраки + - Вацребихи + - Вакрипра + - Вахапапашек + - Вахапракс + - Вахаскер + - Вахерекики + - Вахибепрек + - Вахивихахе + - Вакахава + - Вакеча + - Вакевиксикси + - Вакикеприпра + - Вапейяк + - Вапикевра + - Вапиприб + - Вапракак + - Ваприсра + - Ваприташа + - Варебитакр + - Варекрикреки + - Вашакрик + - Васкекситити + - Васкипрекси + - Васкиври + - Васкияхи + - Васраприкре + - Васреви + - Ватракраксикси + - Ватреви + - Ватрива + - Вавехисрек + - Вавришрашри + - Ваксеки + - Ваксераскеске + - Вебексат + - Вебихета + - Вечкрик + - Векраксикра + - Векриче + - Векритрика + - Вехеврер + - Вехратрир + - Вехраксексек + - Вехритрекс + - Векарасра + - Векаксививи + - Вехрибаба + - Векиреви + - Векракри + - Векрека + - Векрекрикрит + - Векрерикра + - Векришар + - Векришича + - Вепекрэ + - Вепрахат + - Вепречахри + - Вепрекрар + - Вепрек + - Вепреритаре + - Веретишит + - Верихарихра + - Верикисресре + - Вешакрик + - Вешебиксекс + - Весхекрихапи + - Вешехе + - Вешепрек + - Вешишакра + - Вескапи + - Вескепайя + - Вескепевра + - Весрихиска + - Ветепети + - Ветракрипи + - Ветрешат + - Ветрискира + - Веватре + - Вевевре + - Вевивеша + - Веврешир + - Веврикрек + - Веврисрата + - Вексачебаши + - Вексавевер + - Вексикар + - Вексисрекри + - Вибепраксаба + - Вибета + - Вичехири + - Викхитрибихе + - Викрахрек + - Викревр + - Викрикре + - Викрипасре + - Викритебаба + - Викривики + - Вихече + - Вихерачеки + - Вихепра + - Вихратекра + - Вихрексахихи + - Вихрибихиска + - Вихрикра + - Вихрихер + - Вихрипрар + - Вихрисрехер + - Викахрекри + - Викакерери + - Викавебари + - Викекиски + - Викихаре + - Викитрекса + - Викребибит + - Викрихи + - Викритахахе + - Випескикса + - Випракрар + - Випреврар + - Вирабеврек + - Виратрера + - Вирепри + - Вириприксиче + - Вириревраре + - Виритрик + - Вишкески + - Висрекрет + - Висрискир + - Витексет + - Витибихрик + - Витика + - Витракреви + - Витрашек + - Витравикета + - Витраврире + - Витрескаскак + - Витрисраша + - Витривечере + - Вивашате + - Вивекриксексе + - Вивепрехехе + - Вивепрепе + - Вивиксихир + - Виврашайя + - Викситикрикси + - Врабапракака + - Врабикапе + - Врачаритри + - Врачишачи + - Врачитасре + - Вракребихехе + - Врагеска + - Врахрехрипре + - Вракасрахи + - Вракаясракси + - Вракебибит + - Вракрипери + - Вракритат + - Врапахеке + - Врапресрики + - Врапрексаве + - Врарекик + - Врарихритете + - Врарипечи + - Врасхекса + - Враскекаки + - Враскевексар + - Врасрехахар + - Врашахи + - Вратавивит + - Вратевретра + - Вратракере + - Вратрескеви + - Вратрите + - Вратривар + - Вравабепра + - Вравакрахри + - Врававра + - Вравексе + - Вравивейа + - Вравраче + - Враксихит + - Враяври + - Вребехрихрик + - Вребисра + - Врекрараке + - Врекрихри + - Врехаби + - Врехакр + - Врехакатар + - Врехаскер + - Врехекрери + - Врехибехе + - Врехибипик + - Врехипе + - Врехипрак + - Врехривиче + - Врекахричи + - Врекихрер + - Врекипепет + - Врекрикса + - Врепате + - Врепексер + - Врепрехапре + - Врепририт + - Врерикра + - Врерикрискир + - Врешабар + - Врешишар + - Вресхике + - Врескатре + - Вресресрес + - Вресретатра + - Вретесрави + - Вретиксир + - Вретрапапар + - Вретрехиви + - Вретрикре + - Вревахрир + - Вревасхиксексе + - Вреврекрер + - Врексакрат + - Врексакер + - Врибетретрет + - Врибипита + - Врибипревите + - Врикрахакра + - Вричрихи + - Врикрискече + - Вриехара + - Врихески + - Врихракре + - Врихрекрепи + - Врикаяба + - Врикиврескер + - Врикраке + - Врикребакр + - Врикрасри + - Врипере + - Врипексаври + - Врипитикеске + - Врипривра + - Врирачесри + - Вриша + - Врискетаске + - Врискираксе + - Врискире + - Вришракри + - Врисрекари + - Врисревики + - Вритасре + - Вритерепи + - Вритерекса + - Вритика + - Вритиске + - Вритивраки + - Вритрихрар + - Вритрисре + - Вривахи + - Вривахишайя + - Вривехатри + - Вривитри + - Вриксашашар + - Вриксаврибапе + - Вриксеприр + - Вриксипрехре + - Врикситревеки + - Вриксивракс + - Ксабишетра + - Ксачиврит + - Ксакрипикар + - Ксакриприкси + - Ксакривир + - Ксахатаври + - Ксахескетиври + - Ксахрапаба + - Ксахрапрер + - Ксахребаве + - Ксахрипава + - Ксакахри + - Ксакайайакат + - Ксакреваратра + - Ксапакра + - Ксапикрикрик + - Ксапипевревре + - Ксапраскапика + - Ксапрате + - Ксаправри + - Ксаприпрапрар + - Ксаракриври + - Ксаратрипе + - Ксаребия + - Ксарева + - Ксарихепрат + - Ксашихапа + - Ксаскакаба + - Ксаскараратер + - Ксасрапипик + - Ксасрескихиби + - Ксатачасри + - Ксатерет + - Ксатириски + - Ксатрексиксик + - Ксавасрарихи + - Ксавеши + - Ксавикрари + - Ксаврахаври + - Ксаврикри + - Ксаврире + - Ксавриксекре + - Ксаксикаксексе + - Ксаксикреша + - Ксаксиска + - Ксайаскихри + - Ксебекхи + - Ксебетет + - Ксебитретрек + - Ксекхакрекрек + - Ксекхибаре + - Ксекриксакситре + - Ксехекикир + - Ксехетипе + - Ксехичатавра + - Ксехиприсхе + - Ксехитече + - Ксехревракре + - Ксехрисхе + - Ксекераривра + - Ксекикра + - Ксекрекри + - Ксекреври + - Ксекреврипа + - Ксепавикеба + - Ксепехати + - Ксептер + - Ксепетипет + - Ксепрасре + - Ксепрекивра + - Ксеприхехек + - Ксешакхикаха + - Ксескапакре + - Ксескехрабе + - Ксесрибар + - Ксетекир + - Ксетраскескет + - Ксетравивик + - Ксетрексахихи + - Ксетрибирер + - Ксетрипи + - Ксеветаске + - Ксевратикепа + - Ксеврия + - Ксексапра + - Ксексави + - Ксексибир + - Ксексиски + - Сеяпре + - Ксейарибе + - Ксейаскапибе + - Ксибекракрак + - Ксибеха + - Ксибеприбе + - Ксибитратрар + - Сихечевар + - Ксихрахехете + - Ксихрасхехихи + - Ксихрекреве + - Ксихресра + - Ксихривевер + - Ксикабебет + - Ксикахихи + - Ксикашаксе + - Ксикаске + - Ксикепехрахра + - Ксикикха + - Ксикрахрихрик + - Ксикракипи + - Ксикресхе + - Ксикреска + - Ксикрексива + - Ксикрихе + - Ксикрипар + - Ксипахихик + - Ксипита + - Ксипрахахатек + - Ксирекхиске + - Ксирешишит + - Ксирибакриви + - Ксирикхаре + - Ксиричебакра + - Ксирихитер + - Ксирикраки + - Ксирихакрир + - Ксирихиске + - Ксирихийатапе + - Ксирихрекакар + - Ксирихретекре + - Ксирихрити + - Ксирикесрирер + - Ксирикети + - Ксирипапе + - Ксиририхечер + - Ксиририке + - Ксиририпатибе + - Ксиришепивр + - Ксирисхекси + - Ксирискапа + - Ксирискета + - Ксирискикреха + - Ксирисревре + - Ксирисрикрева + - Ксиритракре + - Ксиритрепрер + - Ксиритретрар + - Ксириветрикра + - Ксиривексикри + - Ксиривр + - Ксириврехра + - Ксириксекрари + - Ксишахриси + - Ксишатре + - Ксисхехраксакса + - Ксисхикра + - Ксискатрека + - Ксискече + - Ксискехрар + - Ксискикратаке + - Ксискирир + - Ксисрекракрак + - Ксисрева + - Ксисритетет + - Кситакхабиби + - Кситакхиксакса + - Кситариритак + - Кситебехрер + - Кситрепрекри + - Ксивавраксексе + - Ксивески + - Ксививри + - Ксиврахраре + - Ксивракракрак + - Ксиврихихикра + - Ксиксаксекака + - Ксиксекра + - Ксиксиче From 5fa0844f3ca073f0641c54aa6093b328fee10307 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 20:00:34 -0700 Subject: [PATCH 39/97] Update UtensilSystem.cs to not use Component.Owner (#29971) Update UtensilSystem.cs Co-authored-by: plykiya --- .../Nutrition/EntitySystems/UtensilSystem.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs index 43087214a45..d40288183fc 100644 --- a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs @@ -31,24 +31,24 @@ public override void Initialize() /// /// Clicked with utensil /// - private void OnAfterInteract(EntityUid uid, UtensilComponent component, AfterInteractEvent ev) + private void OnAfterInteract(Entity entity, ref AfterInteractEvent ev) { if (ev.Handled || ev.Target == null || !ev.CanReach) return; - var result = TryUseUtensil(ev.User, ev.Target.Value, component); + var result = TryUseUtensil(ev.User, ev.Target.Value, entity); ev.Handled = result.Handled; } - public (bool Success, bool Handled) TryUseUtensil(EntityUid user, EntityUid target, UtensilComponent component) + public (bool Success, bool Handled) TryUseUtensil(EntityUid user, EntityUid target, Entity utensil) { if (!EntityManager.TryGetComponent(target, out FoodComponent? food)) return (false, true); //Prevents food usage with a wrong utensil - if ((food.Utensil & component.Types) == 0) + if ((food.Utensil & utensil.Comp.Types) == 0) { - _popupSystem.PopupEntity(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", component.Owner)), user, user); + _popupSystem.PopupEntity(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", utensil.Owner)), user, user); return (false, true); } From 8ed9ea1586563a3aed9ab4a4636ac03616e7eb7f Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 20:12:46 -0700 Subject: [PATCH 40/97] Update TriggerSystem.TimedCollide.cs to not use Component.Owner (#29970) Update TriggerSystem.TimedCollide.cs Co-authored-by: plykiya --- .../Explosion/EntitySystems/TriggerSystem.TimedCollide.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs index 29b81deb32c..ea10b7c69b3 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.TimedCollide.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Explosion.Components; using Content.Server.Explosion.EntitySystems; using Robust.Shared.Physics.Dynamics; @@ -42,14 +42,15 @@ private void OnComponentRemove(EntityUid uid, TriggerOnTimedCollideComponent com private void UpdateTimedCollide(float frameTime) { - foreach (var (activeTrigger, triggerOnTimedCollide) in EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var triggerOnTimedCollide)) { foreach (var (collidingEntity, collidingTimer) in triggerOnTimedCollide.Colliding) { triggerOnTimedCollide.Colliding[collidingEntity] += frameTime; if (collidingTimer > triggerOnTimedCollide.Threshold) { - RaiseLocalEvent(activeTrigger.Owner, new TriggerEvent(activeTrigger.Owner, collidingEntity), true); + RaiseLocalEvent(uid, new TriggerEvent(uid, collidingEntity), true); triggerOnTimedCollide.Colliding[collidingEntity] -= triggerOnTimedCollide.Threshold; } } From 162348e02d958abddcd06f452262e923e0fab1d7 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Fri, 12 Jul 2024 20:43:07 -0700 Subject: [PATCH 41/97] Change whitelist to pass when null (#29981) --- Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs index cfa082a9eeb..eb20c65a116 100644 --- a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs @@ -95,7 +95,8 @@ private bool TryGetLayers(EntityUid uid, var list = new List(); foreach (var mapLayerData in itemMapper.MapLayers.Values) { - var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPass(mapLayerData.Whitelist, ent)); + var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPassOrNull(mapLayerData.Whitelist, + ent)); if (count >= mapLayerData.MinCount && count <= mapLayerData.MaxCount) { list.Add(mapLayerData.Layer); From 55a50d04266916ac130d4c2b6729be51f3190af7 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 13 Jul 2024 06:03:16 +0200 Subject: [PATCH 42/97] Use reinforced glass damage modifier for secure windoors (#29941) * Use Rglass damage modifier for reinforced windoors * i actually can remove this line since inherited --- .../Structures/Doors/Windoors/base_structurewindoors.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 1ec6c04ffe7..d15294cc467 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -172,6 +172,8 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - type: Damageable + damageModifierSet: RGlass - type: Destructible thresholds: - trigger: @@ -257,7 +259,7 @@ - type: entity id: BaseSecurePlasmaWindoor - parent: BaseWindoor + parent: BaseSecureWindoor abstract: true components: - type: Sprite @@ -367,7 +369,7 @@ - type: entity id: BaseSecureUraniumWindoor - parent: BaseWindoor + parent: BaseSecureWindoor abstract: true components: - type: Sprite From 1b360ac914edffd22d31e4a87c55a45419148517 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 13 Jul 2024 04:04:22 +0000 Subject: [PATCH 43/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1dfa17c2b06..4e0604242e3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: Fixed the nukie station not getting properly initialized. - type: Fix - id: 6412 - time: '2024-04-21T06:52:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27201 - author: Blackern5000 changes: - message: '"Experienced" passengers can now wear a rainbow jumpsuit using loadouts.' @@ -3823,3 +3816,10 @@ id: 6911 time: '2024-07-12T15:00:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29953 +- author: lzk228 + changes: + - message: Secure windoors now use reinforced glass damage modifier. + type: Fix + id: 6912 + time: '2024-07-13T04:03:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29941 From b94b52396e52e7627d80495f019a89a51751c6a8 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:04:53 -0700 Subject: [PATCH 44/97] Add doc comments to target action components (#29982) --- Content.Shared/Actions/EntityTargetActionComponent.cs | 10 ++++++++++ Content.Shared/Actions/WorldTargetActionComponent.cs | 3 +++ 2 files changed, 13 insertions(+) diff --git a/Content.Shared/Actions/EntityTargetActionComponent.cs b/Content.Shared/Actions/EntityTargetActionComponent.cs index 9024f42e0e7..7217794b23b 100644 --- a/Content.Shared/Actions/EntityTargetActionComponent.cs +++ b/Content.Shared/Actions/EntityTargetActionComponent.cs @@ -4,6 +4,9 @@ namespace Content.Shared.Actions; +/// +/// Used on action entities to define an action that triggers when targeting an entity. +/// [RegisterComponent, NetworkedComponent] public sealed partial class EntityTargetActionComponent : BaseTargetActionComponent { @@ -16,8 +19,15 @@ public sealed partial class EntityTargetActionComponent : BaseTargetActionCompon [NonSerialized] public EntityTargetActionEvent? Event; + /// + /// Determines which entities are valid targets for this action. + /// + /// No whitelist check when null. [DataField("whitelist")] public EntityWhitelist? Whitelist; + /// + /// Whether this action considers the user as a valid target entity when using this action. + /// [DataField("canTargetSelf")] public bool CanTargetSelf = true; } diff --git a/Content.Shared/Actions/WorldTargetActionComponent.cs b/Content.Shared/Actions/WorldTargetActionComponent.cs index 4974b4478db..8066a640349 100644 --- a/Content.Shared/Actions/WorldTargetActionComponent.cs +++ b/Content.Shared/Actions/WorldTargetActionComponent.cs @@ -3,6 +3,9 @@ namespace Content.Shared.Actions; +/// +/// Used on action entities to define an action that triggers when targeting an entity coordinate. +/// [RegisterComponent, NetworkedComponent] public sealed partial class WorldTargetActionComponent : BaseTargetActionComponent { From 3acc100ae54d56c31aad15a879728c3b67e1e49c Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:05:31 -0700 Subject: [PATCH 45/97] Update ShuttleDockControl.xaml.cs to not use Component.Owner (#29966) Update ShuttleDockControl.xaml.cs Co-authored-by: plykiya --- Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs index 31f0eecad79..61ae0699266 100644 --- a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs @@ -107,7 +107,7 @@ protected override void Draw(DrawingHandleScreen handle) DrawCircles(handle); var gridNent = EntManager.GetNetEntity(GridEntity); var mapPos = _xformSystem.ToMapCoordinates(_coordinates.Value); - var ourGridMatrix = _xformSystem.GetWorldMatrix(gridXform.Owner); + var ourGridMatrix = _xformSystem.GetWorldMatrix(GridEntity.Value); var dockMatrix = Matrix3Helpers.CreateTransform(_coordinates.Value.Position, Angle.Zero); var worldFromDock = Matrix3x2.Multiply(dockMatrix, ourGridMatrix); From e11f1e6cf64bda214f17e95e3eb1c58f46d4675b Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sat, 13 Jul 2024 07:05:51 +0300 Subject: [PATCH 46/97] Update ActionAlertTooltip.cs to use TryFromMarkup (#29975) --- .../Actions/UI/ActionAlertTooltip.cs | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index ddc498b6e91..f805f6643d2 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -1,4 +1,4 @@ -using Content.Client.Stylesheets; +using Content.Client.Stylesheets; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -77,9 +77,12 @@ public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? MaxWidth = TooltipTextMaxWidth, StyleClasses = {StyleNano.StyleClassTooltipActionRequirements} }; - requiresLabel.SetMessage(FormattedMessage.FromMarkup("[color=#635c5c]" + - requires + - "[/color]")); + + if (!FormattedMessage.TryFromMarkup("[color=#635c5c]" + requires + "[/color]", out var markup)) + return; + + requiresLabel.SetMessage(markup); + vbox.AddChild(requiresLabel); } } @@ -97,8 +100,11 @@ protected override void FrameUpdate(FrameEventArgs args) if (timeLeft > TimeSpan.Zero) { var duration = Cooldown.Value.End - Cooldown.Value.Start; - _cooldownLabel.SetMessage(FormattedMessage.FromMarkup( - $"[color=#a10505]{(int) duration.TotalSeconds} sec cooldown ({(int) timeLeft.TotalSeconds + 1} sec remaining)[/color]")); + + if (!FormattedMessage.TryFromMarkup($"[color=#a10505]{(int) duration.TotalSeconds} sec cooldown ({(int) timeLeft.TotalSeconds + 1} sec remaining)[/color]", out var markup)) + return; + + _cooldownLabel.SetMessage(markup); _cooldownLabel.Visible = true; } else From de2ab29f349871797182d105918d3e9c013661e5 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:06:54 -0700 Subject: [PATCH 47/97] Update SmokingSystem.SmokingPipe.cs to not use Component.Owner (#29967) Update SmokingSystem.SmokingPipe.cs Co-authored-by: plykiya --- .../EntitySystems/SmokingSystem.SmokingPipe.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs index 3950c73eb43..26d86acd545 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.SmokingPipe.cs @@ -42,7 +42,7 @@ private void OnPipeInteractUsingEvent(Entity entity, ref I if (!isHotEvent.IsHot) return; - if (TryTransferReagents(entity.Comp, smokable)) + if (TryTransferReagents(entity, (entity.Owner, smokable))) SetSmokableState(entity, SmokableState.Lit, smokable); args.Handled = true; } @@ -62,7 +62,7 @@ public void OnPipeAfterInteract(Entity entity, ref AfterIn if (!isHotEvent.IsHot) return; - if (TryTransferReagents(entity.Comp, smokable)) + if (TryTransferReagents(entity, (entity.Owner, smokable))) SetSmokableState(entity, SmokableState.Lit, smokable); args.Handled = true; } @@ -74,15 +74,15 @@ private void OnPipeSolutionEmptyEvent(Entity entity, ref S } // Convert smokable item into reagents to be smoked - private bool TryTransferReagents(SmokingPipeComponent component, SmokableComponent smokable) + private bool TryTransferReagents(Entity entity, Entity smokable) { - if (component.BowlSlot.Item == null) + if (entity.Comp.BowlSlot.Item == null) return false; - EntityUid contents = component.BowlSlot.Item.Value; + EntityUid contents = entity.Comp.BowlSlot.Item.Value; if (!TryComp(contents, out var reagents) || - !_solutionContainerSystem.TryGetSolution(smokable.Owner, smokable.Solution, out var pipeSolution, out _)) + !_solutionContainerSystem.TryGetSolution(smokable.Owner, smokable.Comp.Solution, out var pipeSolution, out _)) return false; foreach (var (_, soln) in _solutionContainerSystem.EnumerateSolutions((contents, reagents))) @@ -93,7 +93,7 @@ private bool TryTransferReagents(SmokingPipeComponent component, SmokableCompone EntityManager.DeleteEntity(contents); - _itemSlotsSystem.SetLock(component.Owner, component.BowlSlot, true); //no inserting more until current runs out + _itemSlotsSystem.SetLock(entity.Owner, entity.Comp.BowlSlot, true); //no inserting more until current runs out return true; } From 3388c0dcaa4bc1d459ce01bc9b1c1296011018a4 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sat, 13 Jul 2024 00:14:30 -0400 Subject: [PATCH 48/97] Fix antag objectives always overshooting MaxDifficulty (and kill tries20) (#29830) * The death of try20 * Add integration test for traitor gamerule * Fix max difficulty being overshot * Check at least one objective is assigned * EntProtoId --- .../Tests/GameRules/TraitorRuleTest.cs | 133 ++++++++++++++++++ .../Antag/AntagRandomObjectivesSystem.cs | 3 +- Content.Server/Objectives/ObjectivesSystem.cs | 28 ++-- .../Systems/SharedObjectivesSystem.cs | 17 ++- .../Random/Helpers/SharedRandomExtensions.cs | 21 +++ 5 files changed, 184 insertions(+), 18 deletions(-) create mode 100644 Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs diff --git a/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs b/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs new file mode 100644 index 00000000000..31d33ba6174 --- /dev/null +++ b/Content.IntegrationTests/Tests/GameRules/TraitorRuleTest.cs @@ -0,0 +1,133 @@ +using System.Linq; +using Content.Server.Antag.Components; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.Roles; +using Content.Shared.GameTicking; +using Content.Shared.GameTicking.Components; +using Content.Shared.Mind; +using Content.Shared.NPC.Systems; +using Content.Shared.Objectives.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.GameRules; + +[TestFixture] +public sealed class TraitorRuleTest +{ + private const string TraitorGameRuleProtoId = "Traitor"; + private const string TraitorAntagRoleName = "Traitor"; + + [Test] + public async Task TestTraitorObjectives() + { + await using var pair = await PoolManager.GetServerClient(new PoolSettings() + { + Dirty = true, + DummyTicker = false, + Connected = true, + InLobby = true, + }); + var server = pair.Server; + var client = pair.Client; + var entMan = server.EntMan; + var protoMan = server.ProtoMan; + var compFact = server.ResolveDependency(); + var ticker = server.System(); + var mindSys = server.System(); + var roleSys = server.System(); + var factionSys = server.System(); + var traitorRuleSys = server.System(); + + // Look up the minimum player count and max total objective difficulty for the game rule + var minPlayers = 1; + var maxDifficulty = 0f; + await server.WaitAssertion(() => + { + Assert.That(protoMan.TryIndex(TraitorGameRuleProtoId, out var gameRuleEnt), + $"Failed to lookup traitor game rule entity prototype with ID \"{TraitorGameRuleProtoId}\"!"); + + Assert.That(gameRuleEnt.TryGetComponent(out var gameRule, compFact), + $"Game rule entity {TraitorGameRuleProtoId} does not have a GameRuleComponent!"); + + Assert.That(gameRuleEnt.TryGetComponent(out var randomObjectives, compFact), + $"Game rule entity {TraitorGameRuleProtoId} does not have an AntagRandomObjectivesComponent!"); + + minPlayers = gameRule.MinPlayers; + maxDifficulty = randomObjectives.MaxDifficulty; + }); + + // Initially in the lobby + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.PreRoundLobby)); + Assert.That(client.AttachedEntity, Is.Null); + Assert.That(ticker.PlayerGameStatuses[client.User!.Value], Is.EqualTo(PlayerGameStatus.NotReadyToPlay)); + + // Add enough dummy players for the game rule + var dummies = await pair.Server.AddDummySessions(minPlayers); + await pair.RunTicksSync(5); + + // Initially, the players have no attached entities + Assert.That(pair.Player?.AttachedEntity, Is.Null); + Assert.That(dummies.All(x => x.AttachedEntity == null)); + + // Opt-in the player for the traitor role + await pair.SetAntagPreference(TraitorAntagRoleName, true); + + // Add the game rule + var gameRuleEnt = ticker.AddGameRule(TraitorGameRuleProtoId); + Assert.That(entMan.TryGetComponent(gameRuleEnt, out var traitorRule)); + + // Ready up + ticker.ToggleReadyAll(true); + Assert.That(ticker.PlayerGameStatuses.Values.All(x => x == PlayerGameStatus.ReadyToPlay)); + + // Start the round + await server.WaitPost(() => + { + ticker.StartRound(); + // Force traitor mode to start (skip the delay) + ticker.StartGameRule(gameRuleEnt); + }); + await pair.RunTicksSync(10); + + // Game should have started + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.InRound)); + Assert.That(ticker.PlayerGameStatuses.Values.All(x => x == PlayerGameStatus.JoinedGame)); + Assert.That(client.EntMan.EntityExists(client.AttachedEntity)); + + // Check the player and dummies are spawned + var dummyEnts = dummies.Select(x => x.AttachedEntity ?? default).ToArray(); + var player = pair.Player!.AttachedEntity!.Value; + Assert.That(entMan.EntityExists(player)); + Assert.That(dummyEnts.All(entMan.EntityExists)); + + // Make sure the player is a traitor. + var mind = mindSys.GetMind(player)!.Value; + Assert.That(roleSys.MindIsAntagonist(mind)); + Assert.That(factionSys.IsMember(player, "Syndicate"), Is.True); + Assert.That(factionSys.IsMember(player, "NanoTrasen"), Is.False); + Assert.That(traitorRule.TotalTraitors, Is.EqualTo(1)); + Assert.That(traitorRule.TraitorMinds[0], Is.EqualTo(mind)); + + // Check total objective difficulty + Assert.That(entMan.TryGetComponent(mind, out var mindComp)); + var totalDifficulty = mindComp.Objectives.Sum(o => entMan.GetComponent(o).Difficulty); + Assert.That(totalDifficulty, Is.AtMost(maxDifficulty), + $"MaxDifficulty exceeded! Objectives: {string.Join(", ", mindComp.Objectives.Select(o => FormatObjective(o, entMan)))}"); + Assert.That(mindComp.Objectives, Is.Not.Empty, + $"No objectives assigned!"); + + + await pair.CleanReturnAsync(); + } + + private static string FormatObjective(Entity entity, IEntityManager entMan) + { + var meta = entMan.GetComponent(entity); + var objective = entMan.GetComponent(entity); + return $"{meta.EntityName} ({objective.Difficulty})"; + } +} diff --git a/Content.Server/Antag/AntagRandomObjectivesSystem.cs b/Content.Server/Antag/AntagRandomObjectivesSystem.cs index c935b8c0648..b60759a3d5c 100644 --- a/Content.Server/Antag/AntagRandomObjectivesSystem.cs +++ b/Content.Server/Antag/AntagRandomObjectivesSystem.cs @@ -39,7 +39,8 @@ private void OnAntagSelected(Entity ent, ref Aft for (var pick = 0; pick < set.MaxPicks && ent.Comp.MaxDifficulty > difficulty; pick++) { - if (_objectives.GetRandomObjective(mindId, mind, set.Groups) is not {} objective) + var remainingDifficulty = ent.Comp.MaxDifficulty - difficulty; + if (_objectives.GetRandomObjective(mindId, mind, set.Groups, remainingDifficulty) is not { } objective) continue; _mind.AddObjective(mindId, mind, objective); diff --git a/Content.Server/Objectives/ObjectivesSystem.cs b/Content.Server/Objectives/ObjectivesSystem.cs index 18077b413ad..c9cdf244e66 100644 --- a/Content.Server/Objectives/ObjectivesSystem.cs +++ b/Content.Server/Objectives/ObjectivesSystem.cs @@ -12,6 +12,7 @@ using System.Linq; using System.Text; using Robust.Server.Player; +using Robust.Shared.Utility; namespace Content.Server.Objectives; @@ -180,33 +181,32 @@ private void AddSummary(StringBuilder result, string agent, List<(EntityUid, str } } - public EntityUid? GetRandomObjective(EntityUid mindId, MindComponent mind, string objectiveGroupProto) + public EntityUid? GetRandomObjective(EntityUid mindId, MindComponent mind, ProtoId objectiveGroupProto, float maxDifficulty) { - if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groups)) + if (!_prototypeManager.TryIndex(objectiveGroupProto, out var groupsProto)) { Log.Error($"Tried to get a random objective, but can't index WeightedRandomPrototype {objectiveGroupProto}"); return null; } - // TODO replace whatever the fuck this is with a proper objective selection system - // yeah the old 'preventing infinite loops' thing wasn't super elegant either and it mislead people on what exactly it did - var tries = 0; - while (tries < 20) - { - var groupName = groups.Pick(_random); + // Make a copy of the weights so we don't trash the prototype by removing entries + var groups = groupsProto.Weights.ShallowClone(); + while (_random.TryPickAndTake(groups, out var groupName)) + { if (!_prototypeManager.TryIndex(groupName, out var group)) { Log.Error($"Couldn't index objective group prototype {groupName}"); return null; } - var proto = group.Pick(_random); - var objective = TryCreateObjective(mindId, mind, proto); - if (objective != null) - return objective; - - tries++; + var objectives = group.Weights.ShallowClone(); + while (_random.TryPickAndTake(objectives, out var objectiveProto)) + { + if (TryCreateObjective((mindId, mind), objectiveProto, out var objective) + && Comp(objective.Value).Difficulty <= maxDifficulty) + return objective; + } } return null; diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs index 8d2c4dcfebe..35fa501398f 100644 --- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs +++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs @@ -1,5 +1,5 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Mind; -using Content.Shared.Objectives; using Content.Shared.Objectives.Components; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -40,7 +40,7 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O if (comp.Unique) { var proto = _metaQuery.GetComponent(uid).EntityPrototype?.ID; - foreach (var objective in mind.AllObjectives) + foreach (var objective in mind.Objectives) { if (_metaQuery.GetComponent(objective).EntityPrototype?.ID == proto) return false; @@ -92,7 +92,18 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O } /// - /// Get the title, description, icon and progress of an objective using . + /// Spawns and assigns an objective for a mind. + /// The objective is not added to the mind's objectives, mind system does that in TryAddObjective. + /// If the objective could not be assigned the objective is deleted and false is returned. + /// + public bool TryCreateObjective(Entity mind, EntProtoId proto, [NotNullWhen(true)] out EntityUid? objective) + { + objective = TryCreateObjective(mind.Owner, mind.Comp, proto); + return objective != null; + } + + /// + /// Get the title, description, icon and progress of an objective using . /// If any of them are null it is logged and null is returned. /// /// ID of the condition entity diff --git a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs index 0b618a262db..376e91743d0 100644 --- a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs +++ b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Dataset; using Content.Shared.FixedPoint; @@ -87,6 +88,26 @@ public static T Pick(this IRobustRandom random, Dictionary weights) throw new InvalidOperationException("Invalid weighted pick"); } + public static T PickAndTake(this IRobustRandom random, Dictionary weights) + where T : notnull + { + var pick = Pick(random, weights); + weights.Remove(pick); + return pick; + } + + public static bool TryPickAndTake(this IRobustRandom random, Dictionary weights, [NotNullWhen(true)] out T? pick) + where T : notnull + { + if (weights.Count == 0) + { + pick = default; + return false; + } + pick = PickAndTake(random, weights); + return true; + } + public static (string reagent, FixedPoint2 quantity) Pick(this WeightedRandomFillSolutionPrototype prototype, IRobustRandom? random = null) { var randomFill = prototype.PickRandomFill(random); From 87fa6075b64ba097d99cbb04421a0f7dfb2662b2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 13 Jul 2024 04:15:36 +0000 Subject: [PATCH 49/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4e0604242e3..eb495bc316d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: '"Experienced" passengers can now wear a rainbow jumpsuit using loadouts.' - type: Add - id: 6413 - time: '2024-04-21T11:53:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27211 - author: PJB3005 changes: - message: The item status menu has been moved to the side of the hands. There is @@ -3823,3 +3816,10 @@ id: 6912 time: '2024-07-13T04:03:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29941 +- author: Tayrtahn + changes: + - message: Antag objective total difficulty is now properly capped. + type: Fix + id: 6913 + time: '2024-07-13T04:14:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29830 From 7b590122b652096528ec69921924b3db22b27f6a Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 13 Jul 2024 04:17:10 +0000 Subject: [PATCH 50/97] fire extinguisher using item toggle (#29906) * move SprayAttemptEvent to shared * add SolutionTransferredEvent * replace FireExtinguisher with SpraySafety * update fire extinguisher yml * invert visuals * always handle event in solution transfer, it makes popups * instantly fill it * untroll --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Extinguisher/FireExtinguisherComponent.cs | 7 - .../Extinguisher/FireExtinguisherComponent.cs | 10 -- .../Extinguisher/FireExtinguisherSystem.cs | 139 ------------------ .../Fluids/EntitySystems/SpraySystem.cs | 16 +- .../EntitySystems/SolutionTransferSystem.cs | 16 +- .../SharedFireExtinguisherComponent.cs | 25 ---- .../Fluids/Components/SpraySafetyComponent.cs | 24 +++ Content.Shared/Fluids/Events.cs | 12 ++ Content.Shared/Fluids/SpraySafetySystem.cs | 44 ++++++ .../Objects/Misc/fire_extinguisher.yml | 34 +++-- 10 files changed, 118 insertions(+), 209 deletions(-) delete mode 100644 Content.Client/Extinguisher/FireExtinguisherComponent.cs delete mode 100644 Content.Server/Extinguisher/FireExtinguisherComponent.cs delete mode 100644 Content.Server/Extinguisher/FireExtinguisherSystem.cs delete mode 100644 Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs create mode 100644 Content.Shared/Fluids/Components/SpraySafetyComponent.cs create mode 100644 Content.Shared/Fluids/SpraySafetySystem.cs diff --git a/Content.Client/Extinguisher/FireExtinguisherComponent.cs b/Content.Client/Extinguisher/FireExtinguisherComponent.cs deleted file mode 100644 index 324b05a93d4..00000000000 --- a/Content.Client/Extinguisher/FireExtinguisherComponent.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Extinguisher; -using Robust.Shared.GameStates; - -namespace Content.Client.Extinguisher; - -[RegisterComponent] -public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent; diff --git a/Content.Server/Extinguisher/FireExtinguisherComponent.cs b/Content.Server/Extinguisher/FireExtinguisherComponent.cs deleted file mode 100644 index 991fc76c62e..00000000000 --- a/Content.Server/Extinguisher/FireExtinguisherComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Extinguisher; -using Robust.Shared.GameStates; - -namespace Content.Server.Extinguisher; - -[RegisterComponent] -[Access(typeof(FireExtinguisherSystem))] -public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent -{ -} diff --git a/Content.Server/Extinguisher/FireExtinguisherSystem.cs b/Content.Server/Extinguisher/FireExtinguisherSystem.cs deleted file mode 100644 index b33a1af157f..00000000000 --- a/Content.Server/Extinguisher/FireExtinguisherSystem.cs +++ /dev/null @@ -1,139 +0,0 @@ -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Fluids.EntitySystems; -using Content.Server.Popups; -using Content.Shared.Chemistry.Components; -using Content.Shared.Extinguisher; -using Content.Shared.FixedPoint; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Verbs; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; - -namespace Content.Server.Extinguisher; - -public sealed class FireExtinguisherSystem : EntitySystem -{ - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnFireExtinguisherInit); - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnAfterInteract); - SubscribeLocalEvent>(OnGetInteractionVerbs); - SubscribeLocalEvent(OnSprayAttempt); - } - - private void OnFireExtinguisherInit(Entity entity, ref ComponentInit args) - { - if (entity.Comp.HasSafety) - { - UpdateAppearance((entity.Owner, entity.Comp)); - } - } - - private void OnUseInHand(Entity entity, ref UseInHandEvent args) - { - if (args.Handled) - return; - - ToggleSafety((entity.Owner, entity.Comp), args.User); - - args.Handled = true; - } - - private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Target == null || !args.CanReach) - { - return; - } - - if (args.Handled) - return; - - if (entity.Comp.HasSafety && entity.Comp.Safety) - { - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-safety-on-message"), entity.Owner, args.User); - return; - } - - if (args.Target is not { Valid: true } target || - !_solutionContainerSystem.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) || - !_solutionContainerSystem.TryGetRefillableSolution(entity.Owner, out var containerSoln, out var containerSolution)) - { - return; - } - - args.Handled = true; - - // TODO: why is this copy paste shit here just have fire extinguisher cancel transfer when safety is on - var transfer = containerSolution.AvailableVolume; - if (TryComp(entity.Owner, out var solTrans)) - { - transfer = solTrans.TransferAmount; - } - transfer = FixedPoint2.Min(transfer, targetSolution.Volume); - - if (transfer > 0) - { - var drained = _solutionContainerSystem.Drain(target, targetSoln.Value, transfer); - _solutionContainerSystem.TryAddSolution(containerSoln.Value, drained); - - _audio.PlayPvs(entity.Comp.RefillSound, entity.Owner); - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-after-interact-refilled-message", ("owner", entity.Owner)), - entity.Owner, args.Target.Value); - } - } - - private void OnGetInteractionVerbs(Entity entity, ref GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var user = args.User; - var verb = new InteractionVerb - { - Act = () => ToggleSafety((entity.Owner, entity.Comp), user), - Text = Loc.GetString("fire-extinguisher-component-verb-text"), - }; - - args.Verbs.Add(verb); - } - - private void OnSprayAttempt(Entity entity, ref SprayAttemptEvent args) - { - if (entity.Comp.HasSafety && entity.Comp.Safety) - { - _popupSystem.PopupEntity(Loc.GetString("fire-extinguisher-component-safety-on-message"), entity, args.User); - args.Cancel(); - } - } - - private void UpdateAppearance(Entity entity) - { - if (!Resolve(entity, ref entity.Comp2, false)) - return; - - if (entity.Comp1.HasSafety) - { - _appearance.SetData(entity, FireExtinguisherVisuals.Safety, entity.Comp1.Safety, entity.Comp2); - } - } - - public void ToggleSafety(Entity extinguisher, EntityUid user) - { - if (!Resolve(extinguisher, ref extinguisher.Comp)) - return; - - extinguisher.Comp.Safety = !extinguisher.Comp.Safety; - _audio.PlayPvs(extinguisher.Comp.SafetySound, extinguisher, AudioParams.Default.WithVariation(0.125f).WithVolume(-4f)); - UpdateAppearance((extinguisher.Owner, extinguisher.Comp)); - } -} diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index 5499070738f..215ed7c33ff 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -1,11 +1,11 @@ using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Containers.EntitySystems; using Content.Server.Chemistry.EntitySystems; -using Content.Server.Extinguisher; using Content.Server.Fluids.Components; using Content.Server.Gravity; using Content.Server.Popups; using Content.Shared.FixedPoint; +using Content.Shared.Fluids; using Content.Shared.Interaction; using Content.Shared.Timing; using Content.Shared.Vapor; @@ -34,7 +34,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAfterInteract, after: new[] { typeof(FireExtinguisherSystem) }); + SubscribeLocalEvent(OnAfterInteract); } private void OnAfterInteract(Entity entity, ref AfterInteractEvent args) @@ -48,7 +48,7 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve return; var ev = new SprayAttemptEvent(args.User); - RaiseLocalEvent(entity, ev); + RaiseLocalEvent(entity, ref ev); if (ev.Cancelled) return; @@ -148,13 +148,3 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve _useDelay.TryResetDelay((entity, useDelay)); } } - -public sealed class SprayAttemptEvent : CancellableEntityEventArgs -{ - public EntityUid User; - - public SprayAttemptEvent(EntityUid user) - { - User = user; - } -} diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs index 3b753925088..e5d8cc5f597 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -117,6 +117,7 @@ private void OnAfterInteract(Entity ent, ref AfterInt transferAmount = FixedPoint2.Min(transferAmount, maxRefill); var transferred = Transfer(args.User, target, targetSoln.Value, uid, ownerSoln.Value, transferAmount); + args.Handled = true; if (transferred > 0) { var toTheBrim = ownerRefill.AvailableVolume == 0; @@ -125,8 +126,6 @@ private void OnAfterInteract(Entity ent, ref AfterInt : "comp-solution-transfer-fill-normal"; _popup.PopupClient(Loc.GetString(msg, ("owner", args.Target), ("amount", transferred), ("target", uid)), uid, args.User); - - args.Handled = true; return; } } @@ -143,13 +142,11 @@ private void OnAfterInteract(Entity ent, ref AfterInt transferAmount = FixedPoint2.Min(transferAmount, maxRefill); var transferred = Transfer(args.User, uid, ownerSoln.Value, target, targetSoln.Value, transferAmount); - + args.Handled = true; if (transferred > 0) { var message = Loc.GetString("comp-solution-transfer-transfer-solution", ("amount", transferred), ("target", target)); _popup.PopupClient(message, uid, args.User); - - args.Handled = true; } } } @@ -202,6 +199,9 @@ public FixedPoint2 Transfer(EntityUid user, var solution = _solution.SplitSolution(source, actualAmount); _solution.AddSolution(target, solution); + var ev = new SolutionTransferredEvent(sourceEntity, targetEntity, user, actualAmount); + RaiseLocalEvent(targetEntity, ref ev); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user):player} transferred {SharedSolutionContainerSystem.ToPrettyString(solution)} to {ToPrettyString(targetEntity):target}, which now contains {SharedSolutionContainerSystem.ToPrettyString(targetSolution)}"); @@ -225,3 +225,9 @@ public void Cancel(string reason) CancelReason = reason; } } + +/// +/// Raised on the target entity when a non-zero amount of solution gets transferred. +/// +[ByRefEvent] +public record struct SolutionTransferredEvent(EntityUid From, EntityUid To, EntityUid User, FixedPoint2 Amount); diff --git a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs deleted file mode 100644 index dbb1f6f2c4d..00000000000 --- a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Extinguisher; - -[NetworkedComponent] -public abstract partial class SharedFireExtinguisherComponent : Component -{ - [DataField("refillSound")] public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); - - [DataField("hasSafety")] public bool HasSafety = true; - - [DataField("safety")] public bool Safety = true; - - [DataField("safetySound")] - public SoundSpecifier SafetySound { get; private set; } = new SoundPathSpecifier("/Audio/Machines/button.ogg"); -} - - -[Serializable, NetSerializable] -public enum FireExtinguisherVisuals : byte -{ - Safety -} diff --git a/Content.Shared/Fluids/Components/SpraySafetyComponent.cs b/Content.Shared/Fluids/Components/SpraySafetyComponent.cs new file mode 100644 index 00000000000..30827d4fd1c --- /dev/null +++ b/Content.Shared/Fluids/Components/SpraySafetyComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Fluids.Components; + +/// +/// Uses ItemToggle to control safety for a spray item. +/// You can't spray or refill it while safety is on. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SpraySafetySystem))] +public sealed partial class SpraySafetyComponent : Component +{ + /// + /// Popup shown when trying to spray or refill with safety on. + /// + [DataField] + public LocId Popup = "fire-extinguisher-component-safety-on-message"; + + /// + /// Sound to play after refilling. + /// + [DataField] + public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); +} diff --git a/Content.Shared/Fluids/Events.cs b/Content.Shared/Fluids/Events.cs index e281de91377..198e8887742 100644 --- a/Content.Shared/Fluids/Events.cs +++ b/Content.Shared/Fluids/Events.cs @@ -34,3 +34,15 @@ public AbsorbantDoAfterEvent(string targetSolution, string message, SoundSpecifi public override DoAfterEvent Clone() => this; } + +/// +/// Raised when trying to spray something, for example a fire extinguisher. +/// +[ByRefEvent] +public record struct SprayAttemptEvent(EntityUid User, bool Cancelled = false) +{ + public void Cancel() + { + Cancelled = true; + } +} diff --git a/Content.Shared/Fluids/SpraySafetySystem.cs b/Content.Shared/Fluids/SpraySafetySystem.cs new file mode 100644 index 00000000000..82006a995b9 --- /dev/null +++ b/Content.Shared/Fluids/SpraySafetySystem.cs @@ -0,0 +1,44 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Fluids.Components; +using Content.Shared.Item.ItemToggle; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Fluids; + +public sealed class SpraySafetySystem : EntitySystem +{ + [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTransferAttempt); + SubscribeLocalEvent(OnTransferred); + SubscribeLocalEvent(OnSprayAttempt); + } + + private void OnTransferAttempt(Entity ent, ref SolutionTransferAttemptEvent args) + { + var (uid, comp) = ent; + if (uid == args.To && !_toggle.IsActivated(uid)) + args.Cancel(Loc.GetString(comp.Popup)); + } + + private void OnTransferred(Entity ent, ref SolutionTransferredEvent args) + { + _audio.PlayPredicted(ent.Comp.RefillSound, ent, args.User); + } + + private void OnSprayAttempt(Entity ent, ref SprayAttemptEvent args) + { + if (!_toggle.IsActivated(ent.Owner)) + { + _popup.PopupEntity(Loc.GetString(ent.Comp.Popup), ent, args.User); + args.Cancel(); + } + } +} diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 5aaa58dbbee..89b421c97d4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -7,8 +7,8 @@ - type: Sprite sprite: Objects/Misc/fire_extinguisher.rsi layers: - - state: fire_extinguisher_closed - map: [ "enabled" ] + - state: fire_extinguisher_closed + map: [ "enum.ToggleVisuals.Layer" ] - type: Item sprite: Objects/Misc/fire_extinguisher.rsi size: Normal @@ -24,6 +24,8 @@ - type: DrainableSolution solution: spray - type: SolutionTransfer + maxTransferAmount: 100 + transferAmount: 100 - type: UseDelay - type: Spray transferAmount: 10 @@ -34,8 +36,20 @@ vaporAmount: 3 vaporSpread: 90 sprayVelocity: 2.0 - - type: FireExtinguisher - hasSafety: true + - type: ItemToggle + soundActivate: + path: /Audio/Machines/button.ogg + params: + variation: 0.125 + volume: -4 + soundDeactivate: + path: /Audio/Machines/button.ogg + params: + variation: 0.125 + volume: -4 + - type: ToggleVerb + text: fire-extinguisher-component-verb-text + - type: SpraySafety - type: MeleeWeapon wideAnimationRotation: 180 damage: @@ -46,14 +60,14 @@ - type: Tool qualities: - Rolling - speedModifier: 0.5 # its very big, akward to use + speedModifier: 0.5 # its very big, awkward to use - type: Appearance - type: GenericVisualizer visuals: - enum.FireExtinguisherVisuals.Safety: - enabled: - True: { state: fire_extinguisher_closed } - False: { state: fire_extinguisher_open } + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { state: fire_extinguisher_open } + False: { state: fire_extinguisher_closed } - type: PhysicalComposition materialComposition: Steel: 100 @@ -107,4 +121,4 @@ - type: PhysicalComposition materialComposition: Steel: 50 - Glass: 40 \ No newline at end of file + Glass: 40 From cb98b659adf022deb575910abac4b124baa6e7d4 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:20:17 -0700 Subject: [PATCH 51/97] Update SalvageSystem.Magnet to not use Component.Owner (#29961) * Update SalvageSystem.Magnet.cs * Update SalvageSystem.Magnet.cs the right way --------- Co-authored-by: plykiya --- .../Salvage/SalvageSystem.Magnet.cs | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index 3fe4baca8b6..5e85fdb573a 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -8,6 +8,7 @@ using Content.Shared.Salvage.Magnet; using Robust.Server.Maps; using Robust.Shared.Map; +using Robust.Shared.Map.Components; namespace Content.Server.Salvage; @@ -253,7 +254,8 @@ private async Task TakeMagnetOffer(Entity data, int var seed = data.Comp.Offered[index]; var offering = GetSalvageOffering(seed); - var salvMap = _mapManager.CreateMap(); + var salvMap = _mapSystem.CreateMap(); + var salvMapXform = Transform(salvMap); // Set values while awaiting asteroid dungeon if relevant so we can't double-take offers. data.Comp.ActiveSeed = seed; @@ -264,8 +266,8 @@ private async Task TakeMagnetOffer(Entity data, int switch (offering) { case AsteroidOffering asteroid: - var grid = _mapManager.CreateGrid(salvMap); - await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid, Vector2i.Zero, seed); + var grid = _mapManager.CreateGridEntity(salvMap); + await _dungeon.GenerateDungeonAsync(asteroid.DungeonConfig, grid.Owner, grid.Comp, Vector2i.Zero, seed); break; case SalvageOffering wreck: var salvageProto = wreck.SalvageMap; @@ -275,10 +277,10 @@ private async Task TakeMagnetOffer(Entity data, int Offset = new Vector2(0, 0) }; - if (!_map.TryLoad(salvMap, salvageProto.MapPath.ToString(), out var roots, opts)) + if (!_map.TryLoad(salvMapXform.MapID, salvageProto.MapPath.ToString(), out _, opts)) { Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated"); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); return; } @@ -288,15 +290,14 @@ private async Task TakeMagnetOffer(Entity data, int } Box2? bounds = null; - var mapXform = _xformQuery.GetComponent(_mapManager.GetMapEntityId(salvMap)); - if (mapXform.ChildCount == 0) + if (salvMapXform.ChildCount == 0) { Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-spawn-no-debris-available"); return; } - var mapChildren = mapXform.ChildEnumerator; + var mapChildren = salvMapXform.ChildEnumerator; while (mapChildren.MoveNext(out var mapChild)) { @@ -340,19 +341,25 @@ private async Task TakeMagnetOffer(Entity data, int if (!TryGetSalvagePlacementLocation(mapId, attachedBounds, bounds!.Value, worldAngle, out var spawnLocation, out var spawnAngle)) { Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-spawn-no-debris-available"); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); return; } + // I have no idea if we want to return on failure or not + // but I assume trying to set the parent with a null value wouldn't have worked out anyways + if (!_mapSystem.TryGetMap(spawnLocation.MapId, out var spawnUid)) + return; + data.Comp.ActiveEntities = null; - mapChildren = mapXform.ChildEnumerator; + mapChildren = salvMapXform.ChildEnumerator; // It worked, move it into position and cleanup values. while (mapChildren.MoveNext(out var mapChild)) { var salvXForm = _xformQuery.GetComponent(mapChild); var localPos = salvXForm.LocalPosition; - _transform.SetParent(mapChild, salvXForm, _mapManager.GetMapEntityId(spawnLocation.MapId)); + + _transform.SetParent(mapChild, salvXForm, spawnUid.Value); _transform.SetWorldPositionRotation(mapChild, spawnLocation.Position + localPos, spawnAngle, salvXForm); data.Comp.ActiveEntities ??= new List(); @@ -371,7 +378,7 @@ private async Task TakeMagnetOffer(Entity data, int } Report(magnet.Owner, MagnetChannel, "salvage-system-announcement-arrived", ("timeLeft", data.Comp.ActiveTime.TotalSeconds)); - _mapManager.DeleteMap(salvMap); + _mapManager.DeleteMap(salvMapXform.MapID); data.Comp.Announced = false; From f969fd2bfbf143583b87fb91e315ae187344fb4e Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:05:32 +1000 Subject: [PATCH 52/97] Update submodule to 228.0.0 (#29947) * Update submodule to 228.0.0 * Fix every single test * Also this one --- .../Tests/Interaction/InteractionTest.EntitySpecifier.cs | 2 +- .../Tests/Interaction/InteractionTest.Helpers.cs | 2 +- RobustToolbox | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs index 053152dbe1b..194bc54fba6 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs @@ -114,7 +114,7 @@ await Server.WaitPost(() => return await SpawnEntity((stack.StackTypeId, spec.Quantity), coords); Assert.That(spec.Quantity, Is.EqualTo(1), "SpawnEntity only supports returning a singular entity"); - await Server.WaitPost(() => uid = SEntMan.SpawnEntity(spec.Prototype, coords)); + await Server.WaitPost(() => uid = SEntMan.SpawnAtPosition(spec.Prototype, coords)); return uid; } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 33e4da3fa34..0f2c314ed01 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -91,7 +91,7 @@ protected async Task SpawnTarget(string prototype) Target = NetEntity.Invalid; await Server.WaitPost(() => { - Target = SEntMan.GetNetEntity(SEntMan.SpawnEntity(prototype, SEntMan.GetCoordinates(TargetCoords))); + Target = SEntMan.GetNetEntity(SEntMan.SpawnAtPosition(prototype, SEntMan.GetCoordinates(TargetCoords))); }); await RunTicks(5); diff --git a/RobustToolbox b/RobustToolbox index a9aea7027f1..fc1cca4f48f 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit a9aea7027f1840c83bcaf1c973caf099745f9eed +Subproject commit fc1cca4f48f2f2d3fbf41aa42b80b4e43b1095a4 From 361ec5941255940db153551f3505bfc7b8f32ee5 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Sat, 13 Jul 2024 08:05:57 +0200 Subject: [PATCH 53/97] Dummy vox deserves a proper vox name (#29789) SKREEEEEeeeeeeee --- Resources/Prototypes/Entities/Mobs/Player/vox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/vox.yml b/Resources/Prototypes/Entities/Mobs/Player/vox.yml index e7ad39d7316..28906584cb9 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/vox.yml @@ -1,5 +1,5 @@ - type: entity save: false - name: Urist McVox + name: Uristititi McVox parent: BaseMobVox - id: MobVox \ No newline at end of file + id: MobVox From 49096cf14f8898bdbcb997fa3bbeacbcdccae67e Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Sat, 13 Jul 2024 02:09:19 -0400 Subject: [PATCH 54/97] Watches (#29550) * watches * rename * add it into loot pools --- Content.Client/Clock/ClockSystem.cs | 26 +++++ Content.Server/Clock/ClockSystem.cs | 42 ++++++++ Content.Shared/Clock/ClockComponent.cs | 42 ++++++++ .../Clock/GlobalTimeManagerComponent.cs | 16 +++ Content.Shared/Clock/SharedClockSystem.cs | 66 ++++++++++++ Resources/Locale/en-US/devices/clock.ftl | 1 + .../Prototypes/Catalog/Fills/Lockers/misc.yml | 2 + .../Markers/Spawners/Random/maintenance.yml | 2 + .../Entities/Objects/Devices/wristwatch.yml | 59 +++++++++++ .../Devices/goldwatch.rsi/equipped-HAND.png | Bin 0 -> 295 bytes .../Devices/goldwatch.rsi/goldwatch.png | Bin 0 -> 1180 bytes .../Objects/Devices/goldwatch.rsi/hours_0.png | Bin 0 -> 145 bytes .../Objects/Devices/goldwatch.rsi/hours_1.png | Bin 0 -> 148 bytes .../Devices/goldwatch.rsi/hours_10.png | Bin 0 -> 150 bytes .../Devices/goldwatch.rsi/hours_11.png | Bin 0 -> 146 bytes .../Objects/Devices/goldwatch.rsi/hours_2.png | Bin 0 -> 149 bytes .../Objects/Devices/goldwatch.rsi/hours_3.png | Bin 0 -> 143 bytes .../Objects/Devices/goldwatch.rsi/hours_4.png | Bin 0 -> 151 bytes .../Objects/Devices/goldwatch.rsi/hours_5.png | Bin 0 -> 149 bytes .../Objects/Devices/goldwatch.rsi/hours_6.png | Bin 0 -> 145 bytes .../Objects/Devices/goldwatch.rsi/hours_7.png | Bin 0 -> 148 bytes .../Objects/Devices/goldwatch.rsi/hours_8.png | Bin 0 -> 149 bytes .../Objects/Devices/goldwatch.rsi/hours_9.png | Bin 0 -> 142 bytes .../Devices/goldwatch.rsi/inhand-left.png | Bin 0 -> 271 bytes .../Devices/goldwatch.rsi/inhand-right.png | Bin 0 -> 273 bytes .../Objects/Devices/goldwatch.rsi/meta.json | 98 ++++++++++++++++++ .../Devices/goldwatch.rsi/minutes_0.png | Bin 0 -> 144 bytes .../Devices/goldwatch.rsi/minutes_1.png | Bin 0 -> 150 bytes .../Devices/goldwatch.rsi/minutes_10.png | Bin 0 -> 151 bytes .../Devices/goldwatch.rsi/minutes_11.png | Bin 0 -> 150 bytes .../Devices/goldwatch.rsi/minutes_2.png | Bin 0 -> 148 bytes .../Devices/goldwatch.rsi/minutes_3.png | Bin 0 -> 142 bytes .../Devices/goldwatch.rsi/minutes_4.png | Bin 0 -> 148 bytes .../Devices/goldwatch.rsi/minutes_5.png | Bin 0 -> 150 bytes .../Devices/goldwatch.rsi/minutes_6.png | Bin 0 -> 143 bytes .../Devices/goldwatch.rsi/minutes_7.png | Bin 0 -> 149 bytes .../Devices/goldwatch.rsi/minutes_8.png | Bin 0 -> 146 bytes .../Devices/goldwatch.rsi/minutes_9.png | Bin 0 -> 143 bytes .../Devices/wristwatch.rsi/equipped-HAND.png | Bin 0 -> 292 bytes .../Devices/wristwatch.rsi/hours_0.png | Bin 0 -> 151 bytes .../Devices/wristwatch.rsi/hours_1.png | Bin 0 -> 152 bytes .../Devices/wristwatch.rsi/hours_10.png | Bin 0 -> 156 bytes .../Devices/wristwatch.rsi/hours_11.png | Bin 0 -> 153 bytes .../Devices/wristwatch.rsi/hours_2.png | Bin 0 -> 152 bytes .../Devices/wristwatch.rsi/hours_3.png | Bin 0 -> 153 bytes .../Devices/wristwatch.rsi/hours_4.png | Bin 0 -> 155 bytes .../Devices/wristwatch.rsi/hours_5.png | Bin 0 -> 155 bytes .../Devices/wristwatch.rsi/hours_6.png | Bin 0 -> 152 bytes .../Devices/wristwatch.rsi/hours_7.png | Bin 0 -> 153 bytes .../Devices/wristwatch.rsi/hours_8.png | Bin 0 -> 152 bytes .../Devices/wristwatch.rsi/hours_9.png | Bin 0 -> 150 bytes .../Devices/wristwatch.rsi/inhand-left.png | Bin 0 -> 252 bytes .../Devices/wristwatch.rsi/inhand-right.png | Bin 0 -> 254 bytes .../Objects/Devices/wristwatch.rsi/meta.json | 98 ++++++++++++++++++ .../Devices/wristwatch.rsi/minutes_0.png | Bin 0 -> 152 bytes .../Devices/wristwatch.rsi/minutes_1.png | Bin 0 -> 158 bytes .../Devices/wristwatch.rsi/minutes_10.png | Bin 0 -> 159 bytes .../Devices/wristwatch.rsi/minutes_11.png | Bin 0 -> 160 bytes .../Devices/wristwatch.rsi/minutes_2.png | Bin 0 -> 157 bytes .../Devices/wristwatch.rsi/minutes_3.png | Bin 0 -> 151 bytes .../Devices/wristwatch.rsi/minutes_4.png | Bin 0 -> 160 bytes .../Devices/wristwatch.rsi/minutes_5.png | Bin 0 -> 159 bytes .../Devices/wristwatch.rsi/minutes_6.png | Bin 0 -> 153 bytes .../Devices/wristwatch.rsi/minutes_7.png | Bin 0 -> 157 bytes .../Devices/wristwatch.rsi/minutes_8.png | Bin 0 -> 155 bytes .../Devices/wristwatch.rsi/minutes_9.png | Bin 0 -> 150 bytes .../Devices/wristwatch.rsi/wristwatch.png | Bin 0 -> 887 bytes 67 files changed, 452 insertions(+) create mode 100644 Content.Client/Clock/ClockSystem.cs create mode 100644 Content.Server/Clock/ClockSystem.cs create mode 100644 Content.Shared/Clock/ClockComponent.cs create mode 100644 Content.Shared/Clock/GlobalTimeManagerComponent.cs create mode 100644 Content.Shared/Clock/SharedClockSystem.cs create mode 100644 Resources/Locale/en-US/devices/clock.ftl create mode 100644 Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/goldwatch.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_0.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_1.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_10.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_8.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/hours_9.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/meta.json create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_0.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_4.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png create mode 100644 Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_1.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_11.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_5.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_6.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/meta.json create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_0.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_1.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_11.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_7.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_8.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_9.png create mode 100644 Resources/Textures/Objects/Devices/wristwatch.rsi/wristwatch.png diff --git a/Content.Client/Clock/ClockSystem.cs b/Content.Client/Clock/ClockSystem.cs new file mode 100644 index 00000000000..7097ada9df6 --- /dev/null +++ b/Content.Client/Clock/ClockSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.Clock; +using Robust.Client.GameObjects; + +namespace Content.Client.Clock; + +public sealed class ClockSystem : SharedClockSystem +{ + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var sprite)) + { + if (!sprite.LayerMapTryGet(ClockVisualLayers.HourHand, out var hourLayer) || + !sprite.LayerMapTryGet(ClockVisualLayers.MinuteHand, out var minuteLayer)) + continue; + + var time = GetClockTime((uid, comp)); + var hourState = $"{comp.HoursBase}{time.Hours % 12}"; + var minuteState = $"{comp.MinutesBase}{time.Minutes / 5}"; + sprite.LayerSetState(hourLayer, hourState); + sprite.LayerSetState(minuteLayer, minuteState); + } + } +} diff --git a/Content.Server/Clock/ClockSystem.cs b/Content.Server/Clock/ClockSystem.cs new file mode 100644 index 00000000000..29400a59f7b --- /dev/null +++ b/Content.Server/Clock/ClockSystem.cs @@ -0,0 +1,42 @@ +using Content.Server.GameTicking.Events; +using Content.Shared.Clock; +using Content.Shared.Destructible; +using Robust.Server.GameStates; +using Robust.Shared.Random; + +namespace Content.Server.Clock; + +public sealed class ClockSystem : SharedClockSystem +{ + [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundStart); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnBreak); + } + + private void OnRoundStart(RoundStartingEvent ev) + { + var manager = Spawn(); + AddComp(manager); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.TimeOffset = TimeSpan.FromHours(_robustRandom.NextFloat(0, 24)); + _pvsOverride.AddGlobalOverride(ent); + Dirty(ent); + } + + private void OnBreak(Entity ent, ref BreakageEventArgs args) + { + ent.Comp.StuckTime = GetClockTime(ent); + Dirty(ent, ent.Comp); + } +} diff --git a/Content.Shared/Clock/ClockComponent.cs b/Content.Shared/Clock/ClockComponent.cs new file mode 100644 index 00000000000..3a1027d8136 --- /dev/null +++ b/Content.Shared/Clock/ClockComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Clock; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedClockSystem))] +[AutoGenerateComponentState] +public sealed partial class ClockComponent : Component +{ + /// + /// If not null, this time will be permanently shown. + /// + [DataField, AutoNetworkedField] + public TimeSpan? StuckTime; + + /// + /// The format in which time is displayed. + /// + [DataField, AutoNetworkedField] + public ClockType ClockType = ClockType.TwelveHour; + + [DataField] + public string HoursBase = "hours_"; + + [DataField] + public string MinutesBase = "minutes_"; +} + +[Serializable, NetSerializable] +public enum ClockType : byte +{ + TwelveHour, + TwentyFourHour +} + +[Serializable, NetSerializable] +public enum ClockVisualLayers : byte +{ + HourHand, + MinuteHand +} diff --git a/Content.Shared/Clock/GlobalTimeManagerComponent.cs b/Content.Shared/Clock/GlobalTimeManagerComponent.cs new file mode 100644 index 00000000000..764b578b250 --- /dev/null +++ b/Content.Shared/Clock/GlobalTimeManagerComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Clock; + +/// +/// This is used for globally managing the time on-station +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(SharedClockSystem))] +public sealed partial class GlobalTimeManagerComponent : Component +{ + /// + /// A fixed random offset, used to fuzz the time between shifts. + /// + [DataField, AutoPausedField, AutoNetworkedField] + public TimeSpan TimeOffset; +} diff --git a/Content.Shared/Clock/SharedClockSystem.cs b/Content.Shared/Clock/SharedClockSystem.cs new file mode 100644 index 00000000000..0a7c1b01b2c --- /dev/null +++ b/Content.Shared/Clock/SharedClockSystem.cs @@ -0,0 +1,66 @@ +using System.Linq; +using Content.Shared.Examine; +using Content.Shared.GameTicking; + +namespace Content.Shared.Clock; + +public abstract class SharedClockSystem : EntitySystem +{ + [Dependency] private readonly SharedGameTicker _ticker = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("clock-examine", ("time", GetClockTimeText(ent)))); + } + + public string GetClockTimeText(Entity ent) + { + var time = GetClockTime(ent); + switch (ent.Comp.ClockType) + { + case ClockType.TwelveHour: + return time.ToString(@"h\:mm"); + case ClockType.TwentyFourHour: + return time.ToString(@"hh\:mm"); + default: + throw new ArgumentOutOfRangeException(); + } + } + + private TimeSpan GetGlobalTime() + { + return (EntityQuery().FirstOrDefault()?.TimeOffset ?? TimeSpan.Zero) + _ticker.RoundDuration(); + } + + public TimeSpan GetClockTime(Entity ent) + { + var comp = ent.Comp; + + if (comp.StuckTime != null) + return comp.StuckTime.Value; + + var time = GetGlobalTime(); + + switch (comp.ClockType) + { + case ClockType.TwelveHour: + var adjustedHours = time.Hours % 12; + if (adjustedHours == 0) + adjustedHours = 12; + return new TimeSpan(adjustedHours, time.Minutes, time.Seconds); + case ClockType.TwentyFourHour: + return time; + default: + throw new ArgumentOutOfRangeException(); + } + } +} diff --git a/Resources/Locale/en-US/devices/clock.ftl b/Resources/Locale/en-US/devices/clock.ftl new file mode 100644 index 00000000000..6d0aef1eb76 --- /dev/null +++ b/Resources/Locale/en-US/devices/clock.ftl @@ -0,0 +1 @@ +clock-examine = The time reads: [color=white]{$time}[/color] diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index fac36ba710c..b49fa383bce 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -170,6 +170,8 @@ prob: 0.20 - id: BarberScissors prob: 0.05 + - id: Wristwatch + prob: 0.05 - id: BookRandomStory prob: 0.1 # Syndicate loot diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 7d7d9697d2c..00798b36e0f 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -67,6 +67,7 @@ - ClothingHeadHatCowboyBountyHunter - ClothingNeckAutismPin - ClothingNeckGoldAutismPin + - WristwatchGold rareChance: 0.01 prototypes: - Lighter @@ -128,6 +129,7 @@ - ClothingShoesTourist - ClothingUniformJumpsuitLoungewear - ClothingHeadHatCowboyRed + - Wristwatch chance: 0.6 offset: 0.0 diff --git a/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml b/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml new file mode 100644 index 00000000000..7fbb4aecf61 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/wristwatch.yml @@ -0,0 +1,59 @@ +- type: entity + id: Wristwatch + parent: BaseItem + name: wristwatch + description: A cheap watch for telling time. How much did you waste playing Space Station 14? + components: + - type: Sprite + sprite: Objects/Devices/wristwatch.rsi + layers: + - state: wristwatch + - map: [ "enum.ClockVisualLayers.MinuteHand"] + - map: [ "enum.ClockVisualLayers.HourHand"] + - type: Clock + - type: Item + sprite: Objects/Devices/wristwatch.rsi + size: Small + - type: Clothing + sprite: Objects/Devices/wristwatch.rsi + slots: + - gloves + - type: Appearance + - type: Damageable + damageContainer: Inorganic + - type: StaticPrice + price: 50 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageGroupTrigger + damageGroup: Brute + damage: 25 + behaviors: + - !type:DoActsBehavior + acts: [ "Breakage" ] + +- type: entity + id: WristwatchGold + parent: Wristwatch + name: gold watch + description: A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani. + components: + - type: Sprite + sprite: Objects/Devices/goldwatch.rsi + layers: + - state: goldwatch + - map: [ "enum.ClockVisualLayers.MinuteHand"] + - map: [ "enum.ClockVisualLayers.HourHand"] + - type: Item + sprite: Objects/Devices/goldwatch.rsi + - type: Clothing + sprite: Objects/Devices/goldwatch.rsi + - type: StaticPrice + price: 500 #if you ever increase the price of kidneys, increase this too. diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..59522f6c12e86f2b7a6364c89a0d9a25bb3e8fef GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1GUw zi(^Q|oVT|O`4|I5+#V_iZsP7_4OlsqYcB7K(y)cWw;S@fmPVP1DQx8aB^dakWoE{+ zKk1C-?`u!4zV}v1pWy^I!zZSOJq!v+%=h{Xx4&+g)l>b2-MDRW>hgDUPFIHCUB~YC zbnew>5!L6G|6}@Kmvb@0Pk2xMX<>&rh6&;fPgof$8Syf=GA+1se)V&`L&eh*_Gr}o t3d(0a@cPo%GQlXu3rkS!2RfyiLA^yGryYJmM^L^(#=bn3K5&dQS7w~ThxPPf3CF6+Up_QedvgYyZ#HELMe?$PtS8Y2? zljE;xbl?T;Y;UK@@I4xhk5E}%1NA+4$M0P^y*(9=#^~~`K}SLy3FtVxE)`9h6uo_g zKF^k_CmxD)by2>{;Q2_J9K@}`5;dw)LaI_u+{h`wid;q8_i{={u3SLG{t`Fa4k5## z8QQ#Ujv`SH`TP-bO?&CozM51nCu{|P9QHDyB5&HU+9J=)KgfOlDoP{_788%IOwS~9 z#h2Rw$t?&o#}awI%j9PgHJ)RfNEA_ZU@_N(T`J}kfV|_!U^#%u%QEIMPJ|;IZFRt) zr#(o)7@PsSi>AV}qlG2#EQb z0$rF35}?V?S;WYFam^Mgtyn>!-kTI?K0t3rh$aS~P*Z(^-$5~Al>k^JND=P!iunl# z1c*A&tclldXr_>Qw%8qKaxG-YasxmiB4VF^PSsx#3yDV;ARse(L=JLq`Envf27uIE z;8s^33xO+ry>OyJ&5o$3bzhJaL=1@X*!F~Z9f0kK9ONZS-TVwrG6D;1UiD|%J!upZID_PNGp5Of2y$5+NY&($!mJ+^a_J3@1suQlCa;4i)!4F?n+(>uG@#(#BQ(%`oxI9+ zSskz*tvcM(nNjUA-VZe7>aYgB1)2=jIc!GM0CFx%R1PHo$aNE{%GrKx1&9l1uYhhc zx+Xx3sF8Enj>rMo839}&LXhip^g{<&gxU?Yr6c@oY5EF;d&nXdQk)5pd)bbGpWY2c z1P&xZg1-Lfd6J`(adkkaMaXs0dH7u5qyTLN2;@A_tCTlncbivZne%7J(~1eJ{y6mffknI@wr8A+3=s0Wg|ABlL zF|hz7h#Ixx^OH(TjGaMxoRB*b07yNQ`6~FH52*EMK84m8SJVeYIQ>uHSOB2Y(U5k+ ur2YZJ+GhI)hS(k4FNAzS0z?G;W_$tEs%t8vJoi2T0000mdKI;Vst0Pf`}!2kdN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_11.png new file mode 100644 index 0000000000000000000000000000000000000000..e364438e4ecd35612f8d36bd0210b081e8e5aee1 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpwp z;uumf=k3LdoD2pW%on-JTHe_&Q2vov$iaE&E>op|{Ue|%AZU=!YC-eXS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_2.png new file mode 100644 index 0000000000000000000000000000000000000000..87c642239fe1370c4a14745d559d81fdb8716ed6 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq9# z;uumf=k2+TybKCF%#KP2Io{YSC+ ihVTfs9qbT^EzEK^4LRmc+hjH!B;e`l=d#Wzp$P!(2__T( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_3.png new file mode 100644 index 0000000000000000000000000000000000000000..107b210ff4f3c9e0d121ec590091b896ba2918bd GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp?v z;uumf=k2+Tf(!y8E{S@5QFulkC`m%0QriXU5|5dy8{_S}HvH e!X+RJ7CgX|&A~F4?KMLLi0kR<=d#Wzp$PzNDkZr9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_4.png new file mode 100644 index 0000000000000000000000000000000000000000..c03f799fcce9cb94ff51072e22083ab1511e0e34 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp_w z;uumf=k3LfoD2#)E`iL2EZ^k~lp|b%b~Lc?J&Z3-l@phL1XKtCf7nmRM&=gJWGUbm jU&8$H57SMiyNqBdc6T$5ojc=SOMrNuu6{1-oD!M<`(-7z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_5.png new file mode 100644 index 0000000000000000000000000000000000000000..2835fadd249d0a84532950f44f547515a74f29d6 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq9# z;uumf=k3LdoIusC7g?ki{$(#|vFmZukn<>c&vJbE_D4Wv5O9zANzWF$H9QO6No-gj izOG>Ff&2PknNn`^0~|XKYR3KtaXnrAT-G@yGywp`$15cO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_6.png new file mode 100644 index 0000000000000000000000000000000000000000..55df41a9ce9fa78ca7b747f8b4a7369bde2092ca GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq3z z;uumf=k0}qoD2pWM=x-_<+xjapzp!Ka|#;riZdTf+&L6GPPMtR?7EOWm%Ouh`_db;|#taD0e0swhmDyIMd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/hours_7.png new file mode 100644 index 0000000000000000000000000000000000000000..890650474dfcf2593d48c0df4977ffc49a687cfb GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp+t z;uumf=k0k%UIqmLW=B0n&L83(EOPCwb+g)1t~)F*Zea#01A`yz7rvLQjWul0=6q14 i&m8mE=zt_h;s_)E*YzB8*#ms5B literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..ec40991d4ecf42b62c9e4bfa358a24a938dface4 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1GCq zi(^Q|oVPdkaxyuJFgz6G*~)#8$;8NP3s17~YJ<%}+#Ag6t8Q3Zq^aE~kgw61y~p$u zlS3TC32uf;Mg@I_C#(&77$%4_fCZKHtM8qkfBW&?Bu8FW3t4lWwF?<;-+fxXFCxg9 z@mu@rMf3jew{t|%g4LYh7^~~EYL3kDWOx=exqpT+=Yg2)PlCm2j5D%*?UMZFE5Myl a)u10&EMok2KPwB+GYp=telF{r5}E*wty!l4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..aac69417e32f8656e2f87d013ae5b462f43879e4 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1Gy) zi(^Q|oVPc3^B!^#V7Tb0)S@>*gFz|D>6C)nVlE@Cg$z}XgPT%sHm0lXII(N$yfxls zy?YoYh%R{O_Nif2&v@5zx%wcbwNdTi`%h`Omrf z)2=8q{C&7<#r^;B{R-H$qL|mPQT)tSqxo6qG8%SK(L`hB}_edZJv0j59y g&3%q>5@G#$kEboFyt=akR{01#^=T>t<8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_1.png new file mode 100644 index 0000000000000000000000000000000000000000..0ef2c831f4d7d9a213a9a7a9c20360607b94a848 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpto z;uumf=k0k%UIqmo7ROl)EPuFNoa9}d^{0Q?ygH$5{X?KC5a0~>sdcW`uwk>=fl7VG kJ6jpgRdYVzgUCs+*L?lWG50GM{~3^gr>mdKI;Vst0C#vP6951J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_10.png new file mode 100644 index 0000000000000000000000000000000000000000..3019a20a9ba454202f8ed338bcdfaafcc25aed05 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp_w z;uumf=k3Lfyg=11fu1ES-{mI=Y8Z%ZJL0zf=k=JAr!UU704fB52B8TLciui`!udd^ lj&o;KV@{(yBShv&18c-Yj-3}@i&TIFJYD@<);T3K0RSQ!D?R`K literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_11.png new file mode 100644 index 0000000000000000000000000000000000000000..fcbf039b6ffdc5668c29a95790386bf6c26e691f GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpto z;uumf=k29~yg=0~j-Fdse(PTlsz`XzaK2TdTw6l#%taZXIv@yOYMH-b>ssCgYgkUa l4%ObX(c#;7euxyqDLtp@96P_~zHkBwc)I$ztaD0e0s!chD@FhS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_2.png new file mode 100644 index 0000000000000000000000000000000000000000..1304f56e757368d4d5d02aa54f405f34fa1b3259 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp+t z;uumf=k2+TybKCF%#KP2Io{YSC@ig3`BA%{(F6*2UngBb^DJB2_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_3.png new file mode 100644 index 0000000000000000000000000000000000000000..8f58881dbda93e25a21ab56f6ab0baeea8616a4b GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpqn z;uumf=k2+Tf(!y8E{rVMPU3*p+{=*Ho b8Ns4DSugTe~DWM4f6_Y3a literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d71f45c4791977ae15c34eea85bb396938222a4 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpto z;uumf=k2A7oIusC7g?ki{$oz?nOXl5b%|uY}?70No*bOBp+ON lUl)+i`2M{-P|Csj0ITK_j-Bsp%Jzd)db;|#taD0e0s!UED|!F` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_6.png new file mode 100644 index 0000000000000000000000000000000000000000..5e1070e3a80454ab5edd53e2b7850b6c4fdfdc85 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp?v z;uumf=j}yDP6h=521kCAroYTm2iwyGrZ~^=HQ2CKg&n901U`r-oZYzSs|WKQjt3kC fzyBLPa0LlV+n-{Y%b>)p1>$(R`njxgN@xNA9D^j} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_7.png new file mode 100644 index 0000000000000000000000000000000000000000..4af1070d216a1a25590a53b6aa3f5a91b6413b18 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq9# z;uumf=k0k%UIqmo7ROm4oIk`nSmcf#s@3zI9Lu_S=PYKRGBB9IyrNwDTc=rrHs^y~ k(;3gHG`x;uvj9mq@IRl-F?X-$@-rZXp00i_>zopr00p@y8~^|S literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_8.png new file mode 100644 index 0000000000000000000000000000000000000000..39b252688a78299da0303e13de4000e038bb8339 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpwp z;uumf=k2+JybJ;&E{;N87wQ|m3KXmgKDruJ-+VlKk{mx!83;V!KOj^4?)=uL0SC^0 i5PXpKgG0a&B;LSk{)1y~>B1A-AfBhIpUXO@geCw@bSf_Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png b/Resources/Textures/Objects/Devices/goldwatch.rsi/minutes_9.png new file mode 100644 index 0000000000000000000000000000000000000000..b9614ed80f52a6292f44f8548ded905f170b710e GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp?v z;uumf=k2+Tf(!y8E{p=fS?83{1OQ`3CdB{% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/equipped-HAND.png new file mode 100644 index 0000000000000000000000000000000000000000..b12afe6d4eec194bee8911634e1060ccaa43b517 GIT binary patch literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1F_k zi(^Q|oVT|&avlm0aeJsNwV{|RI3mKjO?XG+EiKzjZxu4<9Ggo8nV{7=-Pi>MZof{k)S{$Rl^IG|~>AOD9 z@&C*Ep!UYB=WnaezHI)UTgilJ0Cr;?8QzFrUUt_tqny+1`ECFBSIrC+vAZ7Y9a3QU oCBpE8m7$W+A&y~!IGD*Ft0Yr#`1X`lKp!%Ay85}Sb4q9e08OoHO#lD@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_0.png new file mode 100644 index 0000000000000000000000000000000000000000..3af9ca46343c1cc46a95181236029f45ffc7fcf1 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp_w z;uumf=j}yCP6h)G)AZ&ZIon oZP=CWkap_cc7|6F$%euMtesytPYVh}Tm*@Dy85}Sb4q9e0JbwN@c;k- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_10.png new file mode 100644 index 0000000000000000000000000000000000000000..aeac86265673b1c55070ac1237c027112df89691 GIT binary patch literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp&lJK6k>0|rH=Th;al2?&AV|Q|)z4*}Q$iB}{GTY9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_2.png new file mode 100644 index 0000000000000000000000000000000000000000..386166cabdd3578c61abb30fad6364611cdebaa7 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp(s z;uumf=j}O1UIqgWmV=Y7h{R237f-o(g-P+l&EI#5pU->B2vi3Gry5MW3#S)0ta|pp nuYyxRQ1_wHf@+A=0jmd$pXYF%-o3Xn4J6{}>gTe~DWM4f#O*FS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2f5300928f2e1fb8cd3ff0242ab69c5200ab4a26 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq6! z;uumf=k3LVoD2#)&KJe*9MRmhe)EitB6l4GTz~F-GK1Z-%o3;&0!}w{WGv1;_iX8p n!iFW5uO_`cQ7sOZX?V{dYd?b{?UiYaGf2SG)z4*}Q$iB}9d#~_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_4.png new file mode 100644 index 0000000000000000000000000000000000000000..c994c0568591ca8dac03794872c2421335f69bcc GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq0y z;uumf=k3LVoD2#)&Vj7cU+KxN-(9k%i(Py}tJ0sCqBG5FF3JE^f#cos8I85sQF77&b{w4G6F7t^>bP0l+XkKs;?;e literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_7.png new file mode 100644 index 0000000000000000000000000000000000000000..fa7af8e5cca4735e331a30cfa96e4bd7aba03ac4 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq6! z;uumf=k0k%UIqgWmV=Y7h{R237f%V~w(;UPxvp{c?sN;FGB9YcWe7dnF~QIwT-9OL p(jE2n@oXi%(;4S70%Z?aJYaO?=RE!C&gP9E#h$KyF6*2UngH6@Dn$SQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_8.png new file mode 100644 index 0000000000000000000000000000000000000000..83caf8c8e170e619de757651e787ddb190f0e2bb GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp(s z;uumf=k2+Jyg=0~j-EMPaT@(`8r;e3HZIAVzVCc~PNtt7s1OW3usehn*Snl3b(pnu lhdlpu#p=fS?83{1OTP2D8c{$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/hours_9.png new file mode 100644 index 0000000000000000000000000000000000000000..6334bb72fdc1733bc48f6078d32126779a1e23a4 GIT binary patch literal 150 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCpto z;uumf=k2+Jyg=0~j-G2yMQQZMt!Roe*vOdN^y_Br-S^A3pJxOr1%n*Mm9vzSa?7Vb iXE4;Zw`ID+2N9p~=QhXbc(L6vAg-sYpUXO@geCy%Dk<{- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..76ca3c491159bfbe14fc4bbe0712376d010e8e9c GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAP;i~6 zi(^Q|oVPbO@;Vs`90*VjH1On7OOR?yW=dO_AZ8_C{lvZNjroDODXLfJPSj>7Vs%)@ za6*(}CzC=r!xOHC7{&=8!5Nls3isB$e}BHS_X|@R-)`G@12*fKQVBg9uYUgjnj1we zRs$@OUaT_y*<-u6LAh<6)#URxiai=a(?3a8|6+pM_Jy&ou2dxFroeASpvxINUHx3v IIVCg!0CAvI4gdfE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f9ab9c67d492e6bcbab2032582b09efd6aa0eb53 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAP;i5% zi(^Q|oVPbO@-i8U90*VjH1On7OOR?yW=dO_AZ8_?JjZXR(zn%%T{hLNs&`w*a6*(} zCzC=r!xOHC7{&?O3`MLCAi;#w508KSw0FO~y4WR_9Lt*OeF;2an=}tdB(MDV|1~$J z26R(yR38k~{v7$4H7R#yo2B5A_ZY@B z;uumf=k0k%UIqo8qXE+rvQ9Wkl&LXVIy0a4FUu6&bMB%HP#s7q)0;CkY1i0xWb=mJ tXDC14G2za1hFAL-PyH5hkcB9@z*lkX7LO7~v2YVez|+;wWt~$(695Z$EL8vi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_10.png new file mode 100644 index 0000000000000000000000000000000000000000..9dad0d83cbe85a64b02d8ee9a552d191ae753355 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C>ZGJ z;uumf=k3Lfyg=11fgUkj#|sUvC$bzr_=4e>TjoF0@J~e|o_s*1An<@AL(niwwEVh= sL-^hHvpQk>8)Eh<Z4F z;uumf=k588yg=2gfgUkj#|sUvC$bzrxPwuw<=MKQZ+|<_Vg{-NDQ*xIj1IlcknXoq vi?yKKbaTaRrWHE8D=Pl8t^ipL1R3lxKg0McPTV$f0C7EC{an^LB{Ts5menmb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c3bbe7179bc4ac528d3d1c5c8ed342b7529a29 GIT binary patch literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCqC$ z;uumf=k2A9yg=2gfgUl(1S75$Cg|{LYh0XhCtu^es7a*_P$38$FgtK2t$g~zRpE@1 q=cEOt(%;%Tv@I?8{|_R~5U`ciU50ys$SWy#kcg+NpUXO@geCy3Eh>os literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6bfdc405c790914479d3f4582acb23b3840585cd GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCp_w z;uumf=k2-OybKCF%z;W9d6ZKkk98hz;;OQ1dKR;D_w>up8G#DHK!^Fx-rjhnAk)pu k89a?wZ2l(q;2T7yf$!Zf_626eGc!SaPgg&ebxsLQ0QvkX`2YX_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_4.png new file mode 100644 index 0000000000000000000000000000000000000000..89c08f3396f0ff1bbfe620de16cadeda888989c7 GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C>Z4F z;uumf=k2A9yg=11fgUl(1S75$Cg||Ca%UtO%x{}C{qZatIiN}~XsBW^p1o7qX+FcZ uhb<-LlB>ceJQi0``C`{nB@0r}@ScJD`byq!byDHkAik%opUXO@geCw@EiDoN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_5.png new file mode 100644 index 0000000000000000000000000000000000000000..4cbaa00d14b3d50aba0fe36ec3ee2468db228850 GIT binary patch literal 159 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C>ZGJ z;uumf=j|m%UZ851z#BTrET^R0lV0{HBp1Kh&(i<6ONI}q4h#;|G8jw0TX&q{=1sOW vuZ^QQOarRLug}qMVetL>m=~zzf#m^~R||N*ZKyx9AEd+6)z4*}Q$iB}N<1$? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png b/Resources/Textures/Objects/Devices/wristwatch.rsi/minutes_6.png new file mode 100644 index 0000000000000000000000000000000000000000..e834c52d8cd5aaaa10bbbd97c159e1cd82a8bafb GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DCq6! z;uumf=k29NP6h=Y=7SxHEcf$AXO4|Boy*)z@9UU+d{ t*t(DBhM-sW%k_+Xrdz!qwE|ItM6yeoWith n_j|*jLy8B4Jh|H$M47>|>_umJlzhUS9)ftDu6{1-oD!MIP)^@RCt{2S4(IUQ53yN%tErLXj|+;TN*N56cJn$>xT%{T|qa& zjkKbz6~RqFanVx62GlOQiK0TqjXMkOO2I*^;3A;XLK7Mq3#L>TQ-c)g=Q-zPUiv1P zU(<*PUKsA3_dDmF_n9}l=r7xU0^24q774P()`+QWb|FLcn?%<$Yra25V7M*F;2T>a z^lLF|OAdZJL_87TSsTE}78VW!Xk~4K$MyR2-A@$K;dirQd#@y12?)tW)&PdhZ|LCu zVjBR5STSDJVSjF8A{+?-ye=51C`ab?Ml3RYpafZYUoR@SDlo~`iN2&Qdv&aDjej$} z<^u_24>eXjs^ChXFF8ezuXb6Mf9gAJDib8cI~MMpIcF7Y2_zB;_CxngO-(d3F>Bf8 z?Zw-4L(|yk=x7N9B*cyhF>*Ca0sxQ2Vm!|0^R}Hun?j+$lF1||@ofAlTS^R++TgvX z_mZs&6$Avh0RH&uF71h&fpEr za&xaqiS|-j9jD{x2WeUdZ9fvF=@%os9QDm@r%ZjK(Wp;VRfYuM@$Q*`oINrJNW=aE z`l!9UUXeU6HxxQ-C?QmE1NEc;q(fyw^c(ju=HQ&O!tP61@MGmvP|>t|9be?QuJ zf5$G_~!uQ1Zs9Cr2E&X`=DaF3FAtJ>;Q@s2@?gXM3=6po>$c~sA|TAmimt}~y??`6+iz=%nuRh`+1LO8 N002ovPDHLkV1f$6lfVD~ literal 0 HcmV?d00001 From eb4ce85354c7c93da527bebca37cf986973f39a2 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 13 Jul 2024 08:10:04 +0200 Subject: [PATCH 55/97] Remove imagesharp and StatusEffectAddedEvent from FlashOverlay (#28930) remove imagesharp and StatusEffectAddedEvent from FlashOverlay --- Content.Client/Flash/FlashOverlay.cs | 27 ++++++--------------------- Content.Client/Flash/FlashSystem.cs | 14 +++----------- 2 files changed, 9 insertions(+), 32 deletions(-) diff --git a/Content.Client/Flash/FlashOverlay.cs b/Content.Client/Flash/FlashOverlay.cs index 9ea00275e84..046be2aa621 100644 --- a/Content.Client/Flash/FlashOverlay.cs +++ b/Content.Client/Flash/FlashOverlay.cs @@ -1,27 +1,22 @@ using Content.Shared.Flash; using Content.Shared.Flash.Components; using Content.Shared.StatusEffect; -using Content.Client.Viewport; using Robust.Client.Graphics; -using Robust.Client.State; using Robust.Client.Player; using Robust.Shared.Enums; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using SixLabors.ImageSharp.PixelFormats; namespace Content.Client.Flash { public sealed class FlashOverlay : Overlay { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IClyde _displayManager = default!; - [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _timing = default!; - private readonly StatusEffectsSystem _statusSys; + private readonly StatusEffectsSystem _statusSys; public override OverlaySpace Space => OverlaySpace.WorldSpace; private readonly ShaderInstance _shader; @@ -56,20 +51,6 @@ protected override void FrameUpdate(FrameEventArgs args) PercentComplete = timeDone / lastsFor; } - public void ReceiveFlash() - { - if (_stateManager.CurrentState is IMainViewportState state) - { - // take a screenshot - // note that the callback takes a while and ScreenshotTexture will be null the first few Draws - state.Viewport.Viewport.Screenshot(image => - { - var rgba32Image = image.CloneAs(SixLabors.ImageSharp.Configuration.Default); - ScreenshotTexture = _displayManager.LoadTextureFromImage(rgba32Image); - }); - } - } - protected override bool BeforeDraw(in OverlayDrawArgs args) { if (!_entityManager.TryGetComponent(_playerManager.LocalEntity, out EyeComponent? eyeComp)) @@ -82,6 +63,11 @@ protected override bool BeforeDraw(in OverlayDrawArgs args) protected override void Draw(in OverlayDrawArgs args) { + if (RequestScreenTexture && ScreenTexture != null) + { + ScreenshotTexture = ScreenTexture; + RequestScreenTexture = false; // we only need the first frame, so we can stop the request now for performance reasons + } if (ScreenshotTexture == null) return; @@ -96,7 +82,6 @@ protected override void DisposeBehavior() { base.DisposeBehavior(); ScreenshotTexture = null; - PercentComplete = 1.0f; } } } diff --git a/Content.Client/Flash/FlashSystem.cs b/Content.Client/Flash/FlashSystem.cs index 9a0579f6aa3..146d84b990f 100644 --- a/Content.Client/Flash/FlashSystem.cs +++ b/Content.Client/Flash/FlashSystem.cs @@ -22,7 +22,6 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnPlayerAttached); SubscribeLocalEvent(OnPlayerDetached); - SubscribeLocalEvent(OnStatusAdded); _overlay = new(); } @@ -34,8 +33,8 @@ private void OnPlayerAttached(EntityUid uid, FlashedComponent component, LocalPl private void OnPlayerDetached(EntityUid uid, FlashedComponent component, LocalPlayerDetachedEvent args) { - _overlay.PercentComplete = 1.0f; _overlay.ScreenshotTexture = null; + _overlay.RequestScreenTexture = false; _overlayMan.RemoveOverlay(_overlay); } @@ -43,6 +42,7 @@ private void OnInit(EntityUid uid, FlashedComponent component, ComponentInit arg { if (_player.LocalEntity == uid) { + _overlay.RequestScreenTexture = true; _overlayMan.AddOverlay(_overlay); } } @@ -51,17 +51,9 @@ private void OnShutdown(EntityUid uid, FlashedComponent component, ComponentShut { if (_player.LocalEntity == uid) { - _overlay.PercentComplete = 1.0f; _overlay.ScreenshotTexture = null; + _overlay.RequestScreenTexture = false; _overlayMan.RemoveOverlay(_overlay); } } - - private void OnStatusAdded(EntityUid uid, FlashedComponent component, StatusEffectAddedEvent args) - { - if (_player.LocalEntity == uid && args.Key == FlashedKey) - { - _overlay.ReceiveFlash(); - } - } } From 044d84142c473ba91098dd23b85dc200c62d5765 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 13 Jul 2024 06:10:25 +0000 Subject: [PATCH 56/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index eb495bc316d..ca549b51fb3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: PJB3005 - changes: - - message: The item status menu has been moved to the side of the hands. There is - now one for each hand. - type: Add - - message: The item status menu fits with the rest of the HUD theme now. - type: Add - - message: Improved, fixed and otherwise added a bunch of item status menus. - type: Add - id: 6414 - time: '2024-04-21T13:16:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22986 - author: FairlySadPanda changes: - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact @@ -3823,3 +3811,10 @@ id: 6913 time: '2024-07-13T04:14:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29830 +- author: EmoGarbage404 + changes: + - message: Added wristwatches for telling time. + type: Add + id: 6914 + time: '2024-07-13T06:09:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29550 From 87f7ea8aa9758a5f718c5696e5c5e0d6bc995563 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 13 Jul 2024 06:11:14 +0000 Subject: [PATCH 57/97] make cargo balance ui updating its own component (#28295) * add BankClientComponent and event * query BankClient instead of hardcoded CargoOrderConsole for updating * add BankClient to all ordering consoles * :trollface: * add Balance field to BankClient * forgor Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> * m --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> --- .../Cargo/Systems/CargoSystem.Orders.cs | 10 +++++++ Content.Server/Cargo/Systems/CargoSystem.cs | 14 +++++----- .../Cargo/Components/BankClientComponent.cs | 26 +++++++++++++++++++ .../Entities/Mobs/Player/admin_ghost.yml | 1 + .../Entities/Objects/Misc/paper.yml | 1 + .../Machines/Computers/computers.yml | 1 + 6 files changed, 46 insertions(+), 7 deletions(-) create mode 100644 Content.Shared/Cargo/Components/BankClientComponent.cs diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index a288d7b07d4..dd408755e67 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -40,6 +40,7 @@ private void InitializeConsole() SubscribeLocalEvent(OnOrderUIOpened); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnOrderBalanceUpdated); Reset(); } @@ -315,6 +316,15 @@ private void OnOrderUIOpened(EntityUid uid, CargoOrderConsoleComponent component #endregion + + private void OnOrderBalanceUpdated(Entity ent, ref BankBalanceUpdatedEvent args) + { + if (!_uiSystem.IsUiOpen(ent.Owner, CargoConsoleUiKey.Orders)) + return; + + UpdateOrderState(ent, args.Station); + } + private void UpdateOrderState(EntityUid consoleUid, EntityUid? station) { if (station == null || diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index a93a7bdcc22..1b33404e355 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -81,18 +81,18 @@ public override void Update(float frameTime) public void UpdateBankAccount(EntityUid uid, StationBankAccountComponent component, int balanceAdded) { component.Balance += balanceAdded; - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var oUid, out var _)) + var ev = new BankBalanceUpdatedEvent(uid, component.Balance); + while (query.MoveNext(out var client, out var comp, out var xform)) { - if (!_uiSystem.IsUiOpen(oUid, CargoConsoleUiKey.Orders)) - continue; - - var station = _station.GetOwningStation(oUid); + var station = _station.GetOwningStation(client, xform); if (station != uid) continue; - UpdateOrderState(oUid, station); + comp.Balance = component.Balance; + Dirty(client, comp); + RaiseLocalEvent(client, ref ev); } } } diff --git a/Content.Shared/Cargo/Components/BankClientComponent.cs b/Content.Shared/Cargo/Components/BankClientComponent.cs new file mode 100644 index 00000000000..4fd70855034 --- /dev/null +++ b/Content.Shared/Cargo/Components/BankClientComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Cargo; +using Robust.Shared.GameStates; + +namespace Content.Shared.Cargo.Components; + +/// +/// Makes an entity a client of the station's bank account. +/// When its balance changes it will have raised on it. +/// Other systems can then use this for logic or to update ui states. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))] +[AutoGenerateComponentState] +public sealed partial class BankClientComponent : Component +{ + /// + /// The balance updated for the last station this entity was a part of. + /// + [DataField, AutoNetworkedField] + public int Balance; +} + +/// +/// Raised on an entity with when the bank's balance is updated. +/// +[ByRefEvent] +public record struct BankBalanceUpdatedEvent(EntityUid Station, int Balance); diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index a0eb01e03b3..0c814e08f71 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -69,6 +69,7 @@ - type: RadarConsole followEntity: true - type: CargoOrderConsole + - type: BankClient - type: CrewMonitoringConsole - type: GeneralStationRecordConsole canDeleteEntries: true diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 1c8d8754884..5dbafa6416a 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -548,6 +548,7 @@ tags: - Write - type: CargoOrderConsole + - type: BankClient - type: ActivatableUI verbText: qm-clipboard-computer-verb-text key: enum.CargoConsoleUiKey.Orders diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 3f9a9bc222e..4baf9bb5dc6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -735,6 +735,7 @@ - map: ["computerLayerKeys"] state: tech_key - type: CargoOrderConsole + - type: BankClient - type: ActiveRadio channels: - Supply From ac768fe9f14ffd0ef0e64ebe717e5f4d459192a0 Mon Sep 17 00:00:00 2001 From: CaasGit <87243814+CaasGit@users.noreply.github.com> Date: Fri, 12 Jul 2024 23:12:57 -0700 Subject: [PATCH 58/97] fix(SharedGunSystem): Return and debug log on CreateEffect. (#29656) Sometimes CreateEffect is called on a Invalid Entity. This now causes that to check, thus returning out and printing some hopefully helpful logs to try to track down the real source of this issue. --- Content.Client/Weapons/Ranged/Systems/GunSystem.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index ac5914d47c0..71342277674 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -276,6 +276,14 @@ protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, if (!Timing.IsFirstTimePredicted) return; + // EntityUid check added to stop throwing exceptions due to https://github.com/space-wizards/space-station-14/issues/28252 + // TODO: Check to see why invalid entities are firing effects. + if (gunUid == EntityUid.Invalid) + { + Log.Debug($"Invalid Entity sent MuzzleFlashEvent (proto: {message.Prototype}, user: {user})"); + return; + } + var gunXform = Transform(gunUid); var gridUid = gunXform.GridUid; EntityCoordinates coordinates; From 0f5faafbee34f90ebd36a298968f46f4d44f3982 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 13 Jul 2024 12:55:49 +0200 Subject: [PATCH 59/97] Fix corvax role loadouts (#2405) --- Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml b/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml index 29944ee9bd9..f7bf82a044d 100644 --- a/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml @@ -1,19 +1,23 @@ - type: roleLoadout id: JobIAA groups: + - Inventory # Corvax-Loadouts - LawyerNeck - LawyerJumpsuit - CommonBackpack + - Survival - Trinkets - - Inventory # Corvax-Loadouts + - GroupSpeciesBreathTool - type: roleLoadout id: JobPilot groups: + - Inventory # Corvax-Loadouts - SecurityJumpsuit - SecurityBackpack - SecurityOuterClothing - SecurityBelt - SecurityShoes + - Survival - Trinkets - - Inventory # Corvax-Loadouts + - GroupSpeciesBreathTool From 6c1d1057d5d45e49e8d4262c495219b89c1bcf38 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 13 Jul 2024 03:59:33 -0700 Subject: [PATCH 60/97] Replace DetachParentToNull() with DetachEntity() (#29992) DETACH PARENT TO ENTITY Co-authored-by: plykiya --- Content.Client/Materials/MaterialStorageSystem.cs | 4 ++-- Content.Client/Stack/StackSystem.cs | 2 +- Content.Shared/Actions/ActionContainerSystem.cs | 2 +- Content.Shared/Follower/FollowerSystem.cs | 2 +- .../Inventory/VirtualItem/SharedVirtualItemSystem.cs | 2 +- .../Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Content.Client/Materials/MaterialStorageSystem.cs b/Content.Client/Materials/MaterialStorageSystem.cs index edd07391f7b..592471d6736 100644 --- a/Content.Client/Materials/MaterialStorageSystem.cs +++ b/Content.Client/Materials/MaterialStorageSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Materials; +using Content.Shared.Materials; using Robust.Client.GameObjects; namespace Content.Client.Materials; @@ -49,7 +49,7 @@ public override bool TryInsertMaterialEntity(EntityUid user, { if (!base.TryInsertMaterialEntity(user, toInsert, receiver, storage, material, composition)) return false; - _transform.DetachParentToNull(toInsert, Transform(toInsert)); + _transform.DetachEntity(toInsert, Transform(toInsert)); return true; } } diff --git a/Content.Client/Stack/StackSystem.cs b/Content.Client/Stack/StackSystem.cs index c081581338f..7e681aeba3e 100644 --- a/Content.Client/Stack/StackSystem.cs +++ b/Content.Client/Stack/StackSystem.cs @@ -44,7 +44,7 @@ public override void SetCount(EntityUid uid, int amount, StackComponent? compone // TODO PREDICT ENTITY DELETION: This should really just be a normal entity deletion call. if (component.Count <= 0 && !component.Lingering) { - Xform.DetachParentToNull(uid, Transform(uid)); + Xform.DetachEntity(uid, Transform(uid)); return; } diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index 1c5a3ba0d93..1a83cf38e51 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -261,7 +261,7 @@ public void RemoveAction(EntityUid actionId, BaseActionComponent? action = null) if (action.Container == null) return; - _transform.DetachParentToNull(actionId, Transform(actionId)); + _transform.DetachEntity(actionId, Transform(actionId)); // Container removal events should have removed the action from the action container. // However, just in case the container was already deleted we will still manually clear the container field diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 8027ee449c4..8c35617e2c3 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -227,7 +227,7 @@ public void StopFollowingEntity(EntityUid uid, EntityUid target, FollowedCompone if (_netMan.IsClient) { - _transform.DetachParentToNull(uid, xform); + _transform.DetachEntity(uid, xform); return; } diff --git a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs index 4a5894d8958..cd0863ec88d 100644 --- a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs +++ b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs @@ -244,7 +244,7 @@ public void DeleteVirtualItem(Entity item, EntityUid user) if (TerminatingOrDeleted(item)) return; - _transformSystem.DetachParentToNull(item, Transform(item)); + _transformSystem.DetachEntity(item, Transform(item)); if (_netManager.IsServer) QueueDel(item); } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs index adae26a223a..d6f45ba77df 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs @@ -108,7 +108,7 @@ private void UseChambered(EntityUid uid, ChamberMagazineAmmoProviderComponent co else { // Similar to below just due to prediction. - TransformSystem.DetachParentToNull(chamberEnt.Value, Transform(chamberEnt.Value)); + TransformSystem.DetachEntity(chamberEnt.Value, Transform(chamberEnt.Value)); } } From 87c82ff114fa0b213b561cd7c93c0855e55cc359 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 13 Jul 2024 04:50:21 -0700 Subject: [PATCH 61/97] Update SpawnAfterInteractSystem.cs to not use Component.Owner (#29968) * Update SpawnAfterInteractSystem.cs * what the fuck is that condition --------- Co-authored-by: plykiya --- .../Engineering/EntitySystems/SpawnAfterInteractSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs index 281bbc47211..8391e8faada 100644 --- a/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs +++ b/Content.Server/Engineering/EntitySystems/SpawnAfterInteractSystem.cs @@ -65,8 +65,8 @@ bool IsTileClear() EntityManager.SpawnEntity(component.Prototype, args.ClickLocation.SnapToGrid(grid)); - if (component.RemoveOnInteract && stackComp == null && !((!EntityManager.EntityExists(uid) ? EntityLifeStage.Deleted : EntityManager.GetComponent(component.Owner).EntityLifeStage) >= EntityLifeStage.Deleted)) - EntityManager.DeleteEntity(uid); + if (component.RemoveOnInteract && stackComp == null) + TryQueueDel(uid); } } } From 1b0c434a9fa12ebdeadc2ace8e3f7b6f1a39651f Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Sat, 13 Jul 2024 15:15:57 +0300 Subject: [PATCH 62/97] Shiny Diamonds (#25750) * shiny * add * reresprite * rereresprite * Add files via upload * Update ore.yml --- .../Locale/en-US/materials/materials.ftl | 2 + .../Locale/en-US/salvage/salvage-magnet.ftl | 1 + .../Entities/Objects/Materials/materials.yml | 13 ++ .../Entities/Objects/Materials/ore.yml | 31 ++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Entities/Structures/Walls/asteroid.yml | 155 +++++++++++++++++- .../Entities/World/Debris/asteroids.yml | 3 + .../Prototypes/Procedural/Magnet/asteroid.yml | 1 + .../Procedural/biome_ore_templates.yml | 14 ++ .../Prototypes/Procedural/salvage_loot.yml | 7 + .../Prototypes/Reagents/Materials/ores.yml | 9 + Resources/Prototypes/Recipes/Lathes/sheet.yml | 7 + Resources/Prototypes/Stacks/Materials/ore.yml | 7 + Resources/Prototypes/ore.yml | 6 + .../materials.rsi/diamond-inhand-left.png | Bin 223 -> 236 bytes .../materials.rsi/diamond-inhand-right.png | Bin 231 -> 244 bytes .../Materials/materials.rsi/diamond.png | Bin 297 -> 255 bytes .../Materials/materials.rsi/diamond_2.png | Bin 0 -> 345 bytes .../Materials/materials.rsi/diamond_3.png | Bin 0 -> 419 bytes .../Objects/Materials/materials.rsi/meta.json | 6 + .../Objects/Materials/ore.rsi/diamond.png | Bin 0 -> 390 bytes .../Objects/Materials/ore.rsi/meta.json | 5 +- .../Structures/Walls/rock.rsi/meta.json | 18 +- .../Walls/rock.rsi/rock_diamond.png | Bin 1307 -> 1916 bytes 24 files changed, 283 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png create mode 100644 Resources/Textures/Objects/Materials/materials.rsi/diamond_3.png create mode 100644 Resources/Textures/Objects/Materials/ore.rsi/diamond.png diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index a354423d2b7..0fc716bda53 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -25,6 +25,7 @@ materials-meat = meat materials-web = silk materials-bones = bone materials-coal = coal +materials-diamond = diamond materials-gunpowder = gunpowder # Ores @@ -36,3 +37,4 @@ materials-raw-plasma = raw plasma materials-raw-uranium = raw uranium materials-raw-bananium = raw bananium materials-raw-salt = raw salt +materials-raw-diamond = raw diamond diff --git a/Resources/Locale/en-US/salvage/salvage-magnet.ftl b/Resources/Locale/en-US/salvage/salvage-magnet.ftl index 7ce2a486de9..c60bafcc138 100644 --- a/Resources/Locale/en-US/salvage/salvage-magnet.ftl +++ b/Resources/Locale/en-US/salvage/salvage-magnet.ftl @@ -13,6 +13,7 @@ salvage-magnet-resources = {$resource -> [OreQuartz] Quartz [OreSalt] Salt [OreGold] Gold + [OreDiamond] Diamond [OreSilver] Silver [OrePlasma] Plasma [OreUranium] Uranium diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index c4de4bb18f2..a3fc4a27745 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -350,8 +350,21 @@ components: - type: Stack stackType: Diamond + baseLayer: base + layerStates: + - diamond + - diamond_2 + - diamond_3 - type: Sprite state: diamond + layers: + - state: diamond + map: ["base"] + - type: StaticPrice + price: 0 + - type: StackPrice + price: 500 + - type: Appearance - type: Item heldPrefix: diamond - type: Extractable diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index bf7dbfad5a3..136d20cc81b 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -66,6 +66,37 @@ - type: Stack count: 1 +- type: entity + parent: OreBase + id: DiamondOre + name: diamond ore + suffix: Full + components: + - type: Stack + stackType: DiamondOre + - type: Sprite + state: diamond + - type: Material + - type: PhysicalComposition + materialComposition: + RawDiamond: 500 + - type: Extractable + grindableSolutionName: diamondore + - type: SolutionContainerManager + solutions: + diamondore: + reagents: + - ReagentId: Carbon + Quantity: 20 + +- type: entity + parent: DiamondOre + id: DiamondOre1 + suffix: Single + components: + - type: Stack + count: 1 + - type: entity parent: OreBase id: SteelOre diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 67cf6f767da..66f4f684e9a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -1175,6 +1175,7 @@ - IngotGold30 - IngotSilver30 - MaterialBananium10 + - MaterialDiamond - type: entity parent: OreProcessor diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index e14bf26e0db..c0a30e76694 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -93,6 +93,28 @@ state: rock_asteroid_west - state: rock_gold +- type: entity + id: AsteroidRockDiamond + parent: AsteroidRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_asteroid + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west + - state: rock_diamond + - type: entity id: AsteroidRockPlasma parent: AsteroidRock @@ -693,6 +715,28 @@ state: rock_west - state: rock_gold +- type: entity + id: WallRockDiamond + parent: WallRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_diamond + - type: entity id: WallRockPlasma parent: WallRock @@ -993,6 +1037,28 @@ state: rock_wall_west - state: rock_gold +- type: entity + id: WallRockBasaltDiamond + parent: WallRockBasalt + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_diamond + - type: entity id: WallRockBasaltPlasma parent: WallRockBasalt @@ -1236,6 +1302,28 @@ state: rock_snow_west - state: rock_gold +- type: entity + id: WallRockSnowDiamond + parent: WallRockSnow + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_snow + - map: [ "enum.EdgeLayer.South" ] + state: rock_snow_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_snow_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_snow_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_snow_west + - state: rock_diamond + - type: entity id: WallRockSnowPlasma parent: WallRockSnow @@ -1479,6 +1567,28 @@ state: rock_sand_west - state: rock_gold +- type: entity + id: WallRockSandDiamond + parent: WallRockSand + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_sand + - map: [ "enum.EdgeLayer.South" ] + state: rock_sand_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_sand_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_sand_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_sand_west + - state: rock_diamond + - type: entity id: WallRockSandPlasma parent: WallRockSand @@ -1589,7 +1699,6 @@ state: rock_sand_west - state: rock_uranium - - type: entity id: WallRockSandBananium parent: WallRockSand @@ -1722,6 +1831,28 @@ state: rock_chromite_west - state: rock_gold +- type: entity + id: WallRockChromiteDiamond + parent: WallRockChromite + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_chromite + - map: [ "enum.EdgeLayer.South" ] + state: rock_chromite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_chromite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_chromite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_chromite_west + - state: rock_diamond + - type: entity id: WallRockChromitePlasma parent: WallRockChromite @@ -1965,6 +2096,28 @@ state: rock_andesite_west - state: rock_gold +- type: entity + id: WallRockAndesiteDiamond + parent: WallRockAndesite + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: rock_andesite + - map: [ "enum.EdgeLayer.South" ] + state: rock_andesite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_andesite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_andesite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_andesite_west + - state: rock_diamond + - type: entity id: WallRockAndesitePlasma parent: WallRockAndesite diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index 061288d010b..2817b083bed 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -32,6 +32,9 @@ - id: WallRockGold prob: 0.05 orGroup: rock + - id: WallRockDiamond + prob: 0.005 + orGroup: rock - id: WallRockSilver prob: 0.05 orGroup: rock diff --git a/Resources/Prototypes/Procedural/Magnet/asteroid.yml b/Resources/Prototypes/Procedural/Magnet/asteroid.yml index c20b80af55b..c380dfbc7cf 100644 --- a/Resources/Prototypes/Procedural/Magnet/asteroid.yml +++ b/Resources/Prototypes/Procedural/Magnet/asteroid.yml @@ -6,6 +6,7 @@ OreCoal: 1.0 OreSalt: 1.0 OreGold: 0.25 + OreDiamond: 0.05 OreSilver: 0.25 OrePlasma: 0.15 OreUranium: 0.15 diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index 4a60427e305..a6e5fac2d84 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -130,6 +130,20 @@ maxGroupSize: 10 radius: 4 +- type: biomeMarkerLayer + id: OreDiamond + entityMask: + AsteroidRock: AsteroidRockDiamond + WallRock: WallRockDiamond + WallRockBasalt: WallRockBasaltDiamond + WallRockChromite: WallRockChromiteDiamond + WallRockSand: WallRockSandDiamond + WallRockSnow: WallRockSnowDiamond + maxCount: 6 + minGroupSize: 1 + maxGroupSize: 2 + radius: 4 + # Artifact Fragment - type: biomeMarkerLayer id: OreArtifactFragment diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index e8783760ddc..da99da7c75b 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -178,6 +178,13 @@ - !type:BiomeMarkerLoot proto: OreBananium +- type: salvageLoot + id: OreDiamond + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreDiamond + - type: salvageLoot id: OreArtifactFragment guaranteed: true diff --git a/Resources/Prototypes/Reagents/Materials/ores.yml b/Resources/Prototypes/Reagents/Materials/ores.yml index 18f1d9ebb3a..1555ab9e234 100644 --- a/Resources/Prototypes/Reagents/Materials/ores.yml +++ b/Resources/Prototypes/Reagents/Materials/ores.yml @@ -24,6 +24,15 @@ color: "#FFD700" price: 0.2 +- type: material + id: RawDiamond + stackEntity: DiamondOre1 + name: materials-raw-diamond + unit: materials-unit-piece + icon: { sprite: Objects/Materials/ore.rsi, state: diamond } + color: "#C9D8F2" + price: 0.5 + - type: material id: RawSilver stackEntity: SilverOre1 diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index 053715a1811..3efaac95a72 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -127,6 +127,13 @@ materials: RawBananium: 3000 +- type: latheRecipe + id: MaterialDiamond + result: MaterialDiamond1 + completetime: 3 + materials: + RawDiamond: 1000 + - type: latheRecipe id: SheetUranium1 result: SheetUranium1 diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml index 51254b5a7a6..3aaa04601aa 100644 --- a/Resources/Prototypes/Stacks/Materials/ore.yml +++ b/Resources/Prototypes/Stacks/Materials/ore.yml @@ -4,6 +4,13 @@ icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: gold } spawn: GoldOre1 maxCount: 30 + +- type: stack + id: DiamondOre + name: rough diamond + icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: diamond } + spawn: DiamondOre1 + maxCount: 30 - type: stack id: SteelOre diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index 84d1c667369..146f04b49c5 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -58,6 +58,12 @@ minOreYield: 1 maxOreYield: 3 +- type: ore + id: OreDiamond + oreEntity: DiamondOre1 + minOreYield: 1 + maxOreYield: 2 + - type: ore id: OreQuartzCrab oreEntity: MobSpawnCrabQuartz diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-left.png index c9b55e9daa52ea2f352f43917ffa03611e0c5512..9eae45d039abc1b118d047edae3ca52f3b28bb1f 100644 GIT binary patch delta 59 zcmcc5_=a(U3KwH>kh>GZx^prwCn}2ZTki6(^2$hD_K{2WaO4v0iEeGe?YVjOf1)Nc O0D-5gpUXO@geCxoViiyT delta 48 zcmaFEc%N~C%0xq9ep@RKE3b^iWgod@4@)jFo*3LFoS&QbXX>LG1|aZs^>bP0l+XkK DuM!c9 diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond-inhand-right.png index 295c2c4eca1dddeb5fb91200177af77b78a76710..3353eb6f7caea4fa57c518ff3ecf7cf12666714b 100644 GIT binary patch delta 198 zcmaFP_=RzT3KwH>kh>GZx^prwCn}27%jgKX6`nSk64_`t$2CGx_imuV5|LvZ4?QX` z{tw;Oy}bD0DRo8$2#9mredSv8x9n$Eq`pjOdwMf)mY(L^|0lNZTK)FvzvySq*%8x9 zrmJ~cc^+Qtd|+#8=^2|_soQLC_kCg6l_vLA=;^0?L1Sj9Squ!(!W)e*7=GF)A0WKd u_`;<(>{n8bzUC{8E3e3uG-+TMTV zR(fX6Tcg|aa^0(#VvW;xyX^cEeB=z&ECz-H*IeH4Y%$#PhW(1mTb?Z@zZp#zKPqM0 k)pbMiMc@B&h6D9Gn3pWeUD_Nmi4mm9)78&qol`;+04q0CTL1t6 diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond.png index 5eb8aabf8796f2a3b5ffce29119ea1b73dbdbb9b..8b39437d0ac358f85f04f69f9a743c0325c6dbc9 100644 GIT binary patch delta 239 zcmV+v2VHk$7F-7iz zT59IzT#MrJ6M&|NsAn|Nr~{|9}7g|C#^)&;S2_|NsB_|Nj^K|L<^4gdeDmrzFTP znBl;G5CD@C)eo!&inn>XIEGZrNlvJjxYH0A5FpU1pOTZ)qN5}8v;Z{M6MdNaCi9S$K>qUP^%Twzu?oMZ=a4G?J8i*bPP;Q4t31j!H_&b>4K~m zhqGi$x`cGJk6Xm)0~uj)acvt|max1qU`%0jGY(;OP@T*gz$zhbw1APZgz*;>LyK^% W=;V3o>MMY5V(@hJb6Mw<&;$V4^l+vC diff --git a/Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png b/Resources/Textures/Objects/Materials/materials.rsi/diamond_2.png new file mode 100644 index 0000000000000000000000000000000000000000..410d83f1c29f1e958fb38d3c0594d059846ffe0e GIT binary patch literal 345 zcmV-f0jBPx$6G=otR9J=Wlrc`jFcgNr07481b?b)8#)fYY#Kcv&1-Hm;Ah|&V3tL&cv_k6s zGuTE}sFY_y>45(wvJ>n3{GMYdDJl8yseZb!k=n6u9;)hgF9MC!uAr`g#g6yyKnKjB z8LgbnrVCF8^vQf2ci&b_5E$&@<_b6m*1%JkycPx$T}ebiR9J=Wls!(vKoo?(MF^#!h@hZD$pyeCz!nu(am5w5h3`Q{1@;XhXwoHZ znvfz5)lhg%R>t<)`B92^Bx}9veV*BQ?=AG`(c{!%whc_A)VC)#COU|KL`oMBhQO%e z`y9xC8_0Yj&UPUWELoX60775^q0g!Ft^x{Vb_{@tvtG=ze-T>>s5rs>7`OzMz&r3* z+7LKGrn?Aeo9i`j>yS_EGiXr*wF1hyo|Ht)$sHI2E8qvX243xakPlvXQ&5-dCGbUF zY!4N2a~Ni}2%B7J?1B(@w&aC~phUiFC)7F+8xz^Ua0Cq5IIys(5(|%-Gs3*(VKO2MgDRD+0!h&1O&fMX zBBd{q+@eaPbS7yg>08o=r1GA*gdL6C6>&839zA+&i(e?myS|8_8-D-* N002ovPDHLkV1hl2wF>|M literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/materials.rsi/meta.json b/Resources/Textures/Objects/Materials/materials.rsi/meta.json index 78f497c0cda..3ae12dc14c0 100644 --- a/Resources/Textures/Objects/Materials/materials.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/materials.rsi/meta.json @@ -78,6 +78,12 @@ { "name": "diamond" }, + { + "name": "diamond_2" + }, + { + "name": "diamond_3" + }, { "name": "diamond-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/diamond.png b/Resources/Textures/Objects/Materials/ore.rsi/diamond.png new file mode 100644 index 0000000000000000000000000000000000000000..b2a3c788d34c3190e6ff143d2b0cc324597bad94 GIT binary patch literal 390 zcmV;10eSw3P)Px$KuJVFR9J=Wl(9<0KoExih!1epam8)g%X$!NjkqZ+?Cllod<9=5*XJb!3wK2X zOD(eHL8=gtq_7{G+jTt1Og){h-5(|$7t;P6ifNlOA8?n z08s(T&Aa4z{;TGmj{z-&)I!*9F@SSGxVi0`oly`;MMNDD@ie2OvkT&BW@E+@x_@{f zQ#W)qUMq+J93P%wGMxbcCezus`1%1z_GZSeg1WK9_Qw!wU{#2uhKJPb!l3C0pyZ|(wP3GpU2GIZ9Ke6)0cT606jQbG zQRE{KAT|iZ_@G97B0gzCOpGRgkw7Q`%SZ6l2Oq$|gAhqffCr;S6MPb5jF`ZKsjL#K zk#Cfb3YCwP%k_G_?%nR*+}_MDxomE)z2EH2?0?MO&VOdXVzF4_!(I`w zev8E~n>stS))>?M7E6Wj>dBJ@pGsTq+zIXU)8!X&k|Iv(HRq&=I4Kb)8Kysxyet=sIk%a_htLt10Dw?fk9v(kytiZ3cu@~3`_&6fL@>-=o%{x ze*J+nIv?A*yMN`Qnwp{=K{6nyKf}EkSPHBL4g|!tc3PqiTMl{a#horGctC_x)P;^Mccm?e|>(ue^|AZ*A?c zf8Koi_NWE2p`#;cVGW|%`~yH&ZG9Clr*549_5lxo!3h1H`!K56>60Z{RYe>jR!gH9KA(@G;OzNPR%r761%oL^Z0-ACIc} z{}N&5XSuzLfF-DA=OA#3kTM_2ya1s1-vJ@Ii@pplDeG_C(0bD;O23Gc@Lpm2L%R&^ z>FMF!_I7QB5T!qnSSH>}hu>0;e64w8$SD68B7gE}d-1{@>2#pP8smTC^y!>`_@jud zY;E=RCA$LD4AcFVxbpsqeyyc$wEvx}SG69z>3&}v)Z8wb?zdPf2;G-iru!`xi^XCv zy5r+b_gmtI?)Z4q{T54wVCwvUlKb~$_43{X1revZkO>M$MdYh)ku{eu7nF!>f3d{X zKYt82^Xo*M#UjpfcU$MT5Vm!9YwdvI;2$;6NN0S$N#qO6(ixv08L{!ZZT@l*r&Ywc z^!tD3jc><|mY!Ki?UkGd_O=8s;aI#P6pMD0zIoN#qSr*BPI0 z3S-U>&>5d^DS%3z9}uPA&JU;%zopa|6@Q3&Px&>bIdy5C}{ z5R8e>*X`FGA8)!pRN@eyU&($;ITD-r{BrYGYJ7fN{QQukb1G$gzUh98#bPOE;(r>S zuiGEm{D5>%59{08rO+AmVWB%dzgT}Lk1&bVqdv-vqR#*?K0a$k{fodS?sfq%IjS?E zQsxKvDu7(^@v9y_aMPPnzXaG0%yhRyPn(M(K7Z9H4;&2?pC5uh7y10d3ShMO_{V`G z*M1r8JG`gPtpz6DU}8Nmk&LI!?SHDS_LbNo{X>X2vYVwN3ZYbf$Q`(q&mXuC5OGq# zJXEu@9hLb#z;56;a6XY()*sYUKzbyRSXTCr=kf^SDrn$?pBMdsdcfIk;EKCFh3be0 zLU80IGd^EO=4+oH5OiIkp#G>GDTPziX?)Z4q{T7SGVt+9h-SP32 z=8w%ilR}8oGHaoYh-KpbDxM(XRBh?(lv0k4WsFbE0~URFcSau(j!TS|2Jf!GSjQjw z8Q{vQP%G_D0PX`ff!?TVVb2^Ygf0rd%Q#e_&jhx9(_6n1weI#zMpjIFg?|*krBl;UwQ^{L zE<%42)$BC?#f%m6k`ws+)}$4v3NSvGdqe@W6foAAgF#fAzwsIVIeU%));xCaEU?kt zKW6(I(BF${^V3gq`&w7xKF?P7Ujx$a{@$_D5W?|40QN29>amM5z?)O=9V27C?d*RD zwG+H}uFY1oGvCCs_rcBq}O z`{iCt&}HCtcRQ5%5y$6up)$D@*n_(I*h5CqBO9i3(GRt(oC1m~wF?fKdtyPz}00000NkvXXu0mjfAd}HG literal 1307 zcmeAS@N?(olHy`uVBq!ia0vp^2|(Py!3HG1+{xJmq&N#aB8wRq_>O=u<5X=vX$A(C zvz{)FAr*7p&OPWI;wW=GUD3cNXrkAIv(0isO?=N(KP-`3Rb28ig`>11DCm>EfXS8@ z0RoaC0vC7gdanCfOybGWGXYK^1*-m+`wV}TeLs1wI{#Vi{p#O;n>Os;@q6aa+WY6; zoI5w&QcYt;21A4i!V>*DHOyyPq~y?guCr2bj6*2FYMJ`I;Jh@JD)y+&=;f)D*iuiw<< z*tmC(PW-m*()Qc0{SamAiJ0|ty-57?f9L!boKv5v|1^B&=~$CG-QazfEgvL0H*e)M z$Y9L*Bx>y=?ek-!{~_~f)1J&ecg~@eGnzrV=Ipn7{g>K`_HAV3xBEY}TKwA)pXB5v zOf98VB3#b_O+kfmzYiY+{^po^;%)(osU)h_wC-PDQ|B6+w94=U%P6m zp7}gcbSMoejrjQcsQJUUJF@qst-d{Lz5Mp0=4J^8(u=IP)}<`|5w%O;X?Uzm&DnS2 z-0a_TKLvkw)p>P8erj&=zmLILJPxO?vL>8uh|bRb6q&94M$1?G{w&5;Cr6&O>rOq- z&7GjMWNQA|hU>Dj7ebG3`Q$A9A31>g2Cq z7kbYc?LX4+y1V;RYKmAH8;@ndi4EY+#ap@ZC_`FSS?xMuXvp+m_iie2xhh88!e@!5Q|3pU8Ml%fTc&hBN6< zY%bR{;rHjmTD&#N%s@u2cIKZ|Yzp6>SGS&0-|;Nmlwqg+eeDptgQoX0IGo;{zwY!* zIObEYdg7CRe{{Ocp18XG8oK9#*+c1Zs zCoNne;CXL;{^b4Vo#x6f_ILaHq*M9azK&3iBEK44-F0vGH8~ANvg=4*z60a%#o&xh-ZP$=0XY zHGX_3TfUWv<>Bi`+W&kWPnv4Bq;dA(F^(@tY?vJ_x`KxT% z#SS;zrr3*J|MzDxmq5DRfhGTEo@4(Z+VHbs!mDIEh1tJ9U#wZz*5t~3068r@|H+tO zcOK~U$~s_td Date: Sat, 13 Jul 2024 12:17:05 +0000 Subject: [PATCH 63/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ca549b51fb3..e4c8aa1b430 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,18 +1,4 @@ Entries: -- author: FairlySadPanda - changes: - - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact - Analyzers to make artifact gameplay a bit more controlled. - type: Tweak - - message: The T2 Abnormal Artifact Manipulation tech has been made cheaper to compensate - for losing an unlock. - type: Tweak - - message: The Xenoarchaeology guidebook entry has been rewritten to be more useful - and comprehensive for newbies. - type: Tweak - id: 6415 - time: '2024-04-21T16:09:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26545 - author: deltanedas changes: - message: Flaming mice no longer completely engulf people they touch. @@ -3818,3 +3804,12 @@ id: 6914 time: '2024-07-13T06:09:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29550 +- author: TheShuEd + changes: + - message: Added diamonds ore! + type: Add + - message: Diamonds can now be sold at a bargain price. + type: Add + id: 6915 + time: '2024-07-13T12:15:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25750 From dcb3443b352ac6004886ab6eedf3a0fe3388b707 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Sat, 13 Jul 2024 15:45:35 +0300 Subject: [PATCH 64/97] Vgroid diamonds hotfix (#29999) vgroid diamonds --- .../Entities/Structures/Walls/asteroid.yml | 22 +++++++++++++++++++ Resources/Prototypes/Procedural/vgroid.yml | 6 +++++ 2 files changed, 28 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index c0a30e76694..4673405e03f 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -611,6 +611,28 @@ state: ironrock_west - state: rock_artifact_fragment +- type: entity + id: IronRockDiamond + parent: IronRock + description: An ore vein rich with diamonds. + suffix: Diamond + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreDiamond + - type: Sprite + layers: + - state: ironrock + - map: [ "enum.EdgeLayer.South" ] + state: ironrock_south + - map: [ "enum.EdgeLayer.East" ] + state: ironrock_east + - map: [ "enum.EdgeLayer.North" ] + state: ironrock_north + - map: [ "enum.EdgeLayer.West" ] + state: ironrock_west + - state: rock_diamond + # Rocks and ore veins - type: entity id: WallRock diff --git a/Resources/Prototypes/Procedural/vgroid.yml b/Resources/Prototypes/Procedural/vgroid.yml index 49e956e73f5..6e9fc6f3957 100644 --- a/Resources/Prototypes/Procedural/vgroid.yml +++ b/Resources/Prototypes/Procedural/vgroid.yml @@ -82,6 +82,12 @@ count: 50 minGroupSize: 2 maxGroupSize: 4 + - !type:OreDunGen + replacement: IronRock + entity: IronRockDiamond + count: 15 + minGroupSize: 1 + maxGroupSize: 2 # Configs - type: dungeonConfig From 130697fcf712d12a14493fe7b5c108bd3e1a8c2e Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sat, 13 Jul 2024 17:20:43 +0200 Subject: [PATCH 65/97] Add hyperlink space law in migration (#2406) --- Resources/migration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/migration.yml b/Resources/migration.yml index eb32154725a..69f42255aa4 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -365,3 +365,6 @@ BookChefGaming: BookHowToCookForFortySpaceman #2024-06-29 IntercomAssesmbly: IntercomAssembly + +#2024-07-13 Corvax +HyperLinkBookCorporateLaw: BookSpaceLaw From e6a5cf08b844566483d617b82d9b6714af6fee5b Mon Sep 17 00:00:00 2001 From: Meguneri <163569304+Meguneri@users.noreply.github.com> Date: Sat, 13 Jul 2024 19:16:07 +0300 Subject: [PATCH 66/97] [Maps] Maus update (#2407) --- Resources/Maps/corvax_maus.yml | 11922 ++++++++++++++++--------------- 1 file changed, 6212 insertions(+), 5710 deletions(-) diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 9151232e510..785171aecbc 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -193,7 +193,7 @@ entities: version: 6 -1,-4: ind: -1,-4 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAEgAAAAAAbAAAAAAAGAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAEgAAAAAAbAAAAAAAGAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -237,7 +237,7 @@ entities: version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAAfgAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeQAAAAAACgAAAAAAfgAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-2: ind: -6,-2 @@ -273,7 +273,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: MgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAADQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + tiles: MgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAfgAAAAAADQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADQAAAAAAegAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -281,15 +281,15 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANgAAAAAAEgAAAAAAEgAAAAAANgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAdAAAAAAACAAAAAAAdAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAANgAAAAAANgAAAAAAfgAAAAAAdAAAAAAACAAAAAAAdAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAdQAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAcAAAAAAAfgAAAAAAKAAAAAAAIAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAKAAAAAAAKAAAAAAAIAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANgAAAAAAEgAAAAAAEgAAAAAANgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAANgAAAAAANgAAAAAAfgAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdQAAAAAAdQAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAdQAAAAAAfgAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAKAAAAAAAIAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAKAAAAAAAKAAAAAAAIAAAAAAAKAAAAAAAbAAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAABAAAAAAABAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAABAAAAAAABAAAAAAAcAAAAAAAeQAAAAAABAAAAAAABAAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABAAAAAAABAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAMgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAAATQAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZwAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAfgAAAAAADQAAAAAADQAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZwAAAAAAfgAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAABAAAAAAABAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAABAAAAAAABAAAAAAAcAAAAAAAeQAAAAAABAAAAAAABAAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAABAAAAAAABAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAMgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAAATQAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZwAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAfgAAAAAADQAAAAAADQAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZwAAAAAAfgAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAACAAAAAAACAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAADQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAACAAAAAAACAAAAAAA version: 6 -5,-4: ind: -5,-4 @@ -411,182 +411,204 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 253: -19,-26 - 256: -14,-26 + 248: -19,-26 + 251: -14,-26 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 3399: -32,-48 - node: color: '#D381C9FF' id: ArrowsGreyscale decals: - 2780: -36,-80 - 2781: -39,-80 + 2743: -36,-80 + 2744: -39,-80 - node: angle: 3.141592653589793 rad color: '#D381C9FF' id: ArrowsGreyscale decals: - 2782: -39,-76 + 2745: -39,-76 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 254: -14,-26 - 255: -19,-26 + 249: -14,-26 + 250: -19,-26 - node: cleanable: True color: '#FFFFFFA4' id: Basalt1 decals: - 2941: -79.11104,-6.8946238 + 2894: -79.11104,-6.8946238 - node: cleanable: True color: '#FFFFFFA4' id: Basalt2 decals: - 2944: -74.89873,-8.163017 - 2945: -76.20198,-7.662642 + 2897: -74.89873,-8.163017 + 2898: -76.20198,-7.662642 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt2 + decals: + 3403: -67.94116,-10.07971 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 2600: -19,8 + 2563: -19,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Basalt4 + decals: + 3404: -69.014465,-8.994488 - node: cleanable: True color: '#FFFFFFA1' id: Basalt5 decals: - 3075: -27.505278,-2.5038342 + 3028: -27.505278,-2.5038342 - node: cleanable: True color: '#FFFFFFA4' id: Basalt5 decals: - 2942: -77.77287,-7.930285 - 2943: -75.37582,-6.0102386 + 2895: -77.77287,-7.930285 + 2896: -75.37582,-6.0102386 - node: cleanable: True color: '#FFFFFFBD' id: Basalt5 decals: - 3076: -28.040543,-2.6434736 + 3029: -28.040543,-2.6434736 - node: cleanable: True color: '#FFFFFFFF' id: Basalt5 decals: - 2603: -20,13 - 2604: -11,8 + 2566: -20,13 + 2567: -11,8 + 3401: -66.907524,-9.037028 - node: cleanable: True color: '#FFFFFFBD' id: Basalt6 decals: - 3078: -26.225294,-2.573654 + 3031: -26.225294,-2.573654 - node: cleanable: True angle: 0.6981317007977318 rad color: '#FFFFFFBD' id: Basalt6 decals: - 3079: -28.249994,-4.074781 + 3032: -28.249994,-4.074781 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 2597: -8,8 - 2598: -11,9 + 2560: -8,8 + 2561: -11,9 + 3400: -68.01088,-10.265968 - node: cleanable: True color: '#FFFFFFFF' id: Basalt8 decals: - 2599: -22,10 + 2562: -22,10 + 3402: -68.96228,-8.977564 - node: cleanable: True color: '#FFFFFFBD' id: Basalt9 decals: - 3077: -26.632563,-1.980185 + 3030: -26.632563,-1.980185 - node: cleanable: True color: '#FFFFFFFF' id: Basalt9 decals: - 2601: -15,10 - 2602: -21,12 + 2564: -15,10 + 2565: -21,12 - node: color: '#765428FF' id: Bot decals: - 1896: -42,-40 - 1897: -43,-40 - 1898: -41,-40 + 1860: -42,-40 + 1861: -43,-40 + 1862: -41,-40 - node: color: '#B02E26FF' id: Bot decals: - 2850: -14,-20 - 2851: -15,-20 - 2852: -13,-20 - 2853: -15,-18 - 2854: -14,-18 - 2855: -13,-18 - 2856: -11,-19 - 2857: -11,-18 + 2811: -14,-20 + 2812: -15,-20 + 2813: -13,-20 + 2814: -15,-18 + 2815: -14,-18 + 2816: -13,-18 + 2817: -11,-19 + 2818: -11,-18 - node: color: '#DE3A3A96' id: Bot decals: - 2634: -22,-2 - 2635: -20,3 - 2636: -15,-13 + 2597: -22,-2 + 2598: -20,3 + 2599: -15,-13 - node: color: '#FFFFFFFF' id: Bot decals: - 36: -72,-21 - 99: -11,-25 - 264: -12,-52 - 265: -12,-53 - 266: -12,-54 - 267: -14,-52 - 268: -14,-53 - 269: -14,-54 - 270: -10,-52 - 271: -10,-53 - 272: -10,-54 - 1453: -21,-50 - 1454: -21,-49 - 2633: -15,-15 - 2919: -77,-13 + 34: -72,-21 + 97: -11,-25 + 259: -12,-52 + 260: -12,-53 + 261: -12,-54 + 262: -14,-52 + 263: -14,-53 + 264: -14,-54 + 265: -10,-52 + 266: -10,-53 + 267: -10,-54 + 1441: -21,-50 + 1442: -21,-49 + 2596: -15,-15 + 2872: -77,-13 + 3377: -57,-35 + 3378: -55,-35 + 3379: -55,-37 - node: zIndex: 1 color: '#FFFFFFFF' id: Bot decals: - 1447: -57,-35 - 1449: -55,-35 - 1456: -60,-39 + 1444: -60,-39 - node: color: '#AE6716CD' id: BotGreyscale decals: - 3080: -41,-38 + 3033: -41,-38 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2320: -36,-8 + 2283: -36,-8 - node: zIndex: 1 color: '#FFFFFFFF' id: BotGreyscale decals: - 3048: -35,-67 - 3049: -36,-67 - 3050: -37,-67 - 3051: -38,-67 + 3001: -35,-67 + 3002: -36,-67 + 3003: -37,-67 + 3004: -38,-67 - node: color: '#FFFFFFFF' id: BotLeft @@ -594,2602 +616,2598 @@ entities: 5: -37,-21 6: -36,-21 7: -34,-21 - 2248: -35,-21 + 2212: -35,-21 - node: color: '#FFFFFFFF' id: Box decals: - 43: -19,-31 - 273: -14,-55 - 274: -10,-55 - 1455: -21,-48 + 41: -19,-31 + 268: -14,-55 + 269: -10,-55 + 1443: -21,-48 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 2502: -4,-16 + 2465: -4,-16 - node: color: '#DE3A3AFF' id: BrickBoxOverlay decals: - 291: -49,-38 - 292: -51,-38 + 283: -49,-38 + 284: -51,-38 - node: zIndex: 1 color: '#334E6DFF' id: BrickCornerOverlayNE decals: - 3115: -88,-21 + 3068: -88,-21 - node: color: '#4B709CFF' id: BrickCornerOverlayNE decals: - 330: -53,-10 + 322: -53,-10 - node: zIndex: 1 color: '#571212FF' id: BrickCornerOverlayNE decals: - 2937: -78,-19 + 2890: -78,-19 - node: zIndex: 2 color: '#639137FF' id: BrickCornerOverlayNE decals: - 1811: -34,-30 + 1775: -34,-30 - node: color: '#8D1C9996' id: BrickCornerOverlayNE decals: - 2286: -4,-5 - 2290: -3,-6 + 2250: -4,-5 + 2254: -3,-6 - node: color: '#AE6716FF' id: BrickCornerOverlayNE decals: - 351: -62,-7 - 358: -61,-12 + 343: -62,-7 + 350: -61,-12 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE decals: - 2579: -5,3 + 2542: -5,3 - node: zIndex: 1 color: '#334E6DFF' id: BrickCornerOverlayNW decals: - 3113: -91,-21 + 3066: -91,-21 - node: color: '#4B709CFF' id: BrickCornerOverlayNW decals: - 329: -51,-10 + 321: -51,-10 - node: zIndex: 1 color: '#571212FF' id: BrickCornerOverlayNW decals: - 2940: -79,-19 + 2893: -79,-19 - node: zIndex: 2 color: '#639137FF' id: BrickCornerOverlayNW decals: - 1814: -35,-30 + 1778: -35,-30 - node: color: '#8D1C9996' id: BrickCornerOverlayNW decals: - 2283: -6,-5 + 2247: -6,-5 - node: color: '#AE6716FF' id: BrickCornerOverlayNW decals: - 350: -64,-7 + 342: -64,-7 - node: color: '#DE3A3A96' id: BrickCornerOverlayNW decals: - 2575: -8,3 + 2538: -8,3 - node: zIndex: 1 color: '#334E6DFF' id: BrickCornerOverlaySE decals: - 3112: -88,-22 + 3065: -88,-22 - node: color: '#4B709CFF' id: BrickCornerOverlaySE decals: - 327: -53,-8 + 319: -53,-8 - node: zIndex: 1 color: '#571212FF' id: BrickCornerOverlaySE decals: - 2938: -78,-20 + 2891: -78,-20 - node: zIndex: 2 color: '#639137FF' id: BrickCornerOverlaySE decals: - 1812: -34,-32 + 1776: -34,-32 - node: color: '#8D1C9996' id: BrickCornerOverlaySE decals: - 2285: -3,-8 + 2249: -3,-8 - node: color: '#AE6716FF' id: BrickCornerOverlaySE decals: - 354: -62,-10 - 360: -64,-16 + 346: -62,-10 + 352: -64,-16 - node: zIndex: 1 color: '#AE6716FF' id: BrickCornerOverlaySE decals: - 3042: -68,-20 + 2995: -68,-20 - node: color: '#DE3A3A96' id: BrickCornerOverlaySE decals: - 2578: -5,1 + 2541: -5,1 - node: zIndex: 1 color: '#DE3A3A96' id: BrickCornerOverlaySE decals: - 2482: -17,-20 + 2445: -17,-20 - node: zIndex: 1 color: '#334E6DFF' id: BrickCornerOverlaySW decals: - 3114: -91,-22 + 3067: -91,-22 - node: color: '#4B709CFF' id: BrickCornerOverlaySW decals: - 328: -51,-8 + 320: -51,-8 - node: zIndex: 1 color: '#571212FF' id: BrickCornerOverlaySW decals: - 2939: -79,-20 + 2892: -79,-20 - node: zIndex: 2 color: '#639137FF' id: BrickCornerOverlaySW decals: - 1813: -35,-32 + 1777: -35,-32 - node: color: '#8D1C9996' id: BrickCornerOverlaySW decals: - 2284: -6,-8 + 2248: -6,-8 - node: color: '#AE6716FF' id: BrickCornerOverlaySW decals: - 353: -64,-10 + 345: -64,-10 - node: zIndex: 1 color: '#AE6716FF' id: BrickCornerOverlaySW decals: - 3040: -70,-20 + 2993: -70,-20 - node: color: '#DE3A3A96' id: BrickCornerOverlaySW decals: - 2574: -8,1 + 2537: -8,1 - node: color: '#334E6DC8' id: BrickLineOverlayE decals: - 2366: -31,-5 - 2367: -31,-4 - 2368: -31,-3 + 2329: -31,-5 + 2330: -31,-4 + 2331: -31,-3 - node: color: '#446326FF' id: BrickLineOverlayE decals: - 1850: -43,-33 - 1851: -43,-32 - 1852: -43,-31 - 1853: -43,-30 - 1854: -43,-29 - 2054: -43,-34 + 1814: -43,-33 + 1815: -43,-32 + 1816: -43,-31 + 1817: -43,-30 + 1818: -43,-29 + 2018: -43,-34 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayE decals: - 1540: -60,-26 - 1541: -60,-27 - 1542: -60,-28 - 1543: -60,-29 - 1609: -64,-27 - 1610: -64,-26 + 1506: -60,-26 + 1507: -60,-27 + 1508: -60,-28 + 1509: -60,-29 + 1575: -64,-27 + 1576: -64,-26 - node: zIndex: 2 color: '#52B4E996' id: BrickLineOverlayE decals: - 1381: -49,-33 - 1382: -49,-32 - 1383: -49,-31 - 1384: -49,-30 + 1371: -49,-33 + 1372: -49,-32 + 1373: -49,-31 + 1374: -49,-30 - node: color: '#52B4E9FF' id: BrickLineOverlayE decals: - 275: -53,-34 - 277: -53,-38 - 280: -53,-42 + 270: -53,-34 + 272: -53,-42 - node: zIndex: 2 color: '#639137FF' id: BrickLineOverlayE decals: - 1816: -34,-31 + 1780: -34,-31 - node: color: '#8D1C9996' id: BrickLineOverlayE decals: - 2288: -3,-7 + 2252: -3,-7 - node: zIndex: 1 color: '#A41500B4' id: BrickLineOverlayE decals: - 2451: -17,-17 - 2452: -17,-15 - 2453: -17,-13 - 2454: -17,-11 - 2455: -17,-9 - 2456: -17,-7 - 2457: -17,-5 - 2458: -17,-3 - 2477: -17,-19 + 2414: -17,-17 + 2415: -17,-15 + 2416: -17,-13 + 2417: -17,-11 + 2418: -17,-9 + 2419: -17,-7 + 2420: -17,-5 + 2421: -17,-3 + 2440: -17,-19 - node: color: '#AE6716FF' id: BrickLineOverlayE decals: - 343: -62,-9 - 344: -62,-8 - 356: -62,-11 - 359: -61,-13 - 406: -68,-17 + 335: -62,-9 + 336: -62,-8 + 348: -62,-11 + 351: -61,-13 + 398: -68,-17 - node: zIndex: 1 color: '#AE6716FF' id: BrickLineOverlayE decals: - 3043: -68,-19 - 3044: -68,-18 - 3045: -68,-17 + 2996: -68,-19 + 2997: -68,-18 + 2998: -68,-17 - node: color: '#DE3A3A96' id: BrickLineOverlayE decals: - 2580: -5,2 + 2543: -5,2 - node: zIndex: 1 color: '#DE3A3A96' id: BrickLineOverlayE decals: - 2426: -17,-18 - 2427: -17,-16 - 2428: -17,-14 - 2429: -17,-12 - 2430: -17,-10 - 2431: -17,-8 - 2432: -17,-6 - 2433: -17,-4 - 2434: -17,-2 + 2389: -17,-18 + 2390: -17,-16 + 2391: -17,-14 + 2392: -17,-12 + 2393: -17,-10 + 2394: -17,-8 + 2395: -17,-6 + 2396: -17,-4 + 2397: -17,-2 - node: color: '#DE3A3AFF' id: BrickLineOverlayE decals: - 282: -49,-35 - 283: -49,-36 - 284: -49,-37 + 274: -49,-35 + 275: -49,-36 + 276: -49,-37 - node: zIndex: 1 color: '#334E6DFF' id: BrickLineOverlayN decals: - 3116: -90,-21 - 3117: -89,-21 + 3069: -90,-21 + 3070: -89,-21 - node: color: '#446326FF' id: BrickLineOverlayN decals: - 1864: -44,-27 - 1865: -43,-27 - 1866: -42,-27 - 1868: -42,-29 + 1828: -44,-27 + 1829: -43,-27 + 1830: -42,-27 + 1832: -42,-29 - node: color: '#52B4E996' id: BrickLineOverlayN decals: - 1600: -64,-26 + 1566: -64,-26 - node: cleanable: True color: '#52B4E996' id: BrickLineOverlayN decals: - 1508: -60,-31 - 1510: -52,-31 + 1474: -60,-31 + 1476: -52,-31 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayN decals: - 1535: -66,-26 - 1536: -65,-26 - 1537: -62,-26 - 1538: -61,-26 - 1539: -60,-26 - 1608: -63,-28 + 1501: -66,-26 + 1502: -65,-26 + 1503: -62,-26 + 1504: -61,-26 + 1505: -60,-26 + 1574: -63,-28 - node: zIndex: 2 color: '#52B4E996' id: BrickLineOverlayN decals: - 1329: -53,-31 - 1330: -54,-31 - 1331: -66,-31 - 1332: -65,-31 - 1333: -64,-31 - 1334: -63,-31 - 1335: -62,-31 - 1336: -61,-31 - 1337: -59,-31 - 1338: -58,-31 - 1339: -57,-31 - 1340: -56,-31 - 1341: -55,-31 + 1319: -53,-31 + 1320: -54,-31 + 1321: -66,-31 + 1322: -65,-31 + 1323: -64,-31 + 1324: -63,-31 + 1325: -62,-31 + 1326: -61,-31 + 1327: -59,-31 + 1328: -58,-31 + 1329: -57,-31 + 1330: -56,-31 + 1331: -55,-31 - node: zIndex: 1 color: '#724276FF' id: BrickLineOverlayN decals: - 2643: -49,-76 - 2644: -48,-76 - 2645: -47,-76 + 2606: -49,-76 + 2607: -48,-76 + 2608: -47,-76 - node: color: '#8D1C9996' id: BrickLineOverlayN decals: - 2287: -5,-5 + 2251: -5,-5 - node: zIndex: 1 color: '#A41500B4' id: BrickLineOverlayN decals: - 2480: -19,-18 - 2481: -21,-18 + 2443: -19,-18 + 2444: -21,-18 - node: zIndex: 1 color: '#AE6716FF' id: BrickLineOverlayN decals: - 3008: -73,-13 - 3009: -72,-13 - 3010: -71,-13 - 3011: -70,-13 - 3012: -69,-13 + 2961: -73,-13 + 2962: -72,-13 + 2963: -71,-13 + 2964: -70,-13 + 2965: -69,-13 - node: color: '#DE3A3A96' id: BrickLineOverlayN decals: - 2576: -7,3 - 2577: -6,3 + 2539: -7,3 + 2540: -6,3 - node: zIndex: 1 color: '#DE3A3A96' id: BrickLineOverlayN decals: - 2484: -20,-18 + 2447: -20,-18 - node: color: '#DE3A3AFF' id: BrickLineOverlayN decals: - 290: -52,-36 + 282: -52,-36 - node: color: '#334E6DC8' id: BrickLineOverlayS decals: - 2374: -36,0 - 2375: -35,0 - 2376: -34,0 - 2377: -33,0 - 2378: -32,0 + 2337: -36,0 + 2338: -35,0 + 2339: -34,0 + 2340: -33,0 + 2341: -32,0 - node: zIndex: 1 color: '#334E6DFF' id: BrickLineOverlayS decals: - 3118: -90,-22 - 3119: -89,-22 + 3071: -90,-22 + 3072: -89,-22 - node: color: '#446326FF' id: BrickLineOverlayS decals: - 1870: -42,-34 + 1834: -42,-34 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayS decals: - 1473: -53,-41 - 1474: -54,-41 - 1475: -55,-41 - 1476: -56,-41 - 1477: -57,-41 - 1478: -58,-41 - 1496: -58,-37 - 1497: -57,-37 - 1498: -56,-37 - 1499: -55,-37 - 1500: -54,-37 - 1501: -53,-37 - 1544: -60,-29 - 1545: -61,-29 - 1546: -62,-29 - 1547: -63,-29 - 1548: -64,-29 - 1549: -65,-29 - 1550: -66,-29 + 1456: -55,-41 + 1510: -60,-29 + 1511: -61,-29 + 1512: -62,-29 + 1513: -63,-29 + 1514: -64,-29 + 1515: -65,-29 + 1516: -66,-29 - node: zIndex: 2 color: '#52B4E996' id: BrickLineOverlayS decals: - 1342: -53,-33 - 1343: -54,-33 - 1344: -55,-33 - 1345: -56,-33 - 1346: -57,-33 - 1347: -58,-33 - 1348: -59,-33 - 1349: -60,-33 - 1350: -61,-33 - 1351: -62,-33 - 1352: -63,-33 - 1353: -64,-33 - 1354: -65,-33 - 1355: -66,-33 - 1377: -52,-33 - 1378: -51,-33 - 1379: -50,-33 - 1380: -49,-33 + 1332: -53,-33 + 1333: -54,-33 + 1334: -55,-33 + 1335: -56,-33 + 1336: -57,-33 + 1337: -58,-33 + 1338: -59,-33 + 1339: -60,-33 + 1340: -61,-33 + 1341: -62,-33 + 1342: -63,-33 + 1343: -64,-33 + 1344: -65,-33 + 1345: -66,-33 + 1367: -52,-33 + 1368: -51,-33 + 1369: -50,-33 + 1370: -49,-33 - node: color: '#8D1C9996' id: BrickLineOverlayS decals: - 2292: -5,-8 - 2293: -4,-8 + 2256: -5,-8 + 2257: -4,-8 - node: zIndex: 1 color: '#A41500B4' id: BrickLineOverlayS decals: - 2478: -18,-20 - 2479: -21,-20 + 2441: -18,-20 + 2442: -21,-20 - node: color: '#AE6716FF' id: BrickLineOverlayS decals: - 361: -65,-16 - 362: -66,-16 - 363: -67,-16 - 364: -68,-16 - 365: -69,-16 - 366: -63,-15 - 367: -62,-15 - 368: -61,-15 + 353: -65,-16 + 354: -66,-16 + 355: -67,-16 + 356: -68,-16 + 357: -69,-16 + 358: -63,-15 + 359: -62,-15 + 360: -61,-15 - node: zIndex: 1 color: '#AE6716FF' id: BrickLineOverlayS decals: - 3005: -73,-14 - 3006: -72,-14 - 3007: -71,-14 - 3041: -69,-20 + 2958: -73,-14 + 2959: -72,-14 + 2960: -71,-14 + 2994: -69,-20 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: - 2582: -7,1 - 2583: -6,1 + 2545: -7,1 + 2546: -6,1 - node: zIndex: 1 color: '#DE3A3A96' id: BrickLineOverlayS decals: - 2483: -20,-20 + 2446: -20,-20 - node: color: '#DE3A3AFF' id: BrickLineOverlayS decals: - 289: -52,-36 + 281: -52,-36 - node: color: '#334E6DC8' id: BrickLineOverlayW decals: - 2360: -40,-5 - 2361: -40,-4 - 2362: -40,-3 + 2323: -40,-5 + 2324: -40,-4 + 2325: -40,-3 - node: color: '#446326FF' id: BrickLineOverlayW decals: - 1855: -41,-34 - 1856: -41,-33 - 1857: -41,-32 - 1858: -41,-31 - 1859: -41,-30 - 1860: -41,-29 + 1819: -41,-34 + 1820: -41,-33 + 1821: -41,-32 + 1822: -41,-31 + 1823: -41,-30 + 1824: -41,-29 - node: color: '#52B4E996' id: BrickLineOverlayW decals: - 1531: -66,-26 - 1532: -66,-27 + 1497: -66,-26 + 1498: -66,-27 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayW decals: - 1462: -62,-39 - 1463: -62,-38 - 1464: -62,-37 - 1465: -62,-36 - 1466: -62,-35 - 1533: -66,-28 - 1534: -66,-29 - 1611: -62,-27 - 1612: -62,-26 + 1450: -62,-39 + 1451: -62,-38 + 1452: -62,-37 + 1453: -62,-36 + 1454: -62,-35 + 1499: -66,-28 + 1500: -66,-29 + 1577: -62,-27 + 1578: -62,-26 - node: zIndex: 2 color: '#52B4E996' id: BrickLineOverlayW decals: - 1385: -51,-30 + 1375: -51,-30 - node: color: '#52B4E9FF' id: BrickLineOverlayW decals: - 276: -53,-34 - 278: -53,-38 - 281: -53,-42 + 271: -53,-34 + 273: -53,-42 - node: zIndex: 2 color: '#639137FF' id: BrickLineOverlayW decals: - 1815: -35,-31 + 1779: -35,-31 - node: zIndex: 1 color: '#724276FF' id: BrickLineOverlayW decals: - 2642: -46,-75 + 2605: -46,-75 - node: color: '#8D1C9996' id: BrickLineOverlayW decals: - 2281: -6,-7 - 2282: -6,-6 + 2245: -6,-7 + 2246: -6,-6 - node: zIndex: 1 color: '#A41500B4' id: BrickLineOverlayW decals: - 2459: -18,-2 - 2460: -18,-4 - 2461: -18,-6 - 2462: -18,-8 - 2463: -18,-10 - 2464: -18,-12 - 2465: -18,-14 - 2466: -18,-16 + 2422: -18,-2 + 2423: -18,-4 + 2424: -18,-6 + 2425: -18,-8 + 2426: -18,-10 + 2427: -18,-12 + 2428: -18,-14 + 2429: -18,-16 - node: color: '#AE6716FF' id: BrickLineOverlayW decals: - 345: -64,-9 - 346: -64,-8 - 357: -64,-11 + 337: -64,-9 + 338: -64,-8 + 349: -64,-11 - node: zIndex: 1 color: '#AE6716FF' id: BrickLineOverlayW decals: - 3013: -70,-15 - 3036: -70,-16 - 3037: -70,-17 - 3038: -70,-18 - 3039: -70,-19 + 2966: -70,-15 + 2989: -70,-16 + 2990: -70,-17 + 2991: -70,-18 + 2992: -70,-19 - node: color: '#DE3A3A96' id: BrickLineOverlayW decals: - 2581: -8,2 + 2544: -8,2 - node: zIndex: 1 color: '#DE3A3A96' id: BrickLineOverlayW decals: - 2418: -18,-17 - 2419: -18,-15 - 2420: -18,-13 - 2421: -18,-11 - 2422: -18,-9 - 2423: -18,-7 - 2424: -18,-5 - 2425: -18,-3 + 2381: -18,-17 + 2382: -18,-15 + 2383: -18,-13 + 2384: -18,-11 + 2385: -18,-9 + 2386: -18,-7 + 2387: -18,-5 + 2388: -18,-3 - node: color: '#DE3A3AFF' id: BrickLineOverlayW decals: - 285: -51,-35 - 286: -51,-36 - 287: -51,-37 - 288: -51,-37 + 277: -51,-35 + 278: -51,-36 + 279: -51,-37 + 280: -51,-37 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 319: -47,-63 - 1714: -36,-70 - 2273: -4,-5 - 2289: -3,-6 - 2491: -19,-11 - 2497: -19,-7 - 2784: -37,-71 - 2789: -39,-62 - 2934: -78,-19 - 3104: -88,-21 - 3225: -101,-26 - 3273: -85,-57 + 311: -47,-63 + 1678: -36,-70 + 2237: -4,-5 + 2253: -3,-6 + 2454: -19,-11 + 2460: -19,-7 + 2747: -37,-71 + 2752: -39,-62 + 2887: -78,-19 + 3057: -88,-21 + 3178: -101,-26 + 3226: -85,-57 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1806: -34,-30 + 1770: -34,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 322: -50,-63 - 1713: -39,-70 - 2271: -6,-5 - 2490: -21,-11 - 2496: -21,-7 - 2783: -38,-71 - 2790: -40,-62 - 2933: -79,-19 - 3105: -91,-21 - 3226: -103,-26 - 3275: -89,-57 + 314: -50,-63 + 1677: -39,-70 + 2235: -6,-5 + 2453: -21,-11 + 2459: -21,-7 + 2746: -38,-71 + 2753: -40,-62 + 2886: -79,-19 + 3058: -91,-21 + 3179: -103,-26 + 3228: -89,-57 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1805: -35,-30 + 1769: -35,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 313: -47,-65 - 404: -53,-12 - 1712: -36,-73 - 2270: -3,-8 - 2488: -19,-13 - 2623: -19,-9 - 2785: -37,-72 - 2788: -39,-64 - 2935: -78,-20 - 3032: -68,-20 - 3106: -88,-22 - 3228: -101,-27 - 3274: -85,-59 + 305: -47,-65 + 396: -53,-12 + 1676: -36,-73 + 2234: -3,-8 + 2451: -19,-13 + 2586: -19,-9 + 2748: -37,-72 + 2751: -39,-64 + 2888: -78,-20 + 2985: -68,-20 + 3059: -88,-22 + 3181: -101,-27 + 3227: -85,-59 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1807: -34,-32 - 2468: -17,-20 + 1771: -34,-32 + 2431: -17,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 316: -50,-65 - 1715: -39,-73 - 2272: -6,-8 - 2489: -21,-13 - 2498: -21,-9 - 2786: -38,-72 - 2787: -40,-64 - 2936: -79,-20 - 3030: -70,-20 - 3107: -91,-22 - 3227: -103,-27 - 3276: -89,-59 + 308: -50,-65 + 1679: -39,-73 + 2236: -6,-8 + 2452: -21,-13 + 2461: -21,-9 + 2749: -38,-72 + 2750: -40,-64 + 2889: -79,-20 + 2983: -70,-20 + 3060: -91,-22 + 3180: -103,-27 + 3229: -89,-59 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1808: -35,-32 + 1772: -35,-32 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2356: -30,-2 + 2319: -30,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 2626: -15,-9 - 2627: -13,-9 - 3249: -98,-22 + 2589: -15,-9 + 2590: -13,-9 + 3202: -98,-22 + 3366: -50,-36 + 3417: -50,-43 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2625: -15,-11 - 2628: -13,-11 - 3248: -98,-23 + 2588: -15,-11 + 2591: -13,-11 + 3201: -98,-23 + 3367: -50,-37 + 3418: -50,-44 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2321: -41,-2 + 2284: -41,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2274: -4,-6 + 2238: -4,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2485: -18,-18 - 2641: -46,-76 + 2448: -18,-18 + 2604: -46,-76 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2354: -32,-2 - 2355: -39,-2 + 2317: -32,-2 + 2318: -39,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 2346: -39,-2 - 2347: -32,-2 - 2997: -70,-14 + 2309: -39,-2 + 2310: -32,-2 + 2950: -70,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 320: -47,-64 - 340: -50,-10 - 341: -50,-9 - 342: -50,-8 - 1555: -85,-58 - 1586: -85,-55 - 1587: -85,-56 - 1588: -85,-61 - 1589: -85,-60 - 1716: -36,-72 - 1717: -36,-71 - 1839: -43,-29 - 1840: -43,-30 - 1841: -43,-31 - 1842: -43,-32 - 1843: -43,-33 - 2053: -43,-34 - 2280: -3,-7 - 2348: -39,-5 - 2349: -39,-4 - 2350: -39,-3 - 2351: -32,-5 - 2352: -32,-4 - 2353: -32,-3 - 2363: -31,-5 - 2364: -31,-4 - 2365: -31,-3 - 2401: -17,-18 - 2402: -17,-16 - 2403: -17,-14 - 2404: -17,-12 - 2405: -17,-10 - 2406: -17,-8 - 2407: -17,-6 - 2408: -17,-4 - 2409: -17,-2 - 2439: -17,-17 - 2440: -17,-15 - 2441: -17,-13 - 2442: -17,-11 - 2443: -17,-9 - 2444: -17,-7 - 2445: -17,-5 - 2446: -17,-3 - 2493: -19,-12 - 2500: -19,-8 - 2630: -15,-10 - 2631: -13,-10 - 2792: -39,-63 - 3033: -68,-19 - 3034: -68,-18 - 3035: -68,-17 - 3240: -97,-24 - 3241: -97,-25 - 3242: -97,-26 - 3243: -97,-27 + 312: -47,-64 + 332: -50,-10 + 333: -50,-9 + 334: -50,-8 + 1521: -85,-58 + 1552: -85,-55 + 1553: -85,-56 + 1554: -85,-61 + 1555: -85,-60 + 1680: -36,-72 + 1681: -36,-71 + 1803: -43,-29 + 1804: -43,-30 + 1805: -43,-31 + 1806: -43,-32 + 1807: -43,-33 + 2017: -43,-34 + 2244: -3,-7 + 2311: -39,-5 + 2312: -39,-4 + 2313: -39,-3 + 2314: -32,-5 + 2315: -32,-4 + 2316: -32,-3 + 2326: -31,-5 + 2327: -31,-4 + 2328: -31,-3 + 2364: -17,-18 + 2365: -17,-16 + 2366: -17,-14 + 2367: -17,-12 + 2368: -17,-10 + 2369: -17,-8 + 2370: -17,-6 + 2371: -17,-4 + 2372: -17,-2 + 2402: -17,-17 + 2403: -17,-15 + 2404: -17,-13 + 2405: -17,-11 + 2406: -17,-9 + 2407: -17,-7 + 2408: -17,-5 + 2409: -17,-3 + 2456: -19,-12 + 2463: -19,-8 + 2593: -15,-10 + 2594: -13,-10 + 2755: -39,-63 + 2986: -68,-19 + 2987: -68,-18 + 2988: -68,-17 + 3193: -97,-24 + 3194: -97,-25 + 3195: -97,-26 + 3196: -97,-27 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1809: -34,-31 - 2467: -17,-19 + 1773: -34,-31 + 2430: -17,-19 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 317: -49,-63 - 318: -48,-63 - 1552: -88,-57 - 1553: -87,-57 - 1554: -86,-57 - 1583: -87,-55 - 1584: -86,-55 - 1585: -85,-55 - 1592: -87,-60 - 1593: -86,-60 - 1594: -85,-60 - 1720: -38,-70 - 1721: -37,-70 - 1861: -44,-27 - 1862: -43,-27 - 1863: -42,-27 - 1867: -42,-29 - 2275: -5,-5 - 2330: -40,-2 - 2331: -38,-2 - 2332: -37,-2 - 2333: -36,-2 - 2334: -35,-2 - 2335: -34,-2 - 2336: -33,-2 - 2337: -31,-2 - 2338: -32,-2 - 2339: -39,-2 - 2494: -20,-11 - 2499: -20,-7 - 2584: -10,9 - 2637: -49,-76 - 2638: -48,-76 - 2639: -47,-76 - 2998: -69,-13 - 2999: -71,-13 - 3000: -70,-13 - 3001: -72,-13 - 3002: -73,-13 - 3108: -90,-21 - 3109: -89,-21 - 3229: -102,-26 - 3231: -103,-24 - 3232: -102,-24 - 3233: -101,-24 - 3234: -100,-24 - 3235: -99,-24 - 3236: -98,-24 - 3237: -97,-24 + 309: -49,-63 + 310: -48,-63 + 1518: -88,-57 + 1519: -87,-57 + 1520: -86,-57 + 1549: -87,-55 + 1550: -86,-55 + 1551: -85,-55 + 1558: -87,-60 + 1559: -86,-60 + 1560: -85,-60 + 1684: -38,-70 + 1685: -37,-70 + 1825: -44,-27 + 1826: -43,-27 + 1827: -42,-27 + 1831: -42,-29 + 2239: -5,-5 + 2293: -40,-2 + 2294: -38,-2 + 2295: -37,-2 + 2296: -36,-2 + 2297: -35,-2 + 2298: -34,-2 + 2299: -33,-2 + 2300: -31,-2 + 2301: -32,-2 + 2302: -39,-2 + 2457: -20,-11 + 2462: -20,-7 + 2547: -10,9 + 2600: -49,-76 + 2601: -48,-76 + 2602: -47,-76 + 2951: -69,-13 + 2952: -71,-13 + 2953: -70,-13 + 2954: -72,-13 + 2955: -73,-13 + 3061: -90,-21 + 3062: -89,-21 + 3182: -102,-26 + 3184: -103,-24 + 3185: -102,-24 + 3186: -101,-24 + 3187: -100,-24 + 3188: -99,-24 + 3189: -98,-24 + 3190: -97,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2470: -19,-18 - 2471: -20,-18 - 2472: -21,-18 + 2433: -19,-18 + 2434: -20,-18 + 2435: -21,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 314: -48,-65 - 315: -49,-65 - 405: -54,-12 - 1556: -86,-59 - 1557: -87,-59 - 1558: -88,-59 - 1575: -87,-61 - 1576: -86,-61 - 1577: -85,-61 - 1578: -87,-56 - 1579: -86,-56 - 1580: -85,-56 - 1722: -38,-73 - 1723: -37,-73 - 1869: -42,-34 - 2278: -5,-8 - 2279: -4,-8 - 2322: -40,-2 - 2323: -38,-2 - 2324: -37,-2 - 2325: -36,-2 - 2326: -35,-2 - 2327: -34,-2 - 2328: -33,-2 - 2329: -31,-2 - 2369: -36,0 - 2370: -35,0 - 2371: -34,0 - 2372: -33,0 - 2373: -32,0 - 2495: -20,-13 - 2624: -20,-9 - 2996: -71,-14 - 3003: -73,-14 - 3004: -72,-14 - 3031: -69,-20 - 3110: -90,-22 - 3111: -89,-22 - 3230: -102,-27 - 3244: -97,-27 - 3245: -98,-27 - 3246: -99,-27 - 3247: -100,-27 + 306: -48,-65 + 307: -49,-65 + 397: -54,-12 + 1522: -86,-59 + 1523: -87,-59 + 1524: -88,-59 + 1541: -87,-61 + 1542: -86,-61 + 1543: -85,-61 + 1544: -87,-56 + 1545: -86,-56 + 1546: -85,-56 + 1686: -38,-73 + 1687: -37,-73 + 1833: -42,-34 + 2242: -5,-8 + 2243: -4,-8 + 2285: -40,-2 + 2286: -38,-2 + 2287: -37,-2 + 2288: -36,-2 + 2289: -35,-2 + 2290: -34,-2 + 2291: -33,-2 + 2292: -31,-2 + 2332: -36,0 + 2333: -35,0 + 2334: -34,0 + 2335: -33,0 + 2336: -32,0 + 2458: -20,-13 + 2587: -20,-9 + 2949: -71,-14 + 2956: -73,-14 + 2957: -72,-14 + 2984: -69,-20 + 3063: -90,-22 + 3064: -89,-22 + 3183: -102,-27 + 3197: -97,-27 + 3198: -98,-27 + 3199: -99,-27 + 3200: -100,-27 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2469: -18,-20 - 2473: -19,-18 - 2474: -21,-18 - 2475: -20,-19 - 2476: -20,-18 + 2432: -18,-20 + 2436: -19,-18 + 2437: -21,-18 + 2438: -20,-19 + 2439: -20,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 321: -50,-64 - 337: -54,-10 - 338: -54,-9 - 339: -54,-8 - 1551: -89,-58 - 1581: -87,-56 - 1582: -87,-55 - 1590: -87,-61 - 1591: -87,-60 - 1718: -39,-72 - 1719: -39,-71 - 1844: -41,-34 - 1845: -41,-33 - 1846: -41,-32 - 1847: -41,-31 - 1848: -41,-30 - 1849: -41,-29 - 2276: -6,-7 - 2277: -6,-6 - 2340: -39,-5 - 2341: -39,-4 - 2342: -39,-3 - 2343: -32,-5 - 2344: -32,-4 - 2345: -32,-3 - 2357: -40,-5 - 2358: -40,-4 - 2359: -40,-3 - 2410: -18,-17 - 2411: -18,-15 - 2412: -18,-13 - 2413: -18,-11 - 2414: -18,-9 - 2415: -18,-7 - 2416: -18,-5 - 2417: -18,-3 - 2447: -18,-2 - 2448: -18,-4 - 2449: -18,-6 - 2450: -18,-16 - 2492: -21,-12 - 2501: -21,-8 - 2629: -15,-10 - 2632: -13,-10 - 2640: -46,-75 - 2791: -40,-63 - 2995: -70,-15 - 3026: -70,-16 - 3027: -70,-17 - 3028: -70,-18 - 3029: -70,-19 - 3238: -103,-24 - 3239: -103,-25 + 313: -50,-64 + 329: -54,-10 + 330: -54,-9 + 331: -54,-8 + 1517: -89,-58 + 1547: -87,-56 + 1548: -87,-55 + 1556: -87,-61 + 1557: -87,-60 + 1682: -39,-72 + 1683: -39,-71 + 1808: -41,-34 + 1809: -41,-33 + 1810: -41,-32 + 1811: -41,-31 + 1812: -41,-30 + 1813: -41,-29 + 2240: -6,-7 + 2241: -6,-6 + 2303: -39,-5 + 2304: -39,-4 + 2305: -39,-3 + 2306: -32,-5 + 2307: -32,-4 + 2308: -32,-3 + 2320: -40,-5 + 2321: -40,-4 + 2322: -40,-3 + 2373: -18,-17 + 2374: -18,-15 + 2375: -18,-13 + 2376: -18,-11 + 2377: -18,-9 + 2378: -18,-7 + 2379: -18,-5 + 2380: -18,-3 + 2410: -18,-2 + 2411: -18,-4 + 2412: -18,-6 + 2413: -18,-16 + 2455: -21,-12 + 2464: -21,-8 + 2592: -15,-10 + 2595: -13,-10 + 2603: -46,-75 + 2754: -40,-63 + 2948: -70,-15 + 2979: -70,-16 + 2980: -70,-17 + 2981: -70,-18 + 2982: -70,-19 + 3191: -103,-24 + 3192: -103,-25 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1810: -35,-31 - 2435: -18,-10 - 2436: -18,-8 - 2437: -18,-12 - 2438: -18,-14 + 1774: -35,-31 + 2398: -18,-10 + 2399: -18,-8 + 2400: -18,-12 + 2401: -18,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 1448: -22,-18 - 1871: -38,-36 + 1437: -22,-18 + 1835: -38,-36 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 1170: -82,-57 - 1438: -96,-24 - 1872: -43,-36 + 1160: -82,-57 + 1428: -96,-24 + 1836: -43,-36 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 685: -24,-41 - 1180: -40,-60 - 1203: -21,-52 - 1901: -38,-39 + 676: -24,-41 + 1193: -21,-52 + 1865: -38,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 1172: -82,-59 - 1245: -51,-28 - 1902: -43,-39 + 1162: -82,-59 + 1235: -51,-28 + 1866: -43,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1452: -26,-18 - 1503: -25,-40 - 1504: -25,-47 - 1903: -43,-39 - 3253: -95,-28 + 1440: -26,-18 + 1469: -25,-40 + 1470: -25,-47 + 1867: -43,-39 + 3206: -95,-28 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1904: -38,-39 - 3254: -89,-28 + 1868: -38,-39 + 3207: -89,-28 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1891: -43,-36 - 3255: -95,-24 + 1855: -43,-36 + 3208: -95,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1249: -47,-28 - 1890: -38,-36 - 1893: -40,-39 - 3256: -89,-24 + 1239: -47,-28 + 1854: -38,-36 + 1857: -40,-39 + 3209: -89,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 455: 0,-5 - 466: 0,-9 - 483: 0,-9 - 484: 0,-16 - 497: 0,-9 - 530: 13,-16 - 531: 13,-17 - 533: 13,-5 - 536: 13,-10 - 952: -46,-25 - 961: -46,-20 - 965: -46,-10 - 966: -46,-9 - 970: -43,-2 - 1117: 0,-19 - 1119: 0,-10 - 1126: -25,-47 - 1127: -25,-48 - 1128: -25,-51 - 1129: -25,-52 - 1136: -25,-53 - 1142: -24,-56 - 1179: -40,-59 - 1204: -21,-51 - 1263: -45,-32 - 1268: -46,-7 - 1269: -46,-8 - 1451: -22,-20 - 1559: -88,-56 - 1560: -88,-55 - 1573: -88,-60 - 1574: -88,-61 - 1875: -38,-38 - 1876: -38,-37 - 1888: -43,-38 - 1889: -43,-37 - 3250: -95,-25 - 3251: -95,-26 - 3252: -95,-27 + 447: 0,-5 + 458: 0,-9 + 475: 0,-9 + 476: 0,-16 + 489: 0,-9 + 522: 13,-16 + 523: 13,-17 + 525: 13,-5 + 528: 13,-10 + 942: -46,-25 + 951: -46,-20 + 955: -46,-10 + 956: -46,-9 + 960: -43,-2 + 1107: 0,-19 + 1109: 0,-10 + 1116: -25,-47 + 1117: -25,-48 + 1118: -25,-51 + 1119: -25,-52 + 1126: -25,-53 + 1132: -24,-56 + 1169: -40,-59 + 1194: -21,-51 + 1253: -45,-32 + 1258: -46,-7 + 1259: -46,-8 + 1439: -22,-20 + 1525: -88,-56 + 1526: -88,-55 + 1539: -88,-60 + 1540: -88,-61 + 1839: -38,-38 + 1840: -38,-37 + 1852: -43,-38 + 1853: -43,-37 + 3203: -95,-25 + 3204: -95,-26 + 3205: -95,-27 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 46: -24,-47 - 551: 6,-22 - 552: 11,-22 - 557: -19,-22 - 558: -16,-22 - 559: -12,-22 - 1053: -43,-22 - 1054: -41,-22 - 1055: -40,-22 - 1056: -39,-22 - 1059: -28,-22 - 1110: -4,-22 - 1111: -1,-22 - 1112: 0,-22 - 1113: 12,-22 - 1114: 13,-22 - 1158: -76,-57 - 1159: -75,-57 - 1160: -80,-57 - 1166: -82,-57 - 1167: -81,-57 - 1175: -60,-55 - 1176: -57,-55 - 1177: -51,-55 - 1414: -55,-22 - 1434: -90,-24 - 1435: -91,-24 - 1436: -88,-24 - 1437: -94,-24 - 1565: -89,-55 - 1566: -88,-55 - 1567: -89,-60 - 1568: -88,-60 - 1877: -42,-36 - 1878: -41,-36 - 1879: -40,-36 - 1880: -42,-39 - 1881: -40,-39 - 1882: -39,-39 - 1895: -41,-39 - 3265: -94,-28 - 3266: -93,-28 - 3267: -92,-28 - 3268: -91,-28 - 3269: -90,-28 - 3270: -94,-28 + 44: -24,-47 + 543: 6,-22 + 544: 11,-22 + 549: -19,-22 + 550: -16,-22 + 551: -12,-22 + 1043: -43,-22 + 1044: -41,-22 + 1045: -40,-22 + 1046: -39,-22 + 1049: -28,-22 + 1100: -4,-22 + 1101: -1,-22 + 1102: 0,-22 + 1103: 12,-22 + 1104: 13,-22 + 1148: -76,-57 + 1149: -75,-57 + 1150: -80,-57 + 1156: -82,-57 + 1157: -81,-57 + 1165: -60,-55 + 1166: -57,-55 + 1167: -51,-55 + 1404: -55,-22 + 1424: -90,-24 + 1425: -91,-24 + 1426: -88,-24 + 1427: -94,-24 + 1531: -89,-55 + 1532: -88,-55 + 1533: -89,-60 + 1534: -88,-60 + 1841: -42,-36 + 1842: -41,-36 + 1843: -40,-36 + 1844: -42,-39 + 1845: -40,-39 + 1846: -39,-39 + 1859: -41,-39 + 3218: -94,-28 + 3219: -93,-28 + 3220: -92,-28 + 3221: -91,-28 + 3222: -90,-28 + 3223: -94,-28 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 45: -51,-58 - 553: 12,-24 - 554: -21,-24 - 560: 3,-24 - 1100: -22,-24 - 1101: -18,-24 - 1102: -15,-24 - 1104: -13,-24 - 1106: -9,-24 - 1107: -5,-24 - 1143: -45,-57 - 1144: -44,-57 - 1145: -40,-57 - 1146: -39,-57 - 1147: -39,-57 - 1148: -38,-57 - 1149: -41,-57 - 1150: -48,-57 - 1152: -67,-59 - 1153: -65,-59 - 1156: -77,-59 - 1157: -75,-59 - 1164: -82,-59 - 1165: -81,-59 - 1188: -46,-57 - 1212: -24,-52 - 1246: -50,-28 - 1390: -61,-24 - 1432: -93,-28 - 1433: -90,-28 - 1441: -83,-26 - 1442: -81,-26 - 1443: -77,-26 - 1444: -76,-26 - 1563: -89,-56 - 1564: -88,-56 - 1571: -89,-61 - 1572: -88,-61 - 1883: -42,-36 - 1884: -41,-36 - 1885: -40,-36 - 1892: -42,-39 - 1894: -41,-39 - 1899: -40,-39 - 1900: -39,-39 - 1932: -39,-36 - 3257: -94,-24 - 3258: -93,-24 - 3259: -92,-24 - 3260: -91,-24 - 3261: -90,-24 - 3387: -59,0 - 3395: -57,0 + 43: -51,-58 + 545: 12,-24 + 546: -21,-24 + 552: 3,-24 + 1090: -22,-24 + 1091: -18,-24 + 1092: -15,-24 + 1094: -13,-24 + 1096: -9,-24 + 1097: -5,-24 + 1133: -45,-57 + 1134: -44,-57 + 1135: -40,-57 + 1136: -39,-57 + 1137: -39,-57 + 1138: -38,-57 + 1139: -41,-57 + 1140: -48,-57 + 1142: -67,-59 + 1143: -65,-59 + 1146: -77,-59 + 1147: -75,-59 + 1154: -82,-59 + 1155: -81,-59 + 1178: -46,-57 + 1202: -24,-52 + 1236: -50,-28 + 1380: -61,-24 + 1422: -93,-28 + 1423: -90,-28 + 1431: -83,-26 + 1432: -81,-26 + 1433: -77,-26 + 1434: -76,-26 + 1529: -89,-56 + 1530: -88,-56 + 1537: -89,-61 + 1538: -88,-61 + 1847: -42,-36 + 1848: -41,-36 + 1849: -40,-36 + 1856: -42,-39 + 1858: -41,-39 + 1863: -40,-39 + 1864: -39,-39 + 1896: -39,-36 + 3210: -94,-24 + 3211: -93,-24 + 3212: -92,-24 + 3213: -91,-24 + 3214: -90,-24 + 3340: -59,0 + 3348: -57,0 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 485: -2,-2 - 510: -1,-6 - 512: -1,-8 - 523: 12,-9 - 525: 12,-16 - 538: 12,-18 - 967: -47,-9 - 968: -50,-3 - 969: -50,-2 - 1118: -1,-14 - 1121: -2,-3 - 1161: -82,-57 - 1163: -82,-59 - 1178: -45,-59 - 1187: -45,-59 - 1222: -26,-47 - 1223: -26,-46 - 1226: -47,-49 - 1227: -47,-47 - 1248: -47,-29 - 1264: -27,-36 - 1265: -27,-34 - 1266: -27,-16 - 1267: -27,-8 - 1439: -96,-26 - 1561: -89,-56 - 1562: -89,-55 - 1569: -89,-60 - 1570: -89,-61 - 1873: -43,-38 - 1874: -43,-37 - 1886: -38,-38 - 1887: -38,-37 - 2319: -47,-13 - 3262: -89,-27 - 3263: -89,-26 - 3264: -89,-25 - 3385: -58,2 - 3386: -58,1 - 3388: -58,1 - 3389: -57,2 - 3390: -57,3 - 3391: -57,1 - 3392: -58,3 - 3393: -58,0 - 3394: -57,0 + 477: -2,-2 + 502: -1,-6 + 504: -1,-8 + 515: 12,-9 + 517: 12,-16 + 530: 12,-18 + 957: -47,-9 + 958: -50,-3 + 959: -50,-2 + 1108: -1,-14 + 1111: -2,-3 + 1151: -82,-57 + 1153: -82,-59 + 1168: -45,-59 + 1177: -45,-59 + 1212: -26,-47 + 1213: -26,-46 + 1216: -47,-49 + 1217: -47,-47 + 1238: -47,-29 + 1254: -27,-36 + 1255: -27,-34 + 1256: -27,-16 + 1257: -27,-8 + 1429: -96,-26 + 1527: -89,-56 + 1528: -89,-55 + 1535: -89,-60 + 1536: -89,-61 + 1837: -43,-38 + 1838: -43,-37 + 1850: -38,-38 + 1851: -38,-37 + 2282: -47,-13 + 3215: -89,-27 + 3216: -89,-26 + 3217: -89,-25 + 3338: -58,2 + 3339: -58,1 + 3341: -58,1 + 3342: -57,2 + 3343: -57,3 + 3344: -57,1 + 3345: -58,3 + 3346: -58,0 + 3347: -57,0 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1457: -62,-39 - 1458: -62,-38 - 1459: -62,-37 - 1460: -62,-36 - 1461: -62,-35 + 1445: -62,-39 + 1446: -62,-38 + 1447: -62,-37 + 1448: -62,-36 + 1449: -62,-35 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNe decals: - 435: -37,-7 - 451: -31,-7 + 427: -37,-7 + 443: -31,-7 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 115: -16,-51 + 112: -16,-51 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw decals: - 432: -41,-7 - 449: -35,-7 + 424: -41,-7 + 441: -35,-7 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 111: -19,-51 + 108: -19,-51 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe decals: - 433: -37,-8 - 450: -31,-8 + 425: -37,-8 + 442: -31,-8 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 119: -16,-54 + 116: -16,-54 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 1356: -51,-31 + 1346: -51,-31 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSw decals: - 434: -41,-8 - 448: -35,-8 + 426: -41,-8 + 440: -35,-8 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 118: -19,-54 + 115: -19,-54 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 3370: -58,-36 + 3375: -53,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 3369: -58,-37 + 3376: -53,-37 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1607: -64,-28 + 1573: -64,-28 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1606: -62,-28 + 1572: -62,-28 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 116: -16,-52 - 122: -16,-53 + 113: -16,-52 + 119: -16,-53 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1357: -51,-30 - 1511: -60,-26 - 1512: -60,-27 - 1513: -60,-28 - 1514: -60,-29 - 1601: -64,-27 - 1602: -64,-26 + 1347: -51,-30 + 1477: -60,-26 + 1478: -60,-27 + 1479: -60,-28 + 1480: -60,-29 + 1567: -64,-27 + 1568: -64,-26 + 3371: -58,-36 + 3373: -53,-36 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1363: -49,-33 - 1364: -49,-32 - 1365: -49,-31 - 1366: -49,-30 - 1367: -50,-30 - 1368: -50,-31 - 1369: -50,-32 + 1353: -49,-33 + 1354: -49,-32 + 1355: -49,-31 + 1356: -49,-30 + 1357: -50,-30 + 1358: -50,-31 + 1359: -50,-32 - node: color: '#4B709CFF' id: BrickTileWhiteLineN decals: - 439: -40,-7 - 440: -39,-7 - 441: -38,-7 - 442: -34,-7 - 443: -33,-7 - 444: -32,-7 + 431: -40,-7 + 432: -39,-7 + 433: -38,-7 + 434: -34,-7 + 435: -33,-7 + 436: -32,-7 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 113: -18,-51 - 114: -17,-51 + 110: -18,-51 + 111: -17,-51 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1391: -58,-26 - 1392: -57,-26 - 1393: -56,-26 - 1394: -55,-26 - 1395: -58,-29 - 1396: -57,-29 - 1397: -56,-29 - 1398: -55,-29 - 1399: -54,-29 - 1400: -53,-29 - 1515: -60,-26 - 1516: -61,-26 - 1517: -62,-26 - 1518: -65,-26 - 1519: -66,-26 - 1599: -64,-26 - 1603: -63,-28 + 1381: -58,-26 + 1382: -57,-26 + 1383: -56,-26 + 1384: -55,-26 + 1385: -58,-29 + 1386: -57,-29 + 1387: -56,-29 + 1388: -55,-29 + 1389: -54,-29 + 1390: -53,-29 + 1481: -60,-26 + 1482: -61,-26 + 1483: -62,-26 + 1484: -65,-26 + 1485: -66,-26 + 1565: -64,-26 + 1569: -63,-28 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1506: -60,-31 - 1509: -52,-31 + 1472: -60,-31 + 1475: -52,-31 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1275: -55,-33 - 1279: -56,-33 - 1280: -57,-33 - 1281: -54,-33 - 1284: -53,-33 - 1285: -58,-33 - 1286: -59,-33 - 1287: -60,-33 - 1288: -61,-33 - 1289: -62,-33 - 1290: -63,-33 - 1291: -64,-33 - 1292: -65,-33 - 1293: -66,-33 - 1302: -53,-31 - 1303: -66,-31 - 1304: -65,-31 - 1305: -64,-31 - 1306: -63,-31 - 1307: -62,-31 - 1308: -61,-31 - 1309: -59,-31 - 1310: -58,-31 - 1311: -57,-31 - 1312: -56,-31 - 1313: -55,-31 - 1314: -54,-31 - 1370: -52,-33 - 1371: -51,-33 - 1372: -50,-33 - 1373: -52,-31 - 1375: -52,-33 + 1265: -55,-33 + 1269: -56,-33 + 1270: -57,-33 + 1271: -54,-33 + 1274: -53,-33 + 1275: -58,-33 + 1276: -59,-33 + 1277: -60,-33 + 1278: -61,-33 + 1279: -62,-33 + 1280: -63,-33 + 1281: -64,-33 + 1282: -65,-33 + 1283: -66,-33 + 1292: -53,-31 + 1293: -66,-31 + 1294: -65,-31 + 1295: -64,-31 + 1296: -63,-31 + 1297: -62,-31 + 1298: -61,-31 + 1299: -59,-31 + 1300: -58,-31 + 1301: -57,-31 + 1302: -56,-31 + 1303: -55,-31 + 1304: -54,-31 + 1360: -52,-33 + 1361: -51,-33 + 1362: -50,-33 + 1363: -52,-31 + 1365: -52,-33 - node: color: '#4B709CFF' id: BrickTileWhiteLineS decals: - 436: -40,-8 - 437: -39,-8 - 438: -38,-8 - 445: -34,-8 - 446: -33,-8 - 447: -32,-8 + 428: -40,-8 + 429: -39,-8 + 430: -38,-8 + 437: -34,-8 + 438: -33,-8 + 439: -32,-8 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 120: -18,-54 - 121: -17,-54 + 117: -18,-54 + 118: -17,-54 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1402: -58,-29 - 1404: -57,-29 - 1405: -56,-29 - 1406: -55,-29 - 1407: -54,-29 - 1408: -53,-29 - 1409: -55,-26 - 1410: -56,-26 - 1411: -57,-26 - 1412: -58,-26 - 1490: -58,-37 - 1491: -57,-37 - 1492: -56,-37 - 1493: -55,-37 - 1494: -54,-37 - 1495: -53,-37 - 1524: -66,-29 - 1525: -65,-29 - 1526: -64,-29 - 1527: -63,-29 - 1528: -62,-29 - 1529: -61,-29 - 1530: -60,-29 + 1392: -58,-29 + 1394: -57,-29 + 1395: -56,-29 + 1396: -55,-29 + 1397: -54,-29 + 1398: -53,-29 + 1399: -55,-26 + 1400: -56,-26 + 1401: -57,-26 + 1402: -58,-26 + 1490: -66,-29 + 1491: -65,-29 + 1492: -64,-29 + 1493: -63,-29 + 1494: -62,-29 + 1495: -61,-29 + 1496: -60,-29 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1507: -60,-31 + 1473: -60,-31 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1276: -55,-31 - 1277: -56,-31 - 1278: -57,-31 - 1282: -54,-31 - 1283: -53,-31 - 1294: -58,-31 - 1295: -59,-31 - 1296: -61,-31 - 1297: -62,-31 - 1298: -63,-31 - 1299: -64,-31 - 1300: -65,-31 - 1301: -66,-31 - 1315: -53,-33 - 1316: -54,-33 - 1317: -55,-33 - 1318: -56,-33 - 1319: -66,-33 - 1320: -65,-33 - 1321: -64,-33 - 1322: -63,-33 - 1323: -62,-33 - 1324: -61,-33 - 1325: -60,-33 - 1326: -59,-33 - 1327: -57,-33 - 1328: -58,-33 - 1358: -52,-31 - 1359: -52,-33 - 1360: -51,-33 - 1361: -50,-33 - 1362: -49,-33 - 1376: -52,-33 - 1467: -53,-41 - 1468: -54,-41 - 1469: -55,-41 - 1470: -56,-41 - 1471: -57,-41 - 1472: -58,-41 + 1266: -55,-31 + 1267: -56,-31 + 1268: -57,-31 + 1272: -54,-31 + 1273: -53,-31 + 1284: -58,-31 + 1285: -59,-31 + 1286: -61,-31 + 1287: -62,-31 + 1288: -63,-31 + 1289: -64,-31 + 1290: -65,-31 + 1291: -66,-31 + 1305: -53,-33 + 1306: -54,-33 + 1307: -55,-33 + 1308: -56,-33 + 1309: -66,-33 + 1310: -65,-33 + 1311: -64,-33 + 1312: -63,-33 + 1313: -62,-33 + 1314: -61,-33 + 1315: -60,-33 + 1316: -59,-33 + 1317: -57,-33 + 1318: -58,-33 + 1348: -52,-31 + 1349: -52,-33 + 1350: -51,-33 + 1351: -50,-33 + 1352: -49,-33 + 1366: -52,-33 + 1455: -55,-41 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 112: -19,-52 - 117: -19,-53 + 109: -19,-52 + 114: -19,-53 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1520: -66,-26 - 1521: -66,-27 - 1522: -66,-28 - 1523: -66,-29 - 1604: -62,-27 - 1605: -62,-26 + 1486: -66,-26 + 1487: -66,-27 + 1488: -66,-28 + 1489: -66,-29 + 1570: -62,-27 + 1571: -62,-26 + 3372: -58,-36 + 3374: -53,-36 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1374: -51,-30 + 1364: -51,-30 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 2799: -48.90679,-16.454704 - 2800: -49.978928,-17.270908 + 2762: -48.90679,-16.454704 + 2763: -49.978928,-17.270908 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 40: -48.72539,-24.970346 + 38: -48.72539,-24.970346 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 2798: -49.925453,-18.368416 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 2803: -48.293373,-18.673595 + 2761: -49.925453,-18.368416 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 2796: -49.504555,-16.096249 + 2759: -49.504555,-16.096249 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 2793: -50.93637,-16.216513 - 2794: -48.097137,-16.135056 - 2795: -48.71386,-17.659458 + 2756: -50.93637,-16.216513 + 2757: -48.097137,-16.135056 + 2758: -48.71386,-17.659458 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 2797: -50.11164,-15.948086 + 2760: -50.11164,-15.948086 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 2801: -49.37554,-19.243792 - 2802: -48.84028,-15.892438 + 2764: -49.37554,-19.243792 + 2765: -48.84028,-15.892438 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 1930: -33,-86 - 1931: -33,-84 + 1894: -33,-86 + 1895: -33,-84 - node: color: '#FA7500CC' id: CheckerNESW decals: - 1386: -56,-28 - 1387: -55,-28 - 1388: -54,-28 - 1389: -53,-28 + 1376: -56,-28 + 1377: -55,-28 + 1378: -54,-28 + 1379: -53,-28 - node: zIndex: 1 color: '#FA7500CC' id: CheckerNESW decals: - 1417: -55,-27 - 1431: -56,-27 + 1407: -55,-27 + 1421: -56,-27 - node: cleanable: True color: '#FFFFFFFF' id: Damaged decals: - 2974: -79.071655,-6.6030793 + 2927: -79.071655,-6.6030793 + - node: + color: '#571212FF' + id: Delivery + decals: + 3368: -58,-40 - node: color: '#FFFFFFFF' id: Delivery decals: 8: -33,-21 - 452: -30,5 - 453: -30,4 - 1489: -71,-29 - 1700: -68,-13 - 3219: -67,0 - 3220: -64,-2 - 3221: -62,-2 + 444: -30,5 + 445: -30,4 + 1467: -71,-29 + 1664: -68,-13 + 3172: -67,0 + 3173: -64,-2 + 3174: -62,-2 - node: color: '#8D1C99FF' id: DeliveryGreyscale decals: - 1972: -29,-66 - 1973: -28,-66 - 1974: -27,-66 + 1936: -29,-66 + 1937: -28,-66 + 1938: -27,-66 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3085: -18,-45 + 3038: -18,-45 - node: zIndex: 2 color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 1672: -53,-15 - 1673: -54,-15 + 1636: -53,-15 + 1637: -54,-15 - node: color: '#334E6DFF' id: DiagonalOverlay decals: - 293: -67,-32 - 294: -72,-32 + 285: -67,-32 + 286: -72,-32 - node: cleanable: True color: '#000000FF' id: Dirt decals: - 1674: -65,-48 - 1679: -65,-49 + 1638: -65,-48 + 1643: -65,-49 - node: cleanable: True color: '#DE3A3A96' id: Dirt decals: - 2587: -11,8 - 2588: -11,8 + 2550: -11,8 + 2551: -11,8 - node: color: '#FFFFFFFF' id: Dirt decals: - 188: -41,-46 - 189: -41,-47 - 190: -32,-43 - 191: -75,-65 - 192: -46,-4 + 183: -41,-46 + 184: -41,-47 + 185: -32,-43 + 186: -75,-65 + 187: -46,-4 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 100: -48,-7 - 101: -46,-43 - 103: -74,-46 - 126: -21,9 - 127: -22,9 - 128: -21,12 - 129: -20,13 - 130: -19,12 - 131: -19,13 - 132: -20,12 - 133: -21,13 - 134: 1,-7 - 135: -95,-23 - 136: -89,-23 - 141: -42,-54 - 142: -24,-53 - 143: -35,-54 - 144: -40,-58 - 145: -44,-58 - 150: -18,8 - 151: -19,10 - 152: -22,10 - 153: -14,10 - 154: -16,8 - 155: -18,10 - 156: -17,8 - 157: -18,8 - 158: -17,8 - 159: -35,-72 - 161: -18,-52 - 162: -16,-53 - 163: -16,-51 - 169: -19,-53 - 170: -16,-39 - 171: -15,-40 - 172: -21,-26 - 173: -21,-26 - 174: -74,-40 - 193: -84,-45 - 194: -84,-45 - 195: -83,-44 - 196: -87,-45 - 197: -86,-48 - 198: -87,-48 - 199: -87,-48 - 207: -84,-46 - 407: -69,-14 - 408: -64,-15 - 415: -56,-14 - 416: -56,-15 - 417: -57,-15 - 420: -64,-9 - 421: -64,-10 - 424: -67,-16 - 425: -65,-16 - 426: -64,-16 - 719: -11,-25 - 747: -57,-55 - 921: -39,-22 - 957: -33,-21 - 958: -33,-21 - 960: -27,-11 - 973: -51,-55 - 979: -63,12 - 1063: -27,-8 - 1217: -72,-46 - 1218: -72,-45 - 1238: -64,-73 - 1239: -64,-73 - 1240: -66,-71 - 1241: -61,-71 - 1242: -67,-71 - 1256: -73,-22 - 1257: -73,-22 - 1597: -86,-58 - 1743: -54,-51 - 1980: -27,-61 - 1981: -27,-60 - 1982: -28,-60 - 1983: -27,-61 - 1984: -27,-61 - 1985: -26,-63 - 1986: -25,-61 - 1991: -28,-63 - 1999: -23,-60 - 2000: -23,-60 - 2008: -22,-56 - 2009: -22,-56 - 2010: -22,-56 - 2011: -13,-57 - 2012: -13,-58 - 2013: -17,-58 - 2014: -16,-56 - 2026: -14,-49 - 2027: -17,-46 - 2028: -18,-46 - 2029: -12,-49 - 2030: -19,-48 - 2031: -18,-46 - 2032: -6,-47 - 2033: -5,-47 - 2034: -7,-49 - 2035: -11,-49 - 2036: -5,-50 - 2049: -43,-32 - 2249: -13,-54 - 2250: -10,-55 - 2251: -11,-52 - 2534: -29,1 - 2535: -30,2 - 2538: -22,9 - 2539: -22,9 - 2546: -16,9 - 2547: -16,9 - 2570: -22,12 - 2571: -21,12 - 2572: -20,12 - 2573: -20,13 - 2594: -11,9 - 2595: -11,9 - 2607: -15,1 - 2621: -18,2 - 2898: -66,-53 - 2899: -64,-54 - 2920: -75,-20 - 2921: -76,-20 - 2946: -79.076126,-6.126605 - 2947: -78.15687,-7.11572 - 2948: -78.79686,-6.8713503 - 2949: -77.97069,-7.825555 - 2950: -76.8187,-7.907012 - 2951: -76,-7 - 2952: -75,-8 - 2953: -76,-8 - 2954: -77,-8 - 2955: -77,-6 - 2956: -77,-7 - 2957: -79,-8 - 2958: -79,-8 - 2975: -78.93202,-6.649626 - 2976: -78.862206,-5.997974 - 3022: -70,-15 - 3023: -70,-15 - 3024: -69,-15 - 3025: -69,-15 - 3057: -28,-3 - 3058: -28,-2 - 3059: -28,-5 - 3060: -27,-5 - 3061: -27,-4 - 3062: -27,-3 - 3063: -27,-3 - 3064: -26,-3 - 3087: -47,-80 - 3091: -46,-77 - 3097: -75,-14 - 3099: -62,-13 - 3100: -75,-12 - 3120: -65,11 - 3121: -64,6 - 3122: -63,2 - 3123: -66,-1 - 3124: -59,-1 - 3125: -57,1 - 3126: -58,6 - 3127: -58,8 - 3128: -59,8 - 3129: -66,5 - 3130: -61,8 - 3131: -62,5 - 3132: -59,14 - 3133: -62,18 - 3134: -60,18 - 3135: -58,19 - 3136: -59,15 - 3137: -63,13 - 3138: -63,16 - 3139: -68,-3 - 3140: -67,-2 - 3141: -67,-3 - 3142: -63,1 - 3143: -66,5 - 3144: -66,4 - 3222: -64,-2 - 3223: -63,-2 - 3224: -67,0 + 98: -48,-7 + 99: -46,-43 + 101: -74,-46 + 123: -21,9 + 124: -22,9 + 125: -21,12 + 126: -20,13 + 127: -19,12 + 128: -19,13 + 129: -20,12 + 130: -21,13 + 131: 1,-7 + 132: -95,-23 + 133: -89,-23 + 138: -42,-54 + 139: -24,-53 + 140: -35,-54 + 141: -40,-58 + 142: -44,-58 + 147: -18,8 + 148: -19,10 + 149: -22,10 + 150: -14,10 + 151: -16,8 + 152: -18,10 + 153: -17,8 + 154: -18,8 + 155: -17,8 + 156: -35,-72 + 158: -18,-52 + 159: -16,-53 + 160: -16,-51 + 166: -19,-53 + 167: -16,-39 + 168: -15,-40 + 169: -21,-26 + 170: -21,-26 + 171: -74,-40 + 188: -84,-45 + 189: -84,-45 + 190: -83,-44 + 191: -87,-45 + 192: -86,-48 + 193: -87,-48 + 194: -87,-48 + 202: -84,-46 + 399: -69,-14 + 400: -64,-15 + 407: -56,-14 + 408: -56,-15 + 409: -57,-15 + 412: -64,-9 + 413: -64,-10 + 416: -67,-16 + 417: -65,-16 + 418: -64,-16 + 710: -11,-25 + 738: -57,-55 + 911: -39,-22 + 947: -33,-21 + 948: -33,-21 + 950: -27,-11 + 963: -51,-55 + 969: -63,12 + 1053: -27,-8 + 1207: -72,-46 + 1208: -72,-45 + 1228: -64,-73 + 1229: -64,-73 + 1230: -66,-71 + 1231: -61,-71 + 1232: -67,-71 + 1246: -73,-22 + 1247: -73,-22 + 1563: -86,-58 + 1707: -54,-51 + 1944: -27,-61 + 1945: -27,-60 + 1946: -28,-60 + 1947: -27,-61 + 1948: -27,-61 + 1949: -26,-63 + 1950: -25,-61 + 1955: -28,-63 + 1963: -23,-60 + 1964: -23,-60 + 1972: -22,-56 + 1973: -22,-56 + 1974: -22,-56 + 1975: -13,-57 + 1976: -13,-58 + 1977: -17,-58 + 1978: -16,-56 + 1990: -14,-49 + 1991: -17,-46 + 1992: -18,-46 + 1993: -12,-49 + 1994: -19,-48 + 1995: -18,-46 + 1996: -6,-47 + 1997: -5,-47 + 1998: -7,-49 + 1999: -11,-49 + 2000: -5,-50 + 2013: -43,-32 + 2213: -13,-54 + 2214: -10,-55 + 2215: -11,-52 + 2497: -29,1 + 2498: -30,2 + 2501: -22,9 + 2502: -22,9 + 2509: -16,9 + 2510: -16,9 + 2533: -22,12 + 2534: -21,12 + 2535: -20,12 + 2536: -20,13 + 2557: -11,9 + 2558: -11,9 + 2570: -15,1 + 2584: -18,2 + 2851: -66,-53 + 2852: -64,-54 + 2873: -75,-20 + 2874: -76,-20 + 2899: -79.076126,-6.126605 + 2900: -78.15687,-7.11572 + 2901: -78.79686,-6.8713503 + 2902: -77.97069,-7.825555 + 2903: -76.8187,-7.907012 + 2904: -76,-7 + 2905: -75,-8 + 2906: -76,-8 + 2907: -77,-8 + 2908: -77,-6 + 2909: -77,-7 + 2910: -79,-8 + 2911: -79,-8 + 2928: -78.93202,-6.649626 + 2929: -78.862206,-5.997974 + 2975: -70,-15 + 2976: -70,-15 + 2977: -69,-15 + 2978: -69,-15 + 3010: -28,-3 + 3011: -28,-2 + 3012: -28,-5 + 3013: -27,-5 + 3014: -27,-4 + 3015: -27,-3 + 3016: -27,-3 + 3017: -26,-3 + 3040: -47,-80 + 3044: -46,-77 + 3050: -75,-14 + 3052: -62,-13 + 3053: -75,-12 + 3073: -65,11 + 3074: -64,6 + 3075: -63,2 + 3076: -66,-1 + 3077: -59,-1 + 3078: -57,1 + 3079: -58,6 + 3080: -58,8 + 3081: -59,8 + 3082: -66,5 + 3083: -61,8 + 3084: -62,5 + 3085: -59,14 + 3086: -62,18 + 3087: -60,18 + 3088: -58,19 + 3089: -59,15 + 3090: -63,13 + 3091: -63,16 + 3092: -68,-3 + 3093: -67,-2 + 3094: -67,-3 + 3095: -63,1 + 3096: -66,5 + 3097: -66,4 + 3175: -64,-2 + 3176: -63,-2 + 3177: -67,0 - node: cleanable: True color: '#000000FF' id: DirtHeavy decals: - 1675: -65,-48 + 1639: -65,-48 - node: cleanable: True color: '#8F4C006D' id: DirtHeavy decals: - 2980: -78.101974,-6.6030793 + 2933: -78.101974,-6.6030793 - node: cleanable: True color: '#8F4C00FF' id: DirtHeavy decals: - 2981: -78.17955,-6.5953217 + 2934: -78.17955,-6.5953217 - node: cleanable: True color: '#DE3A3A96' id: DirtHeavy decals: - 2585: -9,9 - 2586: -9,9 + 2548: -9,9 + 2549: -9,9 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 102: -68,-53 - 104: 15,-18 - 124: -20,9 - 125: -22,12 - 146: -16,10 - 147: -15,8 - 148: -13,10 - 149: -17,11 - 160: -26,-62 - 200: -85,-45 - 201: -83,-43 - 409: -64,-13 - 418: -56,-15 - 419: -62,-9 - 422: -62,-11 - 427: -64,-16 - 428: -69,-18 - 713: 0,-17 - 715: -9,-22 - 761: -81,-57 - 795: -52,-72 - 845: -27,-55 - 896: -18,-11 - 994: -62,6 - 996: -62,8 - 997: -65,7 - 998: -65,7 - 1023: -75,-41 - 1031: -76,-61 - 1032: -76,-61 - 1064: -26,-7 - 1065: -17,-15 - 1198: -88,-24 - 1201: -93,-30 - 1202: -86,-25 - 1205: -78,-32 - 1206: -78,-32 - 1219: -71,-47 - 1220: -53,-43 - 1221: -13,-23 - 1836: -33,-36 - 1990: -27,-63 - 2043: -43,-32 - 2044: -41,-33 - 2399: -38,-17 - 2400: -39,-19 - 2536: -29,2 - 2537: -30,1 - 2605: -23,0 - 2606: -19,1 - 2609: -12,1 - 2610: -11,2 - 2613: -20,-18 - 2614: -20,-18 - 2615: -20,-14 - 2616: -20,-14 - 2617: -18,-3 - 2618: -23,1 - 2619: -18,5 - 2620: -17,0 - 2622: -20,-10 - 2922: -76,-19 - 2923: -75,-18 - 2924: -76,-18 - 2925: -78,-17 - 2926: -80,-17 - 3019: -70,-15 - 3020: -71,-14 - 3021: -70,-15 - 3053: -28,-3 - 3054: -28,-3 - 3055: -27,-3 - 3056: -28,-2 - 3101: -76,-15 - 3145: -65,10 - 3146: -63,11 - 3147: -62,12 - 3148: -63,10 - 3149: -63,8 - 3150: -64,6 - 3151: -67,8 - 3152: -67,8 - 3153: -65,5 - 3154: -64,4 - 3155: -64,2 - 3156: -65,2 - 3157: -67,-1 - 3158: -64,0 - 3159: -63,2 - 3160: -66,4 - 3161: -62,3 - 3162: -64,1 - 3163: -65,6 - 3164: -64,10 - 3165: -62,12 - 3166: -61,15 - 3167: -63,17 - 3168: -59,18 - 3169: -58,16 - 3170: -59,15 - 3171: -57,17 - 3172: -58,17 - 3173: -61,15 - 3174: -61,13 - 3175: -58,13 - 3176: -58,12 - 3177: -60,12 - 3271: -101,-22 + 100: -68,-53 + 102: 15,-18 + 121: -20,9 + 122: -22,12 + 143: -16,10 + 144: -15,8 + 145: -13,10 + 146: -17,11 + 157: -26,-62 + 195: -85,-45 + 196: -83,-43 + 401: -64,-13 + 410: -56,-15 + 411: -62,-9 + 414: -62,-11 + 419: -64,-16 + 420: -69,-18 + 704: 0,-17 + 706: -9,-22 + 752: -81,-57 + 786: -52,-72 + 835: -27,-55 + 886: -18,-11 + 984: -62,6 + 986: -62,8 + 987: -65,7 + 988: -65,7 + 1013: -75,-41 + 1021: -76,-61 + 1022: -76,-61 + 1054: -26,-7 + 1055: -17,-15 + 1188: -88,-24 + 1191: -93,-30 + 1192: -86,-25 + 1195: -78,-32 + 1196: -78,-32 + 1209: -71,-47 + 1210: -53,-43 + 1211: -13,-23 + 1800: -33,-36 + 1954: -27,-63 + 2007: -43,-32 + 2008: -41,-33 + 2362: -38,-17 + 2363: -39,-19 + 2499: -29,2 + 2500: -30,1 + 2568: -23,0 + 2569: -19,1 + 2572: -12,1 + 2573: -11,2 + 2576: -20,-18 + 2577: -20,-18 + 2578: -20,-14 + 2579: -20,-14 + 2580: -18,-3 + 2581: -23,1 + 2582: -18,5 + 2583: -17,0 + 2585: -20,-10 + 2875: -76,-19 + 2876: -75,-18 + 2877: -76,-18 + 2878: -78,-17 + 2879: -80,-17 + 2972: -70,-15 + 2973: -71,-14 + 2974: -70,-15 + 3006: -28,-3 + 3007: -28,-3 + 3008: -27,-3 + 3009: -28,-2 + 3054: -76,-15 + 3098: -65,10 + 3099: -63,11 + 3100: -62,12 + 3101: -63,10 + 3102: -63,8 + 3103: -64,6 + 3104: -67,8 + 3105: -67,8 + 3106: -65,5 + 3107: -64,4 + 3108: -64,2 + 3109: -65,2 + 3110: -67,-1 + 3111: -64,0 + 3112: -63,2 + 3113: -66,4 + 3114: -62,3 + 3115: -64,1 + 3116: -65,6 + 3117: -64,10 + 3118: -62,12 + 3119: -61,15 + 3120: -63,17 + 3121: -59,18 + 3122: -58,16 + 3123: -59,15 + 3124: -57,17 + 3125: -58,17 + 3126: -61,15 + 3127: -61,13 + 3128: -58,13 + 3129: -58,12 + 3130: -60,12 + 3224: -101,-22 - node: cleanable: True color: '#000000FF' id: DirtHeavyMonotile decals: - 1676: -65,-48 + 1640: -65,-48 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 137: -53,-21 - 138: -54,-23 - 139: -48,-16 - 140: -32,-23 - 202: -85,-48 - 203: -86,-48 - 204: -86,-48 - 410: -65,-13 - 429: -69,-18 - 918: -39,-22 - 962: -27,-11 - 963: -27,-15 - 964: -27,-15 - 971: -40,-56 - 972: -40,-57 - 1233: -30,-93 - 1234: -65,-73 - 1235: -66,-73 - 1236: -65,-73 - 1237: -65,-73 - 1250: -90,-33 - 1595: -86,-58 - 1596: -86,-58 - 1747: -54,-51 - 1748: -54,-51 - 1749: -51,-53 - 1750: -56,-49 - 1835: -30,-39 - 1987: -28,-60 - 1995: -28,-67 - 1996: -26,-67 - 2015: -16,-56 - 2016: -16,-56 - 2017: -13,-59 - 2018: -13,-59 - 2589: -9,9 - 2590: -9,9 - 2591: -9,9 - 2592: -9,8 - 2593: -8,8 - 2959: -78,-6 - 2960: -77,-6 - 2961: -75,-6 - 2962: -76,-6 - 2963: -76,-8 - 2964: -78,-8 - 2965: -79,-7 - 2966: -79,-6 - 2967: -75,-8 - 2968: -79,-8 - 2969: -79,-8 - 3068: -28,-2 - 3069: -27,-2 - 3070: -26,-5 - 3071: -28,-4 - 3072: -27,-5 - 3073: -28,-5 - 3178: -63,14 - 3179: -61,14 - 3180: -65,11 - 3181: -63,10 - 3182: -65,8 - 3183: -63,4 - 3184: -63,1 - 3185: -66,0 - 3186: -66,2 - 3187: -63,-1 - 3188: -63,-1 - 3189: -64,1 - 3190: -65,3 - 3191: -66,5 - 3192: -67,8 - 3193: -65,10 - 3194: -64,13 - 3195: -62,15 - 3196: -62,18 - 3197: -64,18 - 3198: -60,18 - 3199: -58,18 - 3200: -56,16 - 3201: -57,15 - 3202: -57,16 - 3203: -57,18 - 3204: -57,15 - 3205: -57,11 - 3206: -57,12 - 3207: -65,18 - 3208: -64,18 - 3209: -63,19 - 3210: -61,19 + 134: -53,-21 + 135: -54,-23 + 136: -48,-16 + 137: -32,-23 + 197: -85,-48 + 198: -86,-48 + 199: -86,-48 + 402: -65,-13 + 421: -69,-18 + 908: -39,-22 + 952: -27,-11 + 953: -27,-15 + 954: -27,-15 + 961: -40,-56 + 962: -40,-57 + 1223: -30,-93 + 1224: -65,-73 + 1225: -66,-73 + 1226: -65,-73 + 1227: -65,-73 + 1240: -90,-33 + 1561: -86,-58 + 1562: -86,-58 + 1711: -54,-51 + 1712: -54,-51 + 1713: -51,-53 + 1714: -56,-49 + 1799: -30,-39 + 1951: -28,-60 + 1959: -28,-67 + 1960: -26,-67 + 1979: -16,-56 + 1980: -16,-56 + 1981: -13,-59 + 1982: -13,-59 + 2552: -9,9 + 2553: -9,9 + 2554: -9,9 + 2555: -9,8 + 2556: -8,8 + 2912: -78,-6 + 2913: -77,-6 + 2914: -75,-6 + 2915: -76,-6 + 2916: -76,-8 + 2917: -78,-8 + 2918: -79,-7 + 2919: -79,-6 + 2920: -75,-8 + 2921: -79,-8 + 2922: -79,-8 + 3021: -28,-2 + 3022: -27,-2 + 3023: -26,-5 + 3024: -28,-4 + 3025: -27,-5 + 3026: -28,-5 + 3131: -63,14 + 3132: -61,14 + 3133: -65,11 + 3134: -63,10 + 3135: -65,8 + 3136: -63,4 + 3137: -63,1 + 3138: -66,0 + 3139: -66,2 + 3140: -63,-1 + 3141: -63,-1 + 3142: -64,1 + 3143: -65,3 + 3144: -66,5 + 3145: -67,8 + 3146: -65,10 + 3147: -64,13 + 3148: -62,15 + 3149: -62,18 + 3150: -64,18 + 3151: -60,18 + 3152: -58,18 + 3153: -56,16 + 3154: -57,15 + 3155: -57,16 + 3156: -57,18 + 3157: -57,15 + 3158: -57,11 + 3159: -57,12 + 3160: -65,18 + 3161: -64,18 + 3162: -63,19 + 3163: -61,19 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 164: -18,-52 - 165: -16,-52 - 411: -61,-13 - 412: -61,-12 - 430: -69,-16 - 750: -60,-57 - 800: -52,-72 - 854: -11,-48 - 855: -7,-49 - 856: -13,-48 - 857: -8,-48 - 954: -33,-21 - 955: -33,-21 - 956: -33,-21 - 981: -66,7 - 982: -63,8 - 983: -64,4 - 984: -61,6 - 985: -62,7 - 986: -67,-2 - 987: -66,-2 - 988: -66,-2 - 992: -64,3 - 1047: -68,-67 - 1048: -65,-66 - 1049: -64,-66 - 1057: -45,-46 - 1058: -45,-46 - 1061: -31,-8 - 1062: -31,-8 - 1213: -72,-50 - 1214: -72,-54 - 1215: -72,-50 - 1216: -72,-50 - 1251: -76,-28 - 1252: -76,-28 - 1253: -73,-21 - 1254: -73,-21 - 1255: -73,-21 - 1837: -34,-35 - 1838: -30,-27 - 2050: -41,-30 - 2051: -43,-30 - 2052: -41,-31 - 2252: -13,-52 - 2253: -11,-53 - 2254: -13,-54 - 2255: -13,-54 - 2540: -22,9 - 2541: -22,9 - 2596: -11,9 - 3088: -45,-79 - 3089: -46,-80 - 3098: -66,-14 + 161: -18,-52 + 162: -16,-52 + 403: -61,-13 + 404: -61,-12 + 422: -69,-16 + 741: -60,-57 + 790: -52,-72 + 844: -11,-48 + 845: -7,-49 + 846: -13,-48 + 847: -8,-48 + 944: -33,-21 + 945: -33,-21 + 946: -33,-21 + 971: -66,7 + 972: -63,8 + 973: -64,4 + 974: -61,6 + 975: -62,7 + 976: -67,-2 + 977: -66,-2 + 978: -66,-2 + 982: -64,3 + 1037: -68,-67 + 1038: -65,-66 + 1039: -64,-66 + 1047: -45,-46 + 1048: -45,-46 + 1051: -31,-8 + 1052: -31,-8 + 1203: -72,-50 + 1204: -72,-54 + 1205: -72,-50 + 1206: -72,-50 + 1241: -76,-28 + 1242: -76,-28 + 1243: -73,-21 + 1244: -73,-21 + 1245: -73,-21 + 1801: -34,-35 + 1802: -30,-27 + 2014: -41,-30 + 2015: -43,-30 + 2016: -41,-31 + 2216: -13,-52 + 2217: -11,-53 + 2218: -13,-54 + 2219: -13,-54 + 2503: -22,9 + 2504: -22,9 + 2559: -11,9 + 3041: -45,-79 + 3042: -46,-80 + 3051: -66,-14 - node: cleanable: True color: '#000000FF' id: DirtMedium decals: - 1677: -64,-48 - 1678: -63,-47 + 1641: -64,-48 + 1642: -63,-47 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 166: -17,-52 - 167: -17,-53 - 168: -19,-51 - 205: -85,-48 - 206: -83,-46 - 413: -58,-12 - 414: -59,-12 - 423: -65,-13 - 728: -25,-22 - 730: -25,-22 - 733: -26,-17 - 743: -57,-55 - 765: -74,-54 - 775: -50,-70 - 778: -52,-67 - 781: -60,-72 - 783: -59,-72 - 849: -7,-47 - 850: -5,-47 - 881: -1,-2 - 883: -1,-2 - 974: -89,-60 - 1039: -81,-61 - 1040: -81,-61 - 1045: -64,-61 - 1046: -64,-61 - 1066: -24,-12 - 1067: -1,-3 - 1068: 0,-12 - 1069: 0,-23 - 1070: 10,-23 - 1071: 13,-13 - 1072: -66,-23 - 1073: -60,-22 - 1173: -46,-2 - 1197: -4,-22 - 1243: -64,-71 - 1244: -64,-71 - 1258: -73,-22 - 1598: -88,-59 - 1741: -51,-51 - 1742: -52,-50 - 1744: -54,-51 - 1745: -52,-51 - 1746: -53,-49 - 1988: -29,-61 - 1989: -29,-61 - 1992: -29,-62 - 1993: -27,-62 - 1994: -28,-62 - 2001: -23,-60 - 2002: -23,-60 - 2003: -20,-58 - 2004: -15,-59 - 2005: -21,-60 - 2006: -21,-56 - 2007: -21,-56 - 2019: -19,-58 - 2020: -15,-58 - 2021: -15,-58 - 2022: -7,-49 - 2023: -8,-48 - 2024: -16,-49 - 2025: -16,-47 - 2045: -42,-30 - 2046: -43,-27 - 2047: -39,-27 - 2048: -40,-27 - 2256: -10,-55 - 2257: -10,-55 - 2258: -13,-55 - 2259: -13,-52 - 2542: -16,9 - 2543: -16,9 - 2544: -16,9 - 2545: -15,9 - 2548: -16,10 - 2549: -16,10 - 2550: -18,10 - 2551: -19,10 - 2552: -20,9 - 2553: -19,10 - 2554: -19,9 - 2555: -20,9 - 2556: -22,10 - 2557: -22,10 - 2558: -21,9 - 2559: -19,9 - 2560: -18,8 - 2561: -21,12 - 2562: -22,12 - 2563: -20,12 - 2564: -19,13 - 2565: -21,13 - 2566: -21,12 - 2567: -20,12 - 2568: -19,13 - 2569: -21,13 - 2608: -15,1 - 2611: -20,-11 - 2612: -17,-7 - 2900: -65,-53 - 2901: -65,-55 - 2902: -62,-55 - 2970: -79,-8 - 2971: -79,-8 - 2972: -75,-7 - 2973: -75,-6 - 3065: -28,-4 - 3066: -27,-2 - 3067: -26,-2 - 3090: -47,-75 - 3092: -33,-83 - 3093: -30,-86 - 3094: -30,-90 - 3095: -76,-14 - 3096: -77,-15 - 3102: -79,-13 - 3103: -75,-13 - 3211: -62,10 - 3212: -59,12 - 3213: -57,11 - 3214: -57,11 - 3215: -58,14 - 3216: -60,11 - 3217: -60,10 - 3218: -64,8 - 3272: -87,-27 - 3396: -6,8 - 3397: -4,8 - 3398: -6,7 - 3399: -6,6 - 3400: -11,4 - 3401: -5,9 + 163: -17,-52 + 164: -17,-53 + 165: -19,-51 + 200: -85,-48 + 201: -83,-46 + 405: -58,-12 + 406: -59,-12 + 415: -65,-13 + 719: -25,-22 + 721: -25,-22 + 724: -26,-17 + 734: -57,-55 + 756: -74,-54 + 766: -50,-70 + 769: -52,-67 + 772: -60,-72 + 774: -59,-72 + 839: -7,-47 + 840: -5,-47 + 871: -1,-2 + 873: -1,-2 + 964: -89,-60 + 1029: -81,-61 + 1030: -81,-61 + 1035: -64,-61 + 1036: -64,-61 + 1056: -24,-12 + 1057: -1,-3 + 1058: 0,-12 + 1059: 0,-23 + 1060: 10,-23 + 1061: 13,-13 + 1062: -66,-23 + 1063: -60,-22 + 1163: -46,-2 + 1187: -4,-22 + 1233: -64,-71 + 1234: -64,-71 + 1248: -73,-22 + 1564: -88,-59 + 1705: -51,-51 + 1706: -52,-50 + 1708: -54,-51 + 1709: -52,-51 + 1710: -53,-49 + 1952: -29,-61 + 1953: -29,-61 + 1956: -29,-62 + 1957: -27,-62 + 1958: -28,-62 + 1965: -23,-60 + 1966: -23,-60 + 1967: -20,-58 + 1968: -15,-59 + 1969: -21,-60 + 1970: -21,-56 + 1971: -21,-56 + 1983: -19,-58 + 1984: -15,-58 + 1985: -15,-58 + 1986: -7,-49 + 1987: -8,-48 + 1988: -16,-49 + 1989: -16,-47 + 2009: -42,-30 + 2010: -43,-27 + 2011: -39,-27 + 2012: -40,-27 + 2220: -10,-55 + 2221: -10,-55 + 2222: -13,-55 + 2223: -13,-52 + 2505: -16,9 + 2506: -16,9 + 2507: -16,9 + 2508: -15,9 + 2511: -16,10 + 2512: -16,10 + 2513: -18,10 + 2514: -19,10 + 2515: -20,9 + 2516: -19,10 + 2517: -19,9 + 2518: -20,9 + 2519: -22,10 + 2520: -22,10 + 2521: -21,9 + 2522: -19,9 + 2523: -18,8 + 2524: -21,12 + 2525: -22,12 + 2526: -20,12 + 2527: -19,13 + 2528: -21,13 + 2529: -21,12 + 2530: -20,12 + 2531: -19,13 + 2532: -21,13 + 2571: -15,1 + 2574: -20,-11 + 2575: -17,-7 + 2853: -65,-53 + 2854: -65,-55 + 2855: -62,-55 + 2923: -79,-8 + 2924: -79,-8 + 2925: -75,-7 + 2926: -75,-6 + 3018: -28,-4 + 3019: -27,-2 + 3020: -26,-2 + 3043: -47,-75 + 3045: -33,-83 + 3046: -30,-86 + 3047: -30,-90 + 3048: -76,-14 + 3049: -77,-15 + 3055: -79,-13 + 3056: -75,-13 + 3164: -62,10 + 3165: -59,12 + 3166: -57,11 + 3167: -57,11 + 3168: -58,14 + 3169: -60,11 + 3170: -60,10 + 3171: -64,8 + 3225: -87,-27 + 3349: -6,8 + 3350: -4,8 + 3351: -6,7 + 3352: -6,6 + 3353: -11,4 + 3354: -5,9 - node: cleanable: True color: '#0000003E' id: FlowersBROne decals: - 1076: -32,-29 - 1077: -35,-27 - 1078: -37,-27 + 1066: -32,-29 + 1067: -35,-27 + 1068: -37,-27 - node: color: '#FB5957AB' id: FlowersBROne decals: - 3384: 17.098349,-5.896583 + 3337: 17.098349,-5.896583 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 2234: -49,-25 + 2198: -49,-25 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 2241: -91.81342,-26.116003 - 2242: -93.06213,-25.863277 + 2205: -91.81342,-26.116003 + 2206: -93.06213,-25.863277 - node: color: '#00000069' id: FlowersBRTwo decals: - 3404: -39.374794,-43.03986 - 3405: -39.2817,-43.388958 - 3406: -38.630074,-43.27259 - 3407: -39.165337,-43.51696 - 3408: -38.57189,-42.80713 + 3357: -39.374794,-43.03986 + 3358: -39.2817,-43.388958 + 3359: -38.630074,-43.27259 + 3360: -39.165337,-43.51696 + 3361: -38.57189,-42.80713 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 2184: -41.961876,-58.021088 - 2185: -42.928146,-58.06569 - 2186: -42.437576,-58.06569 - 2808: -49.04973,-17.079376 - 2809: -48.409737,-19.278702 + 2148: -41.961876,-58.021088 + 2149: -42.928146,-58.06569 + 2150: -42.437576,-58.06569 + 2770: -49.04973,-17.079376 - node: cleanable: True color: '#0000003E' id: Flowersbr1 decals: - 1075: -47,-38 + 1065: -47,-38 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2810: -50.79516,-17.556477 + 2771: -50.79516,-17.556477 + 3398: -49.412117,-19.999725 - node: color: '#FFFFEFFF' id: Flowersbr2 decals: - 3382: 17.076195,-5.9431295 - 3383: 17.018015,-6.01295 + 3335: 17.076195,-5.9431295 + 3336: 17.018015,-6.01295 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1706: -70.25406,-27.185759 - 2157: -70.43938,-56.931484 - 2158: -70.14207,-57.02068 - 2159: -70.18666,-57.035545 + 1670: -70.25406,-27.185759 + 2121: -70.43938,-56.931484 + 2122: -70.14207,-57.02068 + 2123: -70.18666,-57.035545 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1701: -71,-26 + 1665: -71,-26 - node: cleanable: True color: '#0000003E' id: Flowerspv1 decals: - 1171: -33,-1 + 1161: -33,-1 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1707: -71.1014,-26.234322 - 2243: -90.99581,-26.041672 + 1671: -71.1014,-26.234322 + 2207: -90.99581,-26.041672 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1704: -71.02707,-27.02223 - 2236: -92.97294,-26.026806 - 2237: -92.081,-26.056538 - 2238: -91.20393,-26.08627 + 1668: -71.02707,-27.02223 + 2200: -92.97294,-26.026806 + 2201: -92.081,-26.056538 + 2202: -91.20393,-26.08627 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv2 decals: - 2171: -72.819595,-56.845993 - 2172: -70.38163,-56.920322 - 2173: -71.16951,-56.950054 + 2135: -72.819595,-56.845993 + 2136: -70.38163,-56.920322 + 2137: -71.16951,-56.950054 - node: cleanable: True color: '#0000003E' id: Flowerspv3 decals: - 1130: -26,-22 - 1141: -47,-22 - 1154: -96,-26 - 1155: 13,-7 - 1162: -22,9 - 1168: -39,-4 - 1169: -43,-7 + 1120: -26,-22 + 1131: -47,-22 + 1144: -96,-26 + 1145: 13,-7 + 1152: -22,9 + 1158: -39,-4 + 1159: -43,-7 - node: cleanable: True angle: 1.5707963267948966 rad color: '#0000003E' id: Flowerspv3 decals: - 1133: -34,-21 - 1134: -37,-21 - 1135: -35,-21 - 1138: -46,-23 + 1123: -34,-21 + 1124: -37,-21 + 1125: -35,-21 + 1128: -46,-23 - node: color: '#FFFFEFFF' id: Flowerspv3 decals: - 3381: 17.18286,-9.075327 + 3334: 17.18286,-9.075327 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 17: -51,-20 - 1703: -70.343254,-26.516779 - 2156: -72.446236,-56.990948 - 2189: -42.80922,-58.050823 - 2190: -42.259186,-58.035957 - 2244: -92.6459,-26.08627 - 2260: -24.045834,-49.24939 - 2264: -23.941772,-50.02243 - 2265: -23.971504,-49.041264 + 1667: -70.343254,-26.516779 + 2120: -72.446236,-56.990948 + 2153: -42.80922,-58.050823 + 2154: -42.259186,-58.035957 + 2208: -92.6459,-26.08627 + 2224: -24.045834,-49.24939 + 2228: -23.941772,-50.02243 + 2229: -23.971504,-49.041264 + 3397: -48.37152,-19.167217 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv3 decals: - 2176: -70.753265,-56.96492 + 2140: -70.753265,-56.96492 - node: cleanable: True color: '#00000076' id: Flowersy1 decals: - 2932: -75.904854,-19.803724 + 2885: -75.904854,-19.803724 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 2187: -42.79435,-58.00622 - 2188: -41.976746,-58.125153 - 2239: -93.00267,-26.026806 - 2240: -91.24853,-26.116003 - 2261: -23.926907,-49.383186 - 2804: -48.3981,-17.765938 - 2805: -49.224274,-17.870667 - 2806: -50.911522,-16.47427 + 2151: -42.79435,-58.00622 + 2152: -41.976746,-58.125153 + 2203: -93.00267,-26.026806 + 2204: -91.24853,-26.116003 + 2225: -23.926907,-49.383186 + 2766: -48.3981,-17.765938 + 2767: -49.224274,-17.870667 + 2768: -50.911522,-16.47427 - node: cleanable: True color: '#0000003E' id: Flowersy2 decals: - 1083: -27,-55 - 1085: -32,-56 - 1086: -46,-56 - 1088: -55,-58 - 1090: -76,-58 - 1093: -75,-48 - 1096: -64,-32 - 1099: -50,-28 - 1103: -46,-11 - 1105: -50,-3 - 1108: -29,6 - 1109: -27,4 - 1115: -9,6 - 1120: -55,-74 - 1122: -57,-61 - 1124: -61,-61 + 1073: -27,-55 + 1075: -32,-56 + 1076: -46,-56 + 1078: -55,-58 + 1080: -76,-58 + 1083: -75,-48 + 1086: -64,-32 + 1089: -50,-28 + 1093: -46,-11 + 1095: -50,-3 + 1098: -29,6 + 1099: -27,4 + 1105: -9,6 + 1110: -55,-74 + 1112: -57,-61 + 1114: -61,-61 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 1702: -70.90815,-26.412716 - 2235: -49,-25 - 2266: -24.001236,-49.353455 + 1666: -70.90815,-26.412716 + 2199: -49,-25 + 2230: -24.001236,-49.353455 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy2 decals: - 2174: -72.06145,-56.93519 - 2175: -70.56001,-56.905457 + 2138: -72.06145,-56.93519 + 2139: -70.56001,-56.905457 - node: cleanable: True color: '#0000003E' id: Flowersy3 decals: - 1074: -58,-24 + 1064: -58,-24 - node: color: '#FFFFEFFF' id: Flowersy3 decals: - 3380: 17.097528,-9.090841 + 3333: 17.097528,-9.090841 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 1705: -69.733765,-26.754639 - 2160: -70.21639,-57.035545 - 2262: -24.060698,-50.081898 - 2807: -50.946434,-19.115788 + 1669: -69.733765,-26.754639 + 2124: -70.21639,-57.035545 + 2226: -24.060698,-50.081898 + 2769: -50.946434,-19.115788 - node: cleanable: True color: '#0000003E' id: Flowersy4 decals: - 1079: -27,-34 - 1080: -21,-35 - 1081: -20,-38 - 1082: -27,-42 + 1069: -27,-34 + 1070: -21,-35 + 1071: -20,-38 + 1072: -27,-42 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 2263: -23.926907,-49.115593 + 2227: -23.926907,-49.115593 - node: cleanable: True color: '#FF33007F' id: Grassa4 decals: - 2991: -73.661575,-64.02492 + 2944: -73.661575,-64.02492 - node: color: '#FFFFFFFF' id: Grassa4 @@ -3210,24 +3228,24 @@ entities: id: Grassb4 decals: 2: -13,8 - 2167: -71.853325,-56.845993 - 2168: -70.48569,-56.920322 + 2131: -71.853325,-56.845993 + 2132: -70.48569,-56.920322 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 2164: -71.19924,-56.905457 + 2128: -71.19924,-56.905457 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 2169: -72.83446,-56.86086 - 2170: -71.00598,-56.93519 + 2133: -72.83446,-56.86086 + 2134: -71.00598,-56.93519 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 37: -70,-26 + 35: -70,-26 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3235,160 +3253,176 @@ entities: 18: -49,-20 19: -48,-18 20: -51,-16 - 2161: -72.25298,-56.97608 - 2196: -71.435005,-56.76527 - 2197: -71.75246,-56.586876 - 2267: -24.016102,-49.844036 - 2268: -23.98637,-49.353455 - 2269: -23.941772,-48.996666 + 2125: -72.25298,-56.97608 + 2160: -71.435005,-56.76527 + 2161: -71.75246,-56.586876 + 2231: -24.016102,-49.844036 + 2232: -23.98637,-49.353455 + 2233: -23.941772,-48.996666 - node: cleanable: True color: '#FF00003E' id: Grassd2 decals: - 2984: -75.06771,-6.471197 - 2985: -75.05995,-6.3936195 + 2937: -75.06771,-6.471197 + 2938: -75.05995,-6.3936195 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 21: -49,-19 - 22: -48,-20 - 23: -50,-18 - 24: -51,-19 - 25: -50,-18 - 26: -48,-17 - 27: -50,-19 - 28: -50,-20 - 29: -51,-19 + 21: -48,-20 + 22: -50,-18 + 23: -51,-19 + 24: -50,-18 + 25: -48,-17 + 26: -50,-19 + 27: -50,-20 + 28: -51,-19 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 2165: -71.43709,-56.86086 - 2166: -70.67894,-56.96492 + 2129: -71.43709,-56.86086 + 2130: -70.67894,-56.96492 - node: color: '#FFFFEFFF' id: Grasse1 decals: - 3376: 17.113043,-5.9877367 - 3377: 17.050983,-9.090841 + 3329: 17.113043,-5.9877367 + 3330: 17.050983,-9.090841 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 2163: -70.24784,-56.845993 + 2127: -70.24784,-56.845993 + 3380: -49.60762,-19.987465 + 3381: -48.611626,-20.046932 + 3382: -50.45513,-16.598036 + 3383: -50.752457,-17.50484 + 3384: -50.97545,-16.419647 + 3385: -50.678123,-18.545435 + 3386: -51.19844,-17.831884 + 3387: -49.741554,-16.829456 + 3388: -49.81588,-18.473076 + 3389: -48.373863,-16.941917 + 3390: -50.61866,-15.945919 + 3391: -51.00518,-18.517673 + 3392: -51.020042,-17.254095 + 3393: -50.321167,-20.033876 + 3394: -48.54991,-18.472813 - node: color: '#FFFFEFFF' id: Grasse3 decals: - 3378: 17.074255,-8.951202 - 3379: 17.05874,-5.786035 + 3331: 17.074255,-8.951202 + 3332: 17.05874,-5.786035 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1708: -69.97161,-26.278921 - 1709: -71.1906,-26.903301 - 1710: -70.640564,-26.293787 - 1711: -69.882416,-27.037096 - 2162: -72.99798,-56.905457 - 2191: -70.11692,-56.86438 - 2192: -70.88993,-56.73554 - 2193: -72.25757,-56.8842 - 2194: -73.129684,-56.83465 - 2195: -71.425095,-56.84456 - 2245: -93.01754,-25.997072 - 2246: -92.28912,-26.01194 - 2247: -91.32285,-25.952475 + 1672: -69.97161,-26.278921 + 1673: -71.1906,-26.903301 + 1674: -70.640564,-26.293787 + 1675: -69.882416,-27.037096 + 2126: -72.99798,-56.905457 + 2155: -70.11692,-56.86438 + 2156: -70.88993,-56.73554 + 2157: -72.25757,-56.8842 + 2158: -73.129684,-56.83465 + 2159: -71.425095,-56.84456 + 2209: -93.01754,-25.997072 + 2210: -92.28912,-26.01194 + 2211: -91.32285,-25.952475 + 3395: -48.297195,-19.137486 + 3396: -48.758026,-18.6469 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 307: -47,-59 + 299: -47,-59 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 308: -48,-59 - 309: -50,-61 + 300: -48,-59 + 301: -50,-61 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 303: -48,-62 - 305: -47,-61 + 295: -48,-62 + 297: -47,-61 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 301: -50,-62 + 293: -50,-62 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 310: -48,-61 + 302: -48,-61 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 304: -48,-61 + 296: -48,-61 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 306: -47,-60 + 298: -47,-60 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 312: -49,-61 - 2503: -18,7 - 2504: -17,7 + 304: -49,-61 + 2466: -18,7 + 2467: -17,7 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 2977: -78,-6 - 2978: -77,-6 + 2930: -78,-6 + 2931: -77,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 302: -49,-62 + 294: -49,-62 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 311: -48,-60 + 303: -48,-60 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale decals: - 106: -2,-22 - 109: -54,-55 + 103: -2,-22 + 106: -54,-55 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 decals: - 107: -2,-24 - 108: -45,-24 + 104: -2,-24 + 105: -45,-24 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale90 decals: - 110: -24,-55 + 107: -24,-55 - node: color: '#DE3A3A47' id: HerringboneOverlay decals: - 2858: -15,-19 - 2859: -14,-19 - 2860: -13,-19 - 2861: -12,-19 - 2862: -12,-18 - 2863: -16,-19 + 2819: -15,-19 + 2820: -14,-19 + 2821: -13,-19 + 2822: -12,-19 + 2823: -12,-18 + 2824: -16,-19 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3398,2039 +3432,2031 @@ entities: color: '#4B709CFF' id: MiniTileBoxOverlay decals: - 431: -50,-12 + 423: -50,-12 - node: color: '#639137FF' id: MiniTileBoxOverlay decals: - 402: -49,-14 + 394: -49,-14 - node: color: '#AE6716FF' id: MiniTileBoxOverlay decals: - 349: -64,-12 - 386: -62,-18 + 341: -64,-12 + 378: -62,-18 - node: color: '#C6FF91FF' id: MiniTileBoxOverlay decals: - 403: -50,-14 + 395: -50,-14 - node: color: '#FF5C5CFF' id: MiniTileBoxOverlay decals: - 401: -49,-12 + 393: -49,-12 - node: color: '#DE3A3AAB' id: MiniTileCheckerAOverlay decals: - 233: -14,-30 - 234: -14,-31 + 228: -14,-30 + 229: -14,-31 - node: zIndex: 1 color: '#724276FF' id: MiniTileCornerOverlayNE decals: - 2690: -41,-76 - 2711: -37,-75 + 2653: -41,-76 + 2674: -37,-75 - node: zIndex: 1 color: '#79150096' id: MiniTileCornerOverlayNE decals: - 1800: -29,-31 + 1764: -29,-31 - node: color: '#AE6716FF' id: MiniTileCornerOverlayNE decals: - 371: -64,-18 - 393: -56,-17 + 363: -64,-18 + 385: -56,-17 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileCornerOverlayNE decals: - 2516: -21,5 + 2479: -21,5 - node: zIndex: 2 color: '#EFB34196' id: MiniTileCornerOverlayNE decals: - 1665: -53,-15 + 1629: -53,-15 - node: zIndex: 1 color: '#724276FF' id: MiniTileCornerOverlayNW decals: - 2689: -42,-76 - 2710: -38,-75 + 2652: -42,-76 + 2673: -38,-75 - node: zIndex: 1 color: '#79150096' id: MiniTileCornerOverlayNW decals: - 1799: -31,-31 + 1763: -31,-31 - node: color: '#AE6716FF' id: MiniTileCornerOverlayNW decals: - 372: -66,-18 - 396: -62,-17 + 364: -66,-18 + 388: -62,-17 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileCornerOverlayNW decals: - 2513: -23,5 + 2476: -23,5 - node: zIndex: 2 color: '#EFB34196' id: MiniTileCornerOverlayNW decals: - 1664: -54,-15 + 1628: -54,-15 - node: zIndex: 1 color: '#724276FF' id: MiniTileCornerOverlaySE decals: - 2688: -41,-80 - 2708: -37,-82 + 2651: -41,-80 + 2671: -37,-82 - node: zIndex: 1 color: '#79150096' id: MiniTileCornerOverlaySE decals: - 1802: -29,-32 + 1766: -29,-32 - node: color: '#AE6716FF' id: MiniTileCornerOverlaySE decals: - 374: -64,-20 + 366: -64,-20 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileCornerOverlaySE decals: - 2514: -21,4 + 2477: -21,4 - node: zIndex: 2 color: '#EFB34196' id: MiniTileCornerOverlaySE decals: - 1666: -53,-18 + 1630: -53,-18 - node: zIndex: 1 color: '#724276FF' id: MiniTileCornerOverlaySW decals: - 2691: -42,-80 - 2709: -38,-82 + 2654: -42,-80 + 2672: -38,-82 - node: zIndex: 1 color: '#79150096' id: MiniTileCornerOverlaySW decals: - 1801: -31,-32 + 1765: -31,-32 - node: color: '#AE6716FF' id: MiniTileCornerOverlaySW decals: - 373: -66,-20 - 397: -62,-19 + 365: -66,-20 + 389: -62,-19 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileCornerOverlaySW decals: - 2515: -23,4 + 2478: -23,4 - node: zIndex: 2 color: '#EFB34196' id: MiniTileCornerOverlaySW decals: - 1667: -54,-18 + 1631: -54,-18 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 1697: -66,-7 - 1794: -29,-31 - 2508: -21,5 - 2520: -20,6 - 2672: -41,-76 - 2707: -37,-75 + 1661: -66,-7 + 1758: -29,-31 + 2471: -21,5 + 2483: -20,6 + 2635: -41,-76 + 2670: -37,-75 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 1956: -25,-59 + 1920: -25,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 1696: -70,-7 - 1793: -31,-31 - 2096: -17,-49 - 2507: -23,5 - 2519: -24,6 - 2671: -42,-76 - 2706: -38,-75 + 1660: -70,-7 + 1757: -31,-31 + 2060: -17,-49 + 2470: -23,5 + 2482: -24,6 + 2634: -42,-76 + 2669: -38,-75 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 1698: -66,-11 - 1796: -29,-32 - 2509: -21,4 - 2521: -20,3 - 2679: -41,-80 - 2693: -37,-82 + 1662: -66,-11 + 1760: -29,-32 + 2472: -21,4 + 2484: -20,3 + 2642: -41,-80 + 2656: -37,-82 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 1699: -70,-11 - 1795: -31,-32 - 2510: -23,4 - 2522: -24,3 - 2680: -42,-80 - 2692: -38,-82 + 1663: -70,-11 + 1759: -31,-32 + 2473: -23,4 + 2485: -24,3 + 2643: -42,-80 + 2655: -38,-82 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 1964: -28,-59 + 1928: -28,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkEndE decals: - 325: -48,-64 - 2146: -37,-89 + 317: -48,-64 + 2110: -37,-89 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 1939: -37,-91 - 1942: -35,-91 - 1944: -33,-91 - 2144: -39,-91 + 1903: -37,-91 + 1906: -35,-91 + 1908: -33,-91 + 2108: -39,-91 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 1940: -37,-92 - 1941: -35,-92 - 1943: -33,-92 - 2143: -39,-92 + 1904: -37,-92 + 1905: -35,-92 + 1907: -33,-92 + 2107: -39,-92 - node: color: '#FFFFFFFF' id: MiniTileDarkEndW decals: - 326: -49,-64 - 2145: -38,-89 - 2778: -47,-88 + 318: -49,-64 + 2109: -38,-89 + 2741: -47,-88 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 1694: -70,-11 - 2828: -14,-6 + 1658: -70,-11 + 2789: -14,-6 - node: color: '#DE3A3A96' id: MiniTileDarkInnerNw decals: - 2487: -18,-18 + 2450: -18,-18 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 1695: -66,-11 - 1997: -29,-63 - 2827: -14,-5 - 2911: -77,-15 + 1659: -66,-11 + 1961: -29,-63 + 2788: -14,-5 + 2864: -77,-15 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 1693: -70,-7 - 2838: -14,-3 + 1657: -70,-7 + 2799: -14,-3 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 1692: -66,-7 - 2832: -14,-3 + 1656: -66,-7 + 2793: -14,-3 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 1960: -26,-59 + 1924: -26,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1683: -70,-10 - 1684: -70,-9 - 1685: -70,-8 - 1916: -21,-30 - 1917: -21,-31 - 1918: -21,-32 - 1965: -25,-64 - 1966: -25,-63 - 1967: -25,-62 - 1968: -25,-61 - 1969: -25,-60 - 1970: -25,-65 - 2124: -19,-49 - 2125: -19,-48 - 2126: -19,-47 - 2127: -19,-46 - 2128: -19,-45 - 2215: -74,-55 - 2216: -74,-54 - 2217: -74,-53 - 2218: -74,-52 - 2219: -74,-51 - 2220: -74,-50 - 2221: -74,-49 - 2222: -74,-48 - 2223: -74,-47 - 2224: -74,-46 - 2225: -74,-45 - 2226: -74,-44 - 2227: -74,-43 - 2228: -74,-42 - 2229: -74,-41 - 2523: -20,4 - 2524: -20,5 - 2676: -41,-77 - 2677: -41,-78 - 2678: -41,-79 - 2694: -37,-81 - 2695: -37,-80 - 2696: -37,-79 - 2697: -37,-78 - 2698: -37,-77 - 2699: -37,-76 - 2820: -13,-6 - 2824: -14,-4 - 2825: -14,-5 - 2836: -13,-3 + 1647: -70,-10 + 1648: -70,-9 + 1649: -70,-8 + 1880: -21,-30 + 1881: -21,-31 + 1882: -21,-32 + 1929: -25,-64 + 1930: -25,-63 + 1931: -25,-62 + 1932: -25,-61 + 1933: -25,-60 + 1934: -25,-65 + 2088: -19,-49 + 2089: -19,-48 + 2090: -19,-47 + 2091: -19,-46 + 2092: -19,-45 + 2179: -74,-55 + 2180: -74,-54 + 2181: -74,-53 + 2182: -74,-52 + 2183: -74,-51 + 2184: -74,-50 + 2185: -74,-49 + 2186: -74,-48 + 2187: -74,-47 + 2188: -74,-46 + 2189: -74,-45 + 2190: -74,-44 + 2191: -74,-43 + 2192: -74,-42 + 2193: -74,-41 + 2486: -20,4 + 2487: -20,5 + 2639: -41,-77 + 2640: -41,-78 + 2641: -41,-79 + 2657: -37,-81 + 2658: -37,-80 + 2659: -37,-79 + 2660: -37,-78 + 2661: -37,-77 + 2662: -37,-76 + 2781: -13,-6 + 2785: -14,-4 + 2786: -14,-5 + 2797: -13,-3 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 335: -54,-8 - 336: -50,-8 - 1680: -69,-11 - 1681: -68,-11 - 1682: -67,-11 - 1797: -30,-31 - 2071: -4,-47 - 2072: -5,-47 - 2073: -6,-47 - 2074: -7,-47 - 2075: -8,-47 - 2076: -9,-47 - 2077: -11,-47 - 2078: -13,-47 - 2079: -15,-47 - 2080: -16,-47 - 2081: -17,-47 - 2082: -18,-47 - 2083: -4,-49 - 2084: -5,-49 - 2085: -6,-49 - 2086: -7,-49 - 2087: -8,-49 - 2088: -9,-49 - 2089: -10,-49 - 2090: -11,-49 - 2091: -12,-49 - 2092: -13,-49 - 2093: -15,-49 - 2094: -16,-49 - 2095: -14,-49 - 2149: -14,-47 - 2150: -12,-47 - 2151: -10,-47 - 2230: -74,-41 - 2231: -75,-41 - 2512: -22,5 - 2530: -23,6 - 2531: -22,6 - 2532: -21,6 - 2533: -20,6 - 2750: -43,-88 - 2751: -42,-88 - 2752: -41,-88 - 2760: -44,-88 - 2761: -45,-88 - 2762: -46,-88 - 2775: -40,-88 - 2823: -15,-5 - 2826: -13,-6 - 2833: -15,-3 - 2834: -14,-3 - 2835: -13,-3 - 2905: -80,-15 - 2906: -79,-15 - 2907: -78,-15 + 327: -54,-8 + 328: -50,-8 + 1644: -69,-11 + 1645: -68,-11 + 1646: -67,-11 + 1761: -30,-31 + 2035: -4,-47 + 2036: -5,-47 + 2037: -6,-47 + 2038: -7,-47 + 2039: -8,-47 + 2040: -9,-47 + 2041: -11,-47 + 2042: -13,-47 + 2043: -15,-47 + 2044: -16,-47 + 2045: -17,-47 + 2046: -18,-47 + 2047: -4,-49 + 2048: -5,-49 + 2049: -6,-49 + 2050: -7,-49 + 2051: -8,-49 + 2052: -9,-49 + 2053: -10,-49 + 2054: -11,-49 + 2055: -12,-49 + 2056: -13,-49 + 2057: -15,-49 + 2058: -16,-49 + 2059: -14,-49 + 2113: -14,-47 + 2114: -12,-47 + 2115: -10,-47 + 2194: -74,-41 + 2195: -75,-41 + 2475: -22,5 + 2493: -23,6 + 2494: -22,6 + 2495: -21,6 + 2496: -20,6 + 2713: -43,-88 + 2714: -42,-88 + 2715: -41,-88 + 2723: -44,-88 + 2724: -45,-88 + 2725: -46,-88 + 2738: -40,-88 + 2784: -15,-5 + 2787: -13,-6 + 2794: -15,-3 + 2795: -14,-3 + 2796: -13,-3 + 2858: -80,-15 + 2859: -79,-15 + 2860: -78,-15 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 1948: -30,-63 - 1954: -27,-59 - 1955: -26,-59 + 1912: -30,-63 + 1918: -27,-59 + 1919: -26,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 331: -54,-10 - 332: -54,-10 - 333: -50,-10 - 334: -54,-10 - 1689: -69,-7 - 1690: -68,-7 - 1691: -67,-7 - 1798: -30,-32 - 1919: -21,-32 - 2097: -15,-49 - 2098: -14,-49 - 2099: -13,-49 - 2100: -12,-49 - 2101: -11,-49 - 2102: -10,-49 - 2103: -9,-49 - 2104: -8,-49 - 2105: -7,-49 - 2106: -6,-49 - 2107: -5,-49 - 2108: -4,-49 - 2109: -4,-47 - 2110: -5,-47 - 2111: -6,-47 - 2112: -7,-47 - 2113: -8,-47 - 2114: -9,-47 - 2115: -11,-47 - 2116: -10,-47 - 2117: -12,-47 - 2118: -13,-47 - 2119: -14,-47 - 2120: -15,-47 - 2121: -16,-47 - 2122: -17,-47 - 2123: -18,-47 - 2232: -75,-55 - 2233: -74,-55 - 2511: -22,4 - 2525: -23,3 - 2526: -22,3 - 2527: -21,3 - 2756: -43,-88 - 2757: -42,-88 - 2758: -41,-88 - 2759: -44,-88 - 2763: -45,-88 - 2764: -46,-88 - 2774: -40,-88 - 2817: -15,-6 - 2818: -14,-6 - 2819: -13,-6 - 2831: -15,-3 - 2837: -13,-3 + 323: -54,-10 + 324: -54,-10 + 325: -50,-10 + 326: -54,-10 + 1653: -69,-7 + 1654: -68,-7 + 1655: -67,-7 + 1762: -30,-32 + 1883: -21,-32 + 2061: -15,-49 + 2062: -14,-49 + 2063: -13,-49 + 2064: -12,-49 + 2065: -11,-49 + 2066: -10,-49 + 2067: -9,-49 + 2068: -8,-49 + 2069: -7,-49 + 2070: -6,-49 + 2071: -5,-49 + 2072: -4,-49 + 2073: -4,-47 + 2074: -5,-47 + 2075: -6,-47 + 2076: -7,-47 + 2077: -8,-47 + 2078: -9,-47 + 2079: -11,-47 + 2080: -10,-47 + 2081: -12,-47 + 2082: -13,-47 + 2083: -14,-47 + 2084: -15,-47 + 2085: -16,-47 + 2086: -17,-47 + 2087: -18,-47 + 2196: -75,-55 + 2197: -74,-55 + 2474: -22,4 + 2488: -23,3 + 2489: -22,3 + 2490: -21,3 + 2719: -43,-88 + 2720: -42,-88 + 2721: -41,-88 + 2722: -44,-88 + 2726: -45,-88 + 2727: -46,-88 + 2737: -40,-88 + 2778: -15,-6 + 2779: -14,-6 + 2780: -13,-6 + 2792: -15,-3 + 2798: -13,-3 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1958: -27,-59 + 1922: -27,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1686: -66,-10 - 1687: -66,-9 - 1688: -66,-8 - 1971: -26,-65 - 2200: -75,-55 - 2201: -75,-54 - 2202: -75,-53 - 2203: -75,-52 - 2204: -75,-50 - 2205: -75,-51 - 2206: -75,-49 - 2207: -75,-48 - 2208: -75,-47 - 2209: -75,-46 - 2210: -75,-45 - 2211: -75,-44 - 2212: -75,-43 - 2213: -75,-42 - 2214: -75,-41 - 2528: -24,4 - 2529: -24,5 - 2673: -42,-77 - 2674: -42,-78 - 2675: -42,-79 - 2700: -38,-81 - 2701: -38,-80 - 2702: -38,-79 - 2703: -38,-78 - 2704: -38,-77 - 2705: -38,-76 - 2821: -15,-6 - 2822: -15,-5 - 2829: -14,-4 - 2830: -15,-3 - 2908: -77,-14 - 2909: -77,-13 - 2910: -77,-12 + 1650: -66,-10 + 1651: -66,-9 + 1652: -66,-8 + 1935: -26,-65 + 2164: -75,-55 + 2165: -75,-54 + 2166: -75,-53 + 2167: -75,-52 + 2168: -75,-50 + 2169: -75,-51 + 2170: -75,-49 + 2171: -75,-48 + 2172: -75,-47 + 2173: -75,-46 + 2174: -75,-45 + 2175: -75,-44 + 2176: -75,-43 + 2177: -75,-42 + 2178: -75,-41 + 2491: -24,4 + 2492: -24,5 + 2636: -42,-77 + 2637: -42,-78 + 2638: -42,-79 + 2663: -38,-81 + 2664: -38,-80 + 2665: -38,-79 + 2666: -38,-78 + 2667: -38,-77 + 2668: -38,-76 + 2782: -15,-6 + 2783: -15,-5 + 2790: -14,-4 + 2791: -15,-3 + 2861: -77,-14 + 2862: -77,-13 + 2863: -77,-12 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1946: -29,-61 - 1947: -29,-62 - 1952: -29,-60 - 1957: -26,-61 - 1959: -26,-60 - 1961: -26,-62 - 1962: -26,-63 - 1963: -26,-64 + 1910: -29,-61 + 1911: -29,-62 + 1916: -29,-60 + 1921: -26,-61 + 1923: -26,-60 + 1925: -26,-62 + 1926: -26,-63 + 1927: -26,-64 - node: color: '#D381C996' id: MiniTileDiagonalCheckerAOverlay decals: - 323: -49,-64 - 324: -48,-64 + 315: -49,-64 + 316: -48,-64 - node: color: '#AE6716FF' id: MiniTileEndOverlayE decals: - 347: -66,-13 - 387: -58,-17 - 390: -56,-19 + 339: -66,-13 + 379: -58,-17 + 382: -56,-19 - node: color: '#AE6716FF' id: MiniTileEndOverlayW decals: - 348: -67,-13 - 388: -59,-17 - 389: -57,-19 + 340: -67,-13 + 380: -59,-17 + 381: -57,-19 - node: zIndex: 1 color: '#D381C996' id: MiniTileEndOverlayW decals: - 2779: -47,-88 + 2742: -47,-88 - node: zIndex: 1 color: '#52B4E996' id: MiniTileInnerOverlayNE decals: - 1613: -64,-28 + 1579: -64,-28 - node: color: '#8D1C9996' id: MiniTileInnerOverlayNE decals: - 2291: -4,-6 + 2255: -4,-6 - node: zIndex: 1 color: '#52B4E996' id: MiniTileInnerOverlayNW decals: - 1614: -62,-28 + 1580: -62,-28 - node: zIndex: 1 color: '#724276FF' id: MiniTileInnerOverlayNW decals: - 2646: -46,-76 + 2609: -46,-76 - node: color: '#8D1C9996' id: MiniTileInnerOverlayNW decals: - 1998: -29,-63 + 1962: -29,-63 - node: color: '#DE3A3A96' id: MiniTileInnerOverlayNW decals: - 2486: -18,-18 + 2449: -18,-18 - node: zIndex: 1 color: '#EFB34196' id: MiniTileInnerOverlayNW decals: - 2912: -77,-15 + 2865: -77,-15 - node: zIndex: 1 color: '#AE6716FF' id: MiniTileInnerOverlaySW decals: - 3014: -70,-14 + 2967: -70,-14 - node: zIndex: 1 color: '#724276FF' id: MiniTileLineOverlayE decals: - 2681: -41,-79 - 2682: -41,-79 - 2683: -41,-78 - 2684: -41,-77 - 2712: -37,-81 - 2713: -37,-80 - 2714: -37,-79 - 2715: -37,-78 - 2716: -37,-77 - 2717: -37,-76 + 2644: -41,-79 + 2645: -41,-79 + 2646: -41,-78 + 2647: -41,-77 + 2675: -37,-81 + 2676: -37,-80 + 2677: -37,-79 + 2678: -37,-78 + 2679: -37,-77 + 2680: -37,-76 - node: color: '#AE6716FF' id: MiniTileLineOverlayE decals: - 369: -61,-14 - 370: -61,-15 - 378: -64,-19 - 391: -56,-18 + 361: -61,-14 + 362: -61,-15 + 370: -64,-19 + 383: -56,-18 - node: zIndex: 2 color: '#EFB34196' id: MiniTileLineOverlayE decals: - 1670: -53,-17 - 1671: -53,-16 + 1634: -53,-17 + 1635: -53,-16 - node: zIndex: 1 color: '#79150096' id: MiniTileLineOverlayN decals: - 1803: -30,-31 + 1767: -30,-31 - node: zIndex: 1 color: '#8D1C9996' id: MiniTileLineOverlayN decals: - 1951: -30,-63 + 1915: -30,-63 - node: color: '#AE6716FF' id: MiniTileLineOverlayN decals: - 352: -63,-7 - 377: -65,-18 - 392: -57,-17 - 394: -60,-17 - 395: -61,-17 + 344: -63,-7 + 369: -65,-18 + 384: -57,-17 + 386: -60,-17 + 387: -61,-17 - node: zIndex: 2 color: '#AE6716FF' id: MiniTileLineOverlayN decals: - 1274: -65,-22 + 1264: -65,-22 - node: zIndex: 1 color: '#D381C996' id: MiniTileLineOverlayN decals: - 2753: -41,-88 - 2754: -42,-88 - 2755: -43,-88 - 2765: -45,-88 - 2766: -46,-88 - 2767: -44,-88 - 2777: -40,-88 + 2716: -41,-88 + 2717: -42,-88 + 2718: -43,-88 + 2728: -45,-88 + 2729: -46,-88 + 2730: -44,-88 + 2740: -40,-88 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileLineOverlayN decals: - 2517: -22,5 + 2480: -22,5 - node: zIndex: 1 color: '#EFB34196' id: MiniTileLineOverlayN decals: - 2916: -80,-15 - 2917: -79,-15 - 2918: -78,-15 + 2869: -80,-15 + 2870: -79,-15 + 2871: -78,-15 - node: zIndex: 1 color: '#79150096' id: MiniTileLineOverlayS decals: - 1804: -30,-32 + 1768: -30,-32 - node: color: '#AE6716FF' id: MiniTileLineOverlayS decals: - 355: -63,-10 - 375: -65,-20 - 382: -61,-19 - 383: -60,-19 - 384: -59,-19 - 385: -58,-19 + 347: -63,-10 + 367: -65,-20 + 374: -61,-19 + 375: -60,-19 + 376: -59,-19 + 377: -58,-19 - node: zIndex: 1 color: '#D381C996' id: MiniTileLineOverlayS decals: - 2768: -46,-88 - 2769: -45,-88 - 2770: -44,-88 - 2771: -43,-88 - 2772: -42,-88 - 2773: -41,-88 - 2776: -40,-88 + 2731: -46,-88 + 2732: -45,-88 + 2733: -44,-88 + 2734: -43,-88 + 2735: -42,-88 + 2736: -41,-88 + 2739: -40,-88 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileLineOverlayS decals: - 2518: -22,4 - - node: - color: '#52B4E9FF' - id: MiniTileLineOverlayW - decals: - 279: -51,-43 + 2481: -22,4 - node: zIndex: 1 color: '#724276FF' id: MiniTileLineOverlayW decals: - 2685: -42,-79 - 2686: -42,-78 - 2687: -42,-77 - 2718: -38,-81 - 2719: -38,-80 - 2720: -38,-79 - 2721: -38,-78 - 2722: -38,-77 - 2723: -38,-76 + 2648: -42,-79 + 2649: -42,-78 + 2650: -42,-77 + 2681: -38,-81 + 2682: -38,-80 + 2683: -38,-79 + 2684: -38,-78 + 2685: -38,-77 + 2686: -38,-76 - node: zIndex: 1 color: '#8D1C9996' id: MiniTileLineOverlayW decals: - 1949: -29,-62 - 1950: -29,-61 - 1953: -29,-60 + 1913: -29,-62 + 1914: -29,-61 + 1917: -29,-60 - node: color: '#AE6716FF' id: MiniTileLineOverlayW decals: - 376: -66,-19 + 368: -66,-19 - node: zIndex: 1 color: '#EFB34196' id: MiniTileLineOverlayW decals: - 2913: -77,-14 - 2914: -77,-13 - 2915: -77,-12 + 2866: -77,-14 + 2867: -77,-13 + 2868: -77,-12 - node: zIndex: 2 color: '#EFB34196' id: MiniTileLineOverlayW decals: - 1668: -54,-17 - 1669: -54,-16 + 1632: -54,-17 + 1633: -54,-16 - node: color: '#52B4E996' id: MiniTileOverlay decals: - 1649: -51,-14 + 1613: -51,-14 - node: color: '#A4610696' id: MiniTileOverlay decals: - 1648: -51,-12 + 1612: -51,-12 - node: color: '#AE6716FF' id: MiniTileOverlay decals: - 379: -65,-17 - 380: -67,-19 - 381: -63,-19 - 398: -60,-20 - 399: -59,-20 - 400: -58,-20 + 371: -65,-17 + 372: -67,-19 + 373: -63,-19 + 390: -60,-20 + 391: -59,-20 + 392: -58,-20 - node: color: '#EFB34196' id: MiniTileOverlay decals: - 1647: -54,-12 + 1611: -54,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 481: 0,-1 - 514: 13,-1 + 473: 0,-1 + 506: 13,-1 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 1661: -53,-15 + 1625: -53,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 467: -2,-1 - 515: 12,-1 + 459: -2,-1 + 507: 12,-1 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 1662: -54,-15 + 1626: -54,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 543: 13,-24 - 938: -43,-5 + 535: 13,-24 + 928: -43,-5 + 3421: -40,-60 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 1660: -53,-18 + 1624: -53,-18 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1123: -2,-4 + 1113: -2,-4 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1659: -54,-18 + 1623: -54,-18 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 500: 0,-22 - 696: -22,-51 - 1084: -22,-22 - 1200: -25,-54 - 1229: -45,-55 - 1247: -46,-30 - 1415: -56,-22 - 1446: -46,-22 + 492: 0,-22 + 687: -22,-51 + 1074: -22,-22 + 1190: -25,-54 + 1219: -45,-55 + 1237: -46,-30 + 1405: -56,-22 + 1436: -46,-22 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 537: 12,-22 - 959: -47,-22 - 1060: -27,-22 - 1098: -26,-30 - 1174: -60,-57 - 1199: -27,-55 - 1228: -47,-55 - 1413: -62,-22 - 2068: -22,-51 + 529: 12,-22 + 949: -47,-22 + 1050: -27,-22 + 1088: -26,-30 + 1164: -60,-57 + 1189: -27,-55 + 1218: -47,-55 + 1403: -62,-22 + 2032: -22,-51 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 1262: -73,-24 + 1252: -73,-24 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 703: -29,-56 - 953: -46,-24 - 1087: -25,-24 - 1151: -59,-58 - 1230: -40,-57 - 1232: -52,-57 - 1270: -46,-5 - 1401: -73,-25 - 1403: -70,-24 - 1440: -86,-26 - 1502: -25,-41 + 694: -29,-56 + 943: -46,-24 + 1077: -25,-24 + 1141: -59,-58 + 1220: -40,-57 + 1222: -52,-57 + 1260: -46,-5 + 1391: -73,-25 + 1393: -70,-24 + 1430: -86,-26 + 1468: -25,-41 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 1089: -26,-24 - 1125: -1,-4 - 1231: -45,-57 - 1271: -47,-5 - 1416: -51,-24 + 1079: -26,-24 + 1115: -1,-4 + 1221: -45,-57 + 1261: -47,-5 + 1406: -51,-24 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 456: 0,-9 - 468: 0,-17 - 469: 0,-15 - 470: 0,-14 - 471: 0,-13 - 472: 0,-13 - 473: 0,-12 - 474: 0,-11 - 475: 0,-8 - 476: 0,-7 - 477: 0,-6 - 478: 0,-4 - 479: 0,-3 - 480: 0,-2 - 498: 0,-21 - 501: 13,-21 - 502: 13,-18 - 503: 13,-19 - 504: 13,-15 - 505: 13,-14 - 506: 13,-13 - 507: 13,-12 - 508: 13,-11 - 509: 13,-4 - 511: 13,-3 - 513: 13,-2 - 539: 13,-21 - 540: 13,-22 - 541: 13,-23 - 600: -46,-26 - 601: -46,-27 - 602: -46,-28 - 603: -46,-29 - 605: -45,-30 - 606: -45,-31 - 607: -45,-33 - 608: -45,-34 - 609: -45,-35 - 610: -45,-36 - 611: -45,-37 - 612: -45,-38 - 613: -45,-40 - 614: -45,-41 - 615: -45,-42 - 616: -45,-43 - 617: -45,-44 - 618: -45,-45 - 619: -45,-46 - 620: -45,-47 - 621: -45,-48 - 622: -45,-49 - 623: -45,-50 - 624: -45,-51 - 625: -45,-52 - 626: -45,-53 - 627: -45,-54 - 669: -25,-26 - 670: -25,-25 - 671: -25,-27 - 672: -25,-28 - 673: -25,-29 - 674: -25,-30 - 675: -25,-31 - 676: -25,-32 - 677: -25,-33 - 678: -25,-34 - 679: -25,-35 - 680: -25,-36 - 681: -25,-38 - 682: -25,-39 - 684: -24,-40 - 686: -25,-42 - 687: -25,-43 - 688: -25,-44 - 689: -25,-45 - 690: -25,-46 - 693: -22,-49 - 694: -22,-50 - 702: -29,-57 - 720: -52,-58 - 729: -59,-59 - 823: -70,-25 - 827: -73,-26 - 837: -86,-27 - 838: -86,-28 - 897: -56,-21 - 935: -43,-1 - 936: -43,-3 - 937: -43,-4 - 941: -46,-6 - 942: -46,-11 - 943: -46,-12 - 944: -46,-13 - 945: -46,-14 - 946: -46,-15 - 947: -46,-16 - 948: -46,-17 - 949: -46,-18 - 950: -46,-19 - 951: -46,-21 - 1006: -22,-21 - 1010: -26,-17 - 1011: -26,-16 - 1012: -26,-15 - 1013: -26,-14 - 1014: -26,-13 - 1015: -26,-12 - 1016: -26,-11 - 1017: -26,-10 - 1018: -26,-9 - 1019: -26,-8 - 1020: -26,-7 - 1021: -26,-6 - 1116: 0,-18 - 1131: -25,-49 - 1132: -25,-50 - 1139: -24,-55 - 1140: -24,-54 - 1190: -40,-58 - 1450: -22,-19 - 1657: -53,-17 - 1658: -53,-16 - 2129: -24,-38 - 2130: -24,-37 - 2131: -24,-36 - 2132: -24,-35 - 2133: -24,-34 - 2134: -24,-33 + 448: 0,-9 + 460: 0,-17 + 461: 0,-15 + 462: 0,-14 + 463: 0,-13 + 464: 0,-13 + 465: 0,-12 + 466: 0,-11 + 467: 0,-8 + 468: 0,-7 + 469: 0,-6 + 470: 0,-4 + 471: 0,-3 + 472: 0,-2 + 490: 0,-21 + 493: 13,-21 + 494: 13,-18 + 495: 13,-19 + 496: 13,-15 + 497: 13,-14 + 498: 13,-13 + 499: 13,-12 + 500: 13,-11 + 501: 13,-4 + 503: 13,-3 + 505: 13,-2 + 531: 13,-21 + 532: 13,-22 + 533: 13,-23 + 592: -46,-26 + 593: -46,-27 + 594: -46,-28 + 595: -46,-29 + 597: -45,-30 + 598: -45,-31 + 599: -45,-34 + 600: -45,-35 + 601: -45,-36 + 602: -45,-37 + 603: -45,-38 + 604: -45,-40 + 605: -45,-41 + 606: -45,-42 + 607: -45,-43 + 608: -45,-44 + 609: -45,-45 + 610: -45,-46 + 611: -45,-47 + 612: -45,-48 + 613: -45,-49 + 614: -45,-50 + 615: -45,-51 + 616: -45,-52 + 617: -45,-53 + 618: -45,-54 + 660: -25,-26 + 661: -25,-25 + 662: -25,-27 + 663: -25,-28 + 664: -25,-29 + 665: -25,-30 + 666: -25,-31 + 667: -25,-32 + 668: -25,-33 + 669: -25,-34 + 670: -25,-35 + 671: -25,-36 + 672: -25,-38 + 673: -25,-39 + 675: -24,-40 + 677: -25,-42 + 678: -25,-43 + 679: -25,-44 + 680: -25,-45 + 681: -25,-46 + 684: -22,-49 + 685: -22,-50 + 693: -29,-57 + 711: -52,-58 + 720: -59,-59 + 813: -70,-25 + 817: -73,-26 + 827: -86,-27 + 828: -86,-28 + 887: -56,-21 + 925: -43,-1 + 926: -43,-3 + 927: -43,-4 + 931: -46,-6 + 932: -46,-11 + 933: -46,-12 + 934: -46,-13 + 935: -46,-14 + 936: -46,-15 + 937: -46,-16 + 938: -46,-17 + 939: -46,-18 + 940: -46,-19 + 941: -46,-21 + 996: -22,-21 + 1000: -26,-17 + 1001: -26,-16 + 1002: -26,-15 + 1003: -26,-14 + 1004: -26,-13 + 1005: -26,-12 + 1006: -26,-11 + 1007: -26,-10 + 1008: -26,-9 + 1009: -26,-8 + 1010: -26,-7 + 1011: -26,-6 + 1106: 0,-18 + 1121: -25,-49 + 1122: -25,-50 + 1129: -24,-55 + 1130: -24,-54 + 1180: -40,-58 + 1438: -22,-19 + 1621: -53,-17 + 1622: -53,-16 + 2093: -24,-38 + 2094: -24,-37 + 2095: -24,-36 + 2096: -24,-35 + 2097: -24,-34 + 2098: -24,-33 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 457: 1,-22 - 458: 2,-22 - 459: 3,-22 - 460: 4,-22 - 461: 5,-22 - 462: 7,-22 - 463: 8,-22 - 464: 9,-22 - 465: 10,-22 - 482: -1,-1 - 604: -45,-30 - 628: -44,-55 - 629: -43,-55 - 630: -42,-55 - 631: -41,-55 - 632: -40,-55 - 633: -39,-55 - 634: -39,-55 - 635: -38,-55 - 636: -37,-55 - 637: -36,-55 - 638: -35,-55 - 639: -34,-55 - 640: -33,-55 - 641: -32,-55 - 642: -31,-55 - 643: -30,-55 - 644: -29,-55 - 645: -28,-55 - 683: -24,-40 - 691: -24,-47 - 692: -23,-47 - 695: -21,-51 - 751: -79,-57 - 752: -78,-57 - 753: -77,-57 - 754: -68,-57 - 755: -67,-57 - 756: -66,-57 - 757: -64,-57 - 758: -63,-57 - 759: -62,-57 - 760: -61,-57 - 763: -59,-55 - 764: -58,-55 - 767: -56,-55 - 768: -55,-55 - 769: -53,-55 - 770: -54,-55 - 771: -52,-55 - 772: -50,-55 - 773: -49,-55 - 774: -48,-55 - 858: -95,-24 - 859: -93,-24 - 860: -92,-24 - 861: -89,-24 - 862: -87,-24 - 863: -86,-24 - 864: -85,-24 - 865: -84,-24 - 866: -83,-24 - 867: -82,-24 - 868: -81,-24 - 869: -80,-24 - 870: -79,-24 - 871: -78,-24 - 872: -77,-24 - 873: -76,-24 - 874: -75,-24 - 875: -74,-24 - 876: -72,-22 - 877: -71,-22 - 878: -70,-22 - 879: -69,-22 - 880: -68,-22 - 882: -67,-22 - 884: -66,-22 - 885: -64,-22 - 886: -63,-22 - 888: -62,-21 - 889: -61,-21 - 890: -60,-21 - 891: -59,-21 - 892: -58,-21 - 893: -58,-21 - 894: -57,-21 - 895: -56,-21 - 898: -54,-22 - 899: -53,-22 - 900: -52,-22 - 901: -51,-22 - 902: -50,-22 - 903: -49,-22 - 926: -50,-1 - 927: -49,-1 - 928: -49,-1 - 929: -48,-1 - 930: -47,-1 - 931: -46,-1 - 932: -45,-1 - 933: -44,-1 - 934: -43,-1 - 976: -2,-22 - 977: -3,-22 - 978: -5,-22 - 980: -6,-22 - 989: -7,-22 - 990: -8,-22 - 991: -9,-22 - 993: -10,-22 - 995: -11,-22 - 999: -13,-22 - 1000: -14,-22 - 1001: -15,-22 - 1002: -17,-22 - 1003: -18,-22 - 1004: -20,-22 - 1005: -21,-22 - 1007: -23,-18 - 1008: -24,-18 - 1009: -25,-18 - 1041: -29,-22 - 1042: -30,-22 - 1043: -31,-22 - 1044: -32,-22 - 1050: -38,-22 - 1051: -42,-22 - 1052: -44,-22 - 1097: -27,-30 - 1137: -24,-54 - 1191: -43,-59 - 1192: -42,-59 - 1193: -44,-59 - 1194: -45,-59 - 1195: -41,-59 - 1196: -40,-59 - 1445: -48,-22 - 2062: -17,-40 - 2063: -15,-40 - 2066: -23,-51 - 2135: -23,-33 + 449: 1,-22 + 450: 2,-22 + 451: 3,-22 + 452: 4,-22 + 453: 5,-22 + 454: 7,-22 + 455: 8,-22 + 456: 9,-22 + 457: 10,-22 + 474: -1,-1 + 596: -45,-30 + 619: -44,-55 + 620: -43,-55 + 621: -42,-55 + 622: -41,-55 + 623: -40,-55 + 624: -39,-55 + 625: -39,-55 + 626: -38,-55 + 627: -37,-55 + 628: -36,-55 + 629: -35,-55 + 630: -34,-55 + 631: -33,-55 + 632: -32,-55 + 633: -31,-55 + 634: -30,-55 + 635: -29,-55 + 636: -28,-55 + 674: -24,-40 + 682: -24,-47 + 683: -23,-47 + 686: -21,-51 + 742: -79,-57 + 743: -78,-57 + 744: -77,-57 + 745: -68,-57 + 746: -67,-57 + 747: -66,-57 + 748: -64,-57 + 749: -63,-57 + 750: -62,-57 + 751: -61,-57 + 754: -59,-55 + 755: -58,-55 + 758: -56,-55 + 759: -55,-55 + 760: -53,-55 + 761: -54,-55 + 762: -52,-55 + 763: -50,-55 + 764: -49,-55 + 765: -48,-55 + 848: -95,-24 + 849: -93,-24 + 850: -92,-24 + 851: -89,-24 + 852: -87,-24 + 853: -86,-24 + 854: -85,-24 + 855: -84,-24 + 856: -83,-24 + 857: -82,-24 + 858: -81,-24 + 859: -80,-24 + 860: -79,-24 + 861: -78,-24 + 862: -77,-24 + 863: -76,-24 + 864: -75,-24 + 865: -74,-24 + 866: -72,-22 + 867: -71,-22 + 868: -70,-22 + 869: -69,-22 + 870: -68,-22 + 872: -67,-22 + 874: -66,-22 + 875: -64,-22 + 876: -63,-22 + 878: -62,-21 + 879: -61,-21 + 880: -60,-21 + 881: -59,-21 + 882: -58,-21 + 883: -58,-21 + 884: -57,-21 + 885: -56,-21 + 888: -54,-22 + 889: -53,-22 + 890: -52,-22 + 891: -51,-22 + 892: -50,-22 + 893: -49,-22 + 916: -50,-1 + 917: -49,-1 + 918: -49,-1 + 919: -48,-1 + 920: -47,-1 + 921: -46,-1 + 922: -45,-1 + 923: -44,-1 + 924: -43,-1 + 966: -2,-22 + 967: -3,-22 + 968: -5,-22 + 970: -6,-22 + 979: -7,-22 + 980: -8,-22 + 981: -9,-22 + 983: -10,-22 + 985: -11,-22 + 989: -13,-22 + 990: -14,-22 + 991: -15,-22 + 992: -17,-22 + 993: -18,-22 + 994: -20,-22 + 995: -21,-22 + 997: -23,-18 + 998: -24,-18 + 999: -25,-18 + 1031: -29,-22 + 1032: -30,-22 + 1033: -31,-22 + 1034: -32,-22 + 1040: -38,-22 + 1041: -42,-22 + 1042: -44,-22 + 1087: -27,-30 + 1127: -24,-54 + 1181: -43,-59 + 1182: -42,-59 + 1183: -44,-59 + 1184: -45,-59 + 1185: -41,-59 + 1186: -40,-59 + 1435: -48,-22 + 2026: -17,-40 + 2027: -15,-40 + 2030: -23,-51 + 2099: -23,-33 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1261: -73,-22 + 1251: -73,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1273: -65,-22 + 1263: -65,-22 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 544: 11,-24 - 545: 11,-24 - 546: 10,-24 - 547: 9,-24 - 548: 8,-24 - 549: 7,-24 - 550: 6,-24 - 555: 5,-24 - 556: 4,-24 - 561: 2,-24 - 562: 1,-24 - 563: 0,-24 - 564: -1,-24 - 565: -2,-24 - 566: -3,-24 - 567: -4,-24 - 568: -6,-24 - 569: -7,-24 - 570: -8,-24 - 571: -10,-24 - 572: -11,-24 - 573: -12,-24 - 574: -14,-24 - 575: -16,-24 - 576: -17,-24 - 577: -19,-24 - 578: -20,-24 - 579: -23,-24 - 580: -24,-24 - 581: -27,-24 - 582: -28,-24 - 583: -29,-24 - 584: -30,-24 - 585: -31,-24 - 586: -32,-24 - 587: -33,-24 - 588: -34,-24 - 589: -35,-24 - 590: -36,-24 - 591: -37,-24 - 592: -38,-24 - 593: -39,-24 - 594: -40,-24 - 595: -41,-24 - 596: -42,-24 - 597: -43,-24 - 598: -44,-24 - 599: -45,-24 - 697: -22,-52 - 698: -28,-56 - 699: -27,-56 - 700: -25,-56 - 701: -24,-56 - 704: -29,-57 - 705: -30,-57 - 706: -31,-57 - 707: -34,-57 - 708: -35,-57 - 709: -36,-57 - 710: -37,-57 - 711: -42,-57 - 712: -43,-57 - 714: -47,-57 - 716: -49,-57 - 717: -50,-57 - 718: -51,-57 - 721: -52,-58 - 722: -53,-58 - 723: -54,-58 - 724: -55,-58 - 725: -57,-58 - 726: -56,-58 - 727: -58,-58 - 731: -59,-59 - 732: -60,-59 - 734: -61,-59 - 735: -62,-59 - 736: -63,-59 - 737: -64,-59 - 738: -66,-59 - 739: -68,-59 - 740: -69,-59 - 741: -70,-59 - 742: -71,-59 - 744: -74,-59 - 745: -76,-59 - 746: -78,-59 - 748: -79,-59 - 749: -80,-59 - 801: -48,-28 - 802: -49,-28 - 806: -52,-24 - 807: -53,-24 - 808: -54,-24 - 809: -55,-24 - 810: -56,-24 - 811: -57,-24 - 812: -58,-24 - 813: -59,-24 - 814: -60,-24 - 815: -62,-24 - 816: -63,-24 - 817: -64,-24 - 818: -65,-24 - 819: -66,-24 - 820: -67,-24 - 821: -68,-24 - 822: -69,-24 - 824: -70,-25 - 825: -71,-25 - 826: -72,-25 - 828: -73,-26 - 829: -74,-26 - 830: -75,-26 - 831: -78,-26 - 832: -79,-26 - 833: -80,-26 - 834: -82,-26 - 835: -84,-26 - 836: -85,-26 - 839: -86,-28 - 840: -87,-28 - 841: -88,-28 - 842: -89,-28 - 843: -91,-28 - 844: -92,-28 - 846: -94,-28 - 847: -95,-28 - 848: -96,-28 - 920: -49,-5 - 922: -50,-5 - 939: -44,-5 - 940: -45,-5 - 1022: -25,-5 - 1181: -41,-60 - 1182: -42,-60 - 1183: -43,-60 - 1184: -44,-60 - 1185: -45,-60 - 1211: -23,-52 - 1272: -48,-5 - 1945: -26,-56 - 2067: -23,-48 - 2142: -23,-38 - 2198: -73,-59 - 2199: -72,-59 + 536: 11,-24 + 537: 11,-24 + 538: 10,-24 + 539: 9,-24 + 540: 8,-24 + 541: 7,-24 + 542: 6,-24 + 547: 5,-24 + 548: 4,-24 + 553: 2,-24 + 554: 1,-24 + 555: 0,-24 + 556: -1,-24 + 557: -2,-24 + 558: -3,-24 + 559: -4,-24 + 560: -6,-24 + 561: -7,-24 + 562: -8,-24 + 563: -10,-24 + 564: -11,-24 + 565: -12,-24 + 566: -14,-24 + 567: -16,-24 + 568: -17,-24 + 569: -19,-24 + 570: -20,-24 + 571: -23,-24 + 572: -24,-24 + 573: -27,-24 + 574: -28,-24 + 575: -29,-24 + 576: -30,-24 + 577: -31,-24 + 578: -32,-24 + 579: -33,-24 + 580: -34,-24 + 581: -35,-24 + 582: -36,-24 + 583: -37,-24 + 584: -38,-24 + 585: -39,-24 + 586: -40,-24 + 587: -41,-24 + 588: -42,-24 + 589: -43,-24 + 590: -44,-24 + 591: -45,-24 + 688: -22,-52 + 689: -28,-56 + 690: -27,-56 + 691: -25,-56 + 692: -24,-56 + 695: -29,-57 + 696: -30,-57 + 697: -31,-57 + 698: -34,-57 + 699: -35,-57 + 700: -36,-57 + 701: -37,-57 + 702: -42,-57 + 703: -43,-57 + 705: -47,-57 + 707: -49,-57 + 708: -50,-57 + 709: -51,-57 + 712: -52,-58 + 713: -53,-58 + 714: -54,-58 + 715: -55,-58 + 716: -57,-58 + 717: -56,-58 + 718: -58,-58 + 722: -59,-59 + 723: -60,-59 + 725: -61,-59 + 726: -62,-59 + 727: -63,-59 + 728: -64,-59 + 729: -66,-59 + 730: -68,-59 + 731: -69,-59 + 732: -70,-59 + 733: -71,-59 + 735: -74,-59 + 736: -76,-59 + 737: -78,-59 + 739: -79,-59 + 740: -80,-59 + 791: -48,-28 + 792: -49,-28 + 796: -52,-24 + 797: -53,-24 + 798: -54,-24 + 799: -55,-24 + 800: -56,-24 + 801: -57,-24 + 802: -58,-24 + 803: -59,-24 + 804: -60,-24 + 805: -62,-24 + 806: -63,-24 + 807: -64,-24 + 808: -65,-24 + 809: -66,-24 + 810: -67,-24 + 811: -68,-24 + 812: -69,-24 + 814: -70,-25 + 815: -71,-25 + 816: -72,-25 + 818: -73,-26 + 819: -74,-26 + 820: -75,-26 + 821: -78,-26 + 822: -79,-26 + 823: -80,-26 + 824: -82,-26 + 825: -84,-26 + 826: -85,-26 + 829: -86,-28 + 830: -87,-28 + 831: -88,-28 + 832: -89,-28 + 833: -91,-28 + 834: -92,-28 + 836: -94,-28 + 837: -95,-28 + 838: -96,-28 + 910: -49,-5 + 912: -50,-5 + 929: -44,-5 + 930: -45,-5 + 1012: -25,-5 + 1171: -41,-60 + 1172: -42,-60 + 1173: -43,-60 + 1174: -44,-60 + 1175: -45,-60 + 1201: -23,-52 + 1262: -48,-5 + 1909: -26,-56 + 2031: -23,-48 + 2106: -23,-38 + 2162: -73,-59 + 2163: -72,-59 + 3419: -33,-57 + 3420: -32,-57 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 486: -1,-19 - 487: -1,-18 - 488: -1,-17 - 489: -1,-15 - 490: -1,-13 - 491: -1,-12 - 492: -1,-11 - 493: -1,-10 - 494: -1,-9 - 495: -1,-7 - 496: -1,-5 - 499: -1,-21 - 516: 12,-2 - 517: 12,-3 - 518: 12,-4 - 519: 12,-5 - 520: 12,-6 - 521: 12,-7 - 522: 12,-8 - 524: 12,-10 - 526: 12,-11 - 527: 12,-12 - 528: 12,-13 - 529: 12,-14 - 532: 12,-15 - 534: 12,-19 - 535: 12,-21 - 542: 12,-17 - 646: -27,-54 - 647: -27,-53 - 648: -27,-52 - 649: -27,-51 - 650: -27,-50 - 651: -27,-49 - 652: -27,-48 - 653: -27,-45 - 654: -27,-44 - 655: -27,-44 - 656: -27,-43 - 657: -27,-42 - 658: -27,-41 - 659: -27,-40 - 660: -27,-39 - 661: -27,-38 - 662: -27,-38 - 663: -27,-37 - 664: -27,-35 - 665: -27,-33 - 666: -27,-32 - 667: -27,-31 - 668: -27,-30 - 762: -60,-56 - 766: -60,-55 - 776: -47,-54 - 777: -47,-53 - 779: -47,-52 - 780: -47,-51 - 782: -47,-50 - 784: -47,-48 - 785: -47,-46 - 786: -47,-45 - 787: -47,-42 - 788: -47,-41 - 789: -47,-40 - 790: -47,-39 - 791: -47,-37 - 792: -47,-36 - 793: -47,-35 - 794: -47,-34 - 796: -47,-33 - 797: -47,-32 - 798: -47,-31 - 799: -47,-30 - 803: -51,-27 - 804: -51,-26 - 805: -51,-25 - 851: -96,-28 - 852: -96,-27 - 853: -96,-25 - 887: -62,-21 - 904: -47,-21 - 905: -47,-20 - 906: -47,-20 - 907: -47,-19 - 908: -47,-18 - 909: -47,-17 - 910: -47,-16 - 911: -47,-15 - 912: -47,-14 - 913: -47,-12 - 914: -47,-11 - 915: -47,-10 - 916: -47,-8 - 917: -47,-7 - 919: -47,-6 - 923: -50,-5 - 924: -50,-4 - 925: -50,-1 - 975: -1,-21 - 1024: -27,-7 - 1025: -27,-9 - 1026: -27,-10 - 1027: -27,-11 - 1028: -27,-12 - 1029: -27,-13 - 1030: -27,-14 - 1033: -27,-15 - 1034: -27,-17 - 1035: -27,-18 - 1036: -27,-19 - 1037: -27,-20 - 1038: -27,-21 - 1091: -26,-26 - 1092: -26,-27 - 1094: -26,-28 - 1095: -26,-29 - 1186: -45,-60 - 1189: -45,-58 - 1207: -23,-48 - 1208: -23,-47 - 1209: -23,-52 - 1210: -23,-51 - 1224: -47,-43 - 1225: -47,-44 - 1656: -54,-16 - 2064: -22,-50 - 2065: -22,-49 - 2136: -22,-33 - 2137: -22,-34 - 2138: -22,-35 - 2139: -22,-36 - 2140: -22,-37 - 2141: -22,-38 - 2183: -26,-25 + 478: -1,-19 + 479: -1,-18 + 480: -1,-17 + 481: -1,-15 + 482: -1,-13 + 483: -1,-12 + 484: -1,-11 + 485: -1,-10 + 486: -1,-9 + 487: -1,-7 + 488: -1,-5 + 491: -1,-21 + 508: 12,-2 + 509: 12,-3 + 510: 12,-4 + 511: 12,-5 + 512: 12,-6 + 513: 12,-7 + 514: 12,-8 + 516: 12,-10 + 518: 12,-11 + 519: 12,-12 + 520: 12,-13 + 521: 12,-14 + 524: 12,-15 + 526: 12,-19 + 527: 12,-21 + 534: 12,-17 + 637: -27,-54 + 638: -27,-53 + 639: -27,-52 + 640: -27,-51 + 641: -27,-50 + 642: -27,-49 + 643: -27,-48 + 644: -27,-45 + 645: -27,-44 + 646: -27,-44 + 647: -27,-43 + 648: -27,-42 + 649: -27,-41 + 650: -27,-40 + 651: -27,-39 + 652: -27,-38 + 653: -27,-38 + 654: -27,-37 + 655: -27,-35 + 656: -27,-33 + 657: -27,-32 + 658: -27,-31 + 659: -27,-30 + 753: -60,-56 + 757: -60,-55 + 767: -47,-54 + 768: -47,-53 + 770: -47,-52 + 771: -47,-51 + 773: -47,-50 + 775: -47,-48 + 776: -47,-46 + 777: -47,-45 + 778: -47,-42 + 779: -47,-41 + 780: -47,-40 + 781: -47,-39 + 782: -47,-37 + 783: -47,-36 + 784: -47,-35 + 785: -47,-34 + 787: -47,-33 + 788: -47,-31 + 789: -47,-30 + 793: -51,-27 + 794: -51,-26 + 795: -51,-25 + 841: -96,-28 + 842: -96,-27 + 843: -96,-25 + 877: -62,-21 + 894: -47,-21 + 895: -47,-20 + 896: -47,-20 + 897: -47,-19 + 898: -47,-18 + 899: -47,-17 + 900: -47,-16 + 901: -47,-15 + 902: -47,-14 + 903: -47,-12 + 904: -47,-11 + 905: -47,-10 + 906: -47,-8 + 907: -47,-7 + 909: -47,-6 + 913: -50,-5 + 914: -50,-4 + 915: -50,-1 + 965: -1,-21 + 1014: -27,-7 + 1015: -27,-9 + 1016: -27,-10 + 1017: -27,-11 + 1018: -27,-12 + 1019: -27,-13 + 1020: -27,-14 + 1023: -27,-15 + 1024: -27,-17 + 1025: -27,-18 + 1026: -27,-19 + 1027: -27,-20 + 1028: -27,-21 + 1081: -26,-26 + 1082: -26,-27 + 1084: -26,-28 + 1085: -26,-29 + 1176: -45,-60 + 1179: -45,-58 + 1197: -23,-48 + 1198: -23,-47 + 1199: -23,-52 + 1200: -23,-51 + 1214: -47,-43 + 1215: -47,-44 + 1620: -54,-16 + 2028: -22,-50 + 2029: -22,-49 + 2100: -22,-33 + 2101: -22,-34 + 2102: -22,-35 + 2103: -22,-36 + 2104: -22,-37 + 2105: -22,-38 + 2147: -26,-25 + 3364: -47,-32 + 3365: -47,-38 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1259: -73,-23 - 1260: -73,-22 + 1249: -73,-23 + 1250: -73,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1663: -54,-17 + 1627: -54,-17 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1615: -90,-34 - 1616: -90,-33 - 1617: -90,-32 - 1618: -90,-31 - 1619: -90,-30 - 1625: -93,-34 - 1626: -93,-33 - 1627: -93,-32 - 1628: -93,-31 - 1629: -93,-30 + 1581: -90,-34 + 1582: -90,-33 + 1583: -90,-32 + 1584: -90,-31 + 1585: -90,-30 + 1591: -93,-34 + 1592: -93,-33 + 1593: -93,-32 + 1594: -93,-31 + 1595: -93,-30 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1935: -30,-46 - 1936: -29,-46 - 2058: -17,-40 - 2059: -16,-40 - 2060: -15,-40 - 2061: -14,-40 + 1899: -30,-46 + 1900: -29,-46 + 2022: -17,-40 + 2023: -16,-40 + 2024: -15,-40 + 2025: -14,-40 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1479: -70,-30 - 1484: -69,-33 - 1485: -68,-33 - 1487: -70,-33 - 1488: -71,-33 + 1457: -70,-30 + 1462: -69,-33 + 1463: -68,-33 + 1465: -70,-33 + 1466: -71,-33 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1937: -30,-47 - 1938: -29,-47 + 1901: -30,-47 + 1902: -29,-47 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1480: -70,-31 - 1481: -69,-31 - 1482: -68,-31 + 1458: -70,-31 + 1459: -69,-31 + 1460: -68,-31 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 1620: -93,-34 - 1621: -93,-33 - 1622: -93,-32 - 1623: -93,-31 - 1624: -93,-30 - 1630: -90,-34 - 1631: -90,-33 - 1632: -90,-32 - 1633: -90,-31 - 1634: -90,-30 + 1586: -93,-34 + 1587: -93,-33 + 1588: -93,-32 + 1589: -93,-31 + 1590: -93,-30 + 1596: -90,-34 + 1597: -90,-33 + 1598: -90,-32 + 1599: -90,-31 + 1600: -90,-30 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 1483: -69,-33 - 1486: -70,-31 + 1461: -69,-33 + 1464: -70,-31 - node: color: '#9A54BFFF' id: MonoOverlay decals: - 2295: -3,-21 - 2296: -2,-20 - 2297: -2,-18 - 2298: -2,-16 - 3415: -5,-21 - 3416: -4,-21 + 2258: -3,-21 + 2259: -2,-20 + 2260: -2,-18 + 2261: -2,-16 + 3362: -5,-21 + 3363: -4,-21 - node: color: '#7242767F' id: PavementOverlay decals: - 2893: -37,-64 - 2894: -36,-64 - 2895: -35,-64 - 2896: -34,-64 - 2897: -34,-65 - 3046: -44,-65 - 3047: -44,-63 + 2846: -37,-64 + 2847: -36,-64 + 2848: -35,-64 + 2849: -34,-64 + 2850: -34,-65 + 2999: -44,-65 + 3000: -44,-63 - node: zIndex: 1 color: '#7242767F' id: PavementOverlay decals: - 3052: -44,-67 + 3005: -44,-67 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 240: -17,-28 + 235: -17,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 241: -16,-27 + 236: -16,-27 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 239: -17,-27 + 234: -17,-27 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 242: -16,-28 + 237: -16,-28 - node: color: '#0000002B' id: Rock01 decals: - 3375: -35.31179,-45.512543 + 3328: -35.31179,-45.512543 - node: color: '#00000037' id: Rock01 decals: - 3374: -38.255753,-45.33799 + 3327: -38.255753,-45.33799 - node: color: '#00000069' id: Rock01 decals: - 3402: -39.270065,-43.28423 - 3403: -38.80462,-43.14459 + 3355: -39.270065,-43.28423 + 3356: -38.80462,-43.14459 - node: color: '#FFFFFFFF' id: Rock02 decals: - 30: -50.201115,-19.547714 - 31: -48.16457,-17.674559 + 29: -50.201115,-19.547714 + 30: -48.16457,-17.674559 - node: color: '#FFFFFFFF' id: Rock03 decals: - 32: -50.62908,-17.999043 - 33: -48.10554,-19.975445 + 31: -50.62908,-17.999043 - node: cleanable: True color: '#FFFFFF73' id: Rock06 decals: - 3074: -27.738,-3.295126 + 3027: -27.738,-3.295126 - node: color: '#000000FF' id: Rust decals: - 2313: -31,-33 - 2314: -30,-33 - 2315: -29,-33 - 2316: -31,-33 - 2317: -30,-33 - 2318: -29,-33 + 2276: -31,-33 + 2277: -30,-33 + 2278: -29,-33 + 2279: -31,-33 + 2280: -30,-33 + 2281: -29,-33 - node: cleanable: True color: '#8F4C00FF' id: Rust decals: - 2982: -78.101974,-6.641868 + 2935: -78.101974,-6.641868 - node: color: '#FFFFFFFF' id: Rust decals: - 47: -90,-49 - 48: -90,-49 - 49: -91,-49 - 50: -90,-48 - 51: -92,-44 - 52: -92,-46 - 53: -92,-45 - 54: -89,-44 - 55: -89,-45 - 56: -91,-45 - 57: -91,-44 - 58: -90,-44 - 59: -90,-45 - 60: -91,-46 - 61: -90,-46 - 62: -89,-46 - 63: -89,-47 - 64: -90,-47 - 65: -91,-47 - 66: -92,-48 - 67: -91,-48 - 68: -92,-49 - 69: -92,-47 - 70: -89,-48 - 71: -89,-49 - 72: -91,-49 - 73: -92,-49 - 74: -92,-48 - 75: -91,-48 - 76: -89,-48 - 77: -90,-48 - 78: -89,-49 - 79: -89,-47 - 80: -90,-47 - 81: -91,-47 - 82: -92,-47 - 83: -92,-46 - 84: -91,-46 - 85: -90,-46 - 86: -89,-46 - 87: -89,-45 - 88: -90,-45 - 89: -91,-45 - 90: -92,-45 - 91: -92,-44 - 92: -91,-44 - 93: -90,-44 - 94: -89,-44 - 208: -87,-46 - 209: -86,-46 + 45: -90,-49 + 46: -90,-49 + 47: -91,-49 + 48: -90,-48 + 49: -92,-44 + 50: -92,-46 + 51: -92,-45 + 52: -89,-44 + 53: -89,-45 + 54: -91,-45 + 55: -91,-44 + 56: -90,-44 + 57: -90,-45 + 58: -91,-46 + 59: -90,-46 + 60: -89,-46 + 61: -89,-47 + 62: -90,-47 + 63: -91,-47 + 64: -92,-48 + 65: -91,-48 + 66: -92,-49 + 67: -92,-47 + 68: -89,-48 + 69: -89,-49 + 70: -91,-49 + 71: -92,-49 + 72: -92,-48 + 73: -91,-48 + 74: -89,-48 + 75: -90,-48 + 76: -89,-49 + 77: -89,-47 + 78: -90,-47 + 79: -91,-47 + 80: -92,-47 + 81: -92,-46 + 82: -91,-46 + 83: -90,-46 + 84: -89,-46 + 85: -89,-45 + 86: -90,-45 + 87: -91,-45 + 88: -92,-45 + 89: -92,-44 + 90: -91,-44 + 91: -90,-44 + 92: -89,-44 + 203: -87,-46 + 204: -86,-46 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 2505: -29,1 + 2468: -29,1 - node: zIndex: 2 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 3017: -73,-14 - 3018: -73,-13 + 2970: -73,-14 + 2971: -73,-13 - node: color: '#FFFFFFFF' id: StandClearGreyscale decals: - 2147: -23,-50 - 2148: -23,-49 - 2747: -41,-92 - 2748: -31,-91 - 2749: -30,-91 + 2111: -23,-50 + 2112: -23,-49 + 2710: -41,-92 + 2711: -31,-91 + 2712: -30,-91 - node: color: '#FFFFFFFF' id: WarnBox decals: - 454: -29,4 + 446: -29,4 - node: color: '#BC863FFF' id: WarnBoxGreyscale decals: - 1739: -52,-49 - 1740: -51,-49 + 1703: -52,-49 + 1704: -51,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1905: -56,-7 - 1910: -57,-8 + 1869: -56,-7 + 1874: -57,-8 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 1909: -59,-8 - 1913: -60,-7 + 1873: -59,-8 + 1877: -60,-7 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 1908: -57,-9 - 1914: -56,-10 + 1872: -57,-9 + 1878: -56,-10 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 1906: -60,-10 - 1907: -59,-9 + 1870: -60,-10 + 1871: -59,-9 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 41: -41,-46 - 2732: -33,-94 - 2740: -37,-94 - 2743: -41,-94 + 39: -41,-46 + 2695: -33,-94 + 2703: -37,-94 + 2706: -41,-94 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2729: -31,-93 - 2733: -35,-94 - 2739: -39,-94 + 2692: -31,-93 + 2696: -35,-94 + 2702: -39,-94 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNW decals: - 3307: -32,-46 + 3260: -32,-46 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 297: -49,-60 - 2730: -33,-95 - 2741: -37,-95 + 289: -49,-60 + 2693: -33,-95 + 2704: -37,-95 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 296: -50,-60 - 2731: -35,-95 - 2738: -39,-95 + 288: -50,-60 + 2694: -35,-95 + 2701: -39,-95 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 1979: -26,-67 + 1943: -26,-67 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 186: -41,-51 - 2868: -4,5 + 181: -41,-51 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1429: -55,-28 + 1419: -55,-28 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 187: -32,-51 - 2312: -8,5 + 182: -32,-51 + 2275: -8,5 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1428: -56,-29 + 1418: -56,-29 - node: color: '#0000003F' id: WarnCornerSmallSE decals: - 3344: -33,-45 + 3297: -33,-45 - node: color: '#0000003F' id: WarnCornerSmallSW decals: - 3345: -40,-45 + 3298: -40,-45 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1430: -56,-26 + 1420: -56,-26 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleE decals: - 2885: -35,-65 + 2838: -35,-65 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleW decals: - 2884: -37,-65 + 2837: -37,-65 - node: color: '#00000033' id: WarnFull decals: - 3332: -40,-47 - 3333: -39,-47 - 3334: -38,-47 - 3335: -37,-47 - 3336: -36,-47 - 3337: -35,-47 - 3338: -34,-47 - 3339: -33,-47 + 3285: -40,-47 + 3286: -39,-47 + 3287: -38,-47 + 3288: -37,-47 + 3289: -36,-47 + 3290: -35,-47 + 3291: -34,-47 + 3292: -33,-47 - node: color: '#00000066' id: WarnFull decals: - 3324: -40,-48 - 3325: -39,-48 - 3326: -38,-48 - 3327: -37,-48 - 3328: -36,-48 - 3329: -35,-48 - 3330: -34,-48 - 3331: -33,-48 + 3277: -40,-48 + 3278: -39,-48 + 3279: -38,-48 + 3280: -37,-48 + 3281: -36,-48 + 3282: -35,-48 + 3283: -34,-48 + 3284: -33,-48 - node: color: '#00000099' id: WarnFull decals: - 3316: -40,-49 - 3317: -39,-49 - 3318: -38,-49 - 3319: -37,-49 - 3320: -36,-49 - 3321: -34,-49 - 3322: -35,-49 - 3323: -33,-49 + 3269: -40,-49 + 3270: -39,-49 + 3271: -38,-49 + 3272: -37,-49 + 3273: -36,-49 + 3274: -34,-49 + 3275: -35,-49 + 3276: -33,-49 - node: color: '#000000CC' id: WarnFull decals: - 3308: -40,-50 - 3309: -39,-50 - 3310: -38,-50 - 3311: -37,-50 - 3312: -36,-50 - 3313: -35,-50 - 3314: -34,-50 - 3315: -33,-50 + 3261: -40,-50 + 3262: -39,-50 + 3263: -38,-50 + 3264: -37,-50 + 3265: -36,-50 + 3266: -35,-50 + 3267: -34,-50 + 3268: -33,-50 - node: color: '#9C2020FF' id: WarnFullGreyscale decals: - 2303: -12,6 - 2304: -11,6 - 2305: -10,6 - 2306: -9,6 - 2864: -3,6 - 2865: -2,6 - 2866: -1,6 + 2266: -12,6 + 2267: -11,6 + 2268: -10,6 + 2269: -9,6 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 2811: -15,-4 - 2812: -13,-5 - 2813: -13,-4 - 2814: -13,-7 - 2815: -15,-7 - 2816: -14,-7 + 2772: -15,-4 + 2773: -13,-5 + 2774: -13,-4 + 2775: -13,-7 + 2776: -15,-7 + 2777: -14,-7 - node: color: '#0000003F' id: WarnLineE decals: - 3342: -33,-46 + 3295: -33,-46 - node: color: '#00000059' id: WarnLineE decals: - 3346: -33,-47 + 3299: -33,-47 - node: color: '#00000072' id: WarnLineE decals: - 3349: -33,-48 + 3302: -33,-48 - node: color: '#0000008C' id: WarnLineE decals: - 3350: -33,-49 + 3303: -33,-49 - node: color: '#000000A5' id: WarnLineE decals: - 3353: -33,-50 + 3306: -33,-50 - node: color: '#FFFFFFFF' id: WarnLineE decals: 15: -30,-84 16: -30,-86 - 182: -41,-50 - 183: -41,-49 - 184: -41,-48 - 185: -41,-47 - 298: -49,-59 - 299: -49,-58 - 2299: -84,-30 - 2300: -84,-29 - 2742: -41,-95 - 2867: -4,6 + 177: -41,-50 + 178: -41,-49 + 179: -41,-48 + 180: -41,-47 + 290: -49,-59 + 291: -49,-58 + 2262: -84,-30 + 2263: -84,-29 + 2705: -41,-95 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnLineE decals: - 1422: -55,-27 - 1423: -55,-26 + 1412: -55,-27 + 1413: -55,-26 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1912: -58,-8 - 1934: -39,-36 - 1975: -29,-67 - 1976: -28,-67 - 1977: -27,-67 - 2839: -15,-3 - 2840: -14,-3 - 2841: -13,-3 - 2887: -36,-65 - 3086: -18,-46 + 1876: -58,-8 + 1898: -39,-36 + 1939: -29,-67 + 1940: -28,-67 + 1941: -27,-67 + 2800: -15,-3 + 2801: -14,-3 + 2802: -13,-3 + 2840: -36,-65 + 3039: -18,-46 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1911: -58,-9 - 2744: -31,-91 - 2745: -30,-91 - 2746: -41,-92 - 2886: -36,-65 + 1875: -58,-9 + 2707: -31,-91 + 2708: -30,-91 + 2709: -41,-92 + 2839: -36,-65 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1978: -26,-66 + 1942: -26,-66 - node: color: '#0000003F' id: WarnLineN decals: - 3340: -41,-45 - 3341: -32,-45 + 3293: -41,-45 + 3294: -32,-45 - node: color: '#000000A5' id: WarnLineN decals: - 3354: -40,-50 - 3355: -39,-50 - 3356: -38,-50 - 3357: -37,-50 - 3358: -36,-50 - 3359: -35,-50 - 3360: -34,-50 - 3361: -33,-50 + 3307: -40,-50 + 3308: -39,-50 + 3309: -38,-50 + 3310: -37,-50 + 3311: -36,-50 + 3312: -35,-50 + 3313: -34,-50 + 3314: -33,-50 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2735: -34,-95 - 2736: -38,-95 - 2846: -83,-30 - 2847: -82,-30 - 2888: -6,-45 - 2889: -5,-45 + 2698: -34,-95 + 2699: -38,-95 + 2807: -83,-30 + 2808: -82,-30 + 2841: -6,-45 + 2842: -5,-45 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnLineN decals: - 1424: -58,-26 - 1425: -57,-26 + 1414: -58,-26 + 1415: -57,-26 - node: color: '#0000003F' id: WarnLineS decals: - 3343: -40,-46 + 3296: -40,-46 - node: color: '#00000059' id: WarnLineS decals: - 3347: -40,-47 + 3300: -40,-47 - node: color: '#00000072' id: WarnLineS decals: - 3348: -40,-48 + 3301: -40,-48 - node: color: '#0000008C' id: WarnLineS decals: - 3351: -40,-49 + 3304: -40,-49 - node: color: '#000000A5' id: WarnLineS decals: - 3352: -40,-50 + 3305: -40,-50 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5439,633 +5465,680 @@ entities: 12: -31,-95 13: -31,-86 14: -31,-84 - 295: -50,-59 - 300: -50,-58 - 2301: -81,-30 - 2302: -81,-29 - 2311: -8,6 + 287: -50,-59 + 292: -50,-58 + 2264: -81,-30 + 2265: -81,-29 + 2274: -8,6 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineS decals: - 3303: -32,-50 - 3304: -32,-49 - 3305: -32,-48 - 3306: -32,-47 + 3256: -32,-50 + 3257: -32,-49 + 3258: -32,-48 + 3259: -32,-47 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnLineS decals: - 1426: -56,-28 - 1427: -56,-27 - 3015: -73,-14 - 3016: -73,-13 + 1416: -56,-28 + 1417: -56,-27 + 2968: -73,-14 + 2969: -73,-13 - node: color: '#000300AE' id: WarnLineW decals: - 2055: -13,-47 - 2056: -11,-47 - 2057: -9,-47 + 2019: -13,-47 + 2020: -11,-47 + 2021: -9,-47 - node: color: '#FFFFFFFF' id: WarnLineW decals: 10: -30,-93 - 177: -36,-51 - 178: -40,-51 - 179: -39,-51 - 180: -38,-51 - 181: -37,-51 - 1933: -39,-36 - 2307: -12,5 - 2308: -11,5 - 2309: -10,5 - 2310: -9,5 - 2734: -34,-94 - 2737: -38,-94 - 2848: -83,-29 - 2849: -82,-29 - 2869: -3,5 - 2870: -2,5 - 2871: -1,5 - 2890: -8,-51 - 2891: -7,-51 - 2892: -6,-51 + 172: -36,-51 + 173: -40,-51 + 174: -39,-51 + 175: -38,-51 + 176: -37,-51 + 1897: -39,-36 + 2270: -12,5 + 2271: -11,5 + 2272: -10,5 + 2273: -9,5 + 2697: -34,-94 + 2700: -38,-94 + 2809: -83,-29 + 2810: -82,-29 + 2843: -8,-51 + 2844: -7,-51 + 2845: -6,-51 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 3300: -35,-51 - 3301: -34,-51 - 3302: -33,-51 + 3253: -35,-51 + 3254: -34,-51 + 3255: -33,-51 - node: zIndex: 2 color: '#FFFFFFFF' id: WarnLineW decals: - 1418: -58,-29 - 1419: -57,-29 - 1420: -54,-28 - 1421: -53,-28 + 1408: -58,-29 + 1409: -57,-29 + 1410: -54,-28 + 1411: -53,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 220: -17,-30 - 221: -16,-30 + 215: -17,-30 + 216: -16,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 223: -16,-26 - 1654: -53,-19 - 1828: -29,-27 - 3082: -73,-28 + 218: -16,-26 + 1618: -53,-19 + 1792: -29,-27 + 3035: -73,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 222: -17,-26 - 235: -14,-30 - 1653: -54,-19 - 1827: -30,-27 - 3081: -76,-28 + 217: -17,-26 + 230: -14,-30 + 1617: -54,-19 + 1791: -30,-27 + 3034: -76,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 211: -14,-28 - 1655: -53,-20 - 1829: -29,-29 - 3084: -73,-30 + 206: -14,-28 + 1619: -53,-20 + 1793: -29,-29 + 3037: -73,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 210: -19,-28 - 262: -76,-30 - 1652: -54,-20 - 1734: -53,-52 - 1830: -30,-29 - 2037: -14,-46 - 2038: -13,-46 - 2039: -12,-46 - 2040: -11,-46 - 2041: -9,-46 + 205: -19,-28 + 257: -76,-30 + 1616: -54,-20 + 1698: -53,-52 + 1794: -30,-29 + 2001: -14,-46 + 2002: -13,-46 + 2003: -12,-46 + 2004: -11,-46 + 2005: -9,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 1754: -29,-35 - 1755: -29,-37 - 1756: -32,-40 - 1824: -29,-26 - 2178: -77,-42 + 1718: -29,-35 + 1719: -29,-37 + 1720: -32,-40 + 1788: -29,-26 + 2142: -77,-42 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 3410: -33,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 249: -19,-26 - 250: -14,-26 + 244: -19,-26 + 245: -14,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 1715: -35,-35 + 1716: -36,-37 + 1717: -36,-40 + 1785: -32,-26 + 2141: -79,-42 - node: + cleanable: True color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 1751: -35,-35 - 1752: -36,-37 - 1753: -36,-40 - 1821: -32,-26 - 2177: -79,-42 + 3411: -36,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 252: -19,-27 - 2070: -15,-47 - 2394: -34,-15 - 2845: -22,-45 + 247: -19,-27 + 2034: -15,-47 + 2357: -34,-15 + 2806: -22,-45 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 2155: -15,-47 + 2119: -15,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 247: -14,-27 + 242: -14,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 226: -18,-29 - 2393: -34,-10 + 221: -18,-29 + 2356: -34,-10 - node: color: '#612620FF' id: WoodTrimThinInnerSeWhite decals: - 2881: -22,-3 - 2883: -23,-3 + 2834: -22,-3 + 2836: -23,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 227: -15,-29 - 1736: -53,-51 + 222: -15,-29 + 1700: -53,-51 - node: color: '#612620FF' id: WoodTrimThinInnerSwWhite decals: - 2882: -23,-3 + 2835: -23,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 214: -18,-30 - 224: -16,-29 - 228: -15,-31 - 251: -14,-27 - 1643: -33,-17 - 1644: -33,-18 - 1724: -51,-52 - 1725: -51,-51 - 1726: -51,-50 - 1788: -32,-32 - 1789: -32,-31 - 1817: -30,-35 - 1831: -29,-28 - 2042: -9,-46 - 2069: -15,-46 - 2181: -79,-42 - 2379: -34,-14 - 2380: -34,-13 - 2381: -34,-12 - 2382: -34,-11 - 2842: -22,-44 - 2843: -22,-43 - 3083: -73,-29 + 209: -18,-30 + 219: -16,-29 + 223: -15,-31 + 246: -14,-27 + 1608: -33,-17 + 1609: -33,-18 + 1688: -51,-52 + 1689: -51,-51 + 1690: -51,-50 + 1752: -32,-32 + 1753: -32,-31 + 1781: -30,-35 + 1795: -29,-28 + 2006: -9,-46 + 2033: -15,-46 + 2145: -79,-42 + 2342: -34,-14 + 2343: -34,-13 + 2344: -34,-12 + 2345: -34,-11 + 2803: -22,-44 + 2804: -22,-43 + 3036: -73,-29 - node: color: '#612620FF' id: WoodTrimThinLineEWhite decals: - 2875: -23,-5 - 2876: -23,-4 + 2828: -23,-5 + 2829: -23,-4 - node: color: '#A88661FF' id: WoodTrimThinLineEWhite decals: - 2647: -46,-80 - 2648: -46,-79 - 2652: -46,-81 - 2659: -44,-81 - 2660: -44,-80 - 2661: -44,-79 + 2610: -46,-80 + 2611: -46,-79 + 2615: -46,-81 + 2622: -44,-81 + 2623: -44,-80 + 2624: -44,-79 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 212: -15,-27 - 231: -18,-31 - 232: -15,-31 - 238: -18,-27 - 245: -17,-27 - 246: -16,-27 - 257: -75,-28 - 258: -74,-28 - 1639: -36,-17 - 1640: -35,-17 - 1641: -34,-17 - 1642: -33,-17 - 1728: -51,-50 - 1729: -52,-50 - 1730: -53,-50 - 1731: -54,-50 - 1757: -34,-35 - 1758: -33,-35 - 1759: -32,-35 - 1760: -31,-35 - 1761: -30,-35 - 1762: -35,-37 - 1763: -34,-37 - 1764: -33,-37 - 1765: -32,-37 - 1766: -31,-37 - 1767: -30,-37 - 1768: -35,-40 - 1769: -34,-40 - 1770: -33,-40 - 1790: -31,-34 - 1791: -30,-34 - 1792: -29,-34 - 1822: -31,-26 - 1823: -30,-26 - 1833: -31,-28 - 1834: -32,-28 - 2179: -78,-42 - 2388: -33,-15 - 2389: -32,-15 - 2390: -31,-15 - 2391: -30,-15 - 2392: -29,-15 - 2844: -21,-45 + 207: -15,-27 + 226: -18,-31 + 227: -15,-31 + 233: -18,-27 + 240: -17,-27 + 241: -16,-27 + 252: -75,-28 + 253: -74,-28 + 1604: -36,-17 + 1605: -35,-17 + 1606: -34,-17 + 1607: -33,-17 + 1692: -51,-50 + 1693: -52,-50 + 1694: -53,-50 + 1695: -54,-50 + 1721: -34,-35 + 1722: -33,-35 + 1723: -32,-35 + 1724: -31,-35 + 1725: -30,-35 + 1726: -35,-37 + 1727: -34,-37 + 1728: -33,-37 + 1729: -32,-37 + 1730: -31,-37 + 1731: -30,-37 + 1732: -35,-40 + 1733: -34,-40 + 1734: -33,-40 + 1754: -31,-34 + 1755: -30,-34 + 1756: -29,-34 + 1786: -31,-26 + 1787: -30,-26 + 1797: -31,-28 + 1798: -32,-28 + 2143: -78,-42 + 2351: -33,-15 + 2352: -32,-15 + 2353: -31,-15 + 2354: -30,-15 + 2355: -29,-15 + 2805: -21,-45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 3414: -35,-19 + 3415: -34,-19 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2152: -14,-47 - 2153: -12,-47 - 2154: -10,-47 + 2116: -14,-47 + 2117: -12,-47 + 2118: -10,-47 - node: color: '#A88661FF' id: WoodTrimThinLineNWhite decals: - 2655: -47,-79 - 2656: -46,-79 - 2662: -44,-79 - 2663: -45,-79 - 2664: -48,-79 - 2665: -49,-79 + 2618: -47,-79 + 2619: -46,-79 + 2625: -44,-79 + 2626: -45,-79 + 2627: -48,-79 + 2628: -49,-79 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 208: -15,-28 + 211: -17,-29 + 212: -16,-29 + 213: -18,-30 + 214: -15,-30 + 232: -18,-28 + 238: -17,-28 + 239: -16,-28 + 254: -74,-30 + 255: -75,-30 + 256: -76,-30 + 1601: -35,-18 + 1602: -34,-18 + 1603: -33,-18 + 1691: -51,-52 + 1696: -52,-52 + 1697: -53,-52 + 1699: -54,-51 + 1735: -35,-40 + 1736: -34,-40 + 1737: -33,-40 + 1738: -35,-37 + 1739: -34,-37 + 1740: -33,-37 + 1741: -32,-37 + 1742: -31,-37 + 1743: -30,-37 + 1744: -34,-35 + 1745: -33,-35 + 1746: -32,-35 + 1747: -31,-35 + 1748: -30,-35 + 1789: -31,-26 + 1790: -30,-26 + 2144: -78,-42 + 2346: -33,-10 + 2347: -32,-10 + 2348: -31,-10 + 2349: -30,-10 + 2350: -29,-10 - node: + cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 213: -15,-28 - 216: -17,-29 - 217: -16,-29 - 218: -18,-30 - 219: -15,-30 - 237: -18,-28 - 243: -17,-28 - 244: -16,-28 - 259: -74,-30 - 260: -75,-30 - 261: -76,-30 - 1635: -36,-18 - 1636: -35,-18 - 1637: -34,-18 - 1638: -33,-18 - 1727: -51,-52 - 1732: -52,-52 - 1733: -53,-52 - 1735: -54,-51 - 1771: -35,-40 - 1772: -34,-40 - 1773: -33,-40 - 1774: -35,-37 - 1775: -34,-37 - 1776: -33,-37 - 1777: -32,-37 - 1778: -31,-37 - 1779: -30,-37 - 1780: -34,-35 - 1781: -33,-35 - 1782: -32,-35 - 1783: -31,-35 - 1784: -30,-35 - 1825: -31,-26 - 1826: -30,-26 - 2180: -78,-42 - 2383: -33,-10 - 2384: -32,-10 - 2385: -31,-10 - 2386: -30,-10 - 2387: -29,-10 + 3412: -35,-19 + 3413: -34,-19 - node: color: '#612620FF' id: WoodTrimThinLineSWhite decals: - 2877: -22,-3 - 2878: -21,-3 - 2879: -20,-3 + 2830: -22,-3 + 2831: -21,-3 + 2832: -20,-3 - node: color: '#A88661FF' id: WoodTrimThinLineSWhite decals: - 2653: -47,-81 - 2654: -46,-81 - 2657: -45,-81 - 2658: -44,-81 - 2669: -48,-81 - 2670: -49,-81 + 2616: -47,-81 + 2617: -46,-81 + 2620: -45,-81 + 2621: -44,-81 + 2632: -48,-81 + 2633: -49,-81 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 210: -15,-30 + 220: -17,-29 + 224: -18,-31 + 225: -18,-31 + 231: -14,-31 + 243: -19,-27 + 258: -76,-29 + 1610: -36,-17 + 1701: -54,-51 + 1702: -54,-50 + 1749: -32,-34 + 1750: -32,-32 + 1751: -32,-31 + 1782: -32,-30 + 1783: -32,-29 + 1784: -32,-28 + 1796: -30,-28 + 1879: -34,-34 + 2146: -77,-42 - node: + cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 215: -15,-30 - 225: -17,-29 - 229: -18,-31 - 230: -18,-31 - 236: -14,-31 - 248: -19,-27 - 263: -76,-29 - 1645: -36,-18 - 1646: -36,-17 - 1737: -54,-51 - 1738: -54,-50 - 1785: -32,-34 - 1786: -32,-32 - 1787: -32,-31 - 1818: -32,-30 - 1819: -32,-29 - 1820: -32,-28 - 1832: -30,-28 - 1915: -34,-34 - 2182: -77,-42 + 3416: -36,-18 - node: color: '#612620FF' id: WoodTrimThinLineWWhite decals: - 2872: -23,-5 - 2873: -23,-4 - 2874: -23,-2 - 2880: -23,-3 + 2825: -23,-5 + 2826: -23,-4 + 2827: -23,-2 + 2833: -23,-3 - node: color: '#A88661FF' id: WoodTrimThinLineWWhite decals: - 2649: -47,-81 - 2650: -47,-80 - 2651: -47,-79 - 2666: -49,-81 - 2667: -49,-80 - 2668: -49,-79 + 2612: -47,-81 + 2613: -47,-80 + 2614: -47,-79 + 2629: -49,-81 + 2630: -49,-80 + 2631: -49,-79 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: body decals: - 97: -73.91568,-63.985256 + 95: -73.91568,-63.985256 + - node: + cleanable: True + color: '#52B4E96C' + id: brush + decals: + 3409: -56.500114,-35.906197 - node: cleanable: True color: '#0000003E' id: dot decals: - 2395: -39.025047,-19.148458 - 2396: -38.827232,-18.636446 - 2397: -38.827232,-18.264072 - 2398: -38.76905,-19.264824 + 2358: -39.025047,-19.148458 + 2359: -38.827232,-18.636446 + 2360: -38.827232,-18.264072 + 2361: -38.76905,-19.264824 - node: cleanable: True color: '#00000076' id: dot decals: - 2927: -76.30048,-18.756426 - 2928: -75.509224,-19.92009 - 2929: -75.36958,-20.141186 - 2930: -76.009575,-19.419716 - 2931: -75.218315,-19.349895 + 2880: -76.30048,-18.756426 + 2881: -75.509224,-19.92009 + 2882: -75.36958,-20.141186 + 2883: -76.009575,-19.419716 + 2884: -75.218315,-19.349895 + - node: + cleanable: True + color: '#52B4E9D3' + id: dot + decals: + 3406: -56.36621,-35.83567 + 3407: -56.57103,-35.83567 + 3408: -56.273712,-35.742393 - node: cleanable: True zIndex: 2 color: '#724276FF' id: dot decals: - 2724: -36.27317,-78.2745 - 2725: -36.005585,-78.175385 + 2687: -36.27317,-78.2745 + 2688: -36.005585,-78.175385 - node: cleanable: True angle: -0.3490658503988659 rad color: '#880000B7' id: dot decals: - 1927: -37.580025,-30.586275 - 1928: -36.88134,-30.541676 + 1891: -37.580025,-30.586275 + 1892: -36.88134,-30.541676 - node: cleanable: True zIndex: 2 color: '#BE6BC3FF' id: dot decals: - 2726: -36.26326,-78.2745 - 2727: -36.015495,-78.175385 + 2689: -36.26326,-78.2745 + 2690: -36.015495,-78.175385 - node: cleanable: True color: '#FF00003E' id: dot decals: - 2986: -75.28492,-6.618595 - 2987: -75.06771,-6.0057316 - 2988: -74.8505,-5.9902163 + 2939: -75.28492,-6.618595 + 2940: -75.06771,-6.0057316 + 2941: -74.8505,-5.9902163 - node: cleanable: True color: '#FF33007F' id: footprint decals: - 2993: -74.02229,-64.10637 - 2994: -74.17356,-64.25765 + 2946: -74.02229,-64.10637 + 2947: -74.17356,-64.25765 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow decals: - 1920: -37,-34 + 1884: -37,-34 - node: cleanable: True color: '#FF00003E' id: grasssnow01 decals: - 2983: -74.82529,-6.5545936 + 2936: -74.82529,-6.5545936 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow02 decals: - 1922: -37,-30 + 1886: -37,-30 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 1929: -38.13005,-30.021358 + 1893: -38.13005,-30.021358 - node: color: '#CD000073' id: grasssnow06 decals: - 1651: -75.96412,-68.40369 + 1615: -75.96412,-68.40369 - node: cleanable: True color: '#FF33007F' id: grasssnow07 decals: - 2992: -73.37067,-64.17619 + 2945: -73.37067,-64.17619 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 1921: -39,-33 + 1885: -39,-33 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 1923: -37,-32 + 1887: -37,-32 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 1924: -38,-31 + 1888: -38,-31 - node: cleanable: True color: '#FF85004A' id: minus decals: - 2989: -79.1676,-5.9244504 + 2942: -79.1676,-5.9244504 - node: cleanable: True angle: -0.3490658503988659 rad color: '#880000B7' id: shortline decals: - 1926: -37.371902,-30.511944 + 1890: -37.371902,-30.511944 - node: color: '#00000037' id: slash decals: - 3367: -38.5932,-45.372902 + 3320: -38.5932,-45.372902 - node: color: '#0000002B' id: smallbrush decals: - 3277: -40.2024,-45.508194 - 3278: -35.792282,-45.47328 - 3279: -33.662857,-45.31037 - 3280: -37.23517,-45.496555 - 3281: -34.628662,-45.228912 - 3282: -37.74716,-45.4151 - 3283: -38.096245,-45.03109 - 3284: -39.632225,-45.066 - 3285: -38.072975,-45.287098 - 3286: -33.523224,-45.531467 - 3287: -37.18862,-45.48492 + 3230: -40.2024,-45.508194 + 3231: -35.792282,-45.47328 + 3232: -33.662857,-45.31037 + 3233: -37.23517,-45.496555 + 3234: -34.628662,-45.228912 + 3235: -37.74716,-45.4151 + 3236: -38.096245,-45.03109 + 3237: -39.632225,-45.066 + 3238: -38.072975,-45.287098 + 3239: -33.523224,-45.531467 + 3240: -37.18862,-45.48492 - node: color: '#0000002E' id: smallbrush decals: - 3289: -37.432983,-45.403465 - 3290: -36.07155,-45.10091 - 3291: -36.46718,-45.438374 + 3242: -37.432983,-45.403465 + 3243: -36.07155,-45.10091 + 3244: -36.46718,-45.438374 - node: color: '#00000037' id: smallbrush decals: - 3363: -38.69792,-45.314716 - 3364: -38.51175,-45.47763 - 3368: -39.500824,-45.372902 - 3369: -33.54309,-45.47763 - 3370: -36.87104,-45.40781 - 3371: -36.126328,-45.442722 - 3372: -33.194,-45.512543 - 3373: -37.476128,-45.023804 + 3316: -38.69792,-45.314716 + 3317: -38.51175,-45.47763 + 3321: -39.500824,-45.372902 + 3322: -33.54309,-45.47763 + 3323: -36.87104,-45.40781 + 3324: -36.126328,-45.442722 + 3325: -33.194,-45.512543 + 3326: -37.476128,-45.023804 - node: color: '#0000003B' id: smallbrush decals: - 3292: -35.350105,-45.531467 - 3293: -36.560272,-45.368553 - 3294: -40.272217,-45.391827 + 3245: -35.350105,-45.531467 + 3246: -36.560272,-45.368553 + 3247: -40.272217,-45.391827 + - node: + cleanable: True + color: '#52B4E9B4' + id: smallbrush + decals: + 3405: -56.36621,-35.842278 - node: cleanable: True zIndex: 2 color: '#BE6BC3FF' id: smallbrush decals: - 2728: -36.57048,-77.67985 + 2691: -36.57048,-77.67985 - node: cleanable: True color: '#FF85004A' id: smallbrush decals: - 2990: -78.86506,-5.7227483 + 2943: -78.86506,-5.7227483 - node: color: '#0000001F' id: splatter decals: - 3288: -35.315193,-45.391827 - 3295: -39.853317,-45.287098 - 3296: -37.00244,-45.461647 - 3297: -36.176277,-45.403465 - 3298: -38.363884,-45.287098 + 3241: -35.315193,-45.391827 + 3248: -39.853317,-45.287098 + 3249: -37.00244,-45.461647 + 3250: -36.176277,-45.403465 + 3251: -38.363884,-45.287098 - node: color: '#00000034' id: splatter decals: - 3299: -37.572617,-45.508194 + 3252: -37.572617,-45.508194 - node: color: '#00000037' id: splatter decals: - 3362: -39.047012,-45.500904 - 3365: -34.27617,-45.61727 - 3366: -39.663727,-45.535812 + 3315: -39.047012,-45.500904 + 3318: -34.27617,-45.61727 + 3319: -39.663727,-45.535812 - node: cleanable: True color: '#3EA5FF8F' id: splatter decals: - 2903: -66.22162,-54.841736 - 2904: -67.78747,-53.03797 + 2856: -66.22162,-54.841736 + 2857: -67.78747,-53.03797 - node: cleanable: True color: '#440000B4' id: splatter decals: - 2506: -29,1 + 2469: -29,1 - node: color: '#470000FF' id: splatter decals: - 42: -20,18 - 44: -65,-47 - 95: -64,-76 - 98: -50,-67 + 40: -20,18 + 42: -65,-47 + 93: -64,-76 + 96: -50,-67 - node: cleanable: True color: '#632600FF' @@ -6076,44 +6149,44 @@ entities: color: '#730000FF' id: splatter decals: - 34: -60,-3 - 35: -72,-3 - 38: -68,-26 - 39: -89,-36 + 32: -60,-3 + 33: -72,-3 + 36: -68,-26 + 37: -89,-36 - node: cleanable: True color: '#880000B7' id: splatter decals: - 1925: -37.04486,-30.09569 + 1889: -37.04486,-30.09569 - node: cleanable: True color: '#8F4C006D' id: splatter decals: - 2979: -78.11749,-6.5487747 + 2932: -78.11749,-6.5487747 - node: color: '#950000FF' id: splatter decals: - 96: -73.57193,-64.01651 + 94: -73.57193,-64.01651 - node: color: '#9A0000DE' id: splatter decals: - 123: -51,-76 + 120: -51,-76 - node: cleanable: True color: '#FF00004D' id: splatter decals: - 1505: -61.795906,-27.391909 + 1471: -61.795906,-27.391909 - node: cleanable: True color: '#FF0000C0' id: splatter decals: - 1650: -76.00308,-69.89703 + 1614: -76.00308,-69.89703 - type: GridAtmosphere version: 2 data: @@ -6509,7 +6582,8 @@ entities: -14,-4: 0: 61916 -14,-3: - 0: 56589 + 0: 55565 + 2: 1024 -14,-2: 0: 61469 -14,-1: @@ -6519,7 +6593,8 @@ entities: -13,-4: 0: 65038 -13,-3: - 0: 30479 + 0: 29455 + 3: 1024 -13,-2: 0: 53255 -13,-5: @@ -6534,15 +6609,15 @@ entities: 0: 8192 -19,0: 0: 7 - 2: 1792 - -19,1: - 3: 7 4: 1792 + -19,1: + 5: 7 + 6: 1792 -19,2: - 4: 7 - 5: 1792 + 6: 7 + 7: 1792 -19,3: - 4: 7 + 6: 7 0: 4096 -18,0: 1: 65535 @@ -6572,7 +6647,7 @@ entities: 0: 45792 -4,-10: 0: 10039 - 6: 64 + 8: 64 -5,-10: 0: 16267 -5,-9: @@ -6703,13 +6778,13 @@ entities: -20,-2: 0: 3822 -21,-2: - 4: 35982 + 6: 35982 0: 4096 -21,-1: - 4: 2048 + 6: 2048 0: 3 -20,-1: - 4: 68 + 6: 68 -19,-4: 0: 65464 -19,-3: @@ -6719,7 +6794,7 @@ entities: -19,-5: 0: 64443 -19,-1: - 4: 512 + 6: 512 -18,-4: 0: 65485 -18,-3: @@ -6838,7 +6913,7 @@ entities: -16,-16: 0: 63923 -15,-20: - 4: 12288 + 6: 12288 1: 128 -15,-19: 0: 8304 @@ -6868,7 +6943,7 @@ entities: -21,-18: 0: 254 -21,-17: - 4: 224 + 6: 224 0: 57600 -20,-17: 0: 56524 @@ -6916,10 +6991,10 @@ entities: -22,-18: 0: 15552 -22,-16: - 4: 238 + 6: 238 0: 61440 -22,-17: - 4: 49152 + 6: 49152 -21,-16: 0: 61166 -25,-16: @@ -6939,7 +7014,7 @@ entities: -24,-12: 0: 65518 -23,-15: - 4: 13088 + 6: 13088 0: 34952 -23,-14: 0: 4232 @@ -6951,7 +7026,7 @@ entities: 0: 65535 -22,-14: 0: 255 - 4: 12288 + 6: 12288 -22,-13: 0: 57344 -22,-12: @@ -6983,7 +7058,7 @@ entities: 0: 63503 -23,-10: 0: 191 - 4: 4096 + 6: 4096 -23,-9: 0: 65288 -23,-8: @@ -7026,7 +7101,7 @@ entities: 0: 65399 -22,-6: 0: 4367 - 4: 19456 + 6: 19456 -22,-5: 0: 64 -22,-4: @@ -7037,9 +7112,9 @@ entities: 0: 65327 -21,-6: 0: 15 - 4: 36096 + 6: 36096 -21,-5: - 4: 216 + 6: 216 0: 49152 -21,-4: 0: 17476 @@ -7047,7 +7122,7 @@ entities: 0: 65380 -20,-6: 0: 15 - 4: 768 + 6: 768 -28,-8: 1: 22391 -28,-9: @@ -7064,7 +7139,7 @@ entities: 1: 30583 -26,-8: 0: 292 - 4: 51200 + 6: 51200 -26,-7: 0: 61152 -26,-6: @@ -7193,7 +7268,8 @@ entities: -12,-11: 0: 61166 -13,-11: - 0: 58606 + 0: 58478 + 9: 128 -12,-10: 0: 65262 -13,-10: @@ -7219,9 +7295,9 @@ entities: 0: 65535 -10,-9: 0: 47 - 7: 60928 + 10: 60928 -10,-8: - 7: 3276 + 10: 3276 0: 4368 -9,-8: 0: 1638 @@ -7296,7 +7372,9 @@ entities: -16,-11: 0: 64187 -16,-10: - 0: 56793 + 0: 39321 + 9: 64 + 11: 17408 -17,-11: 0: 62327 -17,-10: @@ -7308,7 +7386,8 @@ entities: -15,-11: 0: 53725 -15,-10: - 0: 53724 + 0: 53660 + 11: 64 -15,-9: 0: 61661 -15,-8: @@ -7512,7 +7591,7 @@ entities: 1: 30583 -25,-9: 0: 2 - 4: 1024 + 6: 1024 -28,-16: 0: 2047 -28,-17: @@ -7615,6 +7694,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.43119 + - 88.145905 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -7690,6 +7799,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -7705,6 +7829,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 @@ -9447,7 +9586,7 @@ entities: 3,2: 1: 1877 3,-1: - 0: 4096 + 2: 4096 1: 3322 0,-2: 0: 45831 @@ -9523,9 +9662,9 @@ entities: -2,-2: 0: 65295 -2,-5: - 2: 29184 + 3: 29184 -2,-4: - 2: 2 + 3: 2 -2,-3: 1: 16384 -7,1: @@ -9549,33 +9688,33 @@ entities: -6,-3: 1: 19456 -10,0: - 2: 65280 + 3: 65280 -10,1: - 2: 15 + 3: 15 -9,0: - 2: 4352 + 3: 4352 -9,1: - 2: 1 + 3: 1 -12,-2: - 2: 9766 + 3: 9766 0: 4096 -12,-1: - 2: 1809 + 3: 1809 -13,-2: - 2: 41249 + 3: 41249 1: 16 0: 20480 -13,-1: - 2: 28354 + 3: 28354 0: 32768 -13,0: - 2: 6 + 3: 6 -5,4: 0: 63488 -2,4: - 2: 60928 + 3: 60928 -2,5: - 2: 14 + 3: 14 -5,5: 0: 5 uniqueMixes: @@ -9609,6 +9748,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9712,6 +9866,12 @@ entities: parent: 4 - type: InstantAction container: 4 + - uid: 716 + components: + - type: Transform + parent: 5934 + - type: InstantAction + container: 5934 - uid: 8361 components: - type: Transform @@ -10030,9 +10190,8 @@ entities: - 7119 - 7133 - 6996 - - 6995 - - 7078 - 7079 + - 6208 - 7080 - 9150 - 9074 @@ -10113,13 +10272,12 @@ entities: parent: 2 - type: DeviceList devices: - - 9037 - - 320 - - 9143 - - 6996 - - 6995 - - 7091 - 7084 + - 7091 + - 6996 + - 9143 + - 320 + - 9037 - uid: 30 components: - type: Transform @@ -10695,6 +10853,12 @@ entities: - 9225 - 9122 - 365 + - 7130 + - 7129 + - 7128 + - 19948 + - 19952 + - 20235 - uid: 20315 components: - type: Transform @@ -10708,6 +10872,26 @@ entities: - 6898 - 140 - 20316 + - uid: 20328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 7130 + - 7129 + - 7128 + - 19948 + - 19952 + - 20235 + - 9150 + - 9129 + - 9064 + - 9187 + - 342 + - 328 - proto: AirAlarmElectronics entities: - uid: 3825 @@ -11251,12 +11435,6 @@ entities: - type: Transform pos: -84.5,-40.5 parent: 2 - - type: Door - secondsUntilStateChange: -106002.01 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - uid: 122 components: - type: Transform @@ -12223,12 +12401,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-28.5 parent: 2 - - uid: 262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 2 - uid: 263 components: - type: Transform @@ -12687,6 +12859,7 @@ entities: deviceLists: - 23 - 6883 + - 20328 - uid: 329 components: - type: Transform @@ -12793,6 +12966,7 @@ entities: - type: DeviceNetwork deviceLists: - 18 + - 20328 - uid: 343 components: - type: Transform @@ -20140,6 +20314,11 @@ entities: parent: 2 - proto: BannerMedical entities: + - uid: 12807 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 - uid: 20140 components: - type: Transform @@ -20897,26 +21076,6 @@ entities: parent: 2 - proto: BlastDoorOpen entities: - - uid: 716 - components: - - type: Transform - pos: -44.5,-27.5 - parent: 2 - - uid: 717 - components: - - type: Transform - pos: -44.5,-26.5 - parent: 2 - - uid: 718 - components: - - type: Transform - pos: -43.5,-31.5 - parent: 2 - - uid: 719 - components: - - type: Transform - pos: -44.5,-25.5 - parent: 2 - uid: 720 components: - type: Transform @@ -21038,7 +21197,7 @@ entities: - uid: 727 components: - type: Transform - pos: -61.54034,-25.437426 + pos: -61.614014,-25.400652 parent: 2 - proto: BodyBagFolded entities: @@ -21130,25 +21289,15 @@ entities: parent: 2 - proto: BookRandom entities: - - uid: 741 - components: - - type: Transform - pos: -47.415207,-25.407846 - parent: 2 - uid: 742 components: - type: Transform - pos: -47.680832,-25.392221 + pos: -47.148476,-25.382029 parent: 2 - uid: 743 components: - type: Transform - pos: -47.540207,-25.329721 - parent: 2 - - uid: 744 - components: - - type: Transform - pos: -47.290207,-25.407846 + pos: -47.693542,-25.342384 parent: 2 - uid: 746 components: @@ -21207,7 +21356,7 @@ entities: - uid: 19973 components: - type: Transform - pos: -39.696945,-29.276564 + pos: -39.702545,-29.246946 parent: 2 - uid: 19988 components: @@ -21301,7 +21450,7 @@ entities: - uid: 760 components: - type: Transform - pos: -39.29557,-29.544155 + pos: -39.246567,-29.503496 parent: 2 - uid: 761 components: @@ -21349,7 +21498,7 @@ entities: - uid: 765 components: - type: Transform - pos: -50.66703,-43.093025 + pos: -50.52542,-42.67392 parent: 2 - proto: BoxCandleSmall entities: @@ -21511,7 +21660,7 @@ entities: - uid: 780 components: - type: Transform - pos: -19.6078,-9.450177 + pos: -19.502592,-9.354705 parent: 2 - uid: 781 components: @@ -21640,12 +21789,12 @@ entities: - uid: 782 components: - type: Transform - pos: -39.13205,-29.217098 + pos: -39.246567,-29.136795 parent: 2 - uid: 783 components: - type: Transform - pos: -50.66703,-43.499275 + pos: -50.570023,-43.2983 parent: 2 - uid: 784 components: @@ -21740,7 +21889,7 @@ entities: - uid: 793 components: - type: Transform - pos: -63.51538,-25.402723 + pos: -63.521202,-25.54949 parent: 2 - proto: Bucket entities: @@ -22563,11 +22712,6 @@ entities: - type: Transform pos: -53.5,-27.5 parent: 2 - - uid: 944 - components: - - type: Transform - pos: -56.5,-35.5 - parent: 2 - uid: 945 components: - type: Transform @@ -30258,11 +30402,6 @@ entities: - type: Transform pos: -31.5,-14.5 parent: 2 - - uid: 2537 - components: - - type: Transform - pos: -53.5,-35.5 - parent: 2 - uid: 2538 components: - type: Transform @@ -34368,6 +34507,16 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 2 + - uid: 20330 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 - proto: CableApcStack entities: - uid: 4623 @@ -45679,22 +45828,40 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-50.5 parent: 2 - - uid: 4770 + - uid: 4777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-50.5 + pos: -26.5,-63.5 parent: 2 - - uid: 4772 + - uid: 5542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-50.5 + pos: -1.5,-49.5 parent: 2 - - uid: 4777 + - uid: 19039 components: - type: Transform - pos: -26.5,-63.5 + pos: -1.5,-45.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: -2.5,-49.5 parent: 2 - proto: CargoPalletSell entities: @@ -45710,6 +45877,12 @@ entities: - type: Transform pos: -34.5,-41.5 parent: 2 + - type: Strap + unbuckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/unbuckle.ogg + buckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/buckle.ogg + rotation: 0.3490658503988659 rad - uid: 4782 components: - type: Transform @@ -45745,6 +45918,12 @@ entities: - type: Transform pos: -35.5,-41.5 parent: 2 + - type: Strap + unbuckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/unbuckle.ogg + buckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/buckle.ogg + rotation: -0.3490658503988659 rad - uid: 4889 components: - type: Transform @@ -46528,6 +46707,12 @@ entities: - type: Transform pos: -34.5,-43.5 parent: 2 + - type: Strap + unbuckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/unbuckle.ogg + buckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/buckle.ogg + rotation: 0.3490658503988659 rad - uid: 4914 components: - type: Transform @@ -46569,6 +46754,12 @@ entities: - type: Transform pos: -35.5,-43.5 parent: 2 + - type: Strap + unbuckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/unbuckle.ogg + buckleSound: !type:SoundPathSpecifier + path: /Audio/Effects/buckle.ogg + rotation: -0.3490658503988659 rad - uid: 12273 components: - type: Transform @@ -46634,6 +46825,11 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-15.5 parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 - uid: 2895 components: - type: Transform @@ -46712,6 +46908,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 - uid: 4923 components: - type: Transform @@ -51793,11 +51994,11 @@ entities: parent: 2 - proto: CleanerDispenser entities: - - uid: 5764 + - uid: 20332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-5.5 + pos: -6.5,-6.5 parent: 2 - proto: CloningPodMachineCircuitboard entities: @@ -51945,8 +52146,33 @@ entities: - type: Transform pos: -4.5,1.5 parent: 17265 + - uid: 19946 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 741 + components: + - type: Transform + pos: -96.5,-26.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -66.5,-47.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: -59.5,-54.5 + parent: 2 - uid: 17119 components: - type: Transform @@ -51969,11 +52195,6 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 5816 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - uid: 5817 components: - type: Transform @@ -51994,11 +52215,6 @@ entities: - type: Transform pos: -99.5,-26.5 parent: 2 - - uid: 5822 - components: - - type: Transform - pos: -95.5,-26.5 - parent: 2 - uid: 5823 components: - type: Transform @@ -52171,11 +52387,6 @@ entities: - type: Transform pos: -66.5,-49.5 parent: 2 - - uid: 5854 - components: - - type: Transform - pos: -66.5,-47.5 - parent: 2 - uid: 5855 components: - type: Transform @@ -52545,7 +52756,7 @@ entities: - uid: 14288 components: - type: Transform - pos: -44.44716,-74.383026 + pos: -44.652565,-74.35199 parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: @@ -52713,7 +52924,7 @@ entities: - uid: 5910 components: - type: Transform - pos: -55.48768,-40.369152 + pos: -55.34754,-40.413155 parent: 2 - proto: ClothingHandsGlovesPowerglove entities: @@ -52918,8 +53129,22 @@ entities: - uid: 5934 components: - type: Transform - pos: -19.516068,23.726631 + pos: -19.518435,23.734774 parent: 2 + - type: HandheldLight + toggleActionEntity: 716 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 716 + - type: ActionsContainer - proto: ClothingHeadHatMagician entities: - uid: 20046 @@ -54467,12 +54692,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-12.5 parent: 2 - - uid: 6048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 2 - uid: 6049 components: - type: Transform @@ -54532,6 +54751,12 @@ entities: rot: 1.5707963267948966 rad pos: -102.5,-26.5 parent: 2 + - uid: 19947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 - uid: 19958 components: - type: Transform @@ -54590,6 +54815,11 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-64.5 parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 - proto: ComputerBroken entities: - uid: 6059 @@ -54949,13 +55179,13 @@ entities: - type: Transform pos: -79.5,-60.5 parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: - uid: 6106 components: - type: Transform pos: -40.5,-0.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - uid: 6107 components: - type: Transform @@ -55453,8 +55683,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -55471,12 +55701,12 @@ entities: showEnts: False occludes: True ents: - - 729 - - 730 - - 731 - - 732 - - 733 - 734 + - 733 + - 732 + - 731 + - 730 + - 729 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -55492,8 +55722,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -55510,7 +55740,6 @@ entities: showEnts: False occludes: True ents: - - 6158 - 6160 - 6159 - 6156 @@ -55518,6 +55747,7 @@ entities: - 6155 - 6161 - 6162 + - 6158 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -55533,8 +55763,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -55684,6 +55914,24 @@ entities: - type: Transform pos: -61.5,-38.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateVendingMachineRestockSmokesFilled entities: - uid: 6181 @@ -55931,35 +56179,45 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 6205 + - uid: 744 components: - type: Transform - pos: -56.5,-34.5 + pos: -54.5,-34.5 parent: 2 - - uid: 6206 + - uid: 944 components: - type: Transform - pos: -54.5,-34.5 + pos: -56.5,-34.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 6207 + - uid: 7254 components: - type: Transform - pos: -57.30236,-34.34939 + pos: -57.514008,-34.54242 parent: 2 - - uid: 6208 +- proto: CurtainsBlueOpen + entities: + - uid: 717 components: - type: Transform - pos: -57.27909,-34.47739 + pos: -30.5,-45.5 parent: 2 - - uid: 6209 + - uid: 718 components: - type: Transform - pos: -57.27909,-34.7334 + pos: -41.5,-46.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -30.5,-46.5 parent: 2 -- proto: CurtainsBlueOpen - entities: - uid: 12950 components: - type: Transform @@ -56089,6 +56347,12 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 + - uid: 10282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-25.5 + parent: 2 - uid: 13073 components: - type: Transform @@ -56924,6 +57188,11 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 2096 + components: + - type: Transform + pos: -44.5,-38.5 + parent: 2 - uid: 2099 components: - type: Transform @@ -56954,6 +57223,11 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-56.5 parent: 2 + - uid: 6272 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 - uid: 6304 components: - type: Transform @@ -58276,12 +58550,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-39.5 parent: 2 - - uid: 6551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-38.5 - parent: 2 - uid: 6552 components: - type: Transform @@ -58985,11 +59253,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-28.5 parent: 2 - - uid: 12724 - components: - - type: Transform - pos: -44.5,-37.5 - parent: 2 - uid: 13481 components: - type: Transform @@ -59878,14 +60141,13 @@ entities: rot: -1.5707963267948966 rad pos: -60.538956,1.7028847 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 2096 + - uid: 11485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.28817,-14.529617 + pos: -1.4610934,6.608341 parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: - uid: 2097 components: - type: Transform @@ -59901,7 +60163,8 @@ entities: - uid: 2871 components: - type: Transform - pos: -60.647545,-13.279617 + rot: 3.141592653589793 rad + pos: -0.9705272,6.548876 parent: 2 - uid: 3341 components: @@ -59916,11 +60179,6 @@ entities: actions: !type:Container ents: - 3683 - - uid: 4192 - components: - - type: Transform - pos: -60.28817,-13.342117 - parent: 2 - proto: Dresser entities: - uid: 6735 @@ -59970,6 +60228,13 @@ entities: - 7223 - 7420 - 5594 +- proto: DresserChiefEngineerFilled + entities: + - uid: 15467 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - uid: 6739 @@ -60084,11 +60349,11 @@ entities: - type: Transform pos: -29.28723,-63.04434 parent: 2 - - uid: 6758 + - uid: 7683 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.60107,-57.4771 + pos: -86.46131,-55.241024 parent: 2 - uid: 17237 components: @@ -60353,6 +60618,13 @@ entities: - type: Transform pos: -77.3529,-19.58397 parent: 2 +- proto: DrinkOrangeJuice + entities: + - uid: 5764 + components: + - type: Transform + pos: -59.47336,-26.396687 + parent: 2 - proto: DrinkShaker entities: - uid: 20028 @@ -60482,7 +60754,7 @@ entities: - uid: 6792 components: - type: Transform - pos: -39.191513,-29.707684 + pos: -39.30603,-29.701712 parent: 2 - proto: EmergencyLight entities: @@ -60805,6 +61077,11 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-7.5 parent: 2 + - uid: 10406 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 - uid: 12957 components: - type: Transform @@ -60843,6 +61120,17 @@ entities: - type: Transform pos: -13.5,1.5 parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-27.5 + parent: 2 - proto: EmergencyNitrogenTankFilled entities: - uid: 16960 @@ -60978,34 +61266,6 @@ entities: - type: Transform pos: 6.5,-6.5 parent: 16090 -- proto: EvidenceMarkerEight - entities: - - uid: 19037 - components: - - type: Transform - pos: -10.855578,-5.855386 - parent: 17265 -- proto: EvidenceMarkerFour - entities: - - uid: 19038 - components: - - type: Transform - pos: -10.496203,-5.839761 - parent: 17265 -- proto: EvidenceMarkerNine - entities: - - uid: 19039 - components: - - type: Transform - pos: -11.214953,-5.808511 - parent: 17265 -- proto: EvidenceMarkerOne - entities: - - uid: 19040 - components: - - type: Transform - pos: -11.574057,-5.761636 - parent: 17265 - proto: ExosuitFabricator entities: - uid: 6865 @@ -61042,6 +61302,7 @@ entities: pos: -21.5,-3.5 parent: 2 - type: FaxMachine + name: Кабинет главы службы безопасности destinationAddress: Кабинет ГСБ - uid: 6866 components: @@ -61049,28 +61310,32 @@ entities: pos: -28.5,-16.5 parent: 2 - type: FaxMachine - name: Каюта Главы Персонала + name: Кабинет главы персонала + destinationAddress: Кабинет главы персонала - uid: 6868 components: - type: Transform pos: -69.5,-30.5 parent: 2 - type: FaxMachine - name: Главный Врач + name: Кабинет главного врача destinationAddress: Кабинет Главного Врача - uid: 6869 components: - type: Transform pos: -51.5,-51.5 parent: 2 + - type: FaxMachine + name: Библиотека + destinationAddress: Библиотека - uid: 6870 components: - type: Transform pos: -22.5,-26.5 parent: 2 - type: FaxMachine - name: Офис АВД - destinationAddress: Кабинет АВД + name: Кабинет агента внутренних дел + destinationAddress: Кабинет агента внутренних дел - uid: 6872 components: - type: MetaData @@ -61079,7 +61344,7 @@ entities: pos: -22.5,6.5 parent: 2 - type: FaxMachine - name: Комната Смотрителя + name: Кабинет смотрителя destinationAddress: Комната Смотрителя - uid: 6873 components: @@ -61088,13 +61353,14 @@ entities: parent: 2 - type: FaxMachine name: Мостик - destinationAddress: конференц-зал + destinationAddress: Конференц-зал - uid: 6874 components: - type: Transform pos: -39.5,-65.5 parent: 2 - type: FaxMachine + name: Научный отдел destinationAddress: Научный Отдел - uid: 12262 components: @@ -61102,13 +61368,15 @@ entities: pos: -22.5,-43.5 parent: 2 - type: FaxMachine - destinationAddress: кабинет КМ + name: Кабинет квартирмейстера + destinationAddress: кабинет квартирмейстера - uid: 15360 components: - type: Transform pos: -33.5,-61.5 parent: 2 - type: FaxMachine + name: Кабинет научного руководителя destinationAddress: кабинет НР - uid: 19043 components: @@ -61116,13 +61384,15 @@ entities: pos: -8.5,1.5 parent: 17265 - type: FaxMachine - name: Микрозаймы "ДЕНЬГИ ЗДЕСЬ" + name: Каторга + destinationAddress: Каторга - uid: 19945 components: - type: Transform pos: -53.5,-18.5 parent: 2 - type: FaxMachine + name: Кабинет старшего инженера destinationAddress: Кабинет Старшего Инженера - proto: FaxMachineCaptain entities: @@ -61131,6 +61401,9 @@ entities: - type: Transform pos: -39.5,-12.5 parent: 2 + - type: FaxMachine + name: Кабинет капитана + destinationAddress: Кабинет капитана - proto: FenceMetalGate entities: - uid: 6877 @@ -61190,10 +61463,6 @@ entities: - 7119 - 7133 - 6996 - - 6995 - - 7078 - - 7079 - - 7080 - uid: 16429 components: - type: Transform @@ -61218,6 +61487,12 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-3.5 parent: 2 + - uid: 20329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 - proto: FireExtinguisher entities: - uid: 6885 @@ -61892,17 +62167,6 @@ entities: deviceLists: - 42 - 39 - - uid: 6995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - 6883 - - 29 - uid: 6996 components: - type: Transform @@ -62433,6 +62697,36 @@ entities: deviceLists: - 17277 - 17279 + - uid: 19948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20065 + - 20328 + - uid: 19952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20065 + - 20328 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20065 + - 20328 - proto: FirelockFrame entities: - uid: 7071 @@ -62442,6 +62736,15 @@ entities: parent: 2 - proto: FirelockGlass entities: + - uid: 6208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 - uid: 7072 components: - type: Transform @@ -62490,33 +62793,24 @@ entities: - type: DeviceNetwork deviceLists: - 18 - - uid: 7078 - components: - - type: Transform - pos: -44.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23 - - 6883 - uid: 7079 components: - type: Transform - pos: -45.5,-38.5 + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - 23 - - 6883 - uid: 7080 components: - type: Transform - pos: -46.5,-38.5 + rot: 1.5707963267948966 rad + pos: -46.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - 23 - - 6883 - uid: 7081 components: - type: Transform @@ -62880,6 +63174,8 @@ entities: deviceLists: - 23 - 6883 + - 20065 + - 20328 - uid: 7129 components: - type: Transform @@ -62890,6 +63186,8 @@ entities: deviceLists: - 23 - 6883 + - 20065 + - 20328 - uid: 7130 components: - type: Transform @@ -62900,6 +63198,8 @@ entities: deviceLists: - 23 - 6883 + - 20065 + - 20328 - uid: 7131 components: - type: Transform @@ -63752,6 +64052,11 @@ entities: - type: Transform pos: -18.54093,-70.462906 parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -60.30429,11.862658 + parent: 2 - proto: FloodlightBroken entities: - uid: 7160 @@ -63770,6 +64075,12 @@ entities: - type: Transform pos: -18.509104,-72.2913 parent: 2 + - uid: 20336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.66062,9.872792 + parent: 2 - proto: FloorAzureWaterEntity entities: - uid: 3719 @@ -64185,6 +64496,13 @@ entities: - type: Transform pos: -111.37186,-57.45928 parent: 2 +- proto: FoodBurgerSuper + entities: + - uid: 19943 + components: + - type: Transform + pos: -53.5132,-9.615501 + parent: 2 - proto: FoodCarrot entities: - uid: 7230 @@ -64541,7 +64859,7 @@ entities: - uid: 17060 components: - type: Transform - pos: -51.444374,-26.410286 + pos: -65.453735,-26.362175 parent: 2 - proto: FoodSnackEnergy entities: @@ -64620,6 +64938,12 @@ entities: parent: 16921 - proto: GasAnalyzer entities: + - uid: 4192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.558144,-35.196175 + parent: 2 - uid: 7251 components: - type: Transform @@ -64635,11 +64959,6 @@ entities: - type: Transform pos: -77.427666,-35.78679 parent: 2 - - uid: 7254 - components: - - type: Transform - pos: -57.722992,-34.973537 - parent: 2 - proto: GasCanisterBrokenBase entities: - uid: 7255 @@ -64648,26 +64967,20 @@ entities: rot: 1.5707963267948966 rad pos: -86.5,-48.5 parent: 2 -- proto: GasFilterFlipped +- proto: GasFilter entities: - - uid: 7258 - components: - - type: Transform - pos: -66.5,5.5 - parent: 2 - - uid: 7261 + - uid: 9712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-36.5 + rot: 3.141592653589793 rad + pos: -54.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7262 +- proto: GasFilterFlipped + entities: + - uid: 7258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-36.5 + pos: -66.5,5.5 parent: 2 - uid: 7616 components: @@ -64924,7 +65237,7 @@ entities: pos: -41.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 2652 components: - type: Transform @@ -64948,13 +65261,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 6209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-37.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 - uid: 7297 components: - type: Transform pos: -33.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7298 components: - type: Transform @@ -64962,21 +65292,21 @@ entities: pos: -58.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7299 components: - type: Transform pos: -34.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7300 components: - type: Transform pos: -33.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7301 components: - type: Transform @@ -64984,7 +65314,7 @@ entities: pos: -34.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7302 components: - type: Transform @@ -64992,7 +65322,7 @@ entities: pos: -33.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7304 components: - type: Transform @@ -65000,7 +65330,7 @@ entities: pos: -9.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7305 components: - type: Transform @@ -65008,25 +65338,14 @@ entities: pos: -18.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7306 components: - type: Transform pos: -17.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' - - uid: 7308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-36.5 - parent: 2 - - uid: 7310 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 2 + color: '#0000FFFF' - uid: 7311 components: - type: Transform @@ -65069,14 +65388,14 @@ entities: pos: -63.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7322 components: - type: Transform pos: -55.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7323 components: - type: Transform @@ -65084,7 +65403,7 @@ entities: pos: -56.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7324 components: - type: Transform @@ -65092,7 +65411,7 @@ entities: pos: -71.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7325 components: - type: Transform @@ -65100,7 +65419,7 @@ entities: pos: -71.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7326 components: - type: Transform @@ -65108,7 +65427,7 @@ entities: pos: -16.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7327 components: - type: Transform @@ -65116,7 +65435,7 @@ entities: pos: -17.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7328 components: - type: Transform @@ -65124,7 +65443,7 @@ entities: pos: -38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7329 components: - type: Transform @@ -65132,7 +65451,7 @@ entities: pos: -43.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7330 components: - type: Transform @@ -65140,14 +65459,14 @@ entities: pos: -49.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7331 components: - type: Transform pos: -61.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7332 components: - type: Transform @@ -65155,7 +65474,7 @@ entities: pos: -63.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7333 components: - type: Transform @@ -65163,20 +65482,14 @@ entities: pos: -65.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7334 components: - type: Transform pos: -49.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 7336 components: - type: Transform @@ -65184,7 +65497,7 @@ entities: pos: -60.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7337 components: - type: Transform @@ -65192,7 +65505,7 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7338 components: - type: Transform @@ -65200,14 +65513,14 @@ entities: pos: 10.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7339 components: - type: Transform pos: -24.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7340 components: - type: Transform @@ -65215,14 +65528,14 @@ entities: pos: -72.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7341 components: - type: Transform pos: -15.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7342 components: - type: Transform @@ -65230,7 +65543,7 @@ entities: pos: -53.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7343 components: - type: Transform @@ -65238,7 +65551,7 @@ entities: pos: -98.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7344 components: - type: Transform @@ -65257,7 +65570,7 @@ entities: pos: -59.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7347 components: - type: Transform @@ -65294,20 +65607,14 @@ entities: pos: -75.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' - - uid: 7352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-34.5 - parent: 2 + color: '#0000FFFF' - uid: 7354 components: - type: Transform pos: -53.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7355 components: - type: Transform @@ -65315,7 +65622,7 @@ entities: pos: -69.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7356 components: - type: Transform @@ -65323,7 +65630,7 @@ entities: pos: -19.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7357 components: - type: Transform @@ -65331,14 +65638,14 @@ entities: pos: -55.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7358 components: - type: Transform pos: -52.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7359 components: - type: Transform @@ -65354,7 +65661,7 @@ entities: pos: -53.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7361 components: - type: Transform @@ -65362,7 +65669,7 @@ entities: pos: -52.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7362 components: - type: Transform @@ -65370,7 +65677,7 @@ entities: pos: -59.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7363 components: - type: Transform @@ -65378,7 +65685,7 @@ entities: pos: -58.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7364 components: - type: Transform @@ -65386,7 +65693,7 @@ entities: pos: -58.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7365 components: - type: Transform @@ -65394,7 +65701,7 @@ entities: pos: -59.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7366 components: - type: Transform @@ -65402,7 +65709,7 @@ entities: pos: -85.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7367 components: - type: Transform @@ -65410,7 +65717,7 @@ entities: pos: -85.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7368 components: - type: Transform @@ -65418,21 +65725,21 @@ entities: pos: -72.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7369 components: - type: Transform pos: -44.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7370 components: - type: Transform pos: -44.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7371 components: - type: Transform @@ -65440,7 +65747,7 @@ entities: pos: -37.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7372 components: - type: Transform @@ -65448,7 +65755,7 @@ entities: pos: -42.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7373 components: - type: Transform @@ -65456,7 +65763,7 @@ entities: pos: -42.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7374 components: - type: Transform @@ -65464,7 +65771,7 @@ entities: pos: -49.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7375 components: - type: Transform @@ -65494,7 +65801,7 @@ entities: pos: -15.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7379 components: - type: Transform @@ -65510,14 +65817,14 @@ entities: pos: -28.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7381 components: - type: Transform pos: -18.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7382 components: - type: Transform @@ -65525,14 +65832,14 @@ entities: pos: -18.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7383 components: - type: Transform pos: -15.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7384 components: - type: Transform @@ -65540,7 +65847,7 @@ entities: pos: -22.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7385 components: - type: Transform @@ -65548,7 +65855,7 @@ entities: pos: -18.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7386 components: - type: Transform @@ -65556,7 +65863,7 @@ entities: pos: -33.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7388 components: - type: Transform @@ -65564,7 +65871,7 @@ entities: pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7389 components: - type: Transform @@ -65572,7 +65879,7 @@ entities: pos: -3.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7390 components: - type: Transform @@ -65580,7 +65887,7 @@ entities: pos: -24.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7391 components: - type: Transform @@ -65588,14 +65895,14 @@ entities: pos: -63.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7392 components: - type: Transform pos: -63.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7393 components: - type: Transform @@ -65603,7 +65910,7 @@ entities: pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7394 components: - type: Transform @@ -65611,7 +65918,7 @@ entities: pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7395 components: - type: Transform @@ -65619,7 +65926,7 @@ entities: pos: -63.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7396 components: - type: Transform @@ -65627,7 +65934,7 @@ entities: pos: -34.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7397 components: - type: Transform @@ -65635,7 +65942,7 @@ entities: pos: -68.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7398 components: - type: Transform @@ -65643,7 +65950,7 @@ entities: pos: -61.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7399 components: - type: Transform @@ -65651,7 +65958,7 @@ entities: pos: -59.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7400 components: - type: Transform @@ -65659,7 +65966,7 @@ entities: pos: -64.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7401 components: - type: Transform @@ -65667,14 +65974,14 @@ entities: pos: -68.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7402 components: - type: Transform pos: -16.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7403 components: - type: Transform @@ -65682,7 +65989,7 @@ entities: pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7404 components: - type: Transform @@ -65690,7 +65997,7 @@ entities: pos: -44.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7405 components: - type: Transform @@ -65698,7 +66005,7 @@ entities: pos: -63.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7406 components: - type: Transform @@ -65706,7 +66013,7 @@ entities: pos: -18.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7407 components: - type: Transform @@ -65714,7 +66021,7 @@ entities: pos: -61.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7408 components: - type: Transform @@ -65722,28 +66029,28 @@ entities: pos: -58.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7409 components: - type: Transform pos: -65.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7410 components: - type: Transform pos: -50.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7411 components: - type: Transform pos: -31.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7412 components: - type: Transform @@ -65751,7 +66058,7 @@ entities: pos: -31.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7413 components: - type: Transform @@ -65759,7 +66066,7 @@ entities: pos: -50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7414 components: - type: Transform @@ -65803,7 +66110,7 @@ entities: pos: -34.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7421 components: - type: Transform @@ -65811,14 +66118,14 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7422 components: - type: Transform pos: -31.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7423 components: - type: Transform @@ -65837,7 +66144,13 @@ entities: pos: -3.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' + - uid: 7904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-36.5 + parent: 2 - uid: 9937 components: - type: Transform @@ -65845,7 +66158,13 @@ entities: pos: -10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' + - uid: 11501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-37.5 + parent: 2 - uid: 12597 components: - type: Transform @@ -65858,7 +66177,7 @@ entities: pos: -41.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 14541 components: - type: Transform @@ -65866,7 +66185,7 @@ entities: pos: -34.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 15796 components: - type: Transform @@ -66005,13 +66324,18 @@ entities: parent: 17265 - proto: GasPipeFourway entities: + - uid: 6207 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 - uid: 7426 components: - type: Transform pos: -54.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7427 components: - type: Transform @@ -66025,133 +66349,133 @@ entities: pos: -32.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7429 components: - type: Transform pos: -45.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7430 components: - type: Transform pos: -46.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7431 components: - type: Transform pos: -18.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7432 components: - type: Transform pos: -46.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7433 components: - type: Transform pos: -25.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7434 components: - type: Transform pos: -32.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7435 components: - type: Transform pos: -61.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7436 components: - type: Transform pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7437 components: - type: Transform pos: -73.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7438 components: - type: Transform pos: -63.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7439 components: - type: Transform pos: -22.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7440 components: - type: Transform pos: -66.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7441 components: - type: Transform pos: -74.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7442 components: - type: Transform pos: -74.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7443 components: - type: Transform pos: -73.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7444 components: - type: Transform pos: -74.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7445 components: - type: Transform pos: -73.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7446 components: - type: Transform pos: -58.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7447 components: - type: Transform @@ -66209,7 +66533,7 @@ entities: pos: -40.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 133 components: - type: Transform @@ -66217,7 +66541,7 @@ entities: pos: -39.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 467 components: - type: Transform @@ -66225,7 +66549,7 @@ entities: pos: -47.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 546 components: - type: Transform @@ -66238,7 +66562,7 @@ entities: pos: -42.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 711 components: - type: Transform @@ -66263,7 +66587,7 @@ entities: pos: -45.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 4332 components: - type: Transform @@ -66271,7 +66595,7 @@ entities: pos: -47.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 4968 components: - type: Transform @@ -66279,7 +66603,7 @@ entities: pos: -43.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 4970 components: - type: Transform @@ -66287,7 +66611,7 @@ entities: pos: -46.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 5433 components: - type: Transform @@ -66295,7 +66619,7 @@ entities: pos: -44.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5435 components: - type: Transform @@ -66303,7 +66627,7 @@ entities: pos: -45.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5438 components: - type: Transform @@ -66311,14 +66635,14 @@ entities: pos: -46.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5443 components: - type: Transform pos: -36.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5450 components: - type: Transform @@ -66326,7 +66650,7 @@ entities: pos: -42.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5452 components: - type: Transform @@ -66334,28 +66658,28 @@ entities: pos: -37.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5496 components: - type: Transform pos: -36.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5547 components: - type: Transform pos: -36.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5548 components: - type: Transform pos: -36.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5552 components: - type: Transform @@ -66363,7 +66687,7 @@ entities: pos: -8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5575 components: - type: Transform @@ -66371,7 +66695,7 @@ entities: pos: -39.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5578 components: - type: Transform @@ -66379,7 +66703,7 @@ entities: pos: -38.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5581 components: - type: Transform @@ -66387,7 +66711,7 @@ entities: pos: -41.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5582 components: - type: Transform @@ -66395,7 +66719,7 @@ entities: pos: -40.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5715 components: - type: Transform @@ -66403,7 +66727,32 @@ entities: pos: -6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' + - uid: 6551 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-36.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-35.5 + parent: 2 - uid: 7448 components: - type: Transform @@ -66411,14 +66760,14 @@ entities: pos: -64.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7449 components: - type: Transform pos: -61.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7450 components: - type: Transform @@ -66426,7 +66775,7 @@ entities: pos: -46.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7451 components: - type: Transform @@ -66434,7 +66783,7 @@ entities: pos: -31.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7452 components: - type: Transform @@ -66442,7 +66791,7 @@ entities: pos: -47.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7453 components: - type: Transform @@ -66450,7 +66799,7 @@ entities: pos: -56.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7454 components: - type: Transform @@ -66458,14 +66807,14 @@ entities: pos: -57.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7455 components: - type: Transform pos: -33.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7456 components: - type: Transform @@ -66473,7 +66822,7 @@ entities: pos: -32.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7457 components: - type: Transform @@ -66481,21 +66830,21 @@ entities: pos: -36.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7458 components: - type: Transform pos: -17.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7459 components: - type: Transform pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7460 components: - type: Transform @@ -66503,14 +66852,14 @@ entities: pos: -33.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7461 components: - type: Transform pos: -63.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7462 components: - type: Transform @@ -66518,7 +66867,7 @@ entities: pos: -18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7463 components: - type: Transform @@ -66526,14 +66875,14 @@ entities: pos: -21.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7464 components: - type: Transform pos: -18.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7465 components: - type: Transform @@ -66541,7 +66890,7 @@ entities: pos: -16.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7466 components: - type: Transform @@ -66549,7 +66898,7 @@ entities: pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7467 components: - type: Transform @@ -66557,7 +66906,7 @@ entities: pos: -7.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7468 components: - type: Transform @@ -66565,7 +66914,7 @@ entities: pos: -8.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7469 components: - type: Transform @@ -66573,7 +66922,7 @@ entities: pos: -6.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7470 components: - type: Transform @@ -66581,7 +66930,7 @@ entities: pos: -8.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7471 components: - type: Transform @@ -66589,7 +66938,7 @@ entities: pos: -62.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7472 components: - type: Transform @@ -66597,7 +66946,7 @@ entities: pos: -61.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7473 components: - type: Transform @@ -66605,7 +66954,7 @@ entities: pos: -63.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7474 components: - type: Transform @@ -66613,21 +66962,21 @@ entities: pos: -61.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7475 components: - type: Transform pos: -19.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7476 components: - type: Transform pos: -19.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7477 components: - type: Transform @@ -66635,7 +66984,7 @@ entities: pos: -20.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7478 components: - type: Transform @@ -66643,7 +66992,7 @@ entities: pos: -16.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7479 components: - type: Transform @@ -66651,7 +67000,7 @@ entities: pos: -15.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7480 components: - type: Transform @@ -66659,7 +67008,7 @@ entities: pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7481 components: - type: Transform @@ -66667,7 +67016,7 @@ entities: pos: -18.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7482 components: - type: Transform @@ -66675,7 +67024,7 @@ entities: pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7483 components: - type: Transform @@ -66683,7 +67032,7 @@ entities: pos: -16.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7484 components: - type: Transform @@ -66691,14 +67040,14 @@ entities: pos: -20.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7485 components: - type: Transform pos: -18.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7486 components: - type: Transform @@ -66714,7 +67063,7 @@ entities: pos: -12.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7488 components: - type: Transform @@ -66722,7 +67071,7 @@ entities: pos: -59.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7489 components: - type: Transform @@ -66730,7 +67079,7 @@ entities: pos: -51.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7490 components: - type: Transform @@ -66738,14 +67087,14 @@ entities: pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7491 components: - type: Transform pos: -60.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7492 components: - type: Transform @@ -66753,7 +67102,7 @@ entities: pos: -54.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7494 components: - type: Transform @@ -66761,7 +67110,7 @@ entities: pos: -11.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7495 components: - type: Transform @@ -66769,19 +67118,7 @@ entities: pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-35.5 - parent: 2 - - uid: 7497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 7498 components: - type: Transform @@ -66789,7 +67126,7 @@ entities: pos: -51.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7503 components: - type: Transform @@ -66797,7 +67134,7 @@ entities: pos: -49.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7504 components: - type: Transform @@ -66805,7 +67142,7 @@ entities: pos: -55.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7505 components: - type: Transform @@ -66813,14 +67150,14 @@ entities: pos: -56.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7506 components: - type: Transform pos: -54.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7507 components: - type: Transform @@ -66828,7 +67165,7 @@ entities: pos: -59.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7508 components: - type: Transform @@ -66836,7 +67173,7 @@ entities: pos: -59.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7509 components: - type: Transform @@ -66844,7 +67181,7 @@ entities: pos: -56.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7510 components: - type: Transform @@ -66852,7 +67189,7 @@ entities: pos: -47.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7511 components: - type: Transform @@ -66860,7 +67197,7 @@ entities: pos: -47.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7512 components: - type: Transform @@ -66868,7 +67205,7 @@ entities: pos: -58.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7513 components: - type: Transform @@ -66876,7 +67213,7 @@ entities: pos: -57.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7514 components: - type: Transform @@ -66884,7 +67221,7 @@ entities: pos: -53.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7515 components: - type: Transform @@ -66892,7 +67229,7 @@ entities: pos: -62.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7516 components: - type: Transform @@ -66900,7 +67237,7 @@ entities: pos: -60.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7517 components: - type: Transform @@ -67448,7 +67785,7 @@ entities: pos: -44.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7610 components: - type: Transform @@ -67456,7 +67793,7 @@ entities: pos: -60.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7611 components: - type: Transform @@ -67464,14 +67801,14 @@ entities: pos: -60.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7612 components: - type: Transform pos: -75.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7613 components: - type: Transform @@ -67479,14 +67816,14 @@ entities: pos: -59.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7614 components: - type: Transform pos: -74.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7615 components: - type: Transform @@ -67494,7 +67831,7 @@ entities: pos: -51.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7617 components: - type: Transform @@ -67502,7 +67839,7 @@ entities: pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7620 components: - type: Transform @@ -67522,7 +67859,7 @@ entities: pos: -44.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7623 components: - type: Transform @@ -67530,7 +67867,7 @@ entities: pos: -50.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7624 components: - type: Transform @@ -67538,13 +67875,7 @@ entities: pos: -53.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 2 + color: '#FF0000FF' - uid: 7626 components: - type: Transform @@ -67552,49 +67883,49 @@ entities: pos: -46.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7628 components: - type: Transform pos: -63.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7629 components: - type: Transform pos: -63.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7630 components: - type: Transform pos: -61.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7631 components: - type: Transform pos: -61.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7632 components: - type: Transform pos: -61.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7633 components: - type: Transform pos: -61.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7634 components: - type: Transform @@ -67602,35 +67933,35 @@ entities: pos: -56.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7635 components: - type: Transform pos: -61.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7636 components: - type: Transform pos: -61.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7637 components: - type: Transform pos: -61.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7638 components: - type: Transform pos: -61.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7639 components: - type: Transform @@ -67638,7 +67969,7 @@ entities: pos: -55.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7640 components: - type: Transform @@ -67646,7 +67977,7 @@ entities: pos: -54.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7641 components: - type: Transform @@ -67654,7 +67985,7 @@ entities: pos: -55.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7642 components: - type: Transform @@ -67662,7 +67993,7 @@ entities: pos: -66.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7643 components: - type: Transform @@ -67670,7 +68001,7 @@ entities: pos: -67.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7644 components: - type: Transform @@ -67678,7 +68009,7 @@ entities: pos: -56.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7645 components: - type: Transform @@ -67686,7 +68017,7 @@ entities: pos: -69.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7646 components: - type: Transform @@ -67694,14 +68025,14 @@ entities: pos: -70.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7647 components: - type: Transform pos: -71.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7648 components: - type: Transform @@ -67709,7 +68040,7 @@ entities: pos: -72.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7649 components: - type: Transform @@ -67717,7 +68048,7 @@ entities: pos: -73.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7650 components: - type: Transform @@ -67725,7 +68056,7 @@ entities: pos: -74.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7651 components: - type: Transform @@ -67733,7 +68064,7 @@ entities: pos: -76.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7652 components: - type: Transform @@ -67741,7 +68072,7 @@ entities: pos: -77.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7653 components: - type: Transform @@ -67749,7 +68080,7 @@ entities: pos: -78.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7654 components: - type: Transform @@ -67757,7 +68088,7 @@ entities: pos: -80.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7655 components: - type: Transform @@ -67765,7 +68096,7 @@ entities: pos: -82.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7656 components: - type: Transform @@ -67773,7 +68104,7 @@ entities: pos: -83.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7657 components: - type: Transform @@ -67781,7 +68112,7 @@ entities: pos: -84.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7658 components: - type: Transform @@ -67789,7 +68120,7 @@ entities: pos: -85.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7659 components: - type: Transform @@ -67797,7 +68128,7 @@ entities: pos: -86.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7660 components: - type: Transform @@ -67805,7 +68136,7 @@ entities: pos: -87.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7661 components: - type: Transform @@ -67813,7 +68144,7 @@ entities: pos: -89.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7662 components: - type: Transform @@ -67821,7 +68152,7 @@ entities: pos: -90.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7663 components: - type: Transform @@ -67829,7 +68160,7 @@ entities: pos: -91.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7664 components: - type: Transform @@ -67837,7 +68168,7 @@ entities: pos: -92.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7665 components: - type: Transform @@ -67845,7 +68176,7 @@ entities: pos: -93.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7666 components: - type: Transform @@ -67853,7 +68184,7 @@ entities: pos: -94.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7667 components: - type: Transform @@ -67861,7 +68192,7 @@ entities: pos: -95.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7668 components: - type: Transform @@ -67869,7 +68200,7 @@ entities: pos: -96.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7669 components: - type: Transform @@ -67877,14 +68208,14 @@ entities: pos: -97.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7671 components: - type: Transform pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7672 components: - type: Transform @@ -67892,7 +68223,7 @@ entities: pos: -65.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7673 components: - type: Transform @@ -67956,7 +68287,7 @@ entities: pos: -45.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7681 components: - type: Transform @@ -67964,7 +68295,7 @@ entities: pos: -45.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7682 components: - type: Transform @@ -67972,15 +68303,7 @@ entities: pos: -45.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' - - uid: 7683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7684 components: - type: Transform @@ -67988,7 +68311,7 @@ entities: pos: -45.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7685 components: - type: Transform @@ -67996,7 +68319,7 @@ entities: pos: -45.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7686 components: - type: Transform @@ -68004,7 +68327,7 @@ entities: pos: -45.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7687 components: - type: Transform @@ -68012,7 +68335,7 @@ entities: pos: -45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7688 components: - type: Transform @@ -68020,7 +68343,7 @@ entities: pos: -45.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7689 components: - type: Transform @@ -68028,7 +68351,7 @@ entities: pos: -43.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7690 components: - type: Transform @@ -68036,7 +68359,7 @@ entities: pos: -45.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7691 components: - type: Transform @@ -68044,7 +68367,7 @@ entities: pos: -45.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7692 components: - type: Transform @@ -68052,7 +68375,7 @@ entities: pos: -45.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7693 components: - type: Transform @@ -68060,7 +68383,7 @@ entities: pos: -45.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7694 components: - type: Transform @@ -68068,7 +68391,7 @@ entities: pos: -45.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7695 components: - type: Transform @@ -68076,7 +68399,7 @@ entities: pos: -45.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7696 components: - type: Transform @@ -68084,35 +68407,35 @@ entities: pos: -47.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7697 components: - type: Transform pos: -45.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7698 components: - type: Transform pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7699 components: - type: Transform pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7700 components: - type: Transform pos: -45.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7701 components: - type: Transform @@ -68120,35 +68443,35 @@ entities: pos: -45.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7702 components: - type: Transform pos: -45.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7703 components: - type: Transform pos: -45.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7704 components: - type: Transform pos: -45.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7705 components: - type: Transform pos: -45.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7706 components: - type: Transform @@ -68156,7 +68479,7 @@ entities: pos: -43.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7707 components: - type: Transform @@ -68164,7 +68487,7 @@ entities: pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7708 components: - type: Transform @@ -68172,7 +68495,7 @@ entities: pos: -41.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7709 components: - type: Transform @@ -68180,7 +68503,7 @@ entities: pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7710 components: - type: Transform @@ -68188,7 +68511,7 @@ entities: pos: -39.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7711 components: - type: Transform @@ -68196,7 +68519,7 @@ entities: pos: -38.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7712 components: - type: Transform @@ -68204,7 +68527,7 @@ entities: pos: -36.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7713 components: - type: Transform @@ -68212,7 +68535,7 @@ entities: pos: -35.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7714 components: - type: Transform @@ -68220,7 +68543,7 @@ entities: pos: -34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7715 components: - type: Transform @@ -68228,7 +68551,7 @@ entities: pos: -33.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7716 components: - type: Transform @@ -68236,7 +68559,7 @@ entities: pos: -32.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7717 components: - type: Transform @@ -68244,7 +68567,7 @@ entities: pos: -31.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7718 components: - type: Transform @@ -68252,7 +68575,7 @@ entities: pos: -30.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7719 components: - type: Transform @@ -68260,7 +68583,7 @@ entities: pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7720 components: - type: Transform @@ -68268,7 +68591,7 @@ entities: pos: -28.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7721 components: - type: Transform @@ -68276,7 +68599,7 @@ entities: pos: -27.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7722 components: - type: Transform @@ -68284,7 +68607,7 @@ entities: pos: -25.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7723 components: - type: Transform @@ -68292,7 +68615,7 @@ entities: pos: -23.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7724 components: - type: Transform @@ -68300,7 +68623,7 @@ entities: pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7725 components: - type: Transform @@ -68308,7 +68631,7 @@ entities: pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7726 components: - type: Transform @@ -68316,7 +68639,7 @@ entities: pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7727 components: - type: Transform @@ -68324,7 +68647,7 @@ entities: pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7728 components: - type: Transform @@ -68332,7 +68655,7 @@ entities: pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7729 components: - type: Transform @@ -68340,7 +68663,7 @@ entities: pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7730 components: - type: Transform @@ -68348,7 +68671,7 @@ entities: pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7731 components: - type: Transform @@ -68356,7 +68679,7 @@ entities: pos: -11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7732 components: - type: Transform @@ -68364,7 +68687,7 @@ entities: pos: -10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7733 components: - type: Transform @@ -68372,7 +68695,7 @@ entities: pos: -9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7734 components: - type: Transform @@ -68380,7 +68703,7 @@ entities: pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7735 components: - type: Transform @@ -68388,7 +68711,7 @@ entities: pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7736 components: - type: Transform @@ -68396,7 +68719,7 @@ entities: pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7737 components: - type: Transform @@ -68404,7 +68727,7 @@ entities: pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7738 components: - type: Transform @@ -68412,7 +68735,7 @@ entities: pos: -2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7739 components: - type: Transform @@ -68420,7 +68743,7 @@ entities: pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7740 components: - type: Transform @@ -68428,7 +68751,7 @@ entities: pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7741 components: - type: Transform @@ -68436,7 +68759,7 @@ entities: pos: 1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7742 components: - type: Transform @@ -68444,7 +68767,7 @@ entities: pos: 2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7743 components: - type: Transform @@ -68452,7 +68775,7 @@ entities: pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7744 components: - type: Transform @@ -68460,7 +68783,7 @@ entities: pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7745 components: - type: Transform @@ -68468,7 +68791,7 @@ entities: pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7746 components: - type: Transform @@ -68476,7 +68799,7 @@ entities: pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7747 components: - type: Transform @@ -68484,7 +68807,7 @@ entities: pos: 7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7748 components: - type: Transform @@ -68492,7 +68815,7 @@ entities: pos: 8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7749 components: - type: Transform @@ -68500,7 +68823,7 @@ entities: pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7750 components: - type: Transform @@ -68508,7 +68831,7 @@ entities: pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7751 components: - type: Transform @@ -68516,7 +68839,7 @@ entities: pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7752 components: - type: Transform @@ -68524,7 +68847,7 @@ entities: pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7753 components: - type: Transform @@ -68532,7 +68855,7 @@ entities: pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7754 components: - type: Transform @@ -68540,7 +68863,7 @@ entities: pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7755 components: - type: Transform @@ -68548,7 +68871,7 @@ entities: pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7756 components: - type: Transform @@ -68556,7 +68879,7 @@ entities: pos: 0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7757 components: - type: Transform @@ -68564,7 +68887,7 @@ entities: pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7758 components: - type: Transform @@ -68572,7 +68895,7 @@ entities: pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7759 components: - type: Transform @@ -68580,7 +68903,7 @@ entities: pos: 0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7760 components: - type: Transform @@ -68588,7 +68911,7 @@ entities: pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7761 components: - type: Transform @@ -68596,7 +68919,7 @@ entities: pos: 0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7762 components: - type: Transform @@ -68604,7 +68927,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7763 components: - type: Transform @@ -68612,7 +68935,7 @@ entities: pos: 0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7764 components: - type: Transform @@ -68620,7 +68943,7 @@ entities: pos: 0.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7765 components: - type: Transform @@ -68628,7 +68951,7 @@ entities: pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7766 components: - type: Transform @@ -68636,7 +68959,7 @@ entities: pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7767 components: - type: Transform @@ -68644,7 +68967,7 @@ entities: pos: 0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7768 components: - type: Transform @@ -68652,7 +68975,7 @@ entities: pos: 0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7769 components: - type: Transform @@ -68660,7 +68983,7 @@ entities: pos: 0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7770 components: - type: Transform @@ -68668,7 +68991,7 @@ entities: pos: -17.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7771 components: - type: Transform @@ -68676,7 +68999,7 @@ entities: pos: -17.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7772 components: - type: Transform @@ -68684,7 +69007,7 @@ entities: pos: -17.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7773 components: - type: Transform @@ -68692,7 +69015,7 @@ entities: pos: -17.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7774 components: - type: Transform @@ -68700,7 +69023,7 @@ entities: pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7775 components: - type: Transform @@ -68708,14 +69031,14 @@ entities: pos: -17.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7776 components: - type: Transform pos: -19.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7777 components: - type: Transform @@ -68723,7 +69046,7 @@ entities: pos: -18.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7778 components: - type: Transform @@ -68731,7 +69054,7 @@ entities: pos: -17.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7779 components: - type: Transform @@ -68739,7 +69062,7 @@ entities: pos: -32.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7780 components: - type: Transform @@ -68747,7 +69070,7 @@ entities: pos: -32.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7781 components: - type: Transform @@ -68755,7 +69078,7 @@ entities: pos: -32.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7782 components: - type: Transform @@ -68763,7 +69086,7 @@ entities: pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7783 components: - type: Transform @@ -68771,7 +69094,7 @@ entities: pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7784 components: - type: Transform @@ -68779,7 +69102,7 @@ entities: pos: -32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7785 components: - type: Transform @@ -68787,7 +69110,7 @@ entities: pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7786 components: - type: Transform @@ -68795,7 +69118,7 @@ entities: pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7787 components: - type: Transform @@ -68803,7 +69126,7 @@ entities: pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7788 components: - type: Transform @@ -68811,7 +69134,7 @@ entities: pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7789 components: - type: Transform @@ -68819,7 +69142,7 @@ entities: pos: -32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7790 components: - type: Transform @@ -68827,7 +69150,7 @@ entities: pos: -32.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7791 components: - type: Transform @@ -68835,7 +69158,7 @@ entities: pos: -32.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7792 components: - type: Transform @@ -68843,7 +69166,7 @@ entities: pos: -32.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7793 components: - type: Transform @@ -68851,7 +69174,7 @@ entities: pos: -32.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7794 components: - type: Transform @@ -68859,7 +69182,7 @@ entities: pos: -32.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7795 components: - type: Transform @@ -68867,7 +69190,7 @@ entities: pos: -33.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7796 components: - type: Transform @@ -68875,7 +69198,7 @@ entities: pos: -34.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7797 components: - type: Transform @@ -68883,7 +69206,7 @@ entities: pos: -35.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7798 components: - type: Transform @@ -68891,7 +69214,7 @@ entities: pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7799 components: - type: Transform @@ -68899,7 +69222,7 @@ entities: pos: -37.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7800 components: - type: Transform @@ -68907,7 +69230,7 @@ entities: pos: -32.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7801 components: - type: Transform @@ -69099,7 +69422,7 @@ entities: pos: -43.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7825 components: - type: Transform @@ -69107,7 +69430,7 @@ entities: pos: -43.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7826 components: - type: Transform @@ -69115,7 +69438,7 @@ entities: pos: -43.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7827 components: - type: Transform @@ -69123,7 +69446,7 @@ entities: pos: -43.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7828 components: - type: Transform @@ -69131,7 +69454,7 @@ entities: pos: -43.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7829 components: - type: Transform @@ -69139,7 +69462,7 @@ entities: pos: -43.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7830 components: - type: Transform @@ -69147,7 +69470,7 @@ entities: pos: -43.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7831 components: - type: Transform @@ -69155,7 +69478,7 @@ entities: pos: -42.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7832 components: - type: Transform @@ -69163,7 +69486,7 @@ entities: pos: -41.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7833 components: - type: Transform @@ -69171,7 +69494,7 @@ entities: pos: -40.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7834 components: - type: Transform @@ -69179,112 +69502,112 @@ entities: pos: -39.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7835 components: - type: Transform pos: -37.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7836 components: - type: Transform pos: -37.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7837 components: - type: Transform pos: -37.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7838 components: - type: Transform pos: -37.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7839 components: - type: Transform pos: -37.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7840 components: - type: Transform pos: -37.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7846 components: - type: Transform pos: -37.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7847 components: - type: Transform pos: -37.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7848 components: - type: Transform pos: -37.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7849 components: - type: Transform pos: -37.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7850 components: - type: Transform pos: -37.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7851 components: - type: Transform pos: -37.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7852 components: - type: Transform pos: -37.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7853 components: - type: Transform pos: -37.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7854 components: - type: Transform pos: -59.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7855 components: - type: Transform @@ -69292,7 +69615,7 @@ entities: pos: -57.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7856 components: - type: Transform @@ -69300,7 +69623,7 @@ entities: pos: -56.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7857 components: - type: Transform @@ -69308,7 +69631,7 @@ entities: pos: -54.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7858 components: - type: Transform @@ -69316,7 +69639,7 @@ entities: pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7859 components: - type: Transform @@ -69324,7 +69647,7 @@ entities: pos: -52.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7860 components: - type: Transform @@ -69332,7 +69655,7 @@ entities: pos: -51.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7861 components: - type: Transform @@ -69340,7 +69663,7 @@ entities: pos: -49.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7862 components: - type: Transform @@ -69348,7 +69671,7 @@ entities: pos: -48.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7863 components: - type: Transform @@ -69356,7 +69679,7 @@ entities: pos: -47.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7864 components: - type: Transform @@ -69364,28 +69687,28 @@ entities: pos: -46.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7865 components: - type: Transform pos: -63.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7866 components: - type: Transform pos: -63.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7867 components: - type: Transform pos: -63.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7868 components: - type: Transform @@ -69393,28 +69716,28 @@ entities: pos: -58.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7869 components: - type: Transform pos: -63.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7870 components: - type: Transform pos: -63.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7871 components: - type: Transform pos: -63.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7872 components: - type: Transform @@ -69422,7 +69745,7 @@ entities: pos: -64.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7873 components: - type: Transform @@ -69430,7 +69753,7 @@ entities: pos: -64.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7874 components: - type: Transform @@ -69438,7 +69761,7 @@ entities: pos: -66.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7875 components: - type: Transform @@ -69446,7 +69769,7 @@ entities: pos: -62.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7876 components: - type: Transform @@ -69454,7 +69777,7 @@ entities: pos: -61.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7877 components: - type: Transform @@ -69462,7 +69785,7 @@ entities: pos: -60.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7878 components: - type: Transform @@ -69470,14 +69793,14 @@ entities: pos: -57.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7879 components: - type: Transform pos: -68.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7880 components: - type: Transform @@ -69485,14 +69808,14 @@ entities: pos: -54.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7881 components: - type: Transform pos: -15.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7882 components: - type: Transform @@ -69500,7 +69823,7 @@ entities: pos: -52.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7883 components: - type: Transform @@ -69508,7 +69831,7 @@ entities: pos: -51.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7884 components: - type: Transform @@ -69516,7 +69839,7 @@ entities: pos: -50.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7885 components: - type: Transform @@ -69524,7 +69847,7 @@ entities: pos: -48.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7886 components: - type: Transform @@ -69532,7 +69855,7 @@ entities: pos: -47.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7887 components: - type: Transform @@ -69540,125 +69863,112 @@ entities: pos: -49.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7888 components: - type: Transform pos: -46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7889 components: - type: Transform pos: -46.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7890 components: - type: Transform pos: -46.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7891 components: - type: Transform pos: -46.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7892 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7893 components: - type: Transform pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7894 components: - type: Transform pos: -46.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7895 components: - type: Transform pos: -46.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7896 components: - type: Transform pos: -46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7897 components: - type: Transform pos: -46.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7898 components: - type: Transform pos: -46.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7899 components: - type: Transform pos: -46.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7900 components: - type: Transform pos: -46.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7901 components: - type: Transform pos: -46.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7902 components: - type: Transform pos: -46.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7903 components: - type: Transform pos: -46.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 7905 components: - type: Transform @@ -69666,7 +69976,7 @@ entities: pos: -51.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7906 components: - type: Transform @@ -69674,7 +69984,7 @@ entities: pos: -58.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7907 components: - type: Transform @@ -69682,7 +69992,7 @@ entities: pos: -57.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7908 components: - type: Transform @@ -69690,7 +70000,7 @@ entities: pos: -56.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7909 components: - type: Transform @@ -69698,7 +70008,7 @@ entities: pos: -50.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7910 components: - type: Transform @@ -69706,14 +70016,14 @@ entities: pos: -62.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7911 components: - type: Transform pos: -63.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7912 components: - type: Transform @@ -69721,7 +70031,7 @@ entities: pos: -64.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7913 components: - type: Transform @@ -69729,7 +70039,7 @@ entities: pos: -65.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7914 components: - type: Transform @@ -69737,13 +70047,7 @@ entities: pos: -47.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 7916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 7917 components: - type: Transform @@ -69751,28 +70055,28 @@ entities: pos: -58.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7918 components: - type: Transform pos: -59.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7919 components: - type: Transform pos: -59.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7920 components: - type: Transform pos: -59.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7921 components: - type: Transform @@ -69780,14 +70084,14 @@ entities: pos: -55.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7922 components: - type: Transform pos: 12.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7923 components: - type: Transform @@ -69795,7 +70099,7 @@ entities: pos: -59.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7924 components: - type: Transform @@ -69803,7 +70107,7 @@ entities: pos: -16.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7925 components: - type: Transform @@ -69811,7 +70115,7 @@ entities: pos: -95.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7926 components: - type: Transform @@ -69819,7 +70123,7 @@ entities: pos: -96.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7927 components: - type: Transform @@ -69827,7 +70131,7 @@ entities: pos: -93.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7928 components: - type: Transform @@ -69835,7 +70139,7 @@ entities: pos: -92.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7929 components: - type: Transform @@ -69843,20 +70147,14 @@ entities: pos: -17.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' - - uid: 7930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-36.5 - parent: 2 + color: '#0000FFFF' - uid: 7931 components: - type: Transform pos: -34.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7932 components: - type: Transform @@ -69864,35 +70162,35 @@ entities: pos: -16.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7933 components: - type: Transform pos: -34.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7934 components: - type: Transform pos: -33.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7935 components: - type: Transform pos: -34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7936 components: - type: Transform pos: -34.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7937 components: - type: Transform @@ -69900,7 +70198,7 @@ entities: pos: -21.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7938 components: - type: Transform @@ -69908,7 +70206,7 @@ entities: pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7939 components: - type: Transform @@ -69916,7 +70214,7 @@ entities: pos: -20.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7940 components: - type: Transform @@ -69924,7 +70222,7 @@ entities: pos: -18.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7941 components: - type: Transform @@ -69932,7 +70230,7 @@ entities: pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7942 components: - type: Transform @@ -69940,7 +70238,7 @@ entities: pos: -16.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7943 components: - type: Transform @@ -69948,7 +70246,7 @@ entities: pos: -16.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7944 components: - type: Transform @@ -69956,14 +70254,14 @@ entities: pos: -16.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7945 components: - type: Transform pos: -19.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7946 components: - type: Transform @@ -69971,7 +70269,7 @@ entities: pos: -16.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7947 components: - type: Transform @@ -69979,14 +70277,14 @@ entities: pos: -52.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7948 components: - type: Transform pos: 12.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7949 components: - type: Transform @@ -69994,7 +70292,7 @@ entities: pos: -14.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7950 components: - type: Transform @@ -70009,7 +70307,7 @@ entities: pos: 12.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7952 components: - type: Transform @@ -70017,7 +70315,7 @@ entities: pos: 12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7953 components: - type: Transform @@ -70025,7 +70323,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7954 components: - type: Transform @@ -70033,7 +70331,7 @@ entities: pos: 12.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7955 components: - type: Transform @@ -70041,7 +70339,7 @@ entities: pos: 12.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7956 components: - type: Transform @@ -70049,182 +70347,182 @@ entities: pos: 12.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7957 components: - type: Transform pos: 12.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7958 components: - type: Transform pos: 12.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7959 components: - type: Transform pos: 12.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7960 components: - type: Transform pos: 12.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7961 components: - type: Transform pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7962 components: - type: Transform pos: 12.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7963 components: - type: Transform pos: 12.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7964 components: - type: Transform pos: 12.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7965 components: - type: Transform pos: 12.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7966 components: - type: Transform pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7967 components: - type: Transform pos: -45.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7968 components: - type: Transform pos: -45.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7969 components: - type: Transform pos: -45.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7970 components: - type: Transform pos: -45.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7971 components: - type: Transform pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7972 components: - type: Transform pos: -45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7973 components: - type: Transform pos: -45.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7974 components: - type: Transform pos: -68.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7975 components: - type: Transform pos: -68.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7976 components: - type: Transform pos: -45.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7977 components: - type: Transform pos: -45.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7978 components: - type: Transform pos: -45.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7979 components: - type: Transform pos: -45.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7980 components: - type: Transform pos: -45.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7981 components: - type: Transform pos: -45.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 7982 components: - type: Transform @@ -70232,7 +70530,7 @@ entities: pos: -46.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7983 components: - type: Transform @@ -70240,7 +70538,7 @@ entities: pos: -46.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7984 components: - type: Transform @@ -70248,7 +70546,7 @@ entities: pos: -46.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7985 components: - type: Transform @@ -70256,7 +70554,7 @@ entities: pos: -46.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7986 components: - type: Transform @@ -70264,7 +70562,7 @@ entities: pos: -46.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7987 components: - type: Transform @@ -70272,7 +70570,7 @@ entities: pos: -46.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7988 components: - type: Transform @@ -70280,7 +70578,7 @@ entities: pos: -46.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7989 components: - type: Transform @@ -70288,7 +70586,7 @@ entities: pos: -46.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7990 components: - type: Transform @@ -70296,7 +70594,7 @@ entities: pos: -46.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7991 components: - type: Transform @@ -70304,7 +70602,7 @@ entities: pos: -46.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7992 components: - type: Transform @@ -70312,7 +70610,7 @@ entities: pos: -43.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7993 components: - type: Transform @@ -70320,7 +70618,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7994 components: - type: Transform @@ -70328,7 +70626,7 @@ entities: pos: -41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7995 components: - type: Transform @@ -70336,7 +70634,7 @@ entities: pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7996 components: - type: Transform @@ -70344,7 +70642,7 @@ entities: pos: -39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7997 components: - type: Transform @@ -70352,7 +70650,7 @@ entities: pos: -37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7998 components: - type: Transform @@ -70360,7 +70658,7 @@ entities: pos: -36.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 7999 components: - type: Transform @@ -70368,7 +70666,7 @@ entities: pos: -35.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8000 components: - type: Transform @@ -70376,7 +70674,7 @@ entities: pos: -0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8001 components: - type: Transform @@ -70384,7 +70682,7 @@ entities: pos: -33.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8002 components: - type: Transform @@ -70392,7 +70690,7 @@ entities: pos: -32.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8003 components: - type: Transform @@ -70400,7 +70698,7 @@ entities: pos: -31.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8004 components: - type: Transform @@ -70408,7 +70706,7 @@ entities: pos: -30.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8005 components: - type: Transform @@ -70416,7 +70714,7 @@ entities: pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8006 components: - type: Transform @@ -70424,7 +70722,7 @@ entities: pos: -28.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8007 components: - type: Transform @@ -70432,7 +70730,7 @@ entities: pos: -26.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8008 components: - type: Transform @@ -70440,7 +70738,7 @@ entities: pos: -25.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8009 components: - type: Transform @@ -70448,7 +70746,7 @@ entities: pos: -25.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8010 components: - type: Transform @@ -70456,7 +70754,7 @@ entities: pos: -25.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8011 components: - type: Transform @@ -70464,7 +70762,7 @@ entities: pos: -25.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8012 components: - type: Transform @@ -70472,7 +70770,7 @@ entities: pos: -25.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8013 components: - type: Transform @@ -70480,7 +70778,7 @@ entities: pos: -25.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8014 components: - type: Transform @@ -70488,7 +70786,7 @@ entities: pos: -25.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8015 components: - type: Transform @@ -70496,7 +70794,7 @@ entities: pos: -25.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8016 components: - type: Transform @@ -70504,7 +70802,7 @@ entities: pos: -25.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8017 components: - type: Transform @@ -70512,7 +70810,7 @@ entities: pos: -25.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8018 components: - type: Transform @@ -70520,14 +70818,14 @@ entities: pos: -25.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8019 components: - type: Transform pos: -46.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8020 components: - type: Transform @@ -70535,7 +70833,7 @@ entities: pos: -46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8021 components: - type: Transform @@ -70543,84 +70841,84 @@ entities: pos: -46.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8022 components: - type: Transform pos: -46.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8023 components: - type: Transform pos: -46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8024 components: - type: Transform pos: -46.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8025 components: - type: Transform pos: -46.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8026 components: - type: Transform pos: -46.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8027 components: - type: Transform pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8028 components: - type: Transform pos: -46.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8029 components: - type: Transform pos: -46.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8030 components: - type: Transform pos: -46.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8031 components: - type: Transform pos: -46.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8032 components: - type: Transform pos: -46.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8033 components: - type: Transform @@ -70628,7 +70926,7 @@ entities: pos: -24.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8034 components: - type: Transform @@ -70636,7 +70934,7 @@ entities: pos: -23.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8035 components: - type: Transform @@ -70644,7 +70942,7 @@ entities: pos: -21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8036 components: - type: Transform @@ -70652,7 +70950,7 @@ entities: pos: -20.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8037 components: - type: Transform @@ -70660,7 +70958,7 @@ entities: pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8038 components: - type: Transform @@ -70668,7 +70966,7 @@ entities: pos: -18.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8039 components: - type: Transform @@ -70676,7 +70974,7 @@ entities: pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8040 components: - type: Transform @@ -70684,7 +70982,7 @@ entities: pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8041 components: - type: Transform @@ -70692,7 +70990,7 @@ entities: pos: -14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8042 components: - type: Transform @@ -70700,7 +70998,7 @@ entities: pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8043 components: - type: Transform @@ -70708,7 +71006,7 @@ entities: pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8044 components: - type: Transform @@ -70716,7 +71014,7 @@ entities: pos: -9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8045 components: - type: Transform @@ -70724,7 +71022,7 @@ entities: pos: -7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8046 components: - type: Transform @@ -70732,7 +71030,7 @@ entities: pos: -6.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8047 components: - type: Transform @@ -70740,7 +71038,7 @@ entities: pos: -5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8048 components: - type: Transform @@ -70748,7 +71046,7 @@ entities: pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8049 components: - type: Transform @@ -70756,7 +71054,7 @@ entities: pos: -3.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8050 components: - type: Transform @@ -70764,7 +71062,7 @@ entities: pos: -2.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8051 components: - type: Transform @@ -70772,7 +71070,7 @@ entities: pos: -1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8052 components: - type: Transform @@ -70780,7 +71078,7 @@ entities: pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8053 components: - type: Transform @@ -70788,7 +71086,7 @@ entities: pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8054 components: - type: Transform @@ -70796,7 +71094,7 @@ entities: pos: 2.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8055 components: - type: Transform @@ -70804,7 +71102,7 @@ entities: pos: 3.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8056 components: - type: Transform @@ -70812,7 +71110,7 @@ entities: pos: 4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8057 components: - type: Transform @@ -70820,7 +71118,7 @@ entities: pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8058 components: - type: Transform @@ -70828,7 +71126,7 @@ entities: pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8059 components: - type: Transform @@ -70836,7 +71134,7 @@ entities: pos: 7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8060 components: - type: Transform @@ -70844,7 +71142,7 @@ entities: pos: 8.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8061 components: - type: Transform @@ -70852,7 +71150,7 @@ entities: pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8062 components: - type: Transform @@ -70860,7 +71158,7 @@ entities: pos: 14.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8063 components: - type: Transform @@ -70868,77 +71166,77 @@ entities: pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8064 components: - type: Transform pos: -25.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8065 components: - type: Transform pos: -25.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8066 components: - type: Transform pos: -25.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8067 components: - type: Transform pos: -25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8068 components: - type: Transform pos: -25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8069 components: - type: Transform pos: -25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8070 components: - type: Transform pos: -25.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8071 components: - type: Transform pos: -25.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8072 components: - type: Transform pos: -25.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8073 components: - type: Transform pos: -25.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8074 components: - type: Transform @@ -70946,7 +71244,7 @@ entities: pos: -26.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8075 components: - type: Transform @@ -70954,7 +71252,7 @@ entities: pos: -26.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8076 components: - type: Transform @@ -70962,7 +71260,7 @@ entities: pos: -26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8077 components: - type: Transform @@ -70970,7 +71268,7 @@ entities: pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8078 components: - type: Transform @@ -70978,7 +71276,7 @@ entities: pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8079 components: - type: Transform @@ -70986,7 +71284,7 @@ entities: pos: -26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8080 components: - type: Transform @@ -70994,7 +71292,7 @@ entities: pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8081 components: - type: Transform @@ -71002,7 +71300,7 @@ entities: pos: -26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8082 components: - type: Transform @@ -71010,7 +71308,7 @@ entities: pos: -26.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8083 components: - type: Transform @@ -71018,7 +71316,7 @@ entities: pos: -26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8084 components: - type: Transform @@ -71026,7 +71324,7 @@ entities: pos: -26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8085 components: - type: Transform @@ -71034,7 +71332,7 @@ entities: pos: -26.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8086 components: - type: Transform @@ -71042,21 +71340,21 @@ entities: pos: -26.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8087 components: - type: Transform pos: -26.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8088 components: - type: Transform pos: -25.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8089 components: - type: Transform @@ -71064,21 +71362,21 @@ entities: pos: -0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8090 components: - type: Transform pos: -34.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8091 components: - type: Transform pos: -34.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8092 components: - type: Transform @@ -71086,7 +71384,7 @@ entities: pos: -34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8093 components: - type: Transform @@ -71094,14 +71392,14 @@ entities: pos: -34.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8094 components: - type: Transform pos: -34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8095 components: - type: Transform @@ -71109,7 +71407,7 @@ entities: pos: -34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8096 components: - type: Transform @@ -71117,7 +71415,7 @@ entities: pos: -34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8097 components: - type: Transform @@ -71125,7 +71423,7 @@ entities: pos: -35.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8098 components: - type: Transform @@ -71133,7 +71431,7 @@ entities: pos: -36.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8099 components: - type: Transform @@ -71141,7 +71439,7 @@ entities: pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8100 components: - type: Transform @@ -71149,182 +71447,182 @@ entities: pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8101 components: - type: Transform pos: -24.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8102 components: - type: Transform pos: -24.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8103 components: - type: Transform pos: -24.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8104 components: - type: Transform pos: -24.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8105 components: - type: Transform pos: -24.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8106 components: - type: Transform pos: -24.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8107 components: - type: Transform pos: -24.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8108 components: - type: Transform pos: -24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8109 components: - type: Transform pos: -24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8110 components: - type: Transform pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8111 components: - type: Transform pos: -24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8112 components: - type: Transform pos: -24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8113 components: - type: Transform pos: -24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8114 components: - type: Transform pos: -24.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8115 components: - type: Transform pos: -24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8116 components: - type: Transform pos: -24.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8117 components: - type: Transform pos: -24.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8118 components: - type: Transform pos: -24.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8119 components: - type: Transform pos: -24.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8120 components: - type: Transform pos: -24.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8121 components: - type: Transform pos: -24.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8122 components: - type: Transform pos: -24.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8123 components: - type: Transform pos: -24.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8124 components: - type: Transform pos: -24.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8125 components: - type: Transform pos: -24.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8126 components: - type: Transform @@ -71332,7 +71630,7 @@ entities: pos: -26.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8127 components: - type: Transform @@ -71340,7 +71638,7 @@ entities: pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8128 components: - type: Transform @@ -71348,7 +71646,7 @@ entities: pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8129 components: - type: Transform @@ -71356,7 +71654,7 @@ entities: pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8130 components: - type: Transform @@ -71364,7 +71662,7 @@ entities: pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8131 components: - type: Transform @@ -71372,7 +71670,7 @@ entities: pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8132 components: - type: Transform @@ -71380,7 +71678,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8133 components: - type: Transform @@ -71388,7 +71686,7 @@ entities: pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8134 components: - type: Transform @@ -71396,7 +71694,7 @@ entities: pos: -0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8135 components: - type: Transform @@ -71404,7 +71702,7 @@ entities: pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8136 components: - type: Transform @@ -71412,7 +71710,7 @@ entities: pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8137 components: - type: Transform @@ -71420,7 +71718,7 @@ entities: pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8138 components: - type: Transform @@ -71428,7 +71726,7 @@ entities: pos: -0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8139 components: - type: Transform @@ -71436,7 +71734,7 @@ entities: pos: -0.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8140 components: - type: Transform @@ -71444,7 +71742,7 @@ entities: pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8141 components: - type: Transform @@ -71452,7 +71750,7 @@ entities: pos: -0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8142 components: - type: Transform @@ -71460,7 +71758,7 @@ entities: pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8143 components: - type: Transform @@ -71468,7 +71766,7 @@ entities: pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8144 components: - type: Transform @@ -71476,7 +71774,7 @@ entities: pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8145 components: - type: Transform @@ -71484,7 +71782,7 @@ entities: pos: -24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8146 components: - type: Transform @@ -71492,14 +71790,14 @@ entities: pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8147 components: - type: Transform pos: -74.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8148 components: - type: Transform @@ -71507,7 +71805,7 @@ entities: pos: -14.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8149 components: - type: Transform @@ -71515,21 +71813,21 @@ entities: pos: -16.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8150 components: - type: Transform pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8151 components: - type: Transform pos: -45.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8152 components: - type: Transform @@ -71537,7 +71835,7 @@ entities: pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8153 components: - type: Transform @@ -71545,7 +71843,7 @@ entities: pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8154 components: - type: Transform @@ -71553,7 +71851,7 @@ entities: pos: -72.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8155 components: - type: Transform @@ -71561,7 +71859,7 @@ entities: pos: -71.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8156 components: - type: Transform @@ -71569,7 +71867,7 @@ entities: pos: -80.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8157 components: - type: Transform @@ -71577,7 +71875,7 @@ entities: pos: -45.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8158 components: - type: Transform @@ -71585,7 +71883,7 @@ entities: pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8159 components: - type: Transform @@ -71593,14 +71891,14 @@ entities: pos: -63.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8160 components: - type: Transform pos: -74.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8161 components: - type: Transform @@ -71608,7 +71906,7 @@ entities: pos: -57.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8162 components: - type: Transform @@ -71616,7 +71914,7 @@ entities: pos: -64.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8163 components: - type: Transform @@ -71624,7 +71922,7 @@ entities: pos: -65.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8164 components: - type: Transform @@ -71632,7 +71930,7 @@ entities: pos: -67.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8165 components: - type: Transform @@ -71648,7 +71946,7 @@ entities: pos: -63.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8167 components: - type: Transform @@ -71656,7 +71954,7 @@ entities: pos: -64.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8168 components: - type: Transform @@ -71664,7 +71962,7 @@ entities: pos: -63.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8169 components: - type: Transform @@ -71672,7 +71970,7 @@ entities: pos: -63.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8171 components: - type: Transform @@ -71680,14 +71978,14 @@ entities: pos: -25.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8172 components: - type: Transform pos: -23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8173 components: - type: Transform @@ -71695,7 +71993,7 @@ entities: pos: -13.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8174 components: - type: Transform @@ -71703,21 +72001,21 @@ entities: pos: -9.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8175 components: - type: Transform pos: -15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8176 components: - type: Transform pos: -54.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8177 components: - type: Transform @@ -71725,7 +72023,7 @@ entities: pos: -46.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8178 components: - type: Transform @@ -71741,7 +72039,7 @@ entities: pos: -23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8180 components: - type: Transform @@ -71757,7 +72055,7 @@ entities: pos: -65.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8182 components: - type: Transform @@ -71765,21 +72063,21 @@ entities: pos: -65.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8183 components: - type: Transform pos: -60.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8184 components: - type: Transform pos: -60.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8187 components: - type: Transform @@ -71787,7 +72085,7 @@ entities: pos: -14.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8188 components: - type: Transform @@ -71795,7 +72093,7 @@ entities: pos: -85.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8189 components: - type: Transform @@ -71803,7 +72101,7 @@ entities: pos: -47.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8190 components: - type: Transform @@ -71811,7 +72109,7 @@ entities: pos: -48.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8191 components: - type: Transform @@ -71819,7 +72117,7 @@ entities: pos: -49.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8192 components: - type: Transform @@ -71827,7 +72125,7 @@ entities: pos: -50.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8193 components: - type: Transform @@ -71835,7 +72133,7 @@ entities: pos: -51.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8194 components: - type: Transform @@ -71843,7 +72141,7 @@ entities: pos: -52.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8195 components: - type: Transform @@ -71851,7 +72149,7 @@ entities: pos: -53.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8196 components: - type: Transform @@ -71859,7 +72157,7 @@ entities: pos: -54.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8197 components: - type: Transform @@ -71867,14 +72165,14 @@ entities: pos: -55.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8198 components: - type: Transform pos: -60.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8199 components: - type: Transform @@ -71882,7 +72180,7 @@ entities: pos: -56.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8200 components: - type: Transform @@ -71890,7 +72188,7 @@ entities: pos: -60.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8201 components: - type: Transform @@ -71898,7 +72196,7 @@ entities: pos: -61.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8202 components: - type: Transform @@ -71906,7 +72204,7 @@ entities: pos: -62.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8203 components: - type: Transform @@ -71914,7 +72212,7 @@ entities: pos: -63.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8204 components: - type: Transform @@ -71922,7 +72220,7 @@ entities: pos: -25.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8205 components: - type: Transform @@ -71930,7 +72228,7 @@ entities: pos: -66.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8206 components: - type: Transform @@ -71938,7 +72236,7 @@ entities: pos: -67.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8207 components: - type: Transform @@ -71946,7 +72244,7 @@ entities: pos: -68.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8208 components: - type: Transform @@ -71954,7 +72252,7 @@ entities: pos: -69.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8209 components: - type: Transform @@ -71962,7 +72260,7 @@ entities: pos: -70.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8210 components: - type: Transform @@ -71970,7 +72268,7 @@ entities: pos: -71.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8211 components: - type: Transform @@ -71978,7 +72276,7 @@ entities: pos: -75.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8212 components: - type: Transform @@ -71986,7 +72284,7 @@ entities: pos: -76.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8213 components: - type: Transform @@ -71994,7 +72292,7 @@ entities: pos: -77.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8214 components: - type: Transform @@ -72002,7 +72300,7 @@ entities: pos: -78.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8215 components: - type: Transform @@ -72010,7 +72308,7 @@ entities: pos: -81.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8216 components: - type: Transform @@ -72018,7 +72316,7 @@ entities: pos: -83.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8217 components: - type: Transform @@ -72026,7 +72324,7 @@ entities: pos: -84.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8218 components: - type: Transform @@ -72034,7 +72332,7 @@ entities: pos: -86.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8219 components: - type: Transform @@ -72042,7 +72340,7 @@ entities: pos: -82.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8220 components: - type: Transform @@ -72061,14 +72359,14 @@ entities: pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8223 components: - type: Transform pos: -59.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8224 components: - type: Transform @@ -72076,7 +72374,7 @@ entities: pos: -74.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8225 components: - type: Transform @@ -72084,21 +72382,21 @@ entities: pos: -65.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8226 components: - type: Transform pos: -64.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8227 components: - type: Transform pos: -64.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8228 components: - type: Transform @@ -72106,7 +72404,7 @@ entities: pos: -65.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8229 components: - type: Transform @@ -72114,7 +72412,7 @@ entities: pos: -46.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8230 components: - type: Transform @@ -72122,7 +72420,7 @@ entities: pos: -47.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8231 components: - type: Transform @@ -72130,7 +72428,7 @@ entities: pos: -48.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8232 components: - type: Transform @@ -72138,7 +72436,7 @@ entities: pos: -49.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8233 components: - type: Transform @@ -72146,7 +72444,7 @@ entities: pos: -50.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8234 components: - type: Transform @@ -72154,7 +72452,7 @@ entities: pos: -51.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8235 components: - type: Transform @@ -72162,7 +72460,7 @@ entities: pos: -52.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8236 components: - type: Transform @@ -72170,7 +72468,7 @@ entities: pos: -53.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8237 components: - type: Transform @@ -72178,7 +72476,7 @@ entities: pos: -54.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8238 components: - type: Transform @@ -72186,7 +72484,7 @@ entities: pos: -55.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8239 components: - type: Transform @@ -72194,7 +72492,7 @@ entities: pos: -56.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8240 components: - type: Transform @@ -72202,7 +72500,7 @@ entities: pos: -72.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8241 components: - type: Transform @@ -72210,7 +72508,7 @@ entities: pos: -73.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8242 components: - type: Transform @@ -72218,7 +72516,7 @@ entities: pos: -74.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8243 components: - type: Transform @@ -72226,7 +72524,7 @@ entities: pos: -74.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8244 components: - type: Transform @@ -72234,7 +72532,7 @@ entities: pos: -74.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8245 components: - type: Transform @@ -72242,7 +72540,7 @@ entities: pos: -74.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8246 components: - type: Transform @@ -72250,7 +72548,7 @@ entities: pos: -76.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8247 components: - type: Transform @@ -72258,14 +72556,14 @@ entities: pos: -78.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8248 components: - type: Transform pos: -74.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8249 components: - type: Transform @@ -72273,14 +72571,14 @@ entities: pos: -81.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8250 components: - type: Transform pos: -74.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8251 components: - type: Transform @@ -72288,35 +72586,35 @@ entities: pos: -82.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8252 components: - type: Transform pos: -74.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8253 components: - type: Transform pos: -73.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8254 components: - type: Transform pos: -73.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8255 components: - type: Transform pos: -73.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8256 components: - type: Transform @@ -72324,14 +72622,14 @@ entities: pos: -83.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8257 components: - type: Transform pos: -73.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8258 components: - type: Transform @@ -72339,21 +72637,21 @@ entities: pos: -84.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8259 components: - type: Transform pos: -73.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8260 components: - type: Transform pos: -60.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8261 components: - type: Transform @@ -72361,7 +72659,7 @@ entities: pos: -66.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8262 components: - type: Transform @@ -72369,7 +72667,7 @@ entities: pos: -74.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8263 components: - type: Transform @@ -72377,7 +72675,7 @@ entities: pos: -68.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8264 components: - type: Transform @@ -72385,28 +72683,28 @@ entities: pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8265 components: - type: Transform pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8266 components: - type: Transform pos: -18.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8267 components: - type: Transform pos: -18.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8268 components: - type: Transform @@ -72414,7 +72712,7 @@ entities: pos: -74.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8269 components: - type: Transform @@ -72422,7 +72720,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8270 components: - type: Transform @@ -72430,7 +72728,7 @@ entities: pos: -44.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8271 components: - type: Transform @@ -72438,7 +72736,7 @@ entities: pos: -59.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8273 components: - type: Transform @@ -72446,7 +72744,7 @@ entities: pos: -75.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8274 components: - type: Transform @@ -72454,14 +72752,14 @@ entities: pos: -85.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8275 components: - type: Transform pos: -41.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8276 components: - type: Transform @@ -72469,7 +72767,7 @@ entities: pos: 15.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8277 components: - type: Transform @@ -72477,21 +72775,21 @@ entities: pos: -45.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8278 components: - type: Transform pos: -54.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8279 components: - type: Transform pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8280 components: - type: Transform @@ -72499,21 +72797,21 @@ entities: pos: -16.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8281 components: - type: Transform pos: -12.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8282 components: - type: Transform pos: -12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8283 components: - type: Transform @@ -72521,35 +72819,35 @@ entities: pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8284 components: - type: Transform pos: -22.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8285 components: - type: Transform pos: -74.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8286 components: - type: Transform pos: -12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8287 components: - type: Transform pos: -12.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8288 components: - type: Transform @@ -72564,7 +72862,7 @@ entities: pos: -16.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8290 components: - type: Transform @@ -72611,7 +72909,7 @@ entities: pos: -74.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8296 components: - type: Transform @@ -72619,14 +72917,14 @@ entities: pos: -75.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8297 components: - type: Transform pos: -46.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8298 components: - type: Transform @@ -72634,63 +72932,63 @@ entities: pos: -57.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8299 components: - type: Transform pos: -59.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8300 components: - type: Transform pos: -59.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8301 components: - type: Transform pos: -46.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8302 components: - type: Transform pos: -46.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8303 components: - type: Transform pos: -46.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8304 components: - type: Transform pos: -46.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8305 components: - type: Transform pos: -46.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8306 components: - type: Transform pos: -59.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8307 components: - type: Transform @@ -72698,7 +72996,7 @@ entities: pos: -52.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8311 components: - type: Transform @@ -72706,14 +73004,14 @@ entities: pos: -45.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8312 components: - type: Transform pos: -75.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8313 components: - type: Transform @@ -72721,7 +73019,7 @@ entities: pos: -65.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8314 components: - type: Transform @@ -72729,21 +73027,21 @@ entities: pos: -53.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8315 components: - type: Transform pos: -60.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8316 components: - type: Transform pos: -60.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8317 components: - type: Transform @@ -72751,7 +73049,7 @@ entities: pos: -45.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8318 components: - type: Transform @@ -72759,7 +73057,7 @@ entities: pos: -44.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8319 components: - type: Transform @@ -72767,7 +73065,7 @@ entities: pos: -43.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8320 components: - type: Transform @@ -72775,7 +73073,7 @@ entities: pos: -42.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8321 components: - type: Transform @@ -72783,7 +73081,7 @@ entities: pos: -40.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8322 components: - type: Transform @@ -72791,7 +73089,7 @@ entities: pos: -39.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8323 components: - type: Transform @@ -72799,7 +73097,7 @@ entities: pos: -38.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8324 components: - type: Transform @@ -72807,7 +73105,7 @@ entities: pos: -36.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8325 components: - type: Transform @@ -72815,7 +73113,7 @@ entities: pos: -35.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8326 components: - type: Transform @@ -72823,7 +73121,7 @@ entities: pos: -34.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8327 components: - type: Transform @@ -72831,7 +73129,7 @@ entities: pos: -33.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8328 components: - type: Transform @@ -72839,7 +73137,7 @@ entities: pos: -32.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8329 components: - type: Transform @@ -72847,7 +73145,7 @@ entities: pos: -31.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8330 components: - type: Transform @@ -72855,7 +73153,7 @@ entities: pos: -30.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8331 components: - type: Transform @@ -72863,7 +73161,7 @@ entities: pos: -29.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8332 components: - type: Transform @@ -72871,7 +73169,7 @@ entities: pos: -28.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8333 components: - type: Transform @@ -72879,7 +73177,7 @@ entities: pos: -27.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8334 components: - type: Transform @@ -72887,7 +73185,7 @@ entities: pos: -26.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8335 components: - type: Transform @@ -72895,7 +73193,7 @@ entities: pos: -25.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8336 components: - type: Transform @@ -72903,7 +73201,7 @@ entities: pos: -59.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8337 components: - type: Transform @@ -72911,7 +73209,7 @@ entities: pos: -49.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8338 components: - type: Transform @@ -72919,7 +73217,7 @@ entities: pos: -50.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8339 components: - type: Transform @@ -72927,7 +73225,7 @@ entities: pos: -97.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8340 components: - type: Transform @@ -72935,14 +73233,14 @@ entities: pos: -16.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8341 components: - type: Transform pos: -75.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8342 components: - type: Transform @@ -72950,7 +73248,7 @@ entities: pos: -54.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8343 components: - type: Transform @@ -72958,14 +73256,14 @@ entities: pos: -55.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8344 components: - type: Transform pos: -55.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8345 components: - type: Transform @@ -72973,14 +73271,14 @@ entities: pos: -48.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8346 components: - type: Transform pos: -60.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8347 components: - type: Transform @@ -72988,7 +73286,7 @@ entities: pos: -66.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8348 components: - type: Transform @@ -73003,14 +73301,14 @@ entities: pos: -60.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8350 components: - type: Transform pos: -61.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8351 components: - type: Transform @@ -73018,7 +73316,7 @@ entities: pos: -48.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8352 components: - type: Transform @@ -73026,7 +73324,7 @@ entities: pos: -67.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8353 components: - type: Transform @@ -73050,14 +73348,14 @@ entities: pos: -52.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8356 components: - type: Transform pos: -10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8357 components: - type: Transform @@ -73065,7 +73363,7 @@ entities: pos: -16.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8358 components: - type: Transform @@ -73073,7 +73371,7 @@ entities: pos: -52.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8359 components: - type: Transform @@ -73081,7 +73379,7 @@ entities: pos: -17.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8360 components: - type: Transform @@ -73089,7 +73387,7 @@ entities: pos: -52.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8362 components: - type: Transform @@ -73097,7 +73395,7 @@ entities: pos: -9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8363 components: - type: Transform @@ -73105,7 +73403,7 @@ entities: pos: -17.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8364 components: - type: Transform @@ -73113,14 +73411,14 @@ entities: pos: -8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8365 components: - type: Transform pos: -19.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8366 components: - type: Transform @@ -73128,7 +73426,7 @@ entities: pos: -16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8367 components: - type: Transform @@ -73136,7 +73434,7 @@ entities: pos: -54.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8368 components: - type: Transform @@ -73144,7 +73442,7 @@ entities: pos: -18.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8369 components: - type: Transform @@ -73152,7 +73450,7 @@ entities: pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8370 components: - type: Transform @@ -73160,7 +73458,7 @@ entities: pos: -52.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8371 components: - type: Transform @@ -73173,7 +73471,7 @@ entities: pos: -53.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8373 components: - type: Transform @@ -73181,7 +73479,7 @@ entities: pos: -43.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8374 components: - type: Transform @@ -73189,14 +73487,14 @@ entities: pos: -57.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8375 components: - type: Transform pos: -58.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8376 components: - type: Transform @@ -73204,7 +73502,7 @@ entities: pos: -58.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8377 components: - type: Transform @@ -73220,7 +73518,7 @@ entities: pos: -18.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8379 components: - type: Transform @@ -73228,7 +73526,7 @@ entities: pos: -70.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8380 components: - type: Transform @@ -73236,14 +73534,14 @@ entities: pos: 13.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8381 components: - type: Transform pos: -12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8382 components: - type: Transform @@ -73251,7 +73549,7 @@ entities: pos: -56.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8383 components: - type: Transform @@ -73266,7 +73564,7 @@ entities: pos: -59.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8385 components: - type: Transform @@ -73274,7 +73572,7 @@ entities: pos: -60.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8386 components: - type: Transform @@ -73282,7 +73580,7 @@ entities: pos: -61.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8387 components: - type: Transform @@ -73290,7 +73588,7 @@ entities: pos: -62.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8388 components: - type: Transform @@ -73298,7 +73596,7 @@ entities: pos: -63.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8389 components: - type: Transform @@ -73306,14 +73604,14 @@ entities: pos: -64.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8390 components: - type: Transform pos: -64.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8391 components: - type: Transform @@ -73321,7 +73619,7 @@ entities: pos: -67.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8392 components: - type: Transform @@ -73329,7 +73627,7 @@ entities: pos: -68.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8393 components: - type: Transform @@ -73337,7 +73635,7 @@ entities: pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8394 components: - type: Transform @@ -73345,7 +73643,7 @@ entities: pos: -69.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8395 components: - type: Transform @@ -73353,7 +73651,7 @@ entities: pos: -74.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8396 components: - type: Transform @@ -73361,7 +73659,7 @@ entities: pos: -60.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8397 components: - type: Transform @@ -73369,7 +73667,7 @@ entities: pos: -58.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8398 components: - type: Transform @@ -73377,7 +73675,7 @@ entities: pos: -61.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8399 components: - type: Transform @@ -73385,14 +73683,14 @@ entities: pos: -62.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8401 components: - type: Transform pos: -63.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8402 components: - type: Transform @@ -73400,7 +73698,7 @@ entities: pos: -57.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8403 components: - type: Transform @@ -73408,7 +73706,7 @@ entities: pos: -52.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8404 components: - type: Transform @@ -73416,7 +73714,7 @@ entities: pos: -91.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8405 components: - type: Transform @@ -73424,7 +73722,7 @@ entities: pos: -90.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8406 components: - type: Transform @@ -73432,7 +73730,7 @@ entities: pos: -89.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8407 components: - type: Transform @@ -73440,7 +73738,7 @@ entities: pos: -88.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8408 components: - type: Transform @@ -73448,7 +73746,7 @@ entities: pos: -87.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8409 components: - type: Transform @@ -73456,7 +73754,7 @@ entities: pos: -86.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8410 components: - type: Transform @@ -73464,7 +73762,7 @@ entities: pos: -66.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8411 components: - type: Transform @@ -73472,7 +73770,7 @@ entities: pos: -67.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8412 components: - type: Transform @@ -73480,7 +73778,7 @@ entities: pos: -68.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8413 components: - type: Transform @@ -73488,7 +73786,7 @@ entities: pos: -69.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8414 components: - type: Transform @@ -73496,7 +73794,7 @@ entities: pos: -71.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8415 components: - type: Transform @@ -73504,7 +73802,7 @@ entities: pos: -72.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8416 components: - type: Transform @@ -73512,7 +73810,7 @@ entities: pos: -73.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8417 components: - type: Transform @@ -73520,7 +73818,7 @@ entities: pos: -75.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8418 components: - type: Transform @@ -73528,7 +73826,7 @@ entities: pos: -76.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8419 components: - type: Transform @@ -73536,7 +73834,7 @@ entities: pos: -77.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8420 components: - type: Transform @@ -73544,7 +73842,7 @@ entities: pos: -78.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8421 components: - type: Transform @@ -73552,7 +73850,7 @@ entities: pos: -79.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8422 components: - type: Transform @@ -73560,7 +73858,7 @@ entities: pos: -80.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8423 components: - type: Transform @@ -73568,7 +73866,7 @@ entities: pos: -81.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8424 components: - type: Transform @@ -73576,7 +73874,7 @@ entities: pos: -82.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8425 components: - type: Transform @@ -73584,7 +73882,7 @@ entities: pos: -45.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8426 components: - type: Transform @@ -73592,28 +73890,28 @@ entities: pos: -84.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8427 components: - type: Transform pos: -85.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8428 components: - type: Transform pos: -85.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8429 components: - type: Transform pos: -38.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8430 components: - type: Transform @@ -73621,7 +73919,7 @@ entities: pos: -17.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8431 components: - type: Transform @@ -73629,7 +73927,7 @@ entities: pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8432 components: - type: Transform @@ -73637,7 +73935,7 @@ entities: pos: -24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8433 components: - type: Transform @@ -73645,7 +73943,7 @@ entities: pos: -25.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8434 components: - type: Transform @@ -73653,7 +73951,7 @@ entities: pos: -25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8435 components: - type: Transform @@ -73661,7 +73959,7 @@ entities: pos: -24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8436 components: - type: Transform @@ -73669,7 +73967,7 @@ entities: pos: -24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8437 components: - type: Transform @@ -73677,7 +73975,7 @@ entities: pos: -15.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8438 components: - type: Transform @@ -73685,7 +73983,7 @@ entities: pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8439 components: - type: Transform @@ -73693,7 +73991,7 @@ entities: pos: -15.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8440 components: - type: Transform @@ -73701,7 +73999,7 @@ entities: pos: -24.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8441 components: - type: Transform @@ -73709,7 +74007,7 @@ entities: pos: -23.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8442 components: - type: Transform @@ -73717,14 +74015,14 @@ entities: pos: -21.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8443 components: - type: Transform pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8444 components: - type: Transform @@ -73732,14 +74030,14 @@ entities: pos: -22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8445 components: - type: Transform pos: -17.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8446 components: - type: Transform @@ -73747,7 +74045,7 @@ entities: pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8447 components: - type: Transform @@ -73755,7 +74053,7 @@ entities: pos: -18.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8448 components: - type: Transform @@ -73763,7 +74061,7 @@ entities: pos: -17.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8449 components: - type: Transform @@ -73771,14 +74069,14 @@ entities: pos: -18.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8450 components: - type: Transform pos: -37.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8451 components: - type: Transform @@ -73786,7 +74084,7 @@ entities: pos: -45.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8452 components: - type: Transform @@ -73794,7 +74092,7 @@ entities: pos: -45.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8453 components: - type: Transform @@ -73802,70 +74100,70 @@ entities: pos: -86.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8454 components: - type: Transform pos: -64.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8455 components: - type: Transform pos: -64.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8456 components: - type: Transform pos: -64.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8457 components: - type: Transform pos: -66.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8458 components: - type: Transform pos: -66.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8459 components: - type: Transform pos: -66.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8460 components: - type: Transform pos: -66.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8461 components: - type: Transform pos: -66.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8462 components: - type: Transform pos: -66.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8463 components: - type: Transform @@ -73873,7 +74171,7 @@ entities: pos: -73.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8464 components: - type: Transform @@ -73881,7 +74179,7 @@ entities: pos: -73.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8465 components: - type: Transform @@ -73889,7 +74187,7 @@ entities: pos: -73.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8466 components: - type: Transform @@ -73897,7 +74195,7 @@ entities: pos: -73.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8467 components: - type: Transform @@ -73905,7 +74203,7 @@ entities: pos: -73.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8468 components: - type: Transform @@ -73913,7 +74211,7 @@ entities: pos: -74.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8469 components: - type: Transform @@ -73921,7 +74219,7 @@ entities: pos: -75.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8470 components: - type: Transform @@ -73929,7 +74227,7 @@ entities: pos: -76.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8471 components: - type: Transform @@ -73937,7 +74235,7 @@ entities: pos: -75.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8472 components: - type: Transform @@ -73945,7 +74243,7 @@ entities: pos: -76.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8473 components: - type: Transform @@ -73953,7 +74251,7 @@ entities: pos: -72.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8474 components: - type: Transform @@ -73961,7 +74259,7 @@ entities: pos: -71.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8475 components: - type: Transform @@ -73969,7 +74267,7 @@ entities: pos: -72.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8476 components: - type: Transform @@ -73977,7 +74275,7 @@ entities: pos: -71.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8477 components: - type: Transform @@ -73985,7 +74283,7 @@ entities: pos: -72.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8478 components: - type: Transform @@ -73993,7 +74291,7 @@ entities: pos: -71.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8479 components: - type: Transform @@ -74001,7 +74299,7 @@ entities: pos: -73.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8480 components: - type: Transform @@ -74009,7 +74307,7 @@ entities: pos: -72.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8481 components: - type: Transform @@ -74017,7 +74315,7 @@ entities: pos: -71.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8482 components: - type: Transform @@ -74025,7 +74323,7 @@ entities: pos: -74.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8483 components: - type: Transform @@ -74033,7 +74331,7 @@ entities: pos: -75.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8484 components: - type: Transform @@ -74041,7 +74339,7 @@ entities: pos: -76.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8485 components: - type: Transform @@ -74049,7 +74347,7 @@ entities: pos: -75.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8486 components: - type: Transform @@ -74057,7 +74355,7 @@ entities: pos: -76.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8487 components: - type: Transform @@ -74065,7 +74363,7 @@ entities: pos: -74.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8488 components: - type: Transform @@ -74073,7 +74371,7 @@ entities: pos: -75.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8489 components: - type: Transform @@ -74081,7 +74379,7 @@ entities: pos: -76.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8490 components: - type: Transform @@ -74089,7 +74387,7 @@ entities: pos: -75.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8491 components: - type: Transform @@ -74097,7 +74395,7 @@ entities: pos: -76.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8492 components: - type: Transform @@ -74105,7 +74403,7 @@ entities: pos: -73.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8493 components: - type: Transform @@ -74113,7 +74411,7 @@ entities: pos: -72.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8494 components: - type: Transform @@ -74121,7 +74419,7 @@ entities: pos: -71.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8495 components: - type: Transform @@ -74129,7 +74427,7 @@ entities: pos: -72.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8496 components: - type: Transform @@ -74137,7 +74435,7 @@ entities: pos: -71.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8497 components: - type: Transform @@ -74145,7 +74443,7 @@ entities: pos: -74.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8498 components: - type: Transform @@ -74153,7 +74451,7 @@ entities: pos: -75.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8499 components: - type: Transform @@ -74161,7 +74459,7 @@ entities: pos: -76.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8500 components: - type: Transform @@ -74169,7 +74467,7 @@ entities: pos: -75.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8501 components: - type: Transform @@ -74177,7 +74475,7 @@ entities: pos: -76.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8502 components: - type: Transform @@ -74185,7 +74483,7 @@ entities: pos: -73.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8503 components: - type: Transform @@ -74193,7 +74491,7 @@ entities: pos: -72.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8504 components: - type: Transform @@ -74201,7 +74499,7 @@ entities: pos: -71.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8505 components: - type: Transform @@ -74209,7 +74507,7 @@ entities: pos: -72.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8506 components: - type: Transform @@ -74217,7 +74515,7 @@ entities: pos: -71.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8507 components: - type: Transform @@ -74225,49 +74523,49 @@ entities: pos: -73.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8508 components: - type: Transform pos: -80.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8509 components: - type: Transform pos: -80.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8510 components: - type: Transform pos: -80.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8511 components: - type: Transform pos: -80.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8512 components: - type: Transform pos: -79.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8513 components: - type: Transform pos: -79.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8514 components: - type: Transform @@ -74275,28 +74573,28 @@ entities: pos: -38.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8515 components: - type: Transform pos: -37.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8516 components: - type: Transform pos: -37.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8517 components: - type: Transform pos: -37.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8518 components: - type: Transform @@ -74304,7 +74602,7 @@ entities: pos: -31.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8519 components: - type: Transform @@ -74312,7 +74610,7 @@ entities: pos: -31.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8520 components: - type: Transform @@ -74320,21 +74618,21 @@ entities: pos: -31.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8521 components: - type: Transform pos: -36.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8522 components: - type: Transform pos: -36.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8523 components: - type: Transform @@ -74342,42 +74640,42 @@ entities: pos: -38.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8524 components: - type: Transform pos: -36.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8525 components: - type: Transform pos: -36.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8526 components: - type: Transform pos: -36.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8527 components: - type: Transform pos: -36.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8528 components: - type: Transform pos: -36.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8529 components: - type: Transform @@ -74385,56 +74683,56 @@ entities: pos: -41.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8535 components: - type: Transform pos: -36.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8536 components: - type: Transform pos: -36.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8537 components: - type: Transform pos: -36.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8538 components: - type: Transform pos: -36.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8539 components: - type: Transform pos: -36.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8540 components: - type: Transform pos: -36.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8541 components: - type: Transform pos: -36.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8542 components: - type: Transform @@ -74442,7 +74740,7 @@ entities: pos: -37.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8543 components: - type: Transform @@ -74450,7 +74748,7 @@ entities: pos: -39.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8544 components: - type: Transform @@ -74458,7 +74756,7 @@ entities: pos: -40.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8545 components: - type: Transform @@ -74466,7 +74764,7 @@ entities: pos: -41.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8546 components: - type: Transform @@ -74474,7 +74772,7 @@ entities: pos: -42.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8547 components: - type: Transform @@ -74482,7 +74780,7 @@ entities: pos: -52.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8548 components: - type: Transform @@ -74498,7 +74796,7 @@ entities: pos: -11.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8550 components: - type: Transform @@ -74506,7 +74804,7 @@ entities: pos: -17.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8551 components: - type: Transform @@ -74553,7 +74851,7 @@ entities: pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8559 components: - type: Transform @@ -74622,7 +74920,7 @@ entities: pos: -21.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8568 components: - type: Transform @@ -74646,7 +74944,7 @@ entities: pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8571 components: - type: Transform @@ -74654,7 +74952,7 @@ entities: pos: -19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8572 components: - type: Transform @@ -74662,7 +74960,7 @@ entities: pos: -20.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8573 components: - type: Transform @@ -74670,7 +74968,7 @@ entities: pos: -15.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8574 components: - type: Transform @@ -74678,7 +74976,7 @@ entities: pos: -15.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8575 components: - type: Transform @@ -74686,7 +74984,7 @@ entities: pos: -27.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8576 components: - type: Transform @@ -74694,7 +74992,7 @@ entities: pos: -26.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8577 components: - type: Transform @@ -74702,7 +75000,7 @@ entities: pos: -25.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8578 components: - type: Transform @@ -74726,7 +75024,7 @@ entities: pos: -42.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8581 components: - type: Transform @@ -74734,7 +75032,7 @@ entities: pos: -41.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8582 components: - type: Transform @@ -74742,7 +75040,7 @@ entities: pos: -41.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8583 components: - type: Transform @@ -74750,7 +75048,7 @@ entities: pos: -42.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8584 components: - type: Transform @@ -74758,7 +75056,7 @@ entities: pos: -43.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8585 components: - type: Transform @@ -74766,7 +75064,7 @@ entities: pos: -44.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8586 components: - type: Transform @@ -74774,7 +75072,7 @@ entities: pos: -45.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8587 components: - type: Transform @@ -74782,7 +75080,7 @@ entities: pos: -64.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8588 components: - type: Transform @@ -74790,7 +75088,7 @@ entities: pos: -67.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8589 components: - type: Transform @@ -74798,7 +75096,7 @@ entities: pos: -66.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8590 components: - type: Transform @@ -74806,7 +75104,7 @@ entities: pos: -60.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8591 components: - type: Transform @@ -74814,7 +75112,7 @@ entities: pos: -47.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8592 components: - type: Transform @@ -74822,7 +75120,7 @@ entities: pos: -54.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8593 components: - type: Transform @@ -74830,14 +75128,14 @@ entities: pos: -52.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8594 components: - type: Transform pos: -61.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8595 components: - type: Transform @@ -74853,7 +75151,7 @@ entities: pos: -33.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8597 components: - type: Transform @@ -74861,7 +75159,7 @@ entities: pos: -32.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8598 components: - type: Transform @@ -74869,7 +75167,7 @@ entities: pos: -31.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8599 components: - type: Transform @@ -74877,14 +75175,14 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8600 components: - type: Transform pos: -59.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8601 components: - type: Transform @@ -74892,21 +75190,21 @@ entities: pos: -54.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8602 components: - type: Transform pos: -59.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8603 components: - type: Transform pos: -59.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8604 components: - type: Transform @@ -74914,7 +75212,7 @@ entities: pos: -58.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8605 components: - type: Transform @@ -74922,7 +75220,7 @@ entities: pos: -57.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8606 components: - type: Transform @@ -74978,7 +75276,7 @@ entities: pos: -23.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8613 components: - type: Transform @@ -74986,7 +75284,7 @@ entities: pos: -22.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8614 components: - type: Transform @@ -74994,7 +75292,7 @@ entities: pos: -21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8615 components: - type: Transform @@ -75002,7 +75300,7 @@ entities: pos: -20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8616 components: - type: Transform @@ -75010,7 +75308,7 @@ entities: pos: -17.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8617 components: - type: Transform @@ -75018,7 +75316,7 @@ entities: pos: -16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8618 components: - type: Transform @@ -75026,7 +75324,7 @@ entities: pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8619 components: - type: Transform @@ -75034,7 +75332,7 @@ entities: pos: -22.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8620 components: - type: Transform @@ -75042,7 +75340,7 @@ entities: pos: -22.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8621 components: - type: Transform @@ -75050,7 +75348,7 @@ entities: pos: -22.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8622 components: - type: Transform @@ -75058,7 +75356,7 @@ entities: pos: -21.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8623 components: - type: Transform @@ -75066,7 +75364,7 @@ entities: pos: -21.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8624 components: - type: Transform @@ -75074,7 +75372,7 @@ entities: pos: -14.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8625 components: - type: Transform @@ -75082,7 +75380,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8626 components: - type: Transform @@ -75090,7 +75388,7 @@ entities: pos: -17.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8627 components: - type: Transform @@ -75098,7 +75396,7 @@ entities: pos: -17.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8628 components: - type: Transform @@ -75106,7 +75404,7 @@ entities: pos: -17.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8629 components: - type: Transform @@ -75114,7 +75412,7 @@ entities: pos: -17.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8630 components: - type: Transform @@ -75122,7 +75420,7 @@ entities: pos: -17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8631 components: - type: Transform @@ -75130,7 +75428,7 @@ entities: pos: -36.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8632 components: - type: Transform @@ -75138,7 +75436,7 @@ entities: pos: -35.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8633 components: - type: Transform @@ -75146,7 +75444,7 @@ entities: pos: -34.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8634 components: - type: Transform @@ -75154,7 +75452,7 @@ entities: pos: -33.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8635 components: - type: Transform @@ -75162,7 +75460,7 @@ entities: pos: -33.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8636 components: - type: Transform @@ -75170,7 +75468,7 @@ entities: pos: -33.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8637 components: - type: Transform @@ -75178,7 +75476,7 @@ entities: pos: -35.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8638 components: - type: Transform @@ -75186,7 +75484,7 @@ entities: pos: -34.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8639 components: - type: Transform @@ -75194,7 +75492,7 @@ entities: pos: -34.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8640 components: - type: Transform @@ -75202,7 +75500,7 @@ entities: pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8641 components: - type: Transform @@ -75210,7 +75508,7 @@ entities: pos: -2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8642 components: - type: Transform @@ -75218,7 +75516,7 @@ entities: pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8643 components: - type: Transform @@ -75226,7 +75524,7 @@ entities: pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8644 components: - type: Transform @@ -75234,7 +75532,7 @@ entities: pos: -0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8645 components: - type: Transform @@ -75242,7 +75540,7 @@ entities: pos: -1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8646 components: - type: Transform @@ -75250,7 +75548,7 @@ entities: pos: -2.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8647 components: - type: Transform @@ -75258,7 +75556,7 @@ entities: pos: -10.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8652 components: - type: Transform @@ -75266,7 +75564,7 @@ entities: pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8653 components: - type: Transform @@ -75274,7 +75572,7 @@ entities: pos: -4.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8654 components: - type: Transform @@ -75282,7 +75580,7 @@ entities: pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8655 components: - type: Transform @@ -75290,7 +75588,7 @@ entities: pos: -3.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8656 components: - type: Transform @@ -75322,7 +75620,7 @@ entities: pos: -24.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8660 components: - type: Transform @@ -75330,7 +75628,7 @@ entities: pos: -24.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8661 components: - type: Transform @@ -75338,7 +75636,7 @@ entities: pos: -24.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8662 components: - type: Transform @@ -75346,7 +75644,7 @@ entities: pos: -24.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8663 components: - type: Transform @@ -75354,21 +75652,21 @@ entities: pos: -25.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8664 components: - type: Transform pos: -63.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8665 components: - type: Transform pos: -63.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8666 components: - type: Transform @@ -75376,7 +75674,7 @@ entities: pos: -62.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8667 components: - type: Transform @@ -75384,7 +75682,7 @@ entities: pos: -61.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8668 components: - type: Transform @@ -75392,7 +75690,7 @@ entities: pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8669 components: - type: Transform @@ -75400,7 +75698,7 @@ entities: pos: -12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8670 components: - type: Transform @@ -75408,7 +75706,7 @@ entities: pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8671 components: - type: Transform @@ -75416,7 +75714,7 @@ entities: pos: -11.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8672 components: - type: Transform @@ -75424,7 +75722,7 @@ entities: pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8673 components: - type: Transform @@ -75432,7 +75730,7 @@ entities: pos: -18.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8674 components: - type: Transform @@ -75440,7 +75738,7 @@ entities: pos: -19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8675 components: - type: Transform @@ -75448,7 +75746,7 @@ entities: pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8676 components: - type: Transform @@ -75456,7 +75754,7 @@ entities: pos: -18.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8677 components: - type: Transform @@ -75464,7 +75762,7 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8678 components: - type: Transform @@ -75472,7 +75770,7 @@ entities: pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8679 components: - type: Transform @@ -75480,7 +75778,7 @@ entities: pos: -13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8680 components: - type: Transform @@ -75488,7 +75786,7 @@ entities: pos: -58.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8681 components: - type: Transform @@ -75496,7 +75794,7 @@ entities: pos: -58.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8682 components: - type: Transform @@ -75504,7 +75802,7 @@ entities: pos: -63.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8683 components: - type: Transform @@ -75512,7 +75810,7 @@ entities: pos: -57.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8684 components: - type: Transform @@ -75520,7 +75818,7 @@ entities: pos: -65.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8685 components: - type: Transform @@ -75528,7 +75826,7 @@ entities: pos: -79.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8686 components: - type: Transform @@ -75536,14 +75834,14 @@ entities: pos: -19.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8687 components: - type: Transform pos: -56.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8688 components: - type: Transform @@ -75551,7 +75849,7 @@ entities: pos: -49.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8689 components: - type: Transform @@ -75559,14 +75857,14 @@ entities: pos: -53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8690 components: - type: Transform pos: -83.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8691 components: - type: Transform @@ -75574,14 +75872,14 @@ entities: pos: -64.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8692 components: - type: Transform pos: -54.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8693 components: - type: Transform @@ -75589,7 +75887,7 @@ entities: pos: -48.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8694 components: - type: Transform @@ -75597,7 +75895,7 @@ entities: pos: -64.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8695 components: - type: Transform @@ -75605,7 +75903,7 @@ entities: pos: -49.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8696 components: - type: Transform @@ -75613,7 +75911,7 @@ entities: pos: -31.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8697 components: - type: Transform @@ -75621,7 +75919,7 @@ entities: pos: -35.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8698 components: - type: Transform @@ -75629,7 +75927,7 @@ entities: pos: -51.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8699 components: - type: Transform @@ -75637,7 +75935,7 @@ entities: pos: -62.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8700 components: - type: Transform @@ -75645,21 +75943,21 @@ entities: pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8701 components: - type: Transform pos: -65.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8702 components: - type: Transform pos: -68.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8703 components: - type: Transform @@ -75667,7 +75965,7 @@ entities: pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8704 components: - type: Transform @@ -75675,7 +75973,7 @@ entities: pos: -64.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8705 components: - type: Transform @@ -75683,7 +75981,7 @@ entities: pos: -67.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8706 components: - type: Transform @@ -75691,14 +75989,14 @@ entities: pos: -64.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8707 components: - type: Transform pos: -63.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8708 components: - type: Transform @@ -75706,7 +76004,7 @@ entities: pos: -64.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8709 components: - type: Transform @@ -75714,7 +76012,7 @@ entities: pos: -53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8710 components: - type: Transform @@ -75722,7 +76020,7 @@ entities: pos: -54.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8711 components: - type: Transform @@ -75730,7 +76028,7 @@ entities: pos: -34.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8712 components: - type: Transform @@ -75738,7 +76036,7 @@ entities: pos: -33.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8713 components: - type: Transform @@ -75746,7 +76044,7 @@ entities: pos: -32.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8714 components: - type: Transform @@ -75754,7 +76052,7 @@ entities: pos: -52.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8715 components: - type: Transform @@ -75762,14 +76060,14 @@ entities: pos: -51.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8716 components: - type: Transform pos: -70.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8717 components: - type: Transform @@ -75777,7 +76075,7 @@ entities: pos: -55.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8718 components: - type: Transform @@ -75871,7 +76169,7 @@ entities: pos: -38.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8734 components: - type: Transform @@ -75926,7 +76224,7 @@ entities: pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8741 components: - type: Transform @@ -75987,7 +76285,7 @@ entities: pos: -27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8749 components: - type: Transform @@ -75995,7 +76293,7 @@ entities: pos: -28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8750 components: - type: Transform @@ -76003,7 +76301,7 @@ entities: pos: -29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8751 components: - type: Transform @@ -76011,28 +76309,28 @@ entities: pos: -30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8752 components: - type: Transform pos: -31.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8753 components: - type: Transform pos: -31.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8754 components: - type: Transform pos: -31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8755 components: - type: Transform @@ -76040,7 +76338,7 @@ entities: pos: -33.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8756 components: - type: Transform @@ -76048,14 +76346,14 @@ entities: pos: -32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8757 components: - type: Transform pos: -34.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8761 components: - type: Transform @@ -76063,7 +76361,7 @@ entities: pos: -35.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8762 components: - type: Transform @@ -76071,7 +76369,7 @@ entities: pos: -36.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8763 components: - type: Transform @@ -76079,7 +76377,7 @@ entities: pos: -39.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8764 components: - type: Transform @@ -76087,70 +76385,70 @@ entities: pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8765 components: - type: Transform pos: -41.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8766 components: - type: Transform pos: -41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8767 components: - type: Transform pos: -41.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8768 components: - type: Transform pos: -41.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8769 components: - type: Transform pos: -41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8770 components: - type: Transform pos: -41.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8771 components: - type: Transform pos: -41.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8772 components: - type: Transform pos: -41.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8773 components: - type: Transform pos: -41.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8774 components: - type: Transform @@ -76165,7 +76463,7 @@ entities: pos: -38.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8776 components: - type: Transform @@ -76173,7 +76471,7 @@ entities: pos: -38.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8777 components: - type: Transform @@ -76181,7 +76479,7 @@ entities: pos: -38.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8778 components: - type: Transform @@ -76205,7 +76503,7 @@ entities: pos: -32.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8781 components: - type: Transform @@ -76222,21 +76520,21 @@ entities: pos: -10.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8784 components: - type: Transform pos: -11.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8785 components: - type: Transform pos: -11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8786 components: - type: Transform @@ -76244,7 +76542,7 @@ entities: pos: -11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8787 components: - type: Transform @@ -76252,7 +76550,7 @@ entities: pos: -10.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8788 components: - type: Transform @@ -76260,7 +76558,7 @@ entities: pos: -12.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8789 components: - type: Transform @@ -76268,7 +76566,7 @@ entities: pos: -9.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8790 components: - type: Transform @@ -76276,7 +76574,7 @@ entities: pos: -8.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8791 components: - type: Transform @@ -76284,7 +76582,7 @@ entities: pos: -7.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8792 components: - type: Transform @@ -76292,7 +76590,7 @@ entities: pos: -6.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8793 components: - type: Transform @@ -76300,7 +76598,7 @@ entities: pos: -9.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8794 components: - type: Transform @@ -76308,7 +76606,7 @@ entities: pos: -8.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8795 components: - type: Transform @@ -76316,7 +76614,7 @@ entities: pos: -7.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8796 components: - type: Transform @@ -76324,7 +76622,7 @@ entities: pos: -6.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8797 components: - type: Transform @@ -76332,7 +76630,7 @@ entities: pos: -5.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8798 components: - type: Transform @@ -76340,21 +76638,21 @@ entities: pos: -4.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8799 components: - type: Transform pos: -56.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8800 components: - type: Transform pos: -54.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9886 components: - type: Transform @@ -76362,7 +76660,7 @@ entities: pos: -10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9887 components: - type: Transform @@ -76370,7 +76668,7 @@ entities: pos: -9.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9888 components: - type: Transform @@ -76378,7 +76676,7 @@ entities: pos: -7.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 10435 components: - type: Transform @@ -76391,7 +76689,7 @@ entities: pos: -37.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 11366 components: - type: Transform @@ -76399,7 +76697,7 @@ entities: pos: -37.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 11379 components: - type: Transform @@ -76407,7 +76705,7 @@ entities: pos: -38.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 11381 components: - type: Transform @@ -76415,21 +76713,28 @@ entities: pos: -37.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' + - uid: 12480 + components: + - type: Transform + pos: -45.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 13149 components: - type: Transform pos: -37.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 13152 components: - type: Transform pos: -36.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 14342 components: - type: Transform @@ -76442,7 +76747,7 @@ entities: pos: -34.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 14543 components: - type: Transform @@ -76450,7 +76755,7 @@ entities: pos: -34.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 14544 components: - type: Transform @@ -76458,7 +76763,7 @@ entities: pos: -34.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 15798 components: - type: Transform @@ -76920,7 +77225,7 @@ entities: pos: -36.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 17100 components: - type: Transform @@ -76928,7 +77233,7 @@ entities: pos: -44.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 17101 components: - type: Transform @@ -76936,7 +77241,7 @@ entities: pos: -44.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 17102 components: - type: Transform @@ -76944,7 +77249,7 @@ entities: pos: -44.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 17103 components: - type: Transform @@ -76952,7 +77257,7 @@ entities: pos: -44.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 17104 components: - type: Transform @@ -76960,7 +77265,7 @@ entities: pos: -43.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 17105 components: - type: Transform @@ -76968,7 +77273,7 @@ entities: pos: -43.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 17106 components: - type: Transform @@ -76976,7 +77281,7 @@ entities: pos: -43.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 17107 components: - type: Transform @@ -76984,7 +77289,7 @@ entities: pos: -43.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 17108 components: - type: Transform @@ -76992,7 +77297,7 @@ entities: pos: -43.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 19100 components: - type: Transform @@ -77803,14 +78108,20 @@ entities: pos: -36.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' + - uid: 7335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-35.5 + parent: 2 - uid: 8801 components: - type: Transform pos: -36.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8802 components: - type: Transform @@ -77818,7 +78129,7 @@ entities: pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8803 components: - type: Transform @@ -77826,7 +78137,7 @@ entities: pos: -65.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8804 components: - type: Transform @@ -77834,7 +78145,7 @@ entities: pos: -64.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8805 components: - type: Transform @@ -77842,7 +78153,7 @@ entities: pos: -61.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8806 components: - type: Transform @@ -77850,28 +78161,28 @@ entities: pos: -59.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8807 components: - type: Transform pos: -70.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8808 components: - type: Transform pos: -83.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8809 components: - type: Transform pos: -63.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8810 components: - type: Transform @@ -77879,7 +78190,7 @@ entities: pos: -60.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8811 components: - type: Transform @@ -77887,14 +78198,14 @@ entities: pos: -61.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8812 components: - type: Transform pos: -53.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8813 components: - type: Transform @@ -77902,7 +78213,7 @@ entities: pos: -63.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8814 components: - type: Transform @@ -77910,7 +78221,7 @@ entities: pos: -61.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8815 components: - type: Transform @@ -77918,7 +78229,7 @@ entities: pos: -17.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8816 components: - type: Transform @@ -77926,7 +78237,7 @@ entities: pos: -58.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8817 components: - type: Transform @@ -77934,7 +78245,7 @@ entities: pos: -64.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8818 components: - type: Transform @@ -77942,7 +78253,7 @@ entities: pos: -46.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8819 components: - type: Transform @@ -77950,21 +78261,21 @@ entities: pos: -34.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8820 components: - type: Transform pos: -68.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8821 components: - type: Transform pos: -81.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8822 components: - type: Transform @@ -77972,7 +78283,7 @@ entities: pos: -48.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8823 components: - type: Transform @@ -77980,30 +78291,21 @@ entities: pos: -15.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8824 components: - type: Transform pos: -60.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8825 components: - type: Transform pos: -65.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' - - uid: 8827 - components: - - type: Transform - anchored: False - pos: -54.5,-34.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic + color: '#0000FFFF' - uid: 8828 components: - type: Transform @@ -78011,7 +78313,7 @@ entities: pos: -48.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8829 components: - type: Transform @@ -78027,13 +78329,7 @@ entities: pos: -60.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 8834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 8835 components: - type: Transform @@ -78041,7 +78337,7 @@ entities: pos: -63.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8836 components: - type: Transform @@ -78049,7 +78345,7 @@ entities: pos: -61.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8837 components: - type: Transform @@ -78057,7 +78353,7 @@ entities: pos: -24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8838 components: - type: Transform @@ -78065,7 +78361,7 @@ entities: pos: -46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8839 components: - type: Transform @@ -78073,7 +78369,7 @@ entities: pos: -45.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8840 components: - type: Transform @@ -78081,7 +78377,7 @@ entities: pos: -46.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8841 components: - type: Transform @@ -78089,7 +78385,7 @@ entities: pos: -45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8842 components: - type: Transform @@ -78097,7 +78393,7 @@ entities: pos: -46.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8843 components: - type: Transform @@ -78105,7 +78401,7 @@ entities: pos: -26.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8844 components: - type: Transform @@ -78113,7 +78409,7 @@ entities: pos: -24.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8845 components: - type: Transform @@ -78121,7 +78417,7 @@ entities: pos: -8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8846 components: - type: Transform @@ -78129,7 +78425,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8847 components: - type: Transform @@ -78137,7 +78433,7 @@ entities: pos: -19.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8848 components: - type: Transform @@ -78145,14 +78441,14 @@ entities: pos: -32.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8849 components: - type: Transform pos: -37.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8850 components: - type: Transform @@ -78160,14 +78456,14 @@ entities: pos: -46.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8851 components: - type: Transform pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8852 components: - type: Transform @@ -78175,7 +78471,7 @@ entities: pos: -48.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8853 components: - type: Transform @@ -78183,7 +78479,7 @@ entities: pos: -54.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8854 components: - type: Transform @@ -78191,7 +78487,7 @@ entities: pos: -94.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8855 components: - type: Transform @@ -78199,7 +78495,7 @@ entities: pos: -16.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8856 components: - type: Transform @@ -78207,7 +78503,7 @@ entities: pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8857 components: - type: Transform @@ -78215,7 +78511,7 @@ entities: pos: 0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8858 components: - type: Transform @@ -78223,7 +78519,7 @@ entities: pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8859 components: - type: Transform @@ -78247,7 +78543,7 @@ entities: pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8862 components: - type: Transform @@ -78255,7 +78551,7 @@ entities: pos: -45.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8863 components: - type: Transform @@ -78263,7 +78559,7 @@ entities: pos: 12.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8864 components: - type: Transform @@ -78271,7 +78567,7 @@ entities: pos: -19.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8865 components: - type: Transform @@ -78279,7 +78575,7 @@ entities: pos: -45.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8866 components: - type: Transform @@ -78287,14 +78583,14 @@ entities: pos: -9.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8867 components: - type: Transform pos: -17.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8869 components: - type: Transform @@ -78302,7 +78598,7 @@ entities: pos: -0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8870 components: - type: Transform @@ -78310,7 +78606,7 @@ entities: pos: -25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8871 components: - type: Transform @@ -78318,7 +78614,7 @@ entities: pos: -34.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8872 components: - type: Transform @@ -78326,7 +78622,7 @@ entities: pos: -34.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8873 components: - type: Transform @@ -78334,7 +78630,7 @@ entities: pos: -34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8874 components: - type: Transform @@ -78342,7 +78638,7 @@ entities: pos: -34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8875 components: - type: Transform @@ -78350,7 +78646,7 @@ entities: pos: -34.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8876 components: - type: Transform @@ -78358,7 +78654,7 @@ entities: pos: -25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8877 components: - type: Transform @@ -78366,7 +78662,7 @@ entities: pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8878 components: - type: Transform @@ -78374,7 +78670,7 @@ entities: pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8879 components: - type: Transform @@ -78382,7 +78678,7 @@ entities: pos: -26.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8880 components: - type: Transform @@ -78390,21 +78686,21 @@ entities: pos: -64.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8881 components: - type: Transform pos: -55.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8882 components: - type: Transform pos: -88.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8883 components: - type: Transform @@ -78412,7 +78708,7 @@ entities: pos: -45.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8884 components: - type: Transform @@ -78420,7 +78716,7 @@ entities: pos: -45.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8885 components: - type: Transform @@ -78428,7 +78724,7 @@ entities: pos: -23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8886 components: - type: Transform @@ -78436,7 +78732,7 @@ entities: pos: -17.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8887 components: - type: Transform @@ -78444,7 +78740,7 @@ entities: pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8888 components: - type: Transform @@ -78452,7 +78748,7 @@ entities: pos: -45.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8889 components: - type: Transform @@ -78468,7 +78764,7 @@ entities: pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8891 components: - type: Transform @@ -78476,7 +78772,7 @@ entities: pos: -43.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8892 components: - type: Transform @@ -78484,21 +78780,21 @@ entities: pos: -36.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8894 components: - type: Transform pos: -43.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8895 components: - type: Transform pos: -49.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8896 components: - type: Transform @@ -78506,7 +78802,7 @@ entities: pos: -46.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8897 components: - type: Transform @@ -78514,7 +78810,7 @@ entities: pos: -46.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8898 components: - type: Transform @@ -78522,7 +78818,7 @@ entities: pos: -17.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8899 components: - type: Transform @@ -78530,7 +78826,7 @@ entities: pos: -16.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8900 components: - type: Transform @@ -78538,7 +78834,7 @@ entities: pos: -46.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8901 components: - type: Transform @@ -78546,7 +78842,7 @@ entities: pos: -46.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8902 components: - type: Transform @@ -78554,7 +78850,7 @@ entities: pos: -45.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8903 components: - type: Transform @@ -78562,7 +78858,7 @@ entities: pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8904 components: - type: Transform @@ -78570,7 +78866,7 @@ entities: pos: -73.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8905 components: - type: Transform @@ -78578,7 +78874,7 @@ entities: pos: -26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8906 components: - type: Transform @@ -78586,7 +78882,7 @@ entities: pos: -26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8907 components: - type: Transform @@ -78594,7 +78890,7 @@ entities: pos: -25.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8908 components: - type: Transform @@ -78608,28 +78904,28 @@ entities: pos: -26.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8910 components: - type: Transform pos: -64.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8911 components: - type: Transform pos: -79.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8912 components: - type: Transform pos: -80.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8913 components: - type: Transform @@ -78637,7 +78933,7 @@ entities: pos: -74.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8914 components: - type: Transform @@ -78645,28 +78941,28 @@ entities: pos: -77.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8915 components: - type: Transform pos: -79.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8916 components: - type: Transform pos: -12.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8917 components: - type: Transform pos: -19.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8918 components: - type: Transform @@ -78674,7 +78970,7 @@ entities: pos: -73.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8919 components: - type: Transform @@ -78682,7 +78978,7 @@ entities: pos: -74.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8920 components: - type: Transform @@ -78690,21 +78986,21 @@ entities: pos: -74.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8921 components: - type: Transform pos: -41.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8922 components: - type: Transform pos: -37.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8923 components: - type: Transform @@ -78712,21 +79008,21 @@ entities: pos: -25.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8924 components: - type: Transform pos: -75.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8925 components: - type: Transform pos: -74.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8926 components: - type: Transform @@ -78741,13 +79037,7 @@ entities: pos: -24.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' - - uid: 8928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-35.5 - parent: 2 + color: '#FF0000FF' - uid: 8929 components: - type: Transform @@ -78755,7 +79045,7 @@ entities: pos: -59.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8930 components: - type: Transform @@ -78763,7 +79053,7 @@ entities: pos: -55.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8931 components: - type: Transform @@ -78771,7 +79061,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8932 components: - type: Transform @@ -78779,7 +79069,7 @@ entities: pos: -17.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8933 components: - type: Transform @@ -78787,7 +79077,7 @@ entities: pos: -16.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8934 components: - type: Transform @@ -78802,21 +79092,21 @@ entities: pos: -19.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8936 components: - type: Transform pos: -56.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8937 components: - type: Transform pos: -59.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8938 components: - type: Transform @@ -78824,21 +79114,21 @@ entities: pos: -50.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8939 components: - type: Transform pos: -56.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8940 components: - type: Transform pos: -27.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8941 components: - type: Transform @@ -78846,14 +79136,14 @@ entities: pos: -37.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8942 components: - type: Transform pos: -38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8943 components: - type: Transform @@ -78861,7 +79151,7 @@ entities: pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8944 components: - type: Transform @@ -78869,21 +79159,21 @@ entities: pos: -73.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8945 components: - type: Transform pos: -74.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8946 components: - type: Transform pos: -73.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8947 components: - type: Transform @@ -78891,7 +79181,7 @@ entities: pos: -37.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8949 components: - type: Transform @@ -78906,7 +79196,7 @@ entities: pos: -45.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8951 components: - type: Transform @@ -78914,7 +79204,7 @@ entities: pos: -59.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8952 components: - type: Transform @@ -78930,7 +79220,7 @@ entities: pos: -24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8954 components: - type: Transform @@ -78938,21 +79228,21 @@ entities: pos: -19.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8955 components: - type: Transform pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8956 components: - type: Transform pos: -21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8957 components: - type: Transform @@ -78960,7 +79250,7 @@ entities: pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8958 components: - type: Transform @@ -78976,7 +79266,7 @@ entities: pos: -24.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8960 components: - type: Transform @@ -78984,7 +79274,7 @@ entities: pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8961 components: - type: Transform @@ -78992,7 +79282,7 @@ entities: pos: -11.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8962 components: - type: Transform @@ -79000,14 +79290,14 @@ entities: pos: -63.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8963 components: - type: Transform pos: -50.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8964 components: - type: Transform @@ -79015,7 +79305,7 @@ entities: pos: -65.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8965 components: - type: Transform @@ -79031,7 +79321,7 @@ entities: pos: -64.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8967 components: - type: Transform @@ -79067,7 +79357,7 @@ entities: pos: -31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8972 components: - type: Transform @@ -79075,7 +79365,7 @@ entities: pos: -31.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8973 components: - type: Transform @@ -79083,7 +79373,7 @@ entities: pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8974 components: - type: Transform @@ -79091,7 +79381,7 @@ entities: pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8975 components: - type: Transform @@ -79099,7 +79389,7 @@ entities: pos: -41.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8976 components: - type: Transform @@ -79107,7 +79397,7 @@ entities: pos: -31.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8977 components: - type: Transform @@ -79115,21 +79405,21 @@ entities: pos: -45.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 8978 components: - type: Transform pos: -10.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 8979 components: - type: Transform pos: -11.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9284 components: - type: Transform @@ -79137,7 +79427,7 @@ entities: pos: -10.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9813 components: - type: Transform @@ -79145,7 +79435,7 @@ entities: pos: -44.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9819 components: - type: Transform @@ -79153,7 +79443,13 @@ entities: pos: -43.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' + - uid: 10467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-35.5 + parent: 2 - uid: 10986 components: - type: Transform @@ -79161,7 +79457,7 @@ entities: pos: -37.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 11407 components: - type: Transform @@ -79169,7 +79465,7 @@ entities: pos: -37.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 15814 components: - type: Transform @@ -79490,7 +79786,7 @@ entities: - type: GasPressurePump targetPressure: 2500 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9007 components: - type: MetaData @@ -79503,7 +79799,7 @@ entities: - type: GasPressurePump targetPressure: 4500 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9008 components: - type: Transform @@ -79511,7 +79807,7 @@ entities: pos: -52.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9009 components: - type: Transform @@ -79541,7 +79837,7 @@ entities: pos: -61.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9014 components: - type: Transform @@ -79549,7 +79845,7 @@ entities: pos: -60.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9015 components: - type: Transform @@ -79557,7 +79853,7 @@ entities: pos: -57.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9016 components: - type: Transform @@ -79601,15 +79897,11 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-33.5 parent: 2 - - uid: 10985 + - uid: 10507 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -57.5,-36.5 + pos: -53.5,-34.5 parent: 2 - - type: Physics - bodyType: Dynamic - uid: 11639 components: - type: Transform @@ -79650,7 +79942,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 4969 components: - type: Transform @@ -79661,7 +79953,7 @@ entities: deviceLists: - 17112 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9025 components: - type: Transform @@ -79672,7 +79964,7 @@ entities: deviceLists: - 42 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9026 components: - type: Transform @@ -79680,7 +79972,7 @@ entities: pos: -62.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9027 components: - type: Transform @@ -79690,7 +79982,7 @@ entities: deviceLists: - 40 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9028 components: - type: Transform @@ -79700,7 +79992,7 @@ entities: deviceLists: - 30 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9029 components: - type: Transform @@ -79713,7 +80005,7 @@ entities: pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9031 components: - type: Transform @@ -79724,7 +80016,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9033 components: - type: Transform @@ -79735,7 +80027,7 @@ entities: deviceLists: - 43 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9034 components: - type: Transform @@ -79757,7 +80049,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9036 components: - type: Transform @@ -79765,7 +80057,7 @@ entities: pos: -61.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9037 components: - type: Transform @@ -79776,7 +80068,7 @@ entities: deviceLists: - 29 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9038 components: - type: Transform @@ -79787,14 +80079,14 @@ entities: deviceLists: - 11 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9039 components: - type: Transform pos: -37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9040 components: - type: Transform @@ -79802,14 +80094,14 @@ entities: pos: -74.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9041 components: - type: Transform pos: -32.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9042 components: - type: Transform @@ -79821,7 +80113,7 @@ entities: - 25 - 34 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9043 components: - type: Transform @@ -79829,7 +80121,7 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9044 components: - type: Transform @@ -79855,21 +80147,21 @@ entities: pos: -33.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9047 components: - type: Transform pos: 11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9048 components: - type: Transform pos: 12.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9049 components: - type: Transform @@ -79877,21 +80169,21 @@ entities: pos: -46.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9050 components: - type: Transform pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9051 components: - type: Transform pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9052 components: - type: Transform @@ -79901,14 +80193,14 @@ entities: deviceLists: - 6 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9053 components: - type: Transform pos: -45.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9055 components: - type: Transform @@ -79918,7 +80210,7 @@ entities: deviceLists: - 38 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9056 components: - type: Transform @@ -79928,7 +80220,7 @@ entities: deviceLists: - 24 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9057 components: - type: Transform @@ -79936,7 +80228,7 @@ entities: pos: -25.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9058 components: - type: Transform @@ -79949,7 +80241,7 @@ entities: pos: -66.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9060 components: - type: Transform @@ -79957,7 +80249,7 @@ entities: pos: -38.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9061 components: - type: Transform @@ -79968,7 +80260,7 @@ entities: deviceLists: - 27 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9062 components: - type: Transform @@ -79984,15 +80276,18 @@ entities: pos: -46.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9064 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20328 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9065 components: - type: Transform @@ -80003,7 +80298,7 @@ entities: deviceLists: - 17 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9066 components: - type: Transform @@ -80014,7 +80309,7 @@ entities: deviceLists: - 28 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9067 components: - type: Transform @@ -80025,7 +80320,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9068 components: - type: Transform @@ -80036,7 +80331,7 @@ entities: deviceLists: - 13 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9069 components: - type: Transform @@ -80047,7 +80342,7 @@ entities: deviceLists: - 12 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9070 components: - type: Transform @@ -80063,7 +80358,7 @@ entities: pos: 16.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9072 components: - type: Transform @@ -80073,7 +80368,7 @@ entities: deviceLists: - 14 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9073 components: - type: Transform @@ -80083,7 +80378,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9074 components: - type: Transform @@ -80093,7 +80388,7 @@ entities: deviceLists: - 23 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9075 components: - type: Transform @@ -80101,7 +80396,7 @@ entities: pos: -25.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9076 components: - type: Transform @@ -80112,7 +80407,7 @@ entities: deviceLists: - 34 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9077 components: - type: Transform @@ -80123,7 +80418,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9078 components: - type: Transform @@ -80134,7 +80429,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9079 components: - type: Transform @@ -80145,7 +80440,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9080 components: - type: Transform @@ -80157,7 +80452,7 @@ entities: - 15 - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9081 components: - type: Transform @@ -80168,7 +80463,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9082 components: - type: Transform @@ -80176,7 +80471,7 @@ entities: pos: -46.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9083 components: - type: Transform @@ -80184,7 +80479,7 @@ entities: pos: -87.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9084 components: - type: Transform @@ -80195,14 +80490,14 @@ entities: deviceLists: - 9 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9085 components: - type: Transform pos: -77.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9086 components: - type: Transform @@ -80213,7 +80508,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9087 components: - type: Transform @@ -80224,7 +80519,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9088 components: - type: Transform @@ -80235,7 +80530,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9089 components: - type: Transform @@ -80246,7 +80541,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9090 components: - type: Transform @@ -80257,7 +80552,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9091 components: - type: Transform @@ -80268,7 +80563,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9092 components: - type: Transform @@ -80279,7 +80574,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9093 components: - type: Transform @@ -80290,7 +80585,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9094 components: - type: Transform @@ -80298,7 +80593,7 @@ entities: pos: -73.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9095 components: - type: Transform @@ -80306,7 +80601,7 @@ entities: pos: -73.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9096 components: - type: Transform @@ -80314,7 +80609,7 @@ entities: pos: -79.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9097 components: - type: Transform @@ -80322,7 +80617,7 @@ entities: pos: -38.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9098 components: - type: Transform @@ -80330,7 +80625,7 @@ entities: pos: -38.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9099 components: - type: Transform @@ -80341,7 +80636,7 @@ entities: deviceLists: - 19 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9100 components: - type: Transform @@ -80352,7 +80647,7 @@ entities: deviceLists: - 28 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9101 components: - type: Transform @@ -80363,7 +80658,7 @@ entities: deviceLists: - 18 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9102 components: - type: Transform @@ -80409,7 +80704,7 @@ entities: pos: -30.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9107 components: - type: Transform @@ -80417,7 +80712,7 @@ entities: pos: -33.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9108 components: - type: Transform @@ -80425,7 +80720,7 @@ entities: pos: -53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9109 components: - type: Transform @@ -80441,7 +80736,7 @@ entities: pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9111 components: - type: Transform @@ -80449,7 +80744,7 @@ entities: pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9112 components: - type: Transform @@ -80457,7 +80752,7 @@ entities: pos: -3.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9113 components: - type: Transform @@ -80465,7 +80760,7 @@ entities: pos: -2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9114 components: - type: Transform @@ -80495,7 +80790,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9117 components: - type: Transform @@ -80506,7 +80801,7 @@ entities: deviceLists: - 37 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9118 components: - type: Transform @@ -80517,7 +80812,7 @@ entities: deviceLists: - 39 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9119 components: - type: Transform @@ -80528,7 +80823,7 @@ entities: deviceLists: - 45 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9120 components: - type: Transform @@ -80539,7 +80834,7 @@ entities: deviceLists: - 45 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9121 components: - type: Transform @@ -80551,7 +80846,7 @@ entities: - 45 - 34 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9122 components: - type: Transform @@ -80616,8 +80911,11 @@ entities: - type: Transform pos: -44.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20328 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9130 components: - type: Transform @@ -80628,7 +80926,7 @@ entities: deviceLists: - 46 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 9131 components: - type: Transform @@ -80639,7 +80937,7 @@ entities: deviceLists: - 46 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 12123 components: - type: Transform @@ -80649,7 +80947,7 @@ entities: deviceLists: - 17112 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 12127 components: - type: Transform @@ -80657,7 +80955,7 @@ entities: pos: -34.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0555F5FF' + color: '#0000FFFF' - uid: 15817 components: - type: Transform @@ -80896,7 +81194,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 5818 components: - type: Transform @@ -80907,7 +81205,7 @@ entities: deviceLists: - 17112 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9132 components: - type: Transform @@ -80915,7 +81213,7 @@ entities: pos: -62.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9133 components: - type: Transform @@ -80923,7 +81221,7 @@ entities: pos: -53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9134 components: - type: Transform @@ -80934,7 +81232,7 @@ entities: deviceLists: - 39 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9135 components: - type: Transform @@ -80942,7 +81240,7 @@ entities: pos: -63.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9136 components: - type: Transform @@ -80953,7 +81251,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9137 components: - type: Transform @@ -80964,7 +81262,7 @@ entities: deviceLists: - 42 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9138 components: - type: Transform @@ -80975,7 +81273,7 @@ entities: deviceLists: - 45 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9139 components: - type: Transform @@ -80985,7 +81283,7 @@ entities: deviceLists: - 43 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9140 components: - type: Transform @@ -80993,7 +81291,7 @@ entities: pos: -35.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9141 components: - type: Transform @@ -81004,7 +81302,7 @@ entities: deviceLists: - 27 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9142 components: - type: Transform @@ -81012,7 +81310,7 @@ entities: pos: -61.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9143 components: - type: Transform @@ -81023,7 +81321,7 @@ entities: deviceLists: - 29 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9144 components: - type: Transform @@ -81034,7 +81332,7 @@ entities: deviceLists: - 18 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9145 components: - type: Transform @@ -81045,7 +81343,7 @@ entities: deviceLists: - 11 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9146 components: - type: Transform @@ -81055,7 +81353,7 @@ entities: deviceLists: - 14 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9147 components: - type: Transform @@ -81063,7 +81361,7 @@ entities: pos: -50.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9148 components: - type: Transform @@ -81071,14 +81369,14 @@ entities: pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9149 components: - type: Transform pos: -34.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9150 components: - type: Transform @@ -81088,15 +81386,16 @@ entities: - type: DeviceNetwork deviceLists: - 23 + - 20328 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9151 components: - type: Transform pos: -46.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9152 components: - type: Transform @@ -81104,21 +81403,21 @@ entities: pos: -15.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9153 components: - type: Transform pos: -9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9154 components: - type: Transform pos: 10.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9156 components: - type: Transform @@ -81126,7 +81425,7 @@ entities: pos: -33.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9157 components: - type: Transform @@ -81134,14 +81433,14 @@ entities: pos: -33.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9158 components: - type: Transform pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9159 components: - type: Transform @@ -81151,7 +81450,7 @@ entities: deviceLists: - 38 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9160 components: - type: Transform @@ -81159,7 +81458,7 @@ entities: pos: -26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9161 components: - type: Transform @@ -81167,7 +81466,7 @@ entities: pos: -45.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9162 components: - type: Transform @@ -81178,7 +81477,7 @@ entities: deviceLists: - 28 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9163 components: - type: Transform @@ -81186,7 +81485,7 @@ entities: pos: -37.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9164 components: - type: Transform @@ -81196,7 +81495,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9165 components: - type: Transform @@ -81204,7 +81503,7 @@ entities: pos: -79.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9166 components: - type: Transform @@ -81212,7 +81511,7 @@ entities: pos: -64.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9167 components: - type: Transform @@ -81220,7 +81519,7 @@ entities: pos: -19.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9168 components: - type: Transform @@ -81231,7 +81530,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9169 components: - type: Transform @@ -81239,7 +81538,7 @@ entities: pos: -87.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9170 components: - type: Transform @@ -81250,7 +81549,7 @@ entities: deviceLists: - 17 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9171 components: - type: Transform @@ -81258,7 +81557,7 @@ entities: pos: -74.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9172 components: - type: Transform @@ -81268,7 +81567,7 @@ entities: deviceLists: - 13 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9173 components: - type: Transform @@ -81279,7 +81578,7 @@ entities: deviceLists: - 12 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9174 components: - type: Transform @@ -81290,7 +81589,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9175 components: - type: Transform @@ -81301,7 +81600,7 @@ entities: deviceLists: - 24 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9176 components: - type: Transform @@ -81312,7 +81611,7 @@ entities: deviceLists: - 9 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9177 components: - type: Transform @@ -81320,7 +81619,7 @@ entities: pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9178 components: - type: Transform @@ -81331,7 +81630,7 @@ entities: deviceLists: - 6 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9179 components: - type: Transform @@ -81341,7 +81640,7 @@ entities: deviceLists: - 34 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9180 components: - type: Transform @@ -81352,7 +81651,7 @@ entities: - 25 - 34 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9181 components: - type: Transform @@ -81363,7 +81662,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9182 components: - type: Transform @@ -81374,7 +81673,7 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9183 components: - type: Transform @@ -81385,14 +81684,14 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9184 components: - type: Transform pos: -22.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9185 components: - type: Transform @@ -81402,7 +81701,7 @@ entities: deviceLists: - 15 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9186 components: - type: Transform @@ -81413,15 +81712,18 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9187 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20328 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9188 components: - type: Transform @@ -81429,7 +81731,7 @@ entities: pos: -44.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9189 components: - type: Transform @@ -81440,7 +81742,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9190 components: - type: Transform @@ -81451,7 +81753,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9191 components: - type: Transform @@ -81462,7 +81764,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9192 components: - type: Transform @@ -81473,7 +81775,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9193 components: - type: Transform @@ -81484,7 +81786,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9194 components: - type: Transform @@ -81495,7 +81797,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9195 components: - type: Transform @@ -81506,7 +81808,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9196 components: - type: Transform @@ -81517,7 +81819,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9197 components: - type: Transform @@ -81525,7 +81827,7 @@ entities: pos: -74.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9198 components: - type: Transform @@ -81536,7 +81838,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9199 components: - type: Transform @@ -81544,7 +81846,7 @@ entities: pos: -80.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9200 components: - type: Transform @@ -81560,7 +81862,7 @@ entities: pos: -35.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9202 components: - type: Transform @@ -81571,7 +81873,7 @@ entities: deviceLists: - 19 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9203 components: - type: Transform @@ -81582,7 +81884,7 @@ entities: deviceLists: - 28 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9204 components: - type: Transform @@ -81590,7 +81892,7 @@ entities: pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9205 components: - type: Transform @@ -81601,7 +81903,7 @@ entities: deviceLists: - 33 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9206 components: - type: Transform @@ -81612,7 +81914,7 @@ entities: deviceLists: - 33 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9207 components: - type: Transform @@ -81620,7 +81922,7 @@ entities: pos: -12.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9208 components: - type: Transform @@ -81628,7 +81930,7 @@ entities: pos: -16.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9209 components: - type: Transform @@ -81638,7 +81940,7 @@ entities: deviceLists: - 18 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9210 components: - type: Transform @@ -81646,14 +81948,14 @@ entities: pos: -30.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9211 components: - type: Transform pos: -19.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9212 components: - type: Transform @@ -81661,7 +81963,7 @@ entities: pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9213 components: - type: Transform @@ -81669,7 +81971,7 @@ entities: pos: -18.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9214 components: - type: Transform @@ -81677,7 +81979,7 @@ entities: pos: -16.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9215 components: - type: Transform @@ -81685,14 +81987,14 @@ entities: pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9216 components: - type: Transform pos: -3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9217 components: - type: Transform @@ -81703,7 +82005,7 @@ entities: deviceLists: - 31 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9218 components: - type: Transform @@ -81711,7 +82013,7 @@ entities: pos: -25.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9219 components: - type: Transform @@ -81719,7 +82021,7 @@ entities: pos: -60.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9220 components: - type: Transform @@ -81730,7 +82032,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9221 components: - type: Transform @@ -81741,7 +82043,7 @@ entities: deviceLists: - 37 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9222 components: - type: Transform @@ -81752,7 +82054,7 @@ entities: deviceLists: - 40 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9223 components: - type: Transform @@ -81763,7 +82065,7 @@ entities: deviceLists: - 45 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9224 components: - type: Transform @@ -81775,7 +82077,7 @@ entities: - 45 - 34 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9225 components: - type: Transform @@ -81785,7 +82087,7 @@ entities: deviceLists: - 20065 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9226 components: - type: Transform @@ -81796,7 +82098,7 @@ entities: deviceLists: - 10186 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9227 components: - type: Transform @@ -81804,21 +82106,21 @@ entities: pos: -40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9228 components: - type: Transform pos: -41.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9229 components: - type: Transform pos: -38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9230 components: - type: Transform @@ -81826,7 +82128,7 @@ entities: pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9231 components: - type: Transform @@ -81834,7 +82136,7 @@ entities: pos: -33.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9232 components: - type: Transform @@ -81845,7 +82147,7 @@ entities: deviceLists: - 46 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9233 components: - type: Transform @@ -81855,7 +82157,7 @@ entities: deviceLists: - 46 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 9234 components: - type: Transform @@ -81865,7 +82167,7 @@ entities: deviceLists: - 30 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 15819 components: - type: Transform @@ -81942,7 +82244,7 @@ entities: deviceLists: - 17112 - type: AtmosPipeColor - color: '#F50505FF' + color: '#FF0000FF' - uid: 19262 components: - type: Transform @@ -82321,6 +82623,12 @@ entities: - type: InsideEntityStorage - proto: Grille entities: + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 2 - uid: 469 components: - type: Transform @@ -84532,11 +84840,6 @@ entities: - type: Transform pos: -62.5,-25.5 parent: 2 - - uid: 9712 - components: - - type: Transform - pos: -55.5,-37.5 - parent: 2 - uid: 9713 components: - type: Transform @@ -84652,7 +84955,8 @@ entities: - uid: 9738 components: - type: Transform - pos: -54.5,-37.5 + rot: 1.5707963267948966 rad + pos: -55.5,-37.5 parent: 2 - uid: 9739 components: @@ -85107,6 +85411,12 @@ entities: - type: Transform pos: -4.5,10.5 parent: 2 + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-37.5 + parent: 2 - uid: 10084 components: - type: Transform @@ -86846,7 +87156,7 @@ entities: - uid: 9889 components: - type: Transform - pos: -65.472664,-26.379759 + pos: -63.768967,-25.202612 parent: 2 - proto: HandheldHealthAnalyzerEmpty entities: @@ -86915,6 +87225,11 @@ entities: parent: 2 - proto: HospitalCurtains entities: + - uid: 8827 + components: + - type: Transform + pos: -47.5,-42.5 + parent: 2 - uid: 9899 components: - type: Transform @@ -86925,46 +87240,17 @@ entities: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 9901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-37.5 - parent: 2 - uid: 9902 components: - type: Transform pos: -29.5,-48.5 parent: 2 - - uid: 9903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-37.5 - parent: 2 - uid: 9904 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 - - uid: 9905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-42.5 - parent: 2 - - uid: 9906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-37.5 - parent: 2 - - uid: 9907 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - uid: 9908 components: - type: Transform @@ -87432,10 +87718,13 @@ entities: - type: InsideEntityStorage - proto: Jug entities: - - uid: 9971 + - uid: 5541 components: + - type: MetaData + name: кувшин (Криоксадон) - type: Transform - pos: -57.604904,-34.442482 + rot: 1.5707963267948966 rad + pos: -55.596977,-35.47277 parent: 2 - proto: KitchenElectricGrill entities: @@ -88530,14 +88819,35 @@ entities: - type: Transform pos: -49.5,-9.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.1462 moles: - - 1.606311 - - 6.042789 - 0 - 0 - 0 @@ -88548,6 +88858,12 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 12380 components: - type: Transform @@ -88598,14 +88914,35 @@ entities: - type: Transform pos: -53.5,-9.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - 0 - 0 - 0 @@ -88616,6 +88953,12 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: LockerHeadOfPersonnelFilled entities: - uid: 10034 @@ -88752,6 +89095,24 @@ entities: - type: Transform pos: -48.5,-42.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerQuarterMasterFilled entities: - uid: 11708 @@ -89343,22 +89704,22 @@ entities: rot: 0.7853981633974483 rad pos: -13.900502,-1.4705787 parent: 2 -- proto: MagazinePistolSubMachineGunTopMountedEmpty +- proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 6272 + - uid: 9901 components: - type: Transform - pos: -14.534769,-1.5003111 + pos: -14.6500635,-1.4831963 parent: 2 - - uid: 6563 + - uid: 9903 components: - type: Transform - pos: -14.6933365,-1.7579918 + pos: -14.640153,-1.2849803 parent: 2 - - uid: 10858 + - uid: 9905 components: - type: Transform - pos: -14.6933365,-1.24263 + pos: -14.669885,-1.790431 parent: 2 - proto: MagazineRifle entities: @@ -90030,6 +90391,14 @@ entities: - type: Transform pos: -6.6215134,3.744875 parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 7892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.46546,-9.715588 + parent: 2 - proto: MinimoogInstrument entities: - uid: 10116 @@ -90143,14 +90512,6 @@ entities: - type: Transform pos: -55.5,-42.5 parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 12480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-42.5 - parent: 2 - proto: Multitool entities: - uid: 2712 @@ -90311,6 +90672,14 @@ entities: - type: Transform pos: -57.5,6.5 parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 19037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.248554,6.5012045 + parent: 2 - proto: NodeScanner entities: - uid: 48 @@ -90328,6 +90697,9 @@ entities: parent: 2 - uid: 20152 components: + - type: MetaData + desc: Здесь вывешено меню кухни и бара. + name: меню - type: Transform pos: -35.5,-34.5 parent: 2 @@ -90353,14 +90725,17 @@ entities: - uid: 10153 components: - type: Transform + anchored: True pos: -33.5,-25.5 parent: 2 + - type: Physics + bodyType: Static - proto: Ointment entities: - uid: 10154 components: - type: Transform - pos: -59.524715,-26.440006 + pos: -61.301834,-25.32632 parent: 2 - proto: Ointment1 entities: @@ -91127,16 +91502,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.469777,-0.4078362 parent: 17265 - - uid: 19943 - components: - - type: Transform - pos: -93.54348,-29.454441 - parent: 2 - - uid: 19947 - components: - - type: Transform - pos: -93.707,-29.513905 - parent: 2 - uid: 20276 components: - type: Transform @@ -91385,11 +91750,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.547902,-0.6890862 parent: 17265 - - uid: 19949 - components: - - type: Transform - pos: -93.27875,-29.433323 - parent: 2 - proto: PenCap entities: - uid: 10238 @@ -91803,11 +92163,6 @@ entities: - type: Transform pos: -50.593224,-19.257496 parent: 2 - - uid: 10282 - components: - - type: Transform - pos: -82.00391,-28.921864 - parent: 2 - uid: 10283 components: - type: MetaData @@ -92307,11 +92662,6 @@ entities: parent: 2 - proto: PosterLegitMime entities: - - uid: 10354 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 - uid: 11727 components: - type: Transform @@ -92525,13 +92875,6 @@ entities: - type: Transform pos: -44.5,-39.5 parent: 2 -- proto: PottedPlantAlt1 - entities: - - uid: 10380 - components: - - type: Transform - pos: -59.5,-54.5 - parent: 2 - proto: PottedPlantAlt2 entities: - uid: 10382 @@ -92845,12 +93188,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-13.5 parent: 2 - - uid: 10406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-23.5 - parent: 2 - uid: 10408 components: - type: Transform @@ -93120,22 +93457,6 @@ entities: - type: Transform pos: -36.5,-20.5 parent: 2 - - uid: 10460 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 2 - - uid: 10461 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - uid: 10462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-50.5 - parent: 2 - uid: 10463 components: - type: Transform @@ -93160,11 +93481,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 - - uid: 10467 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - uid: 10468 components: - type: Transform @@ -93351,11 +93667,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 - - uid: 10507 - components: - - type: Transform - pos: -36.5,-41.5 - parent: 2 - uid: 10508 components: - type: Transform @@ -93368,12 +93679,6 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-35.5 parent: 2 - - uid: 10510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-50.5 - parent: 2 - uid: 10511 components: - type: Transform @@ -93965,11 +94270,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-36.5 parent: 2 - - uid: 10627 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 2 - uid: 10628 components: - type: Transform @@ -94260,6 +94560,12 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-27.5 parent: 2 + - uid: 20333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-23.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 15850 @@ -94302,6 +94608,19 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 16090 +- proto: PoweredlightCyan + entities: + - uid: 15452 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-36.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 10644 @@ -94479,6 +94798,16 @@ entities: parent: 2 - proto: PoweredlightOrange entities: + - uid: 10354 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 - uid: 10680 components: - type: Transform @@ -94738,11 +95067,6 @@ entities: parent: 17265 - proto: PoweredlightRed entities: - - uid: 9892 - components: - - type: Transform - pos: -77.5,-40.5 - parent: 2 - uid: 10719 components: - type: Transform @@ -94767,6 +95091,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 16090 + - uid: 20337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-41.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 440 @@ -94786,12 +95116,6 @@ entities: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 5577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-79.5 - parent: 2 - uid: 5644 components: - type: Transform @@ -94815,6 +95139,24 @@ entities: - type: Transform pos: -62.5,19.5 parent: 2 + - uid: 10460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-50.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-50.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-78.5 + parent: 2 - uid: 10561 components: - type: Transform @@ -95753,11 +96095,6 @@ entities: parent: 2 - proto: Puddle entities: - - uid: 10851 - components: - - type: Transform - pos: -84.5,-57.5 - parent: 2 - uid: 10994 components: - type: Transform @@ -95770,11 +96107,6 @@ entities: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 5794 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 2 - uid: 9799 components: - type: Transform @@ -96089,11 +96421,6 @@ entities: parent: 2 - proto: RadiationCollectorFullTank entities: - - uid: 10890 - components: - - type: Transform - pos: -67.5,-9.5 - parent: 2 - uid: 10893 components: - type: Transform @@ -97293,7 +97620,7 @@ entities: - uid: 19953 components: - type: Transform - pos: -53.513,-19.07834 + pos: -53.53701,-19.061335 parent: 2 - proto: RCDAmmo entities: @@ -97325,10 +97652,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19948 + - uid: 15466 components: - type: Transform - pos: -53.71541,-19.494682 + pos: -52.708015,-16.223701 parent: 2 - proto: ReagentContainerCornmealSmall entities: @@ -99101,11 +99428,36 @@ entities: - type: Transform pos: -10.5,-43.5 parent: 2 + - uid: 11468 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 - uid: 11831 components: - type: Transform pos: -2.5,-20.5 parent: 2 + - uid: 11832 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 - uid: 11840 components: - type: Transform @@ -99683,8 +100035,25 @@ entities: - type: Transform pos: -20.52148,13.5074005 parent: 2 +- proto: Screen + entities: + - uid: 7496 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: -95.5,-22.5 + parent: 2 - proto: Screwdriver entities: + - uid: 5540 + components: + - type: Transform + pos: -57.49868,-35.572784 + parent: 2 - uid: 11445 components: - type: Transform @@ -99940,11 +100309,6 @@ entities: parent: 17265 - proto: SheetPlastic entities: - - uid: 11468 - components: - - type: Transform - pos: -19.316895,-9.403631 - parent: 2 - uid: 11469 components: - type: Transform @@ -99991,11 +100355,6 @@ entities: - type: Transform pos: -62.592285,-14.393211 parent: 2 - - uid: 11475 - components: - - type: Transform - pos: -19.66598,-9.298901 - parent: 2 - uid: 11477 components: - type: Transform @@ -100087,16 +100446,10 @@ entities: - uid: 11484 components: - type: Transform - pos: -54.68747,-40.41425 + pos: -54.70832,-40.279358 parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 11485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 2 - uid: 16646 components: - type: Transform @@ -100171,30 +100524,78 @@ entities: parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 11497 + - uid: 5816 components: - type: Transform - pos: -43.5,-24.5 + rot: 3.141592653589793 rad + pos: -39.5,-40.5 parent: 2 - - uid: 11498 + - uid: 5854 components: - type: Transform - pos: -42.5,-24.5 + rot: 3.141592653589793 rad + pos: -34.5,-40.5 parent: 2 - - uid: 11499 + - uid: 6048 components: - type: Transform - pos: -41.5,-24.5 + rot: 3.141592653589793 rad + pos: -33.5,-40.5 parent: 2 - - uid: 11500 + - uid: 6205 components: - type: Transform - pos: -43.5,-30.5 + rot: 3.141592653589793 rad + pos: -38.5,-40.5 parent: 2 - - uid: 11501 + - uid: 6206 components: - type: Transform - pos: -43.5,-32.5 + rot: -1.5707963267948966 rad + pos: -41.5,-48.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-49.5 parent: 2 - uid: 11502 components: @@ -100378,6 +100779,47 @@ entities: - type: Transform pos: -28.5,-24.5 parent: 2 + - uid: 11865 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-43.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-42.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-49.5 + parent: 2 - proto: ShuttersRadiation entities: - uid: 11537 @@ -100644,6 +101086,56 @@ entities: - Pressed: Toggle 11516: - Pressed: Toggle + - uid: 5822 + components: + - type: MetaData + desc: Эта кнопка переключает ставни. + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8928: + - Pressed: Toggle + 6048: + - Pressed: Toggle + 5854: + - Pressed: Toggle + 10858: + - Pressed: Toggle + 6205: + - Pressed: Toggle + 5816: + - Pressed: Toggle + 12052: + - Pressed: Toggle + 11903: + - Pressed: Toggle + 6206: + - Pressed: Toggle + 10985: + - Pressed: Toggle + 10510: + - Pressed: Toggle + 8834: + - Pressed: Toggle + 7930: + - Pressed: Toggle + 9906: + - Pressed: Toggle + 7916: + - Pressed: Toggle + 11865: + - Pressed: Toggle + 12564: + - Pressed: Toggle + 12455: + - Pressed: Toggle + 12053: + - Pressed: Toggle + 12444: + - Pressed: Toggle - uid: 11547 components: - type: Transform @@ -100884,6 +101376,13 @@ entities: - type: Transform pos: -35.5,-81.5 parent: 2 +- proto: SignArcade + entities: + - uid: 20324 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 - proto: SignArmory entities: - uid: 11567 @@ -103540,6 +104039,11 @@ entities: parent: 2 - proto: SpawnMobMouse entities: + - uid: 7497 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 - uid: 9949 components: - type: Transform @@ -103774,6 +104278,11 @@ entities: parent: 2 - proto: SpawnPointMedicalDoctor entities: + - uid: 7310 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 - uid: 12050 components: - type: Transform @@ -103784,16 +104293,6 @@ entities: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 12052 - components: - - type: Transform - pos: -54.5,-36.5 - parent: 2 - - uid: 12053 - components: - - type: Transform - pos: -52.5,-38.5 - parent: 2 - uid: 12054 components: - type: Transform @@ -103804,6 +104303,11 @@ entities: - type: Transform pos: -65.5,-25.5 parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 - proto: SpawnPointMedicalIntern entities: - uid: 12056 @@ -103972,6 +104476,11 @@ entities: parent: 2 - proto: SpawnPointSecurityCadet entities: + - uid: 10890 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 - uid: 12086 components: - type: Transform @@ -103984,6 +104493,11 @@ entities: parent: 2 - proto: SpawnPointSecurityOfficer entities: + - uid: 10851 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 - uid: 12088 components: - type: Transform @@ -104071,6 +104585,16 @@ entities: parent: 2 - proto: SprayBottleSpaceCleaner entities: + - uid: 11500 + components: + - type: Transform + pos: -44.38498,-74.307396 + parent: 2 + - uid: 19038 + components: + - type: Transform + pos: -59.782516,-36.880615 + parent: 2 - uid: 20104 components: - type: Transform @@ -104888,21 +105412,6 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 5540 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 - - uid: 5541 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - - uid: 5542 - components: - - type: Transform - pos: -0.5,6.5 - parent: 2 - uid: 9427 components: - type: Transform @@ -104951,6 +105460,24 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 17265 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 19627 components: - type: Transform @@ -106643,6 +107170,16 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-25.5 parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 - uid: 12390 components: - type: Transform @@ -106807,6 +107344,16 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-90.5 parent: 2 + - uid: 11497 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 - uid: 12416 components: - type: Transform @@ -106919,11 +107466,6 @@ entities: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 12444 - components: - - type: Transform - pos: -57.5,-35.5 - parent: 2 - uid: 12445 components: - type: Transform @@ -106973,11 +107515,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-28.5 parent: 2 - - uid: 12455 - components: - - type: Transform - pos: -57.5,-34.5 - parent: 2 - uid: 12456 components: - type: Transform @@ -107303,11 +107840,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 16090 - - uid: 19946 - components: - - type: Transform - pos: -93.5,-29.5 - parent: 2 - proto: TableWood entities: - uid: 463 @@ -107570,11 +108102,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-62.5 parent: 2 - - uid: 19952 - components: - - type: Transform - pos: -53.5,-19.5 - parent: 2 - uid: 19956 components: - type: Transform @@ -108266,11 +108793,6 @@ entities: parent: 2 - proto: trayScanner entities: - - uid: 12564 - components: - - type: Transform - pos: -57.58336,-35.24118 - parent: 2 - uid: 12565 components: - type: Transform @@ -109020,10 +109542,10 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 12000 + - uid: 11499 components: - type: Transform - pos: -6.5,6.5 + pos: -2.5,6.5 parent: 2 - uid: 12652 components: @@ -110556,11 +111078,6 @@ entities: - type: Transform pos: -10.5,-59.5 parent: 2 - - uid: 12807 - components: - - type: Transform - pos: -10.5,-60.5 - parent: 2 - uid: 12808 components: - type: Transform @@ -121862,6 +122379,18 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-32.5 parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-3.5 + parent: 2 - uid: 13033 components: - type: Transform @@ -125751,21 +126280,11 @@ entities: parent: 2 - proto: WallSolidRust entities: - - uid: 11865 - components: - - type: Transform - pos: -78.5,-3.5 - parent: 2 - uid: 11880 components: - type: Transform pos: -76.5,-1.5 parent: 2 - - uid: 11903 - components: - - type: Transform - pos: -76.5,-2.5 - parent: 2 - uid: 13106 components: - type: Transform @@ -126877,12 +127396,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-51.5 parent: 2 - - uid: 15452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-57.5 - parent: 2 - uid: 20045 components: - type: Transform @@ -126960,35 +127473,23 @@ entities: parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 15464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 2 - - uid: 15465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 2 - - uid: 15466 + - uid: 10627 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -43.5,-35.5 parent: 2 - - uid: 15467 + - uid: 15464 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-36.5 + pos: -36.5,-36.5 parent: 2 - - uid: 15468 + - uid: 15465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-37.5 + pos: -36.5,-35.5 parent: 2 - uid: 15469 components: @@ -127007,6 +127508,18 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 + - uid: 20326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 - proto: WindoorSecure entities: - uid: 19853 @@ -127206,6 +127719,12 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: + - uid: 15468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 2 - uid: 15497 components: - type: Transform @@ -127327,6 +127846,12 @@ entities: parent: 17265 - proto: Window entities: + - uid: 5794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 2 - uid: 9928 components: - type: Transform @@ -127347,31 +127872,6 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 11365 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 2 - - uid: 11387 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - - uid: 11832 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - uid: 15509 components: - type: Transform @@ -127550,6 +128050,7 @@ entities: - uid: 15547 components: - type: Transform + rot: 1.5707963267948966 rad pos: -54.5,-37.5 parent: 2 - uid: 15548 @@ -127570,6 +128071,7 @@ entities: - uid: 15551 components: - type: Transform + rot: 1.5707963267948966 rad pos: -55.5,-37.5 parent: 2 - uid: 15552 From bf4ef62ab3a5be3ecd8aa2ff259622070c8bca32 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sat, 13 Jul 2024 19:45:34 +0300 Subject: [PATCH 67/97] Update RadiationPulseOverlay.cs to have 0 warnings (#30004) --- Content.Client/Radiation/Overlays/RadiationPulseOverlay.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Client/Radiation/Overlays/RadiationPulseOverlay.cs b/Content.Client/Radiation/Overlays/RadiationPulseOverlay.cs index 8d5607af2d0..9ec24fae0ef 100644 --- a/Content.Client/Radiation/Overlays/RadiationPulseOverlay.cs +++ b/Content.Client/Radiation/Overlays/RadiationPulseOverlay.cs @@ -116,7 +116,9 @@ private void RadiationQuery(IEye? currentEye) var shaderInstance = _pulses[pulseEntity]; shaderInstance.instance.CurrentMapCoords = _transform.GetMapCoordinates(pulseEntity); shaderInstance.instance.Range = pulse.VisualRange; - } else { + } + else + { _pulses[pulseEntity].shd.Dispose(); _pulses.Remove(pulseEntity); } @@ -129,7 +131,7 @@ private bool PulseQualifies(EntityUid pulseEntity, MapCoordinates currentEyeLoc) var transformComponent = _entityManager.GetComponent(pulseEntity); var transformSystem = _entityManager.System(); return transformComponent.MapID == currentEyeLoc.MapId - && transformComponent.Coordinates.InRange(_entityManager, transformSystem, EntityCoordinates.FromMap(transformComponent.ParentUid, currentEyeLoc, transformSystem, _entityManager), MaxDist); + && transformSystem.InRange(transformComponent.Coordinates, transformSystem.ToCoordinates(transformComponent.ParentUid, currentEyeLoc), MaxDist); } private sealed record RadiationShaderInstance(MapCoordinates CurrentMapCoords, float Range, TimeSpan Start, float Duration) From 0003103fc0c491a82fd9049c5862427f3d8b0b6c Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Sat, 13 Jul 2024 20:11:49 +0300 Subject: [PATCH 68/97] Add lore books part one (#2404) --- .../Catalog/Fills/Books/bookshelf.yml | 92 ++ .../Corvax/Catalog/Cargo/cargo_service.yml | 9 + .../Corvax/Catalog/Fills/Crates/service.yml | 38 + .../Corvax/Entities/Objects/Misc/books.yml | 1275 +++++++++++++++++ .../Objects/Misc/books.rsi/book_BSS.png | Bin 0 -> 454 bytes .../Objects/Misc/books.rsi/book_DAM.png | Bin 0 -> 422 bytes .../Objects/Misc/books.rsi/book_MBS1.png | Bin 0 -> 431 bytes .../Objects/Misc/books.rsi/book_MBS2.png | Bin 0 -> 444 bytes .../Objects/Misc/books.rsi/book_clones.png | Bin 0 -> 502 bytes .../Objects/Misc/books.rsi/book_conarex.png | Bin 0 -> 459 bytes .../Objects/Misc/books.rsi/book_cult_mirt.png | Bin 0 -> 485 bytes .../Objects/Misc/books.rsi/book_dione.png | Bin 0 -> 480 bytes .../Misc/books.rsi/book_expensive_crystal.png | Bin 0 -> 446 bytes .../Objects/Misc/books.rsi/book_faks.png | Bin 0 -> 425 bytes .../Objects/Misc/books.rsi/book_famalis.png | Bin 0 -> 473 bytes .../Objects/Misc/books.rsi/book_gefest.png | Bin 0 -> 472 bytes .../Objects/Misc/books.rsi/book_gior.png | Bin 0 -> 470 bytes .../Objects/Misc/books.rsi/book_grav.png | Bin 0 -> 459 bytes .../Objects/Misc/books.rsi/book_halifat.png | Bin 0 -> 414 bytes .../Objects/Misc/books.rsi/book_icon.png | Bin 0 -> 652 bytes .../Objects/Misc/books.rsi/book_implant.png | Bin 0 -> 536 bytes .../Objects/Misc/books.rsi/book_nakamura.png | Bin 0 -> 406 bytes .../Objects/Misc/books.rsi/book_nooc.png | Bin 0 -> 458 bytes .../Objects/Misc/books.rsi/book_petr.png | Bin 0 -> 446 bytes .../Misc/books.rsi/book_polit_USSP.png | Bin 0 -> 461 bytes .../Objects/Misc/books.rsi/book_redspace.png | Bin 0 -> 392 bytes .../Objects/Misc/books.rsi/book_saibasan.png | Bin 0 -> 547 bytes .../Objects/Misc/books.rsi/book_scaf.png | Bin 0 -> 437 bytes .../Objects/Misc/books.rsi/book_ships.png | Bin 0 -> 502 bytes .../Objects/Misc/books.rsi/book_snk.png | Bin 0 -> 482 bytes .../Objects/Misc/books.rsi/book_umpor.png | Bin 0 -> 460 bytes .../Objects/Misc/books.rsi/book_unath_1.png | Bin 0 -> 489 bytes .../Objects/Misc/books.rsi/book_unath_2.png | Bin 0 -> 485 bytes .../Objects/Misc/books.rsi/book_vitz.png | Bin 0 -> 423 bytes .../Corvax/Objects/Misc/books.rsi/book_zp.png | Bin 0 -> 484 bytes .../Corvax/Objects/Misc/books.rsi/meta.json | 94 +- 36 files changed, 1506 insertions(+), 2 deletions(-) create mode 100644 Resources/Prototypes/Corvax/Catalog/Cargo/cargo_service.yml create mode 100644 Resources/Prototypes/Corvax/Catalog/Fills/Crates/service.yml create mode 100644 Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_BSS.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_DAM.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_MBS1.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_MBS2.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_clones.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_conarex.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_cult_mirt.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_dione.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_expensive_crystal.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_faks.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_famalis.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_gefest.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_gior.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_grav.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_halifat.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_icon.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_implant.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_nakamura.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_nooc.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_petr.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_polit_USSP.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_redspace.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_saibasan.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_scaf.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_ships.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_snk.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_umpor.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_unath_1.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_unath_2.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_vitz.png create mode 100644 Resources/Textures/Corvax/Objects/Misc/books.rsi/book_zp.png diff --git a/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml b/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml index d982f67bc56..274642e4f8f 100644 --- a/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml +++ b/Resources/Prototypes/Catalog/Fills/Books/bookshelf.yml @@ -130,3 +130,95 @@ - id: BookInspiration prob: 0.1 orGroup: BookAuthor + # Corvax-Lore-Start + - id: BookExpensiveCrystal + prob: 0.1 + orGroup: BookLore + - id: BookClones + prob: 0.1 + orGroup: BookLore + - id: BookDAM + prob: 0.1 + orGroup: BookLore + - id: BookFaks + prob: 0.1 + orGroup: BookLore + - id: BookFamalis + prob: 0.1 + orGroup: BookLore + - id: BookGrav + prob: 0.1 + orGroup: BookLore + - id: BookHalifat + prob: 0.1 + orGroup: BookLore + - id: BookRedspace + prob: 0.1 + orGroup: BookLore + - id: BookShips + prob: 0.1 + orGroup: BookLore + - id: BookZP + prob: 0.1 + orGroup: BookLore + - id: BookUSSP + prob: 0.1 + orGroup: BookLore + - id: BookMirt + prob: 0.1 + orGroup: BookLore + - id: BookGior + prob: 0.1 + orGroup: BookLore + - id: BookSNK + prob: 0.1 + orGroup: BookLore + - id: BookUmpor + prob: 0.1 + orGroup: BookLore + - id: BookNooc + prob: 0.1 + orGroup: BookLore + - id: BookNakamura + prob: 0.1 + orGroup: BookLore + - id: BookVitz + prob: 0.1 + orGroup: BookLore + - id: BookGefest + prob: 0.1 + orGroup: BookLore + - id: BookConarex + prob: 0.1 + orGroup: BookLore + - id: BookPetr + prob: 0.1 + orGroup: BookLore + - id: BookSaibasan + prob: 0.1 + orGroup: BookLore + - id: BookUnath1 + prob: 0.1 + orGroup: BookLore + - id: BookUnath2 + prob: 0.1 + orGroup: BookLore + - id: BookDione + prob: 0.1 + orGroup: BookLore + - id: BookBSS + prob: 0.1 + orGroup: BookLore + - id: BookScaf + prob: 0.1 + orGroup: BookLore + - id: BookMBS1 + prob: 0.1 + orGroup: BookLore + - id: BookMBS2 + prob: 0.1 + orGroup: BookLore + - id: BookImplants + prob: 0.1 + orGroup: BookLore + # Corvax-Lore-End \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Corvax/Catalog/Cargo/cargo_service.yml new file mode 100644 index 00000000000..c30594ab82e --- /dev/null +++ b/Resources/Prototypes/Corvax/Catalog/Cargo/cargo_service.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: ServiceLoreBooks + icon: + sprite: Corvax/Objects/Misc/books.rsi + state: book_grav + product: CrateServiceLoreBooks + cost: 1500 + category: Service + group: market \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Corvax/Catalog/Fills/Crates/service.yml new file mode 100644 index 00000000000..79e8c1fa726 --- /dev/null +++ b/Resources/Prototypes/Corvax/Catalog/Fills/Crates/service.yml @@ -0,0 +1,38 @@ +- type: entity + id: CrateServiceLoreBooks + parent: CrateGenericSteel + name: ящик космологических книг + description: Ящик, содержащий книги по устройству мира, техники, политических тонкостях, ествественных закономерностях и об исторических событиях. + components: + - type: StorageFill + contents: + - id: BookClones + - id: BookDAM + - id: BookExpensiveCrystal + - id: BookFaks + - id: BookFamalis + - id: BookGrav + - id: BookHalifat + - id: BookRedspace + - id: BookShips + - id: BookZP + - id: BookBSS + - id: BookConarex + - id: BookDione + - id: BookGefest + - id: BookGior + - id: BookImplants + - id: BookMBS1 + - id: BookMBS2 + - id: BookMirt + - id: BookNakamura + - id: BookNooc + - id: BookPetr + - id: BookSNK + - id: BookSaibasan + - id: BookScaf + - id: BookUSSP + - id: BookUmpor + - id: BookUnath1 + - id: BookUnath2 + - id: BookVitz \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml new file mode 100644 index 00000000000..7c8a90926a8 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -0,0 +1,1275 @@ +- type: entity + parent: BookBase + id: BookLoreBase + abstract: true + name: Лорные книги + description: Данные книги содержат в себе лор Корвакса. + components: + - type: Sprite + sprite: Corvax/Objects/Misc/books.rsi + state: book_expensive_crystal + +- type: entity + parent: BookLoreBase + id: BookExpensiveCrystal + name: Кристаллы особой ценности + description: Данная книга рассказывает о материалах, которые в обиходе было принято называть Блюспейс и Редспейс кристаллами. + components: + - type: Sprite + state: book_expensive_crystal + - type: Paper + content: Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. + Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целого состояния. Чаще всего встречается кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. + Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. + Также известно. Что космеций обладает карбидообразующими свойствами. + + + В природе встречается и иная форма природных кристаллов космеция. А именно космеций с примесью оксида алюминия и хрома. + Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. + Они так же анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. + + + Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии. + Которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. + Этот эффект используется в модулях БС скачков для двигателей космических кораблей. + Отдельными свойствами выделяются кристаллы, измельчённые в мелкодисперсный порошок. + При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению. + Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. + Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. + + + Космеций так же способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. + Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. + Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. + +- type: entity + parent: BookLoreBase + id: BookClones + name: Туртельский Кризис + description: Данная книга рассказывает о восстании, которое устроили клоны в борьбе за равные права. + components: + - type: Sprite + state: book_clones + - type: Paper + content: По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов за не то что личностей, а за живых существ как таковой, некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. В последствии это выливалось гонения на клонов, их убийствами и погромами их жилищ. Большими проблемами также стал вопрос о юридических правах клонов, их интеграция в общество, осмысления этичности самого процесса клонирования. + + + Апофеозом всего этого стал “Туртельский Кризис” []Данные удалены[] года, когда несколько десятков клонов начали забастовку на малой научной станции под названием “Туртель”, находившееся на орбите Марса и занимавшаяся секретными разработками компании NanoTrasen (именно поэтому на ней было довольно большое количество клонов-экипажа), работа станции была саботирована, а всему не клонированному персоналу было предложено эвакуироваться с неё. После того как все желающие эвакуировались, были и те, кто не являясь клонами решили все-таки остаться на станции тем самым выказав поддержку идеям клонов. Клоны и им сочувствующие смогли настроить аппаратуру станции на одну известную медиа-частоту и обратились по ней со своими требованиями, главным из которых было – предоставления всем клонам на территориях ОПЗ и объектах NanoTrasen равных с обычными гуманоидами прав. В результате долгих и не очень продуктивных переговоров, NanoTrasen не нашла ничего лучше, чем послать на станцию отряд зачистки, прибыв на место они устроили настоящую кровавую баню и когда уже подходили к мостику, были взорваны вместе со всей станцией одним из клонов-инженеров, который смог активировать ядерную боеголовку. Когда все произошедшие стало достоянием широкой публики репутации и активам NanoTrasen был нанесен огромный удар, а на многих планетах и станциях прошли митинги и забастовки в поддержку клонов. Массовые беспорядки нарастали, а СМИ лишь ещё больше подливали масло в огонь, так что ОПЗ приняла “Хартию Прав Клонов” и потребовала того же от NanoTrasen, что последние поспешили и сделать. + + + Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. + +- type: entity + parent: BookLoreBase + id: BookDAM + name: Двигатель Антиматерии + description: Данная книга рассказывает о сути работы одного из самых распространённых источников электроэнергии на объектах НТ. + components: + - type: Sprite + state: book_DAM + - type: Paper + content: Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. + + + Контейнеры с топливом представляют собой магнитные ловушки, где граммы антиматерии парят в полном вакууме, не соприкасаясь со стенками контейнера. + + + Двигатель Антиматерии состоят из ядер и стенок. Ядра являются реакционными камерами, где соприкасаются материя и антиматерия. Для простоты используют Гелий и Антигелий. В ядрах установлены мощнейшие преобразователи, способные улавливать как световую, так и тепловую энергию. Стенки ДАМ выполнены из взрывостойкой, сверхпрочной, плохо проводящей тепло композитов и покрытий с парамагнитными свойствами. + + + Важнейшей частью ДАМ является его контроллер. Это сложное устройство состоит из набора трубок и магнитных бесконтактных транспортёров, которые призваны безопасно и дозированно перенести антиматерию в ядро. Так же на контроллере присутствует консоль, показывающая количество остаток топлива по показанию сверхточных весов и система настройки впрыска. Двух условных единиц антиматерии хватает для полной работоспособности одного ядра ДАМ. При этом если превысить это значение, то преобразователи энергии начнут нагреваться и перегреваться. Со временим тепло может проникнуть в камеры с гелием. Увеличение давления выше критической точки спровоцирует нарушение целостности ДАМ, это выведет из строя магнитные системы, под действием гравитации или иных внешних сил антиматерия коснётся любого вещества в помещении и спровоцирует бесконтрольный уничтожающий взрыв. + +- type: entity + parent: BookLoreBase + id: BookFaks + name: Факс + description: Данная книга рассказывает о принципе работы Факса дальней связи. + components: + - type: Sprite + state: book_faks + - type: Paper + content: Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. А потому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты так же заносятся в память. + + Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму. После чего оба потока получают код протокола разбиение на потоки данных. проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, так же каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывает адрес станции. Сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. + + + Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд. Затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. + + + Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. + + + Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. + +- type: entity + parent: BookLoreBase + id: BookFamalis + name: Семьи Межпланетарного Братства + description: Данная книга рассказывает о самых крупных мафиозных кланах Галактики. + components: + - type: Sprite + state: book_famalis + - type: Paper + content: Семья Дилли Джонсона + + Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом готовых выступает власть Дона. А джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане не заплатившие за услуги «полиции» могут так же быть подвергнуты атаке джони или не получают услуги расследования или охраны. Если же так получилось. Что джони защитили гражданине без оплаченной услуги. То тот обязуется выплатить пенни за оказанную услугу. В случае невыполнения этого обязательства его долг может быть продан другой Семье или же джони позаботятся о вечном покое неплатильщика. + + Во внешнем мире джони известны, как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны, как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D». лентой патронов вокруг и одной красной розой, продетой через букву. + + + Клан Сава + + Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это проффессиональные телохранители. Так же они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают. Что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция так же является продуктом работы заводов клана Сава. + + Во всей галактике савы – это пираты, налётчики. Грабители торговых судов. А также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи. Но пока они не наняты, являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. + + + Союз «Клевер» + + Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Кревер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают, как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. + + В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Так же их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. + + + Организация «Ворбакс» + + Ворбаки или же ворбы выполняют роль тайной полиции государства. А также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостинец и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. + + Контрразведывательные управления и организации гос.безопасности разных стран тратит достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостинец «тенистый домик» + + + Семья Глазиуса Мора + + Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. + + За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. + + + Семья Фенарио + + Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. Так же они вносят пожертвования на образование и благотворительность, так же устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. + + В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Так же они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. + + + Фонд Мола Гола + + Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. + + + Семья Синий Камень + + Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. + + + Союз Границ + + Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. Так же управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. + +- type: entity + parent: BookLoreBase + id: BookGrav + name: Генератор искуственной Гравитации + description: Данная книга рассказывает о принципе работы Генераторов искусственной гравитации. + components: + - type: Sprite + state: book_grav + - type: Paper + content: Генераторы гравитации отличаются лишь мощностью. Но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности. С антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. + + + Генератор же гравитации представляет собой невероятное сочетание уникальной по своей природе плазмы с антиматерией. При облучении плазмы антигелием формируется не обычная фотонная вспышка, а вспышка гравитационного антиполя (оно же «поле искусственной гравитации»). Все тела, попадающие в действие антиполя начинают воспроизводить гравитационное искажение, не меняя свою стандартную массу, а формируя мнимую гравитационную массу. Таким образом у всего в поле действия генератора гравитации увеличивается ньютоновское притяжение друг к другу, не используя центробежное вращение, как в космических кораблях тысячелетней давности. + + + Незначительным побочным эффектом является формирование отрицательной мнимой массы у самого генератора, из-за чего его может переносить один человек, ибо генератор очень лёгкий. + +- type: entity + parent: BookLoreBase + id: BookHalifat + name: Нормы Космоислами и шесть стрел + description: Данная книга рассказывает о савокупности религиозных и светских догм, которые практикуются в государсвенном устройстве Халифатского Божественного Конгломирата. + components: + - type: Sprite + state: book_halifat + - type: Paper + content: Духовная состовляющая + + + Шахада + + Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. + + + Намаз + + Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. + + + Саум + + Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. + + + Закят + + Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег идущих к Духовному собранию идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, так же на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. + + + Хадж + + Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а имено + + 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. + + 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. + + 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. + + + + Земная составляющая + + + Ограниченная монархия + + Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. + + + Национализм + + Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. + + + Народность + + Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. + + + Лациизм + + Установление преимущественно светского характера государства. Недопускаяния религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. + + + Этатизм + + Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. + + + Революционность + + Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. + + +- type: entity + parent: BookLoreBase + id: BookRedspace + name: Редспейс + description: Данная книга рассказывает о сути редспейса. + components: + - type: Sprite + state: book_redspace + - type: Paper + content: Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. + + + Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. + + + Учёные могут лишь предполагать количество осей и орты-операторы, которые по ним отложены. Тем не менее уже есть определённые идеи описания процессов данного пространства. Каждая точка является сочетанием операторов квантовой вероятности, импульса, координаты и понятия существования. Неотъемлемым элементом динамики подобных пространств является оператор эволюции. Он воплощает в себе вариант изменения пространства. + + + По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. + +- type: entity + parent: BookLoreBase + id: BookShips + name: Классификация кораблей ОПЗ + description: Данная книга показывает классификацию флотов в ОПЗ. + components: + - type: Sprite + state: book_ships + - type: Paper + content: (S - Sigma) МКК – маленькие космические корабли. + + К гражданским МКК относятся корабли следующий назначений. + + 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. + + 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. + + 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. + + + К военным МКК относят корабли несущие на себе какое либо вооружение. Они имеют следующие назначения. + + 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого либо вооружения и брони. + + 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. + + 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. + + + + (T – Teta) СКК – средние космические корабли. + + К гражданским СКК относятся. + + 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. + + 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. + + + К военным ССК относятся. + + 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. + + 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. + + 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. + + + + (O – Omicron) СККК – Средне крупные космические корабли. + + 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. + + 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. + + + + (G – Gamma) ККК – Крупный космический корабль. + + 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. + + 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать Недолинкорами. + + 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. + + + + (B – Beta) ТКК – Тяжёлые космические корабли. + + 1) Линкор. Линкоры - это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. + + 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. + + 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. + + 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. + + + + (A – Alpha) СТКК – Сверх тяжёлые боевые корабли. + + Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты - это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится, не меньше чем затраты на содержание какой-нибудь около столичной планеты. + + + + ОКК – Особые космические корабли. + + 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. + + 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ находящихся в состоянии гибернации. + + +- type: entity + parent: BookLoreBase + id: BookZP + name: Зарплатная система НТ + description: Данная книга рассказывает о том, как сотрудники проекта "Космическая станция 14" получают зарплату. + components: + - type: Sprite + state: book_zp + - type: Paper + content: Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. + + + Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. + + + Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 + + + Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 + + + Коэффициенты по назначении станции -- Административная станция – 2,0 Бизнес станция – 1,6 Исследовательская станция – 1,7 Экспериментальная станция – 1,8 Коммерческая станция – 1,3 Медицинская станция – 1,2 Оборонная станция – 1,7 Транспортная станция – 1,0 + + + Коэффициенты по цели станции -- Отдел напрямую занимается целью станции – 1,5 Отдел косвенно связан с целью станции – 1,25 Отдел не занимается целью станции – 1,0 + + + Коэффициенты по профессиям + + Повар -- 1 + + Уборщик -- 1 + + Сервисный работник -- 1 + + Священник -- 1 + + Репортёр -- 1 + + Музыкант -- 1 + + Мим -- 1 + + Клоун -- 1 + + Зоотехник -- 1 + + Ботаник -- 1 + + Боксёр -- 1 + + Библиотекарь -- 1 + + Бармен -- 1 + + Грузчик -- 1 + + Технический ассистент -- 1 + + Кадет СБ -- 1 + + Научный ассистент -- 1 + + Интерн -- 1 + + + Офицер СБ -- 1.1 + + Врач -- 1.1 + + Инженер -- 1.1 + + Психолог -- 1.1 + + + Химик -- 1.2 + + Утилизатор -- 1.2 + + Атмосферный техник -- 1.2 + + + Парамедик -- 1.3 + + Детектив -- 1.3 + + Учёный -- 1.3 + + + Глава персонала -- 1.4 + + Квартирмейстер -- 1.4 + + + Смотритель -- 1.5 + + Ведущий врач -- 1.5 + + Ведущий инженер -- 1.5 + + Инструктор СБ -- 1.5 + + Ведущий учёный -- 1.5 + + + Старший инженер -- 1.8 + + Научный руководитель -- 1.8 + + Главный Врач -- 1.8 + + Глава Службы Безопасности -- 1.8 + + + Капитан -- 2.5 + + + Коэффициенты штрафов + + Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. Гибель вне станции – 0,1. Факт формируется после окончания смены. Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. Отстранение от должности и нарушение СРП При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. + + + Гибель + + В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получения инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждени - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам Ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. + + + Прибыль станции + + Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. + + + Растраты + + Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. + + + Дополнительное премирование + + Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. + +- type: entity + parent: BookLoreBase + id: BookUSSP + name: Политическая система СССП + description: Что там у них делается в этом их социализма... + components: + - type: Sprite + state: book_polit_USSP + - type: Paper + content: Первые среди равных + + Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. + + + Президиум и Советы + + Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. + + Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. + + Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. + + + Народные секретариаты и Генеральный Секретарь + + Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. + + Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. + + + Суды и главное управление красных комиссаров + + Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). + + Суды гражданских дел так же классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. + Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. + + +- type: entity + parent: BookLoreBase + id: BookMirt + name: Культурный столп Империи Миртана + description: Может быть, если поняти их культуру, то можно и налажить связи? + components: + - type: Sprite + state: book_cult_mirt + - type: Paper + content: В данный момент в народе доминирует одна единственная идея. + + «Все умрут. Гибель неминуема. Ничто это не остановит. Всё что мы можем – отсрочить конец галактики». Бесконечный рой ксеноморфов показал тщетность существования человечества. Но миртранийцы давно преодолели панику и свыклись с мыслью о своей смерти. Они всегда готовы умереть. Они верят, что являются щитом для Галактики. Не несокрушимым. Щитом с ограниченой толщиной, что истончается с каждым днём. + + Они осознают, что умрут сами. Что умрут их любимые родители. Что умрут их близкие, их друзья. Что, возможно, им придётся хоронить своих детей. Или то что от них осталось. А возможно их детей сожрут с концом и на могильном холмике окажется лишь небольшой памятный камень с фотографией того, от кого не осталось и мезинца. Эта идея живёт в каждом гражданине, но особенно она сильна у жителей планет-крепостей в Линии Надежда и Любовь. Каждый гражаднин Империи проходил базовую военную подготовку и умеет пользоваться оружием. Но жители Линий могут соревноваться в умении с солдатами некоторых ЧВК и стран. Они дисциплинированы, живут по практически военному расписанию, знают где находятся склад с оружием и по первому протяжному и рвущему душу сигналу тревоги готовы стиснуть зубы, сжать кулаки до крови, и, стараясь игнорировать подступающие слёзы, заранее хороня своих детей, друзей и близких, идти к ближайшему арсеналу и вооружаться, дабы отсрочить момент гибели человечества хотя бы на мгновение. + + Так умирали люди на планетах-крепостя Линии Вера. Так умирают люди на планетах Линии Надежда прямо сейчас. Так готовы умирать люди на планетах-крепостях Линии любовь. + + И они не уедут. Не улетят. Не потому, что тоталитарное государство их не выпустит. Нет. Просто… они понимают, что гибель неминуема в любом случае. Так лучше встретить с оружием в руках! Когда закончатся патроны – штыками! Когда сломаются штыки – ножами! А когда затупится нож, выгрызать ксеноморфам глотки ногтями и зубами. Ибо нужно отсрочить неминуемое… Хоть на одну наносекунду. Хоть на одного ксеноморфа. + + Легенды гласят о моментах, когда Империя была в шаге от падения. Тогда являлся Император Миртан и создавал Проявление! Оно помогало уничтожить угрозу, но и заставляло Императора угаснуть… А потому каждый гражданин понимает, что Император это не просто небожитель, а буквально равный им спаситель Человечества. Потому он всеми любимый и почитаемый. + + Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… + + Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». + +- type: entity + parent: BookLoreBase + id: BookGior + name: ГИОР + description: Что такое Глобальная инициатива Объединённых Рас + components: + - type: Sprite + state: book_gior + - type: Paper + content: ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан) , идейно ГИОР пришла на замену ООН, организации некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций а также, контроль за соблюдением принятых законов. + + + Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. + + Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) + + Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) + + Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) + + Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) + + + 1) Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ), является достаточно старым формированием и именно она изначально и носила название ГИОР и только позже, после формирования других государств она была переименована в ГИОРиМУ. Целью данной организации является урегулирование вопросов касаемых межрасового общения, а также отслеживание за соблюдением ОПРС (Общие Права Разумных Существ), важным уточнением будет то, что при нарушении ОПРС каким либо государством или корпорацией, эту ситуацию будет рассматривать Всегалактический Суд Разумных Существ. + + + В состав данной организации входят все расы галактики, интересы которых представляют их представители. От каждой расы может выдвигаться несколько представителей, и их число зависит от численности самой расы (1 представитель на 10 миллиардов представителей этой расы). Из-за того, что точное число представителей какой-либо расы подчитать достаточно сложно, общим решением принято округлять число представителей в меньшую сторону. Также важным уточнением будет, что ГИОРиМУ является надгосударственным формированием, а значит, что представители рас могут являеться гражданами разных государств. + + + В состав ГИОРиМУ входят. + + Люди – порядка 71 представителей + + Унатхи – порядка 31 представителей + + Дворфы – порядка 35 представителя + + Слаймолюды – порядка 11 представителей + + Нианаы – порядка 34 представителя + + Воксы – 1 представитель (выступает в качестве наблюдателя) + + Арахниды – порядка 47 представителей + + Дионы – 1 представитель (выступает в качестве наблюдателя) + + Таяраны – порядка 46 представителей + + Вульпакины – порядка 60 представителей + + + 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. + + + В состав ГИОРиГУ входят. + + ОПЗ (Объединённое Правительство Земли) + + Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпакины + + Союз Советских Социалистических Планет + + Умпорская Федерация + + Великая Империя Нотда + + Ноократия Эранта + + СНК (Союз Независимых Колоний) + + Халифатский Божественный Конгломерат + + + В качестве наблюдателей в ГИОР находятся. + + Империя Миртана + + Корпорации Большой Пятёрки + + + 3) Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ), была создана относительно недавно в 2781 году, в ответ на разрешение, выданное правительством ОПЗ, корпорациям на освоение регионов фронтира. Занимается контролем за исполнением принятых резолюций и соглашений, а также подписанием новых. При этом ГИОРиКУ имеет огромную когорту своих представителей, которые постоянно находятся в разъездах по всей галактике и занимаются отслеживанием нарушений. + + + 4) Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР), самая «молодая» организация в составе ГИОР. Занимается тем, что отслеживает всевозможные угрозы галактике, а также старается их предотвратить. Самой первой и на данный момент единственной задачей является отслеживание ситуации с ксеноморфами, а также всевозможная поддержка государств, которые занимаются урегулированием данной проблемы. Постоянными членами СовБезГИОР) являются ОПЗ и Империя Миртана (не смотря на статус наблюдателя в заседаниях самой ГИОРиГУ, с недавних пор Империя Миртана обладает особым правовым статусов в СовБезГИОР из-за того, что именно она является щитом галактики от угрозы ксеноморфов). + + Также в состав СовБезГИОР входят все остальные государства и организации, которые входят в ГИОРиГУ + +- type: entity + parent: BookLoreBase + id: BookSNK + name: Внешняя политика СНК + description: Да, они наши враги, но стоит осознавать, кто за, а кто против них + components: + - type: Sprite + state: book_snk + - type: Paper + content: С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. + + Немалая часть бюджета уходит на попытки упрочнить политические отношения с Умпорской Федерацией. В этом правительство СНК находит крайне благодатную почву, ибо Умпорская Федерация страдает от внутренних кризисов, постепенно становясь зависимой от поставок гуманитарной помощи и производственного сырья из СНК и СССП. + + К Ноократии Эранта СНК относится нейтрально. Ноократия в своё время также пошла против ОПЗ, что принималось одобрительно со стороны СНК, так как это могло значить появление ценного союзника в будущих конфликтах. К всеобщему удивлению, ОПЗ спокойно согласилось принять независимость при условии выполнения ряда требований, чему СНК могло лишь позавидовать. На данный момент в Ноократии есть филиалы компаний СНК, а сама Ноократия рассматривается скорее как поставщик ценного технологического оборудования и кладезь выдающихся ученых, что крайне интересуют как отделы разработок отдельных компаний СНК, так и всего государства в целом. + + Правительством СНК проводятся мероприятия по налаживанию безопасности торговых путей с Халифатским Божественным Конгломератом, постепенно налаживая активную торговлю и культурный обмен. Однако дальнейшему укреплению дружеских отношений препятствуют активные боевые действия с ОПЗ и неготовность Конгломерата принимать чью-либо сторону. Не менее важной проблемой является подрывная пиратская деятельность Межпланетарного Братства на торговых маршрутах. + + Отношения между СНК и СССП находятся в висячем положении. Политика СНК во многом отличается от ОПЗ, но государство целиком и полностью продолжает полагаться на частные компании, куда меньше ограничивая их в сравнении с компаниями ОПЗ. Они обрели непозволительное для СССП влияние и силу, а также создали огромный разрыв между финансами и влиянием жителей. С другой стороны — именно возгоревшийся очаг революции зарождающейся СНК дал возможность СССП отделиться от ОПЗ относительно бескровно, ровно как и тихий переворот СССП стал ключевым фактором для ОПЗ в прекращении полномасштабных боевых действий против СНК, давая последним время окрепнуть. + + С Миртанийской Империей, как и ожидало правительство СНК, наладить дружественные отношения не вышло из-за ксенофобной политики первых и высокой популяции ксеносов у вторых. Торговых отношений и спейслиза с Империей тоже не ведётся как из-за отсутствия общих границ, так и из-за политики закрытой торговли самой Империи, а также из-за того, что все доступные боевые силы и корабли нужны самой СНК позарез. + + Межпланетарное братство удостоилось особого внимания со стороны СНК, ведь именно Братство, по мнению СНК, может стать очередным столь востребованным союзником в борьбе против ОПЗ, благодаря которому можно значительно расширить информационную сеть. Правда, действия отдельных группировок братства на территориях СНК, порой, носят абсолютно не дружественный характер. Примером могут послужить многочисленные улики, что напрямую указывают на причастность семьи Дилли Джонса к террористическим актам на государственных заводах СНК. + + Конечно же и в ГИОР есть представители СНК. Если отношения с ОПЗ вновь достигнут войны, то именно возможность воззвать к жалости остальных членов ГИОР может помочь быстро пресечь военный конфликт. В других случаях, особых отношений с ГИОР нет. Можно сказать, что предоставляемая СНК помощь и степень выполнения требований ГИОР в основном зависит от настроения компаний СНК. + + С НТ правительство СНК связывает закупка некоторые патентов и научных статей, которые могли бы так или иначе помочь улучшить эффективность своих войск и получить преимущество над ОПЗ. Иные же технологии покупаются отдельными корпорациями, учреждениями и, в общей сложности, разношерстными бизнесменами. Также СНК неоднократно намекало НТ, что если та в будущем решит выйти из состава ОПЗ насильственным способом, то СНК готово предоставить ей место в своем реестре и военную помощь в обмен на финансирование правительства. Потеря НТ была бы крайне сильным ударом для ОПЗ и значительным дополнением казны СНК. + +- type: entity + parent: BookLoreBase + id: BookUmpor + name: Внешняя политика Умпорской Федерации + description: Наши соседи, что стараются улучшить взаимоотношения с нами. А как к ним относятся другие? + components: + - type: Sprite + state: book_umpor + - type: Paper + content: В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. + + Когда гуманитарный кризис стал особенно острым на помощь Федерации пришло СНК. Сейчас практически на безвозмездной основе они совершают регулярные поставки (с помощью корпорации «Космологистика») гуманитарной помощи, сырья и готовой продукции. А также присылают своих специалистов. Правительство Умпорцев понимает, что рано или поздно СНК потребует что-то взамен. Что-то очень существенное, но сейчас у них нет выбора, кроме как принимать поставки. + + С Великой Империей Нотда установился нейтралитет. Ведётся торговля, есть определённое политическое взаимодействие, но нет никаких тесных взаимоотношений. + + СССП считают, что основные ценности Федрации очень близки их социалистическому духу коллективизма труда и общего блага, а потому они договорились с Великой Империей Нотда организовать гуманитарный коридор для поставок материалов и гуманитарной помощи. Взамен Умпорцы предоставляют некоторые технические решения в области химии и биологии чрезвычайных ситуаций, а также приёмы быстрого строительства и перестройки. + + Ноократия Эратна является для Умпорской Федреации жутким и непримиримым врагом. Они находятся в постоянной оппозиции, а на границах всегда дежурят свежие боевые части и флоты. Обе стороны осознают. Что хоть вторая война за отделение минула, но впереди ещё будет третья. Между Империей Миртрана и Федерацией нет практически никаких отношений. Они полностью не интересуют друг друга. + + Халифатский Божественный Конгломерат видит в гуманитарном и нравственном кризисе Федерации возможность распространения своей религии и идеологии. На территории государство действую группы проповедников, речи которых находят активный отклик в самых разных слоях населения. + + Гуманитарный, образовательный и нравственный кризис спровоцировал рост преступности. Межпланетарное Братство воспользовалось этим для расширение своего влияния из-за чего появляются всё более организованные ОПГ. + + Для решения экономических проблем Федерация учредила ряд зон с упрощённым налогообложением, ослабленным законодательством и прочими льготами для привлечения внешних корпораций. Это позволило привлечь немало внешнего капитала. Кроме того, из-за особенности планеты Крения на ней были построены судоверфи Космологистики. Космологистика также помогает со снабжение гуманитарной помощью из других государств. Из-за активности пиратов Федераия и её компании часто нанимаю для защиты транспорта авиагруппы корпорации Витезтви. Корпорация Гефест (Глобальная Инициатива) активно продаёт Федерации сырьё и еду. + + У Федерации нет отношений с Накамура Инжениринг, а с НаноТрейзен некоторое время были натянутые отношения из-за их тесного взаимодействия с Ноократией Эранта. Но сейчас отношения выправляются, и Умпорцы интересуются последними научными достижениями в некоторых важных для них областях. + +- type: entity + parent: BookLoreBase + id: BookNooc + name: Классовая структура Ноократии Эранта + description: Она наши соседи. Они наши коллги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... + components: + - type: Sprite + state: book_nooc + - type: Paper + content: Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. + + Разделение по классам происходит на основе сложной проверки интеллектуальных способностей, которая включает в себя целый ряд испытаний, которые каждый гражданин происходит в возрасте 20-ти лет. Испытания проверяют знания, скорость обучения, работу мозга, интуицию, склонность к психическим заболеваниям, способность применять знания, собирать, усваивать и использоваться предметы и информацию в условиях экстренных ситуаций. Весь этот комплекс мероприятий в народе назван Экзамен. Результат Экзамена зачисляет гражданина в конкретный класс. По ходу жизни гражданин имеет право пересдавать Экзамен каждые два года. Оценка Экзамена составляется по шкале баллов Эранта. В шкале 300 баллов, и она разделена на 15 равных промежутков, которые и соответствуют классам. + + Низший класс (15-13) может претендовать на самые низкие должности - шахтёры, уборщики, работники канализации, чернорабочие, батраки на фермах и подобное. Тупой и монотонный тяжёлый труд. Низкий класс (12-10) может рассчитывать на низкоквалифицированные должности в различных конторах и предприятиях - секретари, клерки, техники, грузчики, монтёры, медсёстры, санитары, водители, солдаты и тому подобное. Не слишком ответственное дело. Средний класс (9-7) могут занимать профессиональные должности, но не выше определённого уровня - инженер, врач, фельдшер, лаборант, бухгалтер, офицер младшего состава и тому подобное. Важное и полезное занятие, но без заделов на руководство. Высокий класс (6-4) могут быть руководителями отделов, заведующими отделения, лабораториями, офицерами среднего состава и так далее. Эти люди важные и уважаемые начальники и руководители. Высший класс (3-1) – это директора, акционеры, члены правительства, высшие чины государства и армии и все подобные сильны сего мира и государства. + + Важно понимать, что высший класс пользуются благами, как у королей. У них есть личные слуги из более низких классов. Их слова — это практически закон. Они по одному движению руки получают всё, что хотят. Их личных счетов хватит на покупку целых городов, а у Умнейших и планет. Напротив, низший класс влачит жалкое существование. Заработанных денег едва хватает на поддержание жизни - базовое питание, уплату налогов, транспортные расходы. + + Очень часто классовое расслоение выражается и в раздельном проживании. Гетто низших, трущёбы низких, кварталы средних, районы высоких и планеты высших. Это накладывает не просто сильный отпечаток на единстве общества, но приводит к практически полному регрессу института семьи. Желание жить как можно лучше закладывается в каждого гражданина с детства, и если у родителей появляется ребёнок, который после первого Экзамена оказывается более высокого класса, то он вполне может покинуть родителей и разорвать с ними связи. + + Культивирование личного таланта и интеллекта, а также возможностей, которые можно получить, применяя эти самые интеллект и талант становятся центральной идеей внутренней политики Ноократии. Но если в стремящейся к прибыли научной корпорации НаноТрейзен была организована полноценная и сложная система образования, которая требует на своё существование безумное количество сил и финансов, чтобы как можно большее количество образованных людей приносили как можно большее количество полезной работы и научно-технических достижений, то Ноократия на государственном уровне сформировала культ личности гения. Любого гения государства. При это гения природного. Очень часто редкие граждане, которые имеют врождённый талант крайне быстро поднимались по социальной лестнице классов и росли в карьере, тогда как трудолюбивые люди порой достигали границы, которую уже не в силах были преодолеть своим трудом. + +- type: entity + parent: BookLoreBase + id: BookNakamura + name: Накамура Инжениринг + description: Чем занимаются в корпорации Большой Пятёрки накамура Инжениринг + components: + - type: Sprite + state: book_nakamura + - type: Paper + content: Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. + + О колонизации На изведанную солнечную систему прилетает колонизационная группа состоящая из нескольких кораблей которые трраформируют планеты и строят звездную электростанцию, которая снабжает электричеством все звездные системы. Номенклатура экспедиции состоит из двух кораблей-флагманов, нескольких вспомогательных шаттлов, нужных для организации логистики, а также корабль-танкер, способный выдерживать температуру звёзд. Впоследствии один корабль-флагман становится космической станцией-хабом, а второй используется службой безопасности для защиты колонии от внешних и внутренних угроз. + + Подробнее о колонизации Звезда. На ее орбите строят космическую электростанцию, которая, с помощью солнечных панелей вырабатывает массу энергии. Полученное электричество используют для синтеза антиматерального топлива которое впоследствии развозят на танкере по всем колониям. Всю работу на станции выполняют борги, люди не переносят высокую жару. + + Планета для сельского хозяйства. Колонизационный отдел выбирает планету с наиболее подходящей почвой для выращивания растительных культур и разведения скота. Впоследствии эту планету начинают терраформировать - Устанавливают генератор гравитации и создают благоприятную атмосферу на планете. После чего на нее завозят почву пригодную для выращивания еды, а также возводят станцию по добычи воды из атмосферы. Когда на планете появляется достаточно воды происходит массовая высадка генно модифицированных деревьев и растений, которые способны к быстрому фотосинтезу и высокой урожайностью. Когда воздушно-водный цикл способен стабильно поддерживаться, на планете начинают разводить домашний скот. Скот используют для получения мяса и удобрений. Большую часть работе на планете выполняют борги. Люди контролируют стабильность цикла, химический состав почвы и допустимость токсичности растений. + + Планета для добычи. Для этих планет выполняется не полный алгоритм терраформирования - Устанавливается генератор гравитации и строится завод для переплавки ресурсов. Всю работу на планете выполняют борги. + + Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. + + Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизация, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. + +- type: entity + parent: BookLoreBase + id: BookVitz + name: Космофлот корпорации Витезтви + description: Как комплектуются базовые соединение космофлота корпорации Большой Пятёрки Витезтви + components: + - type: Sprite + state: book_vitz + - type: Paper + content: 1) Разведывательная авиапара + + Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. + + + 2) Истребительная авиапара + + Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. + + + 3) Истребительное звено + + Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. + + + 4) Разведывательное звено + + Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. + + + 5) Легкобомбардировочное звено + + Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. + + + 6) Тяжелобомбардировочное звено + + Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. + + + 7) Истребительная эскадрилья + + Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. + + + 8) Разведывательная эскадрилья + + Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. + + + 9) Легкобомбардировочная эскадрилья + + Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. + + + 10) Тяжелобомбардировочная эскадрилья + + Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. + + + 11) Истребительный авиаполк + + Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. + + + 12) Бомбордировочный авиаполк + + Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. + + + 13) Специальный авиаполк + + Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. + +- type: entity + parent: BookLoreBase + id: BookGefest + name: Компания Гефест + description: Немного фактов о корпорации Большой Пятёрки Гефест + components: + - type: Sprite + state: book_gefest + - type: Paper + content: Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. + + После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. + + Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. + + С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. + + Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. + + Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией,, изучением которых занимаются другие корпорации. + + + По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. + + С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. + + Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. + + Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. + + Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники особенно проявившие себя. + +- type: entity + parent: BookLoreBase + id: BookConarex + name: История компании Конарекс + description: Она и есть. История главного конкурента Космологистики в отрасли + components: + - type: Sprite + state: book_conarex + - type: Paper + content: 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. + + 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. + + 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. + + 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. + + 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. + + 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. + + 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. + + 2721 год. В сферу работы попадает и сектор Импор. + + 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. + + 2728 год. Умирает основатель Ноократии. А Симо почему то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. + + 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. + + 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. + + 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. + + 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. + + 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. + + 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. + + 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. + + 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. + + 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. + + 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. + + 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. + + 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. + + 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. + + 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. + + 2813 год. Онни умирает, оставляя всё брату Юхани. + + 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. + + 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. + + 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. + + 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! + + 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). + + 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того Conarex начинает работу на Фронтире. + + 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. + + 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. + + 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. + + 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. + + 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. + +- type: entity + parent: BookLoreBase + id: BookPetr + name: Идеи, цели и культруа Петрищевцев + description: Стоит прочитать дабы понять какими же глупыми идеалистами являются эти экстремисты-революционеры + components: + - type: Sprite + state: book_petr + - type: Paper + content: Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. + + Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. + + В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. + + Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. + + Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! + + Все боевики вне зависимости от ранга носят одинаковую форму. Это соответствует Петрищевским идеалам всеобщего равенства. Каждый, будь то новобранец, бывалый боевик, специалист, ветеран или командир, носят одинаковые штаны, куртки с багровыми рукавами, одинаковые пилотки и сапоги. + + Плащ ветеранов и командиров олицетворяет окрашенное кровью угнетённого пролетариата красное знамя. Такие плащи доверяют лишь бывалым воякам и сподвижникам идей революции. Это большая честь, это настоящее признание бойца уважаемым Петрищевцем. + + Абсолютным почтением пользуются исторические революционные личности. На каждой базе Петрищевцев можно найти портреты, исторические труды или иную литературу посвящённую отцам-революции СССП и самым разным революционерам Старой Земли. Эти материалы часто используют в политбеседах с революционерами. Многие перечитываются, как библия революции. + + Петрищевцы живут на базах в атмосфере постоянного братства. Это уже больше, чем товарищество, хоть и зовут друг друга товарищами. Боевики просыпаются вместе, едят вместе, тренируются и занимаются снаряжением вместе, вместе идут в бой. У них нет своей собственности, кроме предметов личной гигиены и мелких мелочей. Им не из-за чего толком ругаться. + + Каждый без промедления готов отдать жизнь ради своих братьев-товарищей. Петрищевцы осознают, как на самом деле они одиноки в широкой галактике. И они осознают это особенно явно, когда встаёт вопрос разрыва с СССП и изгнания. Лчень ярко это видно по шлемам скафандров, которые выглядят «плачущими, но опасными». Это ощущение одиночества, не исключительности, а именно одиночества усиливает то самое чувство братства! Петрищевцы всегда спасают своих товарищей. Пилоты десантных транспортов, никогда не покинут падающий шаттл, если на борту братья. + +- type: entity + parent: BookLoreBase + id: BookSaibasan + name: Активы компании Саибасан + description: рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов + components: + - type: Sprite + state: book_saibasan + - type: Paper + content: Заводы + + Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. + + Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех.обеспечения коммуникаций, а также инженеры выходного контроля. + + + Дизайн центры + + Как правило это небольшие офисы, расположенные в самых разных местах. В них работают инженеры-проектировщики схемотехники. Они занимаются разработкой схем по заказам различных предприятий и государств. Проектировка происходит, как полностью сквозная, с созданием полностью своей уникальной микросхемы, так и использующая готовые технологические шаблоны одной из имеющихся сборочных линий. + + + Технологически лаборатории + + Данных лабораторий не много. В них учёные-материаловеды и инженеры-технологи проводят исследования и эксперименты над различными параметрами и показателями, варьируя их и добиваясь куда лучших результатов характеристик! (на самом деле они достигают главной истины любого технолога - «Не ТРОГАЙ, МАТЬ ТВОЮ, НАСТРОЙКИ, А ТО Я ТЕБЕ БОШКУ РАЗНЕСУ!» + + + Административное отделение + + В это отделение входят бухгалтерия, директорат корпорации. Тут же отдел приёма заказов, подразделение спикеров и, как ни странно, информационная безопасность, которая на самом деле напрямую связана с директоратом. + + + Взаимодействие с обществом + + Ни у кого не было уверенности, что дочерняя компания корпорации Cybersun Industries, сможет быть чем-то помимо вспомогательного подразделения, созданного для уменьшения расходов на электронику. Но в итоге это, хоть и дочерняя, но крупная компания-производитель электроники, известная по всей изведанной Галактике. Приборы с чипами Saibasan – это гарантия качества и надёжности. + + + Активы корпорации + По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. + + + +- type: entity + parent: BookLoreBase + id: BookUnath1 + name: Культура унатхов (ч.1) + description: Первая часть великолепного ислледования этой замечательной расы + components: + - type: Sprite + state: book_unath_1 + - type: Paper + content: Мимика и Жесты + + В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. + + При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. + + + Одежда и Украшения + + Традиционная одежда унатхов обычно крайне открытая, с менее строгими стандартами пристойности, чем людская. Текстура материала играет меньшую роль, чем цвет, а в застёжках ценится прочность. Богатая одежда, в противоречие стандарту, очень тёплая и основана на большом количестве замысловато перекрывающих друг друга слоёв. В местах с прохладным климатом, тёплая одежда наслаждается значительно более утилитарным отношением и резко контрастирует с тропическими аналогами своей обыденностью. + + За годы контакта унатхи переняли человеческую одежду, слегка адаптировав её под свою анатомию. В сферах правления, бизнеса, науки и военного дела, человеческая форма одежды стала стандартной даже среди более традиционалистически настроенных родов. + + За пределами родного сектора одежда унатха больше определяется местной культурой, чем какими-то историческими предпочтениями, но некоторые всё равно будут выбирать более свободную одежду для труда, и более тёплую одежду для щегольства. + + Расположенные вдоль шеи и по бокам головы кожные складки и выступы часто украшаются пирсингом или тату. В рисунках преобладают абстрактные узоры с природными мотивами, которые не потеряют своего смысла или структуры при движении кожи. + + Многие унатхи берегут свои рога, хотя не у всех они встречаются, и их отсутствие не считается чем-то унизительным. Боязнь отколов и повреждений выливается в относительно низкую популярность каких-либо модификаций, но иногда можно встретить ящера с вырезанными на рогах узорами. Нарочное спиливание одного или обоих рогов, сверление и стачивание также имеют место быть, но редко. + + В попытках сгладить или наоборот — подчеркнуть естественные неровности черепа, унатхи обоих полов могут использовать краску и макияж. У мужчин встречаются искусственные костяные наросты, прикрепляющиеся на бровные дуги – подобное, как считается, придаёт образу внушительности и серьезности. + + +- type: entity + parent: BookLoreBase + id: BookUnath2 + name: Культура унатхов (ч.2) + description: Вторая часть великолепного ислледования этой прекрасной расы + components: + - type: Sprite + state: book_unath_2 + - type: Paper + content: Искусство + + Подобное влияние не обязательно было однобоким. После контакта людям открылся мир унатхского искусства. Пройдя через абсолютно другую историю, стили и устои их творчества значительно отличались от привычных людям, но были и объединяющие факторы, но были и параллели. Например, в унатхской живописи существовали одиночные портреты, однако большой популярностью пользовались массивные родовые и семейные картины, также выполнявшие функцию генеалогического древа. С одним отличием — вместо древовидной структуры, унатхские рода сплетались из множества лиан и ростков, вились вместе, потом расплетались снова или меняли свою конфигурацию. От всей запутанности некоторых образцов у зрителей могла закружиться голова. В целом, во всех визуальных медиумах унатхов часто присутствует больше мелких деталей, чем в человеческих. + + Как и музыка любой другой разумной расы, музыка унатхов предстает в невероятном количестве форм, так что покрыть её в достаточной степени в этой статье не представляется возможным. За последние сотни лет в музыке появилось бесчисленное множество электронных, синтезированных звуков, но унатхи не забывают и свои традиционные инструменты. Унатхские песни пользуются умеренной популярностью — некоторые находят их излишне громкими, с большей ролью ударных инструментов и меньшим упором в мелодию. + + С распространением ТрансЛита, к доступной людям части унатхского наследия присоединились кино и литература. Среди рассказываемых унатхами историй выделяется много отличных от человеческих архетипов. Одним из них являются ссен'гха — мореплаватели времён Золотого Века Морей, исследователи, послы, шпионы. Рассказами об их приключениях изобилует как литература унатхской современности, так и популярная культура. Человеческому наблюдателю будет удобно думать о ссен'гха, как об унатхских аналогах рыцарей или ковбоев — в той роли, которую они играют в культурном сознании общества. + + + Война и Мир + + По окончании Последней Войны в обществе унатхов одно из лидирующих мест заняли антимилитаризм и пацифизм. Всем было ясно одно — подобное не должно повториться никогда. Многие участники Кшеса Д’тхун, федерации-предшественника Унатхской Автономии, начали уменьшать свои армии, полагаясь на сеть тесных торговых и дипломатических связей для урегулирования конфликтов. С раннего возраста унатхам объясняли ужасы войны, и обучали способам решать конфликты без насилия. Молодым унатхам и унати показывали, что сотни лет мира привели к совместному процветанию, и поэтому у каждого разумного существа есть моральная обязанность не допустить войны. Такая практика сохранилась с незначительными изменениями до наших дней, но полтысячи лет назад ее популярность пошатнулась. + + Война с воксами, возникновение ненавидящей всех не-людей Миртанийской Империи и военное присутствие ОПЗ пошатнули повальную веру в послевоенные идеалы. Часть унатхов начала рассматривать войну и армию как необходимые инструменты для обеспечения дальнейшего существования унатхской цивилизации, а пацифизм — как проявление слабости перед лицом неумолимого врага. Популярность унатхов в качестве солдат ОПЗ и наемников также повысила привлекательность милитаристских настроений. В наши дни военный сектор Моргха Унатх постепенно набирает во влиянии и богатстве, что выливается в растущее недовольство идеологической миролюбивостью. + + +- type: entity + parent: BookLoreBase + id: BookDione + name: Особенности биологического строения дион + description: Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растенеевидным телом + components: + - type: Sprite + state: book_dione + - type: Paper + content: Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. + + Притом стоит отметить, что нимфы являются самобытным живым организмом, способным существовать без остальных нимф и древовидного тела. Посему у каждой нимфы есть собственные мозг, желудок, печень, почки, лёгкие, сердце и прочие органы. Но при этом в сочетании трёх нимф и древовидного тела некоторые органы начинали видоизменяться, своего рода, срастаясь с растениями тела. Для одной нимфы метаморфозы нескольких органов разом стали бы смертельны, потому нужно минимум три. У одной видоизменяется мозг, у второй – желудок, у третьей – лёгкие. + + По этим причинам примечателен процесс питания дион. При поглощении еды, диона посредством прочных побегов проталкивает пищу или жидкость в углубление в голове, где располагаются рты трёх нимф. Нимфы потребляют не равное количество еды. Нимфа с видоизменённым мозгом ввиду сравнительно малого (в сравнении с другими видоизменёнными органами вместе) энергопотребления есть всего седьмую часть всей еды, диона с видоизменёнными лёгкими – две седьмые, а нимфа с видоизменённым желудком получает в общей сложности четыре седьмые. Притом из полученной третьей нифой пищи лишь четверть разлагается полностью и передаёт всю энергию самой нимфе, остальное раскладывается на простые сахара, минеральные вещества, углеводороды и воду. Видоизменённый желудок дионы соединяется напрямую с корнями растений. Это позволяет передавать питательные вещества и воду в растеневидное тело. Притом проводящей питательные вещества жидкостью является вода, которая насычается получаемыми из еды минеральными веществами, витаминами и сахарами, становясь веществом напоминающим берёзовый сок. + + Дополнительным механизмом питания и жизнеобеспечения является химосинтез, который у дион отличается от фотосинтеза классических растений несколькими деталями и протекает в видоизменённых лёгких одной из них. Это всё ещё квантовохимическое взаимодействие, которое способно за счёт энергии разделять молекулы воды и углекислого газа, формируя молекулярный кислород и простые сахара для питания растеневидного тела (через похожую корневую систему, сплетённую с альвеолами видоизменённых лёгких одной из нимф). Притом энергия, необходимая для химосинтеза, в отличии от фотосинтеза, получается не от поглощения квантов света, а от энергии, получаемой из расщеплённой пищи в желудке нимфы. Получаемый избыток молекулярного кислорода, может быть, не только поглощён лёгкими производящей его нимфы, но и выйти наружу для дыхания двух других. Так дионы способны буквально дышать углекислым газом. + + Видоизменённый мозг одной из нимф является сравнительно небольшим потребителем энергии и к тому же соединён с мозгами других нимф, но является руководящим органом принятия решений. + +- type: entity + parent: BookLoreBase + id: BookBSS + name: Суть Блюспейс-Скачков + description: Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодалевать немыслимые рассстояния за крохотное время. + components: + - type: Sprite + state: book_BSS + - type: Paper + content: Тут описаны бесчисленные диаграммы, грпафики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... + + Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. + + Что эе это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. + + Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. + + Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. + +- type: entity + parent: BookLoreBase + id: BookScaf + name: Устройство скафандров утилизаторов + description: Тут повествуется о слоистой системе покрытий скафандров, что делают их такими прочными и безопасными + components: + - type: Sprite + state: book_scaf + - type: Paper + content: EVA скафандры + + Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя + + 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. + + 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. + + 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. + + + Скафандры специалистов по работе в открытом космосе + + Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя + + • 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. + + • 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. + + • 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. + + • 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. + + Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. + + Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. + + + +- type: entity + parent: BookLoreBase + id: BookMBS1 + name: Блюспейс-маяки (ч.1) + description: Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. + components: + - type: Sprite + state: book_MBS1 + - type: Paper + content: Модуль «Маяк-01» + + В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. + + В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли так же и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. + + + Суперкомпьютер «Маяк-02» + + Выяснилось, что для таких задач никакого модуля не хватит. В любом случае размещение его на шаттле приводит к плачевным последствиям. Постепенно улучшая систему и наращивая расчётную мощность, увеличивая надёжность и добавляя системы, препятствующие искажению вероятностных волн, инженеры превратили модуль в целый суперкомпьютер «Маяк-02». + + Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками + + 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) + + 2. Производство суперкомпьютера было сверхдорогим и очень долгим. + + 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. + + 4. Он мог отправить только в одну сторону, но не мог вернуть. + + Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. + + Провал эксперимента подал идею создания отправляемого спутника-маяка. + + + Спутник «Маяк-03» + + На помощь пришли промышленные квантовые компьютеры. Они позволили упростить вычисления, производимые суперкомпьютером, хотя и делали их куда менее точными. При этом новый модуль требовал на много меньше энергии, был сложен в производстве, но, как ни странно, сравнительно дешёвым. + + Важнейшей особенностью нового прототипа была поразительная защита от воздействия БС-модуля. Квантовй компьютер «Маяка-03» был способен находить «битые» данные и расчёты после воздействия колебаний вероятностных вол, и сам их устранял при помощи крайне специфических автоматизированных способов исправления ошибок. + + Всё это позволило создать серию лёгких спутников, которые практически случайно рассылались в разные звёздные системы. После прибытия спутники начинали посылать сигнал отбоя, сообщающий, что всё в порядке, или посылающие сигналы ошибки, сообщающие, что со спутником что-то случилось. Так же часто случалось, что спутник переставал передавать сигналы, что могло служить признаком его уничтожения. + + Рассылка спутников способствовало колонизации и следованиям дальнего космоса. Но всё ещё оставалась значительная погрешность вычислений и ненадёжности систем даже в уже проложенных путях. Маршруты были налажены, но раз в Земной квартал несколько шаттлов уничтожались или пропадали без вести. + + + +- type: entity + parent: BookLoreBase + id: BookMBS2 + name: Блюспейс-маяки (ч.2) + description: Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. + components: + - type: Sprite + state: book_MBS2 + - type: Paper + content: Искажатели «Маяк-04» и «Маяк-05» + + Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. + + Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). + + + Установка «Маяк-06» + + Определённая кульминация серии маяков стала, когда было решено объединить суперкомпьютер «Маяк-02», который переработали, сделав дешевле, быстрей и энергоэффективней, спутник «Маяк-03» и искажатель «Маяк-05». В результате вышла крупная и дорогая установка «Маяк-06», которая давала возможность вычислять прыжки для нескольких шаттлов, а также принимать прилетающие шаттлы и делать всё так, чтобы многие потоки шаттлов между собой не врезались. Это наиболее современная система, устанавливаемая на космических объектах, станциях, верфях, портах. + + + Искажатель «Маяк-07» + + На данный момент это последняя разработанная итерация технологии. Это громадная и крайне мощная версия искажателя «Маяк-05», совмещённая с переработанным суперкомпьютером. Особенностью его является то, что она «вытягивает» объекты не в радиусе, а вытянутой полосе. Это позволило создать установку, способную реализовывать таможенный контроль на границе секторов, заставляя все шаттлы перемещаться к таможенно-пограничной станции. + + Особенностью выступает то, что на длину полосы «вытягивания» влияют самые разны параметры, а потому порой она сокращается или удлиняется. Это даёт некоторое пространство для реализации возможностей различных челноков, подпольных организаций, террористов, контрабандистов и товарищей с чёрного рынка. + + + Искажатель «Маяк-08» + + Искажать «Маяк-04» имел и иной путь развития, нежели выведение судов из БС пространства к самому маяку на некоторое расстояние. Новая модель была оснащена куда более скромным расчётным модулем, менее чувствительными сканерами, но большей мощностью. Кто-то с иронией считал, что такая модель только и способна, что вытягивать к себе линкоры. Остальным объектам просто не хватило бы энергии, чтобы быть точно замеченными. Но идея изобретателей была не в этом. Данный маяк был способен притягивать к себе высокоэнергетические объекты. То есть субстанции. Которые и без БС-модуля имели огромный отклик в пространстве энергий. Например, сбежавшие из-под контроля сингулярности. Таким образом «Маяк-08» стал серьёзным ответом всем тем обществам, которые ежегодно и ежемесячно твердили об отказе в использовании сингулярных двигателей по причине существования вероятности аварии с их побегом и дальнейшим прилётом непойми куда и созданием ещё большей аварии. Теперь сингулярности можно было ловить. + + + +- type: entity + parent: BookLoreBase + id: BookImplants + name: Устройство имплантов НТ + description: Тут описаны принципы действия стандартный имплантов корпорации НаноТрейзен массового производства. + components: + - type: Sprite + state: book_implant + - type: Paper + content: Импланты NT + + Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. + + + Имплант трекера + + Данный имплант устанавливается в грудную клетку неподалёку от сердца. Сердце является мышцей, которая постоянно пребывает в движении. А от того постоянно генерирует поверхностное напряжение, которого хватает на поддержание работы импланта. Помимо системы зарядки от мышцы имплант имеет антенну-передатчик, которая при каждом движении сердечной мышцы генерирует сигнал. Сигнал достигает антенн системы внутренней связи объекта НТ, а затем АЛУ (Арифметическо-Логическое устройство) при помощи Фурье-преобразований устанавливает положение импланта и передаёт данные на сервер. Таким образом трекер – это система локального позиционирования, но под кожей. Было бы глупо, если бы при остановке сердца от, скажем, инфаркта или прочих неприятных ситуаций имплант вышел из строя. А потому в него встроек небольшой аккумулятор, продолжающий работу импланта после тревожного использования. + + + Имплант света + + Имплант света представляет собой небольшой, но достаточно мощный светодиодный фонарик на аккумуляторе, и устанавливается в руку.. Очевидной проблемой может стать подзарядка аккумулятора, но решение подсказали древние фонарики тысячелетней давности с рычажной подзарядкой. Но в случае импланта рычагом для подзарядки являются мышцы. Носитель может совершить несложные движения рукой и подзарядить батарею своего фонарика, что делает имплант крайне полезным и долговечным. + + + Имплант грустного тромбона + + Имплант устанавливается в район диафрагмы. Имеет в себе небольшой аккумулятор, сторожевой таймер, небольшой чип логики и динамик. При дыхании происходит периодическое расширение и сужение диафрагмы, что совершенно не влияет на имплант. Если же диафрагма перестаёт, то начинается отсчёт секунд на сторожевом таймере. Если время превышает среднее максимальное время задержки дыхания, то сторожевой таймер переполняется и активирует чип, заставляя динамик издать грустный тревожный звук. + + + Имплант водокодера + + Встраивается в горло. Имплант включает в себя матрицу подвижных наночастиц, которые способные перестаиваться, «нарастая» и изменяя параметры голосовых связок из-за чего они начинают звучать иначе. Для регулировки требуется итерационное взаимодействие с подкожными регуляторами частоты и тембра. А именно требуется повернуть регулятор и тут же что-то произнести, дабы проверить звучание. + + + Имплант хонк + + И кто-то же придумал идею, что ряду сотрудников понадобится, возможно, издать громкий предупреждающий звук в ситуации, когда, скажем, коридор заполнен стоящими сотрудниками, мещающими пройти. Для этого был разработан имплант он, работающий аналогично импланту света. Четырёх-шести сгибаний руки хватит, чтобы зарядить батарею импланта и издать громкий предупреждающий звук. + + + Mindshield (майндшилд или имплант защиты разума) – имплант защиты разработки корпорации NanoTrasen, позволяющий нивелировать гипнотическое или психологическое воздействие на носителя. + + Имплант представляет из себя вычислительный чип, микросканер ЭЭГ и сложную сеть искусственный нейронов, а также чип, создающий искусственное увеличение лояльности к корпорации НаноТрейзен. Имплант является сложным в производстве, поэтому даже не весь состав станции удостоен быть носителем данного импланта, впрочем со временем догих исследований и модификаций, учёным удалось добиться того, что устанавливать его стало сравнительно просто любому обученному врачу при помощи имплантера стандартного образца. Использование искусственных нейронов позволяет как сканировать активность лобной доли головного мозга, выявляя гипноз или психологическое воздействие, так и стимулировать лобную кору, чтобы вывести мозг в нормальное состояние и избавиться от гипноза или психологического воздействия. Данный имплант постоянно сканирует лобную долю носителя, точно соотносит отклонения от нормы, достигая точности нивелирования гипноза или психологического воздействия на 99%. Работает, если воздействие на носителя протекает малое количество времени, иначе действия гипноза входит в нормальное состояние мозга, перестраивая структура мозга, чьи нейронные сети постоянно видоизменяются, и вывести носителя в первоначальное состояние используя имплант невозможно. diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_BSS.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_BSS.png new file mode 100644 index 0000000000000000000000000000000000000000..489b4bbefe0a570cf58e40c6b7cbc5953c9e8701 GIT binary patch literal 454 zcmV;%0XhDOP)Px$fJsC_R9J=WmOo2EQ5c6G!;&CH$)!LGB$|Z2K|zsQV@nWCLR+7r*)6c4simn^ zRA_5xybv@vq+pApcpFlK+o0EfdGC2oCJo&OF6Z3yzWm-F=bn4c0S}M=j!%@8N?Sit z&t;YReo67$(_M~s4E!tG1cI@#urCtEYBXt^6#~H+zDO8=kFvpX8cStDZ2&mQzd}9) zy!9U^hB52r5O`E-iwpqpa0kIvh{j=Q@q4_}g<2WRI_w>bW#tCkibHQa8W+piEQmAR zicc|NHJZO{Kvi5fuaEo_Oru&F_SX|*p|)8ONyulwiHX9x%x=Je$^Bwx1Brq`qF}h@ zgw8XAzP%x-&|U+hMV#WT`;7Q6&^FMzx){DxOT9HE2=Vm+~e(m_%zs)Kw6a@pzQ zMsd6aIJ=yKfmB+Ys)PJD>~w!OPuoDPtQNOVMCP#*nss**qsKAu`Tio3m9GKG8NabL w=srKyA$P63lF9Cb$$kAhp;44+dwBdcU*1G&7%Ij7mjD0&07*qoM6N<$f=?FAUjP6A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_DAM.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_DAM.png new file mode 100644 index 0000000000000000000000000000000000000000..695da673dddd5ee75b4589c006204fe48093a315 GIT binary patch literal 422 zcmV;X0a^ZuP)Px$U`a$lR9J=Wma$61P!xv0NTG|BcIhBwa0-Z0aVd2YiFGT%zJMS&IlH#6VSR)m zI!Fhb!7ddSK_Uewi-is@E!M$;5Qmyb)N*f1LJ;#oNXR+)^TR#o+zT-={~bjpsgNt% zvxr~coeK36GCw~&+NHE+k(k#=rc_T{$)vFdL&l>X$&`wcNdxfqWU*Dk7MTzl0BF^_ zwCX9K|9MU0D|URg16&BTr3?UAkGJk~yVe9i$-iLVEUMPm}bJim8y$D>~G1^{$j|Mk6Tntr8#5SQTlya?Pt zC#%uPYE$FRKnl%(2-z<1T>}ow&kwVH>fvv-APx$X-PyuR9J=WmN84iKp2MKN<$Y5?O3F6C4-pBL9m;2&EO{nwA%f=LAQf+wZ?X{K&#zHquT)he7w$aaU&`rNC2MaRgLXwG8tnq zxT^$cQVrj~#&~|ZBF*}~PqoDfdGbgi1E{Z`O_!KWm${yg`ryyII%;$cF2-KsRRb@;cgsB)C7r^~2-gPci^-9LM-gm?R0wyH>3~ Z*Ee0~i!2G3H%kBj002ovPDHLkV1gS@y*U5? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_MBS2.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_MBS2.png new file mode 100644 index 0000000000000000000000000000000000000000..97608ffc3095d599722fcef028a81f26e5d80ee3 GIT binary patch literal 444 zcmV;t0YmPx$c1c7*R9J=WmOpF4Kp4g!i@~LWjv_)NLusZCLfyozWav~n-Oz8*F`SU0pP_5M zg5V}@4&9tO1VSAg6>OnmX*ylVU-Mo)>Cimm`@THSFL$})fKsLYyDF3+UDt!(nESq8 z=wCRX>w4fg4sNd&sGeV-R`0|OnhgZ&4R+flYV{5(%?1GA^KF640WX9g0hp#)G?vnM zJVLj7R|rt08h(6_Fq`x+xOu^B(mOb7Sr*k6XXMEfi3}jV`suNa`E(WQ&8MqWEm&_z zzT_DZdG`!VSa7h4^}ZC3&6fL1N#xasBXo{F4j- mG)Px$ut`KgR9J=WmN9F>Kpe$?mV!m9=p5}5Lf3+8IU?P==w?^Hf*(TqAv);h(hner zTZK$c<(dwyfiA^jN>M4KgBqw-bJwPHs1J^C?;h{oKm3zB*kOnNj)aOxN*R2|+_J1l z|44z9GU)gFoSzKXKRhOxE_^n~WeG+vO#Mfa=>myd7J$jafZ^;kGQ@sV0DyA243q(w ztu9W16eLoMwdtHbI0EjXy_Et0wA*cj5cGPzjhf|prBYF~RSzJ9z;#^=!`P^CT^AvQ z^5y`0s={rRf29jXFYyLgV%YH3INKRBY`cwC&NY2k0P_*nqk8AHti=PBH{Tg-qn=Avf7{Zpt- zrVH>KbATnf#mw5=9xZrp{st1ctWp5&CRD|*dK sYn;-Zu+?g5-wCVLs*?8(JN!950MT99%RmCBq5uE@07*qoM6N<$g79kQivR!s literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_conarex.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_conarex.png new file mode 100644 index 0000000000000000000000000000000000000000..48fac85ef33619b919e85c8fc492eeeadc654ef1 GIT binary patch literal 459 zcmV;+0W|)JP)Px$g-Jv~R9J=WmOo3wKp2OgXt5Oyw3~<>Tp*TA`i{K|H z2*n}T58%;Ragd52B7y4+y}7*Ljk9#vvi^chf>eOQKzVlYKHa-Jc zvw*aU07$Dy)-1RQ130LGen=??&Nb^MU|$QKYCs5q5W-6c_XebtLo@LAycmS*EwFp@ z_JK4O1ILLHP{OL;q3LUECE)Bf-KA-L1xw>GaCEte5CSP>XGAUIJ$Nd@QQ#^AhGAeB zM&}xUTzbe8gK?dKR4Uaqx@F>9;Ml<8=^jAO7PRlTX`O`jIIe-W+=Y_v=j##J9-RRv z|9F6hn|C;{Z^@K;!kLq6$35Zq;f7kj>EknLegV7yXzdUZ6$1bO002ovPDHLkV1oQc B(*6Jd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_cult_mirt.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_cult_mirt.png new file mode 100644 index 0000000000000000000000000000000000000000..3bb0784ec6af31de875b1bde81dacd521f35023a GIT binary patch literal 485 zcmVPx$pGibPR9J=WmOo3wKp2OgXrV}rv`fLEn;_y4tAm@}Txwk$#LaJ@gR7IXppN94?7 z9RR)!AAr~pkcxaSK~RzgSY`r%%hHr%zj!X<0tXm07t?N?emA(l0Ki@YtcGqSIZyzr zi6}nSACtBJS1RG4xmz3H{qqu_bkKv%l9}U~%*0=SMPtv)vixGvV6aojP@> bP=BFM8uft$&CSK<00000NkvXXu0mjfW$50= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_dione.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_dione.png new file mode 100644 index 0000000000000000000000000000000000000000..7e81b97ff7a4bafba6f9d1bbfb0ba063039e5b41 GIT binary patch literal 480 zcmV<60U!Q}P)Px$nn^@KR9J=WmN9F>Kmdh5i_{_&^at2YilES~i;EymCQC*^I%bGVA-_WCqJwk6 zKVUM6;BLoArKD5sS`_S1MX*ELV6Bq#v~{T8l-#|%JT8})z<~q*oq&kQb=|p)c_NYU z_4gIHt~>8`yQmiq!P9d>k@$CmSd{s2#AG}m6p0gvMFDtwa(JF*d_x5N0sv^52510G zmnSDc7y{wXxyi@y$rpdh29Bc3*vJQ1CT-P! zjLnB5p=*U7!6J59rBH2>Otq+FYcdudQY+vnI>}UvelNdPGZ_zlCxD~q++GK%WNY3^ zY{O3Wz$%veVjUarfwWbpr0AF!^m}>ivbs_ih(+PW-%n}<(pH^*FHbVnTB{L#3#5C% zE~`|sHO!77W3gR;W&XT~zIMOaG4|5~fY$?#qOWX1QKXvC>==}8W~42Z0$@wuUb2W_ zb^k9S+JsU)P+2%%*8{WH2RP2`F2E+=c!2x67cQ@M@Jj~JXf!tdCoC3=Lf!`s?45Ut W0eV*+ExMrq0000Px$cu7P-R9J=Wmb*>@K@^5R41_|-LNCcs7z34^biRRw@fC=^f{BudQuqcMS`(ju z!Z+{|E0Q(FW+S!+2%1PBu7xbuVVzlqSh#<+nK^U*Zzg-r41@~x-xW~}6hgQ`3>?St z^-uy3Lb&B}neB}l(Uo=LiS&4qR1&w*q|>ewPo#;Yk^p?Z)W~if`$8xK^Ux27iLff`!wORmJmNhj$I;RS}qyr!`KgpgBzP)iT&N#rNxl_6UVBh(W&by7K zSpb>2r&$n20d&=A*B1jYxqDBer=Y5Zp1@?kFamIJeaFS7d|6@D;-NRJY_B2tNvjV4 z?A?9=3?Z(5i~%aI{qhsbfLax31BhZCr*ty_aSLml?F{Swyl<|mx&ML7%JW?70|AI) zUOKM3`@jGu73eO2=~Ecp{X*{o8N@7e3wW o1Bk_9+Hb;cx2v2#RH#4GHwEm0uc4Sw1ONa407*qoM6N<$f*>NoqyPW_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_faks.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_faks.png new file mode 100644 index 0000000000000000000000000000000000000000..59c4738452a06782accb1aa90082159033b828bd GIT binary patch literal 425 zcmV;a0apHrP)Px$V@X6oR9J=WmN84iKorM+l|m7$v}1;1Hz&cdOK}kF<`)nh`vC+YgAf7^{S1mY zh##V~P8|$52Ar)OoV3L*&2$bmkwogfn9~mC4-ay=ckh0AmwP?e-Ds^SPDR> zU^)`{rTPav+l`GI9VgB5>;TCPJ=8Xf0LRzigZ$tZwlyOHT2e&rT4 zI!TTo^We7eNX7$%3|lrwQRiuv*vw) T-u!*<00000NkvXXu0mjf>;JWY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_famalis.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_famalis.png new file mode 100644 index 0000000000000000000000000000000000000000..92411ec46c165f18168fe058ed24cc1274dbd3c7 GIT binary patch literal 473 zcmV;~0Ve*5P)Px$lSxEDR9J=WmOn@WVHn1LhA2UTHU`d(wMB45v;+zgwFJ>r5JU(OITcwB&X}iV)ExLeLfoHbp{#DZ#azivPIx?8N1MaPS@9!}C6Tci;Pc;Nmi2JQC6J z!j>_L`9tZ((%&m7essD?Y_W`YW*&ba+%@kB1u;HrG`=eM17SR&AOJsaW!7RCRv|0{ z0OYf;wYCgm0%w65C19z6*q5uH9Co57Zsq=zZD-Hml_@b7YVl!vQQXW9@MLApY zTj~;zQBou@K5Nbf=q+AX58LBu?Xp|9A$5f*xpZ*xLGJ*KugZ7=)YU`c*J0wk5cS2jAz|Kkc`~Bi<06S+q!1L3G=t?HK6NcwjZQlti)q9b*i;K%2-aU4J`G-ta P00000NkvXXu0mjf&JN9P literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_gefest.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_gefest.png new file mode 100644 index 0000000000000000000000000000000000000000..2a023112d580049a1a1e0d77a0f92b7349c9dd4a GIT binary patch literal 472 zcmV;}0Vn>6P)Px$l1W5CR9J=WmcL5^VI0Okh9pIYij#xzfT zxwgekZ9+n{WC#tykwFxQ!UZJ+Hk?0FkoP?~k;rGcd+&XC-p}2=@ArLSrIr4>d@80& zrP7}#Je$o*^QDI2;QPCE{9D@uwAf@oI7GkGrDwMYXfb@@5CC7#b*`%GQV72c0Kha& zOcUTm#STEZd&|+ri*-La08$(7GU@VoNINSh>@1Q4F3**rNv$Oysw0ITM9AU zjsdPx$kV!;AR9J=WmN84iKp2LfN}&i=+Ob2SBH|>7i&Ib(>{9##Qn3!*yO$27ySsuN zivOUC6kR%qOP5X}rDzAo7V2O@h{L665)*P4QXI?+AuqY`y$`wXE(eh!{ddKr-pZHt zK-KTBee1_%!tc%xINj|NU)v^;%-V)y=@j~S!fZMsk<1cHrvUhR@3UG)_k-{U0M0sZ z&{+pQjLS=lF}-;LJo(m^0s!FXQrznW*xVC-(6jqmTlmLY>9Q-*Z@Pqcn^z(j#PfPV zshk>sTR3<^=;KMq0P}FeYmF9wxI4yFq&5W#noUPb0+@ep+2^4GSmqu;8*Z82)(h}! zzwna$GPE{cwP*k={2W3nRUnfyHzYqPHKA6jh~P%c)`X@nRm>&~e-$_&0JPx$g-Jv~R9J=Wma$7hQ5431&jb+?v{|Di+QLC_YG|uF^bZu+5IOY+yrKEg+++=9 z^f%-ZG}t0I%30(P`I-#8McEH~=qqHJIDgZYEp}0L-j! zaVa4>u%gQ%p2z^ezFG!gsdP1zQ(j#JVCU>YDoaSrbV)9W|H*(<+~(hf^P;o z?fPU5Na34-!TZ7&17@*0G-h8&z8Dxx{F4#sUm(7SoUn2k%wm;7HblNy#mZ&8$aphg z>IMLXZ0KXo_rF<2a%2OZj=(aKE)KAvmI zGcK-xU3%c#nLF1`-dJGoNGbJMfnSDFN|%W0=i8(4RscXLC62#7U5hkbTPDj$>a>0k zi8(QIyg_#J&{bd56K+qPx$SV=@dR9J=WmN8DlFcgM=L!&NKYGF+!SBjL9i5swIVB!WGBu%9pBgbei!B`2Y z5<^5;lU6DNRfx>w&?F7ELk$D@Hrr3{|7}0N1nB7aV~9);rIfWv9>=jTzc7GO%7P%k z-OUoc3mg5xxSU`#1lw$}->uOfj6p_20Kogp64$rB(1er$$8khqH5Q9GCX;)ifu3x_ zD2k-TUDuV4J(G^q#E%Rx)?Axxv(;;Wi+^WAn*lCL2x&C2->vl-s0#CO8(Loh7i|)+ z_KTAnNK6ZuO&iyFLlPm~2RO{L8^^?7ea-891;k$!VriI{gjG>Ca443BIj&xxYx7zS z@XAk23zrY)wRx=um}djCDVS#$JFm{GqEv*(jyW-{->m@-^K7JHUb==uWILhqGvpMz z_K&ZByvd!4v;mcGJODgBCa3u&0|3J?luJCzvi2W{j*frDCyi`*k04?M%m4rY07*qo IM6N<$g0VZTk^lez literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_icon.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e3e77759dc915d1b61a90c88bbd3eb644ab866ac GIT binary patch literal 652 zcmV;70(1R|P)Px%MoC0LR9J=WmOX15K@f%?=_F*sZm^pK6$YtMu-)B)q9%8Rah(tH1JtGxT)O-S zfk~O45JEyQhLl!i97_;_5D^%exG+g$leqXUcvuR1$ZcBfk5q|?E&EDbQY8q5!1H2C4!0RU1;09@Cl>imWP z7@l85@*5c-2;TCVG#U+r5CC|dhY$j#6jf&jr&@`Wd7xw*fWxx`>h-z~?0KHH)$4U# z8GuXoG?LF)6_8Tuj0=SV0F6dNg9I&!qgVjzViVIeky293mS}lRgb*5PRFmh$TmS%y z*%ENwj&{4P=L>~`whgWZ`aqfsfIslZzFS_CcDt=hZ`-yG9w_Qx5Ni_#a$Q%Cg%D%k zaTQvDzTanQd1-8}m@T1{(t#(lpDO^|+=Bi6eZBFNQml*3KLQACK{}P5X$$ti-?ShU zpzrtf*r`^4>)+9~ZA{ZdDWzKw*yjomD3{MqK@_tkUHV`?m(OD)jrpI1wOUQzh_f;c zu45x<;Co-``MprTp--l*jqRaamU<(mjA`b{M~aa&c=25Fp!_=2f223z*2ea&Z^A&C mbViT&KJP~Iz0gAcT)zM$)83daP?8P+0000Px$(n&-?R9J=WmO)DbQ51zgBZwj)5jUX=SFW_7MUfCh5s?d#qD4QTU5i$Mxh{W0 z_yb%>)FRpig zgsA|4^UOWx87J`g`E|qB-u~edaBRvg5&%%RyQW;Jn#OrOZi4t)s z*TPP$Lx`G4L*irYAw!i&tH72CyPf&MPKro;k_oj&qp$n0k~B0Y&4fJ{ppomVKraF?ZPmXL z@L|HAFC)DPrJYbL!0T~~uVa9>r($mf1pSkiuG!nGs_023dK3D_=PbVoOOIzF?mqhX abG!oz)}Q|8@JXcr0000Px$P)S5VR9J=WmcL5FKp4P(wS_{o&^|zC5e2P_4-s&2(9wr*b#m_F=o7dIE?Im9 zL5BpzQ9DZmwZ(!lE*_j`;J&-0buhmrfB5+Bm+$Vr9MshOcN&tQX*9@vlCOsM*8J9h zX*9^M(-Zc0Vp?nKv^)Ku33^@famsu$qTT7!=yd^je~I}_&aDzHn*hLebI5ZHa3cu^ zVDs>TSz?b92>@&z-7$-r1Yrj7>s}Fr8Oi0YSad}k`Heo9E}~>y5m!JFgju14Nj^?R z`J5}DB+O^u3U~=fm`_I43+P{|?u*{J;8g)N=jK(%>=%^^=nGNbjykF#Ekr;KUepH^ zOW6gch!5Ts&=+A*1r{n`?tn5CaPEXqJm*Vm#bpL7Eg+d|B`58KP694p{_*xCT3})U zmw!CK!|f}3#}ypO0Ip6qoX>;@XOE)XH8p?E7h*Px$gh@m}R9J;$U>F6XV59>^qEsz<@t-Wy<0J^0&q9plOPTjF_!(SgVBt|`VCR)Z zk!BPWVEF(31H;eHj~Uo`Wf>R+1sE6@7#My$y3D}2=*53Rjv(v+1_p*q?m&jj+kwO= zg@cd&#Hl070SpWb3_tE)fiN!ZV_?v8!mE};QHNM#8JLJx39}rTrUD?|0qB+@@qeXD zFz{`?3C9c!3=IF@e;~?OqN4yF>{z0JZRQJxPu}WqJ_pf;k{SghfS;cq6Qz#$5WoXC z6m=NbrmThYf8`LL2&v+LANQ{?{6LEW^zs51pji~a3M4{+Dk1Qv_#uOk(+@cRSB?%e z7s$}Z0W7`p44;trgCZ9Y3#bwTuEpCJPC6;W`LxRg$VD+yVYIu~3q=`iq5#=aJtwNw z2gEx7W+^fa1+pdi7lOG0cR0OddKnTVp4gMoqJ&zGAF3=E#sa{z~b9;yI=I{(_~ zw+svkgqvhUwF%k!Pm$av{8ea1TzhjAjDmp%0Ja};b@W*=K>z>%07*qoM6N<$f~q6D AHUIzs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_petr.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_petr.png new file mode 100644 index 0000000000000000000000000000000000000000..f3f1bd12534c3a9f90e791ee77b8fb144f2035b3 GIT binary patch literal 446 zcmV;v0YUzWP)Px$cu7P-R9J=WmN84iKorM+XIhJ3p>->y;$mIEwECWv*MS4@^^1i8 zD$4Z0xW~Tldf+sqC?)y@6=iyMBnV1+3KAEg4RLG%1n-DMiHp#NxNIAVlP?Ug4E-H| zdFTFn=bIO|FhJItMVh;B#2@K|VG!=*0H1G9B2V!#bnbWystkPdx7Mm>{P-{sJ;_9G o!n&~?`%QQ?dl7l3O7-jd0{UEj&n4L0i~s-t07*qoM6N<$f=*q@RsaA1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_polit_USSP.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_polit_USSP.png new file mode 100644 index 0000000000000000000000000000000000000000..05313a783dbe698467bc1d5279f5327405009382 GIT binary patch literal 461 zcmV;;0W$uHP)Px$hegh8R$RotrUU|?c7P+TA?7679z!pa!!d!8gp-wiimlp+}+Fb{_gVLA0Sq&|1NocEI7u6Od4!5#oQPoDHb4P(g1+hK_A#WV>}2h003kU zj&V;3v}u>!k>W@I08qMp0|4|=ZFI}kh4Esi31wCR0O)&bR9mc&BYlzsK(|~)FVzlW z7Yx8JxfcYROqUD5OCB`N6uAbxRM&Hk_C@L0`kos@l1HE#@Jnv0)*1!!A+LblSW_iy zwsk${n7JwUc@Y^vQzZwCz3uLoF}4mQoAgrd+z zXhI0$PUz&30hXb^15oTVJ^S5T@VmIk0LrYwHMif0KXMZKLD-W6!28Ps$&>qJY6y8I zvoR6zOWEr~C`VUZf6|-qWOXa>oAC1Ek>njK*01Xm_0NE-M6epE00000NkvXXu0mjf DRKm$N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_redspace.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_redspace.png new file mode 100644 index 0000000000000000000000000000000000000000..f99a0c966280406e6990882e3da0daf0bc674175 GIT binary patch literal 392 zcmV;30eAk1P)Px$LPPx$-AP12R9J=WmOo3wP!z>~EusVz><19EpyH&R)X6=Abc|oY#X*oj4G8|Bi{N)~ z(6NI!>r|>kD}tgzDLOcb1%)U`>JVT4DBAm?;F7Z>kemBX&OPtsL5dXrjEtmca$~fU zr1{zEP1pWClEqg>)|j6B3MzJa0G^Gt4#&SRU`r#t!vhREaw0eHDRXNIj#HxgY5 z0PM6k*g29^hB#T=71fCd02~ir129|9e_K;6Gy#}vjY-?e2>=*ojfUypPi-#5o;6B) z0Jw+KIxXb{X6t#Vhl@5!dz7<90Bo;9Ia_3Z-2n3R=AiS~7WK_)(T$*-En<6>q^}3i z8i9i4xWLC4)(!YjB8u0iJ5evO0@Xs3YM~h{?#oT=Ue)M8+l019Fnb8iN6Eh^6MoK% zUlWL$(83=>+Kbo*VLK8TKFqBG&d l^04-q@N&B)>YXA*ig!9ls4lb?pfmsg002ovPDHLkV1hQc^P~U( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_scaf.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_scaf.png new file mode 100644 index 0000000000000000000000000000000000000000..67c2176b5a019bec02487721d7517740d078fd9f GIT binary patch literal 437 zcmV;m0ZRUfP)Px$Z%IT!R9J=WR=-QbKotHG3SCT1i<1zclT%Q-WfK>-4*G96`@i@%6mjtnuu}#> zkbvN%G|)-g&^lOQY*BfK`NRHzN(+~KlM4a>@jClCyj>Ss0)*`M4vJIa z&*xeF0tCEI#9u>@dw_vu8M!_%TL7*v*cn#Kl*Fg?55&DrQFFNm)|pWsn3sUnp6dY~ z^1i5FfT9Q3LaJAQ98Auh^EWmHkz1ZwmAzI0svssJw8u~g#*LvV^jC4oxbfrJxBvjZ zoAD3ZP+vgB+{^aHHesoV?KfYV@6Q(!C%Fm3{s19w*yVgB_UDHW(vytzCJgpZwBLm3 f^q$0RVPUZWMBjik3Zj+100000NkvXXu0mjfBICtN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_ships.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_ships.png new file mode 100644 index 0000000000000000000000000000000000000000..610e8f5484f2ab6077c1cc212f19d82958515a34 GIT binary patch literal 502 zcmVPx$ut`KgR9J;$U>F6XV59>^VihVVDEueKf(H*C;I)G&2Ph~g{BLb-W$-h&%)r8< z&cMzqi)x6V0K@7_5L8N3BRadgi8feEON(L4k|G8rqZG=cptHN1 zVe{6lSmom5kDOyA;L3`1p8+#YSf_#9-;+&zGA7&8BICq&`fV!8~C$Px$oJmAMR9J=WmOn@WaTLeDisF*s%_;n@C6$I~aCLNR%2oJ5V|%nH3L@@}!GUYD zL!;1C&|;jn>bg!YE+aThj{HH>G-#UUX`@2!fGET{U$P6E({Gt$QciLQMDk*} ziDJ140O^EA@vHx(Bb2DtuLKU1E9YGDFGt6vjdAhSvI5fp Y0eSqB#hmaN2LJ#707*qoM6N<$f=AWh6#xJL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_umpor.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_umpor.png new file mode 100644 index 0000000000000000000000000000000000000000..620868650d6f1702d23bf70574c9bb6e34a17d69 GIT binary patch literal 460 zcmV;-0WPx$hDk(0R9J=Wma$92Kp4e;m0}k|+CLzpICOFGAIL13+)|{ITfw2YSSRZu-P}5f zHPAsEN+DZa1c#1ALENm1gKa|{EC_XI6Vg(-ON~y-h144-{pfCG5$LeG9=5g z#$m)w(-i6p39h-Z*&(^MK}ykP1u|*I{Q;w4mz1KB$fN=Ic-iZ5LPKeo>r-nv;Z!bo_KK7pVZ4dqG^>I9kvgT~1b#^JHI*J`!GNCgYvH_7iF zaJ9fx*LCXk`t-ecjW)o}`j)pozc`(Qcxum>yO=yk;sBA|0lzu?QWx|zWnr!7&4VED zC3MXicQ^Dj1ziho4nHV?zXO&MAS(Qw0FL7X;>o^*(gDnhCJf>JjsZU3#j^ke=z?6f zIvq+xyvg^W{f3#3U?c-5m&<`?!cwUur5z*2((whFD|F}U==;I|0000Px$qe(NbC|zW@o-fQXAN_rd@0RT$vBBdKi z^x+0DYFgGn{4Ws^;ct&ol4G^^Q zAPBqF4i_M3+x;MPq;&*dbFZ;G2N-nfqMYI)RLzI25yRGKG6#sJ%sGfq0aWu!Aq{}t zsR9s5=E#?u6Nu=VG1o7Gq;&+UxofpWs)y9 z0cYjzP~{$jj>G__Wz0Z;vlH*vt25@mT7+)$DTG^SQ**ZnLkI9efPY`mmDUk>A-?O5 zp#$_9eP4*68&TQ`wfcY`gr7OUxcex|Dc&#jj#rCJovShTcWPx$pGibPR9J=WmN84iKorM+(b5u0rNK^xg3!T9D)<2u3OWdW0l~3LKaYzJPJRT3 zQaU?`Ln#Ojg=#@3X`w}JQQ~loxuglXlN1N@ha)e!OOqZ0h;bdTemE*Wc!T)yn({K+Tyuch1o>dS<7$tJHpGAF9lL?H}Klg7l8OKt&Cfck^>0L+-N^17s~91c;S*yI%DNU+O0OfpBxZ@AbRE=bJEjfB*y#UKcc_mjW5WwZlM`0?_Y- zLqwd2s+CZ$4unC39ml}u3Ek00000NkvXXu0mjfWB%Jc literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_vitz.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_vitz.png new file mode 100644 index 0000000000000000000000000000000000000000..506adeff5bf7b297665145581a9b7ca0f70ae184 GIT binary patch literal 423 zcmV;Y0a*TtP)Px$VM#lGd0bNN*h4eJdUHuv|4~Xvmgj^&5KAIAZfmT ze(`M#FrSU91xOYzyS@@YcAKS?!180r_KTGPlErVXE&=d%A5wAh4#W+qG62<6%dW5G z6=b)$|G1|GR|!DUJU;(eQp(a#vD6*7y+6qP{#YLXuq+Dz(=>C}D+fpxKRbB^;J80Z z#eeEwu$E4!YYy=FuAT*;z&udo9}n;(-*Ap97|8%!*DX8~4h93Q+O=x^x)#yBx^%1v RA=Ll?002ovPDHLkV1iO7vpxU- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_zp.png b/Resources/Textures/Corvax/Objects/Misc/books.rsi/book_zp.png new file mode 100644 index 0000000000000000000000000000000000000000..1035cdda781812d0301e258272093f3c20f5b344 GIT binary patch literal 484 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T<^E_P~Ln2y} z6C_v{CoExhOA>vxeZ@cZ<4xVB+dtkq=(Of(Y8Nk09ouxth>9zcH!4#DpGdN@O8ndZ z|Got%-r?V;2-M>nN7|s zUNMx!FJ_)`r`1iJZL{$up8xmj7p!Bxpu7LUFQL_Q4(1iInK?c>qhiSwpmR^HQ{Zz| z-@^&>=gSM5ba%?IFNp4&>aU`3lkvpLyAPiPS-dSM(rkAAYd0msQD1+>BL<0v$a6r4 z796mVYHeeTXmk+Q_f5zopr0Cf$-p#T5? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json index 9cbef9f2a35..c7b7a099a75 100644 --- a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json +++ b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "book_stationsagents taken from goonstation at commit https://github.com/goonstation/goonstation/commit/666034ca1da626e832c66980d7c28c5b8de72640 and edited by github:lapatison; book_busido is taken from tgstation at commit https://github.com/tgstation/tgstation/commit/856e0a784abd19d20618aa36b26b73d471adf613 and respited by github:lapatison", + "copyright": "book_stationsagents taken from goonstation at commit https://github.com/goonstation/goonstation/commit/666034ca1da626e832c66980d7c28c5b8de72640 and edited by github:lapatison; book_busido is taken from tgstation at commit https://github.com/tgstation/tgstation/commit/856e0a784abd19d20618aa36b26b73d471adf613 and respited by github:lapatison; other books sprited by Crazzy_pingvin for Corvax", "size": { "x": 32, "y": 32 @@ -12,6 +12,96 @@ }, { "name": "book_busido" + }, + { + "name": "book_expensive_crystal" + }, + { + "name": "book_clones" + }, + { + "name": "book_DAM" + }, + { + "name": "book_faks" + }, + { + "name": "book_famalis" + }, + { + "name": "book_grav" + }, + { + "name": "book_halifat" + }, + { + "name": "book_redspace" + }, + { + "name": "book_ships" + }, + { + "name": "book_zp" + }, + { + "name": "book_polit_USSP" + }, + { + "name": "book_cult_mirt" + }, + { + "name": "book_gior" + }, + { + "name": "book_snk" + }, + { + "name": "book_umpor" + }, + { + "name": "book_nooc" + }, + { + "name": "book_nakamura" + }, + { + "name": "book_vitz" + }, + { + "name": "book_gefest" + }, + { + "name": "book_conarex" + }, + { + "name": "book_petr" + }, + { + "name": "book_saibasan" + }, + { + "name": "book_unath_1" + }, + { + "name": "book_unath_2" + }, + { + "name": "book_dione" + }, + { + "name": "book_BSS" + }, + { + "name": "book_scaf" + }, + { + "name": "book_MBS1" + }, + { + "name": "book_MBS2" + }, + { + "name": "book_implant" } ] -} +} \ No newline at end of file From 5e800e0ece7beadeb06bba901dd573e84fa4c133 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 13 Jul 2024 19:34:17 +0200 Subject: [PATCH 69/97] New CDN publish workflow (#30009) * LET'S SEE IF THIS WORKS * I forgot the chmod +x * I forgot the shebang --- .github/workflows/publish.yml | 42 +++++++------- SpaceStation14.sln | 1 - Tools/gen_build_info.py | 96 -------------------------------- Tools/publish_github_artifact.py | 56 +++++++++++++++++++ 4 files changed, 75 insertions(+), 120 deletions(-) delete mode 100755 Tools/gen_build_info.py create mode 100755 Tools/publish_github_artifact.py diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4e72256cb87..16cb5017d6a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,31 +41,22 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Update Build Info - run: Tools/gen_build_info.py - - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" - - - name: Upload files to centcomm - uses: appleboy/scp-action@master + - name: Upload build artifact + id: artifact-upload-step + uses: actions/upload-artifact@v4 with: - host: centcomm.spacestation14.io - username: wizards-build-push - key: ${{ secrets.CENTCOMM_WIZARDS_BUILDS_PUSH_KEY }} - source: "release/${{ github.sha }}" - target: "/home/wizards-build-push/builds_dir/builds/" - strip_components: 1 + name: build + path: release/*.zip + compression-level: 0 + retention-days: 0 - - name: Update manifest JSON - uses: appleboy/ssh-action@master - with: - host: centcomm.spacestation14.io - username: wizards-build-push - key: ${{ secrets.CENTCOMM_WIZARDS_BUILDS_PUSH_KEY }} - script: /home/wizards-build-push/push.ps1 ${{ github.sha }} + - name: Publish version + run: Tools/publish_github_artifact.py + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} + ARTIFACT_ID: ${{ steps.artifact-upload-step.outputs.artifact-id }} + GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} - name: Publish changelog (Discord) run: Tools/actions_changelogs_since_last_run.py @@ -77,3 +68,8 @@ jobs: run: Tools/actions_changelog_rss.py env: CHANGELOG_RSS_KEY: ${{ secrets.CHANGELOG_RSS_KEY }} + + - uses: geekyeggo/delete-artifact@v5 + if: always() + with: + name: build diff --git a/SpaceStation14.sln b/SpaceStation14.sln index e0cb455a6db..bcd013b5981 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -62,7 +62,6 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A-411B-4B3B-BEB6-DEC6DCA4C205}" ProjectSection(SolutionItems) = preProject Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 - Tools\gen_build_info.py = Tools\gen_build_info.py EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/Tools/gen_build_info.py b/Tools/gen_build_info.py deleted file mode 100755 index 0207f568dd7..00000000000 --- a/Tools/gen_build_info.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python3 - -# Generates build info and injects it into the server zip files. - -import codecs -import hashlib -import io -import json -import os -import subprocess -from zipfile import ZipFile, ZIP_DEFLATED - -FILE = "SS14.Client.zip" - -SERVER_FILES = [ - "SS14.Server_linux-x64.zip", - "SS14.Server_linux-arm64.zip", - "SS14.Server_win-x64.zip", - "SS14.Server_osx-x64.zip" -] - -VERSION = os.environ['GITHUB_SHA'] -FORK_ID = "wizards" -BUILD_URL = f"https://cdn.centcomm.spacestation14.com/builds/wizards/builds/{{FORK_VERSION}}/{FILE}" -MANIFEST_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/manifest" -MANIFEST_DOWNLOAD_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/download" - -def main() -> None: - client_file = os.path.join("release", FILE) - manifest = generate_build_json(client_file) - - for server in SERVER_FILES: - inject_manifest(os.path.join("release", server), manifest) - - -def inject_manifest(zip_path: str, manifest: str) -> None: - with ZipFile(zip_path, "a", compression=ZIP_DEFLATED) as z: - z.writestr("build.json", manifest) - - -def generate_build_json(file: str) -> str: - # Env variables set by Jenkins. - - hash = sha256_file(file) - engine_version = get_engine_version() - manifest_hash = generate_manifest_hash(file) - - return json.dumps({ - "download": BUILD_URL, - "hash": hash, - "version": VERSION, - "fork_id": FORK_ID, - "engine_version": engine_version, - "manifest_url": MANIFEST_URL, - "manifest_download_url": MANIFEST_DOWNLOAD_URL, - "manifest_hash": manifest_hash - }) - -def generate_manifest_hash(file: str) -> str: - zip = ZipFile(file) - infos = zip.infolist() - infos.sort(key=lambda i: i.filename) - - bytesIO = io.BytesIO() - writer = codecs.getwriter("UTF-8")(bytesIO) - writer.write("Robust Content Manifest 1\n") - - for info in infos: - if info.filename[-1] == "/": - continue - - bytes = zip.read(info) - hash = hashlib.blake2b(bytes, digest_size=32).hexdigest().upper() - writer.write(f"{hash} {info.filename}\n") - - manifestHash = hashlib.blake2b(bytesIO.getbuffer(), digest_size=32) - - return manifestHash.hexdigest().upper() - -def get_engine_version() -> str: - proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") - tag = proc.stdout.strip() - assert tag.startswith("v") - return tag[1:] # Cut off v prefix. - - -def sha256_file(path: str) -> str: - with open(path, "rb") as f: - h = hashlib.sha256() - for b in iter(lambda: f.read(4096), b""): - h.update(b) - - return h.hexdigest() - -if __name__ == '__main__': - main() diff --git a/Tools/publish_github_artifact.py b/Tools/publish_github_artifact.py new file mode 100755 index 00000000000..b488ccdf2ec --- /dev/null +++ b/Tools/publish_github_artifact.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess + +GITHUB_TOKEN = os.environ["GITHUB_TOKEN"] +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +ARTIFACT_ID = os.environ["ARTIFACT_ID"] +GITHUB_REPOSITORY = os.environ["GITHUB_REPOSITORY"] +VERSION = os.environ['GITHUB_SHA'] + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" +FORK_ID = "wizards" + +def main(): + print("Fetching artifact URL from API...") + artifact_url = get_artifact_url() + print(f"Artifact URL is {artifact_url}, publishing to Robust.Cdn") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + "archive": artifact_url + } + headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + "Content-Type": "application/json" + } + resp = requests.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish", json=data, headers=headers) + resp.raise_for_status() + print("Publish succeeded!") + +def get_artifact_url() -> str: + headers = { + "Authorization": f"Bearer {GITHUB_TOKEN}", + "X-GitHub-Api-Version": "2022-11-28" + } + resp = requests.get(f"https://api.github.com/repos/{GITHUB_REPOSITORY}/actions/artifacts/{ARTIFACT_ID}/zip", allow_redirects=False, headers=headers) + resp.raise_for_status() + + return resp.headers["Location"] + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main() From c1915c9d73bb19e29fc0034b24e34fd776643fe2 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 13 Jul 2024 22:36:20 +0200 Subject: [PATCH 70/97] Remove outdated steps from Test Packaging workflow (#30018) gen build info was removed in 5e800e0ece7beadeb06bba901dd573e84fa4c133 but I didn't realize this workflow also tested it. Gone now. --- .github/workflows/test-packaging.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 2dce502697d..2d002f869a1 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -64,11 +64,3 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - - name: Update Build Info - run: Tools/gen_build_info.py - - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" From a03b88979e25a9778a30f30612790f6966369fca Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 13 Jul 2024 14:05:22 -0700 Subject: [PATCH 71/97] Replace obsolete xform.ToMap() with xformSystem.ToMapCoordinates() (#30010) * Get rid of a bunch of obsolete usages * position --------- Co-authored-by: plykiya --- .../Construction/ConstructionSystem.cs | 6 +++--- .../ContextMenu/UI/EntityMenuUIController.cs | 2 +- Content.Client/Gameplay/GameplayStateBase.cs | 3 ++- .../Movement/Systems/JetpackSystem.cs | 5 +++-- Content.Client/NPC/PathfindingSystem.cs | 18 +++++++++--------- Content.Client/Physics/JointVisualsOverlay.cs | 4 ++-- Content.Client/Pinpointer/UI/NavMapControl.cs | 14 +++++++------- Content.Client/RCD/AlignRCDConstruction.cs | 6 +++--- Content.Client/Sandbox/SandboxSystem.cs | 6 ++++-- .../Shuttles/Systems/ShuttleSystem.Console.cs | 4 ++-- .../Shuttles/UI/ShuttleMapControl.xaml.cs | 2 +- .../Storage/Systems/StorageSystem.cs | 4 ++-- .../Weapons/Melee/MeleeWeaponSystem.cs | 2 +- .../Weapons/Ranged/Systems/GunSystem.cs | 6 +++--- .../Pointing/EntitySystems/PointingSystem.cs | 5 ++--- Content.Shared/Actions/SharedActionsSystem.cs | 2 +- 16 files changed, 46 insertions(+), 43 deletions(-) diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 453658bebf9..889c992f7f6 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -48,11 +48,11 @@ public override void Initialize() CommandBinds.Builder .Bind(ContentKeyFunctions.OpenCraftingMenu, - new PointerInputCmdHandler(HandleOpenCraftingMenu, outsidePrediction:true)) + new PointerInputCmdHandler(HandleOpenCraftingMenu, outsidePrediction: true)) .Bind(EngineKeyFunctions.Use, new PointerInputCmdHandler(HandleUse, outsidePrediction: true)) .Bind(ContentKeyFunctions.EditorFlipObject, - new PointerInputCmdHandler(HandleFlip, outsidePrediction:true)) + new PointerInputCmdHandler(HandleFlip, outsidePrediction: true)) .Register(); SubscribeLocalEvent(HandleConstructionGhostExamined); @@ -196,7 +196,7 @@ public bool TrySpawnGhost( if (GhostPresent(loc)) return false; - var predicate = GetPredicate(prototype.CanBuildInImpassable, loc.ToMap(EntityManager, _transformSystem)); + var predicate = GetPredicate(prototype.CanBuildInImpassable, _transformSystem.ToMapCoordinates(loc)); if (!_examineSystem.InRangeUnOccluded(user, loc, 20f, predicate: predicate)) return false; diff --git a/Content.Client/ContextMenu/UI/EntityMenuUIController.cs b/Content.Client/ContextMenu/UI/EntityMenuUIController.cs index a60619baa35..0462c095ba8 100644 --- a/Content.Client/ContextMenu/UI/EntityMenuUIController.cs +++ b/Content.Client/ContextMenu/UI/EntityMenuUIController.cs @@ -170,7 +170,7 @@ private bool HandleOpenEntityMenu(in PointerInputCmdHandler.PointerInputCmdArgs if (_combatMode.IsInCombatMode(args.Session?.AttachedEntity)) return false; - var coords = args.Coordinates.ToMap(_entityManager, _xform); + var coords = _xform.ToMapCoordinates(args.Coordinates); if (_verbSystem.TryGetEntityMenuEntities(coords, out var entities)) OpenRootMenu(entities); diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index 6236cd8e958..63cbfdb09c6 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -104,7 +104,8 @@ private bool HandleInspect(ICommonSession? session, EntityCoordinates coords, En public IEnumerable GetClickableEntities(EntityCoordinates coordinates) { - return GetClickableEntities(coordinates.ToMap(_entityManager, _entitySystemManager.GetEntitySystem())); + var transformSystem = _entitySystemManager.GetEntitySystem(); + return GetClickableEntities(transformSystem.ToMapCoordinates(coordinates)); } public IEnumerable GetClickableEntities(MapCoordinates coordinates) diff --git a/Content.Client/Movement/Systems/JetpackSystem.cs b/Content.Client/Movement/Systems/JetpackSystem.cs index b7f5e48821f..e25300d44c5 100644 --- a/Content.Client/Movement/Systems/JetpackSystem.cs +++ b/Content.Client/Movement/Systems/JetpackSystem.cs @@ -15,6 +15,7 @@ public sealed class JetpackSystem : SharedJetpackSystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ClothingSystem _clothing = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; public override void Initialize() { @@ -73,11 +74,11 @@ private void CreateParticles(EntityUid uid) var uidXform = Transform(uid); var coordinates = uidXform.Coordinates; - var gridUid = coordinates.GetGridUid(EntityManager); + var gridUid = _transform.GetGrid(coordinates); if (TryComp(gridUid, out var grid)) { - coordinates = new EntityCoordinates(gridUid.Value, grid.WorldToLocal(coordinates.ToMapPos(EntityManager, _transform))); + coordinates = new EntityCoordinates(gridUid.Value, _mapSystem.WorldToLocal(gridUid.Value, grid, _transform.ToMapCoordinates(coordinates).Position)); } else if (uidXform.MapUid != null) { diff --git a/Content.Client/NPC/PathfindingSystem.cs b/Content.Client/NPC/PathfindingSystem.cs index d3ae5091528..0c72a8f99ff 100644 --- a/Content.Client/NPC/PathfindingSystem.cs +++ b/Content.Client/NPC/PathfindingSystem.cs @@ -203,7 +203,7 @@ private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) if (found || !_system.Breadcrumbs.TryGetValue(netGrid, out var crumbs) || !xformQuery.TryGetComponent(grid, out var gridXform)) continue; - var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform); var localAABB = invWorldMatrix.TransformBox(aabb.Enlarged(float.Epsilon - SharedPathfindingSystem.ChunkSize)); foreach (var chunk in crumbs) @@ -287,7 +287,7 @@ private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) return; } - var invGridMatrix = gridXform.InvWorldMatrix; + var invGridMatrix = _transformSystem.GetInvWorldMatrix(gridXform); DebugPathPoly? nearest = null; foreach (var poly in tile) @@ -359,7 +359,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) continue; } - var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform); worldHandle.SetTransform(worldMatrix); var localAABB = invWorldMatrix.TransformBox(aabb); @@ -419,7 +419,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) !xformQuery.TryGetComponent(grid, out var gridXform)) continue; - var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform); worldHandle.SetTransform(worldMatrix); var localAABB = invWorldMatrix.TransformBox(aabb); @@ -458,7 +458,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) !xformQuery.TryGetComponent(grid, out var gridXform)) continue; - var (_, _, worldMatrix, invMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform); worldHandle.SetTransform(worldMatrix); var localAABB = invMatrix.TransformBox(aabb); @@ -483,7 +483,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) if (neighborPoly.NetEntity != poly.GraphUid) { color = Color.Green; - var neighborMap = _entManager.GetCoordinates(neighborPoly).ToMap(_entManager, _transformSystem); + var neighborMap = _transformSystem.ToMapCoordinates(_entManager.GetCoordinates(neighborPoly)); if (neighborMap.MapId != args.MapId) continue; @@ -517,7 +517,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) !xformQuery.TryGetComponent(grid, out var gridXform)) continue; - var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform); worldHandle.SetTransform(worldMatrix); var localAABB = invWorldMatrix.TransformBox(args.WorldBounds); @@ -544,7 +544,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) if (!_entManager.TryGetComponent(_entManager.GetEntity(node.GraphUid), out var graphXform)) continue; - worldHandle.SetTransform(graphXform.WorldMatrix); + worldHandle.SetTransform(_transformSystem.GetWorldMatrix(graphXform)); worldHandle.DrawRect(node.Box, Color.Orange.WithAlpha(0.10f)); } } @@ -568,7 +568,7 @@ private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) continue; matrix = graph; - worldHandle.SetTransform(graphXform.WorldMatrix); + worldHandle.SetTransform(_transformSystem.GetWorldMatrix(graphXform)); } worldHandle.DrawRect(node.Box, new Color(0f, cost / highestGScore, 1f - (cost / highestGScore), 0.10f)); diff --git a/Content.Client/Physics/JointVisualsOverlay.cs b/Content.Client/Physics/JointVisualsOverlay.cs index 09c02746e2e..e0b3499a974 100644 --- a/Content.Client/Physics/JointVisualsOverlay.cs +++ b/Content.Client/Physics/JointVisualsOverlay.cs @@ -58,8 +58,8 @@ protected override void Draw(in OverlayDrawArgs args) coordsA = coordsA.Offset(rotA.RotateVec(visuals.OffsetA)); coordsB = coordsB.Offset(rotB.RotateVec(visuals.OffsetB)); - var posA = coordsA.ToMapPos(_entManager, xformSystem); - var posB = coordsB.ToMapPos(_entManager, xformSystem); + var posA = xformSystem.ToMapCoordinates(coordsA).Position; + var posB = xformSystem.ToMapCoordinates(coordsB).Position; var diff = (posB - posA); var length = diff.Length(); diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 3c99a188181..413b41c36a6 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -228,8 +228,8 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) { if (!blip.Selectable) continue; - - var currentDistance = (blip.Coordinates.ToMapPos(EntManager, _transformSystem) - worldPosition).Length(); + + var currentDistance = (_transformSystem.ToMapCoordinates(blip.Coordinates).Position - worldPosition).Length(); if (closestDistance < currentDistance || currentDistance * MinimapScale > MaxSelectableDistance) continue; @@ -397,7 +397,7 @@ protected override void Draw(DrawingHandleScreen handle) { if (lit && value.Visible) { - var mapPos = coord.ToMap(EntManager, _transformSystem); + var mapPos = _transformSystem.ToMapCoordinates(coord); if (mapPos.MapId != MapId.Nullspace) { @@ -418,7 +418,7 @@ protected override void Draw(DrawingHandleScreen handle) if (blip.Texture == null) continue; - var mapPos = blip.Coordinates.ToMap(EntManager, _transformSystem); + var mapPos = _transformSystem.ToMapCoordinates(blip.Coordinates); if (mapPos.MapId != MapId.Nullspace) { @@ -535,7 +535,7 @@ private void UpdateNavMapWallLines() // East edge neighborData = 0; if (relativeTile.X != SharedNavMapSystem.ChunkSize - 1) - neighborData = chunk.TileData[i+SharedNavMapSystem.ChunkSize]; + neighborData = chunk.TileData[i + SharedNavMapSystem.ChunkSize]; else if (_navMap.Chunks.TryGetValue(chunkOrigin + Vector2i.Right, out neighborChunk)) neighborData = neighborChunk.TileData[i + SharedNavMapSystem.ChunkSize - SharedNavMapSystem.ArraySize]; @@ -548,7 +548,7 @@ private void UpdateNavMapWallLines() // South edge neighborData = 0; if (relativeTile.Y != 0) - neighborData = chunk.TileData[i-1]; + neighborData = chunk.TileData[i - 1]; else if (_navMap.Chunks.TryGetValue(chunkOrigin + Vector2i.Down, out neighborChunk)) neighborData = neighborChunk.TileData[i - 1 + SharedNavMapSystem.ChunkSize]; @@ -561,7 +561,7 @@ private void UpdateNavMapWallLines() // West edge neighborData = 0; if (relativeTile.X != 0) - neighborData = chunk.TileData[i-SharedNavMapSystem.ChunkSize]; + neighborData = chunk.TileData[i - SharedNavMapSystem.ChunkSize]; else if (_navMap.Chunks.TryGetValue(chunkOrigin + Vector2i.Left, out neighborChunk)) neighborData = neighborChunk.TileData[i - SharedNavMapSystem.ChunkSize + SharedNavMapSystem.ArraySize]; diff --git a/Content.Client/RCD/AlignRCDConstruction.cs b/Content.Client/RCD/AlignRCDConstruction.cs index d5425425a76..fcbe408a382 100644 --- a/Content.Client/RCD/AlignRCDConstruction.cs +++ b/Content.Client/RCD/AlignRCDConstruction.cs @@ -45,7 +45,7 @@ public override void AlignPlacementMode(ScreenCoordinates mouseScreen) _unalignedMouseCoords = ScreenToCursorGrid(mouseScreen); MouseCoords = _unalignedMouseCoords.AlignWithClosestGridTile(SearchBoxSize, _entityManager, _mapManager); - var gridId = MouseCoords.GetGridUid(_entityManager); + var gridId = _transformSystem.GetGrid(MouseCoords); if (!_entityManager.TryGetComponent(gridId, out var mapGrid)) return; @@ -105,8 +105,8 @@ public override bool IsValidPosition(EntityCoordinates position) if (currentState is not GameplayStateBase screen) return false; - - var target = screen.GetClickedEntity(_unalignedMouseCoords.ToMap(_entityManager, _transformSystem)); + + var target = screen.GetClickedEntity(_transformSystem.ToMapCoordinates(_unalignedMouseCoords)); // Determine if the RCD operation is valid or not if (!_rcdSystem.IsRCDOperationStillValid(heldEntity.Value, rcd, mapGridData.Value, target, player.Value, false)) diff --git a/Content.Client/Sandbox/SandboxSystem.cs b/Content.Client/Sandbox/SandboxSystem.cs index 6a1129bb75d..8a4c93fa354 100644 --- a/Content.Client/Sandbox/SandboxSystem.cs +++ b/Content.Client/Sandbox/SandboxSystem.cs @@ -17,6 +17,7 @@ public sealed class SandboxSystem : SharedSandboxSystem [Dependency] private readonly IPlacementManager _placement = default!; [Dependency] private readonly ContentEyeSystem _contentEye = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; private bool _sandboxEnabled; public bool SandboxAllowed { get; private set; } @@ -92,7 +93,7 @@ public bool Copy(ICommonSession? session, EntityCoordinates coords, EntityUid ui && EntityManager.TryGetComponent(uid, out MetaDataComponent? comp) && !comp.EntityDeleted) { - if (comp.EntityPrototype == null || comp.EntityPrototype.NoSpawn || comp.EntityPrototype.Abstract) + if (comp.EntityPrototype == null || comp.EntityPrototype.HideSpawnMenu || comp.EntityPrototype.Abstract) return false; if (_placement.Eraser) @@ -109,7 +110,8 @@ public bool Copy(ICommonSession? session, EntityCoordinates coords, EntityUid ui } // Try copy tile. - if (!_map.TryFindGridAt(coords.ToMap(EntityManager, _transform), out _, out var grid) || !grid.TryGetTileRef(coords, out var tileRef)) + + if (!_map.TryFindGridAt(_transform.ToMapCoordinates(coords), out var gridUid, out var grid) || !_mapSystem.TryGetTileRef(gridUid, grid, coords, out var tileRef)) return false; if (_placement.Eraser) diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.Console.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.Console.cs index c134b7157c4..eb9ec285f8c 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.Console.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.Console.cs @@ -35,9 +35,9 @@ public MapCoordinates GetMapCoordinates(IMapObject mapObj) switch (mapObj) { case ShuttleBeaconObject beacon: - return GetCoordinates(beacon.Coordinates).ToMap(EntityManager, XformSystem); + return XformSystem.ToMapCoordinates(GetCoordinates(beacon.Coordinates)); case ShuttleExclusionObject exclusion: - return GetCoordinates(exclusion.Coordinates).ToMap(EntityManager, XformSystem); + return XformSystem.ToMapCoordinates(GetCoordinates(exclusion.Coordinates)); case GridMapObject grid: var gridXform = Transform(grid.Entity); diff --git a/Content.Client/Shuttles/UI/ShuttleMapControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleMapControl.xaml.cs index 8bd4a338cb0..53ad4a0b23a 100644 --- a/Content.Client/Shuttles/UI/ShuttleMapControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleMapControl.xaml.cs @@ -519,7 +519,7 @@ private void AddMapObject(List edges, List verts, ValueList(gunUid); _animPlayer.Stop(gunUid, uidPlayer, "muzzle-flash-light"); - _animPlayer.Play((gunUid, uidPlayer), animTwo,"muzzle-flash-light"); + _animPlayer.Play((gunUid, uidPlayer), animTwo, "muzzle-flash-light"); } } diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index 9dc3b5e1e67..ca7791fb68a 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -145,8 +145,7 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coordsPointed, E _popup.PopupEntity(Loc.GetString("pointing-system-try-point-cannot-reach"), player, player); return false; } - - var mapCoordsPointed = coordsPointed.ToMap(EntityManager, _transform); + var mapCoordsPointed = _transform.ToMapCoordinates(coordsPointed); _rotateToFaceSystem.TryFaceCoordinates(player, mapCoordsPointed.Position); var arrow = EntityManager.SpawnEntity("PointingArrow", coordsPointed); @@ -154,7 +153,7 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coordsPointed, E if (TryComp(arrow, out var pointing)) { if (TryComp(player, out TransformComponent? xformPlayer)) - pointing.StartPosition = EntityCoordinates.FromMap(arrow, xformPlayer.Coordinates.ToMap(EntityManager, _transform), _transform).Position; + pointing.StartPosition = _transform.ToCoordinates((player, xformPlayer), _transform.ToMapCoordinates(xformPlayer.Coordinates)).Position; pointing.EndTime = _gameTiming.CurTime + PointDuration; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 0e302f1e028..49c137468e4 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -427,7 +427,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg } var entityCoordinatesTarget = GetCoordinates(netCoordinatesTarget); - _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.ToMapPos(EntityManager, _transformSystem)); + _rotateToFaceSystem.TryFaceCoordinates(user, _transformSystem.ToMapCoordinates(entityCoordinatesTarget).Position); if (!ValidateWorldTarget(user, entityCoordinatesTarget, (actionEnt, worldAction))) return; From b7aa97e2030c0b01d07a76b4ee291fe2c8be95fa Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 13 Jul 2024 14:25:51 -0700 Subject: [PATCH 72/97] Replace obsolete EntityCoordiates.InRange() with TransformSystem.InRange() (#29993) * Replace EntityCoordiates.InRange() with TransformSystem.InRange() * nullspace * I figured it out * man I have no clue how client side sutff works * please have mercy * remove RadiationPulseOverlay changes * nullspace --------- Co-authored-by: plykiya --- Content.Client/RCD/AlignRCDConstruction.cs | 2 +- Content.Client/Storage/Systems/StorageSystem.cs | 4 ++-- Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs | 2 +- Content.Server/Dragon/DragonSystem.cs | 2 +- Content.Server/Guardian/GuardianSystem.cs | 2 +- Content.Server/Instruments/InstrumentSystem.cs | 3 ++- Content.Server/Medical/HealthAnalyzerSystem.cs | 2 +- Content.Server/Movement/Systems/PullController.cs | 5 +++-- .../HTN/Preconditions/CoordinatesInRangePrecondition.cs | 9 ++++++++- .../Preconditions/CoordinatesNotInRangePrecondition.cs | 9 ++++++++- .../NPC/HTN/Preconditions/TargetInRangePrecondition.cs | 9 ++++++++- Content.Server/Pointing/EntitySystems/PointingSystem.cs | 2 +- Content.Shared/Actions/SharedActionsSystem.cs | 2 +- Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs | 2 +- 14 files changed, 39 insertions(+), 16 deletions(-) diff --git a/Content.Client/RCD/AlignRCDConstruction.cs b/Content.Client/RCD/AlignRCDConstruction.cs index fcbe408a382..ef99b01855c 100644 --- a/Content.Client/RCD/AlignRCDConstruction.cs +++ b/Content.Client/RCD/AlignRCDConstruction.cs @@ -75,7 +75,7 @@ public override bool IsValidPosition(EntityCoordinates position) if (!_entityManager.TryGetComponent(player, out var xform)) return false; - if (!xform.Coordinates.InRange(_entityManager, _transformSystem, position, SharedInteractionSystem.InteractionRange)) + if (!_transformSystem.InRange(xform.Coordinates, position, SharedInteractionSystem.InteractionRange)) { InvalidPlaceColor = InvalidPlaceColor.WithAlpha(0); return false; diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index 1e011f08f0e..eea7b9ec797 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -142,8 +142,8 @@ public void PickupAnimation(EntityUid item, EntityCoordinates initialCoords, Ent { if (!_timing.IsFirstTimePredicted) return; - - if (finalCoords.InRange(EntityManager, TransformSystem, initialCoords, 0.1f) || + + if (TransformSystem.InRange(finalCoords, initialCoords, 0.1f) || !Exists(initialCoords.EntityId) || !Exists(finalCoords.EntityId)) { return; diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index c2cdd4a1072..0f4490cd7eb 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -162,7 +162,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul if (component.LastPosition.HasValue) { // Check if position is out of range => don't update and disable - if (!component.LastPosition.Value.InRange(EntityManager, _transform, userPos, SharedInteractionSystem.InteractionRange)) + if (!_transform.InRange(component.LastPosition.Value, userPos, SharedInteractionSystem.InteractionRange)) { if (component.User is { } userId && component.Enabled) _popup.PopupEntity(Loc.GetString("gas-analyzer-shutoff"), userId, userId); diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index 62d1f61a35b..96ca8d3614a 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -146,7 +146,7 @@ private void OnSpawnRift(EntityUid uid, DragonComponent component, DragonSpawnRi // cant stack rifts near eachother foreach (var (_, riftXform) in EntityQuery(true)) { - if (riftXform.Coordinates.InRange(EntityManager, _transform, xform.Coordinates, RiftRange)) + if (_transform.InRange(riftXform.Coordinates, xform.Coordinates, RiftRange)) { _popup.PopupEntity(Loc.GetString("carp-rift-proximity", ("proximity", RiftRange)), uid, uid); return; diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index 203882ed9ef..ae4d0ca2b8c 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -325,7 +325,7 @@ private void CheckGuardianMove( if (!guardianComponent.GuardianLoose) return; - if (!guardianXform.Coordinates.InRange(EntityManager, _transform, hostXform.Coordinates, guardianComponent.DistanceAllowed)) + if (!_transform.InRange(guardianXform.Coordinates, hostXform.Coordinates, guardianComponent.DistanceAllowed)) RetractGuardian(hostUid, hostComponent, guardianUid, guardianComponent); } diff --git a/Content.Server/Instruments/InstrumentSystem.cs b/Content.Server/Instruments/InstrumentSystem.cs index 582bf7fa67b..6814b596dc5 100644 --- a/Content.Server/Instruments/InstrumentSystem.cs +++ b/Content.Server/Instruments/InstrumentSystem.cs @@ -402,7 +402,8 @@ public override void Update(float frameTime) var trans = transformQuery.GetComponent(uid); var masterTrans = transformQuery.GetComponent(master); - if (!masterTrans.Coordinates.InRange(EntityManager, _transform, trans.Coordinates, 10f)) + if (!_transform.InRange(masterTrans.Coordinates, trans.Coordinates, 10f) +) { Clean(uid, instrument); } diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 1d6e564a32d..98f4f00d899 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -65,7 +65,7 @@ public override void Update(float frameTime) //Get distance between health analyzer and the scanned entity var patientCoordinates = Transform(patient).Coordinates; - if (!patientCoordinates.InRange(EntityManager, _transformSystem, transform.Coordinates, component.MaxScanRange)) + if (!_transformSystem.InRange(patientCoordinates, transform.Coordinates, component.MaxScanRange)) { //Range too far, disable updates StopAnalyzingEntity((uid, component), patient); diff --git a/Content.Server/Movement/Systems/PullController.cs b/Content.Server/Movement/Systems/PullController.cs index 340dc5654e8..4bd4b603714 100644 --- a/Content.Server/Movement/Systems/PullController.cs +++ b/Content.Server/Movement/Systems/PullController.cs @@ -58,6 +58,7 @@ public sealed class PullController : VirtualController [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// /// If distance between puller and pulled entity lower that this threshold, @@ -133,8 +134,8 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate var range = 2f; var fromUserCoords = coords.WithEntityId(player, EntityManager); var userCoords = new EntityCoordinates(player, Vector2.Zero); - - if (!coords.InRange(EntityManager, TransformSystem, userCoords, range)) + + if (!_transformSystem.InRange(coords, userCoords, range)) { var direction = fromUserCoords.Position - userCoords.Position; diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs index 3485bd2a18c..452bf327f25 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesInRangePrecondition.cs @@ -8,12 +8,19 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class CoordinatesInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } + public override bool IsMet(NPCBlackboard blackboard) { if (!blackboard.TryGetValue(NPCBlackboard.OwnerCoordinates, out var coordinates, _entManager)) @@ -22,6 +29,6 @@ public override bool IsMet(NPCBlackboard blackboard) if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) return false; - return coordinates.InRange(_entManager, _entManager.System(), target, blackboard.GetValueOrDefault(RangeKey, _entManager)); + return _transformSystem.InRange(coordinates, target, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs index 9d000ca2eb8..901831679e8 100644 --- a/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/CoordinatesNotInRangePrecondition.cs @@ -8,12 +8,19 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class CoordinatesNotInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } + public override bool IsMet(NPCBlackboard blackboard) { if (!blackboard.TryGetValue(NPCBlackboard.OwnerCoordinates, out var coordinates, _entManager)) @@ -22,7 +29,7 @@ public override bool IsMet(NPCBlackboard blackboard) if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) return false; - return !coordinates.InRange(_entManager, _entManager.System(), target, blackboard.GetValueOrDefault(RangeKey, _entManager)); + return !_transformSystem.InRange(coordinates, target, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs index aaccb426d71..921b5ffa226 100644 --- a/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/TargetInRangePrecondition.cs @@ -8,11 +8,17 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class TargetInRangePrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedTransformSystem _transformSystem = default!; [DataField("targetKey", required: true)] public string TargetKey = default!; [DataField("rangeKey", required: true)] public string RangeKey = default!; + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _transformSystem = sysManager.GetEntitySystem(); + } public override bool IsMet(NPCBlackboard blackboard) { @@ -23,6 +29,7 @@ public override bool IsMet(NPCBlackboard blackboard) !_entManager.TryGetComponent(target, out var targetXform)) return false; - return coordinates.InRange(_entManager, _entManager.System(), targetXform.Coordinates, blackboard.GetValueOrDefault(RangeKey, _entManager)); + var transformSystem = _entManager.System; + return _transformSystem.InRange(coordinates, targetXform.Coordinates, blackboard.GetValueOrDefault(RangeKey, _entManager)); } } diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index ca7791fb68a..4b7f50fb86c 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -101,7 +101,7 @@ public bool InRange(EntityUid pointer, EntityCoordinates coordinates) { if (HasComp(pointer)) { - return Transform(pointer).Coordinates.InRange(EntityManager, _transform, coordinates, 15); + return _transform.InRange(Transform(pointer).Coordinates, coordinates, 15); } else { diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 49c137468e4..013348eb4f7 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -533,7 +533,7 @@ private bool ValidateWorldTargetBase(EntityUid user, EntityCoordinates coords, W if (action.Range <= 0) return true; - return coords.InRange(EntityManager, _transformSystem, Transform(user).Coordinates, action.Range); + return _transformSystem.InRange(coords, Transform(user).Coordinates, action.Range); } return _interactionSystem.InRangeUnobstructed(user, coords, range: action.Range); diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 4f77a271b37..ad94f3b9408 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -170,7 +170,7 @@ private bool ShouldCancel(DoAfter doAfter, if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User, xform: userXform))) { // Whether the user has moved too much from their original position. - if (!userXform.Coordinates.InRange(EntityManager, _transform, doAfter.UserPosition, args.MovementThreshold)) + if (!_transform.InRange(userXform.Coordinates, doAfter.UserPosition, args.MovementThreshold)) return true; // Whether the distance between the user and target(if any) has changed too much. From f68712431263fb2d2240fdf3bb9e0cbb278bd61d Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sun, 14 Jul 2024 02:17:15 +0300 Subject: [PATCH 73/97] Update IdExaminableSystem.cs to use TryFromMarkup (#29957) * Change FromMarkup to TryFromMarkup method in IdExaminableSystem.cs * Update --- Content.Shared/Access/Systems/IdExaminableSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs index 333272e27ac..13359adcba2 100644 --- a/Content.Shared/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -27,7 +27,8 @@ private void OnGetExamineVerbs(EntityUid uid, IdExaminableComponent component, G { Act = () => { - var markup = FormattedMessage.FromMarkup(info); + var markup = FormattedMessage.FromMarkupOrThrow(info); + _examineSystem.SendExamineTooltip(args.User, uid, markup, false, false); }, Text = Loc.GetString("id-examinable-component-verb-text"), From 85fba9809ae267d096ff28d425dff0dac085bac8 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 14 Jul 2024 01:18:12 +0200 Subject: [PATCH 74/97] Update changelog RSS configuration (#30024) New server --- Tools/actions_changelog_rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/actions_changelog_rss.py b/Tools/actions_changelog_rss.py index 5e42a030bde..01ca7852ccb 100755 --- a/Tools/actions_changelog_rss.py +++ b/Tools/actions_changelog_rss.py @@ -29,7 +29,7 @@ # Change these to suit your server settings # https://docs.fabfile.org/en/stable/getting-started.html#run-commands-via-connections-and-run -SSH_HOST = "centcomm.spacestation14.io" +SSH_HOST = "moon.spacestation14.com" SSH_USER = "changelog-rss" SSH_PORT = 22 RSS_FILE = "changelog.xml" From a06309b96492d014781a8d0384588617673b335c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 20:26:39 -0400 Subject: [PATCH 75/97] Update Credits (#30026) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f3d458e0468..47b90c9a166 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, Futuristic-OK, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem From 87467a358bfb874f15e7aa4afef5abd76423d22f Mon Sep 17 00:00:00 2001 From: Luiz Costa <33888056+luizwritescode@users.noreply.github.com> Date: Sat, 13 Jul 2024 23:59:45 -0300 Subject: [PATCH 76/97] Fix lizards losing snouts when equipping a head bandana (#29979) * say goodbye to no-snout lizards * remove snout from plague doctor hat HideLayerClothing component --- .../Components/FoldableClothingComponent.cs | 13 +++++++++++++ .../EntitySystems/FoldableClothingSystem.cs | 7 +++++++ .../Prototypes/Entities/Clothing/Head/bandanas.yml | 2 ++ .../Prototypes/Entities/Clothing/Head/hats.yml | 1 - .../Prototypes/Entities/Clothing/Masks/bandanas.yml | 3 +++ 5 files changed, 25 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs index 1a40d1dca12..ffcb52b4576 100644 --- a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Humanoid; using Content.Shared.Inventory; using Robust.Shared.GameStates; @@ -30,4 +31,16 @@ public sealed partial class FoldableClothingComponent : Component /// [DataField] public string? FoldedHeldPrefix; + + /// + /// Which layers does this hide when Unfolded? See and + /// + [DataField] + public HashSet UnfoldedHideLayers = new(); + + /// + /// Which layers does this hide when folded? See and + /// + [DataField] + public HashSet FoldedHideLayers = new(); } diff --git a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs index be55588ddd5..603af4099c8 100644 --- a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs @@ -47,6 +47,10 @@ private void OnFolded(Entity ent, ref FoldedEvent arg if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp); + + if (TryComp(ent.Owner, out var hideLayerComp)) + hideLayerComp.Slots = ent.Comp.FoldedHideLayers; + } else { @@ -59,6 +63,9 @@ private void OnFolded(Entity ent, ref FoldedEvent arg if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); + if (TryComp(ent.Owner, out var hideLayerComp)) + hideLayerComp.Slots = ent.Comp.UnfoldedHideLayers; + } } } diff --git a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml index 51a56f1f1d6..da56194f715 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/bandanas.yml @@ -20,6 +20,8 @@ - state: icon_mask map: [ "unfoldedLayer" ] visible: false + - type: HideLayerClothing # needed since head bandana inherits from mask bandana + slots: [] - type: Tag tags: - Bandana diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index d220d55f1f5..8eeb82cbf4f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -391,7 +391,6 @@ - type: HideLayerClothing slots: - Hair - - Snout - HeadTop - HeadSide diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index f5ad2fb6c83..80210300953 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -11,6 +11,9 @@ - HEAD unfoldedSlots: - MASK + foldedHideLayers: [] + unfoldedHideLayers: + - Snout - type: Mask - type: IngestionBlocker - type: IdentityBlocker From 68982953f3c4ba082e7e4651565bd36ae810d763 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 14 Jul 2024 03:00:52 +0000 Subject: [PATCH 77/97] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e4c8aa1b430..0a41c2e2e9c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Flaming mice no longer completely engulf people they touch. - type: Tweak - id: 6416 - time: '2024-04-22T08:42:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27202 - author: Weax changes: - message: The CLF3 reaction now requires heating first before you can engulf chemistry @@ -3813,3 +3806,10 @@ id: 6915 time: '2024-07-13T12:15:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/25750 +- author: coffeeware + changes: + - message: Lizards will no longer lose their snouts when equipping head bandanas + type: Fix + id: 6916 + time: '2024-07-14T02:59:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29979 From 5d1702d280ff0f20537abaa4ebf0e8f13400ff51 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sun, 14 Jul 2024 06:05:39 +0300 Subject: [PATCH 78/97] Update MainMenu.cs to use ISawmill (#29988) * Update MainMenu.cs to use ISawmill * Update * Error --- Content.Client/MainMenu/MainMenu.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Content.Client/MainMenu/MainMenu.cs b/Content.Client/MainMenu/MainMenu.cs index 43c5bfe5674..3c709d2d15b 100644 --- a/Content.Client/MainMenu/MainMenu.cs +++ b/Content.Client/MainMenu/MainMenu.cs @@ -25,6 +25,9 @@ public sealed class MainScreen : Robust.Client.State.State [Dependency] private readonly IGameController _controllerProxy = default!; [Dependency] private readonly IResourceCache _resourceCache = default!; [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private ISawmill _sawmill = default!; private MainMenuControl _mainMenuControl = default!; private bool _isConnecting; @@ -35,6 +38,8 @@ public sealed class MainScreen : Robust.Client.State.State /// protected override void Startup() { + _sawmill = _logManager.GetSawmill("mainmenu"); + _mainMenuControl = new MainMenuControl(_resourceCache, _configurationManager); _userInterfaceManager.StateRoot.AddChild(_mainMenuControl); @@ -116,7 +121,7 @@ private void TryConnect(string address) catch (ArgumentException e) { _userInterfaceManager.Popup($"Unable to connect: {e.Message}", "Connection error."); - Logger.Warning(e.ToString()); + _sawmill.Warning(e.ToString()); _netManager.ConnectFailed -= _onConnectFailed; _setConnectingState(false); } From 922be642904ede5988835a9143357d47be731b8d Mon Sep 17 00:00:00 2001 From: osjarw <62134478+osjarw@users.noreply.github.com> Date: Sun, 14 Jul 2024 06:26:38 +0300 Subject: [PATCH 79/97] NPC exits MeleeOperator on invalid EntityUid (#30005) EntityUid 0 problem fix --- .../HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs | 3 ++- Content.Server/NPC/Systems/NPCJukeSystem.cs | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs index 32be027ec43..5a02b86201b 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/Melee/MeleeOperator.cs @@ -89,7 +89,8 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi HTNOperatorStatus status; if (_entManager.TryGetComponent(owner, out var combat) && - blackboard.TryGetValue(TargetKey, out var target, _entManager)) + blackboard.TryGetValue(TargetKey, out var target, _entManager) && + target != EntityUid.Invalid) { combat.Target = target; diff --git a/Content.Server/NPC/Systems/NPCJukeSystem.cs b/Content.Server/NPC/Systems/NPCJukeSystem.cs index da9fa1f7615..94a30feb0cb 100644 --- a/Content.Server/NPC/Systems/NPCJukeSystem.cs +++ b/Content.Server/NPC/Systems/NPCJukeSystem.cs @@ -143,6 +143,9 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt if (!_melee.TryGetWeapon(uid, out var weaponUid, out var weapon)) return; + if (!HasComp(melee.Target)) + return; + var cdRemaining = weapon.NextAttack - _timing.CurTime; var attackCooldown = TimeSpan.FromSeconds(1f / _melee.GetAttackRate(weaponUid, uid, weapon)); From bdf7293cfb83dd1e36fad4b40dfc33a9960e1d7a Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Sat, 13 Jul 2024 20:27:39 -0700 Subject: [PATCH 80/97] Clean itemmapper (#29983) * File scoped namespace * Format file * Fix param name in doc comment * Reflow doc comment --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../EntitySystems/SharedItemMapperSystem.cs | 164 +++++++++--------- 1 file changed, 83 insertions(+), 81 deletions(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs index eb20c65a116..7ae821d8d91 100644 --- a/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedItemMapperSystem.cs @@ -4,107 +4,109 @@ using JetBrains.Annotations; using Robust.Shared.Containers; -namespace Content.Shared.Storage.EntitySystems +namespace Content.Shared.Storage.EntitySystems; + +/// +/// ItemMapperSystem is a system that on each initialization, insertion, removal of an entity from +/// given (with appropriate storage attached) will check each stored item to see +/// if its tags/component, and overall quantity match . +/// +[UsedImplicitly] +public abstract class SharedItemMapperSystem : EntitySystem { - /// - /// ItemMapperSystem is a system that on each initialization, insertion, removal of an entity from - /// given (with appropriate storage attached) will check each stored item to see - /// if its tags/component, and overall quantity match . - /// - [UsedImplicitly] - public abstract class SharedItemMapperSystem : EntitySystem + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + + /// + public override void Initialize() { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + base.Initialize(); + SubscribeLocalEvent(InitLayers); + SubscribeLocalEvent(MapperEntityInserted); + SubscribeLocalEvent(MapperEntityRemoved); + } - /// - public override void Initialize() + private void InitLayers(EntityUid uid, ItemMapperComponent component, ComponentInit args) + { + foreach (var (layerName, val) in component.MapLayers) { - base.Initialize(); - SubscribeLocalEvent(InitLayers); - SubscribeLocalEvent(MapperEntityInserted); - SubscribeLocalEvent(MapperEntityRemoved); + val.Layer = layerName; } - private void InitLayers(EntityUid uid, ItemMapperComponent component, ComponentInit args) + if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent)) { - foreach (var (layerName, val) in component.MapLayers) - { - val.Layer = layerName; - } + var list = new List(component.MapLayers.Keys); + _appearance.SetData(uid, StorageMapVisuals.InitLayers, new ShowLayerData(list), appearanceComponent); + } - if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent)) - { - var list = new List(component.MapLayers.Keys); - _appearance.SetData(uid, StorageMapVisuals.InitLayers, new ShowLayerData(list), appearanceComponent); - } + // Ensure appearance is correct with current contained entities. + UpdateAppearance(uid, component); + } - // Ensure appearance is correct with current contained entities. - UpdateAppearance(uid, component); - } + private void MapperEntityRemoved(EntityUid uid, ItemMapperComponent itemMapper, EntRemovedFromContainerMessage args) + { + if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) + return; - private void MapperEntityRemoved(EntityUid uid, ItemMapperComponent itemMapper, - EntRemovedFromContainerMessage args) - { - if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) - return; + UpdateAppearance(uid, itemMapper); + } - UpdateAppearance(uid, itemMapper); - } + private void MapperEntityInserted(EntityUid uid, + ItemMapperComponent itemMapper, + EntInsertedIntoContainerMessage args) + { + if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) + return; - private void MapperEntityInserted(EntityUid uid, ItemMapperComponent itemMapper, - EntInsertedIntoContainerMessage args) - { - if (itemMapper.ContainerWhitelist != null && !itemMapper.ContainerWhitelist.Contains(args.Container.ID)) - return; + UpdateAppearance(uid, itemMapper); + } - UpdateAppearance(uid, itemMapper); - } + private void UpdateAppearance(EntityUid uid, ItemMapperComponent? itemMapper = null) + { + if (!Resolve(uid, ref itemMapper)) + return; - private void UpdateAppearance(EntityUid uid, ItemMapperComponent? itemMapper = null) + if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent) + && TryGetLayers(uid, itemMapper, out var containedLayers)) { - if(!Resolve(uid, ref itemMapper)) - return; - - if (EntityManager.TryGetComponent(uid, out AppearanceComponent? appearanceComponent) - && TryGetLayers(uid, itemMapper, out var containedLayers)) - { - _appearance.SetData(uid, StorageMapVisuals.LayerChanged, new ShowLayerData(containedLayers), appearanceComponent); - } + _appearance.SetData(uid, + StorageMapVisuals.LayerChanged, + new ShowLayerData(containedLayers), + appearanceComponent); } + } - /// - /// Method that iterates over storage of the entity in and sets according to - /// definition. It will have O(n*m) time behavior (n - number of entities in container, and m - number of - /// definitions in . - /// - /// EntityUid used to search the storage - /// component that contains definition used to map whitelist in - /// mapLayers to string. - /// - /// list of layers that should be visible - /// false if msg.Container.Owner is not a storage, true otherwise. - private bool TryGetLayers(EntityUid uid, - ItemMapperComponent itemMapper, - out List showLayers) - { - var containedLayers = _container.GetAllContainers(uid) - .Where(c => itemMapper.ContainerWhitelist?.Contains(c.ID) ?? true).SelectMany(cont => cont.ContainedEntities).ToArray(); + /// + /// Method that iterates over storage of the entity in and sets + /// according to definition. It will have O(n*m) time behavior + /// (n - number of entities in container, and m - number of definitions in ). + /// + /// EntityUid used to search the storage + /// component that contains definition used to map + /// Whitelist in to string. + /// + /// list of layers that should be visible + /// false if msg.Container.Owner is not a storage, true otherwise. + private bool TryGetLayers(EntityUid uid, ItemMapperComponent itemMapper, out List showLayers) + { + var containedLayers = _container.GetAllContainers(uid) + .Where(c => itemMapper.ContainerWhitelist?.Contains(c.ID) ?? true) + .SelectMany(cont => cont.ContainedEntities) + .ToArray(); - var list = new List(); - foreach (var mapLayerData in itemMapper.MapLayers.Values) + var list = new List(); + foreach (var mapLayerData in itemMapper.MapLayers.Values) + { + var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPassOrNull(mapLayerData.Whitelist, + ent)); + if (count >= mapLayerData.MinCount && count <= mapLayerData.MaxCount) { - var count = containedLayers.Count(ent => _whitelistSystem.IsWhitelistPassOrNull(mapLayerData.Whitelist, - ent)); - if (count >= mapLayerData.MinCount && count <= mapLayerData.MaxCount) - { - list.Add(mapLayerData.Layer); - } + list.Add(mapLayerData.Layer); } - - showLayers = list; - return true; } + + showLayers = list; + return true; } } From 913d1e3e87b1f04ad87940d1f90db1b045be01b4 Mon Sep 17 00:00:00 2001 From: mtrs163 <153596133+mtrs163@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:22:31 +0700 Subject: [PATCH 81/97] Fix lore books sprites (#2413) --- .../Corvax/Entities/Objects/Misc/books.yml | 803 +++++++++--------- 1 file changed, 417 insertions(+), 386 deletions(-) diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml index 7c8a90926a8..ae94d878fad 100644 --- a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -7,8 +7,9 @@ components: - type: Sprite sprite: Corvax/Objects/Misc/books.rsi - state: book_expensive_crystal - + layers: + - state: book_expensive_crystal + - type: entity parent: BookLoreBase id: BookExpensiveCrystal @@ -16,19 +17,20 @@ description: Данная книга рассказывает о материалах, которые в обиходе было принято называть Блюспейс и Редспейс кристаллами. components: - type: Sprite - state: book_expensive_crystal + layers: + - state: book_expensive_crystal - type: Paper content: Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целого состояния. Чаще всего встречается кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. Также известно. Что космеций обладает карбидообразующими свойствами. - - + + В природе встречается и иная форма природных кристаллов космеция. А именно космеций с примесью оксида алюминия и хрома. Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. Они так же анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. - - + + Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии. Которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. Этот эффект используется в модулях БС скачков для двигателей космических кораблей. @@ -36,12 +38,12 @@ При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению. Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. - - + + Космеций так же способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. - + - type: entity parent: BookLoreBase id: BookClones @@ -49,7 +51,8 @@ description: Данная книга рассказывает о восстании, которое устроили клоны в борьбе за равные права. components: - type: Sprite - state: book_clones + layers: + - state: book_clones - type: Paper content: По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов за не то что личностей, а за живых существ как таковой, некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. В последствии это выливалось гонения на клонов, их убийствами и погромами их жилищ. Большими проблемами также стал вопрос о юридических правах клонов, их интеграция в общество, осмысления этичности самого процесса клонирования. @@ -58,7 +61,7 @@ Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. - + - type: entity parent: BookLoreBase id: BookDAM @@ -66,7 +69,8 @@ description: Данная книга рассказывает о сути работы одного из самых распространённых источников электроэнергии на объектах НТ. components: - type: Sprite - state: book_DAM + layers: + - state: book_DAM - type: Paper content: Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. @@ -86,19 +90,20 @@ description: Данная книга рассказывает о принципе работы Факса дальней связи. components: - type: Sprite - state: book_faks + layers: + - state: book_faks - type: Paper content: Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. А потому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты так же заносятся в память. - + Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму. После чего оба потока получают код протокола разбиение на потоки данных. проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, так же каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывает адрес станции. Сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. - - + + Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд. Затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. - - + + Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. - - + + Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. - type: entity @@ -108,64 +113,65 @@ description: Данная книга рассказывает о самых крупных мафиозных кланах Галактики. components: - type: Sprite - state: book_famalis + layers: + - state: book_famalis - type: Paper content: Семья Дилли Джонсона - + Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом готовых выступает власть Дона. А джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане не заплатившие за услуги «полиции» могут так же быть подвергнуты атаке джони или не получают услуги расследования или охраны. Если же так получилось. Что джони защитили гражданине без оплаченной услуги. То тот обязуется выплатить пенни за оказанную услугу. В случае невыполнения этого обязательства его долг может быть продан другой Семье или же джони позаботятся о вечном покое неплатильщика. Во внешнем мире джони известны, как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны, как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D». лентой патронов вокруг и одной красной розой, продетой через букву. - - + + Клан Сава - + Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это проффессиональные телохранители. Так же они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают. Что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция так же является продуктом работы заводов клана Сава. - + Во всей галактике савы – это пираты, налётчики. Грабители торговых судов. А также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи. Но пока они не наняты, являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. - - + + Союз «Клевер» - + Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Кревер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают, как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. - + В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Так же их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. - - + + Организация «Ворбакс» - + Ворбаки или же ворбы выполняют роль тайной полиции государства. А также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостинец и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. - + Контрразведывательные управления и организации гос.безопасности разных стран тратит достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостинец «тенистый домик» - - + + Семья Глазиуса Мора - + Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. - + За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. - - + + Семья Фенарио - + Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. Так же они вносят пожертвования на образование и благотворительность, так же устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. - + В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Так же они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. - - + + Фонд Мола Гола - + Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. - - + + Семья Синий Камень - + Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. - - + + Союз Границ - + Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. Так же управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. - + - type: entity parent: BookLoreBase id: BookGrav @@ -173,7 +179,8 @@ description: Данная книга рассказывает о принципе работы Генераторов искусственной гравитации. components: - type: Sprite - state: book_grav + layers: + - state: book_grav - type: Paper content: Генераторы гравитации отличаются лишь мощностью. Но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности. С антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. @@ -190,75 +197,76 @@ description: Данная книга рассказывает о савокупности религиозных и светских догм, которые практикуются в государсвенном устройстве Халифатского Божественного Конгломирата. components: - type: Sprite - state: book_halifat + layers: + - state: book_halifat - type: Paper content: Духовная состовляющая - - + + Шахада - + Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. - - + + Намаз - + Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. - - + + Саум - + Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. - - + + Закят - + Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег идущих к Духовному собранию идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, так же на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. - - + + Хадж - + Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а имено - + 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. - + 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. - + 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. - - - + + + Земная составляющая - - + + Ограниченная монархия - + Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. - - + + Национализм - + Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. - - + + Народность - + Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. - - + + Лациизм - + Установление преимущественно светского характера государства. Недопускаяния религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. - - + + Этатизм - + Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. - - + + Революционность - + Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. - + - type: entity parent: BookLoreBase @@ -267,10 +275,11 @@ description: Данная книга рассказывает о сути редспейса. components: - type: Sprite - state: book_redspace + layers: + - state: book_redspace - type: Paper content: Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. - + Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. @@ -279,7 +288,7 @@ По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. - + - type: entity parent: BookLoreBase id: BookShips @@ -287,90 +296,91 @@ description: Данная книга показывает классификацию флотов в ОПЗ. components: - type: Sprite - state: book_ships + layers: + - state: book_ships - type: Paper content: (S - Sigma) МКК – маленькие космические корабли. - + К гражданским МКК относятся корабли следующий назначений. - - 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. - - 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. - + + 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. + + 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. + 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. - - + + К военным МКК относят корабли несущие на себе какое либо вооружение. Они имеют следующие назначения. - + 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого либо вооружения и брони. - + 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. - + 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. - - - + + + (T – Teta) СКК – средние космические корабли. - + К гражданским СКК относятся. - + 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. - + 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. - - + + К военным ССК относятся. - + 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. - + 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. - + 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. - - - + + + (O – Omicron) СККК – Средне крупные космические корабли. - + 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. - + 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. - - - + + + (G – Gamma) ККК – Крупный космический корабль. - + 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. - + 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать Недолинкорами. - + 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. - - - + + + (B – Beta) ТКК – Тяжёлые космические корабли. - + 1) Линкор. Линкоры - это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. - + 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. - + 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. - + 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. - - - + + + (A – Alpha) СТКК – Сверх тяжёлые боевые корабли. - + Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты - это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится, не меньше чем затраты на содержание какой-нибудь около столичной планеты. - - - + + + ОКК – Особые космические корабли. - + 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. - + 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ находящихся в состоянии гибернации. - + - type: entity parent: BookLoreBase @@ -379,140 +389,141 @@ description: Данная книга рассказывает о том, как сотрудники проекта "Космическая станция 14" получают зарплату. components: - type: Sprite - state: book_zp + layers: + - state: book_zp - type: Paper content: Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. - - + + Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. - - + + Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 - - + + Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 - - + + Коэффициенты по назначении станции -- Административная станция – 2,0 Бизнес станция – 1,6 Исследовательская станция – 1,7 Экспериментальная станция – 1,8 Коммерческая станция – 1,3 Медицинская станция – 1,2 Оборонная станция – 1,7 Транспортная станция – 1,0 - - + + Коэффициенты по цели станции -- Отдел напрямую занимается целью станции – 1,5 Отдел косвенно связан с целью станции – 1,25 Отдел не занимается целью станции – 1,0 - - + + Коэффициенты по профессиям - - Повар -- 1 - - Уборщик -- 1 - - Сервисный работник -- 1 - - Священник -- 1 - - Репортёр -- 1 - - Музыкант -- 1 - - Мим -- 1 - - Клоун -- 1 - - Зоотехник -- 1 - - Ботаник -- 1 - - Боксёр -- 1 - - Библиотекарь -- 1 - - Бармен -- 1 - - Грузчик -- 1 - - Технический ассистент -- 1 - - Кадет СБ -- 1 - - Научный ассистент -- 1 - - Интерн -- 1 - - - Офицер СБ -- 1.1 - - Врач -- 1.1 - - Инженер -- 1.1 - - Психолог -- 1.1 - - - Химик -- 1.2 - - Утилизатор -- 1.2 - - Атмосферный техник -- 1.2 - + + Повар -- 1 + + Уборщик -- 1 + + Сервисный работник -- 1 + + Священник -- 1 + + Репортёр -- 1 + + Музыкант -- 1 + + Мим -- 1 + + Клоун -- 1 + + Зоотехник -- 1 + + Ботаник -- 1 + + Боксёр -- 1 + + Библиотекарь -- 1 + + Бармен -- 1 + + Грузчик -- 1 + + Технический ассистент -- 1 + + Кадет СБ -- 1 + + Научный ассистент -- 1 + + Интерн -- 1 + + + Офицер СБ -- 1.1 + + Врач -- 1.1 + + Инженер -- 1.1 + + Психолог -- 1.1 + + + Химик -- 1.2 + + Утилизатор -- 1.2 + + Атмосферный техник -- 1.2 + Парамедик -- 1.3 - + Детектив -- 1.3 - + Учёный -- 1.3 - + Глава персонала -- 1.4 - + Квартирмейстер -- 1.4 - + Смотритель -- 1.5 - + Ведущий врач -- 1.5 - + Ведущий инженер -- 1.5 - + Инструктор СБ -- 1.5 - + Ведущий учёный -- 1.5 - + Старший инженер -- 1.8 - + Научный руководитель -- 1.8 - + Главный Врач -- 1.8 - + Глава Службы Безопасности -- 1.8 - + Капитан -- 2.5 - - + + Коэффициенты штрафов - + Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. Гибель вне станции – 0,1. Факт формируется после окончания смены. Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. Отстранение от должности и нарушение СРП При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. - - + + Гибель - + В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получения инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждени - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам Ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. - - + + Прибыль станции - + Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. - - + + Растраты - + Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. - - + + Дополнительное премирование - + Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. - + - type: entity parent: BookLoreBase id: BookUSSP @@ -520,33 +531,34 @@ description: Что там у них делается в этом их социализма... components: - type: Sprite - state: book_polit_USSP + layers: + - state: book_polit_USSP - type: Paper content: Первые среди равных - + Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. - - + + Президиум и Советы - + Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. - + Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. - + Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. - - + + Народные секретариаты и Генеральный Секретарь - + Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. - + Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. - - + + Суды и главное управление красных комиссаров - + Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). - + Суды гражданских дел так же классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. @@ -558,7 +570,8 @@ description: Может быть, если поняти их культуру, то можно и налажить связи? components: - type: Sprite - state: book_cult_mirt + layers: + - state: book_cult_mirt - type: Paper content: В данный момент в народе доминирует одна единственная идея. @@ -575,7 +588,7 @@ Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». - + - type: entity parent: BookLoreBase id: BookGior @@ -583,19 +596,20 @@ description: Что такое Глобальная инициатива Объединённых Рас components: - type: Sprite - state: book_gior + layers: + - state: book_gior - type: Paper content: ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан) , идейно ГИОР пришла на замену ООН, организации некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций а также, контроль за соблюдением принятых законов. Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. - + Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) - + Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) - + Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) - + Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) @@ -606,25 +620,25 @@ В состав ГИОРиМУ входят. - + Люди – порядка 71 представителей - + Унатхи – порядка 31 представителей - + Дворфы – порядка 35 представителя - + Слаймолюды – порядка 11 представителей - + Нианаы – порядка 34 представителя - + Воксы – 1 представитель (выступает в качестве наблюдателя) - + Арахниды – порядка 47 представителей - + Дионы – 1 представитель (выступает в качестве наблюдателя) - + Таяраны – порядка 46 представителей - + Вульпакины – порядка 60 представителей @@ -632,28 +646,28 @@ В состав ГИОРиГУ входят. - + ОПЗ (Объединённое Правительство Земли) - + Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпакины - + Союз Советских Социалистических Планет - + Умпорская Федерация - + Великая Империя Нотда - + Ноократия Эранта - + СНК (Союз Независимых Колоний) - + Халифатский Божественный Конгломерат - - + + В качестве наблюдателей в ГИОР находятся. - + Империя Миртана - + Корпорации Большой Пятёрки @@ -671,7 +685,8 @@ description: Да, они наши враги, но стоит осознавать, кто за, а кто против них components: - type: Sprite - state: book_snk + layers: + - state: book_snk - type: Paper content: С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. @@ -698,7 +713,8 @@ description: Наши соседи, что стараются улучшить взаимоотношения с нами. А как к ним относятся другие? components: - type: Sprite - state: book_umpor + layers: + - state: book_umpor - type: Paper content: В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. @@ -725,7 +741,8 @@ description: Она наши соседи. Они наши коллги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... components: - type: Sprite - state: book_nooc + layers: + - state: book_nooc - type: Paper content: Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. @@ -746,7 +763,8 @@ description: Чем занимаются в корпорации Большой Пятёрки накамура Инжениринг components: - type: Sprite - state: book_nakamura + layers: + - state: book_nakamura - type: Paper content: Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. @@ -761,7 +779,7 @@ Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизация, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. - + - type: entity parent: BookLoreBase id: BookVitz @@ -769,70 +787,71 @@ description: Как комплектуются базовые соединение космофлота корпорации Большой Пятёрки Витезтви components: - type: Sprite - state: book_vitz + layers: + - state: book_vitz - type: Paper content: 1) Разведывательная авиапара - + Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. 2) Истребительная авиапара - + Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. 3) Истребительное звено - + Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. 4) Разведывательное звено - + Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. 5) Легкобомбардировочное звено - + Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. 6) Тяжелобомбардировочное звено - + Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. - + 7) Истребительная эскадрилья - + Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. - + 8) Разведывательная эскадрилья - + Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. - + 9) Легкобомбардировочная эскадрилья - + Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. - + 10) Тяжелобомбардировочная эскадрилья - + Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. 11) Истребительный авиаполк - + Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. 12) Бомбордировочный авиаполк - + Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. - + 13) Специальный авиаполк - + Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. - type: entity @@ -842,29 +861,30 @@ description: Немного фактов о корпорации Большой Пятёрки Гефест components: - type: Sprite - state: book_gefest + layers: + - state: book_gefest - type: Paper content: Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. - + После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. - + Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. - + С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. - + Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. - + Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией,, изучением которых занимаются другие корпорации. - - + + По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. - + С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. - + Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. - + Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. - + Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники особенно проявившие себя. - type: entity @@ -874,78 +894,79 @@ description: Она и есть. История главного конкурента Космологистики в отрасли components: - type: Sprite - state: book_conarex + layers: + - state: book_conarex - type: Paper content: 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. - + 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. - + 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. - + 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. - + 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. - + 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. - + 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. - + 2721 год. В сферу работы попадает и сектор Импор. - + 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. - + 2728 год. Умирает основатель Ноократии. А Симо почему то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. - + 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. - + 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. - + 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. - + 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. - + 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. - + 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. - + 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. - + 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. - + 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. - + 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. - + 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. - + 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. - + 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. - + 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. - + 2813 год. Онни умирает, оставляя всё брату Юхани. - + 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. - + 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. - + 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. - + 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! - + 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). - + 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того Conarex начинает работу на Фронтире. - + 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. - + 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. - + 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. - + 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. - + 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. - type: entity @@ -955,14 +976,15 @@ description: Стоит прочитать дабы понять какими же глупыми идеалистами являются эти экстремисты-революционеры components: - type: Sprite - state: book_petr + layers: + - state: book_petr - type: Paper content: Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. - + Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. - + В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. - + Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! @@ -984,10 +1006,11 @@ description: рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов components: - type: Sprite - state: book_saibasan + layers: + - state: book_saibasan - type: Paper content: Заводы - + Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех.обеспечения коммуникаций, а также инженеры выходного контроля. @@ -1017,7 +1040,7 @@ По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. - + - type: entity parent: BookLoreBase id: BookUnath1 @@ -1025,10 +1048,11 @@ description: Первая часть великолепного ислледования этой замечательной расы components: - type: Sprite - state: book_unath_1 + layers: + - state: book_unath_1 - type: Paper content: Мимика и Жесты - + В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. @@ -1056,7 +1080,8 @@ description: Вторая часть великолепного ислледования этой прекрасной расы components: - type: Sprite - state: book_unath_2 + layers: + - state: book_unath_2 - type: Paper content: Искусство @@ -1081,7 +1106,8 @@ description: Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растенеевидным телом components: - type: Sprite - state: book_dione + layers: + - state: book_dione - type: Paper content: Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. @@ -1100,16 +1126,17 @@ description: Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодалевать немыслимые рассстояния за крохотное время. components: - type: Sprite - state: book_BSS + layers: + - state: book_BSS - type: Paper content: Тут описаны бесчисленные диаграммы, грпафики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... - + Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. - + Что эе это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. - + Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. - + Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. - type: entity @@ -1119,13 +1146,14 @@ description: Тут повествуется о слоистой системе покрытий скафандров, что делают их такими прочными и безопасными components: - type: Sprite - state: book_scaf + layers: + - state: book_scaf - type: Paper content: EVA скафандры Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя - 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. + 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. @@ -1149,7 +1177,7 @@ Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. - + - type: entity parent: BookLoreBase id: BookMBS1 @@ -1157,10 +1185,11 @@ description: Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. components: - type: Sprite - state: book_MBS1 + layers: + - state: book_MBS1 - type: Paper content: Модуль «Маяк-01» - + В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли так же и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. @@ -1204,10 +1233,11 @@ description: Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. components: - type: Sprite - state: book_MBS2 + layers: + - state: book_MBS2 - type: Paper content: Искажатели «Маяк-04» и «Маяк-05» - + Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). @@ -1238,10 +1268,11 @@ description: Тут описаны принципы действия стандартный имплантов корпорации НаноТрейзен массового производства. components: - type: Sprite - state: book_implant + layers: + - state: book_implant - type: Paper content: Импланты NT - + Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. From b143d1d7f791cb6e1fe2fb9eff4c7a2ac0173f90 Mon Sep 17 00:00:00 2001 From: Morb0 <14136326+Morb0@users.noreply.github.com> Date: Sun, 14 Jul 2024 14:57:18 +0300 Subject: [PATCH 82/97] Fix maps --- Resources/Maps/corvax_avrit.yml | 5 ----- Resources/Maps/corvax_maus.yml | 18 +----------------- 2 files changed, 1 insertion(+), 22 deletions(-) diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrit.yml index b7e10d0d461..61713a45d68 100644 --- a/Resources/Maps/corvax_avrit.yml +++ b/Resources/Maps/corvax_avrit.yml @@ -182228,13 +182228,8 @@ entities: - uid: 47177 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.863173,-20.066223 parent: 2 - - type: Spray - transferAmount: 0 - - type: FireExtinguisher - safety: False - uid: 67434 components: - type: Transform diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 785171aecbc..c7f681b90ad 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -9886,14 +9886,6 @@ entities: parent: 5995 - type: InstantAction container: 5995 -- proto: ActionToggleMagbootsAdvanced - entities: - - uid: 12164 - components: - - type: Transform - parent: 12163 - - type: InstantAction - container: 12163 - proto: AirAlarm entities: - uid: 6 @@ -54123,16 +54115,8 @@ entities: components: - type: Transform parent: 11189 - - type: Magboots - toggleActionEntity: 12164 - type: Physics canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 12164 - type: InsideEntityStorage - proto: ClothingShoesBootsMercFilled entities: @@ -91101,7 +91085,7 @@ entities: - stampedColor: '#FF33CCFF' stampedName: stamp-component-stamped-name-clown content: >- - Здраствуйте, это клоун. Я вернул вам ТЭГ потому что молитвы хонкоматери помогли мне! И я богатейший клоун из Хонкландии! у меня целых 228 триллионов спесо!!!! Но вам ег онужно собрать патамушта я иго спрятыл!! МВААХАХАХАХ + Здраствуйте, это клоун. Я вернул вам ТЭГ потому что молитвы хонкоматери помогли мне! И я богатейший клоун из Хонкландии! у меня целых 228 триллионов спесо!!!! Но вам ег онужно собрать патамушта я иго спрятыл!! МВААХАХАХАХ -Honk honkovich - uid: 10182 From d937534f479b69d8ae622d43d01cc92150b2e913 Mon Sep 17 00:00:00 2001 From: Morb0 <14136326+Morb0@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:03:53 +0300 Subject: [PATCH 83/97] Update locale --- .../ss14-ru/prototypes/actions/ninja.ftl | 2 +- .../corvax/catalog/fills/crates/service.ftl | 2 + .../corvax/entities/objects/misc/books.ftl | 62 +++++++++++++++++++ .../entities/clothing/base_clothing.ftl | 2 + .../entities/clothing/head/misc.ftl | 5 ++ .../entities/clothing/shoes/magboots.ftl | 10 +-- .../entities/markers/spawners/ghost_roles.ftl | 5 +- .../prototypes/entities/mobs/player/human.ftl | 2 - .../prototypes/entities/mobs/player/vox.ftl | 2 +- .../objects/devices/base_handheld.ftl | 2 + .../entities/objects/devices/wristwatch.ftl | 4 ++ .../entities/objects/materials/ore.ftl | 6 ++ .../doors/windoors/base_structurewindoors.ftl | 8 +-- .../entities/structures/walls/asteroid.ftl | 24 +++++++ .../ss14-ru/prototypes/gamerules/midround.ftl | 2 - .../corvax/catalog/fills/crates/service.ftl | 2 + .../corvax/entities/objects/misc/books.ftl | 62 +++++++++++++++++++ .../objects/devices/base_handheld.ftl | 2 + .../entities/objects/devices/wristwatch.ftl | 4 ++ .../objects/weapons/throwable/grenades.ftl | 2 + 20 files changed, 188 insertions(+), 22 deletions(-) create mode 100644 Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl create mode 100644 Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl create mode 100644 Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl create mode 100644 Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl create mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl create mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl create mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl create mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl index 23565b0aff2..1835ecf109c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/actions/ninja.ftl @@ -1,5 +1,5 @@ ent-ActionToggleNinjaGloves = Toggle ninja gloves - .desc = Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies, downloading research and calling in a threat. + .desc = Toggles all glove actions on left click. Includes your doorjack, draining power, stunning enemies and hacking certain computers. ent-ActionCreateThrowingStar = Create throwing star .desc = Channels suit power into creating a throwing star that deals extra stamina damage. ent-ActionRecallKatana = Recall katana diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl new file mode 100644 index 00000000000..5858b28cf39 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl @@ -0,0 +1,2 @@ +ent-CrateServiceLoreBooks = ящик космологических книг + .desc = Ящик, содержащий книги по устройству мира, техники, политических тонкостях, ествественных закономерностях и об исторических событиях. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl new file mode 100644 index 00000000000..1bd30001dbd --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl @@ -0,0 +1,62 @@ +ent-BookLoreBase = Лорные книги + .desc = Данные книги содержат в себе лор Корвакса. +ent-BookExpensiveCrystal = Кристаллы особой ценности + .desc = Данная книга рассказывает о материалах, которые в обиходе было принято называть Блюспейс и Редспейс кристаллами. +ent-BookClones = Туртельский Кризис + .desc = Данная книга рассказывает о восстании, которое устроили клоны в борьбе за равные права. +ent-BookDAM = Двигатель Антиматерии + .desc = Данная книга рассказывает о сути работы одного из самых распространённых источников электроэнергии на объектах НТ. +ent-BookFaks = Факс + .desc = Данная книга рассказывает о принципе работы Факса дальней связи. +ent-BookFamalis = Семьи Межпланетарного Братства + .desc = Данная книга рассказывает о самых крупных мафиозных кланах Галактики. +ent-BookGrav = Генератор искуственной Гравитации + .desc = Данная книга рассказывает о принципе работы Генераторов искусственной гравитации. +ent-BookHalifat = Нормы Космоислами и шесть стрел + .desc = Данная книга рассказывает о савокупности религиозных и светских догм, которые практикуются в государсвенном устройстве Халифатского Божественного Конгломирата. +ent-BookRedspace = Редспейс + .desc = Данная книга рассказывает о сути редспейса. +ent-BookShips = Классификация кораблей ОПЗ + .desc = Данная книга показывает классификацию флотов в ОПЗ. +ent-BookZP = Зарплатная система НТ + .desc = Данная книга рассказывает о том, как сотрудники проекта "Космическая станция 14" получают зарплату. +ent-BookUSSP = Политическая система СССП + .desc = Что там у них делается в этом их социализма... +ent-BookMirt = Культурный столп Империи Миртана + .desc = Может быть, если поняти их культуру, то можно и налажить связи? +ent-BookGior = ГИОР + .desc = Что такое Глобальная инициатива Объединённых Рас +ent-BookSNK = Внешняя политика СНК + .desc = Да, они наши враги, но стоит осознавать, кто за, а кто против них +ent-BookUmpor = Внешняя политика Умпорской Федерации + .desc = Наши соседи, что стараются улучшить взаимоотношения с нами. А как к ним относятся другие? +ent-BookNooc = Классовая структура Ноократии Эранта + .desc = Она наши соседи. Они наши коллги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... +ent-BookNakamura = Накамура Инжениринг + .desc = Чем занимаются в корпорации Большой Пятёрки накамура Инжениринг +ent-BookVitz = Космофлот корпорации Витезтви + .desc = Как комплектуются базовые соединение космофлота корпорации Большой Пятёрки Витезтви +ent-BookGefest = Компания Гефест + .desc = Немного фактов о корпорации Большой Пятёрки Гефест +ent-BookConarex = История компании Конарекс + .desc = Она и есть. История главного конкурента Космологистики в отрасли +ent-BookPetr = Идеи, цели и культруа Петрищевцев + .desc = Стоит прочитать дабы понять какими же глупыми идеалистами являются эти экстремисты-революционеры +ent-BookSaibasan = Активы компании Саибасан + .desc = рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов +ent-BookUnath1 = Культура унатхов (ч.1) + .desc = Первая часть великолепного ислледования этой замечательной расы +ent-BookUnath2 = Культура унатхов (ч.2) + .desc = Вторая часть великолепного ислледования этой прекрасной расы +ent-BookDione = Особенности биологического строения дион + .desc = Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растенеевидным телом +ent-BookBSS = Суть Блюспейс-Скачков + .desc = Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодалевать немыслимые рассстояния за крохотное время. +ent-BookScaf = Устройство скафандров утилизаторов + .desc = Тут повествуется о слоистой системе покрытий скафандров, что делают их такими прочными и безопасными +ent-BookMBS1 = Блюспейс-маяки (ч.1) + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. +ent-BookMBS2 = Блюспейс-маяки (ч.2) + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. +ent-BookImplants = Устройство имплантов НТ + .desc = Тут описаны принципы действия стандартный имплантов корпорации НаноТрейзен массового производства. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl index 65bbe1b1040..5f530301543 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/base_clothing.ftl @@ -10,3 +10,5 @@ ent-ClothingSlotBase = { "" } .desc = { "" } ent-ContentsExplosionResistanceBase = { "" } .desc = { "" } +ent-BaseToggleClothing = { "" } + .desc = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl index c2fbfa0ba72..341888a1634 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/misc.ftl @@ -25,6 +25,11 @@ ent-ClothingHeadHatFancyCrown = fancy crown ent-ClothingHeadHatCatEars = cat ears .desc = NYAH! .suffix = DO NOT MAP +ent-ClothingHeadHatCatEarsValid = { ent-ClothingHeadHatCatEars } + .suffix = Valid, DO NOT MAP + .desc = { ent-ClothingHeadHatCatEars.desc } +ent-ActionBecomeValid = Become Valid + .desc = *notices your killsign* owo whats this ent-ClothingHeadHatDogEars = doggy ears .desc = Only for good boys. .suffix = DO NOT MAP diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index 946ef14d6b0..1602c9b85aa 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -8,13 +8,5 @@ ent-ClothingShoesBootsMagBlinding = magboots of blinding speed .desc = These would look fetching on a fetcher like you. ent-ClothingShoesBootsMagSyndie = blood-red magboots .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. -ent-ActionBaseToggleMagboots = Toggle Magboots +ent-ActionToggleMagboots = Toggle Magboots .desc = Toggles the magboots on and off. -ent-ActionToggleMagboots = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsAdvanced = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsSci = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsSyndie = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl index 8b7a5da047c..6edfc2fdab7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl @@ -22,6 +22,5 @@ ent-SpawnPointNukeopsOperative = { ent-SpawnPointLoneNukeOperative } .desc = { ent-SpawnPointLoneNukeOperative.desc } ent-SpawnPointGhostDragon = { ent-BaseAntagSpawner } .desc = { ent-BaseAntagSpawner.desc } -ent-SpawnPointGhostSpaceNinja = ghost role spawn point - .suffix = space ninja - .desc = { ent-MarkerBase.desc } +ent-SpawnPointGhostSpaceNinja = { ent-BaseAntagSpawner } + .desc = { ent-BaseAntagSpawner.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl index 0328e828b6e..d3051c9ac44 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -13,5 +13,3 @@ ent-MobHumanNukeOp = Nuclear Operative .desc = { ent-MobHuman.desc } ent-MobHumanLoneNuclearOperative = Lone Operative .desc = { ent-MobHuman.desc } -ent-MobHumanSpaceNinja = Space Ninja - .desc = { ent-MobHuman.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl index a65a8396af6..0cf1b2c2f94 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/vox.ftl @@ -1,2 +1,2 @@ -ent-MobVox = Urist McVox +ent-MobVox = Uristititi McVox .desc = { ent-BaseMobVox.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl new file mode 100644 index 00000000000..69c4dc5e28d --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl @@ -0,0 +1,2 @@ +ent-BaseHandheldComputer = { ent-BaseItem } + .desc = { ent-BaseItem.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl new file mode 100644 index 00000000000..01978bc7bbc --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl @@ -0,0 +1,4 @@ +ent-Wristwatch = wristwatch + .desc = A cheap watch for telling time. How much did you waste playing Space Station 14? +ent-WristwatchGold = gold watch + .desc = A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl index 261704b81e4..b6acd115997 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/ore.ftl @@ -6,6 +6,12 @@ ent-GoldOre = gold ore ent-GoldOre1 = { ent-GoldOre } .suffix = Single .desc = { ent-GoldOre.desc } +ent-DiamondOre = diamond ore + .suffix = Full + .desc = { ent-OreBase.desc } +ent-DiamondOre1 = { ent-DiamondOre } + .suffix = Single + .desc = { ent-DiamondOre.desc } ent-SteelOre = iron ore .suffix = Full .desc = { ent-OreBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl index 8ac8ffb04d7..e9b6453c2b3 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl @@ -4,9 +4,9 @@ ent-BaseSecureWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } ent-BasePlasmaWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } -ent-BaseSecurePlasmaWindoor = { ent-BaseWindoor } - .desc = { ent-BaseWindoor.desc } +ent-BaseSecurePlasmaWindoor = { ent-BaseSecureWindoor } + .desc = { ent-BaseSecureWindoor.desc } ent-BaseUraniumWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } -ent-BaseSecureUraniumWindoor = { ent-BaseWindoor } - .desc = { ent-BaseWindoor.desc } +ent-BaseSecureUraniumWindoor = { ent-BaseSecureWindoor } + .desc = { ent-BaseSecureWindoor.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl index 6e8e191bd1a..829a9b3ad87 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl @@ -6,6 +6,9 @@ ent-AsteroidRockCoal = { ent-AsteroidRock } ent-AsteroidRockGold = { ent-AsteroidRock } .desc = An ore vein rich with gold. .suffix = Gold +ent-AsteroidRockDiamond = { ent-AsteroidRock } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-AsteroidRockPlasma = { ent-AsteroidRock } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -81,6 +84,9 @@ ent-IronRockSalt = { ent-IronRock } ent-IronRockArtifactFragment = { ent-IronRock } .desc = A rock wall. What's that sticking out of it? .suffix = Artifact Fragment +ent-IronRockDiamond = { ent-IronRock } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRock = rock .suffix = planetmap .desc = { ent-BaseWall.desc } @@ -90,6 +96,9 @@ ent-WallRockCoal = { ent-WallRock } ent-WallRockGold = { ent-WallRock } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockDiamond = { ent-WallRock } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockPlasma = { ent-WallRock } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -122,6 +131,9 @@ ent-WallRockBasaltCoal = { ent-WallRockBasalt } ent-WallRockBasaltGold = { ent-WallRockBasalt } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockBasaltDiamond = { ent-WallRockBasalt } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockBasaltPlasma = { ent-WallRockBasalt } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -154,6 +166,9 @@ ent-WallRockSnowCoal = { ent-WallRockSnow } ent-WallRockSnowGold = { ent-WallRockSnow } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockSnowDiamond = { ent-WallRockSnow } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockSnowPlasma = { ent-WallRockSnow } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -186,6 +201,9 @@ ent-WallRockSandCoal = { ent-WallRockSand } ent-WallRockSandGold = { ent-WallRockSand } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockSandDiamond = { ent-WallRockSand } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockSandPlasma = { ent-WallRockSand } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -218,6 +236,9 @@ ent-WallRockChromiteCoal = { ent-WallRockChromite } ent-WallRockChromiteGold = { ent-WallRockChromite } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockChromiteDiamond = { ent-WallRockChromite } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockChromitePlasma = { ent-WallRockChromite } .desc = An ore vein rich with plasma. .suffix = Plasma @@ -250,6 +271,9 @@ ent-WallRockAndesiteCoal = { ent-WallRockAndesite } ent-WallRockAndesiteGold = { ent-WallRockAndesite } .desc = An ore vein rich with gold. .suffix = Gold +ent-WallRockAndesiteDiamond = { ent-WallRockAndesite } + .desc = An ore vein rich with diamonds. + .suffix = Diamond ent-WallRockAndesitePlasma = { ent-WallRockAndesite } .desc = An ore vein rich with plasma. .suffix = Plasma diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl index ffd302b5a10..7416fb5c77f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/midround.ftl @@ -1,4 +1,2 @@ -ent-Ninja = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-Thief = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl new file mode 100644 index 00000000000..5858b28cf39 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl @@ -0,0 +1,2 @@ +ent-CrateServiceLoreBooks = ящик космологических книг + .desc = Ящик, содержащий книги по устройству мира, техники, политических тонкостях, ествественных закономерностях и об исторических событиях. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl new file mode 100644 index 00000000000..1bd30001dbd --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl @@ -0,0 +1,62 @@ +ent-BookLoreBase = Лорные книги + .desc = Данные книги содержат в себе лор Корвакса. +ent-BookExpensiveCrystal = Кристаллы особой ценности + .desc = Данная книга рассказывает о материалах, которые в обиходе было принято называть Блюспейс и Редспейс кристаллами. +ent-BookClones = Туртельский Кризис + .desc = Данная книга рассказывает о восстании, которое устроили клоны в борьбе за равные права. +ent-BookDAM = Двигатель Антиматерии + .desc = Данная книга рассказывает о сути работы одного из самых распространённых источников электроэнергии на объектах НТ. +ent-BookFaks = Факс + .desc = Данная книга рассказывает о принципе работы Факса дальней связи. +ent-BookFamalis = Семьи Межпланетарного Братства + .desc = Данная книга рассказывает о самых крупных мафиозных кланах Галактики. +ent-BookGrav = Генератор искуственной Гравитации + .desc = Данная книга рассказывает о принципе работы Генераторов искусственной гравитации. +ent-BookHalifat = Нормы Космоислами и шесть стрел + .desc = Данная книга рассказывает о савокупности религиозных и светских догм, которые практикуются в государсвенном устройстве Халифатского Божественного Конгломирата. +ent-BookRedspace = Редспейс + .desc = Данная книга рассказывает о сути редспейса. +ent-BookShips = Классификация кораблей ОПЗ + .desc = Данная книга показывает классификацию флотов в ОПЗ. +ent-BookZP = Зарплатная система НТ + .desc = Данная книга рассказывает о том, как сотрудники проекта "Космическая станция 14" получают зарплату. +ent-BookUSSP = Политическая система СССП + .desc = Что там у них делается в этом их социализма... +ent-BookMirt = Культурный столп Империи Миртана + .desc = Может быть, если поняти их культуру, то можно и налажить связи? +ent-BookGior = ГИОР + .desc = Что такое Глобальная инициатива Объединённых Рас +ent-BookSNK = Внешняя политика СНК + .desc = Да, они наши враги, но стоит осознавать, кто за, а кто против них +ent-BookUmpor = Внешняя политика Умпорской Федерации + .desc = Наши соседи, что стараются улучшить взаимоотношения с нами. А как к ним относятся другие? +ent-BookNooc = Классовая структура Ноократии Эранта + .desc = Она наши соседи. Они наши коллги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... +ent-BookNakamura = Накамура Инжениринг + .desc = Чем занимаются в корпорации Большой Пятёрки накамура Инжениринг +ent-BookVitz = Космофлот корпорации Витезтви + .desc = Как комплектуются базовые соединение космофлота корпорации Большой Пятёрки Витезтви +ent-BookGefest = Компания Гефест + .desc = Немного фактов о корпорации Большой Пятёрки Гефест +ent-BookConarex = История компании Конарекс + .desc = Она и есть. История главного конкурента Космологистики в отрасли +ent-BookPetr = Идеи, цели и культруа Петрищевцев + .desc = Стоит прочитать дабы понять какими же глупыми идеалистами являются эти экстремисты-революционеры +ent-BookSaibasan = Активы компании Саибасан + .desc = рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов +ent-BookUnath1 = Культура унатхов (ч.1) + .desc = Первая часть великолепного ислледования этой замечательной расы +ent-BookUnath2 = Культура унатхов (ч.2) + .desc = Вторая часть великолепного ислледования этой прекрасной расы +ent-BookDione = Особенности биологического строения дион + .desc = Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растенеевидным телом +ent-BookBSS = Суть Блюспейс-Скачков + .desc = Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодалевать немыслимые рассстояния за крохотное время. +ent-BookScaf = Устройство скафандров утилизаторов + .desc = Тут повествуется о слоистой системе покрытий скафандров, что делают их такими прочными и безопасными +ent-BookMBS1 = Блюспейс-маяки (ч.1) + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. +ent-BookMBS2 = Блюспейс-маяки (ч.2) + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. +ent-BookImplants = Устройство имплантов НТ + .desc = Тут описаны принципы действия стандартный имплантов корпорации НаноТрейзен массового производства. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl new file mode 100644 index 00000000000..69c4dc5e28d --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl @@ -0,0 +1,2 @@ +ent-BaseHandheldComputer = { ent-BaseItem } + .desc = { ent-BaseItem.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl new file mode 100644 index 00000000000..01978bc7bbc --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl @@ -0,0 +1,4 @@ +ent-Wristwatch = wristwatch + .desc = A cheap watch for telling time. How much did you waste playing Space Station 14? +ent-WristwatchGold = gold watch + .desc = A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl index 009eedd64a4..8690ff4168b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl @@ -41,4 +41,6 @@ ent-GrenadeDummy = граната-обманка # Corvax-HiddenDesc-Start ent-SyndieTrickyBomb = хитроумная бомба .desc = Взрывное устройство, больше отвлекающее внимание, чем наносящее реальный вред. + # Corvax-HiddenDesc-End + From 88e5b8b7c416b440163d824fbc7a982cd4bac871 Mon Sep 17 00:00:00 2001 From: Morb0 <14136326+Morb0@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:05:55 +0300 Subject: [PATCH 84/97] Fix books --- .../Corvax/Entities/Objects/Misc/books.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml index ae94d878fad..e67d414c765 100644 --- a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -1164,13 +1164,13 @@ Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя - • 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. + 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. - • 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. + 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. - • 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. + 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. - • 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. + 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. @@ -1201,13 +1201,13 @@ Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками - 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) + 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) - 2. Производство суперкомпьютера было сверхдорогим и очень долгим. + 2. Производство суперкомпьютера было сверхдорогим и очень долгим. - 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. + 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. - 4. Он мог отправить только в одну сторону, но не мог вернуть. + 4. Он мог отправить только в одну сторону, но не мог вернуть. Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. From 8f7b83f7a380f256e4441bd83857182389983702 Mon Sep 17 00:00:00 2001 From: lapatison <100279397+lapatison@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:25:58 +0300 Subject: [PATCH 85/97] Translate Upstream #2414 (#2415) --- .../ru-RU/chat/managers/chat-manager.ftl | 1 + Resources/Locale/ru-RU/devices/clock.ftl | 1 + .../Locale/ru-RU/materials/materials.ftl | 2 + .../Locale/ru-RU/salvage/salvage-magnet.ftl | 1 + .../ss14-ru/prototypes/actions/ninja.ftl | 2 +- .../corvax/catalog/fills/crates/service.ftl | 2 +- .../corvax/entities/objects/misc/books.ftl | 42 +++++++++---------- .../entities/clothing/base_clothing.ftl | 2 + .../entities/clothing/head/misc.ftl | 5 +++ .../entities/clothing/shoes/magboots.ftl | 10 +---- .../entities/markers/spawners/ghost_roles.ftl | 5 +-- .../prototypes/entities/mobs/player/human.ftl | 2 - .../prototypes/entities/mobs/player/vox.ftl | 2 +- .../entities/objects/devices/wristwatch.ftl | 8 ++-- .../entities/objects/materials/ore.ftl | 6 +++ .../doors/windoors/base_structurewindoors.ftl | 8 ++-- .../entities/structures/walls/asteroid.ftl | 24 +++++++++++ .../Corvax/Entities/Objects/Misc/books.yml | 4 +- 18 files changed, 79 insertions(+), 48 deletions(-) create mode 100644 Resources/Locale/ru-RU/devices/clock.ftl diff --git a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl index 1b2449af6f9..fc1e225bea5 100644 --- a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl +++ b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl @@ -17,6 +17,7 @@ chat-manager-no-radio-key = Не задан ключ канала! chat-manager-no-such-channel = Нет канала с ключём '{ $key }'! chat-manager-whisper-headset-on-message = Вы не можете шептать в радио! chat-manager-server-wrap-message = [bold]{ $message }[/bold] +chat-manager-sender-announcement = Центральное командование chat-manager-sender-announcement-wrap-message = [font size=14][bold]Объявление { $sender }:[/font][font size=12] { $message }[/bold][/font] chat-manager-entity-say-wrap-message = [BubbleHeader][bold][Name]{ $entityName }[/Name][/bold][/BubbleHeader] { $verb }, [font={ $fontType } size={ $fontSize } ]"[BubbleContent]{ $message }[/BubbleContent]"[/font] diff --git a/Resources/Locale/ru-RU/devices/clock.ftl b/Resources/Locale/ru-RU/devices/clock.ftl new file mode 100644 index 00000000000..c2096fe67a3 --- /dev/null +++ b/Resources/Locale/ru-RU/devices/clock.ftl @@ -0,0 +1 @@ +clock-examine = На часах: [color=white]{ $time }[/color] diff --git a/Resources/Locale/ru-RU/materials/materials.ftl b/Resources/Locale/ru-RU/materials/materials.ftl index 81fcc63f8ba..8d555bc5c19 100644 --- a/Resources/Locale/ru-RU/materials/materials.ftl +++ b/Resources/Locale/ru-RU/materials/materials.ftl @@ -23,6 +23,7 @@ materials-meat = мясо materials-web = шёлк materials-bones = кости materials-coal = уголь +materials-diamond = алмазы materials-gunpowder = чёрный порох # Ores materials-raw-iron = руда железа @@ -33,3 +34,4 @@ materials-raw-plasma = руда плазмы materials-raw-uranium = руда урана materials-raw-bananium = руда бананиума materials-raw-salt = каменная соль +materials-raw-diamond = необработанные алмазы diff --git a/Resources/Locale/ru-RU/salvage/salvage-magnet.ftl b/Resources/Locale/ru-RU/salvage/salvage-magnet.ftl index b9b79e1f608..c141c684e8d 100644 --- a/Resources/Locale/ru-RU/salvage/salvage-magnet.ftl +++ b/Resources/Locale/ru-RU/salvage/salvage-magnet.ftl @@ -11,6 +11,7 @@ salvage-magnet-resources = [OreCoal] Уголь [OreQuartz] Кварц [OreGold] Золото + [OreDiamond] Алмазы [OreSilver] Серебро [OrePlasma] Плазма [OreUranium] Уран diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/ninja.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/ninja.ftl index 12af893606c..6b14dbcaa9c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/ninja.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/ninja.ftl @@ -1,5 +1,5 @@ ent-ActionToggleNinjaGloves = Переключить перчатки ниндзя - .desc = Включает все возможности перчаток. При щелчке ЛКМ может: взломать дверь, впитать энергию, оглушить врага, загрузить данные и вызвать угрозу. + .desc = Включает все возможности перчаток. При щелчке ЛКМ может: взломать дверь, впитать энергию, оглушить врага, взломать некоторые устройства. ent-ActionCreateThrowingStar = Создать сюрикэн .desc = Направляет энергию костюма на создание сюрикэна, который наносит дополнительный урон выносливости. ent-ActionRecallKatana = Призвать катану diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl index 5858b28cf39..3b210fe76ec 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/catalog/fills/crates/service.ftl @@ -1,2 +1,2 @@ ent-CrateServiceLoreBooks = ящик космологических книг - .desc = Ящик, содержащий книги по устройству мира, техники, политических тонкостях, ествественных закономерностях и об исторических событиях. + .desc = Ящик, содержащий книги по устройству мира, техники, политических тонкостях, естественных закономерностях и об исторических событиях. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl index 1bd30001dbd..d079d421fab 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/books.ftl @@ -10,10 +10,10 @@ ent-BookFaks = Факс .desc = Данная книга рассказывает о принципе работы Факса дальней связи. ent-BookFamalis = Семьи Межпланетарного Братства .desc = Данная книга рассказывает о самых крупных мафиозных кланах Галактики. -ent-BookGrav = Генератор искуственной Гравитации +ent-BookGrav = Генератор искусственной Гравитации .desc = Данная книга рассказывает о принципе работы Генераторов искусственной гравитации. -ent-BookHalifat = Нормы Космоислами и шесть стрел - .desc = Данная книга рассказывает о савокупности религиозных и светских догм, которые практикуются в государсвенном устройстве Халифатского Божественного Конгломирата. +ent-BookHalifat = Нормы Космоислама и шесть стрел + .desc = Данная книга рассказывает о совокупности религиозных и светских догм, которые практикуются в государственном устройстве Халифатского Божественного Конгломерата. ent-BookRedspace = Редспейс .desc = Данная книга рассказывает о сути редспейса. ent-BookShips = Классификация кораблей ОПЗ @@ -23,7 +23,7 @@ ent-BookZP = Зарплатная система НТ ent-BookUSSP = Политическая система СССП .desc = Что там у них делается в этом их социализма... ent-BookMirt = Культурный столп Империи Миртана - .desc = Может быть, если поняти их культуру, то можно и налажить связи? + .desc = Может быть, если понять их культуру, то можно и наладить связи? ent-BookGior = ГИОР .desc = Что такое Глобальная инициатива Объединённых Рас ent-BookSNK = Внешняя политика СНК @@ -31,32 +31,32 @@ ent-BookSNK = Внешняя политика СНК ent-BookUmpor = Внешняя политика Умпорской Федерации .desc = Наши соседи, что стараются улучшить взаимоотношения с нами. А как к ним относятся другие? ent-BookNooc = Классовая структура Ноократии Эранта - .desc = Она наши соседи. Они наши коллги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... -ent-BookNakamura = Накамура Инжениринг - .desc = Чем занимаются в корпорации Большой Пятёрки накамура Инжениринг -ent-BookVitz = Космофлот корпорации Витезтви - .desc = Как комплектуются базовые соединение космофлота корпорации Большой Пятёрки Витезтви + .desc = Она наши соседи. Они наши коллеги. Нужно понимать что там у них и как устроено... А то ещё оскорбишь кого... +ent-BookNakamura = Nakamura Engineering + .desc = Чем занимаются в корпорации Большой Пятёрки Nakamura Engineering +ent-BookVitz = Космофлот корпорации Vítězství + .desc = Как комплектуются базовые соединения космофлота корпорации Большой Пятёрки Vítězství ent-BookGefest = Компания Гефест .desc = Немного фактов о корпорации Большой Пятёрки Гефест -ent-BookConarex = История компании Конарекс - .desc = Она и есть. История главного конкурента Космологистики в отрасли -ent-BookPetr = Идеи, цели и культруа Петрищевцев +ent-BookConarex = История компании Conarex + .desc = Она и есть. История главного конкурента Kosmologistika в отрасли +ent-BookPetr = Идеи, цели и культура Петрищевцев .desc = Стоит прочитать дабы понять какими же глупыми идеалистами являются эти экстремисты-революционеры -ent-BookSaibasan = Активы компании Саибасан - .desc = рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов +ent-BookSaibasan = Активы компании Saibasan + .desc = Рассказывается о том, где можно поработать в известнейшем поставщике электронных компонентов ent-BookUnath1 = Культура унатхов (ч.1) - .desc = Первая часть великолепного ислледования этой замечательной расы + .desc = Первая часть великолепного исследования этой замечательной расы ent-BookUnath2 = Культура унатхов (ч.2) - .desc = Вторая часть великолепного ислледования этой прекрасной расы + .desc = Вторая часть великолепного исследования этой прекрасной расы ent-BookDione = Особенности биологического строения дион - .desc = Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растенеевидным телом + .desc = Рассказ о необычном строении желудка, лёгких и мозга и их переплетение с растениевидным телом ent-BookBSS = Суть Блюспейс-Скачков - .desc = Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодалевать немыслимые рассстояния за крохотное время. + .desc = Объяснение механизма Блюспейс скачков, что позволяют нашим космическим кораблям преодолевать немыслимые расстояния за крохотное время. ent-BookScaf = Устройство скафандров утилизаторов .desc = Тут повествуется о слоистой системе покрытий скафандров, что делают их такими прочными и безопасными ent-BookMBS1 = Блюспейс-маяки (ч.1) - .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказывается в данной книге. ent-BookMBS2 = Блюспейс-маяки (ч.2) - .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказвается в данной книге. + .desc = Как развивалась БС-технология дальних полётов? Как понять куда ты попадёшь? Об это рассказывается в данной книге. ent-BookImplants = Устройство имплантов НТ - .desc = Тут описаны принципы действия стандартный имплантов корпорации НаноТрейзен массового производства. + .desc = Тут описаны принципы действия стандартных имплантов корпорации Nanotrasen массового производства. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/base_clothing.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/base_clothing.ftl index 65bbe1b1040..5f530301543 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/base_clothing.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/base_clothing.ftl @@ -10,3 +10,5 @@ ent-ClothingSlotBase = { "" } .desc = { "" } ent-ContentsExplosionResistanceBase = { "" } .desc = { "" } +ent-BaseToggleClothing = { "" } + .desc = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl index b39cbd55c29..293cf825e97 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl @@ -25,6 +25,11 @@ ent-ClothingHeadHatFancyCrown = причудливая корона ent-ClothingHeadHatCatEars = кошачьи ушки .desc = НЯ! .suffix = НЕ МАППИТЬ! +ent-ClothingHeadHatCatEarsValid = { ent-ClothingHeadHatCatEars } + .suffix = Valid, НЕ МАППИТЬ! + .desc = { ent-ClothingHeadHatCatEars.desc } +ent-ActionBecomeValid = Become Valid + .desc = *замечает ваш знак смерти* owo whats this ent-ClothingHeadHatDogEars = собачьи ушки .desc = Только для хороших мальчиков. .suffix = НЕ МАППИТЬ! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index b9f65f47953..1cba1671bff 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -8,13 +8,5 @@ ent-ClothingShoesBootsMagBlinding = магнитные сапоги ослепл .desc = Они будут отлично смотреться на ловкаче вроде вас. ent-ClothingShoesBootsMagSyndie = кроваво-красные магнитные сапоги .desc = Созданные по технологии реверс-инжиниринга магнитные ботинки с встроенными ускорителями. -ent-ActionBaseToggleMagboots = Переключить магнитные ботинки +ent-ActionToggleMagboots = Переключить магнитные ботинки .desc = Включает или выключает магнитные ботинки. -ent-ActionToggleMagboots = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsAdvanced = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsSci = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } -ent-ActionToggleMagbootsSyndie = { ent-ActionBaseToggleMagboots } - .desc = { ent-ActionBaseToggleMagboots.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl index 8e20783db01..2e48560c4d1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/ghost_roles.ftl @@ -22,6 +22,5 @@ ent-SpawnPointNukeopsOperative = { ent-SpawnPointLoneNukeOperative } .desc = { ent-SpawnPointLoneNukeOperative.desc } ent-SpawnPointGhostDragon = { ent-BaseAntagSpawner } .desc = { ent-BaseAntagSpawner.desc } -ent-SpawnPointGhostSpaceNinja = спавнер роли призрак - .suffix = Космический ниндзя - .desc = { ent-MarkerBase.desc } +ent-SpawnPointGhostSpaceNinja = { ent-BaseAntagSpawner } + .desc = { ent-BaseAntagSpawner.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl index 0b89ea31d56..15dc5928ff9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -13,5 +13,3 @@ ent-MobHumanNukeOp = Ядерный оперативник .desc = { ent-MobHuman.desc } ent-MobHumanLoneNuclearOperative = Одинокий оперативник .desc = { ent-MobHuman.desc } -ent-MobHumanSpaceNinja = Космический ниндзя - .desc = { ent-MobHuman.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/vox.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/vox.ftl index 6164044dbe2..608558055ab 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/vox.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/vox.ftl @@ -1,2 +1,2 @@ -ent-MobVox = Урист МакВокс +ent-MobVox = Уристистист МакВокс .desc = { ent-BaseMobVox.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl index 01978bc7bbc..500e4517ce9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/wristwatch.ftl @@ -1,4 +1,4 @@ -ent-Wristwatch = wristwatch - .desc = A cheap watch for telling time. How much did you waste playing Space Station 14? -ent-WristwatchGold = gold watch - .desc = A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani. +ent-Wristwatch = наручные часы + .desc = Дешёвые часы для определения времени. Сколько времени уже длится эта смена? +ent-WristwatchGold = золотые часы + .desc = Модные часы, стоимостью больше, чем ваша почка. Они принадлежали печально известному мафиози Синдиката Вунибальдо "200-фунтовая лошадерубка" Фредиани. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl index ffa46319ce8..f0063f8d613 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/ore.ftl @@ -6,6 +6,12 @@ ent-GoldOre = золотоносная руда ent-GoldOre1 = { ent-GoldOre } .suffix = Один .desc = { ent-GoldOre.desc } +ent-DiamondOre = алмазная руда + .suffix = Полный + .desc = { ent-OreBase.desc } +ent-DiamondOre1 = { ent-DiamondOre } + .suffix = Один + .desc = { ent-DiamondOre.desc } ent-SteelOre = железная руда .suffix = Полный .desc = { ent-OreBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl index 8ac8ffb04d7..e9b6453c2b3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/windoors/base_structurewindoors.ftl @@ -4,9 +4,9 @@ ent-BaseSecureWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } ent-BasePlasmaWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } -ent-BaseSecurePlasmaWindoor = { ent-BaseWindoor } - .desc = { ent-BaseWindoor.desc } +ent-BaseSecurePlasmaWindoor = { ent-BaseSecureWindoor } + .desc = { ent-BaseSecureWindoor.desc } ent-BaseUraniumWindoor = { ent-BaseWindoor } .desc = { ent-BaseWindoor.desc } -ent-BaseSecureUraniumWindoor = { ent-BaseWindoor } - .desc = { ent-BaseWindoor.desc } +ent-BaseSecureUraniumWindoor = { ent-BaseSecureWindoor } + .desc = { ent-BaseSecureWindoor.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl index 0d60cc57451..2fb4b45f99b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl @@ -7,6 +7,9 @@ ent-AsteroidRockCoal = { ent-AsteroidRock } ent-AsteroidRockGold = { ent-AsteroidRock } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-AsteroidRockDiamond = { ent-AsteroidRock } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-AsteroidRockPlasma = { ent-AsteroidRock } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -82,6 +85,9 @@ ent-IronRockSalt = { ent-IronRock } ent-IronRockArtifactFragment = { ent-IronRock } .desc = Каменная стена. Что это торчит из неё? .suffix = Фрагмент артефакта +ent-IronRockDiamond = { ent-IronRock } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRock = камень .desc = { ent-BaseStructure.desc } .suffix = планета @@ -91,6 +97,9 @@ ent-WallRockCoal = { ent-WallRock } ent-WallRockGold = { ent-WallRock } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockDiamond = { ent-WallRock } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockPlasma = { ent-WallRock } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -123,6 +132,9 @@ ent-WallRockBasaltCoal = { ent-WallRockBasalt } ent-WallRockBasaltGold = { ent-WallRockBasalt } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockBasaltDiamond = { ent-WallRockBasalt } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockBasaltPlasma = { ent-WallRockBasalt } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -155,6 +167,9 @@ ent-WallRockSnowCoal = { ent-WallRockSnow } ent-WallRockSnowGold = { ent-WallRockSnow } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockSnowDiamond = { ent-WallRockSnow } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockSnowPlasma = { ent-WallRockSnow } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -187,6 +202,9 @@ ent-WallRockSandCoal = { ent-WallRockSand } ent-WallRockSandGold = { ent-WallRockSand } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockSandDiamond = { ent-WallRockSand } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockSandPlasma = { ent-WallRockSand } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -219,6 +237,9 @@ ent-WallRockChromiteCoal = { ent-WallRockChromite } ent-WallRockChromiteGold = { ent-WallRockChromite } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockChromiteDiamond = { ent-WallRockChromite } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockChromitePlasma = { ent-WallRockChromite } .desc = Рудная жила, богатая плазмой. .suffix = Плазма @@ -251,6 +272,9 @@ ent-WallRockAndesiteCoal = { ent-WallRockAndesite } ent-WallRockAndesiteGold = { ent-WallRockAndesite } .desc = Рудная жила, богатая золотом. .suffix = Золото +ent-WallRockAndesiteDiamond = { ent-WallRockAndesite } + .desc = Рудная жила, богатая алмазами. + .suffix = Алмазы ent-WallRockAndesitePlasma = { ent-WallRockAndesite } .desc = Рудная жила, богатая плазмой. .suffix = Плазма diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml index e67d414c765..4f602bb80bb 100644 --- a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -639,7 +639,7 @@ Таяраны – порядка 46 представителей - Вульпакины – порядка 60 представителей + Вульпканины – порядка 60 представителей 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. @@ -649,7 +649,7 @@ ОПЗ (Объединённое Правительство Земли) - Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпакины + Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпканины Союз Советских Социалистических Планет From c3f4f4019cbb3cf557b93c4f60a704d7d855e9b6 Mon Sep 17 00:00:00 2001 From: MureixloI <132683811+MureixloI@users.noreply.github.com> Date: Tue, 16 Jul 2024 16:38:50 +0300 Subject: [PATCH 86/97] Add new Corvax's pins (#2385) --- .../Corvax/Entities/Clothing/Neck/pins.yml | 184 +++++++++++++----- .../Loadouts/Miscellaneous/trinkents.yml | 90 +++++++++ .../Entities/Structures/Furniture/dresser.yml | 29 +++ .../Prototypes/Loadouts/loadout_groups.yml | 11 +- .../Neck/Misc/pins.rsi/ath-equipped-NECK.png | Bin 0 -> 197 bytes .../Clothing/Neck/Misc/pins.rsi/ath.png | Bin 0 -> 455 bytes ...mm-equipped.png => comm-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/cor-equipped-NECK.png | Bin 0 -> 180 bytes .../Clothing/Neck/Misc/pins.rsi/cor.png | Bin 0 -> 565 bytes ...nk-equipped.png => donk-equipped-NECK.png} | Bin ...h-equipped.png => earth-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/echo-equipped-NECK.png | Bin 0 -> 202 bytes .../Clothing/Neck/Misc/pins.rsi/echo.png | Bin 0 -> 427 bytes .../Neck/Misc/pins.rsi/ely-equipped-NECK.png | Bin 0 -> 198 bytes .../Clothing/Neck/Misc/pins.rsi/ely.png | Bin 0 -> 465 bytes ...uipped.png => logistika-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/main-equipped-NECK.png | Bin 0 -> 205 bytes .../Clothing/Neck/Misc/pins.rsi/main.png | Bin 0 -> 496 bytes ...med-equipped.png => med-equipped-NECK.png} | Bin .../Clothing/Neck/Misc/pins.rsi/meta.json | 83 +++++++- ...quipped.png => nakamura-equipped-NECK.png} | Bin ...no-equipped.png => nano-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/neb-equipped-NECK.png | Bin 0 -> 185 bytes .../Clothing/Neck/Misc/pins.rsi/neb.png | Bin 0 -> 532 bytes .../Neck/Misc/pins.rsi/nova-equipped-NECK.png | Bin 0 -> 191 bytes .../Clothing/Neck/Misc/pins.rsi/nova.png | Bin 0 -> 490 bytes ...nd-equipped.png => sind-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/sol-equipped-NECK.png | Bin 0 -> 189 bytes .../Clothing/Neck/Misc/pins.rsi/sol.png | Bin 0 -> 470 bytes ...vit-equipped.png => vit-equipped-NECK.png} | Bin .../Neck/Misc/pins.rsi/wl-equipped-NECK.png | Bin 0 -> 190 bytes .../Corvax/Clothing/Neck/Misc/pins.rsi/wl.png | Bin 0 -> 464 bytes 32 files changed, 339 insertions(+), 58 deletions(-) create mode 100644 Resources/Prototypes/Corvax/Loadouts/Miscellaneous/trinkents.yml create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{comm-equipped.png => comm-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/cor-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/cor.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{donk-equipped.png => donk-equipped-NECK.png} (100%) rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{earth-equipped.png => earth-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/echo-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/echo.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ely-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ely.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{logistika-equipped.png => logistika-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{med-equipped.png => med-equipped-NECK.png} (100%) rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{nakamura-equipped.png => nakamura-equipped-NECK.png} (100%) rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{nano-equipped.png => nano-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/neb-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/neb.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/nova-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/nova.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{sind-equipped.png => sind-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/sol-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/sol.png rename Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/{vit-equipped.png => vit-equipped-NECK.png} (100%) create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl-equipped-NECK.png create mode 100644 Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl.png diff --git a/Resources/Prototypes/Corvax/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Corvax/Entities/Clothing/Neck/pins.yml index cfbc644e101..a708f38c6fb 100644 --- a/Resources/Prototypes/Corvax/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Corvax/Entities/Clothing/Neck/pins.yml @@ -1,3 +1,16 @@ +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckAtharaPin + name: starry sky pin + description: The pin of starry sky. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: ath + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: ath + - type: entity parent: ClothingNeckPinBase id: ClothingNeckUSSPPin @@ -6,14 +19,24 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: comm + state: comm - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: comm-equipped - + equippedPrefix: comm + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckCorvaxPin + name: cluster pin + description: The pin of cluster. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: cor + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: cor + - type: entity parent: ClothingNeckPinBase id: ClothingNeckDonkPin @@ -22,13 +45,10 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: donk + state: donk - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: donk-equipped + equippedPrefix: donk - type: entity parent: ClothingNeckPinBase @@ -38,13 +58,36 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: earth + state: earth + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: earth + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckEchoPin + name: comet pin + description: The pin of comet. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: echo - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: earth-equipped + equippedPrefix: echo + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckElysiumPin + name: dark planet pin + description: The pin of dark planet. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: ely + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: ely - type: entity parent: ClothingNeckPinBase @@ -54,14 +97,24 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: logistika + state: logistika - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: logistika-equipped - + equippedPrefix: logistika + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckMainPin + name: rocket pin + description: The pin of rocket. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: main + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: main + - type: entity parent: ClothingNeckPinBase id: ClothingNeckDeForestPin @@ -70,13 +123,10 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: med + state: med - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: med-equipped + equippedPrefix: med - type: entity parent: ClothingNeckPinBase @@ -86,13 +136,10 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: nakamura + state: nakamura - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: nakamura-equipped + equippedPrefix: nakamura - type: entity parent: ClothingNeckPinBase @@ -102,13 +149,36 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: nano + state: nano + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: nano + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckNebulaPin + name: nebula pin + description: The pin of nebula. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: neb + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: neb + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckNovaPin + name: ring planet pin + description: The pin of ring planet. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: nova - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: nano-equipped + equippedPrefix: nova - type: entity parent: ClothingNeckPinBase @@ -118,13 +188,23 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: sind + state: sind + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: sind + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckSolarisPin + name: space cheese pin + description: The pin of space cheese. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: sol - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: sind-equipped + equippedPrefix: sol - type: entity parent: ClothingNeckPinBase @@ -134,10 +214,20 @@ components: - type: Sprite sprite: Corvax/Clothing/Neck/Misc/pins.rsi - layers: - - state: vit + state: vit + - type: Clothing + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + equippedPrefix: vit + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckWhiteListPin + name: quasar pin + description: The pin of quasar. + components: + - type: Sprite + sprite: Corvax/Clothing/Neck/Misc/pins.rsi + state: wl - type: Clothing sprite: Corvax/Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: vit-equipped + equippedPrefix: wl diff --git a/Resources/Prototypes/Corvax/Loadouts/Miscellaneous/trinkents.yml b/Resources/Prototypes/Corvax/Loadouts/Miscellaneous/trinkents.yml new file mode 100644 index 00000000000..3c44d7c9ac5 --- /dev/null +++ b/Resources/Prototypes/Corvax/Loadouts/Miscellaneous/trinkents.yml @@ -0,0 +1,90 @@ +# pins +- type: loadout + id: ClothingNeckAtharaPin + equipment: ClothingNeckAtharaPin + +- type: startingGear + id: ClothingNeckAtharaPin + storage: + back: + - ClothingNeckAtharaPin + +- type: loadout + id: ClothingNeckCorvaxPin + equipment: ClothingNeckCorvaxPin + +- type: startingGear + id: ClothingNeckCorvaxPin + storage: + back: + - ClothingNeckCorvaxPin + +- type: loadout + id: ClothingNeckEchoPin + equipment: ClothingNeckEchoPin + +- type: startingGear + id: ClothingNeckEchoPin + storage: + back: + - ClothingNeckEchoPin + +- type: loadout + id: ClothingNeckElysiumPin + equipment: ClothingNeckElysiumPin + +- type: startingGear + id: ClothingNeckElysiumPin + storage: + back: + - ClothingNeckElysiumPin + +- type: loadout + id: ClothingNeckMainPin + equipment: ClothingNeckMainPin + +- type: startingGear + id: ClothingNeckMainPin + storage: + back: + - ClothingNeckMainPin + +- type: loadout + id: ClothingNeckNebulaPin + equipment: ClothingNeckNebulaPin + +- type: startingGear + id: ClothingNeckNebulaPin + storage: + back: + - ClothingNeckNebulaPin + +- type: loadout + id: ClothingNeckNovaPin + equipment: ClothingNeckNovaPin + +- type: startingGear + id: ClothingNeckNovaPin + storage: + back: + - ClothingNeckNovaPin + +- type: loadout + id: ClothingNeckSolarisPin + equipment: ClothingNeckSolarisPin + +- type: startingGear + id: ClothingNeckSolarisPin + storage: + back: + - ClothingNeckSolarisPin + +- type: loadout + id: ClothingNeckWhiteListPin + equipment: ClothingNeckWhiteListPin + +- type: startingGear + id: ClothingNeckWhiteListPin + storage: + back: + - ClothingNeckWhiteListPin diff --git a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml index 92d1118d4ea..01f5812f57b 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml @@ -56,6 +56,35 @@ - id: ClothingNeckLGBTPin prob: 0.06 orGroup: dressermainloot + # Corvax-Pins-Start + - id: ClothingNeckAtharaPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckCorvaxPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckEchoPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckElysiumPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckMainPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckNebulaPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckNovaPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckSolarisPin + prob: 0.06 + orGroup: dressermainloot + - id: ClothingNeckWhiteListPin + prob: 0.06 + orGroup: dressermainloot + # Corvax-Pins-End - id: ClothingUniformJumpsuitColorGrey prob: 0.06 orGroup: dressermainloot diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index cba9e4c6626..917afa6ed26 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -26,7 +26,16 @@ - ClothingNeckTransPin - ClothingNeckAutismPin - ClothingNeckGoldAutismPin - + # Corvax-Loadouts-Start + - ClothingNeckAtharaPin + - ClothingNeckCorvaxPin + - ClothingNeckEchoPin + - ClothingNeckElysiumPin + - ClothingNeckMainPin + - ClothingNeckNebulaPin + - ClothingNeckNovaPin + - ClothingNeckWhiteListPin + # Corvax-Loadouts-End - type: loadoutGroup id: Glasses name: loadout-group-glasses diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath-equipped-NECK.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..2da22adc1e18a6fb682b768e8ba21eeed807c29f GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|>OEZ?Ln`LH zy|s~($x+1hVt%MhV)a19Akff1Ezr$s n!i$BeQzr7MR0*U4#T-sacTQKTO-?t_11a%z^>bP0l+XkK8wN$# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ath.png new file mode 100644 index 0000000000000000000000000000000000000000..1f51a87998b488d9006264d92927626b13417e11 GIT binary patch literal 455 zcmV;&0XY7NP)Px$fk{L`R9J=Wm9b01KorKmNV|xWu8LTvXu+W*yPKl8C=^}v4-j-~MM!aw{sqo% zg$|`Cg$Sjj#X*Q~=h#?yd&X|_ z0)==6-mkh?LPy83vAKOf!0GOk2<^`03cWAHGXQ|d(<8k+$EI%ZiVL98Yy$vp&s$8s z`}vOJmn#~d-W>^#fy<_it$ot@m<2Gj`THhM0YaNDPNUVRPHqIRewT^;`6VVEs2U#J zLkv_616AW`DF)!yEhXA_0Su2_*qoEu82~`E@4~HHd}ojsAZ(*i7sh!3g#ZE<{QK+B x^47o-1*>c8WVB{Jl$4Z|)DHm{l#+hV*KGg*002ovPDHLkV1fd5$n5|C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/comm-equipped.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/comm-equipped-NECK.png similarity index 100% rename from Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/comm-equipped.png rename to Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/comm-equipped-NECK.png diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/cor-equipped-NECK.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/cor-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..68a4cd97589f9831271fa6713d319d9657679664 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|@;qG}Ln`LH zy|s|HB|yX_P-Gfg21D!Nyrza0uCN4y8S$c`YnQSLvB=tFDM&Xxn8T&EIDZ-=14F^x zi1QbhtKKT=Siarn(ePx$?@2^KR9J=WlubxfQ5c4w>rccq3zN*GNW+T3O(H?l%H0ID7zknzBq#_86a*n~ zHB5`9g^LlQ!3YeU&0vJH=py2xz@bT+OoSXqCO0{*AjccNaH_wH8^BaofYJA}i2H582dtcNf0}E{Bv)qofR_1^G-5`B$OVV$F(jnYUCFw~ev3_g;(2*$rS?9E0rPE)e6EF;e zu}enu rSj$ryk{&(_v!+~3W$rNo3NJXxpY=lWf7$`&Ss+!Ou6{1-oD!MPx$Wl2OqR9J=Wl)p>EKoo$#C^&R+>Lzw@R4j;#w2Oa0ySO?DPIc9~sQ5qV>R4S| zOeKXllJZ61z^0}8!UG++1W VkH$2o?5qF)002ovPDHLkV1ggH!O#Ez literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ely-equipped-NECK.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/ely-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1b2d4939e9029fd4b162e6dfaab5b8e9d977bd GIT binary patch literal 198 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|8a!PbLn`LH zy|q!WDL}yW;$JtHwx|Zy8xuCF3f<~z%wS^_G-eAp5??5BPV>RpbH~h?7#I@Tz1|*p zTQ$G^z4o$=M;2$V{(i0Ogv88aLT3xl&4`Nq%4}CFzWlW1y!UpG<$zXzz>mhWth|Cd p1Kqq7KJrHf9#fN7I0Y1L(Bk&(Rjz*V{>?{_DoPx$i%CR5R9J=Wl(A02P!xv0Ys3(wR*fbKDlxJc2cE&v#3%4Qj7~ldadI+ZLP!~$ z98?H67#c#6s!^g)CFpV;kVeGeHo>^uZ|Z4J&-wZ{Eod|v%|9blnxvEi_1^x$z=>k1 zLgqLC~4SB!8Jv00000NkvXX Hu0mjf-zd;! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/logistika-equipped.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/logistika-equipped-NECK.png similarity index 100% rename from Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/logistika-equipped.png rename to Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/logistika-equipped-NECK.png diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main-equipped-NECK.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..220e874cda1168bd01eeed91d7c8ba6817868bf0 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|+C5zyLn`LH zy|t0^P=H9=#qI|T-yZQKJ!H_-X-Rk~@b0mgm|mh_0jstkli;Rzopr0I29sLjV8( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/main.png new file mode 100644 index 0000000000000000000000000000000000000000..15bc32197db5332694bf922bce0c43fd708680e4 GIT binary patch literal 496 zcmVPx$s!2paR9J=Wlusx`K>)^oyW$`vMLEbpN^)2c2fG&s92~Y#F5=>bGdW;SN;%0{ zIVgpatu5LfS$`6;+EucN_3yBYL?|*2>y3T6%xdK_ztg;#ukZWbdou$XjYjj&*i=M9 z2+MQ-z>sC)FciV(ow0b?Y)aOt74WSXV%2Xj*jGqza}a=-%Sl0CgLu(nLi1H5?FD=* zhB)gU0AMq(Qm$R!URtzSj$C}+8JlVWyOIi6^&0@R?k_X$AEWO6;753-yIs{zlA$7c zdHoQZ!~o^&^f%waak=bCusG)P!QMvV7{sm zfN77L*8OGL>~Y%cac&;t02Fuhs9LHQI1EMPcB`gw`nP6+wtelFK@M3-AUX)(?Os>C^beRHHBSBwZjO= aRXELPx$&PhZ;R9J=Wls`xtQ5?rVSHyxrs*uvbKcRy|v1t$-1S3=nibc`IrF1a3Sh`iH z4w{w>-K1C$x>OyC(5VXAD-G9kh&UGiEh<8CA!lu*NYq92bx1GGfrWRVxV+Ey-uv z_TJxoo2#Vj)wyh>yuk2CRJ`fi1@b#?@BL3Wk!v@CK zdx#8?{PKg2clQZC+V-%Oe@I`$`cSK=X^C(;{|Nv)m%TVJP{!t}DSZt+{Q{>sfF840 zH|o%1R$Bbj3ZKv)3^{UDWFg&6pBAP WaHOLhU-6m%0000K8lN3>vu#8u)7_>|MA}CV*k?62(gY1M_G87H4E&IPg6y zbMLfkzyDrIzyGN_`Phll>LYLeO#gp8u_U41c5%$L6}cyOumg<;fgdM&jDnatB{wbV idFYVD76@_*PbG7Bp6tn%W3%>ylz6)OxvXkF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/nova.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/nova.png new file mode 100644 index 0000000000000000000000000000000000000000..296b114a47a698b6e9fb2e4f3e8e0f4f594515eb GIT binary patch literal 490 zcmVPx$q)9|UR9J=WmA^{@VI0Pvi(CT9qQD^%8gp=HOCh8wa%_lj32L&&P#XLPY6>E9 zXcB)w5<;R7auOxf5S*Qxi$6LOH3%UjhqpoR)#D)F3!|a?z`^@I_vQIMeDCf(Ku1SM z=fA_T77{`fd#}&05OQJx$?K59kK=~hYYvdS;YlXVLrT?DHI2Dex26|_CBPVK0J(YS zAcDhvGu7%2JEUd>QnP|j;T@542i9C$%@wPc1&Fp&YFNl zHb3TfASV{+I^}sm`qH9mDqq`SJFBhs30!PGz~EfQ>P8W6gNf>cO*?!RrSjBh1C+{D z%y34!?@pjUg$|#k>tKKYMlhl29I)D)#B+Ou-LoCl{a~Q~s3*^^t|vp0RX^ia}od`#ShH8JtzfF`(~DIxV*qKpM*dD7sx>dksDKU gh5$M`Iy!&O7bWkTK8{a9eE>$u~v6qSG$brxjjs-oeE0ozBH5W55fAQI6k&q@>$Xa~3n(5!oo4>k&`gSaI ze|zB0eq*Ia-|s)(UBBx4tl~AndEO^4@m7A-oh~tdz0TbU$F1&uW(2AQ0h0wM7dTE) fJSC6{_9{l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/sol.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/sol.png new file mode 100644 index 0000000000000000000000000000000000000000..1432f824241cd9129a3a98b526f8648f91ed1efc GIT binary patch literal 470 zcmV;{0V)28P)Px$kV!;AR9J=WlusxGQ5?rV&%c9*3HG@5@#s1!*l zL+=xlv!M?sXXm80lc8QhD77w3Ahl!3y^KXJ{Q$sYQzO*}hXCYjU)-8ck)jKvb}X43 z+xRw@d%E+-p^?GS-iwLEg7Esfbmnwp16Gn4FcyR42LgGOH`E zT>m5irIAYjhOZY@TdE73 zoSpl@UT9Dxl8F1`1!JiA0$&NP9KbPc9MksaZ*K34E8sPBOgpsNNFt77+Vrm15FKph zG*hn}?4h&?ovbCIu~s==I>)>@{d=8hBa8@6)++un1oxPY(g5J@_%GqT>oo|Ykd6i3 zgwa^51d!Kn0Mrc(akJ*`dSO($B3bKiZo(j*NDwdBZ>%Vw(P%W950)&ODLod>{{R30 M07*qoM6N<$g2s5*3;+NC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/vit-equipped.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/vit-equipped-NECK.png similarity index 100% rename from Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/vit-equipped.png rename to Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/vit-equipped-NECK.png diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl-equipped-NECK.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl-equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..b658e12c075f3a05a6c4336b4b9dc9c76620db05 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|Dm+~rLn`LH zy|t0EIY6ZCqC49O7ALn2{wwDi-&nG7+sUePNs3Jg2YBbP0l+XkKTSZ5d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl.png b/Resources/Textures/Corvax/Clothing/Neck/Misc/pins.rsi/wl.png new file mode 100644 index 0000000000000000000000000000000000000000..6e4e24ad97d24d857782523f24b3ee632755eece GIT binary patch literal 464 zcmV;>0WbcEP)Px$ib+I4R9J=Wls`+uKpcjj_z!W=N!qy}4hj_=#8?n@QUnJJVs}4*sC6j{PKvuA zWQ<=xOhMWx_-9qAgCHU*(I`5&Xa_lmn$Xw|7p%D40|&ocUf$oE%iV!Op-}uYnv6&Y z5qMrqX95%Fg)6KbGvK9ZQr6)DSbMhE&)GOxmw|&>PKLGscuowW-DFFe?;te~VC~tW zueTR~xzUBdd*|ieubbj+SUaXB8=y`~1?=Z+zuw5L;k?}Y<2OhJSWIVxlXWY;++(V+ zf{`p@B#UfzJTW$r5>_HnL9l(qTY*d-qV=06z^IC#U^d z?;ntERt@Q6*cBfZ(bpCLjAXH5**`8HagVPV&wp}pX4n20LTR^`^Ktp;kFcB1Bh*dU z6(1G=yCd}#n(_Q602gQW-`s@dctOhX8vDkQ0Tc>_Lh%LK@s|rK(DxMp0000 Date: Tue, 16 Jul 2024 17:07:12 +0300 Subject: [PATCH 87/97] [Maps] Train remove (#2417) Co-authored-by: poeMota --- Resources/Prototypes/Corvax/Maps/Pools/corvax.yml | 1 - Resources/Prototypes/Corvax/Maps/Pools/default.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index bed463766c2..cb834ab35c3 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -15,4 +15,3 @@ - CorvaxFrame - CorvaxPearl - Box - - Train diff --git a/Resources/Prototypes/Corvax/Maps/Pools/default.yml b/Resources/Prototypes/Corvax/Maps/Pools/default.yml index 2088ff3cccc..77181ffa9b1 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/default.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/default.yml @@ -28,4 +28,3 @@ - Saltern - Packed - Reach - - Train From b3c1cbbf43b0516661c9160d6d80201174d19d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B0=D1=81=D1=82=D1=8F?= <164001172+meowstushka@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:43:09 +0300 Subject: [PATCH 88/97] [Maps] Delta Tweak (#2400) --- Resources/Maps/corvax_delta.yml | 41295 +++++++++++++++--------------- 1 file changed, 20691 insertions(+), 20604 deletions(-) diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index e00c4f41424..8ec3d6b2aa2 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -49,6 +49,9 @@ tilemap: 71: FloorMiningDark 72: FloorMiningLight 21: FloorMowedAstroGrass + 40: FloorOldConcrete + 38: FloorOldConcreteMono + 39: FloorOldConcreteSmooth 78: FloorPlanetDirt 80: FloorPlastic 81: FloorRGlass @@ -225,7 +228,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: gQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAAAAAAAAAgAAAAAAAJQAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADJQAAAAAAJgAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAJwAAAAAAKAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJwAAAAAAJwAAAAAAJgAAAAAAJgAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJgAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAAAAAAAAAgAAAAAAAJQAAAAAAYAAAAAABJQAAAAAAYAAAAAACYAAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAD version: 6 -3,-2: ind: -3,-2 @@ -265,7 +268,7 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: gAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAfQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: gAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAJgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAJwAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAKAAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -737,13 +740,13 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15988: 88,3 - 21525: -16.954817,20.099903 + 15842: 88,3 + 21360: -16.954817,20.099903 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 21526: 14.8853855,19.990562 + 21361: 14.8853855,19.990562 - node: color: '#FFFFFFFF' id: Bot @@ -815,23 +818,23 @@ entities: 1221: 63,7 1222: 63,8 1223: 63,9 - 7021: 4,29 - 7022: 5,29 - 7023: 6,29 - 7024: 7,29 - 7025: 8,29 - 7026: 8,28 - 7027: 7,28 - 7028: 7,28 - 7029: 6,28 - 7030: 5,28 - 7031: 4,28 - 18739: 12,-13 - 18740: 13,-13 - 18741: 14,-13 - 18742: 14,-14 - 18743: 13,-14 - 18744: 12,-14 + 6994: 4,29 + 6995: 5,29 + 6996: 6,29 + 6997: 7,29 + 6998: 8,29 + 6999: 8,28 + 7000: 7,28 + 7001: 7,28 + 7002: 6,28 + 7003: 5,28 + 7004: 4,28 + 18574: 12,-13 + 18575: 13,-13 + 18576: 14,-13 + 18577: 14,-14 + 18578: 13,-14 + 18579: 12,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -894,12 +897,12 @@ entities: 1145: -91,-3 1146: -91,-13 1147: -95,-13 - 20192: -16,4 - 20193: -16,3 - 20194: -16,2 - 20195: -16,1 - 20196: -16,0 - 20197: -16,-1 + 20027: -16,4 + 20028: -16,3 + 20029: -16,2 + 20030: -16,1 + 20031: -16,0 + 20032: -16,-1 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -949,8 +952,8 @@ entities: color: '#A9DA8BFF' id: Box decals: - 3040: -31,45 - 3041: -31,38 + 3013: -31,45 + 3014: -31,38 - node: color: '#FFFFFFFF' id: Box @@ -984,4977 +987,4976 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 20211: -16,3 - 20212: -16,2 - 20213: -16,1 - 20214: -16,0 - 20215: -16,-1 - 20216: -16,4 + 20046: -16,3 + 20047: -16,2 + 20048: -16,1 + 20049: -16,0 + 20050: -16,-1 + 20051: -16,4 - node: color: '#DA8B8BFF' id: BrickTileDarkBox decals: - 19512: 55,9 + 19347: 55,9 - node: color: '#EFB341FF' id: BrickTileDarkBox decals: - 18001: -61,57 - 18002: -63,53 - 18003: -61,50 - 18004: -61,48 - 18005: -59,55 - 18006: -54,43 - 18007: -56,43 - 18008: -51,41 - 18009: -55,39 - 18010: -48,43 - 18011: -46,41 + 17855: -61,57 + 17856: -63,53 + 17857: -61,50 + 17858: -61,48 + 17859: -59,55 + 17860: -54,43 + 17861: -56,43 + 17862: -51,41 + 17863: -55,39 + 17864: -48,43 + 17865: -46,41 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2000: -8,30 - 2001: -8,33 - 2002: -4,30 - 2003: -8,27 - 2020: -9,25 - 2278: -14,48 - 2279: -14,50 - 2301: -25,41 - 2354: -28,30 - 2417: -31,29 - 2438: -30,39 - 2542: -9,45 - 2632: -5,37 - 2633: -1,42 - 2635: -1,40 - 2665: -1,55 - 2666: -2,51 - 2722: 3,49 - 2724: -12,51 - 2740: -6,51 - 2795: -1,48 - 2817: -4,47 - 2863: -30,44 - 2864: -32,44 - 3014: -36,49 - 3015: -38,44 - 3462: -1,61 - 3465: 2,59 - 3591: -14,77 - 3592: -16,77 - 3593: -10,77 - 3594: -8,77 - 3670: 4,77 - 3671: 2,77 - 3672: 4,84 - 3673: 2,84 - 3674: 6,86 - 3710: 6,66 - 3716: 4,64 - 3719: 4,60 - 3722: 5,91 - 3735: 10,83 - 3736: 13,78 - 3737: 12,73 - 3742: 10,89 - 3743: 12,87 - 3747: 5,93 - 3748: 10,91 - 3752: -22,55 - 3754: -25,66 - 3756: -25,63 - 3757: -25,61 - 3758: -25,59 - 3759: -28,59 - 3760: -30,66 - 3802: 4,57 - 3849: 9,68 - 3853: 13,67 - 3920: 24,66 - 3921: 16,66 - 3950: 7,58 - 3994: -31,59 - 3995: -38,58 - 3996: -38,58 - 3997: -38,58 - 3998: -36,58 - 4151: -21,20 - 4189: -25,18 - 4190: -21,20 - 4191: -21,17 - 4226: -10,12 - 4414: 1,29 - 4417: 4,32 - 4418: 9,32 - 4419: 11,28 - 4420: 11,30 - 4421: 13,33 - 4511: 15,33 - 4548: 10,38 - 4549: 5,38 - 4550: 10,41 - 4627: 12,45 - 4628: 12,43 - 4693: 19,24 - 4694: 21,25 - 4703: 28,31 - 4704: 23,36 - 4832: 28,39 - 4903: 33,51 - 4904: 33,49 - 4905: 39,51 - 4943: 10,55 - 4944: 17,55 - 5104: 39,52 - 5105: 39,48 - 5106: 33,48 - 5107: 33,52 - 5108: 39,49 - 5133: 31,29 - 5134: 35,29 - 5135: 37,30 - 5136: 35,33 - 5568: -17,4 - 5569: -17,-1 - 5625: -35,26 - 5674: -1,-7 - 5675: 8,-7 - 5683: 15,-4 - 5686: -11,6 - 5687: -15,4 - 5688: -14,-5 - 5697: 8,12 - 5728: 13,3 - 5743: 8,4 - 5756: 10,-1 - 5815: 12,-3 - 5844: -10,-7 - 6284: -4,-13 - 6285: 2,-13 - 6286: -4,-18 - 6287: -3,-16 - 6392: 8,-18 - 6393: 11,-16 - 6482: -21,-20 - 6584: -24,-10 - 6725: -31,1 - 6737: -24,-1 - 6738: -23,3 - 6746: -28,-17 - 6812: -17,-1 - 6814: -31,7 - 6815: -36,7 - 6820: -26,16 - 6847: -42,2 - 6939: -36,17 - 6992: -24,-19 - 6993: -24,-19 - 7095: 22,7 - 7114: 22,3 - 7115: 19,-3 - 7116: 22,-9 - 7163: 24,-8 - 7214: 32,1 - 7215: 35,3 - 7216: 36,-3 - 7217: 24,-2 - 7220: 30,3 - 7330: 29,7 - 7391: 33,6 - 7392: 33,4 - 7393: 36,7 - 7394: 36,10 - 7395: 38,6 - 7396: 38,4 - 7417: 45,8 - 7418: 40,10 - 7419: 45,12 - 7420: 40,2 - 7421: 45,0 - 7422: 36,10 - 7517: 49,4 - 7520: 49,8 - 7523: 53,10 - 7535: 47,14 - 7536: 51,14 - 7548: 49,16 - 7561: 37,20 - 7562: 44,20 - 7563: 52,20 - 7564: 57,20 - 7565: 55,17 - 7566: 60,25 - 7597: 49,12 - 7603: 75,24 - 7604: 75,26 - 7605: 73,20 - 7606: 71,18 - 7607: 71,13 - 7608: 71,6 - 7609: 73,4 - 7610: 75,9 - 7611: 79,9 - 7612: 83,11 - 7613: 94,17 - 7614: 94,21 - 7615: 90,21 - 7616: 92,27 - 7617: 92,24 - 7618: 83,11 - 7619: 73,4 - 7620: 72,-4 - 7621: 72,-4 - 7622: 69,-2 - 7623: 69,-2 - 7624: 64,-4 - 7625: 64,-4 - 7626: 61,-2 - 7627: 65,-2 - 7628: 52,-2 - 7629: 47,-2 - 7630: 47,-2 - 7665: 58,2 - 7666: 62,2 - 7667: 66,2 - 7668: 62,10 - 7669: 61,12 - 7670: 71,6 - 7689: 71,18 - 7690: 71,13 - 7695: 73,20 - 7815: 68,-1 - 7816: 68,1 - 7817: 71,-1 - 7818: 71,1 - 8000: 64,-19 - 8001: 66,-19 - 8002: 66,-22 - 8003: 64,-22 - 8004: 76,-22 - 8005: 76,-19 - 8006: 78,-19 - 8007: 78,-22 - 8008: 82,-22 - 8009: 82,-19 - 8066: 54,-21 - 8067: 54,-19 - 8068: 54,-11 - 8133: 23,-15 - 8134: 25,-13 - 8135: 32,-16 - 8136: 27,-17 - 8137: 29,-17 - 8138: 31,-17 - 8193: 25,-19 - 8200: 32,-12 - 8201: 32,-10 - 8202: 32,-10 - 8261: 33,-6 - 8265: 42,-8 - 8266: 39,-18 - 8267: 41,-18 - 8268: 41,-18 - 8269: 42,-19 - 8270: 42,-21 - 8273: 44,-22 - 8274: 48,-22 - 8275: 52,-22 - 8326: 40,-17 - 8404: 46,-13 - 8445: 52,-18 - 8619: 54,-29 - 9594: 2,-35 - 9595: 5,-29 - 9596: 11,-29 - 9597: 13,-29 - 9598: 12,-33 - 9599: 15,-31 - 9664: 9,-36 - 9665: 9,-34 - 9666: 5,-37 - 9671: 1,-39 - 9750: 15,-35 - 9781: 21,-33 - 9782: 29,-33 - 9783: 36,-33 - 9784: 33,-23 - 9785: 29,-28 - 9786: 23,-29 - 9787: 29,-40 - 9788: 25,-44 - 9789: 29,-44 - 9790: 29,-50 - 9791: 19,-44 - 9792: 22,-50 - 9793: 17,-48 - 9796: 27,-54 - 9960: 15,-44 - 10002: 39,-35 - 10007: 37,-43 - 10136: 35,-26 - 10137: 37,-27 - 10138: 37,-25 - 10216: 31,-54 - 10355: 4,-42 - 10356: 1,-44 - 10357: 9,-42 - 10358: 4,-48 - 10359: 1,-51 - 10360: 10,-54 - 10361: 8,-56 - 10362: 2,-55 - 10363: 12,-56 - 10364: 10,-57 - 10365: 7,-57 - 10366: 13,-47 - 10367: 17,-54 - 10547: 25,-56 - 10548: 29,-56 - 10573: 2,-60 - 10574: 2,-60 - 10575: 5,-63 - 10576: 5,-63 - 10588: 5,-73 - 10589: 5,-73 - 10590: 7,-75 - 10591: 5,-79 - 10592: 4,-87 - 10593: 4,-83 - 10594: 7,-77 - 10595: 7,-65 - 10704: 76,-45 - 10705: 73,-41 - 10706: 68,-41 - 10707: 73,-48 - 10708: 71,-50 - 10883: 33,-61 - 10935: 42,-62 - 10936: 37,-62 - 10951: 33,-68 - 10952: 37,-70 - 10953: 39,-72 - 10954: 41,-72 - 10955: 41,-72 - 11245: -61,-43 - 11246: -59,-33 - 11247: -59,-40 - 11248: -47,-46 - 11249: -47,-42 - 11361: -11,-83 - 11362: -11,-79 - 11363: -6,-83 - 11364: -4,-83 - 11365: -4,-83 - 11366: 2,-87 - 11367: -4,-87 - 11368: -6,-87 - 11372: 2,-83 - 11415: -24,-63 - 11416: -23,-71 - 11417: -23,-77 - 11418: -23,-79 - 11419: -21,-77 - 11420: -18,-78 - 11421: -12,-78 - 11422: -14,-77 - 11423: -19,-81 - 11424: -10,-63 - 11429: -34,-51 - 11430: -36,-53 - 11431: -34,-55 - 11432: -32,-53 - 11433: -3,-48 - 11443: -4,-35 - 11447: -6,-29 - 11451: -15,-29 - 11452: -13,-29 - 11688: -11,-35 - 11689: -11,-34 - 11690: -13,-33 - 11691: -15,-33 - 11741: -7,-37 - 11742: -6,-45 - 11743: -12,-50 - 11744: -20,-52 - 11745: -18,-51 - 11746: -6,-54 - 11747: -4,-56 - 11748: -16,-55 - 11753: -19,-45 - 11754: -19,-45 - 11755: -16,-40 - 11756: -34,-25 - 11757: -38,-25 - 11758: -42,-25 - 11759: -49,-28 - 11760: -42,-31 - 11761: -38,-31 - 11762: -34,-31 - 11774: -46,-24 - 11775: -48,-23 - 11776: -48,-23 - 11777: -35,-37 - 11778: -35,-37 - 11779: -42,-37 - 11780: -42,-37 - 11781: -45,-35 - 11782: -29,-37 - 11783: -29,-37 - 11784: -31,-39 - 11785: -29,-43 - 11786: -29,-43 - 11787: -24,-37 - 11788: -12,-41 - 11864: -12,-59 - 11865: -24,-43 - 11866: -24,-49 - 11925: -36,-45 - 11926: -36,-40 - 12119: -25,-24 - 12120: -23,-23 - 12121: -21,-26 - 12122: -17,-24 - 12123: -21,-31 - 12414: -17,-64 - 12415: -4,-60 - 12750: -37,27 - 12792: -45,9 - 12794: -45,18 - 12908: -45,9 - 12910: -44,23 - 13344: 52,-37 - 13412: -37,-59 - 13413: -37,-64 - 13414: -35,-66 - 13415: -41,-64 - 13426: -30,-61 - 13621: -33,-72 - 14444: -46,12 - 14445: -46,14 - 15410: -49,9 - 15411: -48,7 - 15427: -42,2 - 15735: 75,1 - 15741: 92,8 - 15742: 94,10 - 15743: 78,3 - 15744: 81,-1 - 15745: 85,-1 - 15746: 89,-1 - 15752: 96,-3 - 16058: 94,13 - 16325: -61,-48 - 16849: -58,-11 - 16850: -56,-9 - 16851: -56,-7 - 16874: -58,-11 - 16880: -56,-19 - 16881: -54,-19 - 16884: -60,-17 - 16885: -62,-17 - 16931: -58,-5 - 16936: -48,1 - 16937: -49,3 - 17001: -56,-7 - 17002: -56,-9 - 17003: -62,-7 - 17093: -62,1 - 17094: -65,1 - 17154: -62,-7 - 17237: -51,-15 - 17268: -61,-18 - 17297: -60,14 - 17298: -67,15 - 17299: -72,13 - 17300: -72,9 - 17301: -79,14 - 17302: -77,8 - 17303: -83,14 - 17304: -77,2 - 17305: -75,0 - 17306: -73,3 - 17307: -65,1 - 17308: -71,-5 - 17309: -69,-5 - 17318: -60,14 - 17319: -58,16 - 17320: -67,15 - 17321: -72,13 - 17322: -77,12 - 17323: -79,14 - 17324: -77,8 - 17325: -72,9 - 17326: -73,3 - 17327: -77,2 - 17328: -75,0 - 17329: -80,0 - 17330: -80,-5 - 17331: -82,-3 - 17332: -62,-7 - 17333: -60,6 - 17334: -60,10 - 17335: -46,14 - 17336: -46,12 - 17410: -77,8 - 17411: -72,9 - 17412: -73,3 - 17413: -77,2 - 17414: -75,0 - 17415: -80,0 - 17608: 9,90 - 17609: 11,90 - 18000: -69,55 - 18012: -55,39 - 18013: -54,43 - 18014: -56,43 - 18015: -51,41 - 18016: -48,43 - 18017: -46,41 - 18018: -61,48 - 18019: -61,50 - 18020: -63,53 - 18021: -61,57 - 18022: -67,57 - 18023: -59,55 - 18024: -60,39 - 18025: -62,39 - 18026: -55,31 - 18027: -51,21 - 18230: -44,52 - 18231: -44,50 - 18264: -52,20 - 18673: -14,-11 - 18674: -10,-11 - 18710: 8,-11 - 19161: 57,3 - 19162: 59,3 - 19163: 61,3 - 19164: 63,3 - 19165: 65,3 - 19166: 67,3 - 19170: 57,6 - 19171: 59,6 - 19172: 61,6 - 19173: 63,6 - 19174: 65,6 - 19175: 67,6 - 19176: 68,7 - 19177: 70,7 - 19178: 70,8 - 19179: 68,8 - 20000: -29,-25 - 20102: -48,-3 - 20187: -16,5 - 20188: -16,-2 - 20223: 37,39 - 20246: 71,26 - 20279: 62,27 - 20314: 40,-17 - 20315: 40,-17 - 21382: 75,-4 - 21412: 45,-8 - 21422: 51,-6 - 21441: 56,-2 - 21558: 21,23 - 21646: -62,-28 + 1973: -8,30 + 1974: -8,33 + 1975: -4,30 + 1976: -8,27 + 1993: -9,25 + 2251: -14,48 + 2252: -14,50 + 2274: -25,41 + 2327: -28,30 + 2390: -31,29 + 2411: -30,39 + 2515: -9,45 + 2605: -5,37 + 2606: -1,42 + 2608: -1,40 + 2638: -1,55 + 2639: -2,51 + 2695: 3,49 + 2697: -12,51 + 2713: -6,51 + 2768: -1,48 + 2790: -4,47 + 2836: -30,44 + 2837: -32,44 + 2987: -36,49 + 2988: -38,44 + 3435: -1,61 + 3438: 2,59 + 3564: -14,77 + 3565: -16,77 + 3566: -10,77 + 3567: -8,77 + 3643: 4,77 + 3644: 2,77 + 3645: 4,84 + 3646: 2,84 + 3647: 6,86 + 3683: 6,66 + 3689: 4,64 + 3692: 4,60 + 3695: 5,91 + 3708: 10,83 + 3709: 13,78 + 3710: 12,73 + 3715: 10,89 + 3716: 12,87 + 3720: 5,93 + 3721: 10,91 + 3725: -22,55 + 3727: -25,66 + 3729: -25,63 + 3730: -25,61 + 3731: -25,59 + 3732: -28,59 + 3733: -30,66 + 3775: 4,57 + 3822: 9,68 + 3826: 13,67 + 3893: 24,66 + 3894: 16,66 + 3923: 7,58 + 3967: -31,59 + 3968: -38,58 + 3969: -38,58 + 3970: -38,58 + 3971: -36,58 + 4124: -21,20 + 4162: -25,18 + 4163: -21,20 + 4164: -21,17 + 4199: -10,12 + 4387: 1,29 + 4390: 4,32 + 4391: 9,32 + 4392: 11,28 + 4393: 11,30 + 4394: 13,33 + 4484: 15,33 + 4521: 10,38 + 4522: 5,38 + 4523: 10,41 + 4600: 12,45 + 4601: 12,43 + 4666: 19,24 + 4667: 21,25 + 4676: 28,31 + 4677: 23,36 + 4805: 28,39 + 4876: 33,51 + 4877: 33,49 + 4878: 39,51 + 4916: 10,55 + 4917: 17,55 + 5077: 39,52 + 5078: 39,48 + 5079: 33,48 + 5080: 33,52 + 5081: 39,49 + 5106: 31,29 + 5107: 35,29 + 5108: 37,30 + 5109: 35,33 + 5541: -17,4 + 5542: -17,-1 + 5598: -35,26 + 5647: -1,-7 + 5648: 8,-7 + 5656: 15,-4 + 5659: -11,6 + 5660: -15,4 + 5661: -14,-5 + 5670: 8,12 + 5701: 13,3 + 5716: 8,4 + 5729: 10,-1 + 5788: 12,-3 + 5817: -10,-7 + 6257: -4,-13 + 6258: 2,-13 + 6259: -4,-18 + 6260: -3,-16 + 6365: 8,-18 + 6366: 11,-16 + 6455: -21,-20 + 6557: -24,-10 + 6698: -31,1 + 6710: -24,-1 + 6711: -23,3 + 6719: -28,-17 + 6785: -17,-1 + 6787: -31,7 + 6788: -36,7 + 6793: -26,16 + 6820: -42,2 + 6912: -36,17 + 6965: -24,-19 + 6966: -24,-19 + 7068: 22,7 + 7087: 22,3 + 7088: 19,-3 + 7089: 22,-9 + 7136: 24,-8 + 7187: 32,1 + 7188: 35,3 + 7189: 36,-3 + 7190: 24,-2 + 7193: 30,3 + 7303: 29,7 + 7364: 33,6 + 7365: 33,4 + 7366: 36,7 + 7367: 36,10 + 7368: 38,6 + 7369: 38,4 + 7390: 45,8 + 7391: 40,10 + 7392: 45,12 + 7393: 40,2 + 7394: 45,0 + 7395: 36,10 + 7490: 49,4 + 7493: 49,8 + 7496: 53,10 + 7508: 47,14 + 7509: 51,14 + 7521: 49,16 + 7534: 37,20 + 7535: 44,20 + 7536: 52,20 + 7537: 57,20 + 7538: 55,17 + 7539: 60,25 + 7570: 49,12 + 7576: 75,24 + 7577: 75,26 + 7578: 73,20 + 7579: 71,18 + 7580: 71,13 + 7581: 71,6 + 7582: 73,4 + 7583: 75,9 + 7584: 79,9 + 7585: 83,11 + 7586: 94,17 + 7587: 94,21 + 7588: 90,21 + 7589: 92,27 + 7590: 92,24 + 7591: 83,11 + 7592: 73,4 + 7593: 72,-4 + 7594: 72,-4 + 7595: 69,-2 + 7596: 69,-2 + 7597: 64,-4 + 7598: 64,-4 + 7599: 61,-2 + 7600: 65,-2 + 7601: 52,-2 + 7602: 47,-2 + 7603: 47,-2 + 7638: 58,2 + 7639: 62,2 + 7640: 66,2 + 7641: 62,10 + 7642: 61,12 + 7643: 71,6 + 7662: 71,18 + 7663: 71,13 + 7668: 73,20 + 7788: 68,-1 + 7789: 68,1 + 7790: 71,-1 + 7791: 71,1 + 7973: 64,-19 + 7974: 66,-19 + 7975: 66,-22 + 7976: 64,-22 + 7977: 76,-22 + 7978: 76,-19 + 7979: 78,-19 + 7980: 78,-22 + 7981: 82,-22 + 7982: 82,-19 + 8031: 54,-21 + 8032: 54,-19 + 8033: 54,-11 + 8098: 23,-15 + 8099: 25,-13 + 8100: 32,-16 + 8101: 27,-17 + 8102: 29,-17 + 8103: 31,-17 + 8158: 25,-19 + 8165: 32,-12 + 8166: 32,-10 + 8167: 32,-10 + 8226: 33,-6 + 8230: 42,-8 + 8231: 39,-18 + 8232: 41,-18 + 8233: 41,-18 + 8234: 42,-19 + 8235: 42,-21 + 8238: 44,-22 + 8239: 48,-22 + 8240: 52,-22 + 8291: 40,-17 + 8369: 46,-13 + 8410: 52,-18 + 8584: 54,-29 + 9559: 2,-35 + 9560: 5,-29 + 9561: 11,-29 + 9562: 13,-29 + 9563: 12,-33 + 9564: 15,-31 + 9629: 9,-36 + 9630: 9,-34 + 9631: 5,-37 + 9636: 1,-39 + 9715: 15,-35 + 9746: 21,-33 + 9747: 29,-33 + 9748: 36,-33 + 9749: 33,-23 + 9750: 29,-28 + 9751: 23,-29 + 9752: 29,-40 + 9753: 25,-44 + 9754: 29,-44 + 9755: 29,-50 + 9756: 19,-44 + 9757: 22,-50 + 9758: 17,-48 + 9761: 27,-54 + 9925: 15,-44 + 9967: 39,-35 + 9972: 37,-43 + 10101: 35,-26 + 10102: 37,-27 + 10103: 37,-25 + 10181: 31,-54 + 10320: 4,-42 + 10321: 1,-44 + 10322: 9,-42 + 10323: 4,-48 + 10324: 1,-51 + 10325: 10,-54 + 10326: 8,-56 + 10327: 2,-55 + 10328: 12,-56 + 10329: 10,-57 + 10330: 7,-57 + 10331: 13,-47 + 10332: 17,-54 + 10512: 25,-56 + 10513: 29,-56 + 10538: 2,-60 + 10539: 2,-60 + 10540: 5,-63 + 10541: 5,-63 + 10553: 5,-73 + 10554: 5,-73 + 10555: 7,-75 + 10556: 5,-79 + 10557: 4,-87 + 10558: 4,-83 + 10559: 7,-77 + 10560: 7,-65 + 10669: 76,-45 + 10670: 73,-41 + 10671: 68,-41 + 10672: 73,-48 + 10673: 71,-50 + 10848: 33,-61 + 10900: 42,-62 + 10901: 37,-62 + 10916: 33,-68 + 10917: 37,-70 + 10918: 39,-72 + 10919: 41,-72 + 10920: 41,-72 + 11210: -61,-43 + 11211: -59,-33 + 11212: -59,-40 + 11213: -47,-46 + 11214: -47,-42 + 11326: -11,-83 + 11327: -11,-79 + 11328: -6,-83 + 11329: -4,-83 + 11330: -4,-83 + 11331: 2,-87 + 11332: -4,-87 + 11333: -6,-87 + 11337: 2,-83 + 11380: -24,-63 + 11381: -23,-71 + 11382: -23,-77 + 11383: -23,-79 + 11384: -21,-77 + 11385: -18,-78 + 11386: -12,-78 + 11387: -14,-77 + 11388: -19,-81 + 11389: -10,-63 + 11394: -34,-51 + 11395: -36,-53 + 11396: -34,-55 + 11397: -32,-53 + 11398: -3,-48 + 11408: -4,-35 + 11412: -6,-29 + 11416: -15,-29 + 11417: -13,-29 + 11653: -11,-35 + 11654: -11,-34 + 11655: -13,-33 + 11656: -15,-33 + 11706: -7,-37 + 11707: -6,-45 + 11708: -12,-50 + 11709: -20,-52 + 11710: -18,-51 + 11711: -6,-54 + 11712: -4,-56 + 11713: -16,-55 + 11718: -19,-45 + 11719: -19,-45 + 11720: -16,-40 + 11721: -34,-25 + 11722: -38,-25 + 11723: -42,-25 + 11724: -49,-28 + 11725: -42,-31 + 11726: -38,-31 + 11727: -34,-31 + 11739: -46,-24 + 11740: -48,-23 + 11741: -48,-23 + 11742: -35,-37 + 11743: -35,-37 + 11744: -42,-37 + 11745: -42,-37 + 11746: -45,-35 + 11747: -29,-37 + 11748: -29,-37 + 11749: -31,-39 + 11750: -29,-43 + 11751: -29,-43 + 11752: -24,-37 + 11753: -12,-41 + 11829: -12,-59 + 11830: -24,-43 + 11831: -24,-49 + 11890: -36,-45 + 11891: -36,-40 + 12084: -25,-24 + 12085: -23,-23 + 12086: -21,-26 + 12087: -17,-24 + 12088: -21,-31 + 12379: -17,-64 + 12380: -4,-60 + 12715: -37,27 + 12757: -45,9 + 12759: -45,18 + 12873: -45,9 + 12875: -44,23 + 13309: 52,-37 + 13377: -37,-59 + 13378: -37,-64 + 13379: -35,-66 + 13380: -41,-64 + 13391: -30,-61 + 13586: -33,-72 + 14409: -46,12 + 14410: -46,14 + 15375: -49,9 + 15376: -48,7 + 15392: -42,2 + 15589: 75,1 + 15595: 92,8 + 15596: 94,10 + 15597: 78,3 + 15598: 81,-1 + 15599: 85,-1 + 15600: 89,-1 + 15606: 96,-3 + 15912: 94,13 + 16179: -61,-48 + 16703: -58,-11 + 16704: -56,-9 + 16705: -56,-7 + 16728: -58,-11 + 16734: -56,-19 + 16735: -54,-19 + 16738: -60,-17 + 16739: -62,-17 + 16785: -58,-5 + 16790: -48,1 + 16791: -49,3 + 16855: -56,-7 + 16856: -56,-9 + 16857: -62,-7 + 16947: -62,1 + 16948: -65,1 + 17008: -62,-7 + 17091: -51,-15 + 17122: -61,-18 + 17151: -60,14 + 17152: -67,15 + 17153: -72,13 + 17154: -72,9 + 17155: -79,14 + 17156: -77,8 + 17157: -83,14 + 17158: -77,2 + 17159: -75,0 + 17160: -73,3 + 17161: -65,1 + 17162: -71,-5 + 17163: -69,-5 + 17172: -60,14 + 17173: -58,16 + 17174: -67,15 + 17175: -72,13 + 17176: -77,12 + 17177: -79,14 + 17178: -77,8 + 17179: -72,9 + 17180: -73,3 + 17181: -77,2 + 17182: -75,0 + 17183: -80,0 + 17184: -80,-5 + 17185: -82,-3 + 17186: -62,-7 + 17187: -60,6 + 17188: -60,10 + 17189: -46,14 + 17190: -46,12 + 17264: -77,8 + 17265: -72,9 + 17266: -73,3 + 17267: -77,2 + 17268: -75,0 + 17269: -80,0 + 17462: 9,90 + 17463: 11,90 + 17854: -69,55 + 17866: -55,39 + 17867: -54,43 + 17868: -56,43 + 17869: -51,41 + 17870: -48,43 + 17871: -46,41 + 17872: -61,48 + 17873: -61,50 + 17874: -63,53 + 17875: -61,57 + 17876: -67,57 + 17877: -59,55 + 17878: -60,39 + 17879: -62,39 + 17880: -55,31 + 17881: -51,21 + 18084: -44,52 + 18085: -44,50 + 18118: -52,20 + 18508: -14,-11 + 18509: -10,-11 + 18545: 8,-11 + 18996: 57,3 + 18997: 59,3 + 18998: 61,3 + 18999: 63,3 + 19000: 65,3 + 19001: 67,3 + 19005: 57,6 + 19006: 59,6 + 19007: 61,6 + 19008: 63,6 + 19009: 65,6 + 19010: 67,6 + 19011: 68,7 + 19012: 70,7 + 19013: 70,8 + 19014: 68,8 + 19835: -29,-25 + 19937: -48,-3 + 20022: -16,5 + 20023: -16,-2 + 20058: 37,39 + 20081: 71,26 + 20114: 62,27 + 20149: 40,-17 + 20150: 40,-17 + 21217: 75,-4 + 21247: 45,-8 + 21257: 51,-6 + 21276: 56,-2 + 21393: 21,23 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 4130: 0,25 + 4103: 0,25 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNe decals: - 4219: -11,16 - 4238: 11,16 - 4302: 4,18 - 4303: 7,16 - 4334: 14,16 - 9995: 34,-44 + 4192: -11,16 + 4211: 11,16 + 4275: 4,18 + 4276: 7,16 + 4307: 14,16 + 9960: 34,-44 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerNe decals: - 3006: -26,54 - 3007: -25,53 + 2979: -26,54 + 2980: -25,53 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNe decals: - 11795: -5,-38 - 11796: -4,-39 - 12687: -51,-25 - 12688: -50,-27 + 11760: -5,-38 + 11761: -4,-39 + 12652: -51,-25 + 12653: -50,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNe decals: - 7465: 37,9 - 7481: 37,12 - 7484: 48,-3 - 7650: 58,-3 - 7653: 53,-3 - 15725: 74,3 - 19223: 74,19 - 19249: 44,1 - 19292: 41,1 - 19308: 44,9 - 19309: 44,13 - 19310: 41,13 - 19346: 47,24 - 19350: 48,19 - 19380: 54,19 - 19395: 71,-3 - 19410: 76,23 - 19477: 60,13 - 19510: 55,9 - 19807: 55,29 - 20220: 58,32 - 20221: 59,31 + 7438: 37,9 + 7454: 37,12 + 7457: 48,-3 + 7623: 58,-3 + 7626: 53,-3 + 15579: 74,3 + 19058: 74,19 + 19084: 44,1 + 19127: 41,1 + 19143: 44,9 + 19144: 44,13 + 19145: 41,13 + 19181: 47,24 + 19185: 48,19 + 19215: 54,19 + 19230: 71,-3 + 19245: 76,23 + 19312: 60,13 + 19345: 55,9 + 19642: 55,29 + 20055: 58,32 + 20056: 59,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerNe decals: - 17737: -61,11 - 17817: -70,8 - 18409: -67,1 + 17591: -61,11 + 17671: -70,8 + 18263: -67,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 1202: 13,-59 1242: 70,4 - 2050: -15,28 - 2369: -28,38 - 2441: -10,46 - 2499: -10,46 - 2572: -6,43 - 2573: -7,46 - 3237: -2,65 - 3976: 18,61 - 5750: 11,7 - 5764: 11,3 - 5810: 8,-2 - 5847: -15,-4 - 5857: -9,-3 - 5970: 1,14 - 6599: -22,-5 - 6600: -22,-5 - 7259: 23,2 - 7321: 36,1 - 7365: 33,11 - 7726: 43,22 - 7745: 36,21 - 8568: 53,-23 - 8646: 65,-10 - 8650: 65,-29 - 10298: 37,-29 - 10299: 37,-29 - 10464: 12,-49 - 10533: 14,-58 - 10634: 51,-54 - 10731: 82,-43 - 10746: 74,-37 - 10827: 45,-51 - 11360: -74,-34 - 12457: -15,-74 - 12478: -13,-65 - 12492: -13,-79 - 12504: -21,-80 - 12660: -23,-64 - 13419: -38,-66 - 13593: -29,-73 - 13625: -31,-77 - 15827: 93,7 - 15866: 100,-2 - 15900: 96,3 - 16196: 91,9 - 16946: -45,6 - 17275: -46,-12 - 17898: -78,11 - 18235: -44,48 - 18250: -53,38 - 18271: -52,25 - 18308: -57,7 - 18567: -50,-36 - 18733: 14,-13 - 18749: 14,-13 - 18750: 14,-13 - 19627: -9,34 - 19636: -12,34 - 19693: -12,34 - 19710: -9,34 - 20009: -27,-22 - 20300: 68,30 - 21570: 26,17 - 21614: 25,16 + 2023: -15,28 + 2342: -28,38 + 2414: -10,46 + 2472: -10,46 + 2545: -6,43 + 2546: -7,46 + 3210: -2,65 + 3949: 18,61 + 5723: 11,7 + 5737: 11,3 + 5783: 8,-2 + 5820: -15,-4 + 5830: -9,-3 + 5943: 1,14 + 6572: -22,-5 + 6573: -22,-5 + 7232: 23,2 + 7294: 36,1 + 7338: 33,11 + 7699: 43,22 + 7718: 36,21 + 8533: 53,-23 + 8611: 65,-10 + 8615: 65,-29 + 10263: 37,-29 + 10264: 37,-29 + 10429: 12,-49 + 10498: 14,-58 + 10599: 51,-54 + 10696: 82,-43 + 10711: 74,-37 + 10792: 45,-51 + 11325: -74,-34 + 12422: -15,-74 + 12443: -13,-65 + 12457: -13,-79 + 12469: -21,-80 + 12625: -23,-64 + 13384: -38,-66 + 13558: -29,-73 + 13590: -31,-77 + 15681: 93,7 + 15720: 100,-2 + 15754: 96,3 + 16050: 91,9 + 16800: -45,6 + 17129: -46,-12 + 17752: -78,11 + 18089: -44,48 + 18104: -53,38 + 18125: -52,25 + 18162: -57,7 + 18402: -50,-36 + 18568: 14,-13 + 18584: 14,-13 + 18585: 14,-13 + 19462: -9,34 + 19471: -12,34 + 19528: -12,34 + 19545: -9,34 + 19844: -27,-22 + 20135: 68,30 + 21405: 26,17 + 21449: 25,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNw decals: - 4201: -16,16 - 4208: -13,16 - 4240: 9,16 - 4289: -9,16 - 4292: -6,18 - 21504: -16,16 + 4174: -16,16 + 4181: -13,16 + 4213: 9,16 + 4262: -9,16 + 4265: -6,18 + 21339: -16,16 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNw decals: - 11789: -10,-38 - 11790: -10,-38 - 11791: -11,-39 - 12686: -53,-25 + 11754: -10,-38 + 11755: -10,-38 + 11756: -11,-39 + 12651: -53,-25 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNw decals: - 7480: 35,12 - 7647: 50,-3 - 7648: 55,-3 - 7649: 55,-3 - 15726: 72,3 - 19224: 72,19 - 19250: 43,1 - 19289: 35,9 - 19291: 39,1 - 19305: 43,13 - 19306: 39,13 - 19307: 43,9 - 19330: 46,13 - 19344: 45,24 - 19379: 50,19 - 19393: 56,19 - 19394: 68,-3 - 19409: 72,23 - 19478: 50,13 - 19511: 50,9 - 19568: -20,-24 - 19806: 53,29 - 20217: 50,32 - 20218: 49,31 + 7453: 35,12 + 7620: 50,-3 + 7621: 55,-3 + 7622: 55,-3 + 15580: 72,3 + 19059: 72,19 + 19085: 43,1 + 19124: 35,9 + 19126: 39,1 + 19140: 43,13 + 19141: 39,13 + 19142: 43,9 + 19165: 46,13 + 19179: 45,24 + 19214: 50,19 + 19228: 56,19 + 19229: 68,-3 + 19244: 72,23 + 19313: 50,13 + 19346: 50,9 + 19403: -20,-24 + 19641: 53,29 + 20052: 50,32 + 20053: 49,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerNw decals: - 20490: -24,2 + 20325: -24,2 - node: color: '#EFB341FF' id: BrickTileDarkCornerNw decals: - 17736: -66,11 - 17818: -74,8 - 18408: -73,1 + 17590: -66,11 + 17672: -74,8 + 18262: -73,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 1203: 11,-59 1241: 68,4 - 2039: -17,34 - 2562: -8,46 - 2641: -4,40 - 2747: -7,54 - 3962: 12,62 - 4010: -42,63 - 5740: 7,7 - 5752: 7,3 - 5809: 7,-2 - 5846: -16,-4 - 5855: -13,-3 - 5969: -3,14 - 6597: -26,-5 - 6598: -26,-5 - 7269: 20,2 - 7320: 34,1 - 7336: 26,9 - 7364: 29,11 - 7720: 39,22 - 7743: 34,21 - 7744: 34,21 - 8567: 51,-23 - 8644: 64,-29 - 8645: 64,-10 - 10297: 35,-29 + 2012: -17,34 + 2535: -8,46 + 2614: -4,40 + 2720: -7,54 + 3935: 12,62 + 3983: -42,63 + 5713: 7,7 + 5725: 7,3 + 5782: 7,-2 + 5819: -16,-4 + 5828: -13,-3 + 5942: -3,14 + 6570: -26,-5 + 6571: -26,-5 + 7242: 20,2 + 7293: 34,1 + 7309: 26,9 + 7337: 29,11 + 7693: 39,22 + 7716: 34,21 + 7717: 34,21 + 8532: 51,-23 + 8609: 64,-29 + 8610: 64,-10 + 10262: 35,-29 + 10428: 2,-49 10463: 2,-49 - 10498: 2,-49 - 10633: 49,-54 - 10730: 80,-43 - 10745: 72,-37 - 10826: 44,-51 - 11358: -75,-34 - 11359: -75,-34 - 12458: -19,-74 - 12477: -21,-65 - 12491: -16,-79 - 12503: -23,-80 - 12611: -18,-80 - 12646: -25,-64 - 12647: -24,-72 - 12661: -25,-64 - 12743: -39,26 - 13416: -41,-66 - 13624: -35,-77 - 15815: 89,10 - 15830: 91,7 - 15865: 99,-2 - 15893: 93,3 - 16011: 79,-2 - 16038: 83,-2 - 16039: 87,-2 - 16068: 95,14 - 16199: 93,9 - 16942: -49,6 - 17899: -79,11 - 18234: -45,48 - 18307: -58,7 - 18557: -53,-36 - 18734: 12,-13 - 18748: 12,-13 - 19626: -10,34 - 19650: -15,31 - 19692: -10,34 - 20003: -31,-22 - 20291: 61,30 - 21569: 22,17 - 21613: 23,16 + 10598: 49,-54 + 10695: 80,-43 + 10710: 72,-37 + 10791: 44,-51 + 11323: -75,-34 + 11324: -75,-34 + 12423: -19,-74 + 12442: -21,-65 + 12456: -16,-79 + 12468: -23,-80 + 12576: -18,-80 + 12611: -25,-64 + 12612: -24,-72 + 12626: -25,-64 + 12708: -39,26 + 13381: -41,-66 + 13589: -35,-77 + 15669: 89,10 + 15684: 91,7 + 15719: 99,-2 + 15747: 93,3 + 15865: 79,-2 + 15892: 83,-2 + 15893: 87,-2 + 15922: 95,14 + 16053: 93,9 + 16796: -49,6 + 17753: -79,11 + 18088: -45,48 + 18161: -58,7 + 18392: -53,-36 + 18569: 12,-13 + 18583: 12,-13 + 19461: -10,34 + 19485: -15,31 + 19527: -10,34 + 19838: -31,-22 + 20126: 61,30 + 21404: 22,17 + 21448: 23,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSe decals: - 4237: 11,13 - 4315: -4,13 - 4335: 14,13 - 9996: 34,-45 + 4210: 11,13 + 4288: -4,13 + 4308: 14,13 + 9961: 34,-45 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSe decals: - 3008: -25,52 + 2981: -25,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSe decals: - 11797: -4,-43 - 11798: -5,-44 - 12185: -23,-48 - 12689: -50,-29 - 12690: -51,-31 + 11762: -4,-43 + 11763: -5,-44 + 12150: -23,-48 + 12654: -50,-29 + 12655: -51,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSe decals: - 7479: 37,11 - 7486: 48,-5 - 7641: 58,-5 - 7642: 53,-5 - 15733: 74,-1 - 19226: 74,5 - 19246: 44,-1 - 19290: 41,-1 - 19302: 44,7 - 19303: 44,11 - 19304: 41,11 - 19328: 60,11 - 19333: 48,15 - 19364: 59,21 - 19381: 54,15 - 19391: 57,15 - 19397: 71,-5 - 19408: 76,21 - 19516: 55,3 - 19569: -18,-28 - 19822: 52,31 + 7452: 37,11 + 7459: 48,-5 + 7614: 58,-5 + 7615: 53,-5 + 15587: 74,-1 + 19061: 74,5 + 19081: 44,-1 + 19125: 41,-1 + 19137: 44,7 + 19138: 44,11 + 19139: 41,11 + 19163: 60,11 + 19168: 48,15 + 19199: 59,21 + 19216: 54,15 + 19226: 57,15 + 19232: 71,-5 + 19243: 76,21 + 19351: 55,3 + 19404: -18,-28 + 19657: 52,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerSe decals: - 20489: -22,0 + 20324: -22,0 - node: color: '#EFB341FF' id: BrickTileDarkCornerSe decals: - 17735: -61,4 - 17810: -70,4 - 18430: -67,-3 + 17589: -61,4 + 17664: -70,4 + 18277: -67,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 1204: 13,-61 - 2047: -15,26 - 2051: -15,32 - 2445: -10,36 - 2508: -10,36 - 2560: -6,36 - 2644: -2,36 - 2695: 2,54 - 2743: -5,52 - 3234: -2,60 - 3915: 23,65 - 4015: -40,59 - 5748: 11,5 - 5759: 11,0 - 5808: 8,-3 - 5849: -15,-6 - 5858: -9,-6 - 5968: 1,12 - 6596: -22,-9 - 6867: -33,8 - 7315: 36,-1 - 7331: 27,8 - 7369: 33,8 - 7727: 43,18 - 7728: 43,18 - 7740: 36,19 - 8577: 53,-26 - 8642: 65,-12 - 8643: 65,-31 - 10296: 37,-31 - 10466: 12,-53 - 10527: 14,-62 - 10635: 51,-56 - 10729: 82,-47 - 10748: 74,-40 - 10825: 45,-55 - 11353: -74,-36 - 12464: -15,-76 - 12498: -13,-82 - 12501: -21,-82 - 12609: -17,-82 - 12745: -38,25 - 13424: -38,-68 - 13613: -36,-78 - 13631: -31,-80 - 15828: 93,6 - 15868: 100,-4 - 15899: 96,1 - 16017: 81,-5 - 16034: 89,-5 - 16035: 85,-5 - 16066: 96,12 - 16947: -45,4 - 17280: -46,-18 - 17900: -78,9 - 18233: -44,46 - 18312: -57,5 - 18738: 14,-14 - 18746: 14,-14 - 19167: 70,3 - 19638: -12,26 - 19698: -12,26 - 20004: -27,-24 - 20301: 68,28 - 21568: 26,12 - 21609: 25,13 + 2020: -15,26 + 2024: -15,32 + 2418: -10,36 + 2481: -10,36 + 2533: -6,36 + 2617: -2,36 + 2668: 2,54 + 2716: -5,52 + 3207: -2,60 + 3888: 23,65 + 3988: -40,59 + 5721: 11,5 + 5732: 11,0 + 5781: 8,-3 + 5822: -15,-6 + 5831: -9,-6 + 5941: 1,12 + 6569: -22,-9 + 6840: -33,8 + 7288: 36,-1 + 7304: 27,8 + 7342: 33,8 + 7700: 43,18 + 7701: 43,18 + 7713: 36,19 + 8542: 53,-26 + 8607: 65,-12 + 8608: 65,-31 + 10261: 37,-31 + 10431: 12,-53 + 10492: 14,-62 + 10600: 51,-56 + 10694: 82,-47 + 10713: 74,-40 + 10790: 45,-55 + 11318: -74,-36 + 12429: -15,-76 + 12463: -13,-82 + 12466: -21,-82 + 12574: -17,-82 + 12710: -38,25 + 13389: -38,-68 + 13578: -36,-78 + 13596: -31,-80 + 15682: 93,6 + 15722: 100,-4 + 15753: 96,1 + 15871: 81,-5 + 15888: 89,-5 + 15889: 85,-5 + 15920: 96,12 + 16801: -45,4 + 17134: -46,-18 + 17754: -78,9 + 18087: -44,46 + 18166: -57,5 + 18573: 14,-14 + 18581: 14,-14 + 19002: 70,3 + 19473: -12,26 + 19533: -12,26 + 19839: -27,-24 + 20136: 68,28 + 21403: 26,12 + 21444: 25,13 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSw decals: - 4202: -16,13 - 4207: -13,13 - 4314: 2,13 - 9997: 30,-45 - 21500: -13,13 - 21501: -16,13 + 4175: -16,13 + 4180: -13,13 + 4287: 2,13 + 9962: 30,-45 + 21335: -13,13 + 21336: -16,13 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSw decals: - 3002: -27,52 + 2975: -27,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSw decals: - 11799: -11,-44 - 12186: -30,-48 - 12691: -53,-31 + 11764: -11,-44 + 12151: -30,-48 + 12656: -53,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSw decals: - 7482: 35,11 - 7639: 50,-5 - 7640: 55,-5 - 19225: 72,5 - 19243: 46,-1 - 19244: 39,-1 - 19245: 43,-1 - 19288: 35,8 - 19299: 39,11 - 19300: 43,11 - 19301: 43,7 - 19329: 50,11 - 19334: 45,15 - 19365: 49,21 - 19378: 50,15 - 19392: 56,15 - 19396: 68,-5 - 19411: 72,21 - 19517: 50,3 - 19570: -20,-28 - 19823: 56,31 + 7455: 35,11 + 7612: 50,-5 + 7613: 55,-5 + 19060: 72,5 + 19078: 46,-1 + 19079: 39,-1 + 19080: 43,-1 + 19123: 35,8 + 19134: 39,11 + 19135: 43,11 + 19136: 43,7 + 19164: 50,11 + 19169: 45,15 + 19200: 49,21 + 19213: 50,15 + 19227: 56,15 + 19231: 68,-5 + 19246: 72,21 + 19352: 50,3 + 19405: -20,-28 + 19658: 56,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerSw decals: - 17734: -66,4 - 17811: -74,4 - 18429: -73,-3 + 17588: -66,4 + 17665: -74,4 + 18276: -73,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 1201: 11,-61 - 2046: -17,26 - 2559: -8,36 - 2642: -4,36 - 2696: 1,54 - 2711: -1,50 - 2742: -7,52 - 3919: 17,65 - 4013: -42,59 - 5742: 7,5 - 5755: 7,0 - 5811: 7,-3 - 5848: -16,-6 - 5859: -13,-6 - 5967: -3,12 - 6592: -26,-9 - 6866: -39,8 - 7268: 20,-8 - 7314: 34,-1 - 7337: 26,8 - 7732: 39,18 - 7741: 34,19 - 7742: 34,19 - 8578: 51,-26 - 8647: 64,-12 - 8648: 64,-31 - 8649: 64,-31 - 10295: 35,-31 - 10465: 2,-53 - 10526: 10,-62 - 10632: 49,-56 - 10749: 72,-40 - 10824: 44,-55 - 11354: -75,-36 - 12463: -19,-76 - 12497: -16,-82 - 12502: -23,-82 - 12610: -18,-82 - 12644: -24,-76 - 12645: -25,-70 - 12744: -39,25 - 13421: -41,-68 - 13597: -30,-80 - 13614: -30,-78 - 13619: -37,-80 - 13632: -35,-80 - 13633: -32,-80 - 15829: 91,6 - 15867: 99,-4 - 15898: 93,1 - 16018: 79,-5 - 16036: 83,-5 - 16037: 87,-5 - 16069: 95,12 - 17901: -79,9 - 18232: -45,46 - 18311: -58,5 - 18559: -53,-38 - 18736: 12,-14 - 18745: 12,-14 - 19168: 68,3 - 19628: -10,26 - 19641: -14,26 - 19649: -15,29 - 19697: -10,26 - 20005: -31,-24 - 20302: 61,28 - 21567: 22,12 - 21608: 23,13 + 2019: -17,26 + 2532: -8,36 + 2615: -4,36 + 2669: 1,54 + 2684: -1,50 + 2715: -7,52 + 3892: 17,65 + 3986: -42,59 + 5715: 7,5 + 5728: 7,0 + 5784: 7,-3 + 5821: -16,-6 + 5832: -13,-6 + 5940: -3,12 + 6565: -26,-9 + 6839: -39,8 + 7241: 20,-8 + 7287: 34,-1 + 7310: 26,8 + 7705: 39,18 + 7714: 34,19 + 7715: 34,19 + 8543: 51,-26 + 8612: 64,-12 + 8613: 64,-31 + 8614: 64,-31 + 10260: 35,-31 + 10430: 2,-53 + 10491: 10,-62 + 10597: 49,-56 + 10714: 72,-40 + 10789: 44,-55 + 11319: -75,-36 + 12428: -19,-76 + 12462: -16,-82 + 12467: -23,-82 + 12575: -18,-82 + 12609: -24,-76 + 12610: -25,-70 + 12709: -39,25 + 13386: -41,-68 + 13562: -30,-80 + 13579: -30,-78 + 13584: -37,-80 + 13597: -35,-80 + 13598: -32,-80 + 15683: 91,6 + 15721: 99,-4 + 15752: 93,1 + 15872: 79,-5 + 15890: 83,-5 + 15891: 87,-5 + 15923: 95,12 + 17755: -79,9 + 18086: -45,46 + 18165: -58,5 + 18394: -53,-38 + 18571: 12,-14 + 18580: 12,-14 + 19003: 68,3 + 19463: -10,26 + 19476: -14,26 + 19484: -15,29 + 19532: -10,26 + 19840: -31,-24 + 20137: 61,28 + 21402: 22,12 + 21443: 23,13 - node: color: '#CEDA8BFF' id: BrickTileDarkEndE decals: - 10906: 45,-64 - 10907: 45,-61 - 10921: 41,-64 + 10871: 45,-64 + 10872: 45,-61 + 10886: 41,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndE decals: - 19412: 76,25 + 19247: 76,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2244: -18,54 - 2691: 2,55 - 3876: 23,72 - 3888: 19,68 - 3889: 22,68 - 4348: 4,12 - 4349: -5,12 - 4480: 16,25 - 4629: 21,33 - 5558: -18,7 - 5574: -18,-7 - 5595: -33,30 - 5598: -31,25 - 5627: -10,66 - 5628: -10,59 - 5677: 11,-7 - 6008: 0,7 - 6009: 0,3 - 6010: 0,-1 - 6011: 0,-5 - 6118: -11,-18 - 6158: 18,-7 - 6168: 18,7 - 6213: -18,-22 - 6344: 18,-22 - 6416: 14,-18 - 6588: -32,3 - 6589: -32,-10 - 6816: -25,7 - 6859: -38,16 - 6860: -38,16 - 6864: -38,8 - 6865: -38,8 - 7503: 48,10 - 8229: 36,-17 - 8230: 36,-17 - 8256: 36,-7 - 8271: 47,-18 - 8770: 0,-22 - 8771: 0,-29 - 8772: -6,-22 - 8773: -13,-22 - 8774: 5,-22 - 8775: 12,-22 - 8776: 0,-37 - 8777: 0,-57 - 8778: 0,-63 - 9150: -4,-74 - 9160: -3,-68 - 9161: -3,-66 - 9197: 0,-82 - 9728: 18,-37 - 9729: 28,-37 - 11575: -18,-33 - 11583: -22,-33 - 11584: -22,-33 - 11593: -13,-37 - 11594: -13,-37 - 11749: -13,-45 - 12796: -17,59 - 12797: -3,59 - 12798: -3,66 - 12799: -17,66 - 12800: -11,70 - 12801: 7,70 - 12802: -29,70 - 13618: -36,-80 - 14454: -57,20 - 14479: -61,13 - 14521: -18,21 - 14526: 18,21 - 15425: -41,3 - 15439: -41,7 - 16051: 80,-1 - 16052: 84,-1 - 16053: 88,-1 - 16054: 84,-1 - 16055: 80,-1 - 16060: 98,14 - 16184: 93,15 - 16938: -52,3 - 16939: -52,7 - 17101: -56,3 - 17310: -69,-9 - 17555: -69,-9 - 17856: -80,13 - 17860: -80,15 - 18028: -53,19 - 18241: -56,38 - 18573: -48,-38 - 18729: 14,-11 - 19180: 70,10 - 19981: -6,-40 - 20281: 67,27 + 2217: -18,54 + 2664: 2,55 + 3849: 23,72 + 3861: 19,68 + 3862: 22,68 + 4321: 4,12 + 4322: -5,12 + 4453: 16,25 + 4602: 21,33 + 5531: -18,7 + 5547: -18,-7 + 5568: -33,30 + 5571: -31,25 + 5600: -10,66 + 5601: -10,59 + 5650: 11,-7 + 5981: 0,7 + 5982: 0,3 + 5983: 0,-1 + 5984: 0,-5 + 6091: -11,-18 + 6131: 18,-7 + 6141: 18,7 + 6186: -18,-22 + 6317: 18,-22 + 6389: 14,-18 + 6561: -32,3 + 6562: -32,-10 + 6789: -25,7 + 6832: -38,16 + 6833: -38,16 + 6837: -38,8 + 6838: -38,8 + 7476: 48,10 + 8194: 36,-17 + 8195: 36,-17 + 8221: 36,-7 + 8236: 47,-18 + 8735: 0,-22 + 8736: 0,-29 + 8737: -6,-22 + 8738: -13,-22 + 8739: 5,-22 + 8740: 12,-22 + 8741: 0,-37 + 8742: 0,-57 + 8743: 0,-63 + 9115: -4,-74 + 9125: -3,-68 + 9126: -3,-66 + 9162: 0,-82 + 9693: 18,-37 + 9694: 28,-37 + 11540: -18,-33 + 11548: -22,-33 + 11549: -22,-33 + 11558: -13,-37 + 11559: -13,-37 + 11714: -13,-45 + 12761: -17,59 + 12762: -3,59 + 12763: -3,66 + 12764: -17,66 + 12765: -11,70 + 12766: 7,70 + 12767: -29,70 + 13583: -36,-80 + 14419: -57,20 + 14444: -61,13 + 14486: -18,21 + 14491: 18,21 + 15390: -41,3 + 15404: -41,7 + 15905: 80,-1 + 15906: 84,-1 + 15907: 88,-1 + 15908: 84,-1 + 15909: 80,-1 + 15914: 98,14 + 16038: 93,15 + 16792: -52,3 + 16793: -52,7 + 16955: -56,3 + 17164: -69,-9 + 17409: -69,-9 + 17710: -80,13 + 17714: -80,15 + 17882: -53,19 + 18095: -56,38 + 18408: -48,-38 + 18564: 14,-11 + 19015: 70,10 + 19816: -6,-40 + 20116: 67,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 4072: -18,25 - 4139: 8,25 - 4140: 5,25 + 4045: -18,25 + 4112: 8,25 + 4113: 5,25 - node: color: '#A9DA8BFF' id: BrickTileDarkEndN decals: - 3005: -27,55 + 2978: -27,55 - node: color: '#B18BDAFF' id: BrickTileDarkEndN decals: - 12164: -30,-44 - 12165: -23,-44 + 12129: -30,-44 + 12130: -23,-44 - node: color: '#EFB341FF' id: BrickTileDarkEndN decals: - 17982: -59,7 - 17983: -56,7 - 18416: -68,0 + 17836: -59,7 + 17837: -56,7 + 18269: -68,0 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 2540: -9,43 - 2541: -9,43 - 2697: 4,54 - 2883: -24,48 - 2886: -24,51 - 3163: -16,65 - 3177: -8,65 - 3221: -22,65 - 3585: -22,58 - 3668: 9,81 - 3675: 9,76 - 3855: 16,71 - 4192: -14,15 - 4197: -17,15 - 4326: 12,15 - 4327: 15,15 - 4546: 12,36 - 4939: 14,53 - 4942: 14,50 - 5265: -32,82 - 5266: -28,82 - 5267: -28,92 - 5268: -32,92 - 5352: -14,92 - 5353: -10,92 - 5370: -10,82 - 5371: -14,82 - 5372: -14,82 - 5384: 4,82 - 5603: -29,28 - 5604: -29,28 - 5644: -17,-8 - 5645: 15,-8 - 5670: -17,-19 - 5689: -7,10 - 5693: 5,10 - 6007: -1,8 - 6197: -3,-19 - 6198: 1,-19 - 6199: -17,-19 - 6212: 15,-19 - 6585: -21,-2 - 6819: -21,12 - 6991: -22,-16 - 7080: 26,6 - 7087: 19,6 - 7117: 26,-10 - 7118: 19,-10 - 7427: 49,1 - 7584: 48,23 - 7672: 56,5 - 8238: 42,-14 - 8239: 42,-10 - 8240: 42,-10 - 8869: 1,-25 - 8870: -3,-25 - 9148: -2,-69 - 9149: -7,-69 - 9165: -1,-67 - 9166: -1,-67 - 9167: -8,-67 - 9168: -8,-72 - 9169: -1,-72 - 9170: -1,-72 - 9181: -6,-72 - 9182: -6,-72 - 9183: -3,-72 - 9184: -3,-72 - 9405: 1,-46 - 9406: 1,-55 - 9407: 1,-55 - 9410: -3,-55 - 9412: 1,-46 - 9582: 15,-25 - 9603: 19,-27 - 9721: 19,-34 - 9724: 19,-39 - 9725: 25,-39 - 9794: 15,-39 - 10334: 20,-51 - 10582: 3,-66 - 10583: 3,-75 - 10584: 3,-75 - 10823: 53,-50 - 11411: -12,-66 - 11412: -22,-66 - 11437: -3,-40 - 11581: -21,-34 - 11582: -21,-34 - 11765: -44,-27 - 11766: -32,-27 - 12392: -21,-46 - 12618: -20,-80 - 12619: -24,-80 - 12740: -38,29 - 14509: -21,24 - 14510: -8,24 - 14511: 6,24 - 15424: -40,6 - 15556: 58,-26 - 15557: 60,-26 - 15566: 58,-13 - 15567: 60,-13 - 16022: 80,-3 - 16026: 84,-3 - 16027: 88,-3 - 16958: -54,6 - 16959: -51,6 - 17016: -55,-10 - 17017: -55,-5 - 17312: -74,-6 - 17480: -50,-7 - 17548: -74,-6 - 17866: -79,7 - 17867: -76,7 - 17897: -76,11 - 18031: -56,24 - 18238: -57,34 - 18260: -55,22 - 18345: -55,-5 - 18632: -16,-13 - 18635: -14,-13 - 18636: -12,-13 - 18637: -10,-13 - 18652: -8,-16 - 19184: 57,9 - 19185: 59,9 - 19186: 63,9 - 19187: 61,9 - 20318: -21,6 - 21541: 19,15 - 21550: 21,15 - 21565: 24,15 + 2513: -9,43 + 2514: -9,43 + 2670: 4,54 + 2856: -24,48 + 2859: -24,51 + 3136: -16,65 + 3150: -8,65 + 3194: -22,65 + 3558: -22,58 + 3641: 9,81 + 3648: 9,76 + 3828: 16,71 + 4165: -14,15 + 4170: -17,15 + 4299: 12,15 + 4300: 15,15 + 4519: 12,36 + 4912: 14,53 + 4915: 14,50 + 5238: -32,82 + 5239: -28,82 + 5240: -28,92 + 5241: -32,92 + 5325: -14,92 + 5326: -10,92 + 5343: -10,82 + 5344: -14,82 + 5345: -14,82 + 5357: 4,82 + 5576: -29,28 + 5577: -29,28 + 5617: -17,-8 + 5618: 15,-8 + 5643: -17,-19 + 5662: -7,10 + 5666: 5,10 + 5980: -1,8 + 6170: -3,-19 + 6171: 1,-19 + 6172: -17,-19 + 6185: 15,-19 + 6558: -21,-2 + 6792: -21,12 + 6964: -22,-16 + 7053: 26,6 + 7060: 19,6 + 7090: 26,-10 + 7091: 19,-10 + 7400: 49,1 + 7557: 48,23 + 7645: 56,5 + 8203: 42,-14 + 8204: 42,-10 + 8205: 42,-10 + 8834: 1,-25 + 8835: -3,-25 + 9113: -2,-69 + 9114: -7,-69 + 9130: -1,-67 + 9131: -1,-67 + 9132: -8,-67 + 9133: -8,-72 + 9134: -1,-72 + 9135: -1,-72 + 9146: -6,-72 + 9147: -6,-72 + 9148: -3,-72 + 9149: -3,-72 + 9370: 1,-46 + 9371: 1,-55 + 9372: 1,-55 + 9375: -3,-55 + 9377: 1,-46 + 9547: 15,-25 + 9568: 19,-27 + 9686: 19,-34 + 9689: 19,-39 + 9690: 25,-39 + 9759: 15,-39 + 10299: 20,-51 + 10547: 3,-66 + 10548: 3,-75 + 10549: 3,-75 + 10788: 53,-50 + 11376: -12,-66 + 11377: -22,-66 + 11402: -3,-40 + 11546: -21,-34 + 11547: -21,-34 + 11730: -44,-27 + 11731: -32,-27 + 12357: -21,-46 + 12583: -20,-80 + 12584: -24,-80 + 12705: -38,29 + 14474: -21,24 + 14475: -8,24 + 14476: 6,24 + 15389: -40,6 + 15521: 58,-26 + 15522: 60,-26 + 15531: 58,-13 + 15532: 60,-13 + 15876: 80,-3 + 15880: 84,-3 + 15881: 88,-3 + 16812: -54,6 + 16813: -51,6 + 16870: -55,-10 + 16871: -55,-5 + 17166: -74,-6 + 17334: -50,-7 + 17402: -74,-6 + 17720: -79,7 + 17721: -76,7 + 17751: -76,11 + 17885: -56,24 + 18092: -57,34 + 18114: -55,22 + 18199: -55,-5 + 18467: -16,-13 + 18470: -14,-13 + 18471: -12,-13 + 18472: -10,-13 + 18487: -8,-16 + 19019: 57,9 + 19020: 59,9 + 19021: 63,9 + 19022: 61,9 + 20153: -21,6 + 21376: 19,15 + 21385: 21,15 + 21400: 24,15 - node: color: '#EFB341FF' id: BrickTileDarkEndS decals: - 17984: -59,5 - 17985: -56,5 + 17838: -59,5 + 17839: -56,5 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2357: -28,32 - 2543: -9,39 - 2698: 4,50 - 2884: -24,47 - 2885: -24,50 - 3168: -16,60 - 3178: -8,60 - 3222: -22,60 - 3586: -22,57 - 3669: 9,80 - 3676: 9,75 - 3856: 16,70 - 4193: -14,14 - 4198: -17,14 - 4328: 12,14 - 4329: 15,14 - 4547: 12,35 - 4940: 14,52 - 4941: 14,49 - 5269: -32,88 - 5270: -28,88 - 5271: -28,88 - 5272: -28,79 - 5273: -32,79 - 5354: -14,88 - 5355: -10,88 - 5373: -14,79 - 5374: -10,79 - 5388: 4,79 - 5605: -29,27 - 5606: -29,27 - 5671: -17,-21 - 5690: -7,8 - 5694: 5,8 - 6061: -8,-17 - 6062: -8,-13 - 6080: -16,-16 - 6081: -14,-16 - 6082: -12,-16 - 6083: -10,-16 - 6203: -3,-21 - 6204: 1,-21 - 6211: 15,-21 - 6586: -21,-3 - 6818: -21,11 - 6994: -22,-17 - 7081: 26,4 - 7088: 19,4 - 7119: 19,-12 - 7120: 26,-12 - 7428: 49,-1 - 7585: 48,22 - 7671: 56,4 - 8241: 42,-16 - 8242: 42,-12 - 8871: -3,-26 - 8872: 1,-26 - 9153: -7,-71 - 9154: -2,-71 - 9171: -8,-74 - 9172: -1,-74 - 9173: -1,-74 - 9174: -3,-73 - 9175: -3,-73 - 9176: -6,-73 - 9177: -6,-73 - 9178: -8,-68 - 9179: -1,-68 - 9180: -1,-68 - 9408: -3,-56 - 9409: 1,-56 - 9411: 1,-47 - 9583: 15,-26 - 9604: 19,-28 - 9726: 19,-40 - 9727: 25,-40 - 9734: 19,-36 - 9795: 15,-40 - 10335: 20,-53 - 10585: 3,-76 - 10586: 3,-67 - 10587: 5,-73 - 10815: 53,-56 - 11413: -22,-67 - 11414: -12,-67 - 11438: -3,-41 - 11580: -21,-36 - 11763: -44,-29 - 11764: -32,-29 - 12393: -21,-48 - 12617: -20,-82 - 12620: -24,-82 - 14512: 6,22 - 14513: -8,22 - 14514: -21,22 - 15443: -40,4 - 15558: 58,-28 - 15559: 60,-28 - 15568: 58,-15 - 15569: 60,-15 - 16023: 80,-4 - 16024: 84,-4 - 16025: 88,-4 - 16960: -54,4 - 16961: -51,4 - 17018: -55,-11 - 17019: -55,-6 - 17313: -74,-8 - 17481: -50,-9 - 17549: -74,-8 - 17874: -76,3 - 17875: -79,3 - 18030: -56,23 - 18243: -57,32 - 18251: -53,32 - 18261: -55,20 - 18266: -52,22 - 18655: -17,-10 - 18684: 15,-10 - 18722: 15,-10 - 19188: 57,7 - 19189: 59,7 - 19190: 61,7 - 19191: 63,7 - 20319: -21,4 - 21542: 19,14 - 21551: 21,14 - 21566: 24,14 + 2330: -28,32 + 2516: -9,39 + 2671: 4,50 + 2857: -24,47 + 2858: -24,50 + 3141: -16,60 + 3151: -8,60 + 3195: -22,60 + 3559: -22,57 + 3642: 9,80 + 3649: 9,75 + 3829: 16,70 + 4166: -14,14 + 4171: -17,14 + 4301: 12,14 + 4302: 15,14 + 4520: 12,35 + 4913: 14,52 + 4914: 14,49 + 5242: -32,88 + 5243: -28,88 + 5244: -28,88 + 5245: -28,79 + 5246: -32,79 + 5327: -14,88 + 5328: -10,88 + 5346: -14,79 + 5347: -10,79 + 5361: 4,79 + 5578: -29,27 + 5579: -29,27 + 5644: -17,-21 + 5663: -7,8 + 5667: 5,8 + 6034: -8,-17 + 6035: -8,-13 + 6053: -16,-16 + 6054: -14,-16 + 6055: -12,-16 + 6056: -10,-16 + 6176: -3,-21 + 6177: 1,-21 + 6184: 15,-21 + 6559: -21,-3 + 6791: -21,11 + 6967: -22,-17 + 7054: 26,4 + 7061: 19,4 + 7092: 19,-12 + 7093: 26,-12 + 7401: 49,-1 + 7558: 48,22 + 7644: 56,4 + 8206: 42,-16 + 8207: 42,-12 + 8836: -3,-26 + 8837: 1,-26 + 9118: -7,-71 + 9119: -2,-71 + 9136: -8,-74 + 9137: -1,-74 + 9138: -1,-74 + 9139: -3,-73 + 9140: -3,-73 + 9141: -6,-73 + 9142: -6,-73 + 9143: -8,-68 + 9144: -1,-68 + 9145: -1,-68 + 9373: -3,-56 + 9374: 1,-56 + 9376: 1,-47 + 9548: 15,-26 + 9569: 19,-28 + 9691: 19,-40 + 9692: 25,-40 + 9699: 19,-36 + 9760: 15,-40 + 10300: 20,-53 + 10550: 3,-76 + 10551: 3,-67 + 10552: 5,-73 + 10780: 53,-56 + 11378: -22,-67 + 11379: -12,-67 + 11403: -3,-41 + 11545: -21,-36 + 11728: -44,-29 + 11729: -32,-29 + 12358: -21,-48 + 12582: -20,-82 + 12585: -24,-82 + 14477: 6,22 + 14478: -8,22 + 14479: -21,22 + 15408: -40,4 + 15523: 58,-28 + 15524: 60,-28 + 15533: 58,-15 + 15534: 60,-15 + 15877: 80,-4 + 15878: 84,-4 + 15879: 88,-4 + 16814: -54,4 + 16815: -51,4 + 16872: -55,-11 + 16873: -55,-6 + 17167: -74,-8 + 17335: -50,-9 + 17403: -74,-8 + 17728: -76,3 + 17729: -79,3 + 17884: -56,23 + 18097: -57,32 + 18105: -53,32 + 18115: -55,20 + 18120: -52,22 + 18490: -17,-10 + 18519: 15,-10 + 18557: 15,-10 + 19023: 57,7 + 19024: 59,7 + 19025: 61,7 + 19026: 63,7 + 20154: -21,4 + 21377: 19,14 + 21386: 21,14 + 21401: 24,14 - node: color: '#CEDA8BFF' id: BrickTileDarkEndW decals: - 10908: 43,-61 - 10922: 38,-64 + 10873: 43,-61 + 10887: 38,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndW decals: - 19413: 74,25 + 19248: 74,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2245: -20,54 - 2356: -29,38 - 2692: 1,55 - 3877: 17,72 - 3890: 18,68 - 3891: 21,68 - 4350: -6,12 - 4351: 3,12 - 4481: 14,25 - 4630: 20,33 - 5559: -20,7 - 5575: -20,-7 - 5596: -34,30 - 5597: -34,25 - 5629: -14,59 - 5630: -14,66 - 5676: 10,-7 - 6012: -2,-5 - 6013: -2,-1 - 6014: -2,3 - 6015: -2,7 - 6119: -13,-18 - 6157: 16,-7 - 6169: 16,7 - 6214: -20,-22 - 6345: 16,-22 - 6417: 12,-18 - 6418: 12,-18 - 6587: -33,3 - 6590: -33,-10 - 6591: -17,-1 - 6817: -26,7 - 6861: -34,16 - 6862: -34,16 - 6863: -34,8 - 7504: 46,10 - 8231: 33,-17 - 8257: 34,-7 - 8272: 46,-18 - 8779: -2,-37 - 8780: -2,-29 - 8781: -2,-22 - 8782: -7,-22 - 8783: -14,-22 - 8784: 4,-22 - 8785: 11,-22 - 8786: -2,-57 - 8787: -2,-63 - 9151: -5,-74 - 9152: -2,-63 - 9162: -6,-66 - 9163: -6,-66 - 9164: -6,-68 - 9198: -2,-82 - 9199: -2,-82 - 9722: 16,-37 - 9723: 26,-37 - 11576: -20,-33 - 11585: -24,-33 - 11595: -15,-37 - 11750: -15,-45 - 12626: -24,-78 - 12803: -31,70 - 12804: -13,70 - 12805: -21,66 - 12806: -7,66 - 12807: 5,70 - 12843: -21,59 - 12850: -7,59 - 13617: -30,-80 - 14455: -61,20 - 14478: -66,13 - 14522: -20,21 - 14528: 16,21 - 15426: -43,3 - 15440: -43,7 - 16048: 79,-1 - 16049: 83,-1 - 16050: 87,-1 - 16185: 91,15 - 16191: 91,15 - 16940: -53,7 - 16941: -53,3 - 17102: -59,3 - 17269: -49,-12 - 17270: -49,-18 - 17311: -71,-9 - 17554: -71,-9 - 17857: -82,13 - 17858: -82,15 - 17859: -82,15 - 18029: -54,19 - 18239: -54,35 - 18240: -57,38 - 18242: -54,38 - 18265: -55,25 - 18730: 12,-11 - 19181: 68,10 - 19980: -9,-40 - 20280: 64,27 + 2218: -20,54 + 2329: -29,38 + 2665: 1,55 + 3850: 17,72 + 3863: 18,68 + 3864: 21,68 + 4323: -6,12 + 4324: 3,12 + 4454: 14,25 + 4603: 20,33 + 5532: -20,7 + 5548: -20,-7 + 5569: -34,30 + 5570: -34,25 + 5602: -14,59 + 5603: -14,66 + 5649: 10,-7 + 5985: -2,-5 + 5986: -2,-1 + 5987: -2,3 + 5988: -2,7 + 6092: -13,-18 + 6130: 16,-7 + 6142: 16,7 + 6187: -20,-22 + 6318: 16,-22 + 6390: 12,-18 + 6391: 12,-18 + 6560: -33,3 + 6563: -33,-10 + 6564: -17,-1 + 6790: -26,7 + 6834: -34,16 + 6835: -34,16 + 6836: -34,8 + 7477: 46,10 + 8196: 33,-17 + 8222: 34,-7 + 8237: 46,-18 + 8744: -2,-37 + 8745: -2,-29 + 8746: -2,-22 + 8747: -7,-22 + 8748: -14,-22 + 8749: 4,-22 + 8750: 11,-22 + 8751: -2,-57 + 8752: -2,-63 + 9116: -5,-74 + 9117: -2,-63 + 9127: -6,-66 + 9128: -6,-66 + 9129: -6,-68 + 9163: -2,-82 + 9164: -2,-82 + 9687: 16,-37 + 9688: 26,-37 + 11541: -20,-33 + 11550: -24,-33 + 11560: -15,-37 + 11715: -15,-45 + 12591: -24,-78 + 12768: -31,70 + 12769: -13,70 + 12770: -21,66 + 12771: -7,66 + 12772: 5,70 + 12808: -21,59 + 12815: -7,59 + 13582: -30,-80 + 14420: -61,20 + 14443: -66,13 + 14487: -20,21 + 14493: 16,21 + 15391: -43,3 + 15405: -43,7 + 15902: 79,-1 + 15903: 83,-1 + 15904: 87,-1 + 16039: 91,15 + 16045: 91,15 + 16794: -53,7 + 16795: -53,3 + 16956: -59,3 + 17123: -49,-12 + 17124: -49,-18 + 17165: -71,-9 + 17408: -71,-9 + 17711: -82,13 + 17712: -82,15 + 17713: -82,15 + 17883: -54,19 + 18093: -54,35 + 18094: -57,38 + 18096: -54,38 + 18119: -55,25 + 18565: 12,-11 + 19016: 68,10 + 19815: -9,-40 + 20115: 64,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 4073: -20,25 - 4141: 4,25 - 4142: 7,25 + 4046: -20,25 + 4114: 4,25 + 4115: 7,25 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNe decals: - 4221: -11,15 - 4308: 4,16 - 4311: 7,15 - 4325: 11,15 - 4337: 14,15 - 15292: -6,14 - 15293: -12,15 - 15294: 1,16 - 15295: 8,14 - 15296: 10,15 - 21513: -18,11 - 21524: -18,15 + 4194: -11,15 + 4281: 4,16 + 4284: 7,15 + 4298: 11,15 + 4310: 14,15 + 15257: -6,14 + 15258: -12,15 + 15259: 1,16 + 15260: 8,14 + 15261: 10,15 + 21348: -18,11 + 21359: -18,15 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNe decals: - 3011: -26,53 - 3012: -27,54 + 2984: -26,53 + 2985: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNe decals: - 11818: -7,-38 - 11819: -4,-40 - 11826: -7,-38 - 11827: -5,-39 - 12196: -30,-48 - 12701: -50,-28 - 12705: -51,-27 + 11783: -7,-38 + 11784: -4,-40 + 11791: -7,-38 + 11792: -5,-39 + 12161: -30,-48 + 12666: -50,-28 + 12670: -51,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNe decals: - 7464: 36,9 - 7466: 37,8 - 7469: 40,1 - 7474: 48,12 - 7478: 47,13 - 7488: 47,-3 - 7496: 73,19 - 7498: 53,9 - 7502: 73,3 - 7529: 51,13 - 7530: 51,13 - 7544: 47,23 - 7547: 48,16 - 7555: 52,19 - 7556: 54,17 - 7569: 57,19 - 7595: 59,25 - 7652: 52,-3 - 7680: 60,12 - 7699: 75,23 - 7708: 76,22 - 7713: 75,25 - 7718: 74,9 - 15739: 74,1 - 19240: 67,-1 - 19247: 44,0 - 19261: 36,6 - 19280: 37,4 - 19312: 44,8 - 19313: 44,12 - 19349: 47,19 - 19400: 71,-4 - 19403: 69,-3 - 19529: 55,5 - 19550: 70,-1 - 19835: 51,21 - 19836: 54,21 - 19837: 50,28 - 19838: 55,28 - 20222: 58,31 + 7437: 36,9 + 7439: 37,8 + 7442: 40,1 + 7447: 48,12 + 7451: 47,13 + 7461: 47,-3 + 7469: 73,19 + 7471: 53,9 + 7475: 73,3 + 7502: 51,13 + 7503: 51,13 + 7517: 47,23 + 7520: 48,16 + 7528: 52,19 + 7529: 54,17 + 7542: 57,19 + 7568: 59,25 + 7625: 52,-3 + 7653: 60,12 + 7672: 75,23 + 7681: 76,22 + 7686: 75,25 + 7691: 74,9 + 15593: 74,1 + 19075: 67,-1 + 19082: 44,0 + 19096: 36,6 + 19115: 37,4 + 19147: 44,8 + 19148: 44,12 + 19184: 47,19 + 19235: 71,-4 + 19238: 69,-3 + 19364: 55,5 + 19385: 70,-1 + 19670: 51,21 + 19671: 54,21 + 19672: 50,28 + 19673: 55,28 + 20057: 58,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNe decals: - 17733: -66,4 - 17759: -61,6 - 17760: -61,10 - 17813: -72,8 + 17587: -66,4 + 17613: -61,6 + 17614: -61,10 + 17667: -72,8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2004: -9,33 - 2010: -12,33 - 2059: -16,28 - 2432: -33,37 - 2434: -31,37 - 2435: -30,36 - 2446: -10,45 - 2449: -10,43 - 2450: -10,43 - 2577: -7,43 - 2578: -6,37 - 2649: -2,40 - 2654: -3,40 - 3244: -3,64 - 3245: -2,61 - 3476: -3,64 - 3909: 19,67 - 3912: 22,67 - 3913: 23,66 - 3974: 17,61 - 3979: 18,60 - 5761: 11,1 - 5767: 8,3 - 5851: -15,-5 - 5897: -10,-3 - 6615: -24,-5 - 6660: -24,-7 - 7282: 23,-8 - 7283: 23,-2 - 7286: 22,2 - 7333: 27,9 - 7440: 37,4 - 7746: 36,20 - 7747: 36,20 - 7753: 43,20 - 8558: 56,-24 - 8564: 56,-20 - 8565: 56,-20 - 8570: 52,-23 - 9067: -8,-28 - 9068: -8,-23 - 9074: -4,-23 - 9079: -4,-27 - 9080: -15,-23 - 9084: -16,-27 - 9106: 3,-23 - 9107: 10,-23 - 9108: 14,-23 - 9109: 14,-27 - 9110: 2,-27 - 9125: 10,-28 - 10492: 4,-49 - 10516: 13,-60 - 10517: 12,-59 - 10537: 10,-58 - 12469: -17,-74 - 12487: -17,-65 - 12600: -14,-78 - 12621: -20,-81 - 12656: -23,-66 - 12670: -24,-64 - 12749: -38,27 - 13612: -31,-79 - 13616: -37,-79 - 13620: -37,-80 - 15555: 60,-31 - 15807: 79,1 - 15808: 84,1 - 15809: 88,1 - 15826: 92,7 - 15905: 95,3 - 16956: -48,6 - 17022: -53,-1 - 17023: -56,1 - 17024: -53,-7 - 17025: -53,-12 - 17026: -55,-17 - 18539: -64,-7 - 18540: -69,-7 - 18541: -58,-8 - 18571: -50,-38 - 19632: -9,27 - 19633: -9,30 - 19691: -12,33 - 19701: -9,30 - 19705: -9,27 - 19709: -9,33 - 20107: 96,2 - 20245: -1,54 + 1977: -9,33 + 1983: -12,33 + 2032: -16,28 + 2405: -33,37 + 2407: -31,37 + 2408: -30,36 + 2419: -10,45 + 2422: -10,43 + 2423: -10,43 + 2550: -7,43 + 2551: -6,37 + 2622: -2,40 + 2627: -3,40 + 3217: -3,64 + 3218: -2,61 + 3449: -3,64 + 3882: 19,67 + 3885: 22,67 + 3886: 23,66 + 3947: 17,61 + 3952: 18,60 + 5734: 11,1 + 5740: 8,3 + 5824: -15,-5 + 5870: -10,-3 + 6588: -24,-5 + 6633: -24,-7 + 7255: 23,-8 + 7256: 23,-2 + 7259: 22,2 + 7306: 27,9 + 7413: 37,4 + 7719: 36,20 + 7720: 36,20 + 7726: 43,20 + 8523: 56,-24 + 8529: 56,-20 + 8530: 56,-20 + 8535: 52,-23 + 9032: -8,-28 + 9033: -8,-23 + 9039: -4,-23 + 9044: -4,-27 + 9045: -15,-23 + 9049: -16,-27 + 9071: 3,-23 + 9072: 10,-23 + 9073: 14,-23 + 9074: 14,-27 + 9075: 2,-27 + 9090: 10,-28 + 10457: 4,-49 + 10481: 13,-60 + 10482: 12,-59 + 10502: 10,-58 + 12434: -17,-74 + 12452: -17,-65 + 12565: -14,-78 + 12586: -20,-81 + 12621: -23,-66 + 12635: -24,-64 + 12714: -38,27 + 13577: -31,-79 + 13581: -37,-79 + 13585: -37,-80 + 15520: 60,-31 + 15661: 79,1 + 15662: 84,1 + 15663: 88,1 + 15680: 92,7 + 15759: 95,3 + 16810: -48,6 + 16876: -53,-1 + 16877: -56,1 + 16878: -53,-7 + 16879: -53,-12 + 16880: -55,-17 + 18374: -64,-7 + 18375: -69,-7 + 18376: -58,-8 + 18406: -50,-38 + 19467: -9,27 + 19468: -9,30 + 19526: -12,33 + 19536: -9,30 + 19540: -9,27 + 19544: -9,33 + 19942: 96,2 + 20080: -1,54 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNw decals: - 4205: -16,15 - 4211: -13,15 - 4222: -9,15 - 4310: 9,15 - 5555: -6,16 - 15289: -10,14 - 15291: -12,15 - 15297: 10,15 - 15308: 4,14 - 21503: -16,15 - 21516: 16,11 - 21521: 16,15 + 4178: -16,15 + 4184: -13,15 + 4195: -9,15 + 4283: 9,15 + 5528: -6,16 + 15254: -10,14 + 15256: -12,15 + 15262: 10,15 + 15273: 4,14 + 21338: -16,15 + 21351: 16,11 + 21356: 16,15 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw decals: - 15288: -10,14 - 19718: -3,16 + 15253: -10,14 + 19553: -3,16 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNw decals: - 3003: -27,53 + 2976: -27,53 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNw decals: - 11817: -7,-38 - 11822: -11,-41 - 11825: -7,-38 - 11828: -10,-39 - 12190: -30,-46 - 12195: -23,-48 + 11782: -7,-38 + 11787: -11,-41 + 11790: -7,-38 + 11793: -10,-39 + 12155: -30,-46 + 12160: -23,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNw decals: - 7426: 39,6 - 7437: 39,4 - 7457: 39,8 - 7459: 46,12 - 7462: 36,9 - 7463: 36,9 - 7468: 40,1 - 7471: 46,0 - 7477: 47,13 - 7487: 47,-3 - 7495: 73,19 - 7497: 53,9 - 7499: 72,1 - 7501: 73,3 - 7513: 50,8 - 7516: 50,4 - 7528: 51,13 - 7534: 50,12 - 7550: 45,20 - 7554: 52,19 - 7557: 50,16 - 7573: 57,19 - 7574: 56,17 - 7583: 49,23 - 7651: 52,-3 - 7684: 72,6 - 7685: 72,13 - 7687: 72,18 - 7698: 75,23 - 7714: 75,25 - 15730: 72,-1 - 19260: 36,6 - 19279: 34,4 - 19402: 69,-3 - 19552: 69,-1 - 19583: -20,-26 - 19831: 53,28 - 19832: 58,28 - 19833: 57,21 - 19834: 54,21 - 20219: 50,31 + 7399: 39,6 + 7410: 39,4 + 7430: 39,8 + 7432: 46,12 + 7435: 36,9 + 7436: 36,9 + 7441: 40,1 + 7444: 46,0 + 7450: 47,13 + 7460: 47,-3 + 7468: 73,19 + 7470: 53,9 + 7472: 72,1 + 7474: 73,3 + 7486: 50,8 + 7489: 50,4 + 7501: 51,13 + 7507: 50,12 + 7523: 45,20 + 7527: 52,19 + 7530: 50,16 + 7546: 57,19 + 7547: 56,17 + 7556: 49,23 + 7624: 52,-3 + 7657: 72,6 + 7658: 72,13 + 7660: 72,18 + 7671: 75,23 + 7687: 75,25 + 15584: 72,-1 + 19095: 36,6 + 19114: 34,4 + 19237: 69,-3 + 19387: 69,-1 + 19418: -20,-26 + 19666: 53,28 + 19667: 58,28 + 19668: 57,21 + 19669: 54,21 + 20054: 50,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNw decals: - 17732: -61,4 - 17812: -72,8 - 17990: -59,6 + 17586: -61,4 + 17666: -72,8 + 17844: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2011: -10,33 - 2061: -17,30 - 2066: -15,34 - 2413: -30,32 - 2414: -29,33 - 2433: -31,37 - 2563: -8,45 - 2565: -8,43 - 2652: -4,37 - 2653: -3,40 - 2719: -1,51 - 2755: -4,54 - 3252: -2,60 - 3910: 21,67 - 3980: 16,62 - 4699: 21,24 - 5768: 8,3 - 5861: -13,-5 - 5896: -10,-3 - 6613: -26,-6 - 6614: -24,-5 - 6659: -24,-7 - 7278: 20,-3 - 7285: 22,2 - 7409: 34,4 - 8559: 62,-24 - 8560: 62,-24 - 8569: 52,-23 - 9066: -12,-28 - 9070: -12,-23 - 9073: -5,-23 - 9078: -4,-27 - 9081: -16,-23 - 9085: -16,-27 - 9101: 2,-23 - 9102: 6,-23 - 9103: 13,-23 - 9104: 14,-27 - 9105: 14,-27 - 9111: 2,-27 - 9124: 6,-28 - 10493: 4,-49 - 10501: 2,-51 - 10514: 11,-60 - 10518: 12,-59 - 10742: 80,-47 - 10743: 80,-47 - 12468: -17,-74 - 12486: -17,-65 - 12599: -14,-78 - 12614: -17,-80 - 12627: -23,-78 - 12648: -23,-72 - 12671: -24,-64 - 12752: -38,26 - 12913: -18,-81 - 13628: -35,-79 - 15554: 58,-31 - 15804: 77,1 - 15805: 81,1 - 15806: 86,1 - 15825: 92,7 - 15903: 94,3 - 15904: 93,2 - 16013: 81,-2 - 16044: 85,-2 - 16045: 89,-2 - 16071: 95,13 - 16955: -48,6 - 17020: -53,-1 - 17021: -58,1 - 17027: -53,-12 - 17028: -57,-17 - 17029: -53,-7 - 17291: -46,-18 - 18258: -53,35 - 18536: -72,-7 - 18537: -67,-7 - 18538: -60,-8 - 19651: -14,31 - 19690: -10,33 - 21577: 22,15 + 1984: -10,33 + 2034: -17,30 + 2039: -15,34 + 2386: -30,32 + 2387: -29,33 + 2406: -31,37 + 2536: -8,45 + 2538: -8,43 + 2625: -4,37 + 2626: -3,40 + 2692: -1,51 + 2728: -4,54 + 3225: -2,60 + 3883: 21,67 + 3953: 16,62 + 4672: 21,24 + 5741: 8,3 + 5834: -13,-5 + 5869: -10,-3 + 6586: -26,-6 + 6587: -24,-5 + 6632: -24,-7 + 7251: 20,-3 + 7258: 22,2 + 7382: 34,4 + 8524: 62,-24 + 8525: 62,-24 + 8534: 52,-23 + 9031: -12,-28 + 9035: -12,-23 + 9038: -5,-23 + 9043: -4,-27 + 9046: -16,-23 + 9050: -16,-27 + 9066: 2,-23 + 9067: 6,-23 + 9068: 13,-23 + 9069: 14,-27 + 9070: 14,-27 + 9076: 2,-27 + 9089: 6,-28 + 10458: 4,-49 + 10466: 2,-51 + 10479: 11,-60 + 10483: 12,-59 + 10707: 80,-47 + 10708: 80,-47 + 12433: -17,-74 + 12451: -17,-65 + 12564: -14,-78 + 12579: -17,-80 + 12592: -23,-78 + 12613: -23,-72 + 12636: -24,-64 + 12717: -38,26 + 12878: -18,-81 + 13593: -35,-79 + 15519: 58,-31 + 15658: 77,1 + 15659: 81,1 + 15660: 86,1 + 15679: 92,7 + 15757: 94,3 + 15758: 93,2 + 15867: 81,-2 + 15898: 85,-2 + 15899: 89,-2 + 15925: 95,13 + 16809: -48,6 + 16874: -53,-1 + 16875: -58,1 + 16881: -53,-12 + 16882: -57,-17 + 16883: -53,-7 + 17145: -46,-18 + 18112: -53,35 + 18371: -72,-7 + 18372: -67,-7 + 18373: -60,-8 + 19486: -14,31 + 19525: -10,33 + 21412: 22,15 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSe decals: - 4225: -10,13 - 4313: 8,13 - 4323: -4,15 - 4324: 11,14 - 4336: 14,14 - 4346: -2,15 - 15298: -12,14 - 15299: -6,14 - 15300: 1,16 - 15301: 8,14 - 15302: 10,14 - 21514: -18,18 - 21523: -18,14 + 4198: -10,13 + 4286: 8,13 + 4296: -4,15 + 4297: 11,14 + 4309: 14,14 + 4319: -2,15 + 15263: -12,14 + 15264: -6,14 + 15265: 1,16 + 15266: 8,14 + 15267: 10,14 + 21349: -18,18 + 21358: -18,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSe decals: - 3010: -26,52 + 2983: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSe decals: - 11820: -4,-41 - 11823: -6,-44 - 11829: -5,-43 - 12193: -24,-48 - 12703: -50,-28 - 12704: -51,-29 + 11785: -4,-41 + 11788: -6,-44 + 11794: -5,-43 + 12158: -24,-48 + 12668: -50,-28 + 12669: -51,-29 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSe decals: - 7460: 36,11 - 7472: 47,-1 - 7475: 48,12 - 7476: 48,12 - 7492: 61,-1 - 7493: 52,-1 - 7494: 65,-1 - 7531: 53,11 - 7542: 47,15 - 7545: 47,22 - 7546: 48,16 - 7553: 51,15 - 7558: 54,17 - 7572: 57,19 - 7580: 52,21 - 7593: 57,21 - 7594: 59,25 - 7679: 60,12 - 7705: 73,21 - 7709: 76,22 - 7716: 75,25 - 7717: 74,9 - 7888: 73,5 - 15740: 74,1 - 19248: 44,0 - 19278: 35,4 - 19281: 37,6 - 19286: 36,8 - 19314: 44,8 - 19315: 44,12 - 19316: 40,11 - 19401: 71,-4 - 19530: 55,4 - 19539: 69,-1 - 19549: 70,1 - 19579: -18,-24 - 19824: 51,28 - 19825: 54,28 - 19826: 50,31 - 19827: 52,32 + 7433: 36,11 + 7445: 47,-1 + 7448: 48,12 + 7449: 48,12 + 7465: 61,-1 + 7466: 52,-1 + 7467: 65,-1 + 7504: 53,11 + 7515: 47,15 + 7518: 47,22 + 7519: 48,16 + 7526: 51,15 + 7531: 54,17 + 7545: 57,19 + 7553: 52,21 + 7566: 57,21 + 7567: 59,25 + 7652: 60,12 + 7678: 73,21 + 7682: 76,22 + 7689: 75,25 + 7690: 74,9 + 7861: 73,5 + 15594: 74,1 + 19083: 44,0 + 19113: 35,4 + 19116: 37,6 + 19121: 36,8 + 19149: 44,8 + 19150: 44,12 + 19151: 40,11 + 19236: 71,-4 + 19365: 55,4 + 19374: 69,-1 + 19384: 70,1 + 19414: -18,-24 + 19659: 51,28 + 19660: 54,28 + 19661: 50,31 + 19662: 52,32 - node: color: '#EFB341FF' id: BrickTileDarkInnerSe decals: - 17730: -66,11 - 17761: -61,10 - 17762: -61,6 - 17829: -73,4 + 17584: -66,11 + 17615: -61,10 + 17616: -61,6 + 17683: -73,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2009: -9,33 - 2058: -16,32 - 2077: -18,35 - 2430: -33,33 - 2436: -31,33 - 2437: -30,34 - 2447: -10,45 - 2453: -10,39 - 2579: -6,37 - 2580: -6,37 - 2648: -2,40 - 2710: 3,50 - 2749: -5,54 - 2756: -6,52 - 3243: -3,61 - 3246: -2,61 - 3477: -3,61 - 3914: 23,66 - 3971: 17,58 - 5744: 8,5 - 5762: 11,1 - 5805: 10,0 - 5852: -15,-5 - 5866: -10,-6 - 6617: -24,-9 - 6662: -24,-7 - 7281: 22,-8 - 7284: 23,-2 - 7334: 27,9 - 7373: 29,8 - 7412: 35,4 - 7441: 37,6 - 7748: 36,20 - 7749: 36,20 - 7754: 43,20 - 8562: 56,-17 - 8563: 56,-17 - 8566: 56,-21 - 9064: -8,-28 - 9071: -8,-23 - 9075: -4,-23 - 9076: -4,-28 - 9083: -15,-23 - 9087: -16,-28 - 9094: 10,-23 - 9095: 14,-23 - 9096: 14,-28 - 9113: 2,-28 - 9114: 3,-23 - 9126: 10,-28 - 10504: 10,-53 - 10513: 13,-60 - 10520: 12,-61 - 10758: 73,-40 - 12471: -17,-67 - 12601: -13,-78 - 12622: -20,-81 - 12655: -23,-67 - 12748: -38,27 - 13615: -37,-79 - 13630: -31,-79 - 13635: -34,-79 - 15429: -42,3 - 15553: 60,-10 - 15810: 79,1 - 15811: 84,1 - 15812: 88,1 - 15820: 92,9 - 15858: 92,6 - 15907: 95,1 - 15923: 96,2 - 16057: 93,10 - 16063: 97,14 - 16065: 96,14 - 16957: -49,4 - 17035: -55,-17 - 17036: -53,-15 - 17037: -53,-9 - 17038: -53,-4 - 17039: -56,1 - 18545: -64,-7 - 18546: -69,-7 - 19631: -9,27 - 19634: -9,30 - 19640: -12,27 - 19695: -12,27 - 19700: -9,30 - 19702: -9,27 - 19708: -9,33 - 20015: -29,-24 - 20304: 62,28 - 20305: 67,28 + 1982: -9,33 + 2031: -16,32 + 2050: -18,35 + 2403: -33,33 + 2409: -31,33 + 2410: -30,34 + 2420: -10,45 + 2426: -10,39 + 2552: -6,37 + 2553: -6,37 + 2621: -2,40 + 2683: 3,50 + 2722: -5,54 + 2729: -6,52 + 3216: -3,61 + 3219: -2,61 + 3450: -3,61 + 3887: 23,66 + 3944: 17,58 + 5717: 8,5 + 5735: 11,1 + 5778: 10,0 + 5825: -15,-5 + 5839: -10,-6 + 6590: -24,-9 + 6635: -24,-7 + 7254: 22,-8 + 7257: 23,-2 + 7307: 27,9 + 7346: 29,8 + 7385: 35,4 + 7414: 37,6 + 7721: 36,20 + 7722: 36,20 + 7727: 43,20 + 8527: 56,-17 + 8528: 56,-17 + 8531: 56,-21 + 9029: -8,-28 + 9036: -8,-23 + 9040: -4,-23 + 9041: -4,-28 + 9048: -15,-23 + 9052: -16,-28 + 9059: 10,-23 + 9060: 14,-23 + 9061: 14,-28 + 9078: 2,-28 + 9079: 3,-23 + 9091: 10,-28 + 10469: 10,-53 + 10478: 13,-60 + 10485: 12,-61 + 10723: 73,-40 + 12436: -17,-67 + 12566: -13,-78 + 12587: -20,-81 + 12620: -23,-67 + 12713: -38,27 + 13580: -37,-79 + 13595: -31,-79 + 13600: -34,-79 + 15394: -42,3 + 15518: 60,-10 + 15664: 79,1 + 15665: 84,1 + 15666: 88,1 + 15674: 92,9 + 15712: 92,6 + 15761: 95,1 + 15777: 96,2 + 15911: 93,10 + 15917: 97,14 + 15919: 96,14 + 16811: -49,4 + 16889: -55,-17 + 16890: -53,-15 + 16891: -53,-9 + 16892: -53,-4 + 16893: -56,1 + 18380: -64,-7 + 18381: -69,-7 + 19466: -9,27 + 19469: -9,30 + 19475: -12,27 + 19530: -12,27 + 19535: -9,30 + 19537: -9,27 + 19543: -9,33 + 19850: -29,-24 + 20139: 62,28 + 20140: 67,28 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSw decals: - 4206: -16,14 - 4212: -13,14 - 4224: -10,13 - 4312: 8,13 - 4322: 2,15 - 4345: -2,15 - 9998: 30,-44 - 15303: 4,14 - 15304: 10,14 - 15305: -3,16 - 15306: -10,14 - 15307: -12,14 - 21502: -16,14 - 21515: 16,18 - 21522: 16,14 + 4179: -16,14 + 4185: -13,14 + 4197: -10,13 + 4285: 8,13 + 4295: 2,15 + 4318: -2,15 + 9963: 30,-44 + 15268: 4,14 + 15269: 10,14 + 15270: -3,16 + 15271: -10,14 + 15272: -12,14 + 21337: -16,14 + 21350: 16,18 + 21357: 16,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSw decals: - 3004: -27,53 - 3009: -26,52 + 2977: -27,53 + 2982: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSw decals: - 11821: -11,-41 - 11824: -6,-44 - 12191: -30,-46 - 12192: -24,-48 + 11786: -11,-41 + 11789: -6,-44 + 12156: -30,-46 + 12157: -24,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSw decals: - 7425: 39,4 - 7438: 39,6 - 7456: 39,8 - 7458: 46,12 - 7461: 36,11 - 7470: 46,0 - 7473: 47,-1 - 7489: 52,-1 - 7490: 61,-1 - 7491: 65,-1 - 7500: 72,1 - 7514: 50,8 - 7515: 50,4 - 7532: 53,11 - 7533: 50,12 - 7543: 47,15 - 7551: 45,20 - 7552: 51,15 - 7559: 50,16 - 7575: 56,17 - 7576: 56,17 - 7581: 52,21 - 7582: 49,22 - 7592: 57,21 - 7683: 72,6 - 7686: 72,13 - 7688: 72,18 - 7704: 73,21 - 7715: 75,25 - 7889: 73,5 - 15729: 72,-1 - 19275: 34,6 - 19276: 35,4 - 19287: 36,8 - 19317: 40,11 - 19540: 69,-1 - 19551: 69,1 - 19582: -20,-26 - 19828: 56,32 - 19829: 58,31 - 19830: 57,28 - 19861: 54,28 + 7398: 39,4 + 7411: 39,6 + 7429: 39,8 + 7431: 46,12 + 7434: 36,11 + 7443: 46,0 + 7446: 47,-1 + 7462: 52,-1 + 7463: 61,-1 + 7464: 65,-1 + 7473: 72,1 + 7487: 50,8 + 7488: 50,4 + 7505: 53,11 + 7506: 50,12 + 7516: 47,15 + 7524: 45,20 + 7525: 51,15 + 7532: 50,16 + 7548: 56,17 + 7549: 56,17 + 7554: 52,21 + 7555: 49,22 + 7565: 57,21 + 7656: 72,6 + 7659: 72,13 + 7661: 72,18 + 7677: 73,21 + 7688: 75,25 + 7862: 73,5 + 15583: 72,-1 + 19110: 34,6 + 19111: 35,4 + 19122: 36,8 + 19152: 40,11 + 19375: 69,-1 + 19386: 69,1 + 19417: -20,-26 + 19663: 56,32 + 19664: 58,31 + 19665: 57,28 + 19696: 54,28 - node: color: '#EFB341FF' id: BrickTileDarkInnerSw decals: - 17731: -61,11 - 17828: -73,4 - 17989: -59,6 + 17585: -61,11 + 17682: -73,4 + 17843: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 2021: -10,27 - 2060: -17,30 - 2370: -28,38 - 2415: -29,37 - 2416: -30,38 - 2431: -31,33 - 2564: -8,45 - 2566: -8,39 - 2651: -4,37 - 2709: 3,50 - 2718: -1,51 - 2757: -6,52 - 3970: 17,58 - 5745: 8,5 - 5804: 10,0 - 5862: -13,-5 - 5865: -10,-6 - 6612: -26,-6 - 6616: -24,-9 - 6661: -24,-7 - 7279: 20,-3 - 7280: 22,-8 - 7410: 34,6 - 7411: 35,4 - 8561: 62,-17 - 9065: -12,-28 - 9069: -12,-23 - 9072: -5,-23 - 9077: -4,-28 - 9082: -16,-23 - 9086: -16,-28 - 9097: 14,-28 - 9098: 2,-23 - 9099: 6,-23 - 9100: 13,-23 - 9112: 2,-28 - 9127: 6,-28 - 10499: 2,-51 - 10503: 10,-53 - 10515: 11,-60 - 10519: 12,-61 - 10757: 73,-40 - 12470: -17,-67 - 12613: -17,-78 - 12628: -23,-78 - 12654: -23,-76 - 12669: -23,-70 - 12912: -18,-81 - 13629: -35,-79 - 15430: -42,3 - 15552: 58,-10 - 15813: 81,1 - 15814: 77,1 - 15821: 92,9 - 15857: 92,6 - 15906: 94,1 - 15922: 93,2 - 16064: 97,14 - 16070: 95,13 - 17030: -58,1 - 17031: -53,-4 - 17032: -53,-9 - 17033: -53,-15 - 17034: -57,-17 - 17292: -46,-12 - 18256: -53,38 - 18257: -53,35 - 18272: -52,25 - 18542: -72,-7 - 18543: -67,-7 - 18544: -60,-8 - 19629: -9,26 - 19652: -14,34 - 19694: -10,27 - 19711: -14,29 - 20014: -29,-24 - 20184: 86,1 - 20306: 64,28 - 20307: 62,28 - 21578: 22,14 + 1994: -10,27 + 2033: -17,30 + 2343: -28,38 + 2388: -29,37 + 2389: -30,38 + 2404: -31,33 + 2537: -8,45 + 2539: -8,39 + 2624: -4,37 + 2682: 3,50 + 2691: -1,51 + 2730: -6,52 + 3943: 17,58 + 5718: 8,5 + 5777: 10,0 + 5835: -13,-5 + 5838: -10,-6 + 6585: -26,-6 + 6589: -24,-9 + 6634: -24,-7 + 7252: 20,-3 + 7253: 22,-8 + 7383: 34,6 + 7384: 35,4 + 8526: 62,-17 + 9030: -12,-28 + 9034: -12,-23 + 9037: -5,-23 + 9042: -4,-28 + 9047: -16,-23 + 9051: -16,-28 + 9062: 14,-28 + 9063: 2,-23 + 9064: 6,-23 + 9065: 13,-23 + 9077: 2,-28 + 9092: 6,-28 + 10464: 2,-51 + 10468: 10,-53 + 10480: 11,-60 + 10484: 12,-61 + 10722: 73,-40 + 12435: -17,-67 + 12578: -17,-78 + 12593: -23,-78 + 12619: -23,-76 + 12634: -23,-70 + 12877: -18,-81 + 13594: -35,-79 + 15395: -42,3 + 15517: 58,-10 + 15667: 81,1 + 15668: 77,1 + 15675: 92,9 + 15711: 92,6 + 15760: 94,1 + 15776: 93,2 + 15918: 97,14 + 15924: 95,13 + 16884: -58,1 + 16885: -53,-4 + 16886: -53,-9 + 16887: -53,-15 + 16888: -57,-17 + 17146: -46,-12 + 18110: -53,38 + 18111: -53,35 + 18126: -52,25 + 18377: -72,-7 + 18378: -67,-7 + 18379: -60,-8 + 19464: -9,26 + 19487: -14,34 + 19529: -10,27 + 19546: -14,29 + 19849: -29,-24 + 20019: 86,1 + 20141: 64,28 + 20142: 62,28 + 21413: 22,14 - node: color: '#8CB7E8FF' id: BrickTileDarkLineE decals: - 4203: -17,14 - 4204: -17,15 - 4209: -14,15 - 4210: -14,14 - 4280: -11,14 - 4281: -13,14 - 4282: -13,15 - 4283: -4,16 - 4284: 3,14 - 4285: 9,14 - 4286: 9,15 - 4305: 4,17 - 4316: -4,14 - 9990: 29,-44 - 21505: -18,16 - 21506: -18,17 - 21507: -18,13 - 21508: -18,12 + 4176: -17,14 + 4177: -17,15 + 4182: -14,15 + 4183: -14,14 + 4253: -11,14 + 4254: -13,14 + 4255: -13,15 + 4256: -4,16 + 4257: 3,14 + 4258: 9,14 + 4259: 9,15 + 4278: 4,17 + 4289: -4,14 + 9955: 29,-44 + 21340: -18,16 + 21341: -18,17 + 21342: -18,13 + 21343: -18,12 - node: color: '#96A4EBFF' id: BrickTileDarkLineE decals: - 21481: -18,13 - 21482: -18,12 - 21483: -18,16 - 21484: -18,17 + 21316: -18,13 + 21317: -18,12 + 21318: -18,16 + 21319: -18,17 - node: color: '#B18BDAFF' id: BrickTileDarkLineE decals: - 11810: -4,-42 - 11815: -12,-41 - 12166: -30,-45 - 12167: -30,-46 - 12168: -30,-47 - 12189: -31,-46 - 12314: -23,-47 - 12315: -23,-46 - 12316: -23,-45 - 12699: -51,-26 - 12700: -51,-30 + 11775: -4,-42 + 11780: -12,-41 + 12131: -30,-45 + 12132: -30,-46 + 12133: -30,-47 + 12154: -31,-46 + 12279: -23,-47 + 12280: -23,-46 + 12281: -23,-45 + 12664: -51,-26 + 12665: -51,-30 - node: color: '#DA8B8BFF' id: BrickTileDarkLineE decals: - 3726: -1,61 - 3729: -1,61 - 4626: 11,30 - 7423: 38,4 - 7424: 38,6 - 7434: 49,-1 - 7435: 49,0 - 7436: 49,1 - 7443: 45,8 - 7446: 45,12 - 7455: 45,0 - 7485: 48,-4 - 7519: 49,4 - 7522: 49,8 - 7560: 49,16 - 7577: 55,17 - 7588: 48,22 - 7589: 48,23 - 7590: 48,23 - 7599: 49,12 - 7600: 44,20 - 7643: 53,-4 - 7644: 58,-4 - 7682: 71,6 - 7691: 71,13 - 7692: 71,18 - 7821: 71,-1 - 7822: 71,1 - 10577: 2,-60 - 10598: 3,-67 - 10599: 3,-66 - 10600: 3,-66 - 10601: 3,-75 - 10602: 3,-75 - 10603: 3,-76 - 10607: 7,-75 - 10608: 7,-77 - 10610: 7,-65 - 10611: 7,-65 - 15415: -49,9 - 15734: 74,0 - 15738: 74,2 - 19211: 74,6 - 19212: 74,7 - 19213: 74,8 - 19214: 74,10 - 19215: 74,11 - 19216: 74,13 - 19217: 74,12 - 19218: 74,14 - 19219: 74,15 - 19220: 74,17 - 19221: 74,16 - 19222: 74,18 - 19241: 67,0 - 19267: 33,6 - 19268: 33,4 - 19273: 37,5 - 19284: 38,4 - 19285: 38,6 - 19294: 41,0 - 19318: 48,11 - 19347: 47,21 - 19348: 47,20 - 19351: 48,17 - 19352: 48,18 - 19353: 59,22 - 19354: 59,23 - 19355: 59,24 - 19361: 59,28 - 19362: 59,27 - 19363: 59,26 - 19382: 54,16 - 19383: 54,18 - 19386: 57,17 - 19389: 57,18 - 19390: 57,16 - 19513: 55,6 - 19514: 55,7 - 19515: 55,8 - 19542: 68,-1 - 19543: 68,1 - 19548: 70,0 - 19576: -18,-25 - 19577: -18,-26 - 19578: -18,-27 - 19581: -21,-26 - 19771: 51,27 - 19772: 51,26 - 19773: 51,26 - 19774: 51,25 - 19775: 51,24 - 19776: 51,23 - 19777: 51,22 - 19786: 54,27 - 19787: 54,26 - 19788: 54,26 - 19789: 54,25 - 19790: 54,24 - 19791: 54,23 - 19792: 54,22 - 19800: 59,31 - 19801: 59,30 - 19802: 59,30 - 19803: 59,29 - 19815: 50,29 - 19816: 50,30 + 3699: -1,61 + 3702: -1,61 + 4599: 11,30 + 7396: 38,4 + 7397: 38,6 + 7407: 49,-1 + 7408: 49,0 + 7409: 49,1 + 7416: 45,8 + 7419: 45,12 + 7428: 45,0 + 7458: 48,-4 + 7492: 49,4 + 7495: 49,8 + 7533: 49,16 + 7550: 55,17 + 7561: 48,22 + 7562: 48,23 + 7563: 48,23 + 7572: 49,12 + 7573: 44,20 + 7616: 53,-4 + 7617: 58,-4 + 7655: 71,6 + 7664: 71,13 + 7665: 71,18 + 7794: 71,-1 + 7795: 71,1 + 10542: 2,-60 + 10563: 3,-67 + 10564: 3,-66 + 10565: 3,-66 + 10566: 3,-75 + 10567: 3,-75 + 10568: 3,-76 + 10572: 7,-75 + 10573: 7,-77 + 10575: 7,-65 + 10576: 7,-65 + 15380: -49,9 + 15588: 74,0 + 15592: 74,2 + 19046: 74,6 + 19047: 74,7 + 19048: 74,8 + 19049: 74,10 + 19050: 74,11 + 19051: 74,13 + 19052: 74,12 + 19053: 74,14 + 19054: 74,15 + 19055: 74,17 + 19056: 74,16 + 19057: 74,18 + 19076: 67,0 + 19102: 33,6 + 19103: 33,4 + 19108: 37,5 + 19119: 38,4 + 19120: 38,6 + 19129: 41,0 + 19153: 48,11 + 19182: 47,21 + 19183: 47,20 + 19186: 48,17 + 19187: 48,18 + 19188: 59,22 + 19189: 59,23 + 19190: 59,24 + 19196: 59,28 + 19197: 59,27 + 19198: 59,26 + 19217: 54,16 + 19218: 54,18 + 19221: 57,17 + 19224: 57,18 + 19225: 57,16 + 19348: 55,6 + 19349: 55,7 + 19350: 55,8 + 19377: 68,-1 + 19378: 68,1 + 19383: 70,0 + 19411: -18,-25 + 19412: -18,-26 + 19413: -18,-27 + 19416: -21,-26 + 19606: 51,27 + 19607: 51,26 + 19608: 51,26 + 19609: 51,25 + 19610: 51,24 + 19611: 51,23 + 19612: 51,22 + 19621: 54,27 + 19622: 54,26 + 19623: 54,26 + 19624: 54,25 + 19625: 54,24 + 19626: 54,23 + 19627: 54,22 + 19635: 59,31 + 19636: 59,30 + 19637: 59,30 + 19638: 59,29 + 19650: 50,29 + 19651: 50,30 - node: color: '#EFB341FF' id: BrickTileDarkLineE decals: - 17724: -66,5 - 17725: -66,6 - 17726: -66,7 - 17727: -66,8 - 17728: -66,9 - 17729: -66,10 - 17738: -61,9 - 17739: -61,8 - 17740: -61,7 - 17741: -61,5 - 17822: -70,5 - 17823: -70,6 - 17824: -70,7 - 17987: -56,6 - 17988: -59,6 - 17991: -60,6 - 18426: -67,0 - 18427: -67,-1 - 18428: -67,-2 + 17578: -66,5 + 17579: -66,6 + 17580: -66,7 + 17581: -66,8 + 17582: -66,9 + 17583: -66,10 + 17592: -61,9 + 17593: -61,8 + 17594: -61,7 + 17595: -61,5 + 17676: -70,5 + 17677: -70,6 + 17678: -70,7 + 17841: -56,6 + 17842: -59,6 + 17845: -60,6 + 18273: -67,0 + 18274: -67,-1 + 18275: -67,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2005: -9,28 - 2006: -9,29 - 2007: -9,31 - 2008: -9,32 - 2049: -15,27 - 2052: -16,31 - 2053: -15,33 - 2054: -16,30 - 2055: -16,29 - 2056: -16,30 - 2057: -16,31 - 2062: -18,26 - 2065: -15,34 - 2069: -18,34 - 2070: -18,33 - 2071: -18,32 - 2072: -18,31 - 2073: -18,29 - 2074: -18,28 - 2075: -18,27 - 2076: -18,30 - 2364: -28,33 - 2365: -28,34 - 2366: -28,35 - 2367: -28,36 - 2368: -28,37 - 2448: -10,44 - 2451: -10,37 - 2452: -10,38 - 2547: -9,40 - 2548: -9,41 - 2549: -9,42 - 2567: -9,39 - 2568: -9,40 - 2569: -9,41 - 2570: -9,42 - 2571: -9,43 - 2574: -7,45 - 2575: -7,44 - 2576: -7,44 - 2581: -6,38 - 2582: -6,39 - 2583: -6,40 - 2584: -6,41 - 2585: -6,42 - 2586: -9,45 - 2638: -5,37 - 2645: -2,37 - 2646: -2,38 - 2647: -2,39 - 2703: 4,53 - 2704: 4,52 - 2705: 4,51 - 2720: -2,51 - 2744: -5,53 - 3169: -16,61 - 3170: -16,62 - 3171: -16,63 - 3172: -16,64 - 3173: -8,64 - 3174: -8,63 - 3175: -8,62 - 3176: -8,61 - 3227: -22,61 - 3228: -22,62 - 3229: -22,63 - 3230: -22,64 - 3231: -2,64 - 3232: -2,63 - 3233: -2,62 - 3235: -3,60 - 3236: -3,65 - 3464: -1,61 - 3972: 17,62 - 3975: 18,61 - 4014: -40,62 - 4695: 19,24 - 5280: -28,91 - 5281: -28,90 - 5282: -28,90 - 5283: -28,89 - 5284: -28,81 - 5285: -28,80 - 5286: -32,80 - 5287: -32,81 - 5288: -32,89 - 5289: -32,90 - 5290: -32,90 - 5291: -32,91 - 5359: -14,91 - 5360: -14,90 - 5361: -14,89 - 5367: -10,91 - 5368: -10,90 - 5369: -10,89 - 5378: -14,80 - 5379: -14,81 - 5382: -10,80 - 5383: -10,81 - 5389: 4,80 - 5390: 4,81 - 5391: 4,81 - 5392: 4,82 - 5673: -17,-20 - 5692: -7,9 - 5696: 5,9 - 5749: 11,6 - 5763: 11,2 - 5860: -14,-5 - 5867: -9,-4 - 5868: -9,-5 - 5977: 1,13 - 6016: -1,6 - 6017: -1,5 - 6018: -1,4 - 6019: -1,2 - 6020: -1,1 - 6021: -1,1 - 6022: -1,0 - 6023: -1,-2 - 6024: -1,-3 - 6025: -1,-4 - 6026: -1,-4 - 6027: -1,-6 - 6059: -8,-12 - 6060: -8,-16 - 6096: -12,-15 - 6097: -12,-14 - 6098: -12,-13 - 6099: -10,-15 - 6100: -10,-14 - 6101: -10,-13 - 6102: -14,-15 - 6103: -14,-14 - 6104: -14,-13 - 6207: -3,-20 - 6208: 1,-20 - 6209: 15,-20 - 6607: -22,-8 - 6608: -22,-7 - 6609: -22,-7 - 6610: -22,-6 - 6611: -22,-6 - 6648: -27,-6 - 6656: -25,-7 - 6657: -25,-7 - 6868: -33,9 - 6869: -33,10 - 6870: -33,11 - 6871: -33,11 - 6872: -33,12 - 6873: -33,12 - 6874: -33,13 - 6875: -33,13 - 6876: -33,13 - 6877: -33,15 - 6878: -33,14 - 6879: -33,14 - 6887: -39,9 - 6888: -39,10 - 6889: -39,11 - 6890: -39,11 - 6891: -39,12 - 6892: -39,12 - 6893: -39,13 - 6894: -39,13 - 6895: -39,13 - 6896: -39,13 - 6897: -39,14 - 6898: -39,14 - 6899: -39,15 - 6900: -39,15 - 7069: 19,5 - 7083: 26,5 - 7123: 19,-11 - 7124: 26,-11 - 7260: 23,1 - 7261: 23,0 - 7262: 23,-1 - 7263: 23,-3 - 7264: 23,-4 - 7265: 23,-5 - 7266: 23,-6 - 7267: 23,-7 - 7288: 19,-3 - 7318: 36,0 - 7370: 33,9 - 7371: 33,10 - 7405: 33,4 - 7406: 33,6 - 7430: 49,0 - 7439: 37,5 - 7755: 43,19 - 7756: 43,21 - 8246: 42,-15 - 8247: 42,-15 - 8248: 42,-11 - 8552: 56,-18 - 8553: 56,-19 - 8554: 56,-22 - 8555: 56,-22 - 8556: 56,-23 - 8557: 56,-23 - 8574: 53,-24 - 8575: 53,-24 - 8576: 53,-25 - 8653: 65,-11 - 8654: 65,-30 - 8655: 60,-26 - 9046: 13,-28 - 9047: 13,-27 - 9048: 12,-23 - 9049: 5,-23 - 9050: -13,-23 - 9053: -6,-23 - 9054: -5,-27 - 9055: -5,-28 - 9063: -13,-28 - 9123: 5,-28 - 9157: -7,-70 - 9158: -7,-70 - 9159: -2,-70 - 9188: -8,-73 - 9189: -1,-73 - 9190: -1,-73 - 9736: 19,-35 - 10302: 37,-30 - 10336: 20,-52 - 10479: 12,-52 - 10480: 12,-51 - 10481: 12,-50 - 10500: 1,-51 - 10510: 10,-60 - 10534: 14,-59 - 10535: 14,-60 - 10536: 14,-61 - 10539: 12,-59 - 10540: 12,-60 - 10541: 12,-61 - 10542: 12,-60 - 10543: 12,-61 - 10640: 51,-55 - 10732: 82,-44 - 10733: 82,-45 - 10734: 82,-46 - 10744: 79,-47 - 10753: 74,-39 - 10754: 74,-38 - 10820: 53,-55 - 10821: 53,-54 - 10822: 53,-53 - 10828: 45,-52 - 10829: 45,-53 - 10830: 45,-54 - 10843: 43,-56 - 10844: 43,-56 - 10845: 43,-55 - 10846: 43,-50 - 10847: 43,-50 - 11355: -74,-35 - 11356: -74,-35 - 11587: -21,-35 - 11770: -44,-28 - 11771: -44,-28 - 11772: -32,-28 - 11773: -32,-28 - 12395: -21,-47 - 12426: -17,-68 - 12427: -17,-69 - 12428: -17,-70 - 12429: -17,-71 - 12430: -17,-72 - 12431: -17,-73 - 12461: -15,-75 - 12462: -15,-76 - 12495: -13,-80 - 12496: -13,-81 - 12507: -21,-81 - 12511: -22,-67 - 12512: -22,-66 - 12592: -18,-78 - 12606: -17,-79 - 12607: -17,-80 - 12608: -17,-81 - 12615: -19,-81 - 12624: -24,-81 - 12625: -23,-78 - 12634: -23,-76 - 12635: -23,-75 - 12636: -23,-74 - 12637: -23,-73 - 12638: -23,-73 - 12639: -23,-72 - 12640: -23,-70 - 12641: -23,-69 - 12642: -23,-68 - 12643: -23,-65 - 12746: -38,26 - 12747: -38,28 - 12914: -19,-81 - 13425: -38,-67 - 13594: -29,-74 - 13595: -29,-77 - 13596: -29,-78 - 13606: -36,-78 - 13609: -31,-78 - 13610: -31,-77 - 13611: -31,-80 - 14518: -21,23 - 14519: -8,23 - 14520: 6,23 - 15445: -40,5 - 15548: 57,-31 - 15551: 57,-10 - 15562: 58,-27 - 15563: 60,-27 - 15564: 60,-14 - 15565: 58,-14 - 15787: 76,1 - 15788: 80,1 - 15803: 85,1 - 15870: 100,-3 - 15897: 92,2 - 16014: 81,-2 - 16015: 81,-3 - 16016: 81,-4 - 16028: 85,-2 - 16029: 85,-3 - 16030: 85,-4 - 16031: 89,-2 - 16032: 89,-3 - 16033: 89,-4 - 16059: 94,13 - 16067: 96,13 - 16907: -58,-17 - 16908: -54,-12 - 16909: -54,-13 - 16910: -54,-14 - 16911: -54,-15 - 16912: -54,-9 - 16913: -54,-8 - 16914: -54,-7 - 16915: -59,1 - 16954: -45,5 - 16964: -51,5 - 16965: -54,5 - 17281: -46,-17 - 17282: -46,-16 - 17283: -46,-15 - 17284: -46,-14 - 17285: -46,-13 - 17315: -74,-7 - 17483: -50,-8 - 17550: -74,-7 - 17871: -76,6 - 17872: -76,5 - 17873: -76,4 - 17876: -79,4 - 17877: -79,5 - 17878: -79,6 - 17902: -78,10 - 17903: -76,10 - 18237: -44,47 - 18244: -57,33 - 18245: -53,33 - 18246: -53,34 - 18247: -53,35 - 18248: -53,36 - 18249: -53,37 - 18263: -55,21 - 18275: -52,24 - 18276: -52,23 - 18310: -57,6 - 18347: -54,-4 - 18348: -54,-3 - 18349: -54,-2 - 18350: -54,-1 - 18530: -73,-7 - 18531: -68,-7 - 18532: -61,-8 - 18566: -50,-37 - 18633: -16,-14 - 18634: -16,-15 - 18656: -17,-9 - 18685: 15,-9 - 19196: 57,8 - 19197: 59,8 - 19198: 63,8 - 19199: 61,8 - 19630: -9,26 - 19699: -9,26 - 19703: -9,28 - 19704: -9,29 - 19706: -9,31 - 19707: -9,32 - 20011: -27,-23 - 20320: -21,5 - 21556: 19,14 - 21557: 19,15 - 21561: 23,14 - 21562: 23,15 - 21582: 26,14 - 21583: 26,13 - 21584: 26,14 - 21585: 26,15 - 21586: 26,16 - 21611: 25,14 - 21612: 25,15 + 1978: -9,28 + 1979: -9,29 + 1980: -9,31 + 1981: -9,32 + 2022: -15,27 + 2025: -16,31 + 2026: -15,33 + 2027: -16,30 + 2028: -16,29 + 2029: -16,30 + 2030: -16,31 + 2035: -18,26 + 2038: -15,34 + 2042: -18,34 + 2043: -18,33 + 2044: -18,32 + 2045: -18,31 + 2046: -18,29 + 2047: -18,28 + 2048: -18,27 + 2049: -18,30 + 2337: -28,33 + 2338: -28,34 + 2339: -28,35 + 2340: -28,36 + 2341: -28,37 + 2421: -10,44 + 2424: -10,37 + 2425: -10,38 + 2520: -9,40 + 2521: -9,41 + 2522: -9,42 + 2540: -9,39 + 2541: -9,40 + 2542: -9,41 + 2543: -9,42 + 2544: -9,43 + 2547: -7,45 + 2548: -7,44 + 2549: -7,44 + 2554: -6,38 + 2555: -6,39 + 2556: -6,40 + 2557: -6,41 + 2558: -6,42 + 2559: -9,45 + 2611: -5,37 + 2618: -2,37 + 2619: -2,38 + 2620: -2,39 + 2676: 4,53 + 2677: 4,52 + 2678: 4,51 + 2693: -2,51 + 2717: -5,53 + 3142: -16,61 + 3143: -16,62 + 3144: -16,63 + 3145: -16,64 + 3146: -8,64 + 3147: -8,63 + 3148: -8,62 + 3149: -8,61 + 3200: -22,61 + 3201: -22,62 + 3202: -22,63 + 3203: -22,64 + 3204: -2,64 + 3205: -2,63 + 3206: -2,62 + 3208: -3,60 + 3209: -3,65 + 3437: -1,61 + 3945: 17,62 + 3948: 18,61 + 3987: -40,62 + 4668: 19,24 + 5253: -28,91 + 5254: -28,90 + 5255: -28,90 + 5256: -28,89 + 5257: -28,81 + 5258: -28,80 + 5259: -32,80 + 5260: -32,81 + 5261: -32,89 + 5262: -32,90 + 5263: -32,90 + 5264: -32,91 + 5332: -14,91 + 5333: -14,90 + 5334: -14,89 + 5340: -10,91 + 5341: -10,90 + 5342: -10,89 + 5351: -14,80 + 5352: -14,81 + 5355: -10,80 + 5356: -10,81 + 5362: 4,80 + 5363: 4,81 + 5364: 4,81 + 5365: 4,82 + 5646: -17,-20 + 5665: -7,9 + 5669: 5,9 + 5722: 11,6 + 5736: 11,2 + 5833: -14,-5 + 5840: -9,-4 + 5841: -9,-5 + 5950: 1,13 + 5989: -1,6 + 5990: -1,5 + 5991: -1,4 + 5992: -1,2 + 5993: -1,1 + 5994: -1,1 + 5995: -1,0 + 5996: -1,-2 + 5997: -1,-3 + 5998: -1,-4 + 5999: -1,-4 + 6000: -1,-6 + 6032: -8,-12 + 6033: -8,-16 + 6069: -12,-15 + 6070: -12,-14 + 6071: -12,-13 + 6072: -10,-15 + 6073: -10,-14 + 6074: -10,-13 + 6075: -14,-15 + 6076: -14,-14 + 6077: -14,-13 + 6180: -3,-20 + 6181: 1,-20 + 6182: 15,-20 + 6580: -22,-8 + 6581: -22,-7 + 6582: -22,-7 + 6583: -22,-6 + 6584: -22,-6 + 6621: -27,-6 + 6629: -25,-7 + 6630: -25,-7 + 6841: -33,9 + 6842: -33,10 + 6843: -33,11 + 6844: -33,11 + 6845: -33,12 + 6846: -33,12 + 6847: -33,13 + 6848: -33,13 + 6849: -33,13 + 6850: -33,15 + 6851: -33,14 + 6852: -33,14 + 6860: -39,9 + 6861: -39,10 + 6862: -39,11 + 6863: -39,11 + 6864: -39,12 + 6865: -39,12 + 6866: -39,13 + 6867: -39,13 + 6868: -39,13 + 6869: -39,13 + 6870: -39,14 + 6871: -39,14 + 6872: -39,15 + 6873: -39,15 + 7042: 19,5 + 7056: 26,5 + 7096: 19,-11 + 7097: 26,-11 + 7233: 23,1 + 7234: 23,0 + 7235: 23,-1 + 7236: 23,-3 + 7237: 23,-4 + 7238: 23,-5 + 7239: 23,-6 + 7240: 23,-7 + 7261: 19,-3 + 7291: 36,0 + 7343: 33,9 + 7344: 33,10 + 7378: 33,4 + 7379: 33,6 + 7403: 49,0 + 7412: 37,5 + 7728: 43,19 + 7729: 43,21 + 8211: 42,-15 + 8212: 42,-15 + 8213: 42,-11 + 8517: 56,-18 + 8518: 56,-19 + 8519: 56,-22 + 8520: 56,-22 + 8521: 56,-23 + 8522: 56,-23 + 8539: 53,-24 + 8540: 53,-24 + 8541: 53,-25 + 8618: 65,-11 + 8619: 65,-30 + 8620: 60,-26 + 9011: 13,-28 + 9012: 13,-27 + 9013: 12,-23 + 9014: 5,-23 + 9015: -13,-23 + 9018: -6,-23 + 9019: -5,-27 + 9020: -5,-28 + 9028: -13,-28 + 9088: 5,-28 + 9122: -7,-70 + 9123: -7,-70 + 9124: -2,-70 + 9153: -8,-73 + 9154: -1,-73 + 9155: -1,-73 + 9701: 19,-35 + 10267: 37,-30 + 10301: 20,-52 + 10444: 12,-52 + 10445: 12,-51 + 10446: 12,-50 + 10465: 1,-51 + 10475: 10,-60 + 10499: 14,-59 + 10500: 14,-60 + 10501: 14,-61 + 10504: 12,-59 + 10505: 12,-60 + 10506: 12,-61 + 10507: 12,-60 + 10508: 12,-61 + 10605: 51,-55 + 10697: 82,-44 + 10698: 82,-45 + 10699: 82,-46 + 10709: 79,-47 + 10718: 74,-39 + 10719: 74,-38 + 10785: 53,-55 + 10786: 53,-54 + 10787: 53,-53 + 10793: 45,-52 + 10794: 45,-53 + 10795: 45,-54 + 10808: 43,-56 + 10809: 43,-56 + 10810: 43,-55 + 10811: 43,-50 + 10812: 43,-50 + 11320: -74,-35 + 11321: -74,-35 + 11552: -21,-35 + 11735: -44,-28 + 11736: -44,-28 + 11737: -32,-28 + 11738: -32,-28 + 12360: -21,-47 + 12391: -17,-68 + 12392: -17,-69 + 12393: -17,-70 + 12394: -17,-71 + 12395: -17,-72 + 12396: -17,-73 + 12426: -15,-75 + 12427: -15,-76 + 12460: -13,-80 + 12461: -13,-81 + 12472: -21,-81 + 12476: -22,-67 + 12477: -22,-66 + 12557: -18,-78 + 12571: -17,-79 + 12572: -17,-80 + 12573: -17,-81 + 12580: -19,-81 + 12589: -24,-81 + 12590: -23,-78 + 12599: -23,-76 + 12600: -23,-75 + 12601: -23,-74 + 12602: -23,-73 + 12603: -23,-73 + 12604: -23,-72 + 12605: -23,-70 + 12606: -23,-69 + 12607: -23,-68 + 12608: -23,-65 + 12711: -38,26 + 12712: -38,28 + 12879: -19,-81 + 13390: -38,-67 + 13559: -29,-74 + 13560: -29,-77 + 13561: -29,-78 + 13571: -36,-78 + 13574: -31,-78 + 13575: -31,-77 + 13576: -31,-80 + 14483: -21,23 + 14484: -8,23 + 14485: 6,23 + 15410: -40,5 + 15513: 57,-31 + 15516: 57,-10 + 15527: 58,-27 + 15528: 60,-27 + 15529: 60,-14 + 15530: 58,-14 + 15641: 76,1 + 15642: 80,1 + 15657: 85,1 + 15724: 100,-3 + 15751: 92,2 + 15868: 81,-2 + 15869: 81,-3 + 15870: 81,-4 + 15882: 85,-2 + 15883: 85,-3 + 15884: 85,-4 + 15885: 89,-2 + 15886: 89,-3 + 15887: 89,-4 + 15913: 94,13 + 15921: 96,13 + 16761: -58,-17 + 16762: -54,-12 + 16763: -54,-13 + 16764: -54,-14 + 16765: -54,-15 + 16766: -54,-9 + 16767: -54,-8 + 16768: -54,-7 + 16769: -59,1 + 16808: -45,5 + 16818: -51,5 + 16819: -54,5 + 17135: -46,-17 + 17136: -46,-16 + 17137: -46,-15 + 17138: -46,-14 + 17139: -46,-13 + 17169: -74,-7 + 17337: -50,-8 + 17404: -74,-7 + 17725: -76,6 + 17726: -76,5 + 17727: -76,4 + 17730: -79,4 + 17731: -79,5 + 17732: -79,6 + 17756: -78,10 + 17757: -76,10 + 18091: -44,47 + 18098: -57,33 + 18099: -53,33 + 18100: -53,34 + 18101: -53,35 + 18102: -53,36 + 18103: -53,37 + 18117: -55,21 + 18129: -52,24 + 18130: -52,23 + 18164: -57,6 + 18201: -54,-4 + 18202: -54,-3 + 18203: -54,-2 + 18204: -54,-1 + 18365: -73,-7 + 18366: -68,-7 + 18367: -61,-8 + 18401: -50,-37 + 18468: -16,-14 + 18469: -16,-15 + 18491: -17,-9 + 18520: 15,-9 + 19031: 57,8 + 19032: 59,8 + 19033: 63,8 + 19034: 61,8 + 19465: -9,26 + 19534: -9,26 + 19538: -9,28 + 19539: -9,29 + 19541: -9,31 + 19542: -9,32 + 19846: -27,-23 + 20155: -21,5 + 21391: 19,14 + 21392: 19,15 + 21396: 23,14 + 21397: 23,15 + 21417: 26,14 + 21418: 26,13 + 21419: 26,14 + 21420: 26,15 + 21421: 26,16 + 21446: 25,14 + 21447: 25,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4071: -15,27 + 4044: -15,27 - node: color: '#8CB7E8FF' id: BrickTileDarkLineN decals: - 4218: -12,16 - 4220: -10,15 - 4227: -10,12 - 4239: 10,16 - 4258: -12,13 - 4259: -10,13 - 4260: -9,13 - 4261: -8,13 - 4262: -7,13 - 4263: -6,13 - 4264: -3,15 - 4265: -2,15 - 4266: -1,15 - 4267: 0,15 - 4268: 1,15 - 4269: 4,13 - 4270: 5,13 - 4271: 6,13 - 4272: 7,13 - 4273: 8,13 - 4274: 10,13 - 4290: -8,16 - 4291: -7,16 - 4293: -5,18 - 4294: -4,18 - 4295: -3,18 - 4296: -2,18 - 4297: -1,18 - 4298: 0,18 - 4299: 1,18 - 4300: 2,18 - 4301: 3,18 - 4306: 5,16 - 4307: 6,16 - 4309: 8,15 - 4347: -2,14 - 5557: -10,12 - 5698: 8,12 - 9991: 30,-44 - 9992: 31,-44 - 9993: 32,-44 - 9994: 33,-44 - 15290: -12,13 + 4191: -12,16 + 4193: -10,15 + 4200: -10,12 + 4212: 10,16 + 4231: -12,13 + 4232: -10,13 + 4233: -9,13 + 4234: -8,13 + 4235: -7,13 + 4236: -6,13 + 4237: -3,15 + 4238: -2,15 + 4239: -1,15 + 4240: 0,15 + 4241: 1,15 + 4242: 4,13 + 4243: 5,13 + 4244: 6,13 + 4245: 7,13 + 4246: 8,13 + 4247: 10,13 + 4263: -8,16 + 4264: -7,16 + 4266: -5,18 + 4267: -4,18 + 4268: -3,18 + 4269: -2,18 + 4270: -1,18 + 4271: 0,18 + 4272: 1,18 + 4273: 2,18 + 4274: 3,18 + 4279: 5,16 + 4280: 6,16 + 4282: 8,15 + 4320: -2,14 + 5530: -10,12 + 5671: 8,12 + 9956: 30,-44 + 9957: 31,-44 + 9958: 32,-44 + 9959: 33,-44 + 15255: -12,13 - node: color: '#96A4EBFF' id: BrickTileDarkLineN decals: - 5553: -12,13 - 5554: -10,12 + 5526: -12,13 + 5527: -10,12 - node: color: '#B18BDAFF' id: BrickTileDarkLineN decals: - 11792: -9,-38 - 11793: -8,-38 - 11794: -6,-38 - 11816: -6,-45 - 12178: -24,-49 - 12179: -29,-48 - 12180: -28,-48 - 12181: -27,-48 - 12182: -26,-48 - 12183: -25,-48 - 12184: -24,-48 - 12698: -52,-25 + 11757: -9,-38 + 11758: -8,-38 + 11759: -6,-38 + 11781: -6,-45 + 12143: -24,-49 + 12144: -29,-48 + 12145: -28,-48 + 12146: -27,-48 + 12147: -26,-48 + 12148: -25,-48 + 12149: -24,-48 + 12663: -52,-25 - node: color: '#CEDA8BFF' id: BrickTileDarkLineN decals: - 10909: 44,-61 - 10910: 44,-64 - 10925: 39,-64 - 10926: 40,-64 + 10874: 44,-61 + 10875: 44,-64 + 10890: 39,-64 + 10891: 40,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineN decals: - 3724: 2,59 - 3727: 2,59 - 6740: -24,-1 - 7448: 40,10 - 7449: 36,7 - 7451: 36,10 - 7453: 40,2 - 7483: 36,12 - 7507: 46,10 - 7508: 47,10 - 7509: 48,10 - 7526: 53,10 - 7527: 53,10 - 7540: 47,14 - 7541: 51,14 - 7579: 52,20 - 7591: 57,20 - 7632: 47,-2 - 7633: 52,-2 - 7638: 51,-3 - 7654: 61,-2 - 7655: 65,-2 - 7697: 73,20 - 7703: 73,20 - 7710: 75,24 - 7711: 75,24 - 7891: 73,4 - 9780: 12,-33 - 10580: 5,-63 - 10597: 5,-73 - 10609: 5,-79 - 10618: 4,-83 - 15416: -48,7 - 19254: 50,1 - 19255: 51,1 - 19263: 36,7 - 19264: 37,6 - 19265: 35,6 - 19266: 34,6 - 19277: 35,3 - 19311: 40,13 - 19345: 46,24 - 19384: 51,19 - 19385: 53,19 - 19404: 70,-3 - 19414: 73,23 - 19415: 74,23 - 19468: 52,13 - 19469: 53,13 - 19470: 54,13 - 19471: 55,13 - 19472: 56,13 - 19473: 57,13 - 19474: 58,13 - 19475: 58,13 - 19476: 59,13 - 19507: 52,9 - 19508: 51,9 - 19509: 54,9 - 19541: 69,-2 - 19544: 69,1 - 19545: 70,1 - 19574: -19,-24 - 19575: -18,-24 - 19750: 50,32 - 19751: 51,32 - 19752: 52,32 - 19753: 52,32 - 19754: 56,32 - 19755: 53,32 - 19756: 54,32 - 19757: 55,32 - 19758: 55,32 - 19793: 52,21 - 19794: 53,21 - 19795: 55,21 - 19796: 56,21 - 19804: 57,32 - 19805: 58,32 - 19808: 54,29 - 19809: 56,28 - 19810: 57,28 - 19811: 52,28 - 19812: 51,28 + 3697: 2,59 + 3700: 2,59 + 6713: -24,-1 + 7421: 40,10 + 7422: 36,7 + 7424: 36,10 + 7426: 40,2 + 7456: 36,12 + 7480: 46,10 + 7481: 47,10 + 7482: 48,10 + 7499: 53,10 + 7500: 53,10 + 7513: 47,14 + 7514: 51,14 + 7552: 52,20 + 7564: 57,20 + 7605: 47,-2 + 7606: 52,-2 + 7611: 51,-3 + 7627: 61,-2 + 7628: 65,-2 + 7670: 73,20 + 7676: 73,20 + 7683: 75,24 + 7684: 75,24 + 7864: 73,4 + 9745: 12,-33 + 10545: 5,-63 + 10562: 5,-73 + 10574: 5,-79 + 10583: 4,-83 + 15381: -48,7 + 19089: 50,1 + 19090: 51,1 + 19098: 36,7 + 19099: 37,6 + 19100: 35,6 + 19101: 34,6 + 19112: 35,3 + 19146: 40,13 + 19180: 46,24 + 19219: 51,19 + 19220: 53,19 + 19239: 70,-3 + 19249: 73,23 + 19250: 74,23 + 19303: 52,13 + 19304: 53,13 + 19305: 54,13 + 19306: 55,13 + 19307: 56,13 + 19308: 57,13 + 19309: 58,13 + 19310: 58,13 + 19311: 59,13 + 19342: 52,9 + 19343: 51,9 + 19344: 54,9 + 19376: 69,-2 + 19379: 69,1 + 19380: 70,1 + 19409: -19,-24 + 19410: -18,-24 + 19585: 50,32 + 19586: 51,32 + 19587: 52,32 + 19588: 52,32 + 19589: 56,32 + 19590: 53,32 + 19591: 54,32 + 19592: 55,32 + 19593: 55,32 + 19628: 52,21 + 19629: 53,21 + 19630: 55,21 + 19631: 56,21 + 19639: 57,32 + 19640: 58,32 + 19643: 54,29 + 19644: 56,28 + 19645: 57,28 + 19646: 52,28 + 19647: 51,28 - node: color: '#DABC8BFF' id: BrickTileDarkLineN decals: - 3721: 6,86 + 3694: 6,86 - node: color: '#DE3A3AFF' id: BrickTileDarkLineN decals: - 20492: -24,-1 + 20327: -24,-1 - node: color: '#EFB341FF' id: BrickTileDarkLineN decals: - 17720: -65,4 - 17721: -64,4 - 17722: -63,4 - 17723: -62,4 - 17743: -65,11 - 17744: -64,11 - 17745: -63,11 - 17746: -62,11 - 17815: -73,8 - 17816: -71,8 - 17827: -73,3 - 18410: -72,1 - 18411: -71,1 - 18412: -69,1 - 18413: -70,1 - 18414: -68,1 + 17574: -65,4 + 17575: -64,4 + 17576: -63,4 + 17577: -62,4 + 17597: -65,11 + 17598: -64,11 + 17599: -63,11 + 17600: -62,11 + 17669: -73,8 + 17670: -71,8 + 17681: -73,3 + 18264: -72,1 + 18265: -71,1 + 18266: -69,1 + 18267: -70,1 + 18268: -68,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 1243: 69,4 - 2022: -9,25 - 2023: -8,34 - 2067: -16,34 - 2247: -19,54 - 2440: -14,46 - 2495: -14,46 - 2496: -13,46 - 2497: -12,46 - 2498: -11,46 - 2650: -2,40 - 2716: 0,54 - 2717: 3,54 - 2723: 3,49 - 2741: -6,51 - 2746: -6,54 - 2748: -5,54 - 3466: 2,59 - 3883: 18,72 - 3884: 19,72 - 3885: 20,72 - 3886: 21,72 - 3887: 22,72 - 3911: 20,67 - 3963: 13,62 - 3964: 14,62 - 3965: 15,62 - 3973: 18,61 - 3977: 19,60 - 3978: 20,60 - 4483: 15,25 - 4698: 20,24 - 5561: -19,7 - 5577: -19,-7 - 5601: -33,25 - 5602: -32,25 - 5638: -13,59 - 5639: -12,59 - 5640: -11,59 - 5641: -13,66 - 5642: -12,66 - 5643: -11,66 - 5751: 9,7 - 5765: 10,3 - 5766: 9,3 - 5789: 8,4 - 5790: 10,-1 - 5856: -12,-3 - 5869: -10,-7 - 5895: -11,-3 - 5971: -1,14 - 5972: 0,14 - 6028: -1,-7 - 6121: -12,-18 - 6160: 17,-7 - 6161: 17,-7 - 6171: 17,7 - 6216: -19,-22 - 6347: 17,-22 - 6420: 13,-18 - 6421: 13,-18 - 6603: -23,-5 - 6604: -23,-5 - 6605: -25,-5 - 6606: -25,-5 - 6618: -24,-10 - 6658: -24,-8 - 7258: 21,2 - 7289: 22,-9 - 7319: 35,1 - 7335: 27,9 - 7361: 30,11 - 7362: 31,11 - 7363: 32,11 - 7372: 29,7 - 7402: 34,6 - 7403: 35,6 - 7404: 37,6 - 7413: 35,3 - 7506: 47,10 - 7721: 40,22 - 7722: 40,22 - 7723: 41,22 - 7724: 42,22 - 7725: 42,22 - 7739: 35,21 - 8235: 34,-17 - 8236: 35,-17 - 8237: 35,-17 - 8260: 35,-7 - 8536: 57,-24 - 8537: 58,-24 - 8538: 58,-24 - 8539: 59,-24 - 8540: 59,-24 - 8541: 60,-24 - 8542: 60,-24 - 8543: 61,-24 - 8791: -1,-29 - 8792: -1,-22 - 8793: -1,-37 - 8794: -1,-57 - 8795: -1,-63 - 9025: -5,-24 - 9026: -4,-24 - 9027: 6,-24 - 9028: 7,-24 - 9029: 8,-24 - 9030: 9,-24 - 9031: 10,-24 - 9032: -8,-24 - 9033: -9,-24 - 9034: -10,-24 - 9035: -11,-24 - 9036: -12,-24 - 9051: -16,-24 - 9052: -15,-24 - 9088: 2,-24 - 9089: 3,-24 - 9090: 13,-24 - 9091: 14,-24 - 9142: 14,-24 - 9145: 2,-24 - 9194: -5,-66 - 9195: -4,-66 - 9196: -4,-66 - 9201: -1,-82 - 9482: -5,-68 - 9483: -4,-68 - 9732: 17,-37 - 9733: 27,-37 - 10303: 36,-29 - 10304: 36,-29 - 10482: 11,-49 - 10483: 10,-49 - 10484: 9,-49 - 10485: 9,-49 - 10486: 9,-49 - 10487: 8,-49 - 10488: 6,-49 - 10489: 7,-49 - 10490: 6,-49 - 10491: 5,-49 - 10495: 3,-49 - 10502: 10,-54 - 10522: 12,-62 - 10528: 11,-58 - 10529: 12,-58 - 10530: 12,-58 - 10531: 13,-58 - 10532: 13,-58 - 10638: 50,-54 - 10639: 50,-54 - 10735: 81,-43 - 10750: 73,-41 - 10751: 73,-41 - 10752: 73,-37 - 11579: -19,-33 - 11592: -23,-33 - 11596: -14,-37 - 11597: -14,-37 - 11752: -14,-45 - 12446: -20,-66 - 12447: -20,-66 - 12448: -19,-66 - 12449: -18,-66 - 12450: -16,-66 - 12451: -15,-66 - 12452: -14,-66 - 12453: -13,-66 - 12454: -17,-66 - 12455: -16,-74 - 12456: -18,-74 - 12472: -21,-76 - 12473: -21,-76 - 12474: -20,-76 - 12475: -14,-76 - 12476: -13,-76 - 12479: -20,-65 - 12480: -19,-65 - 12481: -18,-65 - 12482: -16,-65 - 12483: -15,-65 - 12484: -14,-65 - 12493: -15,-79 - 12494: -14,-79 - 12505: -22,-80 - 12510: -21,-66 - 12593: -21,-77 - 12594: -17,-78 - 12595: -16,-78 - 12596: -15,-78 - 12598: -13,-78 - 12629: -23,-79 - 12631: -23,-77 - 12650: -23,-71 - 12817: -30,70 - 12818: -12,70 - 12819: -20,66 - 12820: -19,66 - 12821: -18,66 - 12822: -6,66 - 12823: -5,66 - 12824: -4,66 - 12825: 6,70 - 12851: -6,59 - 12852: -5,59 - 12853: -4,59 - 12854: -18,59 - 12855: -19,59 - 12856: -20,59 - 12857: -20,66 - 12858: -19,66 - 13417: -40,-66 - 13418: -39,-66 - 13588: -36,-73 - 13589: -35,-73 - 13590: -34,-73 - 13591: -32,-73 - 13592: -31,-73 - 13622: -33,-77 - 13623: -34,-77 - 13626: -32,-77 - 14459: -60,20 - 14460: -59,20 - 14461: -58,20 - 14485: -65,13 - 14486: -64,13 - 14487: -64,13 - 14488: -63,13 - 14489: -62,13 - 14524: -19,21 - 14525: 17,21 - 15428: -42,2 - 15431: -42,3 - 15442: -42,7 - 15542: 58,-11 - 15543: 59,-11 - 15544: 60,-11 - 15778: 77,0 - 15779: 78,0 - 15780: 79,0 - 15781: 82,0 - 15782: 83,0 - 15783: 84,0 - 15784: 86,0 - 15785: 87,0 - 15786: 88,0 - 15802: 81,0 - 15816: 90,10 - 15817: 91,10 - 15818: 92,10 - 15819: 93,10 - 15822: 92,8 - 15824: 91,7 - 15856: 92,5 - 15901: 95,0 - 15902: 94,0 - 16012: 80,-2 - 16040: 88,-2 - 16041: 84,-2 - 16061: 97,14 - 16062: 97,13 - 16072: 96,14 - 16077: 97,13 - 16187: 92,15 - 16197: 89,9 - 16198: 90,9 - 16899: -58,0 - 16900: -56,0 - 16901: -53,-5 - 16902: -53,-10 - 16903: -53,-16 - 16904: -57,-18 - 16905: -56,-18 - 16906: -55,-18 - 16944: -47,6 - 16945: -46,6 - 16950: -49,3 - 17105: -58,3 - 17106: -57,3 - 17271: -48,-18 - 17272: -47,-18 - 17273: -48,-12 - 17274: -47,-12 - 17317: -70,-9 - 17553: -70,-9 - 17863: -81,15 - 17864: -81,13 - 18273: -54,25 - 18274: -53,25 - 18346: -57,0 - 18517: -60,-9 - 18518: -59,-9 - 18519: -58,-9 - 18520: -67,-8 - 18521: -66,-8 - 18522: -65,-8 - 18523: -65,-8 - 18524: -64,-8 - 18525: -69,-8 - 18526: -69,-8 - 18527: -70,-8 - 18528: -71,-8 - 18529: -72,-8 - 18568: -52,-36 - 18569: -52,-36 - 18570: -51,-36 - 18572: -49,-38 - 18732: 13,-11 - 18735: 13,-13 - 18751: 13,-13 - 19183: 69,10 - 19635: -11,33 - 19642: -14,34 - 19643: -13,34 - 19689: -11,33 - 19984: -8,-40 - 19985: -7,-40 - 20006: -30,-22 - 20007: -29,-22 - 20008: -28,-22 - 20016: -29,-25 - 20284: 65,27 - 20285: 66,27 - 20292: 62,30 - 20293: 63,30 - 20294: 64,30 - 20295: 65,30 - 20296: 65,30 - 20297: 67,30 - 20298: 67,30 - 20299: 66,30 - 20309: 62,27 - 20310: 64,27 - 20311: 65,27 - 20312: 66,27 - 20313: 67,27 - 21553: 20,15 - 21564: 24,13 - 21571: 23,17 - 21572: 25,17 - 21573: 25,17 - 21574: 24,17 - 21617: 24,16 + 1995: -9,25 + 1996: -8,34 + 2040: -16,34 + 2220: -19,54 + 2413: -14,46 + 2468: -14,46 + 2469: -13,46 + 2470: -12,46 + 2471: -11,46 + 2623: -2,40 + 2689: 0,54 + 2690: 3,54 + 2696: 3,49 + 2714: -6,51 + 2719: -6,54 + 2721: -5,54 + 3439: 2,59 + 3856: 18,72 + 3857: 19,72 + 3858: 20,72 + 3859: 21,72 + 3860: 22,72 + 3884: 20,67 + 3936: 13,62 + 3937: 14,62 + 3938: 15,62 + 3946: 18,61 + 3950: 19,60 + 3951: 20,60 + 4456: 15,25 + 4671: 20,24 + 5534: -19,7 + 5550: -19,-7 + 5574: -33,25 + 5575: -32,25 + 5611: -13,59 + 5612: -12,59 + 5613: -11,59 + 5614: -13,66 + 5615: -12,66 + 5616: -11,66 + 5724: 9,7 + 5738: 10,3 + 5739: 9,3 + 5762: 8,4 + 5763: 10,-1 + 5829: -12,-3 + 5842: -10,-7 + 5868: -11,-3 + 5944: -1,14 + 5945: 0,14 + 6001: -1,-7 + 6094: -12,-18 + 6133: 17,-7 + 6134: 17,-7 + 6144: 17,7 + 6189: -19,-22 + 6320: 17,-22 + 6393: 13,-18 + 6394: 13,-18 + 6576: -23,-5 + 6577: -23,-5 + 6578: -25,-5 + 6579: -25,-5 + 6591: -24,-10 + 6631: -24,-8 + 7231: 21,2 + 7262: 22,-9 + 7292: 35,1 + 7308: 27,9 + 7334: 30,11 + 7335: 31,11 + 7336: 32,11 + 7345: 29,7 + 7375: 34,6 + 7376: 35,6 + 7377: 37,6 + 7386: 35,3 + 7479: 47,10 + 7694: 40,22 + 7695: 40,22 + 7696: 41,22 + 7697: 42,22 + 7698: 42,22 + 7712: 35,21 + 8200: 34,-17 + 8201: 35,-17 + 8202: 35,-17 + 8225: 35,-7 + 8501: 57,-24 + 8502: 58,-24 + 8503: 58,-24 + 8504: 59,-24 + 8505: 59,-24 + 8506: 60,-24 + 8507: 60,-24 + 8508: 61,-24 + 8756: -1,-29 + 8757: -1,-22 + 8758: -1,-37 + 8759: -1,-57 + 8760: -1,-63 + 8990: -5,-24 + 8991: -4,-24 + 8992: 6,-24 + 8993: 7,-24 + 8994: 8,-24 + 8995: 9,-24 + 8996: 10,-24 + 8997: -8,-24 + 8998: -9,-24 + 8999: -10,-24 + 9000: -11,-24 + 9001: -12,-24 + 9016: -16,-24 + 9017: -15,-24 + 9053: 2,-24 + 9054: 3,-24 + 9055: 13,-24 + 9056: 14,-24 + 9107: 14,-24 + 9110: 2,-24 + 9159: -5,-66 + 9160: -4,-66 + 9161: -4,-66 + 9166: -1,-82 + 9447: -5,-68 + 9448: -4,-68 + 9697: 17,-37 + 9698: 27,-37 + 10268: 36,-29 + 10269: 36,-29 + 10447: 11,-49 + 10448: 10,-49 + 10449: 9,-49 + 10450: 9,-49 + 10451: 9,-49 + 10452: 8,-49 + 10453: 6,-49 + 10454: 7,-49 + 10455: 6,-49 + 10456: 5,-49 + 10460: 3,-49 + 10467: 10,-54 + 10487: 12,-62 + 10493: 11,-58 + 10494: 12,-58 + 10495: 12,-58 + 10496: 13,-58 + 10497: 13,-58 + 10603: 50,-54 + 10604: 50,-54 + 10700: 81,-43 + 10715: 73,-41 + 10716: 73,-41 + 10717: 73,-37 + 11544: -19,-33 + 11557: -23,-33 + 11561: -14,-37 + 11562: -14,-37 + 11717: -14,-45 + 12411: -20,-66 + 12412: -20,-66 + 12413: -19,-66 + 12414: -18,-66 + 12415: -16,-66 + 12416: -15,-66 + 12417: -14,-66 + 12418: -13,-66 + 12419: -17,-66 + 12420: -16,-74 + 12421: -18,-74 + 12437: -21,-76 + 12438: -21,-76 + 12439: -20,-76 + 12440: -14,-76 + 12441: -13,-76 + 12444: -20,-65 + 12445: -19,-65 + 12446: -18,-65 + 12447: -16,-65 + 12448: -15,-65 + 12449: -14,-65 + 12458: -15,-79 + 12459: -14,-79 + 12470: -22,-80 + 12475: -21,-66 + 12558: -21,-77 + 12559: -17,-78 + 12560: -16,-78 + 12561: -15,-78 + 12563: -13,-78 + 12594: -23,-79 + 12596: -23,-77 + 12615: -23,-71 + 12782: -30,70 + 12783: -12,70 + 12784: -20,66 + 12785: -19,66 + 12786: -18,66 + 12787: -6,66 + 12788: -5,66 + 12789: -4,66 + 12790: 6,70 + 12816: -6,59 + 12817: -5,59 + 12818: -4,59 + 12819: -18,59 + 12820: -19,59 + 12821: -20,59 + 12822: -20,66 + 12823: -19,66 + 13382: -40,-66 + 13383: -39,-66 + 13553: -36,-73 + 13554: -35,-73 + 13555: -34,-73 + 13556: -32,-73 + 13557: -31,-73 + 13587: -33,-77 + 13588: -34,-77 + 13591: -32,-77 + 14424: -60,20 + 14425: -59,20 + 14426: -58,20 + 14450: -65,13 + 14451: -64,13 + 14452: -64,13 + 14453: -63,13 + 14454: -62,13 + 14489: -19,21 + 14490: 17,21 + 15393: -42,2 + 15396: -42,3 + 15407: -42,7 + 15507: 58,-11 + 15508: 59,-11 + 15509: 60,-11 + 15632: 77,0 + 15633: 78,0 + 15634: 79,0 + 15635: 82,0 + 15636: 83,0 + 15637: 84,0 + 15638: 86,0 + 15639: 87,0 + 15640: 88,0 + 15656: 81,0 + 15670: 90,10 + 15671: 91,10 + 15672: 92,10 + 15673: 93,10 + 15676: 92,8 + 15678: 91,7 + 15710: 92,5 + 15755: 95,0 + 15756: 94,0 + 15866: 80,-2 + 15894: 88,-2 + 15895: 84,-2 + 15915: 97,14 + 15916: 97,13 + 15926: 96,14 + 15931: 97,13 + 16041: 92,15 + 16051: 89,9 + 16052: 90,9 + 16753: -58,0 + 16754: -56,0 + 16755: -53,-5 + 16756: -53,-10 + 16757: -53,-16 + 16758: -57,-18 + 16759: -56,-18 + 16760: -55,-18 + 16798: -47,6 + 16799: -46,6 + 16804: -49,3 + 16959: -58,3 + 16960: -57,3 + 17125: -48,-18 + 17126: -47,-18 + 17127: -48,-12 + 17128: -47,-12 + 17171: -70,-9 + 17407: -70,-9 + 17717: -81,15 + 17718: -81,13 + 18127: -54,25 + 18128: -53,25 + 18200: -57,0 + 18352: -60,-9 + 18353: -59,-9 + 18354: -58,-9 + 18355: -67,-8 + 18356: -66,-8 + 18357: -65,-8 + 18358: -65,-8 + 18359: -64,-8 + 18360: -69,-8 + 18361: -69,-8 + 18362: -70,-8 + 18363: -71,-8 + 18364: -72,-8 + 18403: -52,-36 + 18404: -52,-36 + 18405: -51,-36 + 18407: -49,-38 + 18567: 13,-11 + 18570: 13,-13 + 18586: 13,-13 + 19018: 69,10 + 19470: -11,33 + 19477: -14,34 + 19478: -13,34 + 19524: -11,33 + 19819: -8,-40 + 19820: -7,-40 + 19841: -30,-22 + 19842: -29,-22 + 19843: -28,-22 + 19851: -29,-25 + 20119: 65,27 + 20120: 66,27 + 20127: 62,30 + 20128: 63,30 + 20129: 64,30 + 20130: 65,30 + 20131: 65,30 + 20132: 67,30 + 20133: 67,30 + 20134: 66,30 + 20144: 62,27 + 20145: 64,27 + 20146: 65,27 + 20147: 66,27 + 20148: 67,27 + 21388: 20,15 + 21399: 24,13 + 21406: 23,17 + 21407: 25,17 + 21408: 25,17 + 21409: 24,17 + 21452: 24,16 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4075: -19,25 + 4048: -19,25 - node: color: '#8CB7E8FF' id: BrickTileDarkLineS decals: - 4213: -12,13 - 4214: -11,13 - 4215: -9,13 - 4216: -8,13 - 4217: -7,13 - 4228: -6,13 - 4229: -5,13 - 4230: 3,13 - 4231: 4,13 - 4232: 5,13 - 4233: 6,13 - 4234: 7,13 - 4235: 9,13 - 4236: 10,13 - 4241: -10,15 - 4242: -9,15 - 4243: -8,15 - 4244: -7,15 - 4245: -3,17 - 4246: -1,17 - 4247: -1,17 - 4248: -2,17 - 4249: 0,17 - 4250: 1,17 - 4251: 4,15 - 4252: 5,15 - 4253: 6,15 - 4254: 7,15 - 4255: 8,15 - 4256: 10,16 - 4257: -12,16 - 4317: -3,15 - 4318: -1,15 - 4319: 0,15 - 4320: 1,15 - 5556: -6,15 - 9999: 31,-45 - 10000: 32,-45 - 10001: 33,-45 - 21498: -12,13 - 21499: -11,13 + 4186: -12,13 + 4187: -11,13 + 4188: -9,13 + 4189: -8,13 + 4190: -7,13 + 4201: -6,13 + 4202: -5,13 + 4203: 3,13 + 4204: 4,13 + 4205: 5,13 + 4206: 6,13 + 4207: 7,13 + 4208: 9,13 + 4209: 10,13 + 4214: -10,15 + 4215: -9,15 + 4216: -8,15 + 4217: -7,15 + 4218: -3,17 + 4219: -1,17 + 4220: -1,17 + 4221: -2,17 + 4222: 0,17 + 4223: 1,17 + 4224: 4,15 + 4225: 5,15 + 4226: 6,15 + 4227: 7,15 + 4228: 8,15 + 4229: 10,16 + 4230: -12,16 + 4290: -3,15 + 4291: -1,15 + 4292: 0,15 + 4293: 1,15 + 5529: -6,15 + 9964: 31,-45 + 9965: 32,-45 + 9966: 33,-45 + 21333: -12,13 + 21334: -11,13 - node: color: '#B18BDAFF' id: BrickTileDarkLineS decals: - 11800: -10,-44 - 11801: -9,-44 - 11802: -8,-44 - 11803: -8,-44 - 11804: -7,-44 - 11813: -7,-37 - 11814: -7,-37 - 12172: -29,-48 - 12173: -28,-48 - 12174: -28,-48 - 12175: -27,-48 - 12176: -26,-48 - 12177: -25,-48 - 12697: -52,-31 + 11765: -10,-44 + 11766: -9,-44 + 11767: -8,-44 + 11768: -8,-44 + 11769: -7,-44 + 11778: -7,-37 + 11779: -7,-37 + 12137: -29,-48 + 12138: -28,-48 + 12139: -28,-48 + 12140: -27,-48 + 12141: -26,-48 + 12142: -25,-48 + 12662: -52,-31 - node: color: '#CEDA8BFF' id: BrickTileDarkLineS decals: - 10911: 44,-61 - 10912: 44,-64 - 10923: 40,-64 - 10924: 39,-64 + 10876: 44,-61 + 10877: 44,-64 + 10888: 40,-64 + 10889: 39,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineS decals: - 4625: 13,33 - 6739: -23,3 - 7442: 40,10 - 7447: 40,10 - 7450: 36,10 - 7452: 40,2 - 7467: 37,8 - 7510: 46,10 - 7511: 47,10 - 7512: 48,10 - 7524: 53,10 - 7525: 53,10 - 7537: 47,14 - 7538: 51,14 - 7539: 51,14 - 7567: 52,20 - 7568: 57,20 - 7631: 47,-2 - 7634: 52,-2 - 7635: 56,-5 - 7636: 57,-5 - 7637: 52,-5 - 7673: 58,2 - 7674: 62,2 - 7675: 66,2 - 7696: 73,20 - 7700: 75,24 - 7701: 75,24 - 7702: 73,20 - 7712: 75,26 - 7886: 69,-2 - 7890: 73,4 - 9777: 11,-29 - 9778: 13,-29 - 10572: 7,-57 - 10581: 5,-63 - 10604: 5,-73 - 10619: 5,-79 - 15731: 72,-1 - 15732: 73,-1 - 19227: 51,-1 - 19228: 50,-1 - 19229: 55,-1 - 19230: 54,-1 - 19231: 53,-1 - 19232: 60,-1 - 19233: 59,-1 - 19234: 58,-1 - 19235: 64,-1 - 19236: 63,-1 - 19237: 62,-1 - 19238: 66,-1 - 19239: 67,-1 - 19242: 48,-1 - 19262: 36,7 - 19269: 34,4 - 19270: 36,4 - 19271: 36,4 - 19272: 37,4 - 19295: 40,-1 - 19319: 52,11 - 19320: 51,11 - 19321: 54,11 - 19322: 55,11 - 19323: 56,11 - 19324: 57,11 - 19325: 58,11 - 19326: 58,11 - 19327: 59,11 - 19331: 47,14 - 19332: 46,15 - 19366: 50,21 - 19367: 51,21 - 19368: 56,21 - 19369: 55,21 - 19370: 54,21 - 19371: 54,21 - 19372: 53,21 - 19373: 58,21 - 19374: 53,15 - 19375: 52,15 - 19398: 69,-5 - 19399: 70,-5 - 19416: 74,21 - 19417: 75,21 - 19518: 51,3 - 19519: 52,3 - 19520: 53,3 - 19521: 54,3 - 19522: 54,3 - 19538: 70,-1 - 19571: -19,-28 - 19584: 13,-29 - 19585: 7,-57 - 19759: 52,28 - 19760: 53,28 - 19769: 55,28 - 19770: 56,28 - 19817: 51,31 - 19818: 57,31 - 19819: 54,32 - 19820: 53,32 - 19821: 55,32 + 4598: 13,33 + 6712: -23,3 + 7415: 40,10 + 7420: 40,10 + 7423: 36,10 + 7425: 40,2 + 7440: 37,8 + 7483: 46,10 + 7484: 47,10 + 7485: 48,10 + 7497: 53,10 + 7498: 53,10 + 7510: 47,14 + 7511: 51,14 + 7512: 51,14 + 7540: 52,20 + 7541: 57,20 + 7604: 47,-2 + 7607: 52,-2 + 7608: 56,-5 + 7609: 57,-5 + 7610: 52,-5 + 7646: 58,2 + 7647: 62,2 + 7648: 66,2 + 7669: 73,20 + 7673: 75,24 + 7674: 75,24 + 7675: 73,20 + 7685: 75,26 + 7859: 69,-2 + 7863: 73,4 + 9742: 11,-29 + 9743: 13,-29 + 10537: 7,-57 + 10546: 5,-63 + 10569: 5,-73 + 10584: 5,-79 + 15585: 72,-1 + 15586: 73,-1 + 19062: 51,-1 + 19063: 50,-1 + 19064: 55,-1 + 19065: 54,-1 + 19066: 53,-1 + 19067: 60,-1 + 19068: 59,-1 + 19069: 58,-1 + 19070: 64,-1 + 19071: 63,-1 + 19072: 62,-1 + 19073: 66,-1 + 19074: 67,-1 + 19077: 48,-1 + 19097: 36,7 + 19104: 34,4 + 19105: 36,4 + 19106: 36,4 + 19107: 37,4 + 19130: 40,-1 + 19154: 52,11 + 19155: 51,11 + 19156: 54,11 + 19157: 55,11 + 19158: 56,11 + 19159: 57,11 + 19160: 58,11 + 19161: 58,11 + 19162: 59,11 + 19166: 47,14 + 19167: 46,15 + 19201: 50,21 + 19202: 51,21 + 19203: 56,21 + 19204: 55,21 + 19205: 54,21 + 19206: 54,21 + 19207: 53,21 + 19208: 58,21 + 19209: 53,15 + 19210: 52,15 + 19233: 69,-5 + 19234: 70,-5 + 19251: 74,21 + 19252: 75,21 + 19353: 51,3 + 19354: 52,3 + 19355: 53,3 + 19356: 54,3 + 19357: 54,3 + 19373: 70,-1 + 19406: -19,-28 + 19419: 13,-29 + 19420: 7,-57 + 19594: 52,28 + 19595: 53,28 + 19604: 55,28 + 19605: 56,28 + 19652: 51,31 + 19653: 57,31 + 19654: 54,32 + 19655: 53,32 + 19656: 55,32 - node: color: '#DABC8BFF' id: BrickTileDarkLineS decals: - 3723: 5,91 + 3696: 5,91 - node: color: '#DE3A3AFF' id: BrickTileDarkLineS decals: - 20491: -23,3 + 20326: -23,3 - node: color: '#EFB341FF' id: BrickTileDarkLineS decals: - 17711: -65,11 - 17712: -64,11 - 17713: -63,11 - 17714: -62,11 - 17754: -65,4 - 17755: -64,4 - 17756: -63,4 - 17757: -62,4 - 17814: -72,9 - 17825: -72,4 - 17826: -71,4 - 17830: -72,9 - 18431: -72,-3 - 18432: -71,-3 - 18433: -72,-3 - 18434: -70,-3 - 18435: -69,-3 - 18436: -68,-3 + 17565: -65,11 + 17566: -64,11 + 17567: -63,11 + 17568: -62,11 + 17608: -65,4 + 17609: -64,4 + 17610: -63,4 + 17611: -62,4 + 17668: -72,9 + 17679: -72,4 + 17680: -71,4 + 17684: -72,9 + 18278: -72,-3 + 18279: -71,-3 + 18280: -72,-3 + 18281: -70,-3 + 18282: -69,-3 + 18283: -68,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2048: -16,26 - 2063: -17,35 - 2064: -16,35 - 2068: -15,35 - 2246: -19,54 - 2318: -15,35 - 2443: -14,36 - 2501: -14,36 - 2502: -13,36 - 2503: -13,36 - 2504: -11,36 - 2505: -11,36 - 2506: -12,36 - 2561: -7,36 - 2643: -3,36 - 2656: -3,41 - 2693: 1,55 - 2694: 2,55 - 2706: 0,50 - 2707: 1,50 - 2708: 2,50 - 2721: -1,55 - 3712: 6,66 - 3878: 18,72 - 3879: 19,72 - 3880: 20,72 - 3881: 21,72 - 3882: 22,72 - 3906: 19,68 - 3907: 21,68 - 3908: 22,68 - 3916: 21,65 - 3917: 22,65 - 3918: 18,65 - 3966: 13,58 - 3967: 14,58 - 3968: 15,58 - 3969: 16,58 - 4482: 15,25 - 4696: 20,24 - 4697: 21,24 - 4700: 21,25 - 5560: -19,7 - 5576: -19,-7 - 5599: -33,25 - 5600: -32,25 - 5631: -13,66 - 5632: -12,66 - 5633: -11,66 - 5634: -13,59 - 5635: -12,59 - 5636: -11,59 - 5637: -11,59 - 5746: 9,5 - 5747: 10,5 - 5757: 8,0 - 5758: 9,0 - 5788: 8,4 - 5863: -12,-6 - 5864: -11,-6 - 5898: -10,-2 - 5938: -10,-2 - 5973: -2,12 - 5974: -1,12 - 5975: -1,12 - 5976: 0,12 - 6120: -12,-18 - 6159: 17,-7 - 6170: 17,7 - 6215: -19,-22 - 6346: 17,-22 - 6415: 19,-14 - 6419: 13,-18 - 6593: -25,-9 - 6594: -23,-9 - 6595: -23,-9 - 6649: -24,-4 - 6652: -24,-6 - 6653: -24,-6 - 7256: 21,-8 - 7257: 23,-8 - 7287: 22,3 - 7316: 35,-1 - 7366: 30,8 - 7367: 31,8 - 7368: 32,8 - 7399: 34,4 - 7400: 36,4 - 7401: 37,4 - 7416: 36,7 - 7505: 47,10 - 7729: 42,18 - 7730: 41,18 - 7731: 40,18 - 7738: 35,19 - 8232: 34,-17 - 8233: 35,-17 - 8234: 35,-17 - 8258: 35,-7 - 8259: 35,-7 - 8529: 57,-17 - 8530: 58,-17 - 8531: 58,-17 - 8532: 59,-17 - 8533: 59,-17 - 8534: 60,-17 - 8535: 61,-17 - 8579: 52,-26 - 8580: 52,-22 - 8788: -1,-37 - 8789: -1,-29 - 8790: -1,-22 - 8796: -1,-63 - 8797: -1,-57 - 9056: -16,-26 - 9057: -12,-27 - 9058: -11,-27 - 9059: -10,-27 - 9060: -9,-27 - 9061: -8,-27 - 9062: -4,-26 - 9092: 2,-26 - 9093: 14,-26 - 9115: 6,-27 - 9116: 6,-27 - 9117: 7,-27 - 9118: 8,-27 - 9119: 9,-27 - 9120: 10,-27 - 9121: 10,-27 - 9191: -5,-66 - 9192: -4,-66 - 9193: -4,-66 - 9200: -1,-82 - 9480: -5,-68 - 9481: -4,-68 - 9730: 17,-37 - 9731: 27,-37 - 10300: 36,-31 - 10301: 36,-31 - 10467: 3,-53 - 10468: 4,-53 - 10469: 5,-53 - 10470: 6,-53 - 10471: 6,-53 - 10472: 7,-53 - 10473: 7,-53 - 10474: 8,-53 - 10475: 8,-53 - 10476: 9,-53 - 10477: 9,-53 - 10478: 11,-53 - 10494: 4,-48 - 10521: 12,-58 - 10523: 11,-62 - 10524: 12,-62 - 10525: 13,-62 - 10538: 10,-57 - 10636: 50,-56 - 10637: 50,-56 - 10740: 80,-47 - 10741: 81,-47 - 11281: -64,-48 - 11577: -19,-33 - 11578: -19,-33 - 11588: -23,-33 - 11589: -23,-33 - 11590: -14,-37 - 11591: -14,-37 - 11751: -14,-45 - 12421: -13,-67 - 12422: -14,-67 - 12423: -15,-67 - 12441: -16,-67 - 12442: -19,-67 - 12443: -20,-67 - 12444: -19,-67 - 12445: -18,-67 - 12465: -18,-76 - 12466: -17,-76 - 12467: -16,-76 - 12485: -17,-64 - 12499: -15,-82 - 12500: -14,-82 - 12506: -22,-82 - 12509: -21,-67 - 12597: -14,-77 - 12602: -13,-78 - 12603: -14,-78 - 12604: -15,-78 - 12605: -16,-78 - 12630: -23,-79 - 12632: -23,-77 - 12649: -23,-71 - 12659: -24,-63 - 12668: -24,-70 - 12808: 6,70 - 12809: -6,66 - 12810: -5,66 - 12811: -4,66 - 12812: -20,66 - 12813: -19,66 - 12814: -18,66 - 12815: -12,70 - 12816: -30,70 - 12844: -20,59 - 12845: -19,59 - 12846: -18,59 - 12847: -6,59 - 12848: -5,59 - 12849: -4,59 - 13422: -40,-68 - 13423: -39,-68 - 13600: -35,-76 - 13601: -34,-76 - 13602: -32,-76 - 13603: -32,-76 - 13604: -33,-76 - 13605: -31,-76 - 13634: -33,-79 - 14456: -60,20 - 14457: -59,20 - 14458: -58,20 - 14480: -65,13 - 14481: -64,13 - 14482: -64,13 - 14483: -62,13 - 14484: -63,13 - 14523: -19,21 - 14527: 17,21 - 15432: -42,3 - 15441: -42,7 - 15545: 58,-30 - 15546: 59,-30 - 15547: 60,-30 - 15766: 77,2 - 15767: 78,2 - 15768: 79,2 - 15769: 81,2 - 15770: 82,2 - 15771: 83,2 - 15772: 83,2 - 15773: 84,2 - 15774: 86,2 - 15775: 87,2 - 15776: 88,2 - 15777: 88,2 - 15823: 92,8 - 15894: 94,4 - 15895: 95,4 - 16019: 80,-5 - 16046: 88,-5 - 16047: 84,-5 - 16186: 92,15 - 16891: -57,-16 - 16892: -56,-16 - 16893: -55,-16 - 16894: -53,-11 - 16895: -53,-6 - 16896: -53,0 - 16897: -56,2 - 16898: -57,2 - 16943: -48,7 - 16951: -48,4 - 16952: -47,4 - 16953: -46,4 - 17103: -58,3 - 17104: -57,3 - 17107: -58,2 - 17276: -48,-12 - 17277: -47,-12 - 17278: -48,-18 - 17279: -47,-18 - 17316: -70,-9 - 17552: -70,-9 - 17861: -81,13 - 17862: -81,15 - 18269: -54,25 - 18270: -53,25 - 18505: -72,-6 - 18506: -71,-6 - 18507: -70,-6 - 18508: -69,-6 - 18509: -67,-6 - 18510: -66,-6 - 18511: -65,-6 - 18512: -64,-6 - 18513: -60,-7 - 18514: -59,-7 - 18515: -59,-7 - 18516: -58,-7 - 18560: -52,-38 - 18561: -51,-38 - 18562: -51,-38 - 18563: -50,-38 - 18564: -49,-38 - 18565: -49,-38 - 18731: 13,-11 - 18737: 13,-14 - 18747: 13,-14 - 19169: 69,3 - 19182: 69,10 - 19637: -13,26 - 19639: -11,27 - 19696: -11,27 - 19982: -8,-40 - 19983: -7,-40 - 20012: -30,-24 - 20013: -28,-24 - 20282: 65,27 - 20283: 66,27 - 20303: 63,28 - 21552: 20,14 - 21563: 24,16 - 21579: 23,12 - 21580: 24,12 - 21581: 25,12 - 21610: 24,13 + 2021: -16,26 + 2036: -17,35 + 2037: -16,35 + 2041: -15,35 + 2219: -19,54 + 2291: -15,35 + 2416: -14,36 + 2474: -14,36 + 2475: -13,36 + 2476: -13,36 + 2477: -11,36 + 2478: -11,36 + 2479: -12,36 + 2534: -7,36 + 2616: -3,36 + 2629: -3,41 + 2666: 1,55 + 2667: 2,55 + 2679: 0,50 + 2680: 1,50 + 2681: 2,50 + 2694: -1,55 + 3685: 6,66 + 3851: 18,72 + 3852: 19,72 + 3853: 20,72 + 3854: 21,72 + 3855: 22,72 + 3879: 19,68 + 3880: 21,68 + 3881: 22,68 + 3889: 21,65 + 3890: 22,65 + 3891: 18,65 + 3939: 13,58 + 3940: 14,58 + 3941: 15,58 + 3942: 16,58 + 4455: 15,25 + 4669: 20,24 + 4670: 21,24 + 4673: 21,25 + 5533: -19,7 + 5549: -19,-7 + 5572: -33,25 + 5573: -32,25 + 5604: -13,66 + 5605: -12,66 + 5606: -11,66 + 5607: -13,59 + 5608: -12,59 + 5609: -11,59 + 5610: -11,59 + 5719: 9,5 + 5720: 10,5 + 5730: 8,0 + 5731: 9,0 + 5761: 8,4 + 5836: -12,-6 + 5837: -11,-6 + 5871: -10,-2 + 5911: -10,-2 + 5946: -2,12 + 5947: -1,12 + 5948: -1,12 + 5949: 0,12 + 6093: -12,-18 + 6132: 17,-7 + 6143: 17,7 + 6188: -19,-22 + 6319: 17,-22 + 6388: 19,-14 + 6392: 13,-18 + 6566: -25,-9 + 6567: -23,-9 + 6568: -23,-9 + 6622: -24,-4 + 6625: -24,-6 + 6626: -24,-6 + 7229: 21,-8 + 7230: 23,-8 + 7260: 22,3 + 7289: 35,-1 + 7339: 30,8 + 7340: 31,8 + 7341: 32,8 + 7372: 34,4 + 7373: 36,4 + 7374: 37,4 + 7389: 36,7 + 7478: 47,10 + 7702: 42,18 + 7703: 41,18 + 7704: 40,18 + 7711: 35,19 + 8197: 34,-17 + 8198: 35,-17 + 8199: 35,-17 + 8223: 35,-7 + 8224: 35,-7 + 8494: 57,-17 + 8495: 58,-17 + 8496: 58,-17 + 8497: 59,-17 + 8498: 59,-17 + 8499: 60,-17 + 8500: 61,-17 + 8544: 52,-26 + 8545: 52,-22 + 8753: -1,-37 + 8754: -1,-29 + 8755: -1,-22 + 8761: -1,-63 + 8762: -1,-57 + 9021: -16,-26 + 9022: -12,-27 + 9023: -11,-27 + 9024: -10,-27 + 9025: -9,-27 + 9026: -8,-27 + 9027: -4,-26 + 9057: 2,-26 + 9058: 14,-26 + 9080: 6,-27 + 9081: 6,-27 + 9082: 7,-27 + 9083: 8,-27 + 9084: 9,-27 + 9085: 10,-27 + 9086: 10,-27 + 9156: -5,-66 + 9157: -4,-66 + 9158: -4,-66 + 9165: -1,-82 + 9445: -5,-68 + 9446: -4,-68 + 9695: 17,-37 + 9696: 27,-37 + 10265: 36,-31 + 10266: 36,-31 + 10432: 3,-53 + 10433: 4,-53 + 10434: 5,-53 + 10435: 6,-53 + 10436: 6,-53 + 10437: 7,-53 + 10438: 7,-53 + 10439: 8,-53 + 10440: 8,-53 + 10441: 9,-53 + 10442: 9,-53 + 10443: 11,-53 + 10459: 4,-48 + 10486: 12,-58 + 10488: 11,-62 + 10489: 12,-62 + 10490: 13,-62 + 10503: 10,-57 + 10601: 50,-56 + 10602: 50,-56 + 10705: 80,-47 + 10706: 81,-47 + 11246: -64,-48 + 11542: -19,-33 + 11543: -19,-33 + 11553: -23,-33 + 11554: -23,-33 + 11555: -14,-37 + 11556: -14,-37 + 11716: -14,-45 + 12386: -13,-67 + 12387: -14,-67 + 12388: -15,-67 + 12406: -16,-67 + 12407: -19,-67 + 12408: -20,-67 + 12409: -19,-67 + 12410: -18,-67 + 12430: -18,-76 + 12431: -17,-76 + 12432: -16,-76 + 12450: -17,-64 + 12464: -15,-82 + 12465: -14,-82 + 12471: -22,-82 + 12474: -21,-67 + 12562: -14,-77 + 12567: -13,-78 + 12568: -14,-78 + 12569: -15,-78 + 12570: -16,-78 + 12595: -23,-79 + 12597: -23,-77 + 12614: -23,-71 + 12624: -24,-63 + 12633: -24,-70 + 12773: 6,70 + 12774: -6,66 + 12775: -5,66 + 12776: -4,66 + 12777: -20,66 + 12778: -19,66 + 12779: -18,66 + 12780: -12,70 + 12781: -30,70 + 12809: -20,59 + 12810: -19,59 + 12811: -18,59 + 12812: -6,59 + 12813: -5,59 + 12814: -4,59 + 13387: -40,-68 + 13388: -39,-68 + 13565: -35,-76 + 13566: -34,-76 + 13567: -32,-76 + 13568: -32,-76 + 13569: -33,-76 + 13570: -31,-76 + 13599: -33,-79 + 14421: -60,20 + 14422: -59,20 + 14423: -58,20 + 14445: -65,13 + 14446: -64,13 + 14447: -64,13 + 14448: -62,13 + 14449: -63,13 + 14488: -19,21 + 14492: 17,21 + 15397: -42,3 + 15406: -42,7 + 15510: 58,-30 + 15511: 59,-30 + 15512: 60,-30 + 15620: 77,2 + 15621: 78,2 + 15622: 79,2 + 15623: 81,2 + 15624: 82,2 + 15625: 83,2 + 15626: 83,2 + 15627: 84,2 + 15628: 86,2 + 15629: 87,2 + 15630: 88,2 + 15631: 88,2 + 15677: 92,8 + 15748: 94,4 + 15749: 95,4 + 15873: 80,-5 + 15900: 88,-5 + 15901: 84,-5 + 16040: 92,15 + 16745: -57,-16 + 16746: -56,-16 + 16747: -55,-16 + 16748: -53,-11 + 16749: -53,-6 + 16750: -53,0 + 16751: -56,2 + 16752: -57,2 + 16797: -48,7 + 16805: -48,4 + 16806: -47,4 + 16807: -46,4 + 16957: -58,3 + 16958: -57,3 + 16961: -58,2 + 17130: -48,-12 + 17131: -47,-12 + 17132: -48,-18 + 17133: -47,-18 + 17170: -70,-9 + 17406: -70,-9 + 17715: -81,13 + 17716: -81,15 + 18123: -54,25 + 18124: -53,25 + 18340: -72,-6 + 18341: -71,-6 + 18342: -70,-6 + 18343: -69,-6 + 18344: -67,-6 + 18345: -66,-6 + 18346: -65,-6 + 18347: -64,-6 + 18348: -60,-7 + 18349: -59,-7 + 18350: -59,-7 + 18351: -58,-7 + 18395: -52,-38 + 18396: -51,-38 + 18397: -51,-38 + 18398: -50,-38 + 18399: -49,-38 + 18400: -49,-38 + 18566: 13,-11 + 18572: 13,-14 + 18582: 13,-14 + 19004: 69,3 + 19017: 69,10 + 19472: -13,26 + 19474: -11,27 + 19531: -11,27 + 19817: -8,-40 + 19818: -7,-40 + 19847: -30,-24 + 19848: -28,-24 + 20117: 65,27 + 20118: 66,27 + 20138: 63,28 + 21387: 20,14 + 21398: 24,16 + 21414: 23,12 + 21415: 24,12 + 21416: 25,12 + 21445: 24,13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4074: -19,25 + 4047: -19,25 - node: color: '#00C9DAFF' id: BrickTileDarkLineW decals: - 8162: 32,-16 + 8127: 32,-16 - node: color: '#8CB7E8FF' id: BrickTileDarkLineW decals: - 4223: -9,16 - 4275: 9,14 - 4276: 11,14 - 4277: 11,15 - 4278: 2,16 - 4279: -5,14 - 4287: -11,14 - 4288: -11,15 - 4304: -6,17 - 4321: 2,14 - 4330: 12,14 - 4331: 12,15 - 4332: 15,14 - 4333: 15,15 - 21509: 16,16 - 21510: 16,13 - 21511: 16,12 - 21512: 16,17 + 4196: -9,16 + 4248: 9,14 + 4249: 11,14 + 4250: 11,15 + 4251: 2,16 + 4252: -5,14 + 4260: -11,14 + 4261: -11,15 + 4277: -6,17 + 4294: 2,14 + 4303: 12,14 + 4304: 12,15 + 4305: 15,14 + 4306: 15,15 + 21344: 16,16 + 21345: 16,13 + 21346: 16,12 + 21347: 16,17 - node: color: '#A9DA8BFF' id: BrickTileDarkLineW decals: - 3013: -27,54 + 2986: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkLineW decals: - 11805: -11,-43 - 11806: -11,-42 - 11807: -11,-42 - 11808: -11,-40 - 11809: -11,-40 - 11811: -3,-41 - 11812: -3,-40 - 12169: -23,-45 - 12170: -23,-46 - 12171: -23,-47 - 12187: -30,-47 - 12188: -30,-45 - 12692: -53,-30 - 12693: -53,-29 - 12694: -53,-27 - 12695: -53,-27 - 12696: -53,-26 - 12702: -49,-28 - 13035: -53,-28 + 11770: -11,-43 + 11771: -11,-42 + 11772: -11,-42 + 11773: -11,-40 + 11774: -11,-40 + 11776: -3,-41 + 11777: -3,-40 + 12134: -23,-45 + 12135: -23,-46 + 12136: -23,-47 + 12152: -30,-47 + 12153: -30,-45 + 12657: -53,-30 + 12658: -53,-29 + 12659: -53,-27 + 12660: -53,-27 + 12661: -53,-26 + 12667: -49,-28 + 13000: -53,-28 - node: color: '#DA8B8BFF' id: BrickTileDarkLineW decals: - 3725: 4,60 - 3728: 4,60 - 3730: 4,64 - 7431: 49,1 - 7432: 49,0 - 7433: 49,-1 - 7444: 45,8 - 7445: 45,12 - 7454: 45,0 - 7518: 49,4 - 7521: 49,8 - 7549: 49,16 - 7570: 58,19 - 7571: 58,19 - 7578: 55,17 - 7586: 48,22 - 7587: 48,23 - 7596: 60,25 - 7598: 49,12 - 7645: 55,-4 - 7646: 50,-4 - 7676: 56,4 - 7677: 56,5 - 7678: 61,12 - 7681: 61,12 - 7706: 77,22 - 7707: 77,22 - 7719: 75,9 - 7819: 68,1 - 7820: 68,-1 - 7887: 72,-4 - 9779: 15,-31 - 10596: 7,-65 - 10605: 7,-77 - 10606: 7,-75 - 15414: -45,9 - 15727: 72,2 - 15728: 72,0 - 15737: 75,1 - 19200: 72,7 - 19201: 72,8 - 19202: 72,9 - 19203: 72,9 - 19204: 72,10 - 19205: 72,11 - 19206: 72,12 - 19207: 72,14 - 19208: 72,15 - 19209: 72,16 - 19210: 72,17 - 19251: 43,0 - 19252: 46,2 - 19253: 46,1 - 19256: 68,1 - 19257: 68,-1 - 19258: 46,11 - 19259: 39,7 - 19274: 34,5 - 19282: 38,4 - 19283: 38,6 - 19293: 39,0 - 19296: 39,12 - 19297: 43,12 - 19298: 43,8 - 19335: 45,16 - 19336: 45,17 - 19337: 45,18 - 19338: 45,18 - 19339: 45,19 - 19340: 45,23 - 19341: 45,22 - 19342: 45,22 - 19343: 45,21 - 19356: 49,25 - 19357: 49,24 - 19358: 49,26 - 19359: 49,27 - 19360: 49,28 - 19376: 50,18 - 19377: 50,17 - 19387: 56,16 - 19388: 56,18 - 19405: 68,-4 - 19418: 72,22 - 19523: 50,5 - 19524: 50,6 - 19525: 50,7 - 19531: 69,0 - 19546: 71,1 - 19547: 71,-1 - 19572: -20,-27 - 19573: -20,-25 - 19580: -17,-24 - 19761: 54,27 - 19762: 54,26 - 19763: 54,25 - 19764: 54,25 - 19765: 54,24 - 19766: 54,24 - 19767: 54,23 - 19768: 54,22 - 19778: 57,22 - 19779: 57,22 - 19780: 57,23 - 19781: 57,24 - 19782: 57,25 - 19783: 57,25 - 19784: 57,26 - 19785: 57,27 - 19797: 49,29 - 19798: 49,30 - 19799: 49,31 - 19813: 58,29 - 19814: 58,30 + 3698: 4,60 + 3701: 4,60 + 3703: 4,64 + 7404: 49,1 + 7405: 49,0 + 7406: 49,-1 + 7417: 45,8 + 7418: 45,12 + 7427: 45,0 + 7491: 49,4 + 7494: 49,8 + 7522: 49,16 + 7543: 58,19 + 7544: 58,19 + 7551: 55,17 + 7559: 48,22 + 7560: 48,23 + 7569: 60,25 + 7571: 49,12 + 7618: 55,-4 + 7619: 50,-4 + 7649: 56,4 + 7650: 56,5 + 7651: 61,12 + 7654: 61,12 + 7679: 77,22 + 7680: 77,22 + 7692: 75,9 + 7792: 68,1 + 7793: 68,-1 + 7860: 72,-4 + 9744: 15,-31 + 10561: 7,-65 + 10570: 7,-77 + 10571: 7,-75 + 15379: -45,9 + 15581: 72,2 + 15582: 72,0 + 15591: 75,1 + 19035: 72,7 + 19036: 72,8 + 19037: 72,9 + 19038: 72,9 + 19039: 72,10 + 19040: 72,11 + 19041: 72,12 + 19042: 72,14 + 19043: 72,15 + 19044: 72,16 + 19045: 72,17 + 19086: 43,0 + 19087: 46,2 + 19088: 46,1 + 19091: 68,1 + 19092: 68,-1 + 19093: 46,11 + 19094: 39,7 + 19109: 34,5 + 19117: 38,4 + 19118: 38,6 + 19128: 39,0 + 19131: 39,12 + 19132: 43,12 + 19133: 43,8 + 19170: 45,16 + 19171: 45,17 + 19172: 45,18 + 19173: 45,18 + 19174: 45,19 + 19175: 45,23 + 19176: 45,22 + 19177: 45,22 + 19178: 45,21 + 19191: 49,25 + 19192: 49,24 + 19193: 49,26 + 19194: 49,27 + 19195: 49,28 + 19211: 50,18 + 19212: 50,17 + 19222: 56,16 + 19223: 56,18 + 19240: 68,-4 + 19253: 72,22 + 19358: 50,5 + 19359: 50,6 + 19360: 50,7 + 19366: 69,0 + 19381: 71,1 + 19382: 71,-1 + 19407: -20,-27 + 19408: -20,-25 + 19415: -17,-24 + 19596: 54,27 + 19597: 54,26 + 19598: 54,25 + 19599: 54,25 + 19600: 54,24 + 19601: 54,24 + 19602: 54,23 + 19603: 54,22 + 19613: 57,22 + 19614: 57,22 + 19615: 57,23 + 19616: 57,24 + 19617: 57,25 + 19618: 57,25 + 19619: 57,26 + 19620: 57,27 + 19632: 49,29 + 19633: 49,30 + 19634: 49,31 + 19648: 58,29 + 19649: 58,30 - node: color: '#DE3A3AFF' id: BrickTileDarkLineW decals: - 20493: -24,0 - 20494: -24,1 + 20328: -24,0 + 20329: -24,1 - node: color: '#EFB341FF' id: BrickTileDarkLineW decals: - 17715: -61,9 - 17716: -61,8 - 17717: -61,7 - 17718: -61,6 - 17719: -61,5 - 17742: -61,10 - 17747: -66,10 - 17748: -66,9 - 17749: -66,8 - 17750: -66,8 - 17751: -66,7 - 17752: -66,6 - 17753: -66,5 - 17758: -60,6 - 17763: -60,10 - 17765: -60,6 - 17819: -74,7 - 17820: -74,6 - 17821: -74,5 - 17986: -56,6 - 17992: -60,6 - 17993: -60,10 - 18421: -73,0 - 18422: -73,-1 - 18423: -73,-2 + 17569: -61,9 + 17570: -61,8 + 17571: -61,7 + 17572: -61,6 + 17573: -61,5 + 17596: -61,10 + 17601: -66,10 + 17602: -66,9 + 17603: -66,8 + 17604: -66,8 + 17605: -66,7 + 17606: -66,6 + 17607: -66,5 + 17612: -60,6 + 17617: -60,10 + 17619: -60,6 + 17673: -74,7 + 17674: -74,6 + 17675: -74,5 + 17840: -56,6 + 17846: -60,6 + 17847: -60,10 + 18270: -73,0 + 18271: -73,-1 + 18272: -73,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 2012: -8,30 - 2013: -8,33 - 2014: -8,27 - 2040: -17,33 - 2041: -17,32 - 2042: -17,31 - 2043: -17,29 - 2044: -17,28 - 2045: -17,27 - 2358: -28,33 - 2359: -28,34 - 2360: -28,34 - 2361: -28,35 - 2362: -28,36 - 2363: -28,37 - 2544: -9,40 - 2545: -9,41 - 2546: -9,42 - 2550: -9,43 - 2551: -9,42 - 2552: -9,41 - 2553: -9,40 - 2554: -9,39 - 2555: -9,45 - 2556: -8,44 - 2557: -8,38 - 2558: -8,37 - 2634: -5,37 - 2639: -4,38 - 2640: -4,39 - 2655: -1,40 - 2699: 4,51 - 2700: 4,52 - 2701: 4,53 - 2702: 4,53 - 2712: -1,52 - 2713: -1,53 - 2714: -1,54 - 2715: -1,54 - 2745: -7,53 - 2750: -4,54 - 3164: -16,64 - 3165: -16,63 - 3166: -16,62 - 3167: -16,61 - 3179: -8,61 - 3180: -8,62 - 3181: -8,63 - 3182: -8,63 - 3183: -8,64 - 3223: -22,61 - 3224: -22,62 - 3225: -22,63 - 3226: -22,64 - 3238: -2,64 - 3239: -2,63 - 3240: -2,62 - 3241: -2,62 - 3242: -2,61 - 3247: -1,61 - 3463: -1,61 - 3718: 4,64 - 3720: 4,60 - 3927: 24,66 - 4011: -42,61 - 4012: -42,60 - 5274: -32,80 - 5275: -32,81 - 5276: -32,89 - 5277: -32,89 - 5278: -32,90 - 5279: -32,91 - 5292: -28,91 - 5293: -28,90 - 5294: -28,89 - 5295: -28,89 - 5296: -28,81 - 5297: -28,80 - 5298: -28,80 - 5356: -14,89 - 5357: -14,90 - 5358: -14,91 - 5362: -10,89 - 5363: -10,90 - 5364: -10,90 - 5365: -10,91 - 5366: -10,91 - 5375: -14,80 - 5376: -14,80 - 5377: -14,81 - 5380: -10,80 - 5381: -10,81 - 5385: 4,81 - 5386: 4,80 - 5387: 4,79 - 5672: -17,-20 - 5691: -7,9 - 5695: 5,9 - 5741: 7,6 - 5753: 7,2 - 5754: 7,1 - 5760: 12,1 - 5850: -16,-5 - 5853: -14,-5 - 5854: -13,-4 - 5978: -3,13 - 5994: -1,-6 - 5995: -1,-4 - 5996: -1,-3 - 5997: -1,-2 - 5998: -1,-2 - 5999: -1,0 - 6000: -1,1 - 6001: -1,1 - 6002: -1,2 - 6003: -1,4 - 6004: -1,5 - 6005: -1,5 - 6006: -1,6 - 6057: -8,-16 - 6058: -8,-12 - 6084: -14,-15 - 6085: -14,-14 - 6086: -14,-13 - 6087: -12,-15 - 6088: -12,-14 - 6089: -12,-13 - 6090: -16,-15 - 6091: -16,-14 - 6092: -16,-13 - 6093: -10,-15 - 6094: -10,-14 - 6095: -10,-13 - 6205: -3,-20 - 6206: 1,-20 - 6210: 15,-20 - 6601: -26,-7 - 6602: -26,-8 - 6654: -23,-7 - 6655: -23,-7 - 6880: -33,15 - 6881: -33,14 - 6882: -33,13 - 6883: -33,12 - 6884: -33,11 - 6885: -33,10 - 6886: -33,9 - 6901: -39,10 - 6902: -39,9 - 6903: -39,11 - 6904: -39,11 - 6905: -39,12 - 6906: -39,13 - 6907: -39,14 - 6908: -39,14 - 6909: -39,14 - 6910: -39,15 - 6911: -39,16 - 7068: 19,5 - 7082: 26,5 - 7121: 19,-11 - 7122: 26,-11 - 7270: 20,1 - 7271: 20,0 - 7272: 20,-1 - 7273: 20,-2 - 7274: 20,-4 - 7275: 20,-5 - 7276: 20,-6 - 7277: 20,-7 - 7290: 24,-8 - 7291: 24,-2 - 7317: 34,0 - 7332: 28,9 - 7358: 29,8 - 7359: 29,9 - 7360: 29,10 - 7407: 34,5 - 7414: 38,6 - 7415: 38,4 - 7429: 49,0 - 7733: 39,19 - 7734: 39,20 - 7735: 39,21 - 7736: 39,21 - 7737: 34,20 - 7750: 37,20 - 7751: 37,20 - 7752: 44,20 - 8243: 42,-11 - 8244: 42,-15 - 8245: 42,-15 - 8527: 57,-20 - 8528: 57,-21 - 8544: 62,-23 - 8545: 62,-23 - 8546: 62,-22 - 8547: 62,-22 - 8548: 62,-20 - 8549: 62,-19 - 8550: 62,-18 - 8551: 62,-21 - 8571: 51,-24 - 8572: 51,-24 - 8573: 51,-25 - 8651: 64,-30 - 8652: 64,-11 - 9037: -7,-23 - 9038: -14,-23 - 9039: -15,-28 - 9040: -15,-27 - 9041: -7,-28 - 9042: 11,-23 - 9043: 4,-23 - 9044: 3,-28 - 9045: 3,-27 - 9122: 11,-28 - 9137: 3,-28 - 9155: -7,-70 - 9156: -2,-70 - 9185: -8,-73 - 9186: -1,-73 - 9187: -1,-73 - 9735: 19,-35 - 10305: 35,-30 - 10337: 20,-52 - 10496: 2,-50 - 10497: 2,-52 - 10505: 10,-58 - 10506: 10,-59 - 10507: 10,-60 - 10508: 10,-60 - 10509: 10,-61 - 10511: 14,-60 - 10512: 14,-60 - 10544: 12,-61 - 10545: 12,-60 - 10546: 12,-59 - 10641: 49,-55 - 10736: 80,-44 - 10737: 80,-45 - 10738: 80,-45 - 10739: 80,-46 - 10755: 72,-39 - 10756: 72,-38 - 10816: 53,-55 - 10817: 53,-55 - 10818: 53,-54 - 10819: 53,-53 - 10831: 44,-55 - 10832: 44,-54 - 10833: 43,-51 - 10834: 43,-51 - 10835: 43,-52 - 10836: 43,-53 - 10837: 43,-54 - 10838: 43,-54 - 10839: 43,-55 - 10840: 43,-56 - 10841: 43,-51 - 10842: 43,-50 - 11357: -75,-35 - 11586: -21,-35 - 11767: -44,-28 - 11768: -32,-28 - 11769: -32,-28 - 12394: -21,-47 - 12424: -12,-67 - 12425: -12,-66 - 12432: -17,-73 - 12433: -17,-72 - 12434: -17,-71 - 12435: -17,-71 - 12436: -17,-70 - 12437: -17,-70 - 12438: -17,-69 - 12439: -17,-69 - 12440: -17,-68 - 12459: -19,-75 - 12460: -19,-76 - 12488: -16,-82 - 12489: -16,-81 - 12490: -16,-80 - 12508: -23,-81 - 12513: -12,-66 - 12514: -12,-67 - 12612: -17,-79 - 12616: -19,-81 - 12623: -24,-81 - 12633: -12,-78 - 12651: -24,-73 - 12652: -24,-74 - 12653: -24,-75 - 12657: -22,-66 - 12658: -22,-67 - 12662: -25,-65 - 12663: -25,-66 - 12664: -25,-67 - 12665: -25,-67 - 12666: -25,-68 - 12667: -25,-69 - 12741: -38,28 - 12742: -38,27 - 12751: -37,27 - 13420: -41,-67 - 13586: -37,-79 - 13587: -37,-74 - 13598: -30,-78 - 13599: -30,-77 - 13607: -35,-78 - 13608: -35,-77 - 13627: -35,-80 - 14515: -21,23 - 14516: -8,23 - 14517: 6,23 - 15444: -40,5 - 15549: 61,-31 - 15550: 61,-10 - 15560: 58,-27 - 15561: 60,-27 - 15570: 58,-14 - 15571: 60,-14 - 15736: 75,1 - 15789: 80,1 - 15790: 89,1 - 15801: 85,1 - 15869: 99,-3 - 15896: 97,2 - 16020: 79,-4 - 16021: 79,-3 - 16042: 83,-3 - 16043: 83,-4 - 16056: 94,10 - 16257: 87,-4 - 16258: 87,-3 - 16916: -55,1 - 16917: -52,-1 - 16918: -52,-2 - 16919: -52,-2 - 16920: -52,-3 - 16921: -52,-4 - 16922: -52,-7 - 16923: -52,-8 - 16924: -52,-9 - 16925: -52,-12 - 16926: -52,-13 - 16927: -52,-14 - 16928: -52,-15 - 16929: -54,-17 - 16948: -49,4 - 16949: -49,5 - 16962: -54,5 - 16963: -51,5 - 17286: -46,-13 - 17287: -46,-14 - 17288: -46,-15 - 17289: -46,-16 - 17290: -46,-17 - 17314: -74,-7 - 17482: -50,-8 - 17551: -74,-7 - 17868: -79,6 - 17869: -79,5 - 17870: -79,4 - 17879: -76,6 - 17880: -76,5 - 17881: -76,4 - 17904: -76,10 - 17905: -79,10 - 18236: -45,47 - 18252: -53,33 - 18253: -53,34 - 18254: -53,36 - 18255: -53,37 - 18259: -57,33 - 18262: -55,21 - 18267: -52,23 - 18268: -52,24 - 18309: -58,6 - 18533: -63,-7 - 18534: -68,-7 - 18535: -57,-8 - 18558: -53,-37 - 18653: -17,-9 - 18654: -17,-10 - 18686: 15,-9 - 19192: 57,8 - 19193: 59,8 - 19194: 61,8 - 19195: 63,8 - 19644: -14,33 - 19645: -14,32 - 19646: -15,30 - 19647: -14,28 - 19648: -14,27 - 20010: -31,-23 - 20308: 61,29 - 20321: -21,5 - 21554: 21,14 - 21555: 21,15 - 21559: 25,14 - 21560: 25,15 - 21575: 22,16 - 21576: 22,13 - 21615: 23,15 - 21616: 23,14 + 1985: -8,30 + 1986: -8,33 + 1987: -8,27 + 2013: -17,33 + 2014: -17,32 + 2015: -17,31 + 2016: -17,29 + 2017: -17,28 + 2018: -17,27 + 2331: -28,33 + 2332: -28,34 + 2333: -28,34 + 2334: -28,35 + 2335: -28,36 + 2336: -28,37 + 2517: -9,40 + 2518: -9,41 + 2519: -9,42 + 2523: -9,43 + 2524: -9,42 + 2525: -9,41 + 2526: -9,40 + 2527: -9,39 + 2528: -9,45 + 2529: -8,44 + 2530: -8,38 + 2531: -8,37 + 2607: -5,37 + 2612: -4,38 + 2613: -4,39 + 2628: -1,40 + 2672: 4,51 + 2673: 4,52 + 2674: 4,53 + 2675: 4,53 + 2685: -1,52 + 2686: -1,53 + 2687: -1,54 + 2688: -1,54 + 2718: -7,53 + 2723: -4,54 + 3137: -16,64 + 3138: -16,63 + 3139: -16,62 + 3140: -16,61 + 3152: -8,61 + 3153: -8,62 + 3154: -8,63 + 3155: -8,63 + 3156: -8,64 + 3196: -22,61 + 3197: -22,62 + 3198: -22,63 + 3199: -22,64 + 3211: -2,64 + 3212: -2,63 + 3213: -2,62 + 3214: -2,62 + 3215: -2,61 + 3220: -1,61 + 3436: -1,61 + 3691: 4,64 + 3693: 4,60 + 3900: 24,66 + 3984: -42,61 + 3985: -42,60 + 5247: -32,80 + 5248: -32,81 + 5249: -32,89 + 5250: -32,89 + 5251: -32,90 + 5252: -32,91 + 5265: -28,91 + 5266: -28,90 + 5267: -28,89 + 5268: -28,89 + 5269: -28,81 + 5270: -28,80 + 5271: -28,80 + 5329: -14,89 + 5330: -14,90 + 5331: -14,91 + 5335: -10,89 + 5336: -10,90 + 5337: -10,90 + 5338: -10,91 + 5339: -10,91 + 5348: -14,80 + 5349: -14,80 + 5350: -14,81 + 5353: -10,80 + 5354: -10,81 + 5358: 4,81 + 5359: 4,80 + 5360: 4,79 + 5645: -17,-20 + 5664: -7,9 + 5668: 5,9 + 5714: 7,6 + 5726: 7,2 + 5727: 7,1 + 5733: 12,1 + 5823: -16,-5 + 5826: -14,-5 + 5827: -13,-4 + 5951: -3,13 + 5967: -1,-6 + 5968: -1,-4 + 5969: -1,-3 + 5970: -1,-2 + 5971: -1,-2 + 5972: -1,0 + 5973: -1,1 + 5974: -1,1 + 5975: -1,2 + 5976: -1,4 + 5977: -1,5 + 5978: -1,5 + 5979: -1,6 + 6030: -8,-16 + 6031: -8,-12 + 6057: -14,-15 + 6058: -14,-14 + 6059: -14,-13 + 6060: -12,-15 + 6061: -12,-14 + 6062: -12,-13 + 6063: -16,-15 + 6064: -16,-14 + 6065: -16,-13 + 6066: -10,-15 + 6067: -10,-14 + 6068: -10,-13 + 6178: -3,-20 + 6179: 1,-20 + 6183: 15,-20 + 6574: -26,-7 + 6575: -26,-8 + 6627: -23,-7 + 6628: -23,-7 + 6853: -33,15 + 6854: -33,14 + 6855: -33,13 + 6856: -33,12 + 6857: -33,11 + 6858: -33,10 + 6859: -33,9 + 6874: -39,10 + 6875: -39,9 + 6876: -39,11 + 6877: -39,11 + 6878: -39,12 + 6879: -39,13 + 6880: -39,14 + 6881: -39,14 + 6882: -39,14 + 6883: -39,15 + 6884: -39,16 + 7041: 19,5 + 7055: 26,5 + 7094: 19,-11 + 7095: 26,-11 + 7243: 20,1 + 7244: 20,0 + 7245: 20,-1 + 7246: 20,-2 + 7247: 20,-4 + 7248: 20,-5 + 7249: 20,-6 + 7250: 20,-7 + 7263: 24,-8 + 7264: 24,-2 + 7290: 34,0 + 7305: 28,9 + 7331: 29,8 + 7332: 29,9 + 7333: 29,10 + 7380: 34,5 + 7387: 38,6 + 7388: 38,4 + 7402: 49,0 + 7706: 39,19 + 7707: 39,20 + 7708: 39,21 + 7709: 39,21 + 7710: 34,20 + 7723: 37,20 + 7724: 37,20 + 7725: 44,20 + 8208: 42,-11 + 8209: 42,-15 + 8210: 42,-15 + 8492: 57,-20 + 8493: 57,-21 + 8509: 62,-23 + 8510: 62,-23 + 8511: 62,-22 + 8512: 62,-22 + 8513: 62,-20 + 8514: 62,-19 + 8515: 62,-18 + 8516: 62,-21 + 8536: 51,-24 + 8537: 51,-24 + 8538: 51,-25 + 8616: 64,-30 + 8617: 64,-11 + 9002: -7,-23 + 9003: -14,-23 + 9004: -15,-28 + 9005: -15,-27 + 9006: -7,-28 + 9007: 11,-23 + 9008: 4,-23 + 9009: 3,-28 + 9010: 3,-27 + 9087: 11,-28 + 9102: 3,-28 + 9120: -7,-70 + 9121: -2,-70 + 9150: -8,-73 + 9151: -1,-73 + 9152: -1,-73 + 9700: 19,-35 + 10270: 35,-30 + 10302: 20,-52 + 10461: 2,-50 + 10462: 2,-52 + 10470: 10,-58 + 10471: 10,-59 + 10472: 10,-60 + 10473: 10,-60 + 10474: 10,-61 + 10476: 14,-60 + 10477: 14,-60 + 10509: 12,-61 + 10510: 12,-60 + 10511: 12,-59 + 10606: 49,-55 + 10701: 80,-44 + 10702: 80,-45 + 10703: 80,-45 + 10704: 80,-46 + 10720: 72,-39 + 10721: 72,-38 + 10781: 53,-55 + 10782: 53,-55 + 10783: 53,-54 + 10784: 53,-53 + 10796: 44,-55 + 10797: 44,-54 + 10798: 43,-51 + 10799: 43,-51 + 10800: 43,-52 + 10801: 43,-53 + 10802: 43,-54 + 10803: 43,-54 + 10804: 43,-55 + 10805: 43,-56 + 10806: 43,-51 + 10807: 43,-50 + 11322: -75,-35 + 11551: -21,-35 + 11732: -44,-28 + 11733: -32,-28 + 11734: -32,-28 + 12359: -21,-47 + 12389: -12,-67 + 12390: -12,-66 + 12397: -17,-73 + 12398: -17,-72 + 12399: -17,-71 + 12400: -17,-71 + 12401: -17,-70 + 12402: -17,-70 + 12403: -17,-69 + 12404: -17,-69 + 12405: -17,-68 + 12424: -19,-75 + 12425: -19,-76 + 12453: -16,-82 + 12454: -16,-81 + 12455: -16,-80 + 12473: -23,-81 + 12478: -12,-66 + 12479: -12,-67 + 12577: -17,-79 + 12581: -19,-81 + 12588: -24,-81 + 12598: -12,-78 + 12616: -24,-73 + 12617: -24,-74 + 12618: -24,-75 + 12622: -22,-66 + 12623: -22,-67 + 12627: -25,-65 + 12628: -25,-66 + 12629: -25,-67 + 12630: -25,-67 + 12631: -25,-68 + 12632: -25,-69 + 12706: -38,28 + 12707: -38,27 + 12716: -37,27 + 13385: -41,-67 + 13551: -37,-79 + 13552: -37,-74 + 13563: -30,-78 + 13564: -30,-77 + 13572: -35,-78 + 13573: -35,-77 + 13592: -35,-80 + 14480: -21,23 + 14481: -8,23 + 14482: 6,23 + 15409: -40,5 + 15514: 61,-31 + 15515: 61,-10 + 15525: 58,-27 + 15526: 60,-27 + 15535: 58,-14 + 15536: 60,-14 + 15590: 75,1 + 15643: 80,1 + 15644: 89,1 + 15655: 85,1 + 15723: 99,-3 + 15750: 97,2 + 15874: 79,-4 + 15875: 79,-3 + 15896: 83,-3 + 15897: 83,-4 + 15910: 94,10 + 16111: 87,-4 + 16112: 87,-3 + 16770: -55,1 + 16771: -52,-1 + 16772: -52,-2 + 16773: -52,-2 + 16774: -52,-3 + 16775: -52,-4 + 16776: -52,-7 + 16777: -52,-8 + 16778: -52,-9 + 16779: -52,-12 + 16780: -52,-13 + 16781: -52,-14 + 16782: -52,-15 + 16783: -54,-17 + 16802: -49,4 + 16803: -49,5 + 16816: -54,5 + 16817: -51,5 + 17140: -46,-13 + 17141: -46,-14 + 17142: -46,-15 + 17143: -46,-16 + 17144: -46,-17 + 17168: -74,-7 + 17336: -50,-8 + 17405: -74,-7 + 17722: -79,6 + 17723: -79,5 + 17724: -79,4 + 17733: -76,6 + 17734: -76,5 + 17735: -76,4 + 17758: -76,10 + 17759: -79,10 + 18090: -45,47 + 18106: -53,33 + 18107: -53,34 + 18108: -53,36 + 18109: -53,37 + 18113: -57,33 + 18116: -55,21 + 18121: -52,23 + 18122: -52,24 + 18163: -58,6 + 18368: -63,-7 + 18369: -68,-7 + 18370: -57,-8 + 18393: -53,-37 + 18488: -17,-9 + 18489: -17,-10 + 18521: 15,-9 + 19027: 57,8 + 19028: 59,8 + 19029: 61,8 + 19030: 63,8 + 19479: -14,33 + 19480: -14,32 + 19481: -15,30 + 19482: -14,28 + 19483: -14,27 + 19845: -31,-23 + 20143: 61,29 + 20156: -21,5 + 21389: 21,14 + 21390: 21,15 + 21394: 25,14 + 21395: 25,15 + 21410: 22,16 + 21411: 22,13 + 21450: 23,15 + 21451: 23,14 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 21046: 55,9 + 20881: 55,9 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7694: 73,20 + 7667: 73,20 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNe decals: - 8152: 31,-14 - 8153: 22,-14 + 8117: 31,-14 + 8118: 22,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 15940: 79,6 + 15794: 79,6 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerNe decals: - 3952: 21,63 + 3925: 21,63 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNe decals: - 9837: 22,-31 - 10071: 32,-31 - 10072: 25,-31 - 10077: 26,-25 - 10101: 31,-23 - 10110: 32,-22 - 10189: 24,-46 - 10253: 34,-47 + 9802: 22,-31 + 10036: 32,-31 + 10037: 25,-31 + 10042: 26,-25 + 10066: 31,-23 + 10075: 32,-22 + 10154: 24,-46 + 10218: 34,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNe decals: - 12003: -26,-26 - 12021: -45,-25 - 12022: -41,-26 - 12023: -33,-26 - 12024: -37,-26 - 12025: -37,-26 - 12108: -45,-22 - 12210: -28,-38 - 12211: -23,-38 - 12384: -17,-38 - 16316: -62,-46 - 16317: -63,-45 + 11968: -26,-26 + 11986: -45,-25 + 11987: -41,-26 + 11988: -33,-26 + 11989: -37,-26 + 11990: -37,-26 + 12073: -45,-22 + 12175: -28,-38 + 12176: -23,-38 + 12349: -17,-38 + 16170: -62,-46 + 16171: -63,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNe decals: - 10992: 32,-66 + 10957: 32,-66 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 20495: -22,2 - 20547: 6,-80 - 20577: 6,-64 - 20578: 6,-74 - 20584: 10,-77 - 20585: 10,-74 - 20586: 9,-64 - 20614: 8,-58 - 20642: 14,-30 - 20685: 3,65 - 20695: 59,31 - 20696: 58,32 - 20703: 48,13 - 20715: 41,13 - 20735: 41,9 - 20747: 37,9 - 20750: 37,12 - 20790: 93,23 - 20791: 86,10 - 20792: 74,3 - 20798: 74,19 - 20825: 44,13 - 20969: 54,19 - 20970: 48,19 - 20971: 47,24 - 21027: 60,13 - 21115: 78,10 - 21190: 76,23 - 21232: 71,-3 - 21252: 48,-3 - 21262: 53,-3 - 21269: 58,-3 - 21290: 44,1 - 21300: 41,1 - 21343: 44,9 - 21371: 77,-2 - 21372: 74,-3 - 21587: 28,22 + 20330: -22,2 + 20382: 6,-80 + 20412: 6,-64 + 20413: 6,-74 + 20419: 10,-77 + 20420: 10,-74 + 20421: 9,-64 + 20449: 8,-58 + 20477: 14,-30 + 20520: 3,65 + 20530: 59,31 + 20531: 58,32 + 20538: 48,13 + 20550: 41,13 + 20570: 41,9 + 20582: 37,9 + 20585: 37,12 + 20625: 93,23 + 20626: 86,10 + 20627: 74,3 + 20633: 74,19 + 20660: 44,13 + 20804: 54,19 + 20805: 48,19 + 20806: 47,24 + 20862: 60,13 + 20950: 78,10 + 21025: 76,23 + 21067: 71,-3 + 21087: 48,-3 + 21097: 53,-3 + 21104: 58,-3 + 21125: 44,1 + 21135: 41,1 + 21178: 44,9 + 21206: 77,-2 + 21207: 74,-3 + 21422: 28,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2243: -17,53 - 2263: -15,52 - 2378: -28,38 - 2423: -33,38 - 2811: -2,46 - 2825: -5,28 - 2846: -26,43 - 3489: -28,92 - 3498: -29,96 - 3507: -28,82 - 3518: -11,96 - 3532: -10,92 - 3540: -10,82 - 3580: 8,69 - 3800: 3,58 - 4179: -23,23 - 5171: 36,32 - 6371: 4,-14 - 6439: 14,-15 - 6854: -35,16 - 6855: -34,15 - 6946: -35,19 - 6963: -22,15 - 7104: 24,10 - 7187: 31,2 - 7201: 31,-7 - 8692: 63,-10 - 8696: 57,-10 - 8919: 1,-34 - 8920: 1,-34 - 9208: 2,-64 - 9209: 2,-64 - 9348: 1,-58 - 9349: 1,-58 - 9488: -39,-14 - 10643: 56,-43 - 10644: 56,-43 - 10688: 49,-38 - 10689: 49,-38 - 11295: -58,-34 - 11341: -77,-19 - 11342: -77,-26 - 11868: -37,-51 - 11869: -37,-55 - 11904: -23,-50 - 11919: -33,-52 - 11920: -33,-52 - 13463: -36,-60 - 15401: -8,-69 - 15953: 89,2 - 16607: -39,-6 - 16871: -55,-12 - 16996: -49,-1 - 17676: 7,85 - 17682: 8,82 - 18640: -9,-12 - 18641: -9,-12 - 18642: -9,-12 - 18715: 10,-12 + 2216: -17,53 + 2236: -15,52 + 2351: -28,38 + 2396: -33,38 + 2784: -2,46 + 2798: -5,28 + 2819: -26,43 + 3462: -28,92 + 3471: -29,96 + 3480: -28,82 + 3491: -11,96 + 3505: -10,92 + 3513: -10,82 + 3553: 8,69 + 3773: 3,58 + 4152: -23,23 + 5144: 36,32 + 6344: 4,-14 + 6412: 14,-15 + 6827: -35,16 + 6828: -34,15 + 6919: -35,19 + 6936: -22,15 + 7077: 24,10 + 7160: 31,2 + 7174: 31,-7 + 8657: 63,-10 + 8661: 57,-10 + 8884: 1,-34 + 8885: 1,-34 + 9173: 2,-64 + 9174: 2,-64 + 9313: 1,-58 + 9314: 1,-58 + 9453: -39,-14 + 10608: 56,-43 + 10609: 56,-43 + 10653: 49,-38 + 10654: 49,-38 + 11260: -58,-34 + 11306: -77,-19 + 11307: -77,-26 + 11833: -37,-51 + 11834: -37,-55 + 11869: -23,-50 + 11884: -33,-52 + 11885: -33,-52 + 13428: -36,-60 + 15366: -8,-69 + 15807: 89,2 + 16461: -39,-6 + 16725: -55,-12 + 16850: -49,-1 + 17530: 7,85 + 17536: 8,82 + 18475: -9,-12 + 18476: -9,-12 + 18477: -9,-12 + 18550: 10,-12 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw decals: - 8150: 20,-14 - 8151: 24,-14 + 8115: 20,-14 + 8116: 24,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNw decals: - 3769: -28,65 + 3742: -28,65 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNw decals: - 9838: 20,-31 - 10070: 31,-31 - 10074: 24,-31 - 10078: 24,-25 - 10102: 29,-23 - 10115: 28,-22 - 10188: 20,-46 - 10252: 32,-47 + 9803: 20,-31 + 10035: 31,-31 + 10039: 24,-31 + 10043: 24,-25 + 10067: 29,-23 + 10080: 28,-22 + 10153: 20,-46 + 10217: 32,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNw decals: - 12008: -31,-26 - 12033: -43,-26 - 12034: -43,-26 - 12035: -35,-26 - 12067: -39,-26 - 12109: -47,-22 - 12212: -30,-38 - 12213: -26,-38 - 12385: -21,-38 - 16318: -65,-45 + 11973: -31,-26 + 11998: -43,-26 + 11999: -43,-26 + 12000: -35,-26 + 12032: -39,-26 + 12074: -47,-22 + 12177: -30,-38 + 12178: -26,-38 + 12350: -21,-38 + 16172: -65,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNw decals: - 10991: 26,-66 + 10956: 26,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerNw decals: - 7868: 68,6 + 7841: 68,6 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerNw decals: - 3957: 18,63 + 3930: 18,63 - node: color: '#DAA58BFF' id: BrickTileSteelCornerNw decals: - 4590: 13,39 + 4563: 13,39 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 20502: -24,2 - 20546: 4,-80 - 20575: 4,-74 - 20576: 4,-64 - 20601: 8,-74 - 20622: 3,-58 - 20626: 8,-64 - 20645: 10,-30 - 20665: 12,32 - 20686: 0,65 - 20697: 50,32 - 20698: 49,31 - 20699: 45,24 - 20716: 39,13 - 20736: 39,9 - 20748: 35,9 - 20749: 35,12 - 20793: 72,3 - 20797: 72,19 - 20821: 46,13 - 20822: 43,13 - 20859: 91,23 - 20860: 81,14 - 20861: 80,10 - 20862: 76,10 - 20863: 72,23 - 20968: 50,19 - 21000: 56,19 - 21026: 50,13 - 21049: 50,9 - 21235: 68,-3 - 21267: 50,-3 - 21268: 55,-3 - 21291: 43,1 - 21292: 39,1 - 21342: 43,9 - 21373: 73,-3 - 21374: 76,-2 - 21404: -20,-24 - 21420: 45,-3 - 21438: 46,-7 - 21590: 20,22 + 20337: -24,2 + 20381: 4,-80 + 20410: 4,-74 + 20411: 4,-64 + 20436: 8,-74 + 20457: 3,-58 + 20461: 8,-64 + 20480: 10,-30 + 20500: 12,32 + 20521: 0,65 + 20532: 50,32 + 20533: 49,31 + 20534: 45,24 + 20551: 39,13 + 20571: 39,9 + 20583: 35,9 + 20584: 35,12 + 20628: 72,3 + 20632: 72,19 + 20656: 46,13 + 20657: 43,13 + 20694: 91,23 + 20695: 81,14 + 20696: 80,10 + 20697: 76,10 + 20698: 72,23 + 20803: 50,19 + 20835: 56,19 + 20861: 50,13 + 20884: 50,9 + 21070: 68,-3 + 21102: 50,-3 + 21103: 55,-3 + 21126: 43,1 + 21127: 39,1 + 21177: 43,9 + 21208: 73,-3 + 21209: 76,-2 + 21239: -20,-24 + 21255: 45,-3 + 21273: 46,-7 + 21425: 20,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2241: -23,52 - 2242: -21,53 - 2286: -24,45 - 2344: -28,39 - 2407: -30,33 - 2422: -34,38 - 2782: -3,51 - 2812: -5,46 - 2827: -7,28 - 3343: -32,69 - 3451: -32,92 - 3452: -32,82 - 3499: -31,96 - 3519: -13,96 - 3533: -14,92 - 3541: -14,82 - 3682: 4,82 - 5152: 29,32 - 5593: -21,-15 - 5830: 7,-4 - 6290: -6,-14 - 6440: 12,-15 - 6441: 12,-15 - 6842: -44,21 - 6856: -37,16 - 6857: -37,16 - 6858: -38,15 - 6934: -37,16 - 6947: -37,19 - 6971: -29,15 - 6972: -29,15 - 7105: 20,10 - 7182: 25,2 - 7193: 25,-7 - 7347: 28,12 - 8397: 38,-19 - 8695: 61,-10 - 8701: 55,-10 - 8921: -3,-34 - 9350: -3,-58 - 9351: -3,-58 - 9365: -3,-58 - 9680: -11,-64 - 10642: 54,-43 - 10686: 43,-38 - 10687: 43,-38 - 11340: -78,-19 - 11348: -78,-26 - 11349: -78,-23 - 11867: -42,-51 - 11874: -39,-55 - 11903: -26,-50 - 11921: -35,-52 - 11922: -35,-52 - 13464: -38,-60 - 14442: -45,15 - 15402: -1,-69 - 15748: 76,2 - 16609: -40,-6 - 16843: -61,-12 - 16970: -61,-1 - 16998: -51,-1 - 17677: 5,85 - 18712: 6,-12 - 20272: 61,26 + 2214: -23,52 + 2215: -21,53 + 2259: -24,45 + 2317: -28,39 + 2380: -30,33 + 2395: -34,38 + 2755: -3,51 + 2785: -5,46 + 2800: -7,28 + 3316: -32,69 + 3424: -32,92 + 3425: -32,82 + 3472: -31,96 + 3492: -13,96 + 3506: -14,92 + 3514: -14,82 + 3655: 4,82 + 5125: 29,32 + 5566: -21,-15 + 5803: 7,-4 + 6263: -6,-14 + 6413: 12,-15 + 6414: 12,-15 + 6815: -44,21 + 6829: -37,16 + 6830: -37,16 + 6831: -38,15 + 6907: -37,16 + 6920: -37,19 + 6944: -29,15 + 6945: -29,15 + 7078: 20,10 + 7155: 25,2 + 7166: 25,-7 + 7320: 28,12 + 8362: 38,-19 + 8660: 61,-10 + 8666: 55,-10 + 8886: -3,-34 + 9315: -3,-58 + 9316: -3,-58 + 9330: -3,-58 + 9645: -11,-64 + 10607: 54,-43 + 10651: 43,-38 + 10652: 43,-38 + 11305: -78,-19 + 11313: -78,-26 + 11314: -78,-23 + 11832: -42,-51 + 11839: -39,-55 + 11868: -26,-50 + 11886: -35,-52 + 11887: -35,-52 + 13429: -38,-60 + 14407: -45,15 + 15367: -1,-69 + 15602: 76,2 + 16463: -40,-6 + 16697: -61,-12 + 16824: -61,-1 + 16852: -51,-1 + 17531: 5,85 + 18547: 6,-12 + 20107: 61,26 - node: cleanable: True color: '#FFFFFFFF' @@ -5965,150 +5967,150 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSe decals: - 8154: 22,-16 + 8119: 22,-16 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 15927: 79,4 + 15781: 79,4 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSe decals: - 9840: 22,-32 - 10068: 32,-32 - 10069: 32,-32 - 10075: 25,-32 - 10089: 26,-26 - 10198: 24,-49 - 10255: 34,-53 + 9805: 22,-32 + 10033: 32,-32 + 10034: 32,-32 + 10040: 25,-32 + 10054: 26,-26 + 10163: 24,-49 + 10220: 34,-53 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSe decals: - 11995: -26,-32 - 12029: -33,-30 - 12030: -37,-30 - 12031: -41,-30 - 12032: -45,-31 - 12110: -45,-23 - 12145: -24,-47 - 12214: -28,-42 - 12215: -23,-42 + 11960: -26,-32 + 11994: -33,-30 + 11995: -37,-30 + 11996: -41,-30 + 11997: -45,-31 + 12075: -45,-23 + 12110: -24,-47 + 12179: -28,-42 + 12180: -23,-42 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSe decals: - 10990: 32,-70 + 10955: 32,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSe decals: - 7826: 59,3 - 7827: 63,3 - 7828: 67,3 - 7847: 70,5 - 19457: 67,4 + 7799: 59,3 + 7800: 63,3 + 7801: 67,3 + 7820: 70,5 + 19292: 67,4 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSe decals: - 3981: 21,61 + 3954: 21,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 20497: -22,0 - 20508: -46,8 - 20552: 6,-82 - 20553: 10,-78 - 20554: 10,-75 - 20555: 6,-72 - 20556: 9,-66 - 20557: 8,-62 - 20558: 6,-78 - 20644: 14,-32 - 20666: 13,30 - 20700: 48,15 - 20717: 41,11 - 20751: 37,11 - 20802: 76,21 - 20823: 44,11 - 20857: 86,9 - 20858: 93,12 - 20919: 59,21 - 20998: 57,15 - 21011: 54,15 - 21028: 60,11 - 21047: 55,3 - 21114: 78,8 - 21143: 74,-1 - 21144: 74,5 - 21241: 71,-5 - 21253: 48,-5 - 21271: 53,-5 - 21272: 58,-5 - 21286: 44,-1 - 21289: 41,-1 - 21341: 44,7 - 21379: 74,-5 - 21386: 77,-4 - 21406: -18,-28 - 21435: 51,-9 - 21589: 28,21 + 20332: -22,0 + 20343: -46,8 + 20387: 6,-82 + 20388: 10,-78 + 20389: 10,-75 + 20390: 6,-72 + 20391: 9,-66 + 20392: 8,-62 + 20393: 6,-78 + 20479: 14,-32 + 20501: 13,30 + 20535: 48,15 + 20552: 41,11 + 20586: 37,11 + 20637: 76,21 + 20658: 44,11 + 20692: 86,9 + 20693: 93,12 + 20754: 59,21 + 20833: 57,15 + 20846: 54,15 + 20863: 60,11 + 20882: 55,3 + 20949: 78,8 + 20978: 74,-1 + 20979: 74,5 + 21076: 71,-5 + 21088: 48,-5 + 21106: 53,-5 + 21107: 58,-5 + 21121: 44,-1 + 21124: 41,-1 + 21176: 44,7 + 21214: 74,-5 + 21221: 77,-4 + 21241: -18,-28 + 21270: 51,-9 + 21424: 28,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2262: -17,55 - 2346: -25,29 - 2420: -33,32 - 2815: -2,44 - 2826: -5,26 - 3503: -28,88 - 3511: -28,79 - 3528: -10,88 - 3545: -10,79 - 3804: 3,56 - 5824: 14,-6 - 6109: -9,-17 - 6350: 18,-21 - 6368: 4,-17 - 6404: 10,-17 - 6852: -35,8 - 6853: -34,9 - 6945: -35,18 - 6962: -22,8 - 7101: 24,8 - 7204: 31,-8 - 7206: 31,-6 - 8661: 57,-31 - 8670: 63,-31 - 8671: 63,-31 - 8916: 1,-36 - 9218: -8,-66 - 9282: -3,-82 - 9344: 1,-62 - 9345: 1,-62 - 10646: 56,-44 - 10683: 49,-45 - 11293: -58,-39 - 11294: -58,-39 - 11333: -77,-32 - 11350: -77,-24 - 11870: -37,-56 - 11871: -37,-56 - 11889: -41,-56 - 11913: -23,-54 - 11924: -33,-54 - 15399: -8,-71 - 16606: 8,67 - 16608: -39,-7 - 16867: -55,-15 - 16999: -49,-4 - 17693: 8,74 - 20209: -16,-1 - 20265: 70,21 + 2235: -17,55 + 2319: -25,29 + 2393: -33,32 + 2788: -2,44 + 2799: -5,26 + 3476: -28,88 + 3484: -28,79 + 3501: -10,88 + 3518: -10,79 + 3777: 3,56 + 5797: 14,-6 + 6082: -9,-17 + 6323: 18,-21 + 6341: 4,-17 + 6377: 10,-17 + 6825: -35,8 + 6826: -34,9 + 6918: -35,18 + 6935: -22,8 + 7074: 24,8 + 7177: 31,-8 + 7179: 31,-6 + 8626: 57,-31 + 8635: 63,-31 + 8636: 63,-31 + 8881: 1,-36 + 9183: -8,-66 + 9247: -3,-82 + 9309: 1,-62 + 9310: 1,-62 + 10611: 56,-44 + 10648: 49,-45 + 11258: -58,-39 + 11259: -58,-39 + 11298: -77,-32 + 11315: -77,-24 + 11835: -37,-56 + 11836: -37,-56 + 11854: -41,-56 + 11878: -23,-54 + 11889: -33,-54 + 15364: -8,-71 + 16460: 8,67 + 16462: -39,-7 + 16721: -55,-15 + 16853: -49,-4 + 17547: 8,74 + 20044: -16,-1 + 20100: 70,21 - node: cleanable: True color: '#FFFFFFFF' @@ -6119,233 +6121,233 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSw decals: - 8148: 20,-16 - 8149: 24,-18 + 8113: 20,-16 + 8114: 24,-18 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw decals: - 3778: -26,59 - 10710: 69,-50 - 10711: 69,-50 + 3751: -26,59 + 10675: 69,-50 + 10676: 69,-50 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerSw decals: - 3954: 18,62 + 3927: 18,62 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSw decals: - 9839: 20,-32 - 10067: 31,-32 - 10073: 24,-32 - 10088: 24,-26 - 10199: 20,-49 - 10254: 32,-53 - 19553: 5,62 + 9804: 20,-32 + 10032: 31,-32 + 10038: 24,-32 + 10053: 24,-26 + 10164: 20,-49 + 10219: 32,-53 + 19388: 5,62 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSw decals: - 12013: -31,-32 - 12026: -43,-30 - 12027: -39,-30 - 12028: -35,-30 - 12144: -29,-47 - 12216: -26,-42 - 12217: -30,-42 - 16311: -66,-48 + 11978: -31,-32 + 11991: -43,-30 + 11992: -39,-30 + 11993: -35,-30 + 12109: -29,-47 + 12181: -26,-42 + 12182: -30,-42 + 16165: -66,-48 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSw decals: - 10989: 26,-70 + 10954: 26,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSw decals: - 7823: 57,3 - 7824: 61,3 - 7825: 65,3 + 7796: 57,3 + 7797: 61,3 + 7798: 65,3 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSw decals: - 3956: 19,61 + 3929: 19,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 20579: 4,-78 - 20580: 4,-72 - 20581: 3,-62 - 20582: 8,-66 - 20583: 8,-78 - 20643: 10,-32 - 20687: 0,60 - 20701: 45,15 - 20702: 39,3 - 20718: 39,11 - 20752: 35,11 - 20753: 35,8 - 20824: 43,11 - 20910: 49,21 - 20999: 56,15 - 21012: 50,15 - 21013: 50,11 - 21048: 50,3 - 21102: 81,12 - 21113: 76,8 - 21142: 72,5 - 21181: 72,21 - 21231: 68,-5 - 21263: 50,-5 - 21264: 55,-5 - 21280: 46,-1 - 21287: 43,-1 - 21288: 39,-1 - 21340: 43,7 - 21378: 73,-5 - 21405: -20,-28 - 21419: 45,-5 - 21436: 46,-9 - 21588: 20,21 + 20414: 4,-78 + 20415: 4,-72 + 20416: 3,-62 + 20417: 8,-66 + 20418: 8,-78 + 20478: 10,-32 + 20522: 0,60 + 20536: 45,15 + 20537: 39,3 + 20553: 39,11 + 20587: 35,11 + 20588: 35,8 + 20659: 43,11 + 20745: 49,21 + 20834: 56,15 + 20847: 50,15 + 20848: 50,11 + 20883: 50,3 + 20937: 81,12 + 20948: 76,8 + 20977: 72,5 + 21016: 72,21 + 21066: 68,-5 + 21098: 50,-5 + 21099: 55,-5 + 21115: 46,-1 + 21122: 43,-1 + 21123: 39,-1 + 21175: 43,7 + 21213: 73,-5 + 21240: -20,-28 + 21254: 45,-5 + 21271: 46,-9 + 21423: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2290: -24,40 - 2319: -23,28 - 2347: -27,29 - 2408: -30,37 - 2421: -34,32 - 2813: -5,45 - 2814: -4,44 - 2828: -7,26 - 3342: -32,67 - 3504: -32,88 - 3510: -32,79 - 3535: -14,88 - 3542: -14,79 - 3685: 4,79 - 5159: 29,30 - 5594: -21,-18 - 5828: 7,-6 - 6294: -6,-17 - 6407: 6,-17 - 6408: 6,-17 - 6472: -20,-21 - 6846: -44,8 - 6850: -37,8 - 6851: -38,9 - 6948: -37,18 - 6983: -29,8 - 7100: 20,8 - 8410: 38,-21 - 8659: 55,-31 - 8660: 55,-31 - 8668: 61,-31 - 8917: -3,-36 - 8918: -3,-36 - 9217: -1,-66 - 9276: -9,-82 - 9283: 1,-82 - 9284: 1,-82 - 9340: -3,-62 - 9495: -42,-18 - 10684: 43,-45 - 10685: 43,-45 - 11283: -60,-39 - 11334: -78,-32 - 11335: -78,-28 - 11336: -78,-24 - 11337: -78,-21 - 11888: -42,-56 - 11902: -26,-54 - 11923: -35,-54 - 14450: -45,11 - 15400: -1,-71 - 15436: -43,4 - 15749: 76,0 - 16610: -40,-7 - 16854: -61,-15 - 16973: -61,-4 - 20264: 61,21 + 2263: -24,40 + 2292: -23,28 + 2320: -27,29 + 2381: -30,37 + 2394: -34,32 + 2786: -5,45 + 2787: -4,44 + 2801: -7,26 + 3315: -32,67 + 3477: -32,88 + 3483: -32,79 + 3508: -14,88 + 3515: -14,79 + 3658: 4,79 + 5132: 29,30 + 5567: -21,-18 + 5801: 7,-6 + 6267: -6,-17 + 6380: 6,-17 + 6381: 6,-17 + 6445: -20,-21 + 6819: -44,8 + 6823: -37,8 + 6824: -38,9 + 6921: -37,18 + 6956: -29,8 + 7073: 20,8 + 8375: 38,-21 + 8624: 55,-31 + 8625: 55,-31 + 8633: 61,-31 + 8882: -3,-36 + 8883: -3,-36 + 9182: -1,-66 + 9241: -9,-82 + 9248: 1,-82 + 9249: 1,-82 + 9305: -3,-62 + 9460: -42,-18 + 10649: 43,-45 + 10650: 43,-45 + 11248: -60,-39 + 11299: -78,-32 + 11300: -78,-28 + 11301: -78,-24 + 11302: -78,-21 + 11853: -42,-56 + 11867: -26,-54 + 11888: -35,-54 + 14415: -45,11 + 15365: -1,-71 + 15401: -43,4 + 15603: 76,0 + 16464: -40,-7 + 16708: -61,-15 + 16827: -61,-4 + 20099: 61,21 - node: color: '#00FFFFFF' id: BrickTileSteelEndE decals: - 3762: -24,65 - 3791: -24,59 - 3792: -24,61 - 3793: -24,63 - 10281: 38,-26 + 3735: -24,65 + 3764: -24,59 + 3765: -24,61 + 3766: -24,63 + 10246: 38,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelEndE decals: - 10905: 45,-64 - 10971: 42,-75 - 10972: 39,-75 + 10870: 45,-64 + 10936: 42,-75 + 10937: 39,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndE decals: - 19481: 70,9 + 19316: 70,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE decals: - 21197: 76,25 + 21032: 76,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 7353: 33,12 + 7326: 33,12 - node: color: '#00FFFFFF' id: BrickTileSteelEndN decals: - 10709: 69,-49 + 10674: 69,-49 - node: color: '#A9DA8BFF' id: BrickTileSteelEndN decals: - 3016: -39,50 - 3032: -39,46 + 2989: -39,50 + 3005: -39,46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndN decals: - 19479: 58,9 - 19480: 66,9 + 19314: 58,9 + 19315: 66,9 - node: color: '#00C9DAFF' id: BrickTileSteelEndS decals: - 8166: 27,-18 - 8167: 29,-18 - 8168: 31,-18 - 8169: 31,-18 + 8131: 27,-18 + 8132: 29,-18 + 8133: 31,-18 + 8134: 31,-18 - node: color: '#A9DA8BFF' id: BrickTileSteelEndS decals: - 3017: -39,48 - 3037: -39,45 + 2990: -39,48 + 3010: -39,45 - node: color: '#B18BDAFF' id: BrickTileSteelEndS decals: - 12354: -21,-44 - 12355: -17,-44 + 12319: -21,-44 + 12320: -17,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 7338: 28,8 - 12588: -21,-78 + 7311: 28,8 + 12553: -21,-78 - node: cleanable: True color: '#FFFFFFFF' @@ -6356,2123 +6358,2123 @@ entities: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 10289: 34,-26 - 10411: 12,-47 - 15928: 76,6 - 15929: 76,4 + 10254: 34,-26 + 10376: 12,-47 + 15782: 76,6 + 15783: 76,4 - node: color: '#B18BDAFF' id: BrickTileSteelEndW decals: - 16309: -67,-46 + 16163: -67,-46 - node: color: '#CEDA8BFF' id: BrickTileSteelEndW decals: - 10973: 38,-75 - 10974: 41,-75 + 10938: 38,-75 + 10939: 41,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndW decals: - 19482: 68,9 + 19317: 68,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndW decals: - 21198: 74,25 + 21033: 74,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 2379: -28,39 - 6105: -16,-17 - 6106: -16,-17 - 12589: -19,-78 - 18639: -16,-12 + 2352: -28,39 + 6078: -16,-17 + 6079: -16,-17 + 12554: -19,-78 + 18474: -16,-12 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe decals: - 8183: 25,-14 - 8186: 22,-15 - 8187: 22,-15 - 8199: 31,-16 + 8148: 25,-14 + 8151: 22,-15 + 8152: 22,-15 + 8164: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNe decals: - 3773: -25,65 - 3779: -26,59 - 3780: -26,61 - 3781: -26,63 - 10285: 37,-26 - 10712: 69,-50 + 3746: -25,65 + 3752: -26,59 + 3753: -26,61 + 3754: -26,63 + 10250: 37,-26 + 10677: 69,-50 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNe decals: - 10116: 32,-23 + 10081: 32,-23 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNe decals: - 12047: -42,-26 - 12048: -38,-26 - 12049: -38,-26 - 12050: -34,-26 - 12051: -34,-26 - 12066: -37,-27 - 12069: -41,-27 - 12075: -37,-27 - 12077: -37,-27 - 12078: -33,-27 - 12090: -45,-27 - 12093: -46,-25 - 12160: -29,-44 - 12229: -29,-38 - 12230: -24,-38 - 12390: -17,-40 - 16322: -63,-46 - 16323: -62,-48 - 19979: -6,-41 - 19994: -6,-40 - 20002: -29,-26 + 12012: -42,-26 + 12013: -38,-26 + 12014: -38,-26 + 12015: -34,-26 + 12016: -34,-26 + 12031: -37,-27 + 12034: -41,-27 + 12040: -37,-27 + 12042: -37,-27 + 12043: -33,-27 + 12055: -45,-27 + 12058: -46,-25 + 12125: -29,-44 + 12194: -29,-38 + 12195: -24,-38 + 12355: -17,-40 + 16176: -63,-46 + 16177: -62,-48 + 19814: -6,-41 + 19829: -6,-40 + 19837: -29,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerNe decals: - 11008: 32,-68 + 10973: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNe decals: - 7871: 66,5 - 7872: 69,6 - 7881: 58,5 - 7882: 62,5 + 7844: 66,5 + 7845: 69,6 + 7854: 58,5 + 7855: 62,5 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNe decals: - 20501: -23,2 - 20549: 5,-80 - 20559: 6,-77 - 20560: 6,-75 - 20564: 6,-65 - 20565: 5,-64 - 20616: 7,-58 - 20635: 5,-74 - 20648: 11,-30 - 20655: 14,-31 - 20658: 13,-30 - 20680: 3,64 - 20692: 3,60 - 20739: 40,9 - 20808: 74,9 - 20817: 48,12 - 20818: 47,13 - 20819: 47,13 - 20828: 44,12 - 20842: 48,8 - 20889: 58,31 - 20890: 59,25 - 20935: 51,21 - 20936: 54,21 - 20937: 50,28 - 20938: 55,28 - 20986: 48,16 - 20987: 47,19 - 20991: 47,23 - 21003: 57,19 - 21007: 54,17 - 21023: 52,19 - 21031: 60,12 - 21035: 51,13 - 21044: 48,4 - 21076: 93,21 - 21084: 93,13 - 21107: 83,10 - 21119: 78,9 - 21180: 73,19 - 21189: 76,22 - 21192: 75,23 - 21193: 75,25 - 21202: 93,17 - 21206: 92,23 - 21209: 73,3 - 21210: 74,1 - 21225: 70,-1 - 21229: 67,-1 - 21238: 69,-3 - 21242: 71,-4 - 21251: 47,-3 - 21275: 52,-3 - 21295: 44,0 - 21296: 40,1 - 21322: 36,6 - 21324: 37,4 - 21331: 36,9 - 21333: 37,8 - 21337: 44,8 - 21345: 53,9 - 21347: 55,5 - 21381: 74,-4 - 21448: 56,-3 - 21451: 48,1 - 21477: 58,1 - 21478: 62,1 - 21479: 66,1 - 21593: 21,22 + 20336: -23,2 + 20384: 5,-80 + 20394: 6,-77 + 20395: 6,-75 + 20399: 6,-65 + 20400: 5,-64 + 20451: 7,-58 + 20470: 5,-74 + 20483: 11,-30 + 20490: 14,-31 + 20493: 13,-30 + 20515: 3,64 + 20527: 3,60 + 20574: 40,9 + 20643: 74,9 + 20652: 48,12 + 20653: 47,13 + 20654: 47,13 + 20663: 44,12 + 20677: 48,8 + 20724: 58,31 + 20725: 59,25 + 20770: 51,21 + 20771: 54,21 + 20772: 50,28 + 20773: 55,28 + 20821: 48,16 + 20822: 47,19 + 20826: 47,23 + 20838: 57,19 + 20842: 54,17 + 20858: 52,19 + 20866: 60,12 + 20870: 51,13 + 20879: 48,4 + 20911: 93,21 + 20919: 93,13 + 20942: 83,10 + 20954: 78,9 + 21015: 73,19 + 21024: 76,22 + 21027: 75,23 + 21028: 75,25 + 21037: 93,17 + 21041: 92,23 + 21044: 73,3 + 21045: 74,1 + 21060: 70,-1 + 21064: 67,-1 + 21073: 69,-3 + 21077: 71,-4 + 21086: 47,-3 + 21110: 52,-3 + 21130: 44,0 + 21131: 40,1 + 21157: 36,6 + 21159: 37,4 + 21166: 36,9 + 21168: 37,8 + 21172: 44,8 + 21180: 53,9 + 21182: 55,5 + 21216: 74,-4 + 21283: 56,-3 + 21286: 48,1 + 21312: 58,1 + 21313: 62,1 + 21314: 66,1 + 21428: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2248: -18,53 - 2249: -18,53 - 2269: -17,52 - 2272: -15,50 - 2273: -15,48 - 2277: -15,46 - 2381: -29,38 - 2786: -3,48 - 2787: -6,50 - 2788: -12,50 - 2823: -4,46 - 2851: -30,43 - 2857: -26,41 - 2862: -32,43 - 3091: -17,58 - 3440: -11,69 - 3469: -3,58 - 3485: -29,69 - 3486: -29,77 - 3487: -29,84 - 3490: -29,92 - 3501: -30,96 - 3506: -29,82 - 3521: -12,96 - 3522: -11,92 - 3523: -11,84 - 3524: -11,77 - 3539: -11,82 - 3582: 8,68 - 3664: 7,69 - 3799: 2,58 - 3806: 3,57 - 5149: 31,28 - 5173: 36,30 - 5465: 18,-3 - 5479: -25,6 - 5508: -31,6 - 5517: -42,23 - 5573: -18,-1 - 5648: 11,-8 - 5658: -18,-8 - 5681: 8,-8 - 5818: 12,-4 - 5841: -1,-8 - 5842: -10,-8 - 6129: -11,-19 - 6155: 18,-10 - 6202: -18,-19 - 6300: -4,-16 - 6307: -4,-19 - 6351: 18,-20 - 6374: 2,-14 - 6412: 10,-16 - 6430: 14,-19 - 6445: 8,-19 - 6833: -36,6 - 6834: -36,6 - 6936: -36,16 - 6938: -35,15 - 6966: -26,15 - 6970: -27,15 - 6990: -22,12 - 7063: 18,12 - 7064: 18,18 - 7067: 18,6 - 7109: 22,10 - 7110: 22,6 - 7161: 22,-10 - 7188: 31,1 - 7250: 29,6 - 7255: 32,4 - 8050: 81,-22 - 8302: 31,-12 - 8337: 41,-8 - 8338: 41,-8 - 8349: 33,-8 - 8392: 39,-19 - 8393: 41,-19 - 8394: 41,-19 - 8416: 41,-21 - 8451: 47,-19 - 8472: 52,-19 - 8473: 52,-19 - 8479: 53,-21 - 8525: 56,-20 - 8705: 60,-31 - 8706: 63,-22 - 8707: 63,-19 - 8880: 0,-25 - 8923: 0,-34 - 8986: -8,-28 - 8989: -4,-27 - 8998: -15,-23 - 8999: -15,-23 - 9000: -8,-23 - 9001: -8,-23 - 9020: -16,-27 - 9206: 0,-64 - 9207: 0,-64 - 9214: 2,-66 - 9215: 2,-66 - 9253: -10,-64 - 9325: -9,-69 - 9326: -9,-69 - 9327: -9,-75 - 9363: 0,-58 - 9496: -39,-16 - 9613: 1,-35 - 9673: 0,-39 - 10401: 0,-44 - 10431: 0,-51 - 10617: 2,-75 - 10630: 1,-60 - 10703: 49,-42 - 11296: -59,-34 - 11301: -59,-41 - 11302: -59,-41 - 11345: -77,-31 - 11469: -15,-30 - 11892: -37,-53 - 11906: -24,-50 - 11907: -24,-50 - 13456: -37,-60 - 14991: 16,24 - 14994: 8,24 - 14995: 5,24 - 14998: 0,24 - 14999: -9,24 - 15011: -18,24 - 15446: -41,6 - 15944: 78,2 - 16848: -58,-12 - 16935: -58,-6 - 16995: -52,2 - 17010: -57,-9 - 17011: -57,-7 - 17679: 6,85 - 17683: 7,82 - 17685: 8,81 - 17690: 8,76 - 18650: -14,-12 - 18651: -10,-12 - 18717: 8,-12 - 20090: -24,13 - 20277: 67,26 - 20278: 62,26 - 20485: -18,4 - 20488: -18,-1 - 21543: 18,15 + 2221: -18,53 + 2222: -18,53 + 2242: -17,52 + 2245: -15,50 + 2246: -15,48 + 2250: -15,46 + 2354: -29,38 + 2759: -3,48 + 2760: -6,50 + 2761: -12,50 + 2796: -4,46 + 2824: -30,43 + 2830: -26,41 + 2835: -32,43 + 3064: -17,58 + 3413: -11,69 + 3442: -3,58 + 3458: -29,69 + 3459: -29,77 + 3460: -29,84 + 3463: -29,92 + 3474: -30,96 + 3479: -29,82 + 3494: -12,96 + 3495: -11,92 + 3496: -11,84 + 3497: -11,77 + 3512: -11,82 + 3555: 8,68 + 3637: 7,69 + 3772: 2,58 + 3779: 3,57 + 5122: 31,28 + 5146: 36,30 + 5438: 18,-3 + 5452: -25,6 + 5481: -31,6 + 5490: -42,23 + 5546: -18,-1 + 5621: 11,-8 + 5631: -18,-8 + 5654: 8,-8 + 5791: 12,-4 + 5814: -1,-8 + 5815: -10,-8 + 6102: -11,-19 + 6128: 18,-10 + 6175: -18,-19 + 6273: -4,-16 + 6280: -4,-19 + 6324: 18,-20 + 6347: 2,-14 + 6385: 10,-16 + 6403: 14,-19 + 6418: 8,-19 + 6806: -36,6 + 6807: -36,6 + 6909: -36,16 + 6911: -35,15 + 6939: -26,15 + 6943: -27,15 + 6963: -22,12 + 7036: 18,12 + 7037: 18,18 + 7040: 18,6 + 7082: 22,10 + 7083: 22,6 + 7134: 22,-10 + 7161: 31,1 + 7223: 29,6 + 7228: 32,4 + 8017: 81,-22 + 8267: 31,-12 + 8302: 41,-8 + 8303: 41,-8 + 8314: 33,-8 + 8357: 39,-19 + 8358: 41,-19 + 8359: 41,-19 + 8381: 41,-21 + 8416: 47,-19 + 8437: 52,-19 + 8438: 52,-19 + 8444: 53,-21 + 8490: 56,-20 + 8670: 60,-31 + 8671: 63,-22 + 8672: 63,-19 + 8845: 0,-25 + 8888: 0,-34 + 8951: -8,-28 + 8954: -4,-27 + 8963: -15,-23 + 8964: -15,-23 + 8965: -8,-23 + 8966: -8,-23 + 8985: -16,-27 + 9171: 0,-64 + 9172: 0,-64 + 9179: 2,-66 + 9180: 2,-66 + 9218: -10,-64 + 9290: -9,-69 + 9291: -9,-69 + 9292: -9,-75 + 9328: 0,-58 + 9461: -39,-16 + 9578: 1,-35 + 9638: 0,-39 + 10366: 0,-44 + 10396: 0,-51 + 10582: 2,-75 + 10595: 1,-60 + 10668: 49,-42 + 11261: -59,-34 + 11266: -59,-41 + 11267: -59,-41 + 11310: -77,-31 + 11434: -15,-30 + 11857: -37,-53 + 11871: -24,-50 + 11872: -24,-50 + 13421: -37,-60 + 14956: 16,24 + 14959: 8,24 + 14960: 5,24 + 14963: 0,24 + 14964: -9,24 + 14976: -18,24 + 15411: -41,6 + 15798: 78,2 + 16702: -58,-12 + 16789: -58,-6 + 16849: -52,2 + 16864: -57,-9 + 16865: -57,-7 + 17533: 6,85 + 17537: 7,82 + 17539: 8,81 + 17544: 8,76 + 18485: -14,-12 + 18486: -10,-12 + 18552: 8,-12 + 19925: -24,13 + 20112: 67,26 + 20113: 62,26 + 20320: -18,4 + 20323: -18,-1 + 21378: 18,15 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw decals: - 8182: 25,-14 - 8185: 24,-15 + 8147: 25,-14 + 8150: 24,-15 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 3772: -25,65 - 10284: 37,-26 - 15935: 77,4 + 3745: -25,65 + 10249: 37,-26 + 15789: 77,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNw decals: - 10250: 32,-51 - 10251: 32,-49 - 18628: 17,-31 + 10215: 32,-51 + 10216: 32,-49 + 18463: 17,-31 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNw decals: - 12006: -29,-26 - 12007: -29,-26 - 12019: -31,-27 - 12020: -31,-27 - 12044: -42,-26 - 12045: -38,-26 - 12046: -38,-26 - 12064: -39,-27 - 12065: -35,-27 - 12074: -43,-27 - 12083: -34,-26 - 12092: -46,-25 - 12105: -48,-28 - 12107: -48,-31 - 12111: -47,-23 - 12161: -24,-44 - 12222: -30,-39 - 12227: -29,-38 - 12228: -24,-38 - 16321: -65,-46 - 19978: -9,-41 - 19993: -9,-40 + 11971: -29,-26 + 11972: -29,-26 + 11984: -31,-27 + 11985: -31,-27 + 12009: -42,-26 + 12010: -38,-26 + 12011: -38,-26 + 12029: -39,-27 + 12030: -35,-27 + 12039: -43,-27 + 12048: -34,-26 + 12057: -46,-25 + 12070: -48,-28 + 12072: -48,-31 + 12076: -47,-23 + 12126: -24,-44 + 12187: -30,-39 + 12192: -29,-38 + 12193: -24,-38 + 16175: -65,-46 + 19813: -9,-41 + 19828: -9,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNw decals: - 7869: 69,6 - 7870: 66,5 - 7879: 58,5 - 7880: 62,5 - 19506: 68,5 + 7842: 69,6 + 7843: 66,5 + 7852: 58,5 + 7853: 62,5 + 19341: 68,5 - node: color: '#DAA58BFF' id: BrickTileSteelInnerNw decals: - 4397: 7,31 - 4620: 13,36 + 4370: 7,31 + 4593: 13,36 - node: color: '#DABC8BFF' id: BrickTileSteelInnerNw decals: - 9659: 5,-32 + 9624: 5,-32 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw decals: - 20500: -23,2 - 20548: 5,-80 - 20566: 5,-64 - 20573: 4,-66 - 20574: 4,-75 - 20603: 8,-75 - 20615: 7,-58 - 20617: 3,-60 - 20628: 8,-65 - 20629: 8,-65 - 20634: 5,-74 - 20647: 11,-30 - 20657: 13,-30 - 20668: 12,30 - 20669: 13,32 - 20678: 0,61 - 20738: 40,9 - 20740: 39,8 - 20794: 73,3 - 20820: 47,13 - 20833: 46,12 - 20843: 46,8 - 20900: 50,31 - 20908: 49,23 - 20933: 54,21 - 20934: 57,21 - 20939: 53,28 - 20940: 58,28 - 20988: 45,20 - 21002: 57,19 - 21006: 56,17 - 21021: 50,16 - 21022: 52,19 - 21032: 50,12 - 21034: 51,13 - 21075: 91,21 - 21083: 91,14 - 21105: 83,10 - 21108: 80,9 - 21118: 76,9 - 21146: 72,-1 - 21170: 71,13 - 21171: 72,13 - 21178: 72,18 - 21179: 73,19 - 21191: 75,23 - 21194: 75,25 - 21204: 91,21 - 21205: 92,23 - 21207: 72,6 - 21213: 72,1 - 21228: 69,-1 - 21239: 69,-3 - 21250: 47,-3 - 21274: 52,-3 - 21283: 46,0 - 21297: 40,1 - 21319: 34,4 - 21320: 36,6 - 21325: 39,4 - 21328: 39,6 - 21330: 36,9 - 21344: 53,9 - 21357: 50,8 - 21362: 50,4 - 21376: 73,-4 - 21389: 76,-4 - 21408: -20,-26 - 21427: 51,-7 - 21439: 46,-8 - 21449: 56,-3 - 21450: 46,5 - 21474: 58,1 - 21475: 62,1 - 21476: 66,1 - 21592: 21,22 + 20335: -23,2 + 20383: 5,-80 + 20401: 5,-64 + 20408: 4,-66 + 20409: 4,-75 + 20438: 8,-75 + 20450: 7,-58 + 20452: 3,-60 + 20463: 8,-65 + 20464: 8,-65 + 20469: 5,-74 + 20482: 11,-30 + 20492: 13,-30 + 20503: 12,30 + 20504: 13,32 + 20513: 0,61 + 20573: 40,9 + 20575: 39,8 + 20629: 73,3 + 20655: 47,13 + 20668: 46,12 + 20678: 46,8 + 20735: 50,31 + 20743: 49,23 + 20768: 54,21 + 20769: 57,21 + 20774: 53,28 + 20775: 58,28 + 20823: 45,20 + 20837: 57,19 + 20841: 56,17 + 20856: 50,16 + 20857: 52,19 + 20867: 50,12 + 20869: 51,13 + 20910: 91,21 + 20918: 91,14 + 20940: 83,10 + 20943: 80,9 + 20953: 76,9 + 20981: 72,-1 + 21005: 71,13 + 21006: 72,13 + 21013: 72,18 + 21014: 73,19 + 21026: 75,23 + 21029: 75,25 + 21039: 91,21 + 21040: 92,23 + 21042: 72,6 + 21048: 72,1 + 21063: 69,-1 + 21074: 69,-3 + 21085: 47,-3 + 21109: 52,-3 + 21118: 46,0 + 21132: 40,1 + 21154: 34,4 + 21155: 36,6 + 21160: 39,4 + 21163: 39,6 + 21165: 36,9 + 21179: 53,9 + 21192: 50,8 + 21197: 50,4 + 21211: 73,-4 + 21224: 76,-4 + 21243: -20,-26 + 21262: 51,-7 + 21274: 46,-8 + 21284: 56,-3 + 21285: 46,5 + 21309: 58,1 + 21310: 62,1 + 21311: 66,1 + 21427: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2250: -20,53 - 2267: -21,52 - 2268: -21,52 - 2282: -23,51 - 2285: -23,48 - 2303: -24,41 - 2304: -23,45 - 2351: -27,30 - 2760: -13,48 - 2793: -6,50 - 2794: -12,50 - 2822: -4,46 - 2830: -7,27 - 2850: -30,43 - 3105: -7,58 - 3345: -31,69 - 3399: -13,69 - 3491: -31,92 - 3492: -31,84 - 3493: -31,77 - 3500: -30,96 - 3505: -31,82 - 3520: -12,96 - 3536: -13,92 - 3537: -13,84 - 3538: -13,82 - 3543: -13,77 - 3579: 5,69 - 3590: -21,55 - 3667: 5,84 - 3683: 5,82 - 3686: 5,77 - 3801: 2,58 - 5148: 31,28 - 5399: 16,-8 - 5463: 16,-4 - 5507: -31,6 - 5516: -42,23 - 5592: -20,-15 - 5647: 10,-8 - 5682: 8,-8 - 5817: 12,-4 - 5840: -1,-8 - 5843: -10,-8 - 6110: -15,-17 - 6128: -13,-19 - 6297: -4,-14 - 6306: -4,-19 - 6335: 16,-19 - 6429: 12,-19 - 6436: 12,-16 - 6446: 8,-19 - 6475: -20,-20 - 6821: -36,6 - 6822: -26,6 - 6823: -26,6 - 6824: -20,12 - 6845: -44,18 - 6935: -36,16 - 6937: -37,15 - 6965: -26,15 - 6969: -25,15 - 6973: -28,15 - 6998: -21,-16 - 6999: -21,-16 - 7108: 22,10 - 7111: 22,6 - 7160: 22,-10 - 7194: 25,-8 - 7249: 29,6 - 7354: 28,11 - 8051: 79,-22 - 8212: 33,-12 - 8213: 33,-10 - 8214: 33,-10 - 8225: 33,-16 - 8391: 39,-19 - 8395: 41,-19 - 8418: 43,-21 - 8457: 46,-19 - 8471: 52,-19 - 8511: 55,-19 - 8514: 55,-21 - 8623: 55,-29 - 8624: 55,-11 - 8704: 58,-31 - 8877: -2,-25 - 8922: -2,-34 - 8987: -12,-28 - 8988: -4,-27 - 8994: -16,-23 - 8995: -16,-23 - 9002: -12,-23 - 9003: -12,-23 - 9004: -5,-23 - 9005: -5,-23 - 9019: -16,-27 - 9205: -2,-64 - 9252: -10,-64 - 9267: -11,-78 - 9268: -11,-78 - 9328: 0,-69 - 9329: 0,-75 - 9330: -5,-75 - 9353: -3,-60 - 9364: -2,-58 - 9678: -11,-66 - 10702: 43,-42 - 11298: -59,-34 - 11299: -59,-41 - 11300: -59,-41 - 11304: -60,-36 - 11308: -60,-43 - 11346: -78,-27 - 11436: -2,-48 - 11440: -2,-40 - 11446: -3,-35 - 11470: -13,-30 - 11905: -24,-50 - 11917: -26,-52 - 12791: -23,39 - 12915: -3,50 - 13410: -44,9 - 13455: -37,-60 - 14441: -44,15 - 14446: -45,14 - 14449: -45,12 - 14992: 14,24 - 14993: 7,24 - 14996: 4,24 - 14997: 0,24 - 15000: -9,24 - 15004: -20,24 - 15943: 78,2 - 15980: 76,1 - 16847: -58,-12 - 16934: -58,-6 - 16994: -53,2 - 17012: -55,-7 - 17013: -61,-7 - 17678: 6,85 - 18648: -14,-12 - 18649: -10,-12 - 18716: 8,-12 - 19723: -43,21 - 20089: -27,13 - 20210: -16,-1 - 20270: 61,25 - 20271: 54,32 - 20273: 62,26 - 20274: 64,26 - 20393: -20,6 - 20402: -20,-2 - 20482: -20,17 - 20483: -20,20 + 2223: -20,53 + 2240: -21,52 + 2241: -21,52 + 2255: -23,51 + 2258: -23,48 + 2276: -24,41 + 2277: -23,45 + 2324: -27,30 + 2733: -13,48 + 2766: -6,50 + 2767: -12,50 + 2795: -4,46 + 2803: -7,27 + 2823: -30,43 + 3078: -7,58 + 3318: -31,69 + 3372: -13,69 + 3464: -31,92 + 3465: -31,84 + 3466: -31,77 + 3473: -30,96 + 3478: -31,82 + 3493: -12,96 + 3509: -13,92 + 3510: -13,84 + 3511: -13,82 + 3516: -13,77 + 3552: 5,69 + 3563: -21,55 + 3640: 5,84 + 3656: 5,82 + 3659: 5,77 + 3774: 2,58 + 5121: 31,28 + 5372: 16,-8 + 5436: 16,-4 + 5480: -31,6 + 5489: -42,23 + 5565: -20,-15 + 5620: 10,-8 + 5655: 8,-8 + 5790: 12,-4 + 5813: -1,-8 + 5816: -10,-8 + 6083: -15,-17 + 6101: -13,-19 + 6270: -4,-14 + 6279: -4,-19 + 6308: 16,-19 + 6402: 12,-19 + 6409: 12,-16 + 6419: 8,-19 + 6448: -20,-20 + 6794: -36,6 + 6795: -26,6 + 6796: -26,6 + 6797: -20,12 + 6818: -44,18 + 6908: -36,16 + 6910: -37,15 + 6938: -26,15 + 6942: -25,15 + 6946: -28,15 + 6971: -21,-16 + 6972: -21,-16 + 7081: 22,10 + 7084: 22,6 + 7133: 22,-10 + 7167: 25,-8 + 7222: 29,6 + 7327: 28,11 + 8018: 79,-22 + 8177: 33,-12 + 8178: 33,-10 + 8179: 33,-10 + 8190: 33,-16 + 8356: 39,-19 + 8360: 41,-19 + 8383: 43,-21 + 8422: 46,-19 + 8436: 52,-19 + 8476: 55,-19 + 8479: 55,-21 + 8588: 55,-29 + 8589: 55,-11 + 8669: 58,-31 + 8842: -2,-25 + 8887: -2,-34 + 8952: -12,-28 + 8953: -4,-27 + 8959: -16,-23 + 8960: -16,-23 + 8967: -12,-23 + 8968: -12,-23 + 8969: -5,-23 + 8970: -5,-23 + 8984: -16,-27 + 9170: -2,-64 + 9217: -10,-64 + 9232: -11,-78 + 9233: -11,-78 + 9293: 0,-69 + 9294: 0,-75 + 9295: -5,-75 + 9318: -3,-60 + 9329: -2,-58 + 9643: -11,-66 + 10667: 43,-42 + 11263: -59,-34 + 11264: -59,-41 + 11265: -59,-41 + 11269: -60,-36 + 11273: -60,-43 + 11311: -78,-27 + 11401: -2,-48 + 11405: -2,-40 + 11411: -3,-35 + 11435: -13,-30 + 11870: -24,-50 + 11882: -26,-52 + 12756: -23,39 + 12880: -3,50 + 13375: -44,9 + 13420: -37,-60 + 14406: -44,15 + 14411: -45,14 + 14414: -45,12 + 14957: 14,24 + 14958: 7,24 + 14961: 4,24 + 14962: 0,24 + 14965: -9,24 + 14969: -20,24 + 15797: 78,2 + 15834: 76,1 + 16701: -58,-12 + 16788: -58,-6 + 16848: -53,2 + 16866: -55,-7 + 16867: -61,-7 + 17532: 6,85 + 18483: -14,-12 + 18484: -10,-12 + 18551: 8,-12 + 19558: -43,21 + 19924: -27,13 + 20045: -16,-1 + 20105: 61,25 + 20106: 54,32 + 20108: 62,26 + 20109: 64,26 + 20228: -20,6 + 20237: -20,-2 + 20317: -20,17 + 20318: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 4135: -20,20 - 4138: -20,17 + 4108: -20,20 + 4111: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSe decals: - 8179: 25,-16 - 8180: 27,-16 - 8181: 29,-16 - 8188: 22,-15 - 8189: 22,-15 - 8197: 31,-16 + 8144: 25,-16 + 8145: 27,-16 + 8146: 29,-16 + 8153: 22,-15 + 8154: 22,-15 + 8162: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 3782: -26,65 - 3783: -26,63 - 3784: -26,61 - 3797: -28,60 - 10288: 37,-26 - 15933: 78,4 + 3755: -26,65 + 3756: -26,63 + 3757: -26,61 + 3770: -28,60 + 10253: 37,-26 + 15787: 78,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSe decals: - 9842: 21,-32 - 10091: 25,-26 - 10105: 28,-24 - 10117: 32,-23 - 10185: 22,-49 - 10195: 24,-45 - 10215: 24,-45 + 9807: 21,-32 + 10056: 25,-26 + 10070: 28,-24 + 10082: 32,-23 + 10150: 22,-49 + 10160: 24,-45 + 10180: 24,-45 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSe decals: - 11991: -29,-32 - 12055: -42,-30 - 12056: -38,-30 - 12057: -34,-30 - 12058: -37,-29 - 12059: -41,-29 - 12079: -33,-29 - 12089: -45,-29 - 12112: -46,-23 - 12219: -24,-42 - 12220: -29,-42 - 12413: -17,-40 - 19977: -6,-43 + 11956: -29,-32 + 12020: -42,-30 + 12021: -38,-30 + 12022: -34,-30 + 12023: -37,-29 + 12024: -41,-29 + 12044: -33,-29 + 12054: -45,-29 + 12077: -46,-23 + 12184: -24,-42 + 12185: -29,-42 + 12378: -17,-40 + 19812: -6,-43 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerSe decals: - 11007: 32,-68 + 10972: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSe decals: - 7835: 58,3 - 7836: 62,3 - 7837: 66,3 - 7838: 63,4 - 7839: 59,4 - 7848: 70,6 - 7849: 67,5 - 19465: 62,4 - 19466: 58,4 - 19467: 66,4 - 19487: 69,9 + 7808: 58,3 + 7809: 62,3 + 7810: 66,3 + 7811: 63,4 + 7812: 59,4 + 7821: 70,6 + 7822: 67,5 + 19300: 62,4 + 19301: 58,4 + 19302: 66,4 + 19322: 69,9 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSe decals: - 20505: -24,0 - 20515: -46,9 - 20516: -48,8 - 20522: 5,-62 - 20523: 5,-72 - 20524: 5,-78 - 20525: 4,-82 - 20561: 6,-77 - 20562: 6,-75 - 20563: 6,-65 - 20652: 12,-32 - 20654: 14,-31 - 20681: 3,64 - 20691: 2,60 - 20710: 40,3 - 20714: 40,11 - 20720: 40,11 - 20787: 93,21 - 20788: 93,17 - 20807: 74,9 - 20816: 48,12 - 20827: 44,12 - 20840: 48,8 - 20920: 59,25 - 20921: 57,21 - 20924: 52,21 - 20925: 51,28 - 20926: 50,31 - 20927: 52,32 - 20932: 54,28 - 20983: 47,15 - 20984: 48,16 - 20985: 54,17 - 20990: 47,22 - 21004: 57,19 - 21018: 51,15 - 21030: 60,12 - 21037: 53,11 - 21045: 48,4 - 21085: 93,13 - 21099: 83,12 - 21120: 78,9 - 21145: 73,5 - 21156: 70,1 - 21186: 73,21 - 21187: 76,22 - 21196: 75,25 - 21211: 74,1 - 21227: 69,-1 - 21243: 71,-4 - 21244: 65,-1 - 21245: 61,-1 - 21277: 52,-1 - 21278: 47,-1 - 21294: 44,0 - 21313: 35,4 - 21323: 37,6 - 21332: 36,8 - 21335: 36,11 - 21336: 44,8 - 21346: 55,4 - 21380: 74,-4 - 21410: -18,-24 - 21425: 51,-5 - 21446: 56,-1 + 20340: -24,0 + 20350: -46,9 + 20351: -48,8 + 20357: 5,-62 + 20358: 5,-72 + 20359: 5,-78 + 20360: 4,-82 + 20396: 6,-77 + 20397: 6,-75 + 20398: 6,-65 + 20487: 12,-32 + 20489: 14,-31 + 20516: 3,64 + 20526: 2,60 + 20545: 40,3 + 20549: 40,11 + 20555: 40,11 + 20622: 93,21 + 20623: 93,17 + 20642: 74,9 + 20651: 48,12 + 20662: 44,12 + 20675: 48,8 + 20755: 59,25 + 20756: 57,21 + 20759: 52,21 + 20760: 51,28 + 20761: 50,31 + 20762: 52,32 + 20767: 54,28 + 20818: 47,15 + 20819: 48,16 + 20820: 54,17 + 20825: 47,22 + 20839: 57,19 + 20853: 51,15 + 20865: 60,12 + 20872: 53,11 + 20880: 48,4 + 20920: 93,13 + 20934: 83,12 + 20955: 78,9 + 20980: 73,5 + 20991: 70,1 + 21021: 73,21 + 21022: 76,22 + 21031: 75,25 + 21046: 74,1 + 21062: 69,-1 + 21078: 71,-4 + 21079: 65,-1 + 21080: 61,-1 + 21112: 52,-1 + 21113: 47,-1 + 21129: 44,0 + 21148: 35,4 + 21158: 37,6 + 21167: 36,8 + 21170: 36,11 + 21171: 44,8 + 21181: 55,4 + 21215: 74,-4 + 21245: -18,-24 + 21260: 51,-5 + 21281: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2260: -18,55 - 2274: -15,48 - 2275: -15,50 - 2317: -15,36 - 2349: -25,30 - 2792: -3,51 - 2818: -4,48 - 2858: -30,41 - 2874: -32,44 - 3074: -17,56 - 3084: -1,56 - 3210: -17,67 - 3482: -25,67 - 3483: -30,67 - 3488: -29,84 - 3502: -29,88 - 3512: -29,79 - 3513: -29,77 - 3525: -11,77 - 3526: -11,84 - 3527: -11,88 - 3544: -11,79 - 3571: -3,67 - 3581: 8,68 - 3584: 6,67 - 3798: 2,56 - 3805: 3,57 - 5161: 31,30 - 5167: 35,30 - 5466: 18,-3 - 5489: -23,4 - 5498: -32,4 - 5513: -41,23 - 5572: -18,-1 - 5822: 14,-4 - 5834: 8,-6 - 5835: 11,-6 - 6117: -11,-17 - 6156: 18,-12 - 6301: -4,-16 - 6352: 18,-20 - 6410: 8,-17 - 6413: 10,-16 - 6930: -35,9 - 6931: -36,8 - 6944: -36,18 - 6984: -28,8 - 6985: -25,8 - 6989: -22,11 - 7062: 18,12 - 7065: 18,18 - 7066: 18,4 - 7097: 22,8 - 7167: 22,4 - 7189: 31,1 - 7224: 30,4 - 7254: 32,6 - 7357: 28,12 - 8049: 81,-19 - 8140: 25,-12 - 8301: 31,-10 - 8350: 41,-8 - 8380: 39,-16 - 8381: 39,-16 - 8415: 41,-19 - 8461: 48,-21 - 8462: 44,-21 - 8463: 52,-21 - 8480: 53,-19 - 8526: 56,-21 - 8703: 60,-10 - 8708: 63,-19 - 8709: 63,-22 - 8849: -13,-21 - 8850: -6,-21 - 8851: 0,-21 - 8852: 5,-21 - 8853: 12,-21 - 8879: 0,-26 - 8914: 0,-36 - 8915: 0,-36 - 8983: -15,-23 - 8984: -8,-23 - 8991: -8,-28 - 8992: -4,-28 - 9017: -16,-28 - 9216: 2,-67 - 9228: -8,-65 - 9229: -8,-65 - 9270: -11,-78 - 9331: -9,-71 - 9332: -9,-66 - 9342: 0,-62 - 9343: 0,-62 - 9497: -39,-16 - 9612: 1,-35 - 9674: 0,-39 - 9676: -3,-81 - 10400: 0,-44 - 10430: 0,-51 - 10616: 2,-76 - 10629: 1,-60 - 10690: 49,-42 - 10691: 47,-45 - 10692: 45,-45 - 10862: -4,-82 - 10863: -6,-82 - 10864: -6,-82 - 11343: -77,-31 - 11351: -77,-23 - 11468: -15,-32 - 11877: -39,-56 - 11901: -41,-53 - 13459: -37,-63 - 14508: -18,22 - 14990: 18,24 - 15976: 81,0 - 15977: 81,0 - 15978: 85,0 - 15979: 85,0 - 16878: -58,-10 - 16977: -58,-4 - 16987: -52,8 - 17008: -57,-7 - 17009: -57,-9 - 17686: 8,80 - 17691: 8,75 - 17694: 7,74 - 18606: -60,-43 - 18661: -18,-10 - 18679: -14,-10 - 18680: -10,-10 - 18709: 8,-10 - 20088: -24,10 - 20206: -16,4 - 20266: 70,26 - 20486: -18,4 - 20487: -18,-1 - 21544: 18,14 + 2233: -18,55 + 2247: -15,48 + 2248: -15,50 + 2290: -15,36 + 2322: -25,30 + 2765: -3,51 + 2791: -4,48 + 2831: -30,41 + 2847: -32,44 + 3047: -17,56 + 3057: -1,56 + 3183: -17,67 + 3455: -25,67 + 3456: -30,67 + 3461: -29,84 + 3475: -29,88 + 3485: -29,79 + 3486: -29,77 + 3498: -11,77 + 3499: -11,84 + 3500: -11,88 + 3517: -11,79 + 3544: -3,67 + 3554: 8,68 + 3557: 6,67 + 3771: 2,56 + 3778: 3,57 + 5134: 31,30 + 5140: 35,30 + 5439: 18,-3 + 5462: -23,4 + 5471: -32,4 + 5486: -41,23 + 5545: -18,-1 + 5795: 14,-4 + 5807: 8,-6 + 5808: 11,-6 + 6090: -11,-17 + 6129: 18,-12 + 6274: -4,-16 + 6325: 18,-20 + 6383: 8,-17 + 6386: 10,-16 + 6903: -35,9 + 6904: -36,8 + 6917: -36,18 + 6957: -28,8 + 6958: -25,8 + 6962: -22,11 + 7035: 18,12 + 7038: 18,18 + 7039: 18,4 + 7070: 22,8 + 7140: 22,4 + 7162: 31,1 + 7197: 30,4 + 7227: 32,6 + 7330: 28,12 + 8016: 81,-19 + 8105: 25,-12 + 8266: 31,-10 + 8315: 41,-8 + 8345: 39,-16 + 8346: 39,-16 + 8380: 41,-19 + 8426: 48,-21 + 8427: 44,-21 + 8428: 52,-21 + 8445: 53,-19 + 8491: 56,-21 + 8668: 60,-10 + 8673: 63,-19 + 8674: 63,-22 + 8814: -13,-21 + 8815: -6,-21 + 8816: 0,-21 + 8817: 5,-21 + 8818: 12,-21 + 8844: 0,-26 + 8879: 0,-36 + 8880: 0,-36 + 8948: -15,-23 + 8949: -8,-23 + 8956: -8,-28 + 8957: -4,-28 + 8982: -16,-28 + 9181: 2,-67 + 9193: -8,-65 + 9194: -8,-65 + 9235: -11,-78 + 9296: -9,-71 + 9297: -9,-66 + 9307: 0,-62 + 9308: 0,-62 + 9462: -39,-16 + 9577: 1,-35 + 9639: 0,-39 + 9641: -3,-81 + 10365: 0,-44 + 10395: 0,-51 + 10581: 2,-76 + 10594: 1,-60 + 10655: 49,-42 + 10656: 47,-45 + 10657: 45,-45 + 10827: -4,-82 + 10828: -6,-82 + 10829: -6,-82 + 11308: -77,-31 + 11316: -77,-23 + 11433: -15,-32 + 11842: -39,-56 + 11866: -41,-53 + 13424: -37,-63 + 14473: -18,22 + 14955: 18,24 + 15830: 81,0 + 15831: 81,0 + 15832: 85,0 + 15833: 85,0 + 16732: -58,-10 + 16831: -58,-4 + 16841: -52,8 + 16862: -57,-7 + 16863: -57,-9 + 17540: 8,80 + 17545: 8,75 + 17548: 7,74 + 18441: -60,-43 + 18496: -18,-10 + 18514: -14,-10 + 18515: -10,-10 + 18544: 8,-10 + 19923: -24,10 + 20041: -16,4 + 20101: 70,26 + 20321: -18,4 + 20322: -18,-1 + 21379: 18,14 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSw decals: - 8176: 27,-16 - 8177: 29,-16 - 8178: 31,-16 - 8190: 24,-15 - 8195: 25,-18 - 8196: 32,-11 + 8141: 27,-16 + 8142: 29,-16 + 8143: 31,-16 + 8155: 24,-15 + 8160: 25,-18 + 8161: 32,-11 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 3795: -26,60 - 10286: 37,-26 - 10287: 37,-26 - 15932: 78,4 - 15937: 77,6 + 3768: -26,60 + 10251: 37,-26 + 10252: 37,-26 + 15786: 78,4 + 15791: 77,6 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSw decals: - 9841: 21,-32 - 10090: 25,-26 - 10104: 32,-24 - 10184: 22,-49 - 10194: 20,-45 - 10214: 20,-45 - 10248: 32,-51 - 10249: 32,-49 + 9806: 21,-32 + 10055: 25,-26 + 10069: 32,-24 + 10149: 22,-49 + 10159: 20,-45 + 10179: 20,-45 + 10213: 32,-51 + 10214: 32,-49 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSw decals: - 11989: -29,-32 - 11990: -29,-32 - 12017: -31,-29 - 12018: -31,-29 - 12052: -42,-30 - 12053: -38,-30 - 12054: -34,-30 - 12060: -39,-29 - 12061: -35,-29 - 12073: -43,-29 - 12104: -48,-28 - 12106: -48,-25 - 12113: -46,-23 - 12218: -24,-42 - 12221: -29,-42 - 12223: -30,-39 - 16324: -66,-46 - 19976: -9,-43 + 11954: -29,-32 + 11955: -29,-32 + 11982: -31,-29 + 11983: -31,-29 + 12017: -42,-30 + 12018: -38,-30 + 12019: -34,-30 + 12025: -39,-29 + 12026: -35,-29 + 12038: -43,-29 + 12069: -48,-28 + 12071: -48,-25 + 12078: -46,-23 + 12183: -24,-42 + 12186: -29,-42 + 12188: -30,-39 + 16178: -66,-46 + 19811: -9,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSw decals: - 7832: 58,3 - 7833: 62,3 - 7834: 66,3 - 7840: 65,4 - 7841: 57,4 - 7842: 61,4 - 19462: 62,4 - 19463: 58,4 - 19464: 66,4 - 19486: 69,9 + 7805: 58,3 + 7806: 62,3 + 7807: 66,3 + 7813: 65,4 + 7814: 57,4 + 7815: 61,4 + 19297: 62,4 + 19298: 58,4 + 19299: 66,4 + 19321: 69,9 - node: color: '#DA8BC9FF' id: BrickTileSteelInnerSw decals: - 3961: 19,62 + 3934: 19,62 - node: color: '#DAA58BFF' id: BrickTileSteelInnerSw decals: - 4631: 20,34 + 4604: 20,34 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 20518: -48,9 - 20519: 5,-72 - 20520: 5,-78 - 20521: 5,-62 - 20571: 4,-76 - 20572: 4,-67 - 20618: 3,-60 - 20627: 8,-65 - 20636: 8,-77 - 20637: 8,-77 - 20638: 12,-32 - 20679: 0,61 - 20690: 2,60 - 20709: 40,3 - 20713: 40,11 - 20719: 40,11 - 20741: 39,8 - 20831: 46,12 - 20832: 46,12 - 20844: 46,8 - 20867: 46,3 - 20868: 39,4 - 20909: 49,22 - 20922: 57,21 - 20923: 52,21 - 20928: 56,32 - 20929: 58,31 - 20930: 57,28 - 20931: 54,28 - 20982: 47,15 - 20989: 45,20 - 21005: 56,17 - 21016: 50,16 - 21017: 51,15 - 21033: 50,12 - 21036: 53,11 - 21074: 91,21 - 21100: 83,12 - 21121: 76,9 - 21139: 72,18 - 21140: 72,13 - 21141: 73,5 - 21185: 73,21 - 21195: 75,25 - 21203: 91,21 - 21208: 72,6 - 21212: 72,1 - 21226: 69,-1 - 21230: 69,1 - 21276: 52,-1 - 21279: 47,-1 - 21284: 46,0 - 21312: 35,4 - 21321: 34,6 - 21326: 39,6 - 21329: 36,8 - 21334: 36,11 - 21355: 50,4 - 21356: 50,8 - 21363: 61,-1 - 21364: 65,-1 - 21377: 73,-4 - 21409: -20,-26 - 21424: 51,-5 - 21440: 46,-8 - 21445: 56,-1 + 20353: -48,9 + 20354: 5,-72 + 20355: 5,-78 + 20356: 5,-62 + 20406: 4,-76 + 20407: 4,-67 + 20453: 3,-60 + 20462: 8,-65 + 20471: 8,-77 + 20472: 8,-77 + 20473: 12,-32 + 20514: 0,61 + 20525: 2,60 + 20544: 40,3 + 20548: 40,11 + 20554: 40,11 + 20576: 39,8 + 20666: 46,12 + 20667: 46,12 + 20679: 46,8 + 20702: 46,3 + 20703: 39,4 + 20744: 49,22 + 20757: 57,21 + 20758: 52,21 + 20763: 56,32 + 20764: 58,31 + 20765: 57,28 + 20766: 54,28 + 20817: 47,15 + 20824: 45,20 + 20840: 56,17 + 20851: 50,16 + 20852: 51,15 + 20868: 50,12 + 20871: 53,11 + 20909: 91,21 + 20935: 83,12 + 20956: 76,9 + 20974: 72,18 + 20975: 72,13 + 20976: 73,5 + 21020: 73,21 + 21030: 75,25 + 21038: 91,21 + 21043: 72,6 + 21047: 72,1 + 21061: 69,-1 + 21065: 69,1 + 21111: 52,-1 + 21114: 47,-1 + 21119: 46,0 + 21147: 35,4 + 21156: 34,6 + 21161: 39,6 + 21164: 36,8 + 21169: 36,11 + 21190: 50,4 + 21191: 50,8 + 21198: 61,-1 + 21199: 65,-1 + 21212: 73,-4 + 21244: -20,-26 + 21259: 51,-5 + 21275: 46,-8 + 21280: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2284: -23,50 - 2288: -23,47 - 2289: -23,47 - 2291: -24,41 - 2325: -21,28 - 2327: -20,26 - 2338: -23,30 - 2339: -23,40 - 2350: -27,30 - 2353: -27,32 - 2380: -27,39 - 2507: -14,36 - 2759: -13,50 - 2819: -4,48 - 2824: -4,45 - 2829: -7,27 - 2867: -30,40 - 3075: -20,55 - 3082: -1,56 - 3085: 1,56 - 3209: -7,67 - 3461: -21,67 - 3481: -25,67 - 3484: -30,67 - 3494: -31,77 - 3495: -31,79 - 3496: -31,84 - 3497: -31,88 - 3514: -13,77 - 3515: -13,79 - 3516: -13,84 - 3517: -13,88 - 3583: 6,67 - 3666: 5,84 - 3684: 5,79 - 3687: 5,77 - 5160: 31,30 - 5166: 35,30 - 5464: 16,-4 - 5488: -23,4 - 5497: -33,4 - 5832: 10,-6 - 5833: 8,-6 - 6116: -13,-17 - 6303: -4,-17 - 6411: 8,-17 - 6434: 12,-16 - 6473: -20,-20 - 6474: -20,-20 - 6481: -20,-18 - 6825: -20,11 - 6843: -43,23 - 6844: -44,18 - 6929: -37,9 - 6932: -36,8 - 6943: -36,18 - 6982: -28,8 - 6986: -26,8 - 7000: -21,-17 - 7096: 22,8 - 7166: 22,4 - 7195: 25,-8 - 7223: 30,4 - 7355: 28,11 - 8048: 79,-19 - 8139: 25,-12 - 8208: 33,-12 - 8209: 33,-12 - 8210: 33,-10 - 8211: 33,-10 - 8379: 41,-16 - 8382: 39,-16 - 8383: 39,-16 - 8417: 43,-19 - 8458: 44,-21 - 8459: 48,-21 - 8460: 52,-21 - 8510: 55,-21 - 8512: 55,-19 - 8513: 55,-19 - 8622: 55,-29 - 8625: 55,-11 - 8626: 55,-11 - 8702: 58,-10 - 8844: 4,-21 - 8845: 11,-21 - 8846: -7,-21 - 8847: -2,-21 - 8848: -14,-21 - 8878: -2,-26 - 8913: -2,-36 - 8985: -12,-23 - 8990: -4,-28 - 8993: -12,-28 - 8996: -16,-23 - 8997: -16,-23 - 9006: -5,-23 - 9007: -5,-23 - 9018: -16,-28 - 9230: -1,-65 - 9269: -11,-78 - 9333: 0,-71 - 9334: 0,-66 - 9341: -2,-62 - 9354: -3,-60 - 9675: 1,-81 - 9677: -11,-67 - 10693: 43,-42 - 10694: 43,-42 - 10695: 45,-45 - 10696: 47,-45 - 10697: 47,-45 - 10859: 2,-82 - 10860: -4,-82 - 10861: -4,-82 - 10865: -6,-82 - 10866: -9,-78 - 11305: -60,-36 - 11306: -60,-36 - 11307: -60,-43 - 11347: -78,-27 - 11435: -2,-48 - 11439: -2,-41 - 11445: -3,-35 - 11467: -13,-32 - 11918: -26,-53 - 13409: -44,9 - 13458: -37,-63 - 14447: -45,14 - 14448: -45,12 - 14451: -44,11 - 15083: 16,22 - 15456: -43,8 - 15972: 76,1 - 15973: 81,0 - 15974: 85,0 - 15975: 89,0 - 16554: -60,-48 - 16877: -58,-10 - 16976: -58,-4 - 16986: -53,8 - 17014: -55,-7 - 17015: -55,-9 - 18638: -15,-12 - 18681: -14,-10 - 18682: -10,-10 - 18683: 16,-10 - 18708: 8,-10 - 20087: -27,10 - 20208: -16,4 - 20269: 61,25 - 20383: -20,17 - 20384: -20,11 - 20385: -20,4 - 20386: -20,-3 - 20481: -20,17 - 20484: -20,20 + 2257: -23,50 + 2261: -23,47 + 2262: -23,47 + 2264: -24,41 + 2298: -21,28 + 2300: -20,26 + 2311: -23,30 + 2312: -23,40 + 2323: -27,30 + 2326: -27,32 + 2353: -27,39 + 2480: -14,36 + 2732: -13,50 + 2792: -4,48 + 2797: -4,45 + 2802: -7,27 + 2840: -30,40 + 3048: -20,55 + 3055: -1,56 + 3058: 1,56 + 3182: -7,67 + 3434: -21,67 + 3454: -25,67 + 3457: -30,67 + 3467: -31,77 + 3468: -31,79 + 3469: -31,84 + 3470: -31,88 + 3487: -13,77 + 3488: -13,79 + 3489: -13,84 + 3490: -13,88 + 3556: 6,67 + 3639: 5,84 + 3657: 5,79 + 3660: 5,77 + 5133: 31,30 + 5139: 35,30 + 5437: 16,-4 + 5461: -23,4 + 5470: -33,4 + 5805: 10,-6 + 5806: 8,-6 + 6089: -13,-17 + 6276: -4,-17 + 6384: 8,-17 + 6407: 12,-16 + 6446: -20,-20 + 6447: -20,-20 + 6454: -20,-18 + 6798: -20,11 + 6816: -43,23 + 6817: -44,18 + 6902: -37,9 + 6905: -36,8 + 6916: -36,18 + 6955: -28,8 + 6959: -26,8 + 6973: -21,-17 + 7069: 22,8 + 7139: 22,4 + 7168: 25,-8 + 7196: 30,4 + 7328: 28,11 + 8015: 79,-19 + 8104: 25,-12 + 8173: 33,-12 + 8174: 33,-12 + 8175: 33,-10 + 8176: 33,-10 + 8344: 41,-16 + 8347: 39,-16 + 8348: 39,-16 + 8382: 43,-19 + 8423: 44,-21 + 8424: 48,-21 + 8425: 52,-21 + 8475: 55,-21 + 8477: 55,-19 + 8478: 55,-19 + 8587: 55,-29 + 8590: 55,-11 + 8591: 55,-11 + 8667: 58,-10 + 8809: 4,-21 + 8810: 11,-21 + 8811: -7,-21 + 8812: -2,-21 + 8813: -14,-21 + 8843: -2,-26 + 8878: -2,-36 + 8950: -12,-23 + 8955: -4,-28 + 8958: -12,-28 + 8961: -16,-23 + 8962: -16,-23 + 8971: -5,-23 + 8972: -5,-23 + 8983: -16,-28 + 9195: -1,-65 + 9234: -11,-78 + 9298: 0,-71 + 9299: 0,-66 + 9306: -2,-62 + 9319: -3,-60 + 9640: 1,-81 + 9642: -11,-67 + 10658: 43,-42 + 10659: 43,-42 + 10660: 45,-45 + 10661: 47,-45 + 10662: 47,-45 + 10824: 2,-82 + 10825: -4,-82 + 10826: -4,-82 + 10830: -6,-82 + 10831: -9,-78 + 11270: -60,-36 + 11271: -60,-36 + 11272: -60,-43 + 11312: -78,-27 + 11400: -2,-48 + 11404: -2,-41 + 11410: -3,-35 + 11432: -13,-32 + 11883: -26,-53 + 13374: -44,9 + 13423: -37,-63 + 14412: -45,14 + 14413: -45,12 + 14416: -44,11 + 15048: 16,22 + 15421: -43,8 + 15826: 76,1 + 15827: 81,0 + 15828: 85,0 + 15829: 89,0 + 16408: -60,-48 + 16731: -58,-10 + 16830: -58,-4 + 16840: -53,8 + 16868: -55,-7 + 16869: -55,-9 + 18473: -15,-12 + 18516: -14,-10 + 18517: -10,-10 + 18518: 16,-10 + 18543: 8,-10 + 19922: -27,10 + 20043: -16,4 + 20104: 61,25 + 20218: -20,17 + 20219: -20,11 + 20220: -20,4 + 20221: -20,-3 + 20316: -20,17 + 20319: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 4136: -20,20 - 4137: -20,17 + 4109: -20,20 + 4110: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelLineE decals: - 8160: 25,-18 - 8161: 25,-17 - 8192: 23,-15 - 8198: 31,-15 + 8125: 25,-18 + 8126: 25,-17 + 8157: 23,-15 + 8163: 31,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 3775: -26,64 - 3776: -26,62 - 3777: -26,60 - 3788: -25,63 - 3789: -25,61 - 3790: -25,59 - 10291: 35,-26 - 15941: 79,5 + 3748: -26,64 + 3749: -26,62 + 3750: -26,60 + 3761: -25,63 + 3762: -25,61 + 3763: -25,59 + 10256: 35,-26 + 15795: 79,5 - node: color: '#334E6DFF' id: BrickTileSteelLineE decals: - 21485: -18,13 - 21486: -18,12 - 21487: -18,13 - 21488: -18,13 + 21320: -18,13 + 21321: -18,12 + 21322: -18,13 + 21323: -18,13 - node: color: '#8BC9DAFF' id: BrickTileSteelLineE decals: - 3713: 4,64 - 3715: 4,64 - 3717: 4,64 - 3953: 21,61 - 3982: 21,61 + 3686: 4,64 + 3688: 4,64 + 3690: 4,64 + 3926: 21,61 + 3955: 21,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineE decals: - 9989: 29,-44 - 10099: 31,-24 - 10100: 31,-24 - 10109: 32,-24 - 10196: 24,-47 - 10197: 24,-48 - 10245: 31,-49 - 10246: 31,-51 - 10247: 31,-51 - 10257: 34,-52 - 10258: 34,-51 - 10259: 34,-50 - 10260: 34,-49 - 10261: 34,-48 + 9954: 29,-44 + 10064: 31,-24 + 10065: 31,-24 + 10074: 32,-24 + 10161: 24,-47 + 10162: 24,-48 + 10210: 31,-49 + 10211: 31,-51 + 10212: 31,-51 + 10222: 34,-52 + 10223: 34,-51 + 10224: 34,-50 + 10225: 34,-49 + 10226: 34,-48 - node: color: '#96A4EBFF' id: BrickTileSteelLineE decals: - 21480: -18,13 + 21315: -18,13 - node: color: '#A9DA8BFF' id: BrickTileSteelLineE decals: - 3018: -39,49 + 2991: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineE decals: - 11598: -21,-34 - 11599: -21,-35 - 11600: -21,-36 - 11996: -26,-31 - 11997: -26,-31 - 11998: -26,-30 - 11999: -26,-30 - 12000: -26,-29 - 12001: -26,-28 - 12002: -26,-27 - 12010: -32,-27 - 12011: -32,-28 - 12012: -32,-29 - 12070: -44,-27 - 12071: -44,-28 - 12072: -44,-29 - 12087: -45,-26 - 12088: -45,-30 - 12103: -49,-28 - 12116: -48,-23 - 12153: -24,-46 - 12154: -24,-45 - 12155: -24,-44 - 12202: -28,-41 - 12203: -28,-40 - 12204: -28,-39 - 12205: -23,-41 - 12206: -23,-40 - 12207: -23,-39 - 12224: -31,-39 - 12381: -17,-43 - 12382: -17,-42 - 12383: -17,-41 - 12389: -17,-39 - 16315: -62,-47 - 19972: -10,-43 - 19973: -10,-42 - 19974: -10,-41 - 19975: -10,-41 - 19986: -10,-40 + 11563: -21,-34 + 11564: -21,-35 + 11565: -21,-36 + 11961: -26,-31 + 11962: -26,-31 + 11963: -26,-30 + 11964: -26,-30 + 11965: -26,-29 + 11966: -26,-28 + 11967: -26,-27 + 11975: -32,-27 + 11976: -32,-28 + 11977: -32,-29 + 12035: -44,-27 + 12036: -44,-28 + 12037: -44,-29 + 12052: -45,-26 + 12053: -45,-30 + 12068: -49,-28 + 12081: -48,-23 + 12118: -24,-46 + 12119: -24,-45 + 12120: -24,-44 + 12167: -28,-41 + 12168: -28,-40 + 12169: -28,-39 + 12170: -23,-41 + 12171: -23,-40 + 12172: -23,-39 + 12189: -31,-39 + 12346: -17,-43 + 12347: -17,-42 + 12348: -17,-41 + 12354: -17,-39 + 16169: -62,-47 + 19807: -10,-43 + 19808: -10,-42 + 19809: -10,-41 + 19810: -10,-41 + 19821: -10,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineE decals: - 11004: 32,-69 - 11005: 32,-67 + 10969: 32,-69 + 10970: 32,-67 - node: color: '#DA8B8BFF' id: BrickTileSteelLineE decals: - 7843: 67,4 - 7850: 64,4 - 7851: 64,5 - 7856: 56,4 - 7857: 56,5 - 7858: 60,4 - 7859: 60,5 - 19451: 58,3 - 19458: 66,3 - 19459: 62,3 - 19484: 69,8 - 19489: 66,8 - 19490: 66,7 - 19495: 62,7 - 19496: 62,8 - 19497: 62,9 - 19503: 58,7 - 19504: 58,8 + 7816: 67,4 + 7823: 64,4 + 7824: 64,5 + 7829: 56,4 + 7830: 56,5 + 7831: 60,4 + 7832: 60,5 + 19286: 58,3 + 19293: 66,3 + 19294: 62,3 + 19319: 69,8 + 19324: 66,8 + 19325: 66,7 + 19330: 62,7 + 19331: 62,8 + 19332: 62,9 + 19338: 58,7 + 19339: 58,8 - node: color: '#DA8BC9FF' id: BrickTileSteelLineE decals: - 3851: 9,68 - 3960: 21,62 + 3824: 9,68 + 3933: 21,62 - node: color: '#DABC8BFF' id: BrickTileSteelLineE decals: - 3731: 9,75 - 3732: 9,76 - 3733: 9,80 - 3734: 9,81 + 3704: 9,75 + 3705: 9,76 + 3706: 9,80 + 3707: 9,81 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 20496: -22,1 - 20511: -49,9 - 20538: 4,-86 - 20539: 4,-85 - 20540: 4,-84 - 20551: 6,-81 - 20567: 3,-66 - 20568: 3,-67 - 20569: 3,-75 - 20570: 3,-76 - 20595: 7,-77 - 20596: 7,-75 - 20599: 6,-76 - 20604: 6,-71 - 20605: 6,-70 - 20606: 6,-69 - 20607: 6,-68 - 20608: 6,-67 - 20609: 6,-66 - 20610: 9,-65 - 20611: 8,-61 - 20612: 8,-60 - 20613: 8,-59 - 20619: 2,-60 - 20662: 11,30 - 20663: 13,31 - 20664: 13,32 - 20672: -1,61 - 20682: 3,63 - 20683: 3,62 - 20684: 3,61 - 20721: 41,12 - 20732: 41,6 - 20733: 41,7 - 20734: 41,8 - 20742: 38,8 - 20773: 74,10 - 20774: 74,11 - 20775: 74,12 - 20776: 74,13 - 20777: 74,14 - 20778: 74,15 - 20779: 74,16 - 20780: 74,17 - 20781: 74,18 - 20782: 93,14 - 20783: 93,19 - 20784: 93,19 - 20785: 93,20 - 20786: 93,18 - 20789: 93,16 - 20803: 75,9 - 20804: 79,9 - 20809: 48,2 - 20810: 48,3 - 20811: 48,5 - 20812: 48,6 - 20813: 48,6 - 20814: 48,7 - 20815: 48,11 - 20830: 45,12 - 20839: 48,9 - 20845: 45,8 - 20869: 38,4 - 20870: 38,6 - 20871: 48,17 - 20872: 48,18 - 20873: 54,18 - 20874: 59,22 - 20875: 59,23 - 20876: 59,24 - 20877: 59,27 - 20878: 59,28 - 20879: 59,29 - 20880: 59,30 - 20881: 59,26 - 20894: 48,23 - 20895: 48,22 - 20942: 49,16 - 20947: 49,12 - 20992: 47,21 - 20993: 47,20 - 20994: 57,18 - 20995: 57,17 - 20996: 57,16 - 20997: 57,16 - 21008: 54,16 - 21040: 49,8 - 21043: 49,4 - 21071: 93,22 - 21073: 90,21 - 21109: 79,9 - 21112: 75,9 - 21122: 74,8 - 21123: 74,7 - 21124: 74,6 - 21125: 74,6 - 21147: 71,-1 - 21152: 67,0 - 21155: 70,0 - 21165: 49,-1 - 21166: 49,0 - 21167: 49,1 - 21168: 71,6 - 21169: 71,13 - 21173: 71,13 - 21174: 71,18 - 21221: 68,1 - 21222: 68,-1 - 21223: 71,1 - 21224: 71,-1 - 21256: 48,-4 - 21257: 53,-4 - 21273: 58,-4 - 21285: 45,0 - 21301: 41,0 - 21302: 33,6 - 21303: 33,4 - 21304: 38,4 - 21305: 38,6 - 21315: 37,5 - 21348: 55,6 - 21349: 55,7 - 21350: 55,8 - 21365: 44,20 - 21366: 49,16 - 21367: 55,17 - 21375: 72,-4 - 21384: 75,-4 - 21387: 77,-3 - 21390: 75,-4 - 21392: 72,-4 - 21396: -21,-26 - 21400: -18,-25 - 21401: -18,-26 - 21402: -18,-26 - 21403: -18,-27 - 21428: 51,-7 - 21429: 51,-8 - 21437: 45,-8 - 21453: 74,2 - 21454: 74,0 + 20331: -22,1 + 20346: -49,9 + 20373: 4,-86 + 20374: 4,-85 + 20375: 4,-84 + 20386: 6,-81 + 20402: 3,-66 + 20403: 3,-67 + 20404: 3,-75 + 20405: 3,-76 + 20430: 7,-77 + 20431: 7,-75 + 20434: 6,-76 + 20439: 6,-71 + 20440: 6,-70 + 20441: 6,-69 + 20442: 6,-68 + 20443: 6,-67 + 20444: 6,-66 + 20445: 9,-65 + 20446: 8,-61 + 20447: 8,-60 + 20448: 8,-59 + 20454: 2,-60 + 20497: 11,30 + 20498: 13,31 + 20499: 13,32 + 20507: -1,61 + 20517: 3,63 + 20518: 3,62 + 20519: 3,61 + 20556: 41,12 + 20567: 41,6 + 20568: 41,7 + 20569: 41,8 + 20577: 38,8 + 20608: 74,10 + 20609: 74,11 + 20610: 74,12 + 20611: 74,13 + 20612: 74,14 + 20613: 74,15 + 20614: 74,16 + 20615: 74,17 + 20616: 74,18 + 20617: 93,14 + 20618: 93,19 + 20619: 93,19 + 20620: 93,20 + 20621: 93,18 + 20624: 93,16 + 20638: 75,9 + 20639: 79,9 + 20644: 48,2 + 20645: 48,3 + 20646: 48,5 + 20647: 48,6 + 20648: 48,6 + 20649: 48,7 + 20650: 48,11 + 20665: 45,12 + 20674: 48,9 + 20680: 45,8 + 20704: 38,4 + 20705: 38,6 + 20706: 48,17 + 20707: 48,18 + 20708: 54,18 + 20709: 59,22 + 20710: 59,23 + 20711: 59,24 + 20712: 59,27 + 20713: 59,28 + 20714: 59,29 + 20715: 59,30 + 20716: 59,26 + 20729: 48,23 + 20730: 48,22 + 20777: 49,16 + 20782: 49,12 + 20827: 47,21 + 20828: 47,20 + 20829: 57,18 + 20830: 57,17 + 20831: 57,16 + 20832: 57,16 + 20843: 54,16 + 20875: 49,8 + 20878: 49,4 + 20906: 93,22 + 20908: 90,21 + 20944: 79,9 + 20947: 75,9 + 20957: 74,8 + 20958: 74,7 + 20959: 74,6 + 20960: 74,6 + 20982: 71,-1 + 20987: 67,0 + 20990: 70,0 + 21000: 49,-1 + 21001: 49,0 + 21002: 49,1 + 21003: 71,6 + 21004: 71,13 + 21008: 71,13 + 21009: 71,18 + 21056: 68,1 + 21057: 68,-1 + 21058: 71,1 + 21059: 71,-1 + 21091: 48,-4 + 21092: 53,-4 + 21108: 58,-4 + 21120: 45,0 + 21136: 41,0 + 21137: 33,6 + 21138: 33,4 + 21139: 38,4 + 21140: 38,6 + 21150: 37,5 + 21183: 55,6 + 21184: 55,7 + 21185: 55,8 + 21200: 44,20 + 21201: 49,16 + 21202: 55,17 + 21210: 72,-4 + 21219: 75,-4 + 21222: 77,-3 + 21225: 75,-4 + 21227: 72,-4 + 21231: -21,-26 + 21235: -18,-25 + 21236: -18,-26 + 21237: -18,-26 + 21238: -18,-27 + 21263: 51,-7 + 21264: 51,-8 + 21272: 45,-8 + 21288: 74,2 + 21289: 74,0 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2270: -15,51 - 2271: -15,49 - 2276: -15,47 - 2302: -25,41 - 2316: -15,35 - 2328: -24,39 - 2329: -24,38 - 2330: -24,37 - 2331: -24,36 - 2332: -24,35 - 2333: -24,34 - 2334: -24,33 - 2335: -24,32 - 2336: -24,31 - 2337: -24,30 - 2355: -28,30 - 2371: -28,32 - 2372: -28,33 - 2373: -28,34 - 2374: -28,35 - 2375: -28,36 - 2376: -28,37 - 2377: -28,38 - 2761: -14,48 - 2762: -14,50 - 2783: -3,50 - 2784: -3,49 - 2810: -2,45 - 2831: -8,27 - 2833: -5,27 - 2845: -26,42 - 2866: -30,40 - 2887: -24,50 - 2888: -24,51 - 2889: -24,48 - 2890: -24,47 - 3190: -17,59 - 3191: -17,60 - 3192: -17,61 - 3193: -17,62 - 3194: -17,63 - 3195: -17,64 - 3196: -17,64 - 3197: -17,65 - 3198: -17,66 - 3363: -29,93 - 3364: -29,94 - 3365: -29,95 - 3366: -28,91 - 3367: -28,90 - 3368: -28,89 - 3369: -29,87 - 3370: -29,86 - 3371: -29,85 - 3372: -29,83 - 3373: -28,81 - 3374: -28,80 - 3375: -29,78 - 3376: -29,76 - 3377: -29,75 - 3378: -29,74 - 3379: -29,73 - 3380: -29,72 - 3381: -29,71 - 3382: -29,70 - 3420: -11,93 - 3421: -11,94 - 3422: -11,95 - 3423: -10,91 - 3424: -10,90 - 3425: -10,89 - 3426: -11,86 - 3427: -11,85 - 3428: -11,87 - 3429: -11,83 - 3430: -10,81 - 3431: -10,80 - 3432: -11,78 - 3433: -11,76 - 3434: -11,75 - 3435: -11,74 - 3436: -11,73 - 3437: -11,72 - 3438: -11,71 - 3439: -11,70 - 3470: -3,59 - 3471: -3,63 - 3472: -3,64 - 3473: -3,62 - 3474: -3,62 - 3475: -3,61 - 3478: -3,66 - 3529: -10,89 - 3530: -10,90 - 3531: -10,91 - 3595: -14,77 - 3597: -10,77 - 3599: -16,77 - 3605: -14,84 - 3606: -16,84 - 3607: -10,84 - 3618: -32,84 - 3619: -28,84 - 3621: -34,84 - 3626: -28,77 - 3627: -32,77 - 3628: -34,77 - 3636: 5,72 - 3637: 5,73 - 3638: 5,74 - 3639: 5,75 - 3661: 7,73 - 3662: 7,72 - 3663: 7,71 - 3665: 7,70 - 3689: 4,77 - 3690: 2,77 - 3691: 4,84 - 3693: 2,84 - 3753: -22,55 - 4196: -21,20 - 4338: 15,14 - 4339: 15,15 - 4369: 18,20 - 4370: 18,20 - 4371: 18,19 - 4372: 18,17 - 4373: 18,16 - 4374: 18,13 - 4375: 18,11 - 4376: 18,10 - 4377: 18,9 - 4378: 18,8 - 4379: 18,7 - 4380: 18,3 - 4381: 18,2 - 4382: 18,1 - 4383: 18,0 - 4384: 18,-1 - 4385: 18,-2 - 4386: 18,-4 - 4387: 18,-5 - 4388: 18,-6 - 4389: 18,-7 - 4390: 18,-8 - 4391: 18,-9 - 5137: 30,28 - 5138: 30,27 - 5139: 30,26 - 5144: 33,28 - 5145: 33,27 - 5146: 33,26 - 5151: 28,31 - 5170: 36,31 - 5253: 18,-6 - 5299: -29,82 - 5300: -29,81 - 5301: -29,81 - 5302: -29,79 - 5303: -29,80 - 5317: -29,92 - 5318: -29,91 - 5319: -29,90 - 5320: -29,90 - 5321: -29,89 - 5322: -29,89 - 5323: -29,88 - 5324: -29,88 - 5325: -11,79 - 5326: -11,80 - 5327: -11,81 - 5328: -11,82 - 5329: -11,82 - 5342: -11,92 - 5343: -11,91 - 5344: -11,91 - 5345: -11,90 - 5346: -11,90 - 5347: -11,89 - 5348: -11,88 - 5349: -11,87 - 5420: -18,-7 - 5510: -41,11 - 5511: -41,15 - 5512: -41,22 - 5646: 15,-8 - 5656: -17,-8 - 5659: -18,-11 - 5660: -18,-11 - 5661: -18,-12 - 5662: -18,-13 - 5663: -18,-13 - 5664: -18,-15 - 5665: -18,-14 - 5666: -18,-16 - 5667: -18,-16 - 5668: -18,-17 - 5669: -18,-18 - 5684: 15,-4 - 5823: 14,-5 - 6111: -9,-16 - 6112: -9,-15 - 6113: -9,-14 - 6114: -9,-13 - 6184: -17,-21 - 6185: -17,-20 - 6186: -17,-19 - 6200: -17,-19 - 6298: -4,-14 - 6299: -4,-15 - 6302: -4,-17 - 6311: -3,-21 - 6312: -3,-20 - 6313: -3,-19 - 6314: 1,-19 - 6315: 1,-20 - 6316: 1,-21 - 6329: 15,-21 - 6330: 15,-20 - 6331: 15,-19 - 6336: 18,-13 - 6337: 18,-14 - 6338: 18,-15 - 6339: 18,-16 - 6340: 18,-17 - 6341: 18,-18 - 6342: 18,-19 - 6343: 18,-21 - 6369: 4,-16 - 6370: 4,-15 - 6400: 10,-12 - 6401: 10,-13 - 6402: 10,-14 - 6403: 10,-15 - 6432: 14,-17 - 6433: 14,-16 - 6435: 11,-16 - 6438: 14,-15 - 6483: -21,-20 - 6673: -21,-3 - 6674: -21,-2 - 6826: -21,11 - 6827: -21,12 - 6828: -21,12 - 6919: -34,10 - 6920: -34,11 - 6921: -34,11 - 6922: -34,11 - 6923: -34,11 - 6924: -34,12 - 6925: -34,12 - 6926: -34,13 - 6927: -34,14 - 6928: -34,14 - 6957: -22,13 - 6958: -22,14 - 6959: -22,10 - 6960: -22,10 - 6961: -22,9 - 6995: -22,-16 - 6996: -22,-16 - 6997: -22,-17 - 7092: 19,4 - 7093: 19,5 - 7094: 19,6 - 7102: 24,9 - 7140: 19,-12 - 7141: 19,-11 - 7142: 19,-10 - 7143: 26,-12 - 7144: 26,-11 - 7145: 26,-10 - 7159: 31,-11 - 7205: 31,-5 - 7218: 24,-8 - 7219: 24,-2 - 7245: 26,4 - 7246: 26,5 - 7247: 26,6 - 7251: 32,5 - 7252: 32,5 - 7253: 32,5 - 7339: 28,9 - 7340: 28,10 - 7341: 28,11 - 7408: 32,5 - 8035: 81,-21 - 8036: 81,-20 - 8042: 82,-19 - 8043: 82,-22 - 8044: 78,-22 - 8045: 76,-22 - 8046: 76,-19 - 8047: 78,-19 - 8063: 64,-19 - 8064: 64,-22 - 8206: 32,-10 - 8207: 32,-12 - 8219: 32,-16 - 8226: 32,-16 - 8264: 33,-7 - 8327: 41,-17 - 8328: 41,-16 - 8329: 41,-15 - 8330: 41,-14 - 8331: 41,-13 - 8332: 41,-11 - 8333: 41,-10 - 8334: 41,-9 - 8390: 39,-17 - 8414: 41,-20 - 8454: 42,-21 - 8455: 42,-19 - 8456: 42,-19 - 8478: 53,-20 - 8508: 54,-19 - 8509: 54,-21 - 8521: 56,-19 - 8522: 56,-19 - 8620: 54,-11 - 8621: 54,-29 - 8672: 63,-30 - 8673: 63,-30 - 8674: 63,-28 - 8675: 63,-28 - 8676: 63,-29 - 8677: 63,-26 - 8678: 63,-26 - 8679: 63,-27 - 8680: 63,-24 - 8681: 63,-25 - 8682: 63,-21 - 8683: 63,-18 - 8684: 63,-17 - 8685: 63,-16 - 8686: 63,-15 - 8687: 63,-15 - 8688: 63,-14 - 8689: 63,-13 - 8690: 63,-12 - 8691: 63,-11 - 8710: 63,-23 - 8711: 63,-23 - 8712: 63,-20 - 8865: 0,-23 - 8866: 0,-24 - 8867: 0,-27 - 8868: 0,-28 - 8875: -3,-25 - 8876: -3,-26 - 8892: 0,-30 - 8893: 0,-30 - 8894: 0,-31 - 8895: 0,-32 - 8896: 0,-33 - 8945: -13,-28 - 8953: -5,-28 - 8954: -5,-28 - 8955: -5,-27 - 8956: -5,-27 - 8971: -13,-23 - 8972: -6,-23 - 8973: -6,-23 - 9013: -5,-28 - 9212: 2,-65 - 9213: 2,-65 - 9289: 2,-82 - 9290: 2,-81 - 9291: 2,-80 - 9292: 2,-78 - 9293: 2,-79 - 9294: 2,-79 - 9295: 2,-74 - 9296: 2,-74 - 9297: 2,-73 - 9298: 2,-72 - 9299: 2,-71 - 9300: 2,-70 - 9301: 2,-69 - 9302: -9,-68 - 9303: -9,-67 - 9304: -9,-73 - 9305: -9,-74 - 9306: -9,-72 - 9318: -2,-71 - 9319: -2,-69 - 9320: -2,-70 - 9346: 1,-61 - 9347: 1,-59 - 9366: 0,-38 - 9367: 0,-40 - 9368: 0,-40 - 9369: 0,-41 - 9370: 0,-41 - 9371: 0,-42 - 9372: 0,-43 - 9373: 0,-45 - 9374: 0,-45 - 9375: 0,-48 - 9376: 0,-48 - 9377: 0,-49 - 9378: 0,-50 - 9379: 0,-52 - 9380: 0,-53 - 9381: 0,-54 - 9413: 0,-46 - 9414: 0,-46 - 9415: 0,-47 - 9416: 0,-55 - 9417: 0,-55 - 9418: 0,-56 - 9498: -39,-15 - 10460: 11,-52 - 10461: 11,-51 - 10462: 11,-50 - 10625: 4,-86 - 10626: 4,-86 - 10627: 4,-85 - 10628: 4,-84 - 10674: 49,-39 - 10675: 49,-40 - 10676: 49,-41 - 10677: 49,-43 - 10678: 49,-44 - 10701: 42,-42 - 11288: -58,-36 - 11289: -58,-36 - 11290: -58,-37 - 11291: -58,-37 - 11292: -58,-38 - 11309: -61,-43 - 11310: -58,-43 - 11311: -58,-43 - 11391: -6,-86 - 11392: -6,-86 - 11393: -6,-84 - 11394: -6,-85 - 11395: -6,-85 - 11396: -4,-86 - 11397: -4,-85 - 11398: -4,-85 - 11399: -4,-84 - 11400: 2,-86 - 11401: 2,-85 - 11402: 2,-84 - 11426: -12,-67 - 11427: -12,-66 - 11428: -12,-78 - 11434: -3,-48 - 11441: -3,-40 - 11442: -3,-41 - 11444: -4,-35 - 11455: -13,-30 - 11456: -13,-31 - 11457: -13,-32 - 11890: -37,-52 - 11898: -41,-55 - 11899: -41,-54 - 11900: -41,-54 - 11909: -23,-51 - 11910: -23,-51 - 11911: -23,-52 - 11912: -23,-53 - 12416: -4,-60 - 12793: -45,9 - 12795: -45,18 - 12909: -45,9 - 12911: -44,23 - 13460: -36,-62 - 14452: -46,14 - 14453: -46,12 - 14977: 6,22 - 14978: 6,23 - 14979: 6,24 - 14988: 18,23 - 14989: 18,22 - 15018: -8,22 - 15019: -8,23 - 15020: -8,24 - 15404: -8,-70 - 15453: -40,4 - 15454: -40,5 - 15455: -40,6 - 15460: -41,8 - 15461: -41,9 - 15462: -41,10 - 15463: -41,14 - 15464: -41,13 - 15465: -41,12 - 15466: -41,16 - 15467: -41,17 - 15468: -41,18 - 15469: -41,18 - 15470: -41,19 - 15471: -41,20 - 15472: -41,21 - 15960: 89,1 - 15961: 89,0 - 15971: 75,1 - 16868: -55,-13 - 16869: -55,-14 - 16870: -55,-14 - 16886: -62,-17 - 16887: -60,-17 - 16988: -52,4 - 16989: -52,5 - 16990: -52,6 - 17004: -56,-7 - 17005: -56,-9 - 17337: -46,12 - 17340: -46,14 - 17680: 7,84 - 17681: 7,83 - 17687: 8,79 - 17688: 8,78 - 17689: 8,77 - 18081: -44,23 - 18657: -17,-9 - 18658: -17,-10 - 18726: 15,-10 - 18727: 15,-9 - 18728: 15,-8 - 20065: -28,10 - 20066: -28,11 - 20067: -28,11 - 20068: -28,13 - 20069: -28,12 - 20189: -17,4 - 20190: -17,-1 - 20202: -16,0 - 20203: -16,1 - 20204: -16,2 - 20205: -16,3 - 20249: 70,25 - 20250: 70,24 - 20251: 70,23 - 20252: 70,22 - 20268: 60,25 - 20316: -21,-3 - 20317: -21,-2 - 20325: -21,4 - 20326: -21,5 - 20327: -21,6 - 20331: -18,5 - 20332: -18,3 - 20333: -18,2 - 20334: -18,2 - 20335: -18,1 - 20336: -18,0 - 20337: -18,-3 - 20338: -18,-2 - 20339: -18,-4 - 20340: -18,-4 - 20341: -18,-5 - 20342: -18,-6 - 20343: -18,-6 - 20350: -18,8 - 20351: -18,8 - 20352: -18,9 - 20353: -18,10 - 20354: -18,11 - 20355: -18,12 - 20356: -18,12 - 20357: -18,13 - 20358: -18,11 - 20359: -18,10 - 20360: -18,9 - 20361: -18,8 - 20362: -18,11 - 20363: -18,11 - 20364: -18,12 - 20365: -18,13 - 20366: -18,16 - 20367: -18,17 - 20368: -18,18 - 20369: -18,19 - 20370: -18,19 - 20371: -18,20 - 20387: -21,11 - 20388: -21,12 - 20389: -21,17 - 20390: -21,20 - 20391: -21,11 - 20392: -21,12 - 20394: -21,6 - 20395: -21,5 - 20396: -21,4 - 21547: 18,12 + 2243: -15,51 + 2244: -15,49 + 2249: -15,47 + 2275: -25,41 + 2289: -15,35 + 2301: -24,39 + 2302: -24,38 + 2303: -24,37 + 2304: -24,36 + 2305: -24,35 + 2306: -24,34 + 2307: -24,33 + 2308: -24,32 + 2309: -24,31 + 2310: -24,30 + 2328: -28,30 + 2344: -28,32 + 2345: -28,33 + 2346: -28,34 + 2347: -28,35 + 2348: -28,36 + 2349: -28,37 + 2350: -28,38 + 2734: -14,48 + 2735: -14,50 + 2756: -3,50 + 2757: -3,49 + 2783: -2,45 + 2804: -8,27 + 2806: -5,27 + 2818: -26,42 + 2839: -30,40 + 2860: -24,50 + 2861: -24,51 + 2862: -24,48 + 2863: -24,47 + 3163: -17,59 + 3164: -17,60 + 3165: -17,61 + 3166: -17,62 + 3167: -17,63 + 3168: -17,64 + 3169: -17,64 + 3170: -17,65 + 3171: -17,66 + 3336: -29,93 + 3337: -29,94 + 3338: -29,95 + 3339: -28,91 + 3340: -28,90 + 3341: -28,89 + 3342: -29,87 + 3343: -29,86 + 3344: -29,85 + 3345: -29,83 + 3346: -28,81 + 3347: -28,80 + 3348: -29,78 + 3349: -29,76 + 3350: -29,75 + 3351: -29,74 + 3352: -29,73 + 3353: -29,72 + 3354: -29,71 + 3355: -29,70 + 3393: -11,93 + 3394: -11,94 + 3395: -11,95 + 3396: -10,91 + 3397: -10,90 + 3398: -10,89 + 3399: -11,86 + 3400: -11,85 + 3401: -11,87 + 3402: -11,83 + 3403: -10,81 + 3404: -10,80 + 3405: -11,78 + 3406: -11,76 + 3407: -11,75 + 3408: -11,74 + 3409: -11,73 + 3410: -11,72 + 3411: -11,71 + 3412: -11,70 + 3443: -3,59 + 3444: -3,63 + 3445: -3,64 + 3446: -3,62 + 3447: -3,62 + 3448: -3,61 + 3451: -3,66 + 3502: -10,89 + 3503: -10,90 + 3504: -10,91 + 3568: -14,77 + 3570: -10,77 + 3572: -16,77 + 3578: -14,84 + 3579: -16,84 + 3580: -10,84 + 3591: -32,84 + 3592: -28,84 + 3594: -34,84 + 3599: -28,77 + 3600: -32,77 + 3601: -34,77 + 3609: 5,72 + 3610: 5,73 + 3611: 5,74 + 3612: 5,75 + 3634: 7,73 + 3635: 7,72 + 3636: 7,71 + 3638: 7,70 + 3662: 4,77 + 3663: 2,77 + 3664: 4,84 + 3666: 2,84 + 3726: -22,55 + 4169: -21,20 + 4311: 15,14 + 4312: 15,15 + 4342: 18,20 + 4343: 18,20 + 4344: 18,19 + 4345: 18,17 + 4346: 18,16 + 4347: 18,13 + 4348: 18,11 + 4349: 18,10 + 4350: 18,9 + 4351: 18,8 + 4352: 18,7 + 4353: 18,3 + 4354: 18,2 + 4355: 18,1 + 4356: 18,0 + 4357: 18,-1 + 4358: 18,-2 + 4359: 18,-4 + 4360: 18,-5 + 4361: 18,-6 + 4362: 18,-7 + 4363: 18,-8 + 4364: 18,-9 + 5110: 30,28 + 5111: 30,27 + 5112: 30,26 + 5117: 33,28 + 5118: 33,27 + 5119: 33,26 + 5124: 28,31 + 5143: 36,31 + 5226: 18,-6 + 5272: -29,82 + 5273: -29,81 + 5274: -29,81 + 5275: -29,79 + 5276: -29,80 + 5290: -29,92 + 5291: -29,91 + 5292: -29,90 + 5293: -29,90 + 5294: -29,89 + 5295: -29,89 + 5296: -29,88 + 5297: -29,88 + 5298: -11,79 + 5299: -11,80 + 5300: -11,81 + 5301: -11,82 + 5302: -11,82 + 5315: -11,92 + 5316: -11,91 + 5317: -11,91 + 5318: -11,90 + 5319: -11,90 + 5320: -11,89 + 5321: -11,88 + 5322: -11,87 + 5393: -18,-7 + 5483: -41,11 + 5484: -41,15 + 5485: -41,22 + 5619: 15,-8 + 5629: -17,-8 + 5632: -18,-11 + 5633: -18,-11 + 5634: -18,-12 + 5635: -18,-13 + 5636: -18,-13 + 5637: -18,-15 + 5638: -18,-14 + 5639: -18,-16 + 5640: -18,-16 + 5641: -18,-17 + 5642: -18,-18 + 5657: 15,-4 + 5796: 14,-5 + 6084: -9,-16 + 6085: -9,-15 + 6086: -9,-14 + 6087: -9,-13 + 6157: -17,-21 + 6158: -17,-20 + 6159: -17,-19 + 6173: -17,-19 + 6271: -4,-14 + 6272: -4,-15 + 6275: -4,-17 + 6284: -3,-21 + 6285: -3,-20 + 6286: -3,-19 + 6287: 1,-19 + 6288: 1,-20 + 6289: 1,-21 + 6302: 15,-21 + 6303: 15,-20 + 6304: 15,-19 + 6309: 18,-13 + 6310: 18,-14 + 6311: 18,-15 + 6312: 18,-16 + 6313: 18,-17 + 6314: 18,-18 + 6315: 18,-19 + 6316: 18,-21 + 6342: 4,-16 + 6343: 4,-15 + 6373: 10,-12 + 6374: 10,-13 + 6375: 10,-14 + 6376: 10,-15 + 6405: 14,-17 + 6406: 14,-16 + 6408: 11,-16 + 6411: 14,-15 + 6456: -21,-20 + 6646: -21,-3 + 6647: -21,-2 + 6799: -21,11 + 6800: -21,12 + 6801: -21,12 + 6892: -34,10 + 6893: -34,11 + 6894: -34,11 + 6895: -34,11 + 6896: -34,11 + 6897: -34,12 + 6898: -34,12 + 6899: -34,13 + 6900: -34,14 + 6901: -34,14 + 6930: -22,13 + 6931: -22,14 + 6932: -22,10 + 6933: -22,10 + 6934: -22,9 + 6968: -22,-16 + 6969: -22,-16 + 6970: -22,-17 + 7065: 19,4 + 7066: 19,5 + 7067: 19,6 + 7075: 24,9 + 7113: 19,-12 + 7114: 19,-11 + 7115: 19,-10 + 7116: 26,-12 + 7117: 26,-11 + 7118: 26,-10 + 7132: 31,-11 + 7178: 31,-5 + 7191: 24,-8 + 7192: 24,-2 + 7218: 26,4 + 7219: 26,5 + 7220: 26,6 + 7224: 32,5 + 7225: 32,5 + 7226: 32,5 + 7312: 28,9 + 7313: 28,10 + 7314: 28,11 + 7381: 32,5 + 8003: 81,-21 + 8004: 81,-20 + 8009: 82,-19 + 8010: 82,-22 + 8011: 78,-22 + 8012: 76,-22 + 8013: 76,-19 + 8014: 78,-19 + 8028: 64,-19 + 8029: 64,-22 + 8171: 32,-10 + 8172: 32,-12 + 8184: 32,-16 + 8191: 32,-16 + 8229: 33,-7 + 8292: 41,-17 + 8293: 41,-16 + 8294: 41,-15 + 8295: 41,-14 + 8296: 41,-13 + 8297: 41,-11 + 8298: 41,-10 + 8299: 41,-9 + 8355: 39,-17 + 8379: 41,-20 + 8419: 42,-21 + 8420: 42,-19 + 8421: 42,-19 + 8443: 53,-20 + 8473: 54,-19 + 8474: 54,-21 + 8486: 56,-19 + 8487: 56,-19 + 8585: 54,-11 + 8586: 54,-29 + 8637: 63,-30 + 8638: 63,-30 + 8639: 63,-28 + 8640: 63,-28 + 8641: 63,-29 + 8642: 63,-26 + 8643: 63,-26 + 8644: 63,-27 + 8645: 63,-24 + 8646: 63,-25 + 8647: 63,-21 + 8648: 63,-18 + 8649: 63,-17 + 8650: 63,-16 + 8651: 63,-15 + 8652: 63,-15 + 8653: 63,-14 + 8654: 63,-13 + 8655: 63,-12 + 8656: 63,-11 + 8675: 63,-23 + 8676: 63,-23 + 8677: 63,-20 + 8830: 0,-23 + 8831: 0,-24 + 8832: 0,-27 + 8833: 0,-28 + 8840: -3,-25 + 8841: -3,-26 + 8857: 0,-30 + 8858: 0,-30 + 8859: 0,-31 + 8860: 0,-32 + 8861: 0,-33 + 8910: -13,-28 + 8918: -5,-28 + 8919: -5,-28 + 8920: -5,-27 + 8921: -5,-27 + 8936: -13,-23 + 8937: -6,-23 + 8938: -6,-23 + 8978: -5,-28 + 9177: 2,-65 + 9178: 2,-65 + 9254: 2,-82 + 9255: 2,-81 + 9256: 2,-80 + 9257: 2,-78 + 9258: 2,-79 + 9259: 2,-79 + 9260: 2,-74 + 9261: 2,-74 + 9262: 2,-73 + 9263: 2,-72 + 9264: 2,-71 + 9265: 2,-70 + 9266: 2,-69 + 9267: -9,-68 + 9268: -9,-67 + 9269: -9,-73 + 9270: -9,-74 + 9271: -9,-72 + 9283: -2,-71 + 9284: -2,-69 + 9285: -2,-70 + 9311: 1,-61 + 9312: 1,-59 + 9331: 0,-38 + 9332: 0,-40 + 9333: 0,-40 + 9334: 0,-41 + 9335: 0,-41 + 9336: 0,-42 + 9337: 0,-43 + 9338: 0,-45 + 9339: 0,-45 + 9340: 0,-48 + 9341: 0,-48 + 9342: 0,-49 + 9343: 0,-50 + 9344: 0,-52 + 9345: 0,-53 + 9346: 0,-54 + 9378: 0,-46 + 9379: 0,-46 + 9380: 0,-47 + 9381: 0,-55 + 9382: 0,-55 + 9383: 0,-56 + 9463: -39,-15 + 10425: 11,-52 + 10426: 11,-51 + 10427: 11,-50 + 10590: 4,-86 + 10591: 4,-86 + 10592: 4,-85 + 10593: 4,-84 + 10639: 49,-39 + 10640: 49,-40 + 10641: 49,-41 + 10642: 49,-43 + 10643: 49,-44 + 10666: 42,-42 + 11253: -58,-36 + 11254: -58,-36 + 11255: -58,-37 + 11256: -58,-37 + 11257: -58,-38 + 11274: -61,-43 + 11275: -58,-43 + 11276: -58,-43 + 11356: -6,-86 + 11357: -6,-86 + 11358: -6,-84 + 11359: -6,-85 + 11360: -6,-85 + 11361: -4,-86 + 11362: -4,-85 + 11363: -4,-85 + 11364: -4,-84 + 11365: 2,-86 + 11366: 2,-85 + 11367: 2,-84 + 11391: -12,-67 + 11392: -12,-66 + 11393: -12,-78 + 11399: -3,-48 + 11406: -3,-40 + 11407: -3,-41 + 11409: -4,-35 + 11420: -13,-30 + 11421: -13,-31 + 11422: -13,-32 + 11855: -37,-52 + 11863: -41,-55 + 11864: -41,-54 + 11865: -41,-54 + 11874: -23,-51 + 11875: -23,-51 + 11876: -23,-52 + 11877: -23,-53 + 12381: -4,-60 + 12758: -45,9 + 12760: -45,18 + 12874: -45,9 + 12876: -44,23 + 13425: -36,-62 + 14417: -46,14 + 14418: -46,12 + 14942: 6,22 + 14943: 6,23 + 14944: 6,24 + 14953: 18,23 + 14954: 18,22 + 14983: -8,22 + 14984: -8,23 + 14985: -8,24 + 15369: -8,-70 + 15418: -40,4 + 15419: -40,5 + 15420: -40,6 + 15425: -41,8 + 15426: -41,9 + 15427: -41,10 + 15428: -41,14 + 15429: -41,13 + 15430: -41,12 + 15431: -41,16 + 15432: -41,17 + 15433: -41,18 + 15434: -41,18 + 15435: -41,19 + 15436: -41,20 + 15437: -41,21 + 15814: 89,1 + 15815: 89,0 + 15825: 75,1 + 16722: -55,-13 + 16723: -55,-14 + 16724: -55,-14 + 16740: -62,-17 + 16741: -60,-17 + 16842: -52,4 + 16843: -52,5 + 16844: -52,6 + 16858: -56,-7 + 16859: -56,-9 + 17191: -46,12 + 17194: -46,14 + 17534: 7,84 + 17535: 7,83 + 17541: 8,79 + 17542: 8,78 + 17543: 8,77 + 17935: -44,23 + 18492: -17,-9 + 18493: -17,-10 + 18561: 15,-10 + 18562: 15,-9 + 18563: 15,-8 + 19900: -28,10 + 19901: -28,11 + 19902: -28,11 + 19903: -28,13 + 19904: -28,12 + 20024: -17,4 + 20025: -17,-1 + 20037: -16,0 + 20038: -16,1 + 20039: -16,2 + 20040: -16,3 + 20084: 70,25 + 20085: 70,24 + 20086: 70,23 + 20087: 70,22 + 20103: 60,25 + 20151: -21,-3 + 20152: -21,-2 + 20160: -21,4 + 20161: -21,5 + 20162: -21,6 + 20166: -18,5 + 20167: -18,3 + 20168: -18,2 + 20169: -18,2 + 20170: -18,1 + 20171: -18,0 + 20172: -18,-3 + 20173: -18,-2 + 20174: -18,-4 + 20175: -18,-4 + 20176: -18,-5 + 20177: -18,-6 + 20178: -18,-6 + 20185: -18,8 + 20186: -18,8 + 20187: -18,9 + 20188: -18,10 + 20189: -18,11 + 20190: -18,12 + 20191: -18,12 + 20192: -18,13 + 20193: -18,11 + 20194: -18,10 + 20195: -18,9 + 20196: -18,8 + 20197: -18,11 + 20198: -18,11 + 20199: -18,12 + 20200: -18,13 + 20201: -18,16 + 20202: -18,17 + 20203: -18,18 + 20204: -18,19 + 20205: -18,19 + 20206: -18,20 + 20222: -21,11 + 20223: -21,12 + 20224: -21,17 + 20225: -21,20 + 20226: -21,11 + 20227: -21,12 + 20229: -21,6 + 20230: -21,5 + 20231: -21,4 + 21382: 18,12 - node: cleanable: True color: '#FFFFFFFF' @@ -8487,850 +8489,850 @@ entities: 907: 28,0 919: 30,2 928: 28,-2 - 4082: -18,20 - 4083: -18,18 - 4084: -18,19 - 4085: -18,18 - 4086: -18,17 - 4087: -18,16 - 4088: -18,13 - 4089: -18,12 - 4090: -18,11 - 4091: -18,10 - 4092: -18,9 - 4093: -18,8 - 4106: -18,7 - 4107: -18,6 - 4108: -18,6 + 4055: -18,20 + 4056: -18,18 + 4057: -18,19 + 4058: -18,18 + 4059: -18,17 + 4060: -18,16 + 4061: -18,13 + 4062: -18,12 + 4063: -18,11 + 4064: -18,10 + 4065: -18,9 + 4066: -18,8 + 4079: -18,7 + 4080: -18,6 + 4081: -18,6 - node: color: '#00C9DAFF' id: BrickTileSteelLineN decals: - 8142: 26,-14 - 8143: 27,-14 - 8144: 29,-14 - 8145: 30,-14 - 8146: 28,-14 - 8147: 21,-14 - 8173: 27,-17 - 8174: 29,-17 - 8175: 31,-17 - 8194: 25,-19 + 8107: 26,-14 + 8108: 27,-14 + 8109: 29,-14 + 8110: 30,-14 + 8111: 28,-14 + 8112: 21,-14 + 8138: 27,-17 + 8139: 29,-17 + 8140: 31,-17 + 8159: 25,-19 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 3770: -27,65 - 3771: -26,65 - 3796: -28,59 - 10282: 37,-27 - 10293: 36,-26 - 10294: 36,-26 - 10715: 70,-50 - 10716: 70,-50 - 15934: 78,3 - 15938: 77,6 - 15939: 78,6 + 3743: -27,65 + 3744: -26,65 + 3769: -28,59 + 10247: 37,-27 + 10258: 36,-26 + 10259: 36,-26 + 10680: 70,-50 + 10681: 70,-50 + 15788: 78,3 + 15792: 77,6 + 15793: 78,6 - node: color: '#8BC9DAFF' id: BrickTileSteelLineN decals: - 3951: 19,63 + 3924: 19,63 - node: color: '#8CB7E8FF' id: BrickTileSteelLineN decals: - 9843: 21,-33 - 9844: 21,-31 - 10076: 25,-27 - 10087: 25,-25 + 9808: 21,-33 + 9809: 21,-31 + 10041: 25,-27 + 10052: 25,-25 + 10062: 28,-25 + 10063: 32,-25 + 10068: 30,-23 + 10076: 30,-22 + 10077: 29,-22 + 10078: 30,-22 + 10079: 31,-22 10097: 28,-25 10098: 32,-25 - 10103: 30,-23 - 10111: 30,-22 - 10112: 29,-22 - 10113: 30,-22 - 10114: 31,-22 - 10132: 28,-25 - 10133: 32,-25 - 10183: 22,-50 - 10190: 21,-46 - 10191: 21,-46 - 10192: 22,-46 - 10193: 23,-46 - 10262: 33,-47 + 10148: 22,-50 + 10155: 21,-46 + 10156: 21,-46 + 10157: 22,-46 + 10158: 23,-46 + 10227: 33,-47 - node: color: '#B18BDAFF' id: BrickTileSteelLineN decals: - 11988: -29,-33 - 12004: -27,-26 - 12005: -28,-26 - 12009: -30,-26 - 12036: -42,-31 - 12037: -42,-31 - 12038: -38,-31 - 12039: -34,-31 - 12040: -34,-31 - 12068: -40,-27 - 12076: -36,-27 - 12094: -48,-25 - 12095: -47,-25 - 12115: -46,-24 - 12117: -46,-22 - 12156: -28,-44 - 12157: -27,-44 - 12158: -26,-44 - 12159: -25,-44 - 12209: -25,-38 - 12231: -29,-43 - 12232: -24,-43 - 12386: -20,-38 - 12387: -19,-38 - 12388: -18,-38 - 16319: -64,-45 - 16320: -66,-46 - 19958: -9,-44 - 19959: -8,-44 - 19960: -8,-44 - 19961: -7,-44 - 19962: -6,-44 + 11953: -29,-33 + 11969: -27,-26 + 11970: -28,-26 + 11974: -30,-26 + 12001: -42,-31 + 12002: -42,-31 + 12003: -38,-31 + 12004: -34,-31 + 12005: -34,-31 + 12033: -40,-27 + 12041: -36,-27 + 12059: -48,-25 + 12060: -47,-25 + 12080: -46,-24 + 12082: -46,-22 + 12121: -28,-44 + 12122: -27,-44 + 12123: -26,-44 + 12124: -25,-44 + 12174: -25,-38 + 12196: -29,-43 + 12197: -24,-43 + 12351: -20,-38 + 12352: -19,-38 + 12353: -18,-38 + 16173: -64,-45 + 16174: -66,-46 + 19793: -9,-44 + 19794: -8,-44 + 19795: -8,-44 + 19796: -7,-44 + 19797: -6,-44 - node: color: '#CEDA8BFF' id: BrickTileSteelLineN decals: - 10993: 27,-66 - 10994: 28,-66 - 10995: 29,-66 - 10996: 30,-66 - 10997: 31,-66 + 10958: 27,-66 + 10959: 28,-66 + 10960: 29,-66 + 10961: 30,-66 + 10962: 31,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelLineN decals: - 7829: 58,2 - 7830: 62,2 - 7831: 66,2 - 7862: 59,5 - 7863: 57,5 - 7864: 61,5 - 7865: 63,5 - 7866: 65,5 - 7867: 67,5 - 7873: 70,6 - 7883: 58,2 - 7884: 62,2 - 7885: 66,2 - 19483: 69,7 - 19488: 69,9 - 19493: 66,6 - 19494: 62,6 - 19505: 58,6 + 7802: 58,2 + 7803: 62,2 + 7804: 66,2 + 7835: 59,5 + 7836: 57,5 + 7837: 61,5 + 7838: 63,5 + 7839: 65,5 + 7840: 67,5 + 7846: 70,6 + 7856: 58,2 + 7857: 62,2 + 7858: 66,2 + 19318: 69,7 + 19323: 69,9 + 19328: 66,6 + 19329: 62,6 + 19340: 58,6 - node: color: '#DA8BC9FF' id: BrickTileSteelLineN decals: - 3958: 20,63 + 3931: 20,63 - node: color: '#DABC8BFF' id: BrickTileSteelLineN decals: - 3738: 12,73 - 3741: 10,83 - 3746: 10,89 - 3751: 5,91 + 3711: 12,73 + 3714: 10,83 + 3719: 10,89 + 3724: 5,91 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 20498: -24,-1 - 20510: -48,7 - 20512: -48,9 - 20513: -47,9 - 20514: -46,9 - 20527: 4,-83 - 20528: 5,-79 - 20529: 5,-73 - 20530: 5,-63 - 20541: 4,-87 - 20542: 4,-83 - 20593: 9,-77 - 20594: 8,-77 - 20602: 9,-74 - 20623: 4,-58 - 20624: 5,-58 - 20625: 6,-58 - 20639: 12,-33 - 20649: 12,-30 - 20653: 12,-33 - 20673: 2,59 - 20693: 1,65 - 20694: 2,65 - 20711: 40,2 - 20712: 40,10 - 20723: 40,13 - 20728: 42,5 - 20729: 43,5 - 20730: 44,5 - 20731: 45,5 - 20745: 36,10 - 20746: 36,12 - 20796: 73,4 - 20835: 46,10 - 20836: 47,10 - 20837: 47,10 - 20838: 48,10 - 20864: 50,1 - 20865: 51,1 - 20866: 51,1 - 20882: 52,32 - 20883: 51,32 - 20884: 53,32 - 20885: 54,32 - 20886: 55,32 - 20887: 56,32 - 20888: 57,32 - 20896: 52,20 - 20899: 57,20 - 20944: 51,14 - 20945: 47,14 - 20957: 52,13 - 20958: 53,13 - 20959: 54,13 - 20960: 55,13 - 20961: 56,13 - 20962: 57,13 - 20963: 57,13 - 20964: 58,13 - 20965: 59,13 - 20966: 51,19 - 20967: 53,19 - 20972: 46,24 - 21039: 53,10 - 21050: 51,9 - 21051: 52,9 - 21052: 54,9 - 21053: 81,10 - 21054: 84,10 - 21055: 85,10 - 21056: 82,14 - 21057: 83,14 - 21058: 85,14 - 21059: 86,14 - 21060: 88,14 - 21061: 89,14 - 21062: 90,14 - 21063: 87,14 - 21064: 84,14 - 21077: 91,15 - 21078: 92,15 - 21079: 93,15 - 21104: 82,10 - 21116: 77,10 - 21176: 73,20 - 21183: 73,23 - 21184: 74,23 - 21201: 75,24 - 21214: 69,1 - 21215: 70,1 - 21220: 65,-2 - 21234: 70,-3 - 21246: 52,-2 - 21247: 61,-2 - 21248: 47,-2 - 21254: 47,-2 - 21270: 51,-3 - 21308: 36,7 - 21309: 35,3 - 21316: 34,6 - 21317: 35,6 - 21318: 37,6 - 21398: -19,-24 - 21399: -18,-24 - 21413: 48,-7 - 21414: 49,-7 - 21415: 50,-7 - 21416: 46,-3 - 21423: 51,-6 - 21430: 47,-7 - 21442: 57,-3 - 21444: 56,-2 - 21455: 51,1 - 21456: 50,1 - 21457: 52,1 - 21458: 53,1 - 21459: 54,1 - 21460: 55,1 - 21461: 56,1 - 21462: 57,1 - 21463: 59,1 - 21464: 60,1 - 21465: 61,1 - 21466: 63,1 - 21467: 64,1 - 21468: 64,1 - 21469: 65,1 - 21470: 67,1 - 21594: 22,22 - 21595: 23,22 - 21596: 24,22 - 21597: 25,22 - 21598: 26,22 - 21599: 27,22 + 20333: -24,-1 + 20345: -48,7 + 20347: -48,9 + 20348: -47,9 + 20349: -46,9 + 20362: 4,-83 + 20363: 5,-79 + 20364: 5,-73 + 20365: 5,-63 + 20376: 4,-87 + 20377: 4,-83 + 20428: 9,-77 + 20429: 8,-77 + 20437: 9,-74 + 20458: 4,-58 + 20459: 5,-58 + 20460: 6,-58 + 20474: 12,-33 + 20484: 12,-30 + 20488: 12,-33 + 20508: 2,59 + 20528: 1,65 + 20529: 2,65 + 20546: 40,2 + 20547: 40,10 + 20558: 40,13 + 20563: 42,5 + 20564: 43,5 + 20565: 44,5 + 20566: 45,5 + 20580: 36,10 + 20581: 36,12 + 20631: 73,4 + 20670: 46,10 + 20671: 47,10 + 20672: 47,10 + 20673: 48,10 + 20699: 50,1 + 20700: 51,1 + 20701: 51,1 + 20717: 52,32 + 20718: 51,32 + 20719: 53,32 + 20720: 54,32 + 20721: 55,32 + 20722: 56,32 + 20723: 57,32 + 20731: 52,20 + 20734: 57,20 + 20779: 51,14 + 20780: 47,14 + 20792: 52,13 + 20793: 53,13 + 20794: 54,13 + 20795: 55,13 + 20796: 56,13 + 20797: 57,13 + 20798: 57,13 + 20799: 58,13 + 20800: 59,13 + 20801: 51,19 + 20802: 53,19 + 20807: 46,24 + 20874: 53,10 + 20885: 51,9 + 20886: 52,9 + 20887: 54,9 + 20888: 81,10 + 20889: 84,10 + 20890: 85,10 + 20891: 82,14 + 20892: 83,14 + 20893: 85,14 + 20894: 86,14 + 20895: 88,14 + 20896: 89,14 + 20897: 90,14 + 20898: 87,14 + 20899: 84,14 + 20912: 91,15 + 20913: 92,15 + 20914: 93,15 + 20939: 82,10 + 20951: 77,10 + 21011: 73,20 + 21018: 73,23 + 21019: 74,23 + 21036: 75,24 + 21049: 69,1 + 21050: 70,1 + 21055: 65,-2 + 21069: 70,-3 + 21081: 52,-2 + 21082: 61,-2 + 21083: 47,-2 + 21089: 47,-2 + 21105: 51,-3 + 21143: 36,7 + 21144: 35,3 + 21151: 34,6 + 21152: 35,6 + 21153: 37,6 + 21233: -19,-24 + 21234: -18,-24 + 21248: 48,-7 + 21249: 49,-7 + 21250: 50,-7 + 21251: 46,-3 + 21258: 51,-6 + 21265: 47,-7 + 21277: 57,-3 + 21279: 56,-2 + 21290: 51,1 + 21291: 50,1 + 21292: 52,1 + 21293: 53,1 + 21294: 54,1 + 21295: 55,1 + 21296: 56,1 + 21297: 57,1 + 21298: 59,1 + 21299: 60,1 + 21300: 61,1 + 21301: 63,1 + 21302: 64,1 + 21303: 64,1 + 21304: 65,1 + 21305: 67,1 + 21429: 22,22 + 21430: 23,22 + 21431: 24,22 + 21432: 25,22 + 21433: 26,22 + 21434: 27,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2257: -20,54 - 2258: -19,54 - 2259: -18,54 - 2264: -16,52 - 2265: -22,52 - 2266: -22,52 - 2340: -24,39 - 2341: -25,39 - 2342: -26,39 - 2343: -27,39 - 2406: -31,32 - 2424: -32,37 - 2763: -13,50 - 2764: -11,50 - 2765: -10,50 - 2766: -9,50 - 2767: -8,50 - 2768: -7,50 - 2769: -5,50 - 2770: -4,50 - 2785: -2,48 - 2816: -3,46 - 2820: -4,47 - 2834: -6,28 - 2847: -27,43 - 2848: -28,43 - 2849: -29,43 - 2861: -31,43 - 2868: -30,39 - 3076: -20,54 - 3077: -19,54 - 3078: -18,54 - 3079: 1,59 - 3083: -1,55 - 3086: 1,55 - 3087: 2,55 - 3088: 1,58 - 3089: 0,58 - 3090: -1,58 - 3096: -16,58 - 3097: -15,58 - 3098: -14,58 - 3099: -13,58 - 3100: -12,58 - 3101: -11,58 - 3102: -10,58 - 3103: -9,58 - 3104: -8,58 - 3383: -28,69 - 3384: -27,69 - 3385: -26,69 - 3386: -25,69 - 3387: -24,69 - 3388: -23,69 - 3389: -21,69 - 3390: -21,69 - 3391: -22,69 - 3392: -19,69 - 3393: -20,69 - 3394: -18,69 - 3395: -17,69 - 3396: -16,69 - 3397: -15,69 - 3398: -14,69 - 3441: -10,69 - 3442: -9,69 - 3443: -8,69 - 3444: -8,69 - 3445: -7,69 - 3446: -5,69 - 3447: -6,69 - 3448: -5,69 - 3449: -4,69 - 3450: -3,69 - 3468: -2,58 - 3480: 6,66 - 3572: -2,69 - 3573: -1,69 - 3574: 0,69 - 3575: 1,69 - 3576: 2,69 - 3577: 3,69 - 3578: 4,69 - 3601: -9,77 - 3603: -15,77 - 3613: -15,84 - 3614: -9,84 - 3623: -33,84 - 3624: -27,84 - 3634: -33,77 - 3635: -27,77 - 3640: 6,71 - 3695: 3,84 - 3698: 3,77 - 3711: 6,66 - 3755: -25,66 - 3761: -30,66 - 5150: 31,29 - 5153: 30,32 - 5154: 31,32 - 5155: 32,32 - 5156: 33,32 - 5157: 34,32 - 5165: 35,29 - 5401: 14,-8 - 5402: 13,-8 - 5403: 9,-8 - 5404: 7,-8 - 5405: 6,-8 - 5406: 2,-8 - 5407: 1,-8 - 5408: -2,-8 - 5409: -3,-8 - 5410: -3,-8 - 5411: -4,-8 - 5412: -5,-8 - 5413: -6,-8 - 5414: -11,-8 - 5415: -12,-8 - 5416: -14,-8 - 5417: -15,-8 - 5418: -16,-8 - 5419: -16,-8 - 5468: -29,6 - 5469: -28,6 - 5470: -28,6 - 5471: -27,6 - 5472: -27,6 - 5473: -24,6 - 5474: -24,6 - 5475: -23,6 - 5476: -23,6 - 5477: -22,6 - 5478: -22,6 - 5499: -39,6 - 5500: -38,6 - 5501: -37,6 - 5502: -35,6 - 5503: -34,6 - 5504: -34,6 - 5505: -33,6 - 5506: -32,6 - 5509: -30,6 - 5514: -41,23 - 5515: -43,23 - 5562: -20,7 - 5563: -19,7 - 5564: -18,7 - 5581: -20,-7 - 5582: -19,-7 - 5583: -18,-7 - 5649: 12,-8 - 5650: 5,-8 - 5651: 0,-8 - 5652: -7,-8 - 5653: -8,-8 - 5654: -9,-8 - 5655: -13,-8 - 5812: 9,-4 - 5813: 10,-4 - 5814: 11,-4 - 5819: 13,-4 - 5820: 14,-4 - 5831: 8,-4 - 5836: 10,-7 - 5837: 11,-7 - 5838: 8,-7 - 6122: -13,-18 - 6123: -12,-18 - 6124: -11,-18 - 6130: -10,-19 - 6131: -9,-19 - 6132: -7,-19 - 6133: -6,-19 - 6134: -5,-19 - 6135: -2,-19 - 6136: -1,-19 - 6137: 0,-19 - 6138: 2,-19 - 6139: 4,-19 - 6140: 5,-19 - 6141: 6,-19 - 6142: 3,-19 - 6143: 7,-19 - 6144: 9,-19 - 6145: 10,-19 - 6146: 11,-19 - 6162: 16,-7 - 6163: 17,-7 - 6164: 18,-7 - 6175: 16,7 - 6176: 17,7 - 6177: 18,7 - 6178: -14,-19 - 6179: -15,-19 - 6180: -16,-19 - 6291: -5,-14 - 6304: -4,-18 - 6372: 3,-14 - 6409: 8,-18 - 6426: 12,-18 - 6427: 13,-18 - 6428: 14,-18 - 6442: 13,-15 - 6443: 13,-15 - 6671: -33,3 - 6672: -32,3 - 6741: -23,3 - 6848: -42,2 - 6933: -36,7 - 6941: -36,17 - 6942: -36,17 - 6949: -36,19 - 6950: -36,19 - 6953: -26,7 - 6954: -25,7 - 6964: -23,15 - 7070: 20,6 - 7071: 21,6 - 7077: 23,6 - 7078: 24,6 - 7079: 25,6 - 7106: 21,10 - 7107: 23,10 - 7113: 22,7 - 7125: 20,-10 - 7126: 21,-10 - 7127: 23,-10 - 7128: 24,-10 - 7129: 25,-10 - 7154: 27,-10 - 7155: 28,-10 - 7156: 29,-10 - 7157: 31,-10 - 7158: 30,-10 - 7165: 22,3 - 7183: 26,2 - 7184: 27,2 - 7185: 28,2 - 7186: 29,2 - 7190: 25,-7 - 7191: 27,-7 - 7192: 26,-7 - 7202: 30,-7 - 7203: 29,-7 - 7222: 30,3 - 7230: 27,6 - 7231: 28,6 - 7232: 30,6 - 7233: 31,6 - 7234: 32,6 - 7348: 29,12 - 7349: 30,12 - 7350: 31,12 - 7351: 31,12 - 7352: 32,12 - 8026: 79,-19 - 8027: 81,-19 - 8028: 80,-19 - 8029: 80,-19 - 8030: 77,-19 - 8031: 77,-19 - 8039: 77,-22 - 8059: 65,-22 - 8061: 65,-19 - 8141: 25,-13 - 8339: 41,-8 - 8340: 41,-8 - 8341: 40,-8 - 8342: 39,-8 - 8343: 38,-8 - 8344: 34,-8 - 8345: 34,-8 - 8346: 35,-8 - 8347: 37,-8 - 8348: 36,-8 - 8387: 39,-18 - 8388: 41,-18 - 8396: 40,-19 - 8430: 43,-19 - 8431: 44,-19 - 8432: 45,-19 - 8433: 45,-19 - 8434: 48,-19 - 8435: 49,-19 - 8436: 49,-19 - 8437: 50,-19 - 8438: 50,-19 - 8439: 50,-19 - 8440: 50,-19 - 8441: 51,-19 - 8442: 51,-19 - 8443: 53,-19 - 8444: 53,-19 - 8464: 44,-22 - 8465: 44,-22 - 8466: 48,-22 - 8467: 48,-22 - 8468: 52,-22 - 8693: 62,-10 - 8694: 57,-10 - 8697: 58,-11 - 8698: 59,-11 - 8699: 60,-11 - 8700: 56,-10 - 8831: -14,-22 - 8832: -13,-22 - 8833: -7,-22 - 8834: -7,-22 - 8835: -6,-22 - 8836: -2,-22 - 8837: -2,-22 - 8838: -1,-22 - 8839: 0,-22 - 8840: 4,-22 - 8841: 5,-22 - 8842: 11,-22 - 8843: 12,-22 - 8862: -2,-29 - 8863: -1,-29 - 8864: 0,-29 - 8909: -2,-37 - 8910: -1,-37 - 8911: 0,-37 - 8912: 0,-37 - 8957: -12,-24 - 8958: -11,-24 - 8959: -11,-24 - 8960: -10,-24 - 8961: -10,-24 - 8962: -9,-24 - 8963: -8,-24 - 8964: -16,-24 - 8965: -15,-24 - 8966: -5,-24 - 8967: -4,-24 - 9009: -4,-24 - 9210: 1,-64 - 9211: 1,-64 - 9240: -8,-64 - 9241: -8,-64 - 9242: -7,-64 - 9243: -7,-64 - 9244: -6,-64 - 9245: -6,-64 - 9246: -5,-64 - 9247: -5,-64 - 9248: -4,-64 - 9249: -4,-64 - 9250: -3,-64 - 9251: -9,-64 - 9307: -8,-75 - 9308: -7,-75 - 9309: -6,-75 - 9310: -2,-75 - 9311: -1,-75 - 9312: -3,-75 - 9313: -8,-69 - 9314: -8,-69 - 9315: -1,-69 - 9337: -2,-63 - 9338: -1,-63 - 9339: 0,-63 - 9422: -2,-57 - 9423: -1,-57 - 9424: -1,-57 - 9425: 0,-57 - 9489: -40,-14 - 9490: -41,-14 - 9491: -41,-14 - 10432: 3,-50 - 10433: 4,-50 - 10434: 4,-50 - 10435: 8,-50 - 10436: 9,-50 - 10437: 9,-50 - 10438: 10,-50 - 10439: 11,-50 - 10620: 4,-87 - 10645: 55,-43 - 10669: 44,-38 - 10670: 45,-38 - 10671: 46,-38 - 10672: 47,-38 - 10673: 48,-38 - 10698: 45,-46 - 11352: -77,-23 - 11369: -11,-79 - 11370: -6,-83 - 11371: -4,-83 - 11373: 2,-83 - 11378: -6,-87 - 11379: -4,-87 - 11380: 2,-87 - 11381: 2,-87 - 11462: -14,-30 - 11465: -15,-33 - 11466: -13,-33 - 11694: -15,-33 - 11695: -13,-33 - 11878: -39,-57 - 11879: -41,-51 - 11880: -41,-51 - 11881: -40,-51 - 11882: -40,-51 - 11883: -38,-51 - 11884: -38,-51 - 11908: -25,-50 - 12829: 5,70 - 12830: 6,70 - 12831: 7,70 - 12832: -7,66 - 12833: -6,66 - 12834: -5,66 - 12835: -4,66 - 12836: -3,66 - 12864: -7,59 - 12865: -6,59 - 12866: -4,59 - 12867: -4,59 - 12868: -3,59 - 12869: -5,59 - 12870: -20,59 - 12871: -21,59 - 12872: -19,59 - 12873: -19,59 - 12874: -17,59 - 12875: -18,59 - 12895: -13,70 - 12896: -12,70 - 12897: -11,70 - 12898: -29,70 - 12899: -30,70 - 12900: -31,70 - 12901: -21,66 - 12902: -20,66 - 12903: -19,66 - 12904: -18,66 - 12905: -18,66 - 12906: -17,66 - 12907: -17,66 - 13457: -37,-64 - 14500: -17,24 - 14501: -16,24 - 14502: -15,24 - 14503: -14,24 - 14504: -13,24 - 14505: -12,24 - 14506: -11,24 - 14507: -10,24 - 14964: -7,24 - 14965: -6,24 - 14966: -5,24 - 14967: -4,24 - 14968: -3,24 - 14969: -2,24 - 14970: -1,24 - 14971: 1,24 - 14972: 2,24 - 14973: 3,24 - 14980: 9,24 - 14981: 10,24 - 14982: 11,24 - 14983: 12,24 - 14984: 12,24 - 14985: 13,24 - 14986: 17,24 - 14987: 18,24 - 15008: -20,21 - 15009: -19,21 - 15010: -18,21 - 15077: 16,21 - 15078: 17,21 - 15079: 18,21 - 15408: -5,-75 - 15409: -4,-75 - 15457: -43,7 - 15458: -42,7 - 15459: -41,7 - 15747: 77,2 - 15945: 79,2 - 15946: 80,2 - 15947: 81,2 - 15948: 82,2 - 15949: 83,2 - 15950: 87,2 - 15951: 88,2 - 15952: 89,2 - 15954: 81,-1 - 15955: 85,-1 - 15956: 89,-1 - 15957: 84,2 - 15958: 85,2 - 15959: 86,2 - 16553: -60,-48 - 16844: -60,-12 - 16845: -59,-12 - 16846: -57,-12 - 16872: -56,-12 - 16876: -58,-11 - 16879: -56,-19 - 16882: -56,-19 - 16883: -54,-19 - 16889: -61,-17 - 16933: -58,-5 - 16966: -53,3 - 16967: -52,3 - 16968: -53,7 - 16969: -52,7 - 16980: -53,3 - 16981: -52,3 - 16984: -53,7 - 16985: -52,7 - 16997: -50,-1 - 18083: -45,23 - 18605: -60,-44 - 18614: -60,-44 - 18643: -13,-12 - 18644: -13,-12 - 18645: -15,-12 - 18646: -11,-12 - 18647: -12,-12 - 18677: -14,-11 - 18678: -10,-11 - 18711: 8,-11 - 18713: 7,-12 - 18714: 9,-12 - 18974: 4,-8 - 18975: 3,-8 - 20081: -27,9 - 20082: -26,9 - 20083: -25,9 - 20084: -25,9 - 20085: -24,9 - 20086: -24,9 - 20091: -24,15 - 20092: -28,15 - 20093: -27,15 - 20207: -16,4 - 20247: 70,26 - 20248: 69,26 - 20275: 63,26 - 20276: 68,26 - 20344: -20,-7 - 20345: -19,-7 - 20346: -18,-7 - 20347: -20,7 - 20348: -19,7 - 20349: -18,7 - 21549: 22,10 + 2230: -20,54 + 2231: -19,54 + 2232: -18,54 + 2237: -16,52 + 2238: -22,52 + 2239: -22,52 + 2313: -24,39 + 2314: -25,39 + 2315: -26,39 + 2316: -27,39 + 2379: -31,32 + 2397: -32,37 + 2736: -13,50 + 2737: -11,50 + 2738: -10,50 + 2739: -9,50 + 2740: -8,50 + 2741: -7,50 + 2742: -5,50 + 2743: -4,50 + 2758: -2,48 + 2789: -3,46 + 2793: -4,47 + 2807: -6,28 + 2820: -27,43 + 2821: -28,43 + 2822: -29,43 + 2834: -31,43 + 2841: -30,39 + 3049: -20,54 + 3050: -19,54 + 3051: -18,54 + 3052: 1,59 + 3056: -1,55 + 3059: 1,55 + 3060: 2,55 + 3061: 1,58 + 3062: 0,58 + 3063: -1,58 + 3069: -16,58 + 3070: -15,58 + 3071: -14,58 + 3072: -13,58 + 3073: -12,58 + 3074: -11,58 + 3075: -10,58 + 3076: -9,58 + 3077: -8,58 + 3356: -28,69 + 3357: -27,69 + 3358: -26,69 + 3359: -25,69 + 3360: -24,69 + 3361: -23,69 + 3362: -21,69 + 3363: -21,69 + 3364: -22,69 + 3365: -19,69 + 3366: -20,69 + 3367: -18,69 + 3368: -17,69 + 3369: -16,69 + 3370: -15,69 + 3371: -14,69 + 3414: -10,69 + 3415: -9,69 + 3416: -8,69 + 3417: -8,69 + 3418: -7,69 + 3419: -5,69 + 3420: -6,69 + 3421: -5,69 + 3422: -4,69 + 3423: -3,69 + 3441: -2,58 + 3453: 6,66 + 3545: -2,69 + 3546: -1,69 + 3547: 0,69 + 3548: 1,69 + 3549: 2,69 + 3550: 3,69 + 3551: 4,69 + 3574: -9,77 + 3576: -15,77 + 3586: -15,84 + 3587: -9,84 + 3596: -33,84 + 3597: -27,84 + 3607: -33,77 + 3608: -27,77 + 3613: 6,71 + 3668: 3,84 + 3671: 3,77 + 3684: 6,66 + 3728: -25,66 + 3734: -30,66 + 5123: 31,29 + 5126: 30,32 + 5127: 31,32 + 5128: 32,32 + 5129: 33,32 + 5130: 34,32 + 5138: 35,29 + 5374: 14,-8 + 5375: 13,-8 + 5376: 9,-8 + 5377: 7,-8 + 5378: 6,-8 + 5379: 2,-8 + 5380: 1,-8 + 5381: -2,-8 + 5382: -3,-8 + 5383: -3,-8 + 5384: -4,-8 + 5385: -5,-8 + 5386: -6,-8 + 5387: -11,-8 + 5388: -12,-8 + 5389: -14,-8 + 5390: -15,-8 + 5391: -16,-8 + 5392: -16,-8 + 5441: -29,6 + 5442: -28,6 + 5443: -28,6 + 5444: -27,6 + 5445: -27,6 + 5446: -24,6 + 5447: -24,6 + 5448: -23,6 + 5449: -23,6 + 5450: -22,6 + 5451: -22,6 + 5472: -39,6 + 5473: -38,6 + 5474: -37,6 + 5475: -35,6 + 5476: -34,6 + 5477: -34,6 + 5478: -33,6 + 5479: -32,6 + 5482: -30,6 + 5487: -41,23 + 5488: -43,23 + 5535: -20,7 + 5536: -19,7 + 5537: -18,7 + 5554: -20,-7 + 5555: -19,-7 + 5556: -18,-7 + 5622: 12,-8 + 5623: 5,-8 + 5624: 0,-8 + 5625: -7,-8 + 5626: -8,-8 + 5627: -9,-8 + 5628: -13,-8 + 5785: 9,-4 + 5786: 10,-4 + 5787: 11,-4 + 5792: 13,-4 + 5793: 14,-4 + 5804: 8,-4 + 5809: 10,-7 + 5810: 11,-7 + 5811: 8,-7 + 6095: -13,-18 + 6096: -12,-18 + 6097: -11,-18 + 6103: -10,-19 + 6104: -9,-19 + 6105: -7,-19 + 6106: -6,-19 + 6107: -5,-19 + 6108: -2,-19 + 6109: -1,-19 + 6110: 0,-19 + 6111: 2,-19 + 6112: 4,-19 + 6113: 5,-19 + 6114: 6,-19 + 6115: 3,-19 + 6116: 7,-19 + 6117: 9,-19 + 6118: 10,-19 + 6119: 11,-19 + 6135: 16,-7 + 6136: 17,-7 + 6137: 18,-7 + 6148: 16,7 + 6149: 17,7 + 6150: 18,7 + 6151: -14,-19 + 6152: -15,-19 + 6153: -16,-19 + 6264: -5,-14 + 6277: -4,-18 + 6345: 3,-14 + 6382: 8,-18 + 6399: 12,-18 + 6400: 13,-18 + 6401: 14,-18 + 6415: 13,-15 + 6416: 13,-15 + 6644: -33,3 + 6645: -32,3 + 6714: -23,3 + 6821: -42,2 + 6906: -36,7 + 6914: -36,17 + 6915: -36,17 + 6922: -36,19 + 6923: -36,19 + 6926: -26,7 + 6927: -25,7 + 6937: -23,15 + 7043: 20,6 + 7044: 21,6 + 7050: 23,6 + 7051: 24,6 + 7052: 25,6 + 7079: 21,10 + 7080: 23,10 + 7086: 22,7 + 7098: 20,-10 + 7099: 21,-10 + 7100: 23,-10 + 7101: 24,-10 + 7102: 25,-10 + 7127: 27,-10 + 7128: 28,-10 + 7129: 29,-10 + 7130: 31,-10 + 7131: 30,-10 + 7138: 22,3 + 7156: 26,2 + 7157: 27,2 + 7158: 28,2 + 7159: 29,2 + 7163: 25,-7 + 7164: 27,-7 + 7165: 26,-7 + 7175: 30,-7 + 7176: 29,-7 + 7195: 30,3 + 7203: 27,6 + 7204: 28,6 + 7205: 30,6 + 7206: 31,6 + 7207: 32,6 + 7321: 29,12 + 7322: 30,12 + 7323: 31,12 + 7324: 31,12 + 7325: 32,12 + 7997: 79,-19 + 7998: 81,-19 + 7999: 80,-19 + 8000: 80,-19 + 8001: 77,-19 + 8002: 77,-19 + 8007: 77,-22 + 8024: 65,-22 + 8026: 65,-19 + 8106: 25,-13 + 8304: 41,-8 + 8305: 41,-8 + 8306: 40,-8 + 8307: 39,-8 + 8308: 38,-8 + 8309: 34,-8 + 8310: 34,-8 + 8311: 35,-8 + 8312: 37,-8 + 8313: 36,-8 + 8352: 39,-18 + 8353: 41,-18 + 8361: 40,-19 + 8395: 43,-19 + 8396: 44,-19 + 8397: 45,-19 + 8398: 45,-19 + 8399: 48,-19 + 8400: 49,-19 + 8401: 49,-19 + 8402: 50,-19 + 8403: 50,-19 + 8404: 50,-19 + 8405: 50,-19 + 8406: 51,-19 + 8407: 51,-19 + 8408: 53,-19 + 8409: 53,-19 + 8429: 44,-22 + 8430: 44,-22 + 8431: 48,-22 + 8432: 48,-22 + 8433: 52,-22 + 8658: 62,-10 + 8659: 57,-10 + 8662: 58,-11 + 8663: 59,-11 + 8664: 60,-11 + 8665: 56,-10 + 8796: -14,-22 + 8797: -13,-22 + 8798: -7,-22 + 8799: -7,-22 + 8800: -6,-22 + 8801: -2,-22 + 8802: -2,-22 + 8803: -1,-22 + 8804: 0,-22 + 8805: 4,-22 + 8806: 5,-22 + 8807: 11,-22 + 8808: 12,-22 + 8827: -2,-29 + 8828: -1,-29 + 8829: 0,-29 + 8874: -2,-37 + 8875: -1,-37 + 8876: 0,-37 + 8877: 0,-37 + 8922: -12,-24 + 8923: -11,-24 + 8924: -11,-24 + 8925: -10,-24 + 8926: -10,-24 + 8927: -9,-24 + 8928: -8,-24 + 8929: -16,-24 + 8930: -15,-24 + 8931: -5,-24 + 8932: -4,-24 + 8974: -4,-24 + 9175: 1,-64 + 9176: 1,-64 + 9205: -8,-64 + 9206: -8,-64 + 9207: -7,-64 + 9208: -7,-64 + 9209: -6,-64 + 9210: -6,-64 + 9211: -5,-64 + 9212: -5,-64 + 9213: -4,-64 + 9214: -4,-64 + 9215: -3,-64 + 9216: -9,-64 + 9272: -8,-75 + 9273: -7,-75 + 9274: -6,-75 + 9275: -2,-75 + 9276: -1,-75 + 9277: -3,-75 + 9278: -8,-69 + 9279: -8,-69 + 9280: -1,-69 + 9302: -2,-63 + 9303: -1,-63 + 9304: 0,-63 + 9387: -2,-57 + 9388: -1,-57 + 9389: -1,-57 + 9390: 0,-57 + 9454: -40,-14 + 9455: -41,-14 + 9456: -41,-14 + 10397: 3,-50 + 10398: 4,-50 + 10399: 4,-50 + 10400: 8,-50 + 10401: 9,-50 + 10402: 9,-50 + 10403: 10,-50 + 10404: 11,-50 + 10585: 4,-87 + 10610: 55,-43 + 10634: 44,-38 + 10635: 45,-38 + 10636: 46,-38 + 10637: 47,-38 + 10638: 48,-38 + 10663: 45,-46 + 11317: -77,-23 + 11334: -11,-79 + 11335: -6,-83 + 11336: -4,-83 + 11338: 2,-83 + 11343: -6,-87 + 11344: -4,-87 + 11345: 2,-87 + 11346: 2,-87 + 11427: -14,-30 + 11430: -15,-33 + 11431: -13,-33 + 11659: -15,-33 + 11660: -13,-33 + 11843: -39,-57 + 11844: -41,-51 + 11845: -41,-51 + 11846: -40,-51 + 11847: -40,-51 + 11848: -38,-51 + 11849: -38,-51 + 11873: -25,-50 + 12794: 5,70 + 12795: 6,70 + 12796: 7,70 + 12797: -7,66 + 12798: -6,66 + 12799: -5,66 + 12800: -4,66 + 12801: -3,66 + 12829: -7,59 + 12830: -6,59 + 12831: -4,59 + 12832: -4,59 + 12833: -3,59 + 12834: -5,59 + 12835: -20,59 + 12836: -21,59 + 12837: -19,59 + 12838: -19,59 + 12839: -17,59 + 12840: -18,59 + 12860: -13,70 + 12861: -12,70 + 12862: -11,70 + 12863: -29,70 + 12864: -30,70 + 12865: -31,70 + 12866: -21,66 + 12867: -20,66 + 12868: -19,66 + 12869: -18,66 + 12870: -18,66 + 12871: -17,66 + 12872: -17,66 + 13422: -37,-64 + 14465: -17,24 + 14466: -16,24 + 14467: -15,24 + 14468: -14,24 + 14469: -13,24 + 14470: -12,24 + 14471: -11,24 + 14472: -10,24 + 14929: -7,24 + 14930: -6,24 + 14931: -5,24 + 14932: -4,24 + 14933: -3,24 + 14934: -2,24 + 14935: -1,24 + 14936: 1,24 + 14937: 2,24 + 14938: 3,24 + 14945: 9,24 + 14946: 10,24 + 14947: 11,24 + 14948: 12,24 + 14949: 12,24 + 14950: 13,24 + 14951: 17,24 + 14952: 18,24 + 14973: -20,21 + 14974: -19,21 + 14975: -18,21 + 15042: 16,21 + 15043: 17,21 + 15044: 18,21 + 15373: -5,-75 + 15374: -4,-75 + 15422: -43,7 + 15423: -42,7 + 15424: -41,7 + 15601: 77,2 + 15799: 79,2 + 15800: 80,2 + 15801: 81,2 + 15802: 82,2 + 15803: 83,2 + 15804: 87,2 + 15805: 88,2 + 15806: 89,2 + 15808: 81,-1 + 15809: 85,-1 + 15810: 89,-1 + 15811: 84,2 + 15812: 85,2 + 15813: 86,2 + 16407: -60,-48 + 16698: -60,-12 + 16699: -59,-12 + 16700: -57,-12 + 16726: -56,-12 + 16730: -58,-11 + 16733: -56,-19 + 16736: -56,-19 + 16737: -54,-19 + 16743: -61,-17 + 16787: -58,-5 + 16820: -53,3 + 16821: -52,3 + 16822: -53,7 + 16823: -52,7 + 16834: -53,3 + 16835: -52,3 + 16838: -53,7 + 16839: -52,7 + 16851: -50,-1 + 17937: -45,23 + 18440: -60,-44 + 18449: -60,-44 + 18478: -13,-12 + 18479: -13,-12 + 18480: -15,-12 + 18481: -11,-12 + 18482: -12,-12 + 18512: -14,-11 + 18513: -10,-11 + 18546: 8,-11 + 18548: 7,-12 + 18549: 9,-12 + 18809: 4,-8 + 18810: 3,-8 + 19916: -27,9 + 19917: -26,9 + 19918: -25,9 + 19919: -25,9 + 19920: -24,9 + 19921: -24,9 + 19926: -24,15 + 19927: -28,15 + 19928: -27,15 + 20042: -16,4 + 20082: 70,26 + 20083: 69,26 + 20110: 63,26 + 20111: 68,26 + 20179: -20,-7 + 20180: -19,-7 + 20181: -18,-7 + 20182: -20,7 + 20183: -19,7 + 20184: -18,7 + 21384: 22,10 - node: cleanable: True color: '#FFFFFFFF' @@ -9340,870 +9342,870 @@ entities: 898: 26,-2 917: 29,1 926: 27,-2 - 4079: -20,25 - 4080: -19,25 - 4081: -18,25 - 4147: 4,25 - 4148: 5,25 - 4149: 7,25 - 4150: 8,25 + 4052: -20,25 + 4053: -19,25 + 4054: -18,25 + 4120: 4,25 + 4121: 5,25 + 4122: 7,25 + 4123: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineS decals: - 8155: 21,-16 - 8156: 26,-16 - 8157: 28,-16 - 8163: 25,-13 - 8165: 30,-16 - 8170: 27,-17 - 8171: 29,-17 - 8172: 31,-17 + 8120: 21,-16 + 8121: 26,-16 + 8122: 28,-16 + 8128: 25,-13 + 8130: 30,-16 + 8135: 27,-17 + 8136: 29,-17 + 8137: 31,-17 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 3763: -25,65 - 3774: -25,66 - 3794: -27,60 - 10283: 37,-25 - 10292: 36,-26 - 10714: 70,-50 - 15930: 77,4 - 15931: 77,4 + 3736: -25,65 + 3747: -25,66 + 3767: -27,60 + 10248: 37,-25 + 10257: 36,-26 + 10679: 70,-50 + 15784: 77,4 + 15785: 77,4 - node: color: '#8BC9DAFF' id: BrickTileSteelLineS decals: - 3714: 6,66 - 3955: 20,61 + 3687: 6,66 + 3928: 20,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineS decals: - 10181: 21,-49 - 10182: 23,-49 - 10256: 33,-53 + 10146: 21,-49 + 10147: 23,-49 + 10221: 33,-53 - node: color: '#A9DA8BFF' id: BrickTileSteelLineS decals: - 2891: -25,47 + 2864: -25,47 - node: color: '#B18BDAFF' id: BrickTileSteelLineS decals: - 11992: -30,-32 - 11993: -28,-32 - 11994: -27,-32 - 12041: -42,-25 - 12042: -38,-25 - 12043: -34,-25 - 12062: -36,-29 - 12063: -40,-29 - 12091: -46,-24 - 12100: -48,-31 - 12101: -47,-31 - 12102: -46,-31 - 12114: -47,-23 - 12146: -28,-47 - 12147: -27,-47 - 12148: -26,-47 - 12149: -25,-47 - 12162: -29,-43 - 12163: -24,-43 - 12208: -25,-42 - 12225: -29,-37 - 12226: -24,-37 - 16312: -65,-48 - 16313: -64,-48 - 16314: -62,-48 - 19963: -9,-40 - 19964: -8,-40 - 19965: -7,-40 - 19966: -7,-40 - 19967: -6,-40 - 19988: -9,-39 - 19989: -8,-39 - 19990: -8,-39 - 19991: -7,-39 - 19992: -6,-39 - 19995: -9,-40 - 19996: -8,-40 - 19997: -7,-40 - 19998: -7,-40 - 19999: -6,-40 - 20001: -29,-25 + 11957: -30,-32 + 11958: -28,-32 + 11959: -27,-32 + 12006: -42,-25 + 12007: -38,-25 + 12008: -34,-25 + 12027: -36,-29 + 12028: -40,-29 + 12056: -46,-24 + 12065: -48,-31 + 12066: -47,-31 + 12067: -46,-31 + 12079: -47,-23 + 12111: -28,-47 + 12112: -27,-47 + 12113: -26,-47 + 12114: -25,-47 + 12127: -29,-43 + 12128: -24,-43 + 12173: -25,-42 + 12190: -29,-37 + 12191: -24,-37 + 16166: -65,-48 + 16167: -64,-48 + 16168: -62,-48 + 19798: -9,-40 + 19799: -8,-40 + 19800: -7,-40 + 19801: -7,-40 + 19802: -6,-40 + 19823: -9,-39 + 19824: -8,-39 + 19825: -8,-39 + 19826: -7,-39 + 19827: -6,-39 + 19830: -9,-40 + 19831: -8,-40 + 19832: -7,-40 + 19833: -7,-40 + 19834: -6,-40 + 19836: -29,-25 - node: color: '#CEDA8BFF' id: BrickTileSteelLineS decals: - 10998: 27,-70 - 10999: 28,-70 - 11000: 29,-70 - 11001: 30,-70 - 11002: 31,-70 + 10963: 27,-70 + 10964: 28,-70 + 10965: 29,-70 + 10966: 30,-70 + 10967: 31,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelLineS decals: - 7844: 68,5 - 7845: 69,5 - 7846: 70,5 - 7875: 66,6 - 7876: 69,7 - 7877: 62,6 - 7878: 58,6 - 19452: 57,4 - 19453: 59,4 - 19454: 61,4 - 19455: 63,4 - 19456: 65,4 + 7817: 68,5 + 7818: 69,5 + 7819: 70,5 + 7848: 66,6 + 7849: 69,7 + 7850: 62,6 + 7851: 58,6 + 19287: 57,4 + 19288: 59,4 + 19289: 61,4 + 19290: 63,4 + 19291: 65,4 - node: color: '#DA8BC9FF' id: BrickTileSteelLineS decals: - 3959: 21,61 + 3932: 21,61 - node: color: '#DAA58BFF' id: BrickTileSteelLineS decals: - 4553: 10,38 - 4554: 5,38 + 4526: 10,38 + 4527: 5,38 - node: color: '#DABC8BFF' id: BrickTileSteelLineS decals: - 3681: 6,86 - 3740: 10,83 - 3744: 10,89 - 3749: 10,91 - 3750: 5,93 + 3654: 6,86 + 3713: 10,83 + 3717: 10,89 + 3722: 10,91 + 3723: 5,93 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 20499: -23,3 - 20506: -23,0 - 20507: -47,8 - 20526: 5,-82 - 20531: 7,-57 - 20532: 5,-63 - 20533: 5,-73 - 20534: 5,-79 - 20543: 4,-83 - 20550: 5,-79 - 20587: 4,-62 - 20588: 6,-62 - 20589: 7,-62 - 20590: 9,-75 - 20591: 8,-75 - 20592: 9,-78 - 20641: 13,-29 - 20646: 11,-29 - 20650: 11,-32 - 20651: 13,-32 - 20659: 11,-29 - 20660: 13,-29 - 20661: 13,33 - 20667: 12,30 - 20688: 3,60 - 20689: 1,60 - 20704: 41,3 - 20705: 42,3 - 20706: 43,3 - 20707: 44,3 - 20708: 45,3 - 20737: 40,10 - 20744: 36,10 - 20754: 37,8 - 20755: 36,4 - 20756: 37,4 - 20757: 48,-1 - 20758: 50,-1 - 20759: 51,-1 - 20760: 53,-1 - 20761: 54,-1 - 20762: 55,-1 - 20763: 58,-1 - 20764: 59,-1 - 20765: 60,-1 - 20766: 62,-1 - 20767: 63,-1 - 20768: 64,-1 - 20769: 66,-1 - 20770: 67,-1 - 20771: 72,-1 - 20772: 73,-1 - 20795: 73,4 - 20799: 74,21 - 20800: 75,21 - 20801: 76,21 - 20846: 46,10 - 20847: 47,10 - 20848: 48,10 - 20849: 80,9 - 20850: 82,9 - 20851: 82,9 - 20852: 83,9 - 20853: 84,9 - 20854: 81,9 - 20855: 85,9 - 20856: 86,9 - 20897: 52,20 - 20898: 57,20 - 20911: 51,21 - 20912: 50,21 - 20913: 54,21 - 20914: 53,21 - 20915: 54,21 - 20916: 55,21 - 20917: 56,21 - 20918: 58,21 - 20943: 51,14 - 20946: 47,14 - 20949: 51,11 - 20950: 52,11 - 20951: 54,11 - 20952: 55,11 - 20953: 56,11 - 20954: 57,11 - 20955: 58,11 - 20956: 59,11 - 20981: 46,15 - 21019: 52,15 - 21020: 53,15 - 21024: 52,20 - 21025: 51,14 - 21038: 53,10 - 21080: 91,15 - 21081: 92,15 - 21082: 93,15 - 21087: 84,12 - 21088: 85,12 - 21089: 85,12 - 21090: 85,12 - 21091: 87,12 - 21092: 88,12 - 21093: 90,12 - 21094: 91,12 - 21095: 91,12 - 21096: 92,12 - 21097: 89,12 - 21098: 86,12 - 21101: 82,12 - 21106: 83,11 - 21117: 77,8 - 21149: 70,-1 - 21150: 69,-5 - 21151: 70,-5 - 21157: 66,2 - 21158: 62,2 - 21159: 58,2 - 21175: 73,20 - 21177: 73,20 - 21199: 75,24 - 21200: 75,26 - 21240: 69,-2 - 21249: 47,-2 - 21255: 47,-2 - 21258: 52,-2 - 21259: 52,-5 - 21260: 56,-5 - 21261: 57,-5 - 21298: 40,2 - 21299: 40,-1 - 21310: 36,7 - 21311: 34,4 - 21351: 51,3 - 21352: 52,3 - 21353: 53,3 - 21354: 54,3 - 21368: 58,2 - 21369: 62,2 - 21370: 66,2 - 21385: 76,-4 - 21407: -19,-28 - 21417: 46,-5 - 21418: 47,-5 - 21426: 51,-6 - 21431: 47,-9 - 21432: 48,-9 - 21433: 49,-9 - 21434: 50,-9 - 21443: 56,-2 - 21447: 57,-1 - 21591: 21,23 - 21600: 21,21 - 21601: 22,21 - 21602: 23,21 - 21603: 24,21 - 21604: 25,21 - 21605: 26,21 - 21606: 26,21 - 21607: 27,21 + 20334: -23,3 + 20341: -23,0 + 20342: -47,8 + 20361: 5,-82 + 20366: 7,-57 + 20367: 5,-63 + 20368: 5,-73 + 20369: 5,-79 + 20378: 4,-83 + 20385: 5,-79 + 20422: 4,-62 + 20423: 6,-62 + 20424: 7,-62 + 20425: 9,-75 + 20426: 8,-75 + 20427: 9,-78 + 20476: 13,-29 + 20481: 11,-29 + 20485: 11,-32 + 20486: 13,-32 + 20494: 11,-29 + 20495: 13,-29 + 20496: 13,33 + 20502: 12,30 + 20523: 3,60 + 20524: 1,60 + 20539: 41,3 + 20540: 42,3 + 20541: 43,3 + 20542: 44,3 + 20543: 45,3 + 20572: 40,10 + 20579: 36,10 + 20589: 37,8 + 20590: 36,4 + 20591: 37,4 + 20592: 48,-1 + 20593: 50,-1 + 20594: 51,-1 + 20595: 53,-1 + 20596: 54,-1 + 20597: 55,-1 + 20598: 58,-1 + 20599: 59,-1 + 20600: 60,-1 + 20601: 62,-1 + 20602: 63,-1 + 20603: 64,-1 + 20604: 66,-1 + 20605: 67,-1 + 20606: 72,-1 + 20607: 73,-1 + 20630: 73,4 + 20634: 74,21 + 20635: 75,21 + 20636: 76,21 + 20681: 46,10 + 20682: 47,10 + 20683: 48,10 + 20684: 80,9 + 20685: 82,9 + 20686: 82,9 + 20687: 83,9 + 20688: 84,9 + 20689: 81,9 + 20690: 85,9 + 20691: 86,9 + 20732: 52,20 + 20733: 57,20 + 20746: 51,21 + 20747: 50,21 + 20748: 54,21 + 20749: 53,21 + 20750: 54,21 + 20751: 55,21 + 20752: 56,21 + 20753: 58,21 + 20778: 51,14 + 20781: 47,14 + 20784: 51,11 + 20785: 52,11 + 20786: 54,11 + 20787: 55,11 + 20788: 56,11 + 20789: 57,11 + 20790: 58,11 + 20791: 59,11 + 20816: 46,15 + 20854: 52,15 + 20855: 53,15 + 20859: 52,20 + 20860: 51,14 + 20873: 53,10 + 20915: 91,15 + 20916: 92,15 + 20917: 93,15 + 20922: 84,12 + 20923: 85,12 + 20924: 85,12 + 20925: 85,12 + 20926: 87,12 + 20927: 88,12 + 20928: 90,12 + 20929: 91,12 + 20930: 91,12 + 20931: 92,12 + 20932: 89,12 + 20933: 86,12 + 20936: 82,12 + 20941: 83,11 + 20952: 77,8 + 20984: 70,-1 + 20985: 69,-5 + 20986: 70,-5 + 20992: 66,2 + 20993: 62,2 + 20994: 58,2 + 21010: 73,20 + 21012: 73,20 + 21034: 75,24 + 21035: 75,26 + 21075: 69,-2 + 21084: 47,-2 + 21090: 47,-2 + 21093: 52,-2 + 21094: 52,-5 + 21095: 56,-5 + 21096: 57,-5 + 21133: 40,2 + 21134: 40,-1 + 21145: 36,7 + 21146: 34,4 + 21186: 51,3 + 21187: 52,3 + 21188: 53,3 + 21189: 54,3 + 21203: 58,2 + 21204: 62,2 + 21205: 66,2 + 21220: 76,-4 + 21242: -19,-28 + 21252: 46,-5 + 21253: 47,-5 + 21261: 51,-6 + 21266: 47,-9 + 21267: 48,-9 + 21268: 49,-9 + 21269: 50,-9 + 21278: 56,-2 + 21282: 57,-1 + 21426: 21,23 + 21435: 21,21 + 21436: 22,21 + 21437: 23,21 + 21438: 24,21 + 21439: 25,21 + 21440: 26,21 + 21441: 26,21 + 21442: 27,21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2251: -20,54 - 2252: -19,54 - 2253: -19,54 - 2254: -19,54 - 2255: -18,54 - 2256: -18,54 - 2261: -21,55 - 2321: -22,28 - 2322: -22,28 - 2326: -21,26 - 2345: -24,30 - 2348: -26,29 - 2409: -31,38 - 2419: -32,33 - 2771: -13,48 - 2772: -12,48 - 2773: -11,48 - 2774: -10,48 - 2775: -9,48 - 2776: -8,48 - 2777: -7,48 - 2778: -6,48 - 2779: -5,48 - 2780: -3,48 - 2781: -2,48 - 2789: -12,51 - 2790: -6,51 - 2809: -3,44 - 2821: -4,47 - 2832: -6,26 - 2852: -30,44 - 2853: -29,41 - 2854: -28,41 - 2855: -27,41 - 2856: -26,41 - 2859: -31,40 - 2860: -32,40 - 2865: -30,44 - 3060: -16,56 - 3061: -15,56 - 3062: -14,56 - 3063: -13,56 - 3064: -12,56 - 3065: -11,56 - 3066: -10,56 - 3067: -9,56 - 3068: -8,56 - 3069: -7,56 - 3070: -6,56 - 3071: -5,56 - 3072: -4,56 - 3073: -3,56 - 3080: 0,56 - 3081: -2,56 - 3199: -16,67 - 3200: -15,67 - 3201: -14,67 - 3202: -13,67 - 3203: -12,67 - 3204: -11,67 - 3205: -10,67 - 3206: -9,67 - 3207: -8,67 - 3453: -31,67 - 3454: -29,67 - 3455: -28,67 - 3456: -27,67 - 3457: -26,67 - 3458: -24,67 - 3459: -23,67 - 3460: -22,67 - 3467: 2,59 - 3479: -2,67 - 3563: -1,67 - 3564: 1,67 - 3565: 0,67 - 3566: 2,67 - 3567: 3,67 - 3568: 4,67 - 3569: 5,67 - 3570: 7,67 - 3602: -15,77 - 3604: -9,77 - 3611: -15,84 - 3612: -9,84 - 3615: -12,97 - 3622: -27,84 - 3625: -33,84 - 3632: -33,77 - 3633: -27,77 - 3696: 3,84 - 3697: 3,77 - 4484: 14,25 - 4485: 15,25 - 4486: 16,25 - 5147: 31,29 - 5158: 30,30 - 5162: 32,30 - 5163: 33,30 - 5164: 34,30 - 5168: 36,30 - 5172: 35,33 - 5176: 35,29 - 5467: -24,4 - 5480: -31,4 - 5481: -30,4 - 5482: -30,4 - 5483: -29,4 - 5484: -28,4 - 5485: -26,4 - 5486: -25,4 - 5487: -27,4 - 5490: -22,4 - 5491: -35,4 - 5492: -36,4 - 5493: -38,4 - 5494: -39,4 - 5495: -37,4 - 5496: -34,4 - 5565: -20,7 - 5566: -19,7 - 5567: -18,7 - 5578: -20,-7 - 5579: -19,-7 - 5580: -18,-7 - 5678: 10,-7 - 5679: 11,-7 - 5680: 8,-7 - 5816: 12,-3 - 5825: 13,-6 - 5826: 12,-6 - 5827: 9,-6 - 5839: -1,-7 - 5845: -10,-7 - 6107: -15,-17 - 6108: -14,-17 - 6115: -10,-17 - 6125: -13,-18 - 6126: -12,-18 - 6127: -11,-18 - 6165: 16,-7 - 6166: 17,-7 - 6167: 18,-7 - 6172: 16,7 - 6173: 17,7 - 6174: 18,7 - 6187: -16,-21 - 6188: -15,-21 - 6189: -12,-21 - 6190: -11,-21 - 6191: -10,-21 - 6192: -9,-21 - 6193: -9,-21 - 6194: -8,-21 - 6195: -5,-21 - 6196: -4,-21 - 6295: -5,-17 - 6296: -4,-13 - 6305: -4,-18 - 6320: 2,-21 - 6321: 3,-21 - 6322: 6,-21 - 6323: 7,-21 - 6324: 8,-21 - 6325: 9,-21 - 6326: 10,-21 - 6327: 13,-21 - 6328: 14,-21 - 6348: 16,-21 - 6349: 17,-21 - 6373: 2,-13 - 6375: 3,-17 - 6376: 2,-17 - 6405: 9,-17 - 6406: 7,-17 - 6422: 12,-18 - 6423: 13,-18 - 6424: 13,-18 - 6425: 14,-18 - 6444: 8,-18 - 6469: -18,-21 - 6470: -19,-21 - 6471: -19,-21 - 6829: -26,7 - 6830: -25,7 - 6831: -31,7 - 6832: -36,7 - 6849: -37,8 - 6940: -36,17 - 6955: -24,8 - 6956: -23,8 - 6967: -26,16 - 6968: -26,16 - 6987: -27,8 - 6988: -27,8 - 7072: 20,4 - 7073: 21,4 - 7074: 23,4 - 7075: 24,4 - 7076: 25,4 - 7098: 21,8 - 7099: 23,8 - 7112: 22,7 - 7130: 20,-12 - 7131: 21,-12 - 7132: 23,-12 - 7133: 24,-12 - 7134: 23,-12 - 7135: 24,-12 - 7136: 22,-12 - 7149: 27,-12 - 7150: 28,-12 - 7151: 29,-12 - 7152: 30,-12 - 7153: 31,-12 - 7162: 22,-9 - 7196: 26,-8 - 7197: 25,-8 - 7198: 27,-8 - 7199: 29,-8 - 7200: 30,-8 - 7207: 30,-6 - 7208: 29,-6 - 7221: 30,3 - 7225: 29,4 - 7226: 28,4 - 7227: 27,4 - 7228: 31,4 - 7229: 32,4 - 7248: 22,7 - 7342: 29,12 - 7343: 30,12 - 7344: 30,12 - 7345: 31,12 - 7346: 32,12 - 7374: 29,7 - 8022: 77,-22 - 8023: 79,-22 - 8024: 80,-22 - 8025: 81,-22 - 8040: 77,-19 - 8058: 65,-22 - 8060: 65,-19 - 8220: 33,-16 - 8221: 34,-16 - 8222: 35,-16 - 8223: 36,-16 - 8224: 37,-16 - 8263: 33,-6 - 8324: 38,-16 - 8325: 40,-16 - 8386: 39,-18 - 8389: 41,-18 - 8411: 39,-21 - 8412: 40,-21 - 8413: 41,-21 - 8419: 43,-21 - 8420: 45,-21 - 8421: 46,-21 - 8422: 46,-21 - 8423: 47,-21 - 8424: 49,-21 - 8425: 50,-21 - 8426: 50,-21 - 8427: 51,-21 - 8428: 53,-21 - 8429: 53,-21 - 8448: 46,-18 - 8449: 46,-18 - 8450: 47,-18 - 8469: 52,-18 - 8470: 52,-18 - 8657: 56,-31 - 8658: 57,-31 - 8662: 58,-30 - 8663: 58,-30 - 8664: 59,-30 - 8665: 59,-30 - 8666: 60,-30 - 8667: 60,-30 - 8669: 62,-31 - 8854: -2,-22 - 8855: -1,-22 - 8856: 0,-22 - 8901: -2,-29 - 8902: -1,-29 - 8903: 0,-29 - 8904: -2,-37 - 8905: -2,-37 - 8906: -1,-37 - 8907: 0,-37 - 8908: 0,-37 - 8939: -12,-27 - 8940: -11,-27 - 8941: -10,-27 - 8942: -10,-27 - 8943: -9,-27 - 8944: -8,-27 - 8950: -16,-26 - 8951: -4,-26 - 8952: -4,-26 - 9016: -16,-26 - 9202: -2,-63 - 9203: -1,-63 - 9204: 0,-63 - 9219: -7,-65 - 9220: -7,-65 - 9221: -2,-65 - 9222: -6,-65 - 9223: -5,-65 - 9224: -4,-65 - 9225: -4,-65 - 9226: -3,-65 - 9227: -3,-65 - 9271: -10,-78 - 9277: -8,-82 - 9278: -7,-82 - 9279: -5,-82 - 9280: -3,-82 - 9281: -3,-82 - 9285: -2,-81 - 9286: -1,-81 - 9287: 0,-81 - 9288: 0,-81 - 9316: -8,-71 - 9317: -1,-71 - 9335: -5,-74 - 9336: -4,-74 - 9357: -2,-57 - 9358: -2,-57 - 9359: -1,-57 - 9360: -1,-57 - 9361: 0,-57 - 9362: 0,-57 - 9494: -41,-18 - 10440: 3,-52 - 10441: 4,-52 - 10442: 6,-52 - 10443: 6,-52 - 10444: 7,-52 - 10445: 7,-52 - 10446: 8,-52 - 10447: 8,-52 - 10448: 9,-52 - 10449: 9,-52 - 10450: 10,-52 - 10451: 10,-52 - 10452: 11,-52 - 10453: 11,-52 - 10454: 11,-52 - 10455: 5,-52 - 10621: 4,-83 - 10647: 55,-44 - 10679: 46,-45 - 10680: 44,-45 - 10681: 44,-45 - 10682: 48,-45 - 11297: -59,-33 - 11303: -59,-40 - 11374: -6,-83 - 11375: -4,-83 - 11376: 2,-83 - 11377: 2,-83 - 11425: -10,-63 - 11461: -14,-32 - 11463: -15,-29 - 11464: -13,-29 - 11872: -38,-56 - 11873: -38,-56 - 11893: -37,-53 - 11894: -38,-53 - 11895: -39,-53 - 11896: -40,-53 - 11897: -40,-53 - 11914: -24,-54 - 11915: -25,-54 - 12194: -24,-49 - 12591: -21,-77 - 12826: 5,70 - 12827: 6,70 - 12828: 7,70 - 12837: -7,66 - 12838: -6,66 - 12839: -5,66 - 12840: -4,66 - 12841: -3,66 - 12842: -7,59 - 12859: -7,59 - 12860: -6,59 - 12861: -5,59 - 12862: -4,59 - 12863: -3,59 - 12876: -21,59 - 12877: -20,59 - 12878: -19,59 - 12879: -18,59 - 12880: -18,59 - 12881: -17,59 - 12882: -19,59 - 12883: -21,66 - 12884: -20,66 - 12885: -19,66 - 12886: -18,66 - 12887: -18,66 - 12888: -17,66 - 12889: -31,70 - 12890: -30,70 - 12891: -29,70 - 12892: -13,70 - 12893: -12,70 - 12894: -11,70 - 13454: -37,-59 - 14490: -17,22 - 14491: -16,22 - 14492: -15,22 - 14493: -15,22 - 14494: -14,22 - 14495: -12,22 - 14496: -11,22 - 14497: -13,22 - 14498: -10,22 - 14499: -9,22 - 14941: -7,22 - 14942: -6,22 - 14943: -5,22 - 14944: -4,22 - 14945: -2,22 - 14946: -2,22 - 14947: -3,22 - 14948: -1,22 - 14949: 0,22 - 14950: 1,22 - 14951: 2,22 - 14952: 3,22 - 14953: 4,22 - 14954: 5,22 - 14955: 7,22 - 14956: 8,22 - 14957: 9,22 - 14958: 10,22 - 14959: 11,22 - 14960: 12,22 - 14961: 13,22 - 14962: 14,22 - 14963: 15,22 - 15012: -20,25 - 15013: -19,25 - 15014: -18,25 - 15015: -20,21 - 15016: -19,21 - 15017: -18,21 - 15080: 16,21 - 15081: 17,21 - 15082: 18,21 - 15433: -43,4 - 15434: -42,4 - 15435: -41,4 - 15447: -43,7 - 15448: -42,7 - 15449: -41,7 - 15750: 77,0 - 15942: 78,3 - 15962: 86,0 - 15963: 87,0 - 15964: 88,0 - 15965: 84,0 - 15966: 83,0 - 15967: 82,0 - 15968: 80,0 - 15969: 79,0 - 15970: 78,0 - 16852: -58,-11 - 16853: -60,-15 - 16855: -59,-15 - 16856: -58,-15 - 16859: -60,-15 - 16860: -59,-15 - 16861: -57,-15 - 16862: -56,-15 - 16863: -58,-15 - 16864: -58,-15 - 16865: -57,-15 - 16866: -59,-15 - 16873: -58,-11 - 16875: -58,-11 - 16890: -61,-17 - 16930: -57,-4 - 16932: -58,-5 - 16974: -60,-4 - 16975: -59,-4 - 16978: -53,3 - 16979: -52,3 - 16982: -53,7 - 16983: -52,7 - 17000: -50,-4 - 17675: 6,86 - 18082: -45,23 - 18662: -15,-10 - 18663: -16,-10 - 18664: -13,-10 - 18665: -12,-10 - 18666: -11,-10 - 18667: -9,-10 - 18668: -8,-10 - 18669: -8,-10 - 18670: -7,-10 - 18671: -6,-10 - 18672: -5,-10 - 18675: -14,-11 - 18676: -10,-11 - 18687: 15,-10 - 18688: 14,-10 - 18689: 13,-10 - 18690: 12,-10 - 18691: 11,-10 - 18692: 10,-10 - 18693: 9,-10 - 18694: 5,-10 - 18695: 6,-10 - 18696: 7,-10 - 18697: 5,-10 - 18698: 4,-10 - 18699: 3,-10 - 18700: 2,-10 - 18701: 1,-10 - 18702: 0,-10 - 18703: -1,-10 - 18704: -2,-10 - 18705: -3,-10 - 18706: -4,-10 - 18707: -4,-10 - 18718: 8,-11 - 20070: -27,14 - 20071: -26,14 - 20072: -25,14 - 20073: -25,14 - 20074: -24,14 - 20075: -24,14 - 20094: -28,8 - 20253: 62,21 - 20254: 63,21 - 20255: 64,21 - 20256: 65,21 - 20257: 66,21 - 20258: 68,21 - 20259: 69,21 - 20260: 67,21 - 20286: 62,27 - 20287: 64,27 - 20288: 65,27 - 20289: 66,27 - 20290: 67,27 - 20328: -20,7 - 20329: -19,7 - 20330: -18,7 - 20372: -20,21 - 20373: -19,21 - 20374: -18,21 + 2224: -20,54 + 2225: -19,54 + 2226: -19,54 + 2227: -19,54 + 2228: -18,54 + 2229: -18,54 + 2234: -21,55 + 2294: -22,28 + 2295: -22,28 + 2299: -21,26 + 2318: -24,30 + 2321: -26,29 + 2382: -31,38 + 2392: -32,33 + 2744: -13,48 + 2745: -12,48 + 2746: -11,48 + 2747: -10,48 + 2748: -9,48 + 2749: -8,48 + 2750: -7,48 + 2751: -6,48 + 2752: -5,48 + 2753: -3,48 + 2754: -2,48 + 2762: -12,51 + 2763: -6,51 + 2782: -3,44 + 2794: -4,47 + 2805: -6,26 + 2825: -30,44 + 2826: -29,41 + 2827: -28,41 + 2828: -27,41 + 2829: -26,41 + 2832: -31,40 + 2833: -32,40 + 2838: -30,44 + 3033: -16,56 + 3034: -15,56 + 3035: -14,56 + 3036: -13,56 + 3037: -12,56 + 3038: -11,56 + 3039: -10,56 + 3040: -9,56 + 3041: -8,56 + 3042: -7,56 + 3043: -6,56 + 3044: -5,56 + 3045: -4,56 + 3046: -3,56 + 3053: 0,56 + 3054: -2,56 + 3172: -16,67 + 3173: -15,67 + 3174: -14,67 + 3175: -13,67 + 3176: -12,67 + 3177: -11,67 + 3178: -10,67 + 3179: -9,67 + 3180: -8,67 + 3426: -31,67 + 3427: -29,67 + 3428: -28,67 + 3429: -27,67 + 3430: -26,67 + 3431: -24,67 + 3432: -23,67 + 3433: -22,67 + 3440: 2,59 + 3452: -2,67 + 3536: -1,67 + 3537: 1,67 + 3538: 0,67 + 3539: 2,67 + 3540: 3,67 + 3541: 4,67 + 3542: 5,67 + 3543: 7,67 + 3575: -15,77 + 3577: -9,77 + 3584: -15,84 + 3585: -9,84 + 3588: -12,97 + 3595: -27,84 + 3598: -33,84 + 3605: -33,77 + 3606: -27,77 + 3669: 3,84 + 3670: 3,77 + 4457: 14,25 + 4458: 15,25 + 4459: 16,25 + 5120: 31,29 + 5131: 30,30 + 5135: 32,30 + 5136: 33,30 + 5137: 34,30 + 5141: 36,30 + 5145: 35,33 + 5149: 35,29 + 5440: -24,4 + 5453: -31,4 + 5454: -30,4 + 5455: -30,4 + 5456: -29,4 + 5457: -28,4 + 5458: -26,4 + 5459: -25,4 + 5460: -27,4 + 5463: -22,4 + 5464: -35,4 + 5465: -36,4 + 5466: -38,4 + 5467: -39,4 + 5468: -37,4 + 5469: -34,4 + 5538: -20,7 + 5539: -19,7 + 5540: -18,7 + 5551: -20,-7 + 5552: -19,-7 + 5553: -18,-7 + 5651: 10,-7 + 5652: 11,-7 + 5653: 8,-7 + 5789: 12,-3 + 5798: 13,-6 + 5799: 12,-6 + 5800: 9,-6 + 5812: -1,-7 + 5818: -10,-7 + 6080: -15,-17 + 6081: -14,-17 + 6088: -10,-17 + 6098: -13,-18 + 6099: -12,-18 + 6100: -11,-18 + 6138: 16,-7 + 6139: 17,-7 + 6140: 18,-7 + 6145: 16,7 + 6146: 17,7 + 6147: 18,7 + 6160: -16,-21 + 6161: -15,-21 + 6162: -12,-21 + 6163: -11,-21 + 6164: -10,-21 + 6165: -9,-21 + 6166: -9,-21 + 6167: -8,-21 + 6168: -5,-21 + 6169: -4,-21 + 6268: -5,-17 + 6269: -4,-13 + 6278: -4,-18 + 6293: 2,-21 + 6294: 3,-21 + 6295: 6,-21 + 6296: 7,-21 + 6297: 8,-21 + 6298: 9,-21 + 6299: 10,-21 + 6300: 13,-21 + 6301: 14,-21 + 6321: 16,-21 + 6322: 17,-21 + 6346: 2,-13 + 6348: 3,-17 + 6349: 2,-17 + 6378: 9,-17 + 6379: 7,-17 + 6395: 12,-18 + 6396: 13,-18 + 6397: 13,-18 + 6398: 14,-18 + 6417: 8,-18 + 6442: -18,-21 + 6443: -19,-21 + 6444: -19,-21 + 6802: -26,7 + 6803: -25,7 + 6804: -31,7 + 6805: -36,7 + 6822: -37,8 + 6913: -36,17 + 6928: -24,8 + 6929: -23,8 + 6940: -26,16 + 6941: -26,16 + 6960: -27,8 + 6961: -27,8 + 7045: 20,4 + 7046: 21,4 + 7047: 23,4 + 7048: 24,4 + 7049: 25,4 + 7071: 21,8 + 7072: 23,8 + 7085: 22,7 + 7103: 20,-12 + 7104: 21,-12 + 7105: 23,-12 + 7106: 24,-12 + 7107: 23,-12 + 7108: 24,-12 + 7109: 22,-12 + 7122: 27,-12 + 7123: 28,-12 + 7124: 29,-12 + 7125: 30,-12 + 7126: 31,-12 + 7135: 22,-9 + 7169: 26,-8 + 7170: 25,-8 + 7171: 27,-8 + 7172: 29,-8 + 7173: 30,-8 + 7180: 30,-6 + 7181: 29,-6 + 7194: 30,3 + 7198: 29,4 + 7199: 28,4 + 7200: 27,4 + 7201: 31,4 + 7202: 32,4 + 7221: 22,7 + 7315: 29,12 + 7316: 30,12 + 7317: 30,12 + 7318: 31,12 + 7319: 32,12 + 7347: 29,7 + 7993: 77,-22 + 7994: 79,-22 + 7995: 80,-22 + 7996: 81,-22 + 8008: 77,-19 + 8023: 65,-22 + 8025: 65,-19 + 8185: 33,-16 + 8186: 34,-16 + 8187: 35,-16 + 8188: 36,-16 + 8189: 37,-16 + 8228: 33,-6 + 8289: 38,-16 + 8290: 40,-16 + 8351: 39,-18 + 8354: 41,-18 + 8376: 39,-21 + 8377: 40,-21 + 8378: 41,-21 + 8384: 43,-21 + 8385: 45,-21 + 8386: 46,-21 + 8387: 46,-21 + 8388: 47,-21 + 8389: 49,-21 + 8390: 50,-21 + 8391: 50,-21 + 8392: 51,-21 + 8393: 53,-21 + 8394: 53,-21 + 8413: 46,-18 + 8414: 46,-18 + 8415: 47,-18 + 8434: 52,-18 + 8435: 52,-18 + 8622: 56,-31 + 8623: 57,-31 + 8627: 58,-30 + 8628: 58,-30 + 8629: 59,-30 + 8630: 59,-30 + 8631: 60,-30 + 8632: 60,-30 + 8634: 62,-31 + 8819: -2,-22 + 8820: -1,-22 + 8821: 0,-22 + 8866: -2,-29 + 8867: -1,-29 + 8868: 0,-29 + 8869: -2,-37 + 8870: -2,-37 + 8871: -1,-37 + 8872: 0,-37 + 8873: 0,-37 + 8904: -12,-27 + 8905: -11,-27 + 8906: -10,-27 + 8907: -10,-27 + 8908: -9,-27 + 8909: -8,-27 + 8915: -16,-26 + 8916: -4,-26 + 8917: -4,-26 + 8981: -16,-26 + 9167: -2,-63 + 9168: -1,-63 + 9169: 0,-63 + 9184: -7,-65 + 9185: -7,-65 + 9186: -2,-65 + 9187: -6,-65 + 9188: -5,-65 + 9189: -4,-65 + 9190: -4,-65 + 9191: -3,-65 + 9192: -3,-65 + 9236: -10,-78 + 9242: -8,-82 + 9243: -7,-82 + 9244: -5,-82 + 9245: -3,-82 + 9246: -3,-82 + 9250: -2,-81 + 9251: -1,-81 + 9252: 0,-81 + 9253: 0,-81 + 9281: -8,-71 + 9282: -1,-71 + 9300: -5,-74 + 9301: -4,-74 + 9322: -2,-57 + 9323: -2,-57 + 9324: -1,-57 + 9325: -1,-57 + 9326: 0,-57 + 9327: 0,-57 + 9459: -41,-18 + 10405: 3,-52 + 10406: 4,-52 + 10407: 6,-52 + 10408: 6,-52 + 10409: 7,-52 + 10410: 7,-52 + 10411: 8,-52 + 10412: 8,-52 + 10413: 9,-52 + 10414: 9,-52 + 10415: 10,-52 + 10416: 10,-52 + 10417: 11,-52 + 10418: 11,-52 + 10419: 11,-52 + 10420: 5,-52 + 10586: 4,-83 + 10612: 55,-44 + 10644: 46,-45 + 10645: 44,-45 + 10646: 44,-45 + 10647: 48,-45 + 11262: -59,-33 + 11268: -59,-40 + 11339: -6,-83 + 11340: -4,-83 + 11341: 2,-83 + 11342: 2,-83 + 11390: -10,-63 + 11426: -14,-32 + 11428: -15,-29 + 11429: -13,-29 + 11837: -38,-56 + 11838: -38,-56 + 11858: -37,-53 + 11859: -38,-53 + 11860: -39,-53 + 11861: -40,-53 + 11862: -40,-53 + 11879: -24,-54 + 11880: -25,-54 + 12159: -24,-49 + 12556: -21,-77 + 12791: 5,70 + 12792: 6,70 + 12793: 7,70 + 12802: -7,66 + 12803: -6,66 + 12804: -5,66 + 12805: -4,66 + 12806: -3,66 + 12807: -7,59 + 12824: -7,59 + 12825: -6,59 + 12826: -5,59 + 12827: -4,59 + 12828: -3,59 + 12841: -21,59 + 12842: -20,59 + 12843: -19,59 + 12844: -18,59 + 12845: -18,59 + 12846: -17,59 + 12847: -19,59 + 12848: -21,66 + 12849: -20,66 + 12850: -19,66 + 12851: -18,66 + 12852: -18,66 + 12853: -17,66 + 12854: -31,70 + 12855: -30,70 + 12856: -29,70 + 12857: -13,70 + 12858: -12,70 + 12859: -11,70 + 13419: -37,-59 + 14455: -17,22 + 14456: -16,22 + 14457: -15,22 + 14458: -15,22 + 14459: -14,22 + 14460: -12,22 + 14461: -11,22 + 14462: -13,22 + 14463: -10,22 + 14464: -9,22 + 14906: -7,22 + 14907: -6,22 + 14908: -5,22 + 14909: -4,22 + 14910: -2,22 + 14911: -2,22 + 14912: -3,22 + 14913: -1,22 + 14914: 0,22 + 14915: 1,22 + 14916: 2,22 + 14917: 3,22 + 14918: 4,22 + 14919: 5,22 + 14920: 7,22 + 14921: 8,22 + 14922: 9,22 + 14923: 10,22 + 14924: 11,22 + 14925: 12,22 + 14926: 13,22 + 14927: 14,22 + 14928: 15,22 + 14977: -20,25 + 14978: -19,25 + 14979: -18,25 + 14980: -20,21 + 14981: -19,21 + 14982: -18,21 + 15045: 16,21 + 15046: 17,21 + 15047: 18,21 + 15398: -43,4 + 15399: -42,4 + 15400: -41,4 + 15412: -43,7 + 15413: -42,7 + 15414: -41,7 + 15604: 77,0 + 15796: 78,3 + 15816: 86,0 + 15817: 87,0 + 15818: 88,0 + 15819: 84,0 + 15820: 83,0 + 15821: 82,0 + 15822: 80,0 + 15823: 79,0 + 15824: 78,0 + 16706: -58,-11 + 16707: -60,-15 + 16709: -59,-15 + 16710: -58,-15 + 16713: -60,-15 + 16714: -59,-15 + 16715: -57,-15 + 16716: -56,-15 + 16717: -58,-15 + 16718: -58,-15 + 16719: -57,-15 + 16720: -59,-15 + 16727: -58,-11 + 16729: -58,-11 + 16744: -61,-17 + 16784: -57,-4 + 16786: -58,-5 + 16828: -60,-4 + 16829: -59,-4 + 16832: -53,3 + 16833: -52,3 + 16836: -53,7 + 16837: -52,7 + 16854: -50,-4 + 17529: 6,86 + 17936: -45,23 + 18497: -15,-10 + 18498: -16,-10 + 18499: -13,-10 + 18500: -12,-10 + 18501: -11,-10 + 18502: -9,-10 + 18503: -8,-10 + 18504: -8,-10 + 18505: -7,-10 + 18506: -6,-10 + 18507: -5,-10 + 18510: -14,-11 + 18511: -10,-11 + 18522: 15,-10 + 18523: 14,-10 + 18524: 13,-10 + 18525: 12,-10 + 18526: 11,-10 + 18527: 10,-10 + 18528: 9,-10 + 18529: 5,-10 + 18530: 6,-10 + 18531: 7,-10 + 18532: 5,-10 + 18533: 4,-10 + 18534: 3,-10 + 18535: 2,-10 + 18536: 1,-10 + 18537: 0,-10 + 18538: -1,-10 + 18539: -2,-10 + 18540: -3,-10 + 18541: -4,-10 + 18542: -4,-10 + 18553: 8,-11 + 19905: -27,14 + 19906: -26,14 + 19907: -25,14 + 19908: -25,14 + 19909: -24,14 + 19910: -24,14 + 19929: -28,8 + 20088: 62,21 + 20089: 63,21 + 20090: 64,21 + 20091: 65,21 + 20092: 66,21 + 20093: 68,21 + 20094: 69,21 + 20095: 67,21 + 20121: 62,27 + 20122: 64,27 + 20123: 65,27 + 20124: 66,27 + 20125: 67,27 + 20163: -20,7 + 20164: -19,7 + 20165: -18,7 + 20207: -20,21 + 20208: -19,21 + 20209: -18,21 - node: cleanable: True color: '#FFFFFFFF' @@ -10213,876 +10215,876 @@ entities: 900: 26,-2 921: 29,1 927: 27,-2 - 4076: -20,25 - 4077: -19,25 - 4078: -18,25 - 4129: 0,25 - 4131: 0,25 - 4132: 0,25 - 4133: -9,25 - 4134: -9,25 - 4143: 4,25 - 4144: 5,25 - 4145: 7,25 - 4146: 8,25 + 4049: -20,25 + 4050: -19,25 + 4051: -18,25 + 4102: 0,25 + 4104: 0,25 + 4105: 0,25 + 4106: -9,25 + 4107: -9,25 + 4116: 4,25 + 4117: 5,25 + 4118: 7,25 + 4119: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineW decals: - 8158: 24,-17 - 8159: 24,-16 - 8164: 32,-16 - 8184: 20,-15 - 8191: 23,-15 + 8123: 24,-17 + 8124: 24,-16 + 8129: 32,-16 + 8149: 20,-15 + 8156: 23,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 3764: -28,60 - 3765: -28,61 - 3766: -28,62 - 3767: -28,63 - 3768: -28,64 - 3785: -25,59 - 3786: -25,61 - 3787: -25,63 - 10290: 35,-26 - 10412: 13,-47 - 10713: 71,-50 - 15936: 77,5 + 3737: -28,60 + 3738: -28,61 + 3739: -28,62 + 3740: -28,63 + 3741: -28,64 + 3758: -25,59 + 3759: -25,61 + 3760: -25,63 + 10255: 35,-26 + 10377: 13,-47 + 10678: 71,-50 + 15790: 77,5 - node: color: '#8CB7E8FF' id: BrickTileSteelLineW decals: - 10096: 29,-24 - 10106: 28,-24 - 10107: 28,-23 - 10108: 28,-23 - 10118: 33,-23 - 10119: 33,-23 - 10186: 20,-48 - 10187: 20,-47 - 10242: 32,-52 - 10243: 32,-48 - 10244: 32,-50 + 10061: 29,-24 + 10071: 28,-24 + 10072: 28,-23 + 10073: 28,-23 + 10083: 33,-23 + 10084: 33,-23 + 10151: 20,-48 + 10152: 20,-47 + 10207: 32,-52 + 10208: 32,-48 + 10209: 32,-50 - node: color: '#A9DA8BFF' id: BrickTileSteelLineW decals: - 2892: -24,47 - 2893: -24,48 - 2894: -24,48 - 2895: -24,47 - 2896: -24,48 - 2897: -24,47 - 3019: -39,49 + 2865: -24,47 + 2866: -24,48 + 2867: -24,48 + 2868: -24,47 + 2869: -24,48 + 2870: -24,47 + 2992: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineW decals: - 12014: -31,-31 - 12015: -31,-30 - 12016: -31,-30 - 12080: -32,-29 - 12081: -32,-28 - 12082: -32,-27 - 12084: -44,-29 - 12085: -44,-28 - 12086: -44,-27 - 12096: -48,-27 - 12097: -48,-26 - 12098: -48,-30 - 12099: -48,-29 - 12150: -29,-46 - 12151: -29,-45 - 12152: -29,-44 - 12197: -30,-41 - 12198: -30,-40 - 12199: -26,-41 - 12200: -26,-40 - 12201: -26,-39 - 12376: -21,-43 - 12377: -21,-42 - 12378: -21,-41 - 12379: -21,-40 - 12380: -21,-39 - 12391: -16,-40 - 16310: -66,-47 - 16326: -61,-48 - 19968: -5,-43 - 19969: -5,-42 - 19970: -5,-42 - 19971: -5,-41 - 19987: -5,-40 + 11979: -31,-31 + 11980: -31,-30 + 11981: -31,-30 + 12045: -32,-29 + 12046: -32,-28 + 12047: -32,-27 + 12049: -44,-29 + 12050: -44,-28 + 12051: -44,-27 + 12061: -48,-27 + 12062: -48,-26 + 12063: -48,-30 + 12064: -48,-29 + 12115: -29,-46 + 12116: -29,-45 + 12117: -29,-44 + 12162: -30,-41 + 12163: -30,-40 + 12164: -26,-41 + 12165: -26,-40 + 12166: -26,-39 + 12341: -21,-43 + 12342: -21,-42 + 12343: -21,-41 + 12344: -21,-40 + 12345: -21,-39 + 12356: -16,-40 + 16164: -66,-47 + 16180: -61,-48 + 19803: -5,-43 + 19804: -5,-42 + 19805: -5,-42 + 19806: -5,-41 + 19822: -5,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineW decals: - 11003: 26,-69 - 11006: 33,-68 + 10968: 26,-69 + 10971: 33,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelLineW decals: - 7852: 64,4 - 7853: 64,5 - 7854: 60,4 - 7855: 60,5 - 7860: 60,4 - 7861: 60,5 - 7874: 71,6 - 19450: 58,3 - 19460: 62,3 - 19461: 66,3 - 19485: 69,8 - 19491: 66,8 - 19492: 66,7 - 19498: 62,7 - 19499: 62,8 - 19500: 62,9 - 19501: 58,7 - 19502: 58,8 + 7825: 64,4 + 7826: 64,5 + 7827: 60,4 + 7828: 60,5 + 7833: 60,4 + 7834: 60,5 + 7847: 71,6 + 19285: 58,3 + 19295: 62,3 + 19296: 66,3 + 19320: 69,8 + 19326: 66,8 + 19327: 66,7 + 19333: 62,7 + 19334: 62,8 + 19335: 62,9 + 19336: 58,7 + 19337: 58,8 - node: color: '#DAA58BFF' id: BrickTileSteelLineW decals: - 4551: 12,35 - 4552: 12,36 + 4524: 12,35 + 4525: 12,36 - node: color: '#DABC8BFF' id: BrickTileSteelLineW decals: - 3677: 9,75 - 3678: 9,76 - 3679: 9,80 - 3680: 9,81 - 3739: 13,78 - 3745: 12,87 - 15412: -49,9 + 3650: 9,75 + 3651: 9,76 + 3652: 9,80 + 3653: 9,81 + 3712: 13,78 + 3718: 12,87 + 15377: -49,9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 20503: -24,1 - 20504: -24,0 - 20509: -45,9 - 20517: -48,8 - 20535: 4,-84 - 20536: 4,-85 - 20537: 4,-86 - 20544: 4,-82 - 20545: 4,-81 - 20597: 7,-77 - 20598: 7,-75 - 20600: 4,-77 - 20620: 3,-61 - 20621: 3,-59 - 20630: 4,-71 - 20631: 4,-70 - 20632: 4,-69 - 20633: 4,-68 - 20640: 15,-31 - 20656: 10,-31 - 20670: 12,31 - 20671: 4,64 - 20674: 4,60 - 20675: 0,63 - 20676: 0,62 - 20677: 0,64 - 20722: 39,12 - 20724: 39,5 - 20725: 46,7 - 20726: 46,6 - 20727: 46,9 - 20743: 38,8 - 20805: 79,9 - 20806: 75,9 - 20826: 43,12 - 20829: 45,12 - 20834: 46,11 - 20841: 49,8 - 20891: 60,25 - 20892: 48,23 - 20893: 48,22 - 20901: 49,30 - 20902: 49,29 - 20903: 49,28 - 20904: 49,27 - 20905: 49,26 - 20906: 49,24 - 20907: 49,25 - 20941: 49,16 - 20948: 49,12 - 20973: 45,23 - 20974: 45,22 - 20975: 45,21 - 20976: 45,19 - 20977: 45,18 - 20978: 45,18 - 20979: 45,17 - 20980: 45,16 - 21001: 58,19 - 21009: 56,18 - 21010: 56,16 - 21014: 50,17 - 21015: 50,18 - 21029: 61,12 - 21041: 49,8 - 21042: 49,4 - 21065: 91,16 - 21066: 91,17 - 21067: 91,18 - 21068: 91,19 - 21069: 91,20 - 21070: 91,22 - 21072: 94,21 - 21086: 94,13 - 21103: 81,13 - 21110: 79,9 - 21111: 75,9 - 21126: 72,7 - 21127: 72,8 - 21128: 72,8 - 21129: 72,9 - 21130: 72,10 - 21131: 72,11 - 21132: 72,12 - 21133: 72,14 - 21134: 72,14 - 21135: 72,15 - 21136: 72,16 - 21137: 72,16 - 21138: 72,17 - 21148: 71,-1 - 21153: 69,0 - 21154: 72,0 - 21160: 43,0 - 21161: 39,0 - 21162: 49,-1 - 21163: 49,0 - 21164: 49,1 - 21182: 72,22 - 21188: 77,22 - 21216: 68,1 - 21217: 68,-1 - 21218: 71,-1 - 21219: 71,1 - 21233: 72,-4 - 21236: 68,-4 - 21237: 72,-4 - 21265: 55,-4 - 21266: 50,-4 - 21281: 46,1 - 21282: 46,2 - 21293: 45,0 - 21306: 38,4 - 21307: 38,6 - 21314: 34,5 - 21327: 39,7 - 21338: 45,8 - 21339: 43,8 - 21358: 50,7 - 21359: 50,6 - 21360: 50,6 - 21361: 50,5 - 21383: 75,-4 - 21388: 76,-3 - 21391: 75,-4 - 21393: 72,-4 - 21394: -20,-25 - 21395: -20,-27 - 21397: -17,-24 - 21411: 4,-65 - 21421: 45,-4 - 21452: 72,2 + 20338: -24,1 + 20339: -24,0 + 20344: -45,9 + 20352: -48,8 + 20370: 4,-84 + 20371: 4,-85 + 20372: 4,-86 + 20379: 4,-82 + 20380: 4,-81 + 20432: 7,-77 + 20433: 7,-75 + 20435: 4,-77 + 20455: 3,-61 + 20456: 3,-59 + 20465: 4,-71 + 20466: 4,-70 + 20467: 4,-69 + 20468: 4,-68 + 20475: 15,-31 + 20491: 10,-31 + 20505: 12,31 + 20506: 4,64 + 20509: 4,60 + 20510: 0,63 + 20511: 0,62 + 20512: 0,64 + 20557: 39,12 + 20559: 39,5 + 20560: 46,7 + 20561: 46,6 + 20562: 46,9 + 20578: 38,8 + 20640: 79,9 + 20641: 75,9 + 20661: 43,12 + 20664: 45,12 + 20669: 46,11 + 20676: 49,8 + 20726: 60,25 + 20727: 48,23 + 20728: 48,22 + 20736: 49,30 + 20737: 49,29 + 20738: 49,28 + 20739: 49,27 + 20740: 49,26 + 20741: 49,24 + 20742: 49,25 + 20776: 49,16 + 20783: 49,12 + 20808: 45,23 + 20809: 45,22 + 20810: 45,21 + 20811: 45,19 + 20812: 45,18 + 20813: 45,18 + 20814: 45,17 + 20815: 45,16 + 20836: 58,19 + 20844: 56,18 + 20845: 56,16 + 20849: 50,17 + 20850: 50,18 + 20864: 61,12 + 20876: 49,8 + 20877: 49,4 + 20900: 91,16 + 20901: 91,17 + 20902: 91,18 + 20903: 91,19 + 20904: 91,20 + 20905: 91,22 + 20907: 94,21 + 20921: 94,13 + 20938: 81,13 + 20945: 79,9 + 20946: 75,9 + 20961: 72,7 + 20962: 72,8 + 20963: 72,8 + 20964: 72,9 + 20965: 72,10 + 20966: 72,11 + 20967: 72,12 + 20968: 72,14 + 20969: 72,14 + 20970: 72,15 + 20971: 72,16 + 20972: 72,16 + 20973: 72,17 + 20983: 71,-1 + 20988: 69,0 + 20989: 72,0 + 20995: 43,0 + 20996: 39,0 + 20997: 49,-1 + 20998: 49,0 + 20999: 49,1 + 21017: 72,22 + 21023: 77,22 + 21051: 68,1 + 21052: 68,-1 + 21053: 71,-1 + 21054: 71,1 + 21068: 72,-4 + 21071: 68,-4 + 21072: 72,-4 + 21100: 55,-4 + 21101: 50,-4 + 21116: 46,1 + 21117: 46,2 + 21128: 45,0 + 21141: 38,4 + 21142: 38,6 + 21149: 34,5 + 21162: 39,7 + 21173: 45,8 + 21174: 43,8 + 21193: 50,7 + 21194: 50,6 + 21195: 50,6 + 21196: 50,5 + 21218: 75,-4 + 21223: 76,-3 + 21226: 75,-4 + 21228: 72,-4 + 21229: -20,-25 + 21230: -20,-27 + 21232: -17,-24 + 21246: 4,-65 + 21256: 45,-4 + 21287: 72,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2280: -14,48 - 2281: -14,50 - 2283: -23,49 - 2287: -23,46 - 2295: -24,43 - 2296: -24,44 - 2300: -24,42 - 2305: -14,46 - 2306: -14,45 - 2307: -14,43 - 2308: -14,44 - 2309: -14,42 - 2310: -14,41 - 2311: -14,40 - 2312: -14,39 - 2313: -14,38 - 2314: -14,37 - 2315: -14,36 - 2320: -23,29 - 2323: -21,27 - 2324: -21,27 - 2352: -27,31 - 2410: -29,36 - 2411: -29,35 - 2412: -29,34 - 2425: -34,37 - 2426: -34,36 - 2427: -34,35 - 2428: -34,34 - 2429: -34,33 - 2442: -14,46 - 2444: -14,36 - 2500: -14,46 - 2612: -14,46 - 2613: -14,36 - 2758: -13,49 - 2791: -2,51 - 2796: -1,48 - 3106: -7,59 - 3184: -7,60 - 3185: -7,61 - 3186: -7,62 - 3187: -7,63 - 3188: -7,64 - 3189: -7,65 - 3208: -7,66 - 3211: -21,59 - 3212: -21,60 - 3213: -21,61 - 3214: -21,61 - 3215: -21,62 - 3216: -21,63 - 3217: -21,64 - 3218: -21,65 - 3219: -21,65 - 3220: -21,66 - 3344: -32,68 - 3346: -31,70 - 3347: -31,71 - 3348: -31,72 - 3349: -31,73 - 3350: -31,74 - 3351: -31,75 - 3352: -31,76 - 3353: -31,78 - 3354: -31,83 - 3355: -31,85 - 3356: -31,86 - 3357: -32,90 - 3358: -32,89 - 3359: -32,91 - 3360: -31,93 - 3361: -31,94 - 3362: -31,95 - 3400: -13,70 - 3401: -13,71 - 3402: -13,72 - 3403: -13,73 - 3404: -13,74 - 3405: -13,75 - 3406: -13,76 - 3407: -13,78 - 3408: -14,80 - 3409: -14,81 - 3410: -13,83 - 3411: -13,85 - 3412: -13,86 - 3413: -13,87 - 3414: -14,89 - 3415: -14,90 - 3416: -14,91 - 3417: -13,93 - 3418: -13,94 - 3419: -13,95 - 3508: -32,81 - 3509: -32,80 - 3534: -14,90 - 3587: -21,58 - 3588: -21,57 - 3589: -21,56 - 3596: -10,77 - 3598: -8,77 - 3600: -14,77 - 3608: -8,84 - 3609: -10,84 - 3610: -14,84 - 3616: -32,84 - 3617: -28,84 - 3620: -26,84 - 3629: -32,77 - 3630: -28,77 - 3631: -26,77 - 3649: 5,70 - 3650: 5,71 - 3651: 5,72 - 3652: 5,73 - 3653: 5,74 - 3654: 5,75 - 3655: 5,75 - 3656: 5,76 - 3657: 5,78 - 3658: 4,80 - 3659: 4,81 - 3660: 5,83 - 3688: 4,77 - 3692: 4,84 - 3694: 4,84 - 3803: 4,57 - 3850: 9,68 - 4199: -17,14 - 4200: -17,15 - 4340: 16,16 - 4341: 16,17 - 4342: 16,18 - 4343: 16,19 - 4344: 16,20 - 4352: 16,13 - 4353: 16,12 - 4354: 16,11 - 4355: 16,10 - 4356: 16,8 - 4357: 16,10 - 4358: 16,9 - 4359: 16,7 - 4360: 16,6 - 4361: 16,4 - 4362: 16,5 - 4363: 16,3 - 4364: 16,2 - 4365: 16,0 - 4366: 16,-1 - 4367: 16,1 - 4368: 16,-2 - 4701: 19,24 - 5140: 32,28 - 5141: 32,27 - 5142: 32,26 - 5143: 32,26 - 5169: 37,30 - 5174: 36,28 - 5175: 36,27 - 5254: 16,-6 - 5255: 16,-5 - 5256: 16,-3 - 5304: -31,79 - 5305: -31,80 - 5306: -31,81 - 5307: -31,81 - 5308: -31,82 - 5309: -31,82 - 5310: -31,88 - 5311: -31,89 - 5312: -31,89 - 5313: -31,90 - 5314: -31,91 - 5315: -31,92 - 5316: -31,92 - 5330: -13,79 - 5331: -13,80 - 5332: -13,81 - 5333: -13,81 - 5334: -13,82 - 5335: -13,82 - 5336: -13,88 - 5337: -13,88 - 5338: -13,89 - 5339: -13,90 - 5340: -13,91 - 5341: -13,91 - 5350: -13,92 - 5351: -13,92 - 5393: 5,79 - 5394: 5,80 - 5395: 5,81 - 5396: 5,81 - 5397: 5,81 - 5398: 5,82 - 5400: 16,-7 - 5570: -17,4 - 5571: -17,-1 - 5584: -20,-8 - 5585: -20,-9 - 5586: -20,-10 - 5587: -20,-10 - 5588: -20,-11 - 5589: -20,-12 - 5590: -20,-13 - 5591: -20,-14 - 5657: -17,-8 - 5685: 15,-8 - 5821: 15,-4 - 5829: 7,-5 - 6147: 16,-18 - 6148: 16,-17 - 6149: 16,-16 - 6150: 16,-15 - 6151: 16,-14 - 6152: 16,-13 - 6153: 16,-12 - 6154: 16,-11 - 6181: -17,-19 - 6182: -17,-20 - 6183: -17,-21 - 6201: -17,-19 - 6292: -6,-15 - 6293: -6,-16 - 6308: -3,-19 - 6309: -3,-20 - 6310: -3,-21 - 6317: 1,-21 - 6318: 1,-20 - 6319: 1,-19 - 6332: 15,-21 - 6333: 15,-20 - 6334: 15,-19 - 6367: -3,-16 - 6394: 6,-12 - 6395: 6,-13 - 6396: 6,-14 - 6397: 6,-15 - 6398: 6,-15 - 6399: 6,-16 - 6414: 11,-16 - 6431: 12,-17 - 6437: 12,-15 - 6476: -20,-19 - 6477: -20,-19 - 6478: -20,-19 - 6479: -20,-19 - 6480: -20,-19 - 6813: -17,-1 - 6835: -43,22 - 6836: -44,20 - 6837: -44,20 - 6838: -44,19 - 6839: -44,19 - 6840: -44,17 - 6841: -44,16 - 6912: -38,14 - 6913: -38,13 - 6914: -38,12 - 6915: -38,12 - 6916: -38,11 - 6917: -38,10 - 6918: -38,10 - 6951: -21,11 - 6952: -21,12 - 6974: -29,14 - 6975: -29,14 - 6976: -29,13 - 6977: -29,12 - 6978: -29,11 - 6979: -29,11 - 6980: -29,10 - 6981: -29,9 - 7084: 26,6 - 7085: 26,5 - 7086: 26,4 - 7089: 19,4 - 7090: 19,5 - 7091: 19,6 - 7103: 20,9 - 7137: 19,-12 - 7138: 19,-11 - 7139: 19,-10 - 7146: 26,-12 - 7147: 26,-11 - 7148: 26,-10 - 7164: 19,-3 - 7178: 25,-1 - 7179: 25,0 - 7180: 25,1 - 7181: 25,2 - 7209: 25,-3 - 7210: 25,-4 - 7211: 25,-5 - 7212: 25,-5 - 7213: 25,-6 - 7356: 28,10 - 7397: 33,4 - 7398: 33,6 - 8037: 79,-21 - 8038: 79,-20 - 8052: 78,-22 - 8053: 78,-19 - 8054: 82,-19 - 8055: 82,-22 - 8062: 66,-19 - 8065: 66,-22 - 8203: 32,-12 - 8204: 32,-10 - 8205: 32,-10 - 8215: 33,-11 - 8216: 33,-13 - 8217: 33,-13 - 8218: 33,-15 - 8227: 33,-9 - 8228: 33,-8 - 8262: 33,-7 - 8335: 42,-8 - 8336: 42,-8 - 8378: 41,-17 - 8384: 39,-17 - 8385: 39,-17 - 8398: 38,-20 - 8399: 38,-20 - 8452: 42,-19 - 8453: 42,-21 - 8474: 54,-21 - 8475: 54,-21 - 8476: 54,-19 - 8477: 54,-19 - 8515: 55,-20 - 8516: 55,-22 - 8517: 55,-23 - 8518: 55,-23 - 8519: 55,-24 - 8520: 55,-24 - 8523: 57,-20 - 8524: 57,-21 - 8627: 55,-28 - 8628: 55,-27 - 8629: 55,-27 - 8630: 55,-26 - 8631: 55,-25 - 8632: 55,-30 - 8633: 55,-17 - 8634: 55,-18 - 8635: 55,-16 - 8636: 55,-15 - 8637: 55,-15 - 8638: 55,-14 - 8639: 55,-13 - 8640: 55,-13 - 8641: 55,-12 - 8713: 64,-19 - 8714: 64,-22 - 8715: 64,-22 - 8857: -2,-23 - 8858: -2,-24 - 8859: -2,-24 - 8860: -2,-27 - 8861: -2,-28 - 8873: 1,-26 - 8874: 1,-25 - 8897: -2,-30 - 8898: -2,-31 - 8899: -2,-32 - 8900: -2,-33 - 8946: -7,-28 - 8947: -15,-28 - 8948: -15,-27 - 8949: -15,-27 - 8968: -14,-23 - 8969: -14,-23 - 8970: -7,-23 - 9012: -7,-28 - 9231: 0,-74 - 9232: 0,-73 - 9233: 0,-73 - 9234: 0,-72 - 9235: 0,-72 - 9236: 0,-68 - 9237: 0,-68 - 9238: 0,-67 - 9239: 0,-67 - 9254: -11,-65 - 9255: -11,-65 - 9256: -11,-68 - 9257: -11,-69 - 9258: -11,-70 - 9259: -11,-71 - 9260: -11,-72 - 9261: -11,-72 - 9262: -11,-73 - 9263: -11,-74 - 9264: -11,-75 - 9265: -11,-76 - 9266: -11,-77 - 9272: -9,-79 - 9273: -9,-80 - 9274: -9,-81 - 9275: -9,-81 - 9321: -7,-71 - 9322: -7,-70 - 9323: -7,-69 - 9324: -7,-69 - 9352: -3,-59 - 9355: -3,-61 - 9356: -3,-61 - 9382: -2,-53 - 9383: -2,-52 - 9384: -2,-52 - 9385: -2,-54 - 9386: -2,-54 - 9387: -2,-51 - 9388: -2,-50 - 9389: -2,-49 - 9390: -2,-49 - 9391: -2,-47 - 9392: -2,-47 - 9393: -2,-46 - 9394: -2,-46 - 9395: -2,-45 - 9396: -2,-45 - 9397: -2,-44 - 9398: -2,-44 - 9399: -2,-43 - 9400: -2,-42 - 9401: -2,-39 - 9402: -2,-38 - 9403: -2,-38 - 9404: 1,-45 - 9419: -2,-56 - 9420: -2,-55 - 9421: -2,-55 - 9492: -42,-15 - 9493: -42,-16 - 9611: 2,-35 - 9672: 1,-39 - 9679: -11,-65 - 10398: 1,-44 - 10429: 1,-51 - 10456: 3,-52 - 10457: 3,-52 - 10458: 3,-51 - 10459: 3,-50 - 10578: 2,-60 - 10579: 2,-60 - 10612: 3,-67 - 10613: 3,-66 - 10614: 3,-75 - 10615: 3,-76 - 10622: 4,-84 - 10623: 4,-85 - 10624: 4,-86 - 10631: 2,-60 - 10665: 43,-41 - 10666: 43,-41 - 10667: 43,-40 - 10668: 43,-39 - 10699: 50,-42 - 10700: 50,-42 - 11284: -60,-42 - 11285: -60,-37 - 11286: -60,-35 - 11287: -60,-35 - 11338: -78,-31 - 11339: -78,-20 - 11344: -78,-31 - 11382: -6,-86 - 11383: -6,-84 - 11384: -6,-85 - 11385: -4,-86 - 11386: -4,-85 - 11387: -4,-84 - 11388: 2,-86 - 11389: 2,-85 - 11390: 2,-84 - 11458: -15,-32 - 11459: -15,-31 - 11460: -15,-30 - 11875: -39,-56 - 11876: -39,-56 - 11885: -42,-53 - 11886: -42,-54 - 11887: -42,-55 - 11891: -36,-53 - 11916: -26,-51 - 12590: -18,-78 - 13411: -44,10 - 13461: -38,-62 - 13462: -38,-61 - 14443: -45,13 - 14974: 6,22 - 14975: 6,23 - 14976: 6,24 - 15001: -8,24 - 15002: -8,23 - 15003: -8,22 - 15005: -20,24 - 15006: -20,23 - 15007: -20,22 - 15275: 43,-20 - 15403: -1,-70 - 15437: -43,5 - 15438: -43,6 - 15450: -40,6 - 15451: -40,5 - 15452: -40,4 - 16552: -60,-49 - 16857: -61,-13 - 16858: -61,-14 - 16888: -60,-17 - 16971: -61,-2 - 16972: -61,-3 - 16991: -53,4 - 16992: -53,5 - 16993: -53,6 - 17006: -56,-9 - 17007: -56,-7 - 17671: 9,75 - 17672: 9,76 - 17673: 9,80 - 17674: 9,81 - 18084: -44,23 - 18659: -17,-10 - 18660: -17,-9 - 18723: 15,-10 - 18724: 15,-9 - 18725: 15,-8 - 20076: -23,13 - 20077: -23,12 - 20078: -23,12 - 20079: -23,11 - 20080: -23,10 - 20191: -15,4 - 20198: -16,0 - 20199: -16,1 - 20200: -16,2 - 20201: -16,3 - 20261: 61,22 - 20262: 61,23 - 20263: 61,24 - 20267: 71,26 - 20322: -21,4 - 20323: -21,5 - 20324: -21,6 - 20375: -20,19 - 20376: -20,18 - 20377: -20,16 - 20378: -20,15 - 20379: -20,15 - 20380: -20,14 - 20381: -20,14 - 20382: -20,13 - 20397: -20,2 - 20398: -20,2 - 20399: -20,1 - 20400: -20,0 - 20401: -20,-1 - 20403: -20,-4 - 20404: -20,-5 - 20405: -20,-6 - 20463: -20,3 - 20465: -17,-1 - 20466: -17,4 - 20467: -17,15 - 20468: -17,14 - 20469: -20,14 - 20470: -20,2 - 20471: -20,3 - 20472: -20,1 - 20473: -20,1 - 20474: -20,8 - 20475: -20,9 - 20476: -20,9 - 20477: -20,10 - 20478: -20,9 - 20479: -20,8 - 20480: -20,8 - 21545: 19,14 - 21546: 19,15 - 21548: 28,11 + 2253: -14,48 + 2254: -14,50 + 2256: -23,49 + 2260: -23,46 + 2268: -24,43 + 2269: -24,44 + 2273: -24,42 + 2278: -14,46 + 2279: -14,45 + 2280: -14,43 + 2281: -14,44 + 2282: -14,42 + 2283: -14,41 + 2284: -14,40 + 2285: -14,39 + 2286: -14,38 + 2287: -14,37 + 2288: -14,36 + 2293: -23,29 + 2296: -21,27 + 2297: -21,27 + 2325: -27,31 + 2383: -29,36 + 2384: -29,35 + 2385: -29,34 + 2398: -34,37 + 2399: -34,36 + 2400: -34,35 + 2401: -34,34 + 2402: -34,33 + 2415: -14,46 + 2417: -14,36 + 2473: -14,46 + 2585: -14,46 + 2586: -14,36 + 2731: -13,49 + 2764: -2,51 + 2769: -1,48 + 3079: -7,59 + 3157: -7,60 + 3158: -7,61 + 3159: -7,62 + 3160: -7,63 + 3161: -7,64 + 3162: -7,65 + 3181: -7,66 + 3184: -21,59 + 3185: -21,60 + 3186: -21,61 + 3187: -21,61 + 3188: -21,62 + 3189: -21,63 + 3190: -21,64 + 3191: -21,65 + 3192: -21,65 + 3193: -21,66 + 3317: -32,68 + 3319: -31,70 + 3320: -31,71 + 3321: -31,72 + 3322: -31,73 + 3323: -31,74 + 3324: -31,75 + 3325: -31,76 + 3326: -31,78 + 3327: -31,83 + 3328: -31,85 + 3329: -31,86 + 3330: -32,90 + 3331: -32,89 + 3332: -32,91 + 3333: -31,93 + 3334: -31,94 + 3335: -31,95 + 3373: -13,70 + 3374: -13,71 + 3375: -13,72 + 3376: -13,73 + 3377: -13,74 + 3378: -13,75 + 3379: -13,76 + 3380: -13,78 + 3381: -14,80 + 3382: -14,81 + 3383: -13,83 + 3384: -13,85 + 3385: -13,86 + 3386: -13,87 + 3387: -14,89 + 3388: -14,90 + 3389: -14,91 + 3390: -13,93 + 3391: -13,94 + 3392: -13,95 + 3481: -32,81 + 3482: -32,80 + 3507: -14,90 + 3560: -21,58 + 3561: -21,57 + 3562: -21,56 + 3569: -10,77 + 3571: -8,77 + 3573: -14,77 + 3581: -8,84 + 3582: -10,84 + 3583: -14,84 + 3589: -32,84 + 3590: -28,84 + 3593: -26,84 + 3602: -32,77 + 3603: -28,77 + 3604: -26,77 + 3622: 5,70 + 3623: 5,71 + 3624: 5,72 + 3625: 5,73 + 3626: 5,74 + 3627: 5,75 + 3628: 5,75 + 3629: 5,76 + 3630: 5,78 + 3631: 4,80 + 3632: 4,81 + 3633: 5,83 + 3661: 4,77 + 3665: 4,84 + 3667: 4,84 + 3776: 4,57 + 3823: 9,68 + 4172: -17,14 + 4173: -17,15 + 4313: 16,16 + 4314: 16,17 + 4315: 16,18 + 4316: 16,19 + 4317: 16,20 + 4325: 16,13 + 4326: 16,12 + 4327: 16,11 + 4328: 16,10 + 4329: 16,8 + 4330: 16,10 + 4331: 16,9 + 4332: 16,7 + 4333: 16,6 + 4334: 16,4 + 4335: 16,5 + 4336: 16,3 + 4337: 16,2 + 4338: 16,0 + 4339: 16,-1 + 4340: 16,1 + 4341: 16,-2 + 4674: 19,24 + 5113: 32,28 + 5114: 32,27 + 5115: 32,26 + 5116: 32,26 + 5142: 37,30 + 5147: 36,28 + 5148: 36,27 + 5227: 16,-6 + 5228: 16,-5 + 5229: 16,-3 + 5277: -31,79 + 5278: -31,80 + 5279: -31,81 + 5280: -31,81 + 5281: -31,82 + 5282: -31,82 + 5283: -31,88 + 5284: -31,89 + 5285: -31,89 + 5286: -31,90 + 5287: -31,91 + 5288: -31,92 + 5289: -31,92 + 5303: -13,79 + 5304: -13,80 + 5305: -13,81 + 5306: -13,81 + 5307: -13,82 + 5308: -13,82 + 5309: -13,88 + 5310: -13,88 + 5311: -13,89 + 5312: -13,90 + 5313: -13,91 + 5314: -13,91 + 5323: -13,92 + 5324: -13,92 + 5366: 5,79 + 5367: 5,80 + 5368: 5,81 + 5369: 5,81 + 5370: 5,81 + 5371: 5,82 + 5373: 16,-7 + 5543: -17,4 + 5544: -17,-1 + 5557: -20,-8 + 5558: -20,-9 + 5559: -20,-10 + 5560: -20,-10 + 5561: -20,-11 + 5562: -20,-12 + 5563: -20,-13 + 5564: -20,-14 + 5630: -17,-8 + 5658: 15,-8 + 5794: 15,-4 + 5802: 7,-5 + 6120: 16,-18 + 6121: 16,-17 + 6122: 16,-16 + 6123: 16,-15 + 6124: 16,-14 + 6125: 16,-13 + 6126: 16,-12 + 6127: 16,-11 + 6154: -17,-19 + 6155: -17,-20 + 6156: -17,-21 + 6174: -17,-19 + 6265: -6,-15 + 6266: -6,-16 + 6281: -3,-19 + 6282: -3,-20 + 6283: -3,-21 + 6290: 1,-21 + 6291: 1,-20 + 6292: 1,-19 + 6305: 15,-21 + 6306: 15,-20 + 6307: 15,-19 + 6340: -3,-16 + 6367: 6,-12 + 6368: 6,-13 + 6369: 6,-14 + 6370: 6,-15 + 6371: 6,-15 + 6372: 6,-16 + 6387: 11,-16 + 6404: 12,-17 + 6410: 12,-15 + 6449: -20,-19 + 6450: -20,-19 + 6451: -20,-19 + 6452: -20,-19 + 6453: -20,-19 + 6786: -17,-1 + 6808: -43,22 + 6809: -44,20 + 6810: -44,20 + 6811: -44,19 + 6812: -44,19 + 6813: -44,17 + 6814: -44,16 + 6885: -38,14 + 6886: -38,13 + 6887: -38,12 + 6888: -38,12 + 6889: -38,11 + 6890: -38,10 + 6891: -38,10 + 6924: -21,11 + 6925: -21,12 + 6947: -29,14 + 6948: -29,14 + 6949: -29,13 + 6950: -29,12 + 6951: -29,11 + 6952: -29,11 + 6953: -29,10 + 6954: -29,9 + 7057: 26,6 + 7058: 26,5 + 7059: 26,4 + 7062: 19,4 + 7063: 19,5 + 7064: 19,6 + 7076: 20,9 + 7110: 19,-12 + 7111: 19,-11 + 7112: 19,-10 + 7119: 26,-12 + 7120: 26,-11 + 7121: 26,-10 + 7137: 19,-3 + 7151: 25,-1 + 7152: 25,0 + 7153: 25,1 + 7154: 25,2 + 7182: 25,-3 + 7183: 25,-4 + 7184: 25,-5 + 7185: 25,-5 + 7186: 25,-6 + 7329: 28,10 + 7370: 33,4 + 7371: 33,6 + 8005: 79,-21 + 8006: 79,-20 + 8019: 78,-22 + 8020: 78,-19 + 8021: 82,-19 + 8022: 82,-22 + 8027: 66,-19 + 8030: 66,-22 + 8168: 32,-12 + 8169: 32,-10 + 8170: 32,-10 + 8180: 33,-11 + 8181: 33,-13 + 8182: 33,-13 + 8183: 33,-15 + 8192: 33,-9 + 8193: 33,-8 + 8227: 33,-7 + 8300: 42,-8 + 8301: 42,-8 + 8343: 41,-17 + 8349: 39,-17 + 8350: 39,-17 + 8363: 38,-20 + 8364: 38,-20 + 8417: 42,-19 + 8418: 42,-21 + 8439: 54,-21 + 8440: 54,-21 + 8441: 54,-19 + 8442: 54,-19 + 8480: 55,-20 + 8481: 55,-22 + 8482: 55,-23 + 8483: 55,-23 + 8484: 55,-24 + 8485: 55,-24 + 8488: 57,-20 + 8489: 57,-21 + 8592: 55,-28 + 8593: 55,-27 + 8594: 55,-27 + 8595: 55,-26 + 8596: 55,-25 + 8597: 55,-30 + 8598: 55,-17 + 8599: 55,-18 + 8600: 55,-16 + 8601: 55,-15 + 8602: 55,-15 + 8603: 55,-14 + 8604: 55,-13 + 8605: 55,-13 + 8606: 55,-12 + 8678: 64,-19 + 8679: 64,-22 + 8680: 64,-22 + 8822: -2,-23 + 8823: -2,-24 + 8824: -2,-24 + 8825: -2,-27 + 8826: -2,-28 + 8838: 1,-26 + 8839: 1,-25 + 8862: -2,-30 + 8863: -2,-31 + 8864: -2,-32 + 8865: -2,-33 + 8911: -7,-28 + 8912: -15,-28 + 8913: -15,-27 + 8914: -15,-27 + 8933: -14,-23 + 8934: -14,-23 + 8935: -7,-23 + 8977: -7,-28 + 9196: 0,-74 + 9197: 0,-73 + 9198: 0,-73 + 9199: 0,-72 + 9200: 0,-72 + 9201: 0,-68 + 9202: 0,-68 + 9203: 0,-67 + 9204: 0,-67 + 9219: -11,-65 + 9220: -11,-65 + 9221: -11,-68 + 9222: -11,-69 + 9223: -11,-70 + 9224: -11,-71 + 9225: -11,-72 + 9226: -11,-72 + 9227: -11,-73 + 9228: -11,-74 + 9229: -11,-75 + 9230: -11,-76 + 9231: -11,-77 + 9237: -9,-79 + 9238: -9,-80 + 9239: -9,-81 + 9240: -9,-81 + 9286: -7,-71 + 9287: -7,-70 + 9288: -7,-69 + 9289: -7,-69 + 9317: -3,-59 + 9320: -3,-61 + 9321: -3,-61 + 9347: -2,-53 + 9348: -2,-52 + 9349: -2,-52 + 9350: -2,-54 + 9351: -2,-54 + 9352: -2,-51 + 9353: -2,-50 + 9354: -2,-49 + 9355: -2,-49 + 9356: -2,-47 + 9357: -2,-47 + 9358: -2,-46 + 9359: -2,-46 + 9360: -2,-45 + 9361: -2,-45 + 9362: -2,-44 + 9363: -2,-44 + 9364: -2,-43 + 9365: -2,-42 + 9366: -2,-39 + 9367: -2,-38 + 9368: -2,-38 + 9369: 1,-45 + 9384: -2,-56 + 9385: -2,-55 + 9386: -2,-55 + 9457: -42,-15 + 9458: -42,-16 + 9576: 2,-35 + 9637: 1,-39 + 9644: -11,-65 + 10363: 1,-44 + 10394: 1,-51 + 10421: 3,-52 + 10422: 3,-52 + 10423: 3,-51 + 10424: 3,-50 + 10543: 2,-60 + 10544: 2,-60 + 10577: 3,-67 + 10578: 3,-66 + 10579: 3,-75 + 10580: 3,-76 + 10587: 4,-84 + 10588: 4,-85 + 10589: 4,-86 + 10596: 2,-60 + 10630: 43,-41 + 10631: 43,-41 + 10632: 43,-40 + 10633: 43,-39 + 10664: 50,-42 + 10665: 50,-42 + 11249: -60,-42 + 11250: -60,-37 + 11251: -60,-35 + 11252: -60,-35 + 11303: -78,-31 + 11304: -78,-20 + 11309: -78,-31 + 11347: -6,-86 + 11348: -6,-84 + 11349: -6,-85 + 11350: -4,-86 + 11351: -4,-85 + 11352: -4,-84 + 11353: 2,-86 + 11354: 2,-85 + 11355: 2,-84 + 11423: -15,-32 + 11424: -15,-31 + 11425: -15,-30 + 11840: -39,-56 + 11841: -39,-56 + 11850: -42,-53 + 11851: -42,-54 + 11852: -42,-55 + 11856: -36,-53 + 11881: -26,-51 + 12555: -18,-78 + 13376: -44,10 + 13426: -38,-62 + 13427: -38,-61 + 14408: -45,13 + 14939: 6,22 + 14940: 6,23 + 14941: 6,24 + 14966: -8,24 + 14967: -8,23 + 14968: -8,22 + 14970: -20,24 + 14971: -20,23 + 14972: -20,22 + 15240: 43,-20 + 15368: -1,-70 + 15402: -43,5 + 15403: -43,6 + 15415: -40,6 + 15416: -40,5 + 15417: -40,4 + 16406: -60,-49 + 16711: -61,-13 + 16712: -61,-14 + 16742: -60,-17 + 16825: -61,-2 + 16826: -61,-3 + 16845: -53,4 + 16846: -53,5 + 16847: -53,6 + 16860: -56,-9 + 16861: -56,-7 + 17525: 9,75 + 17526: 9,76 + 17527: 9,80 + 17528: 9,81 + 17938: -44,23 + 18494: -17,-10 + 18495: -17,-9 + 18558: 15,-10 + 18559: 15,-9 + 18560: 15,-8 + 19911: -23,13 + 19912: -23,12 + 19913: -23,12 + 19914: -23,11 + 19915: -23,10 + 20026: -15,4 + 20033: -16,0 + 20034: -16,1 + 20035: -16,2 + 20036: -16,3 + 20096: 61,22 + 20097: 61,23 + 20098: 61,24 + 20102: 71,26 + 20157: -21,4 + 20158: -21,5 + 20159: -21,6 + 20210: -20,19 + 20211: -20,18 + 20212: -20,16 + 20213: -20,15 + 20214: -20,15 + 20215: -20,14 + 20216: -20,14 + 20217: -20,13 + 20232: -20,2 + 20233: -20,2 + 20234: -20,1 + 20235: -20,0 + 20236: -20,-1 + 20238: -20,-4 + 20239: -20,-5 + 20240: -20,-6 + 20298: -20,3 + 20300: -17,-1 + 20301: -17,4 + 20302: -17,15 + 20303: -17,14 + 20304: -20,14 + 20305: -20,2 + 20306: -20,3 + 20307: -20,1 + 20308: -20,1 + 20309: -20,8 + 20310: -20,9 + 20311: -20,9 + 20312: -20,10 + 20313: -20,9 + 20314: -20,8 + 20315: -20,8 + 21380: 19,14 + 21381: 19,15 + 21383: 28,11 - node: cleanable: True color: '#FFFFFFFF' @@ -11096,70 +11098,70 @@ entities: 914: 28,-1 915: 28,0 918: 30,2 - 4094: -20,19 - 4095: -20,18 - 4096: -20,16 - 4097: -20,15 - 4098: -20,14 - 4099: -20,14 - 4100: -20,13 - 4101: -20,10 - 4102: -20,9 - 4103: -20,8 - 4104: -20,8 - 4105: -20,7 + 4067: -20,19 + 4068: -20,18 + 4069: -20,16 + 4070: -20,15 + 4071: -20,14 + 4072: -20,14 + 4073: -20,13 + 4074: -20,10 + 4075: -20,9 + 4076: -20,8 + 4077: -20,8 + 4078: -20,7 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNe decals: - 3922: 27,67 - 9485: -37,2 - 18059: -54,34 - 18061: -54,37 - 18090: -47,42 - 18156: -44,45 - 18179: -58,54 - 18191: -58,58 - 18279: -53,24 + 3895: 27,67 + 9450: -37,2 + 17913: -54,34 + 17915: -54,37 + 17944: -47,42 + 18010: -44,45 + 18033: -58,54 + 18045: -58,58 + 18133: -53,24 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNe decals: - 9581: 38,-34 - 9589: 18,-24 - 9766: 14,-34 - 9976: 24,-38 - 10011: 38,-38 - 10012: 38,-44 - 10143: 14,-38 - 10167: 24,-46 - 10205: 24,-43 - 10229: 34,-47 - 10270: 31,-47 - 10368: 10,-43 - 10372: 6,-43 - 10414: 14,-43 - 19555: 7,65 - 19586: -5,-58 - 19936: 22,-25 - 19944: 26,-27 - 19950: 32,-29 + 9546: 38,-34 + 9554: 18,-24 + 9731: 14,-34 + 9941: 24,-38 + 9976: 38,-38 + 9977: 38,-44 + 10108: 14,-38 + 10132: 24,-46 + 10170: 24,-43 + 10194: 34,-47 + 10235: 31,-47 + 10333: 10,-43 + 10337: 6,-43 + 10379: 14,-43 + 19390: 7,65 + 19421: -5,-58 + 19771: 22,-25 + 19779: 26,-27 + 19785: 32,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNe decals: - 2937: -28,55 - 3021: -37,50 + 2910: -28,55 + 2994: -37,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNe decals: - 5181: 43,30 - 11730: -4,-30 - 11944: -33,-40 - 12125: -22,-24 - 12287: -13,-56 - 12317: -4,-46 + 5154: 43,30 + 11695: -4,-30 + 11909: -33,-40 + 12090: -22,-24 + 12252: -13,-56 + 12282: -4,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNe @@ -11169,68 +11171,68 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNe decals: - 10867: 28,-55 - 10885: 36,-60 - 10913: 41,-60 - 10962: 42,-70 - 10980: 42,-73 + 10832: 28,-55 + 10850: 36,-60 + 10878: 41,-60 + 10927: 42,-70 + 10945: 42,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNe decals: - 19420: 70,16 - 19434: 63,-3 - 19444: 66,-3 + 19255: 70,16 + 19269: 63,-3 + 19279: 66,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNe decals: - 2731: -9,54 - 2839: -5,34 - 3833: 12,70 + 2704: -9,54 + 2812: -5,34 + 3806: 12,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNe decals: - 4407: 10,31 - 4432: 11,37 - 4496: 17,32 - 4585: 11,40 - 4591: 11,46 - 4606: 21,39 - 4637: 22,38 - 4664: 27,32 - 4779: 29,38 - 4799: 15,35 - 4824: 29,44 - 4949: 13,54 - 5197: 43,30 + 4380: 10,31 + 4405: 11,37 + 4469: 17,32 + 4558: 11,40 + 4564: 11,46 + 4579: 21,39 + 4610: 22,38 + 4637: 27,32 + 4752: 29,38 + 4772: 15,35 + 4797: 29,44 + 4922: 13,54 + 5170: 43,30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 17073: -49,-1 - 17143: -63,2 - 17160: -57,-6 - 17196: -51,-6 - 17224: -55,-12 - 17260: -47,-13 - 17294: -47,15 - 17296: -61,15 - 17379: -68,16 - 17475: -57,19 - 17511: -45,-6 - 17532: -63,-6 - 17611: 11,88 - 17618: 7,90 - 17649: 12,82 - 17695: -62,10 - 17767: -66,2 - 17834: -70,12 - 17916: -76,1 - 17962: -67,-10 - 17997: -52,18 - 18342: -55,-1 + 16927: -49,-1 + 16997: -63,2 + 17014: -57,-6 + 17050: -51,-6 + 17078: -55,-12 + 17114: -47,-13 + 17148: -47,15 + 17150: -61,15 + 17233: -68,16 + 17329: -57,19 + 17365: -45,-6 + 17386: -63,-6 + 17465: 11,88 + 17472: 7,90 + 17503: 12,82 + 17549: -62,10 + 17621: -66,2 + 17688: -70,12 + 17770: -76,1 + 17816: -67,-10 + 17851: -52,18 + 18196: -55,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -11238,27 +11240,27 @@ entities: 856: 70,-41 971: 0,-15 1176: 49,-14 - 2090: -22,47 - 2171: -22,29 - 3874: 23,71 - 4182: -23,23 - 4183: -23,23 - 5608: -33,29 - 5610: -30,28 - 6752: -28,-11 - 6771: -28,-11 - 7006: -23,-15 - 8101: 57,-29 - 8102: 57,-16 - 8736: -6,-77 - 8741: -4,-80 - 9519: 74,-49 - 11025: 42,-67 - 11026: 41,-66 - 15394: -3,-69 - 15763: 95,-2 - 15848: 97,7 - 19901: 34,-15 + 2063: -22,47 + 2144: -22,29 + 3847: 23,71 + 4155: -23,23 + 4156: -23,23 + 5581: -33,29 + 5583: -30,28 + 6725: -28,-11 + 6744: -28,-11 + 6979: -23,-15 + 8066: 57,-29 + 8067: 57,-16 + 8701: -6,-77 + 8706: -4,-80 + 9484: 74,-49 + 10990: 42,-67 + 10991: 41,-66 + 15359: -3,-69 + 15617: 95,-2 + 15702: 97,7 + 19736: 34,-15 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw @@ -11268,60 +11270,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 21491: -16,16 + 21326: -16,16 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNw decals: - 3925: 25,67 - 18039: -50,23 - 18069: -57,37 - 18089: -50,42 - 18100: -51,38 - 18101: -60,54 - 18102: -47,55 - 18192: -60,58 + 3898: 25,67 + 17893: -50,23 + 17923: -57,37 + 17943: -50,42 + 17954: -51,38 + 17955: -60,54 + 17956: -47,55 + 18046: -60,58 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNw decals: - 9588: 16,-24 - 9977: 20,-38 - 10013: 30,-38 - 10014: 36,-44 - 10144: 8,-38 - 10168: 20,-46 - 10203: 20,-43 - 10204: 20,-43 - 10230: 32,-47 - 10271: 30,-47 - 10369: 2,-43 - 10384: 8,-43 - 10413: 12,-43 - 19554: 5,65 - 19587: -8,-58 - 19937: 20,-25 - 19943: 24,-27 + 9553: 16,-24 + 9942: 20,-38 + 9978: 30,-38 + 9979: 36,-44 + 10109: 8,-38 + 10133: 20,-46 + 10168: 20,-43 + 10169: 20,-43 + 10195: 32,-47 + 10236: 30,-47 + 10334: 2,-43 + 10349: 8,-43 + 10378: 12,-43 + 19389: 5,65 + 19422: -8,-58 + 19772: 20,-25 + 19778: 24,-27 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNw decals: - 2926: -35,50 - 2931: -34,54 - 2936: -29,55 - 18552: -38,50 + 2899: -35,50 + 2904: -34,54 + 2909: -29,55 + 18387: -38,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNw decals: - 11649: -31,-34 - 11720: -10,-30 - 11945: -34,-40 - 12124: -24,-24 - 12272: -17,-50 - 12286: -20,-56 - 12318: -11,-49 - 12319: -7,-46 + 11614: -31,-34 + 11685: -10,-30 + 11910: -34,-40 + 12089: -24,-24 + 12237: -17,-50 + 12251: -20,-56 + 12283: -11,-49 + 12284: -7,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNw @@ -11331,97 +11333,97 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNw decals: - 10874: 26,-55 - 10884: 34,-60 - 10919: 38,-60 - 10979: 41,-73 + 10839: 26,-55 + 10849: 34,-60 + 10884: 38,-60 + 10944: 41,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNw decals: - 19419: 68,16 - 19433: 60,-3 + 19254: 68,16 + 19268: 60,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNw decals: - 2735: -13,54 - 2838: -7,34 - 3834: 10,70 + 2708: -13,54 + 2811: -7,34 + 3807: 10,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNw decals: - 4399: 2,31 - 4428: 2,37 - 4570: 4,43 - 4584: 9,40 - 4592: 9,46 - 4607: 13,39 - 4647: 13,46 - 4663: 19,32 - 4770: 24,38 - 4800: 19,35 - 4825: 27,44 - 4948: 9,54 - 4973: 15,54 - 20225: 33,39 + 4372: 2,31 + 4401: 2,37 + 4543: 4,43 + 4557: 9,40 + 4565: 9,46 + 4580: 13,39 + 4620: 13,46 + 4636: 19,32 + 4743: 24,38 + 4773: 19,35 + 4798: 27,44 + 4921: 9,54 + 4946: 15,54 + 20060: 33,39 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 4035: -40,54 - 9621: 2,-30 + 4008: -40,54 + 9586: 2,-30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 17075: -51,-1 - 17081: -61,-1 - 17091: -61,2 - 17133: -59,15 - 17142: -64,2 - 17159: -61,-6 - 17221: -61,-12 - 17389: -78,16 - 17474: -61,19 - 17507: -49,-6 - 17575: -77,-6 - 17610: 9,88 - 17701: -65,10 - 17768: -74,2 - 17831: -74,12 - 17882: -78,7 - 17920: -79,1 - 17959: -73,-10 - 17996: -55,18 + 16929: -51,-1 + 16935: -61,-1 + 16945: -61,2 + 16987: -59,15 + 16996: -64,2 + 17013: -61,-6 + 17075: -61,-12 + 17243: -78,16 + 17328: -61,19 + 17361: -49,-6 + 17429: -77,-6 + 17464: 9,88 + 17555: -65,10 + 17622: -74,2 + 17685: -74,12 + 17736: -78,7 + 17774: -79,1 + 17813: -73,-10 + 17850: -55,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 972: -1,-15 1173: 44,-14 - 2091: -16,47 - 2404: -31,32 - 2405: -30,33 - 4185: -25,23 - 5607: -34,29 - 6383: -2,-14 - 6751: -35,-11 - 6770: -35,-11 - 7005: -26,-15 - 8103: 61,-16 - 8104: 61,-29 - 8354: 40,-15 - 8737: -3,-77 - 8740: -5,-80 - 9518: 72,-49 - 11027: 39,-66 - 11028: 38,-67 - 13528: -41,-62 - 15396: -6,-69 - 15832: 91,-3 - 15850: 95,7 + 2064: -16,47 + 2377: -31,32 + 2378: -30,33 + 4158: -25,23 + 5580: -34,29 + 6356: -2,-14 + 6724: -35,-11 + 6743: -35,-11 + 6978: -26,-15 + 8068: 61,-16 + 8069: 61,-29 + 8319: 40,-15 + 8702: -3,-77 + 8705: -5,-80 + 9483: 72,-49 + 10992: 39,-66 + 10993: 38,-67 + 13493: -41,-62 + 15361: -6,-69 + 15686: 91,-3 + 15704: 95,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11432,56 +11434,56 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteCornerSe decals: - 3923: 27,65 - 9486: -37,0 - 18055: -54,32 - 18060: -54,36 - 18092: -47,36 - 18158: -44,44 - 18190: -58,56 + 3896: 27,65 + 9451: -37,0 + 17909: -54,32 + 17914: -54,36 + 17946: -47,36 + 18012: -44,44 + 18044: -58,56 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSe decals: - 9696: 38,-36 - 9765: 14,-36 - 9825: 28,-53 - 9945: 18,-47 - 9975: 24,-41 - 10017: 38,-45 - 10026: 38,-42 - 10127: 32,-27 - 10156: 14,-41 - 10170: 24,-49 - 10226: 34,-53 - 10380: 10,-47 - 10417: 14,-47 - 19557: 7,62 - 19589: -5,-62 - 19951: 32,-30 - 19952: 30,-32 + 9661: 38,-36 + 9730: 14,-36 + 9790: 28,-53 + 9910: 18,-47 + 9940: 24,-41 + 9982: 38,-45 + 9991: 38,-42 + 10092: 32,-27 + 10121: 14,-41 + 10135: 24,-49 + 10191: 34,-53 + 10345: 10,-47 + 10382: 14,-47 + 19392: 7,62 + 19424: -5,-62 + 19786: 32,-30 + 19787: 30,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSe decals: - 2909: -27,46 - 3029: -37,47 + 2882: -27,46 + 3002: -37,47 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSe decals: - 5119: 27,26 - 5183: 43,28 - 11614: -12,-36 - 11615: -12,-36 - 11707: -5,-36 - 11731: -4,-32 - 11732: -4,-32 - 11942: -33,-46 - 11943: -33,-46 - 12270: -13,-54 - 12308: -13,-60 - 12321: -4,-53 + 5092: 27,26 + 5156: 43,28 + 11579: -12,-36 + 11580: -12,-36 + 11672: -5,-36 + 11696: -4,-32 + 11697: -4,-32 + 11907: -33,-46 + 11908: -33,-46 + 12235: -13,-54 + 12273: -13,-60 + 12286: -4,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSe @@ -11491,83 +11493,83 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSe decals: - 10880: 28,-58 - 10893: 36,-72 - 10930: 41,-63 - 10931: 45,-63 - 10963: 42,-71 - 10975: 39,-74 - 10976: 39,-74 - 10977: 42,-74 - 10978: 42,-74 - 11020: 31,-69 + 10845: 28,-58 + 10858: 36,-72 + 10895: 41,-63 + 10896: 45,-63 + 10928: 42,-71 + 10940: 39,-74 + 10941: 39,-74 + 10942: 42,-74 + 10943: 42,-74 + 10985: 31,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSe decals: - 19423: 70,12 - 19438: 63,-6 - 19446: 66,-5 + 19258: 70,12 + 19273: 63,-6 + 19281: 66,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSe decals: - 2729: -9,52 - 2841: -5,32 - 3840: 12,66 + 2702: -9,52 + 2814: -5,32 + 3813: 12,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSe decals: - 4433: 11,34 - 4434: 10,33 - 4487: 10,26 - 4502: 17,26 - 4529: 15,28 - 4560: 7,39 - 4582: 11,39 - 4600: 11,42 - 4634: 22,34 - 4677: 22,26 - 4686: 27,26 - 4775: 29,34 - 4797: 15,37 - 4827: 29,40 - 4962: 13,48 - 5198: 43,28 - 5205: 36,34 + 4406: 11,34 + 4407: 10,33 + 4460: 10,26 + 4475: 17,26 + 4502: 15,28 + 4533: 7,39 + 4555: 11,39 + 4573: 11,42 + 4607: 22,34 + 4650: 22,26 + 4659: 27,26 + 4748: 29,34 + 4770: 15,37 + 4800: 29,40 + 4935: 13,48 + 5171: 43,28 + 5178: 36,34 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 4042: -37,52 + 4015: -37,52 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 17076: -49,-4 - 17111: -51,8 - 17145: -63,0 - 17162: -57,-10 - 17197: -51,-10 - 17205: -52,-18 - 17227: -55,-15 - 17256: -47,-17 - 17345: -47,11 - 17392: -76,13 - 17399: -68,14 - 17466: -57,17 - 17515: -45,-10 - 17533: -63,-8 - 17581: -75,-10 - 17621: 7,87 - 17631: 11,84 - 17700: -62,5 - 17836: -70,10 - 17981: -67,-13 - 18351: -55,-4 - 18405: -52,17 - 18504: -66,-4 + 16930: -49,-4 + 16965: -51,8 + 16999: -63,0 + 17016: -57,-10 + 17051: -51,-10 + 17059: -52,-18 + 17081: -55,-15 + 17110: -47,-17 + 17199: -47,11 + 17246: -76,13 + 17253: -68,14 + 17320: -57,17 + 17369: -45,-10 + 17387: -63,-8 + 17435: -75,-10 + 17475: 7,87 + 17485: 11,84 + 17554: -62,5 + 17690: -70,10 + 17835: -67,-13 + 18205: -55,-4 + 18259: -52,17 + 18339: -66,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -11575,25 +11577,25 @@ entities: 865: 75,-47 974: 0,-16 1182: 49,-17 - 2092: -22,51 - 2170: -22,34 - 3867: 23,69 - 4188: -23,21 - 5611: -30,27 - 5612: -31,26 - 7003: -23,-18 - 8099: 57,-12 - 8100: 57,-25 - 8351: 34,-9 - 8738: -6,-79 - 8743: -4,-76 - 9522: 74,-52 - 11030: 42,-68 - 13529: -40,-63 - 15395: -3,-71 - 15407: -4,-73 - 15756: 95,-5 - 15852: 97,6 + 2065: -22,51 + 2143: -22,34 + 3840: 23,69 + 4161: -23,21 + 5584: -30,27 + 5585: -31,26 + 6976: -23,-18 + 8064: 57,-12 + 8065: 57,-25 + 8316: 34,-9 + 8703: -6,-79 + 8708: -4,-76 + 9487: 74,-52 + 10995: 42,-68 + 13494: -40,-63 + 15360: -3,-71 + 15372: -4,-73 + 15610: 95,-5 + 15706: 97,6 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11609,60 +11611,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 21494: -16,13 - 21495: -13,13 + 21329: -16,13 + 21330: -13,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSw decals: - 9487: -39,0 - 18046: -49,18 - 18056: -56,32 - 18067: -57,35 - 18091: -51,36 - 18189: -60,56 - 18212: -60,44 + 9452: -39,0 + 17900: -49,18 + 17910: -56,32 + 17921: -57,35 + 17945: -51,36 + 18043: -60,56 + 18066: -60,44 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSw decals: - 9824: 26,-53 - 9946: 16,-47 - 9974: 20,-41 - 10015: 30,-42 - 10016: 36,-45 - 10128: 28,-27 - 10159: 8,-41 - 10169: 20,-49 - 10227: 32,-53 - 10228: 32,-53 - 10272: 30,-53 - 10396: 3,-47 - 10415: 12,-45 - 19556: 5,62 - 19588: -8,-62 - 19925: 20,-29 - 19926: 24,-30 - 19927: 26,-32 + 9789: 26,-53 + 9911: 16,-47 + 9939: 20,-41 + 9980: 30,-42 + 9981: 36,-45 + 10093: 28,-27 + 10124: 8,-41 + 10134: 20,-49 + 10192: 32,-53 + 10193: 32,-53 + 10237: 30,-53 + 10361: 3,-47 + 10380: 12,-45 + 19391: 5,62 + 19423: -8,-62 + 19760: 20,-29 + 19761: 24,-30 + 19762: 26,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSw decals: - 2920: -34,46 - 2922: -35,48 + 2893: -34,46 + 2895: -35,48 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSw decals: - 5182: 38,28 - 11650: -31,-36 - 11701: -10,-36 - 11702: -10,-36 - 11941: -34,-46 - 12271: -17,-54 - 12289: -20,-59 - 12295: -19,-60 - 12320: -11,-53 + 5155: 38,28 + 11615: -31,-36 + 11666: -10,-36 + 11667: -10,-36 + 11906: -34,-46 + 12236: -17,-54 + 12254: -20,-59 + 12260: -19,-60 + 12285: -11,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSw @@ -11672,106 +11674,106 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSw decals: - 10879: 26,-58 - 10895: 34,-72 - 10928: 38,-63 - 10929: 43,-63 - 10965: 38,-71 - 10981: 41,-74 - 10982: 41,-74 - 11013: 27,-69 + 10844: 26,-58 + 10860: 34,-72 + 10893: 38,-63 + 10894: 43,-63 + 10930: 38,-71 + 10946: 41,-74 + 10947: 41,-74 + 10978: 27,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSw decals: - 19422: 68,12 - 19437: 60,-6 - 19445: 65,-5 + 19257: 68,12 + 19272: 60,-6 + 19280: 65,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSw decals: - 2737: -13,52 - 2840: -7,32 - 3838: 10,66 + 2710: -13,52 + 2813: -7,32 + 3811: 10,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSw decals: - 4403: 2,26 - 4424: 2,33 - 4489: 12,26 - 4565: 4,39 - 4583: 9,39 - 4596: 9,42 - 4675: 19,26 - 4678: 24,26 - 4769: 24,34 - 4798: 19,37 - 4826: 27,40 - 4957: 9,48 - 14473: -59,9 + 4376: 2,26 + 4397: 2,33 + 4462: 12,26 + 4538: 4,39 + 4556: 9,39 + 4569: 9,42 + 4648: 19,26 + 4651: 24,26 + 4742: 24,34 + 4771: 19,37 + 4799: 27,40 + 4930: 9,48 + 14438: -59,9 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 4039: -40,52 - 9623: 2,-32 - 9624: 3,-36 + 4012: -40,52 + 9588: 2,-32 + 9589: 3,-36 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 17084: -61,-4 - 17112: -54,8 - 17129: -59,9 - 17144: -64,0 - 17161: -61,-10 - 17210: -59,-18 - 17211: -61,-15 - 17252: -50,-18 - 17364: -66,14 - 17391: -78,13 - 17471: -61,17 - 17518: -49,-10 - 17579: -77,-10 - 17622: 5,87 - 17630: 9,84 - 17658: 10,74 - 17702: -65,5 - 17769: -74,-4 - 17835: -74,10 - 17886: -78,3 - 17924: -79,-1 - 17925: -78,-2 - 17980: -73,-13 - 18353: -51,-4 - 18404: -55,17 + 16938: -61,-4 + 16966: -54,8 + 16983: -59,9 + 16998: -64,0 + 17015: -61,-10 + 17064: -59,-18 + 17065: -61,-15 + 17106: -50,-18 + 17218: -66,14 + 17245: -78,13 + 17325: -61,17 + 17372: -49,-10 + 17433: -77,-10 + 17476: 5,87 + 17484: 9,84 + 17512: 10,74 + 17556: -65,5 + 17623: -74,-4 + 17689: -74,10 + 17740: -78,3 + 17778: -79,-1 + 17779: -78,-2 + 17834: -73,-13 + 18207: -51,-4 + 18258: -55,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 973: -1,-16 1179: 44,-17 - 2089: -16,51 - 2385: -29,38 - 3861: 17,69 - 4187: -25,21 - 6387: -2,-17 - 6764: -35,-16 - 7004: -26,-18 - 8097: 61,-12 - 8098: 61,-25 - 8352: 40,-9 - 8353: 40,-9 - 8739: -3,-79 - 8742: -5,-76 - 9523: 72,-52 - 11029: 38,-68 - 15405: -6,-71 - 15406: -5,-73 - 15755: 91,-5 - 15851: 95,6 + 2062: -16,51 + 2358: -29,38 + 3834: 17,69 + 4160: -25,21 + 6360: -2,-17 + 6737: -35,-16 + 6977: -26,-18 + 8062: 61,-12 + 8063: 61,-25 + 8317: 40,-9 + 8318: 40,-9 + 8704: -3,-79 + 8707: -5,-76 + 9488: 72,-52 + 10994: 38,-68 + 15370: -6,-71 + 15371: -5,-73 + 15609: 91,-5 + 15705: 95,6 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE @@ -11782,1500 +11784,1500 @@ entities: color: '#DA8B8BFF' id: BrickTileWhiteEndE decals: - 19407: 70,-4 + 19242: 70,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 8250: 41,-7 + 8215: 41,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndN decals: - 15861: 97,-2 + 15715: 97,-2 - node: color: '#DAA58BFF' id: BrickTileWhiteEndN decals: - 4712: 21,28 - 4713: 25,28 + 4685: 21,28 + 4686: 25,28 - node: color: '#EFB341FF' id: BrickTileWhiteEndN decals: - 17257: -50,-12 + 17111: -50,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 8072: 60,-13 - 8073: 58,-13 - 8074: 60,-26 - 8075: 58,-26 - 8656: 60,-26 - 15831: 95,-2 + 8037: 60,-13 + 8038: 58,-13 + 8039: 60,-26 + 8040: 58,-26 + 8621: 60,-26 + 15685: 95,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndS decals: - 15860: 97,-4 + 15714: 97,-4 - node: color: '#A9DA8BFF' id: BrickTileWhiteEndS decals: - 2913: -31,45 + 2886: -31,45 - node: color: '#DAA58BFF' id: BrickTileWhiteEndS decals: - 4710: 21,30 - 4711: 25,30 + 4683: 21,30 + 4684: 25,30 - node: color: '#EFB341FF' id: BrickTileWhiteEndS decals: - 17253: -50,-18 + 17107: -50,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 8092: 58,-15 - 8093: 60,-15 - 8094: 58,-28 - 8095: 60,-28 + 8057: 58,-15 + 8058: 60,-15 + 8059: 58,-28 + 8060: 60,-28 - node: color: '#B18BDAFF' id: BrickTileWhiteEndW decals: - 11957: -29,-28 - 11958: -29,-30 + 11922: -29,-28 + 11923: -29,-30 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndW decals: - 19406: 69,-4 + 19241: 69,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 2382: -31,38 - 8249: 38,-7 + 2355: -31,38 + 8214: 38,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNe decals: - 18050: -46,18 - 18072: -55,37 - 18079: -55,34 - 18109: -46,51 - 18150: -48,42 - 18151: -47,41 - 18160: -46,45 - 18201: -59,58 - 18202: -58,57 - 18203: -59,54 - 18228: -58,45 - 18296: -53,21 + 17904: -46,18 + 17926: -55,37 + 17933: -55,34 + 17963: -46,51 + 18004: -48,42 + 18005: -47,41 + 18014: -46,45 + 18055: -59,58 + 18056: -58,57 + 18057: -59,54 + 18082: -58,45 + 18150: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNe decals: - 9593: 18,-27 - 9608: 18,-34 - 9609: 21,-34 - 9754: 14,-35 - 9760: 12,-34 - 9834: 29,-34 - 9835: 36,-34 - 9966: 18,-39 - 9967: 18,-44 - 9970: 28,-44 - 9971: 28,-50 - 9987: 24,-39 - 9988: 28,-40 - 10004: 38,-35 - 10044: 37,-44 - 10064: 36,-40 - 10095: 29,-29 - 10158: 14,-39 - 10211: 24,-44 - 10405: 4,-43 - 10406: 9,-43 - 10409: 6,-45 - 10424: 14,-44 - 10653: 49,-33 - 12418: -7,-58 - 15362: 10,-25 - 15376: 17,-40 - 15381: 27,-47 - 15382: 27,-40 - 15386: 27,-35 - 15387: 36,-35 - 15392: 13,-35 - 18630: 17,-31 - 19563: 6,65 - 19590: -5,-60 - 19941: 22,-29 - 19957: 26,-29 + 9558: 18,-27 + 9573: 18,-34 + 9574: 21,-34 + 9719: 14,-35 + 9725: 12,-34 + 9799: 29,-34 + 9800: 36,-34 + 9931: 18,-39 + 9932: 18,-44 + 9935: 28,-44 + 9936: 28,-50 + 9952: 24,-39 + 9953: 28,-40 + 9969: 38,-35 + 10009: 37,-44 + 10029: 36,-40 + 10060: 29,-29 + 10123: 14,-39 + 10176: 24,-44 + 10370: 4,-43 + 10371: 9,-43 + 10374: 6,-45 + 10389: 14,-44 + 10618: 49,-33 + 12383: -7,-58 + 15327: 10,-25 + 15341: 17,-40 + 15346: 27,-47 + 15347: 27,-40 + 15351: 27,-35 + 15352: 36,-35 + 15357: 13,-35 + 18465: 17,-31 + 19398: 6,65 + 19425: -5,-60 + 19776: 22,-29 + 19792: 26,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNe decals: - 2904: -26,48 - 2940: -28,53 - 2943: -28,51 - 2999: -32,53 - 3000: -30,53 - 3001: -28,50 - 3024: -37,49 + 2877: -26,48 + 2913: -28,53 + 2916: -28,51 + 2972: -32,53 + 2973: -30,53 + 2974: -28,50 + 2997: -37,49 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNe decals: - 5125: 21,32 - 5130: 27,31 - 5208: 36,37 - 11566: -15,-34 - 11567: -13,-34 - 11643: -22,-34 - 11644: -22,-34 - 11686: -12,-35 - 11687: -12,-35 - 11711: -5,-35 - 11712: -6,-30 - 11713: -6,-30 - 11863: -13,-41 - 11954: -29,-34 - 11985: -28,-27 - 11986: -28,-31 - 11987: -29,-29 - 12139: -23,-24 - 12140: -22,-26 - 12141: -22,-31 - 12247: -24,-39 - 12283: -13,-50 - 12309: -16,-56 - 12312: -13,-59 - 12339: -10,-49 - 12346: -4,-48 - 12347: -6,-46 - 12373: -18,-40 - 12685: -7,-32 - 12786: -7,-32 - 12787: -7,-32 - 15310: -8,-25 - 15320: -24,-35 - 15323: -23,-26 - 15324: -14,-35 - 15329: -14,-47 - 15332: -14,-39 - 15333: -29,-39 - 20230: 34,39 + 5098: 21,32 + 5103: 27,31 + 5181: 36,37 + 11531: -15,-34 + 11532: -13,-34 + 11608: -22,-34 + 11609: -22,-34 + 11651: -12,-35 + 11652: -12,-35 + 11676: -5,-35 + 11677: -6,-30 + 11678: -6,-30 + 11828: -13,-41 + 11919: -29,-34 + 11950: -28,-27 + 11951: -28,-31 + 11952: -29,-29 + 12104: -23,-24 + 12105: -22,-26 + 12106: -22,-31 + 12212: -24,-39 + 12248: -13,-50 + 12274: -16,-56 + 12277: -13,-59 + 12304: -10,-49 + 12311: -4,-48 + 12312: -6,-46 + 12338: -18,-40 + 12650: -7,-32 + 12751: -7,-32 + 12752: -7,-32 + 15275: -8,-25 + 15285: -24,-35 + 15288: -23,-26 + 15289: -14,-35 + 15294: -14,-47 + 15297: -14,-39 + 15298: -29,-39 + 20065: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNe decals: - 10878: 28,-56 - 10915: 41,-62 - 10942: 36,-62 - 10947: 36,-70 - 11018: 28,-69 + 10843: 28,-56 + 10880: 41,-62 + 10907: 36,-62 + 10912: 36,-70 + 10983: 28,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNe decals: - 7660: 61,-3 - 7661: 65,-3 - 19425: 70,13 - 19435: 63,-4 + 7633: 61,-3 + 7634: 65,-3 + 19260: 70,13 + 19270: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNe decals: - 3844: 12,67 + 3817: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNe decals: - 4410: 10,30 - 4411: 10,28 - 4416: 9,31 - 4443: 10,37 - 4444: 11,36 - 4451: 4,31 - 4473: 8,29 - 4510: 15,32 - 4534: 16,31 - 4587: 10,40 - 4602: 11,43 - 4605: 11,45 - 4638: 21,38 - 4658: 22,36 - 4662: 21,32 - 4691: 27,31 - 4747: 20,30 - 4748: 26,30 - 4749: 26,29 - 4754: 22,29 - 4762: 21,29 - 4796: 27,37 - 4815: 18,37 - 4816: 19,36 - 4817: 28,38 - 4856: 9,35 - 4861: 5,37 - 4896: 32,49 - 4897: 38,49 - 4934: 25,41 - 4938: 25,52 - 4947: 10,54 - 4966: 13,50 - 4969: 13,53 - 4976: 17,54 - 5095: 17,45 - 5096: 17,43 - 5097: 17,41 - 5098: 22,41 - 5099: 22,43 - 5100: 22,45 - 5101: 22,47 - 5102: 22,49 - 5103: 22,51 - 7035: 8,29 - 20096: 25,29 - 20100: 24,30 + 4383: 10,30 + 4384: 10,28 + 4389: 9,31 + 4416: 10,37 + 4417: 11,36 + 4424: 4,31 + 4446: 8,29 + 4483: 15,32 + 4507: 16,31 + 4560: 10,40 + 4575: 11,43 + 4578: 11,45 + 4611: 21,38 + 4631: 22,36 + 4635: 21,32 + 4664: 27,31 + 4720: 20,30 + 4721: 26,30 + 4722: 26,29 + 4727: 22,29 + 4735: 21,29 + 4769: 27,37 + 4788: 18,37 + 4789: 19,36 + 4790: 28,38 + 4829: 9,35 + 4834: 5,37 + 4869: 32,49 + 4870: 38,49 + 4907: 25,41 + 4911: 25,52 + 4920: 10,54 + 4939: 13,50 + 4942: 13,53 + 4949: 17,54 + 5068: 17,45 + 5069: 17,43 + 5070: 17,41 + 5071: 22,41 + 5072: 22,43 + 5073: 22,45 + 5074: 22,47 + 5075: 22,49 + 5076: 22,51 + 7008: 8,29 + 19931: 25,29 + 19935: 24,30 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNe decals: - 4037: -39,54 - 9635: 8,-36 - 9638: 5,-30 - 9661: 6,-32 - 9670: 8,-34 + 4010: -39,54 + 9600: 8,-36 + 9603: 5,-30 + 9626: 6,-32 + 9635: 8,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 17067: -49,1 - 17068: -52,2 - 17141: -63,1 - 17168: -58,-6 - 17169: -57,-7 - 17170: -57,-9 - 17183: -58,-12 - 17236: -52,-15 - 17264: -50,-13 - 17295: -52,15 - 17341: -47,14 - 17344: -47,12 - 17348: -50,9 - 17353: -58,15 - 17375: -61,14 - 17378: -68,15 - 17488: -51,-7 - 17529: -52,-6 - 17530: -63,-7 - 17563: -71,-6 - 17564: -69,-6 - 17613: 10,88 - 17617: 5,90 - 17638: 11,87 - 17661: 10,82 - 17662: 12,78 - 17791: -73,2 - 17792: -66,1 - 17847: -72,12 - 17918: -77,1 - 17934: -76,0 - 17964: -69,-10 - 17999: -53,18 - 20105: -49,-3 + 16921: -49,1 + 16922: -52,2 + 16995: -63,1 + 17022: -58,-6 + 17023: -57,-7 + 17024: -57,-9 + 17037: -58,-12 + 17090: -52,-15 + 17118: -50,-13 + 17149: -52,15 + 17195: -47,14 + 17198: -47,12 + 17202: -50,9 + 17207: -58,15 + 17229: -61,14 + 17232: -68,15 + 17342: -51,-7 + 17383: -52,-6 + 17384: -63,-7 + 17417: -71,-6 + 17418: -69,-6 + 17467: 10,88 + 17471: 5,90 + 17492: 11,87 + 17515: 10,82 + 17516: 12,78 + 17645: -73,2 + 17646: -66,1 + 17701: -72,12 + 17772: -77,1 + 17788: -76,0 + 17818: -69,-10 + 17853: -53,18 + 19940: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2384: -30,38 - 2396: -29,30 - 5618: -33,28 - 5619: -33,28 - 5623: -31,28 - 6727: -32,1 - 6730: -32,-2 - 6745: -24,-2 - 6775: -32,-11 - 6797: -35,-16 - 7010: -23,-16 - 8129: 60,-12 - 8130: 60,-25 - 8131: 61,-26 - 8132: 61,-13 - 8368: 39,-10 - 8370: 39,-13 - 8371: 39,-13 - 8405: 46,-14 - 8759: -4,-77 - 8760: -1,-76 - 8761: -6,-76 - 8762: -6,-80 - 8763: -1,-80 - 8982: -4,-25 - 9143: 14,-25 - 9529: 73,-49 - 9535: 73,-42 - 10399: 0,-44 - 10728: 75,-45 - 11036: 41,-67 - 15070: -19,19 - 15071: -13,23 - 15072: -3,23 - 15073: 4,23 - 15074: 14,23 - 15075: 17,19 - 15088: -21,34 - 15089: -19,36 - 15090: -19,32 - 15091: -19,29 - 15099: -19,48 - 15100: -16,50 - 15101: -17,51 - 15102: -21,51 - 15103: -19,52 - 15106: -23,41 - 15107: -10,49 - 15108: -5,49 - 15145: -30,95 - 15146: -30,88 - 15155: -30,82 - 15156: -30,75 - 15187: -29,68 - 15188: -24,68 - 15189: -18,68 - 15190: -11,68 - 15191: -12,75 - 15192: -12,82 - 15193: -12,88 - 15194: -12,95 - 15195: -4,68 - 15196: 2,68 - 15197: -5,64 - 15198: 7,68 - 15199: 6,75 - 15200: 6,82 - 15202: -4,57 - 15203: 2,57 - 15204: -11,57 - 15205: -18,57 - 15206: -19,64 - 15216: 17,12 - 15217: 24,5 - 15218: 31,5 - 15229: 24,-11 - 15230: 30,-11 - 15233: 17,-12 - 15234: 13,-20 - 15235: 6,-20 - 15236: -5,-20 - 15237: -12,-20 - 15238: -19,-12 - 15239: -19,-2 - 15240: -19,5 - 15241: -23,5 - 15242: -19,12 - 15243: -31,5 - 15244: -36,5 - 15283: 47,-20 - 15284: 52,-20 - 15285: 17,5 - 15354: -1,-31 - 15355: -1,-24 - 15356: -1,-39 - 15357: -1,-44 - 15358: -1,-52 - 15361: -1,-59 - 15510: -42,17 - 15511: -42,22 - 15512: -42,11 - 15764: 95,-3 - 19010: 7,-9 - 19011: 13,-9 - 19017: -12,-9 - 19018: -6,-9 - 19025: 1,-9 - 19915: 40,-10 - 19920: 39,-9 - 20186: 17,-2 - 20450: -19,19 - 20451: -19,12 - 20452: -19,5 - 20453: -19,-2 + 2357: -30,38 + 2369: -29,30 + 5591: -33,28 + 5592: -33,28 + 5596: -31,28 + 6700: -32,1 + 6703: -32,-2 + 6718: -24,-2 + 6748: -32,-11 + 6770: -35,-16 + 6983: -23,-16 + 8094: 60,-12 + 8095: 60,-25 + 8096: 61,-26 + 8097: 61,-13 + 8333: 39,-10 + 8335: 39,-13 + 8336: 39,-13 + 8370: 46,-14 + 8724: -4,-77 + 8725: -1,-76 + 8726: -6,-76 + 8727: -6,-80 + 8728: -1,-80 + 8947: -4,-25 + 9108: 14,-25 + 9494: 73,-49 + 9500: 73,-42 + 10364: 0,-44 + 10693: 75,-45 + 11001: 41,-67 + 15035: -19,19 + 15036: -13,23 + 15037: -3,23 + 15038: 4,23 + 15039: 14,23 + 15040: 17,19 + 15053: -21,34 + 15054: -19,36 + 15055: -19,32 + 15056: -19,29 + 15064: -19,48 + 15065: -16,50 + 15066: -17,51 + 15067: -21,51 + 15068: -19,52 + 15071: -23,41 + 15072: -10,49 + 15073: -5,49 + 15110: -30,95 + 15111: -30,88 + 15120: -30,82 + 15121: -30,75 + 15152: -29,68 + 15153: -24,68 + 15154: -18,68 + 15155: -11,68 + 15156: -12,75 + 15157: -12,82 + 15158: -12,88 + 15159: -12,95 + 15160: -4,68 + 15161: 2,68 + 15162: -5,64 + 15163: 7,68 + 15164: 6,75 + 15165: 6,82 + 15167: -4,57 + 15168: 2,57 + 15169: -11,57 + 15170: -18,57 + 15171: -19,64 + 15181: 17,12 + 15182: 24,5 + 15183: 31,5 + 15194: 24,-11 + 15195: 30,-11 + 15198: 17,-12 + 15199: 13,-20 + 15200: 6,-20 + 15201: -5,-20 + 15202: -12,-20 + 15203: -19,-12 + 15204: -19,-2 + 15205: -19,5 + 15206: -23,5 + 15207: -19,12 + 15208: -31,5 + 15209: -36,5 + 15248: 47,-20 + 15249: 52,-20 + 15250: 17,5 + 15319: -1,-31 + 15320: -1,-24 + 15321: -1,-39 + 15322: -1,-44 + 15323: -1,-52 + 15326: -1,-59 + 15475: -42,17 + 15476: -42,22 + 15477: -42,11 + 15618: 95,-3 + 18845: 7,-9 + 18846: 13,-9 + 18852: -12,-9 + 18853: -6,-9 + 18860: 1,-9 + 19750: 40,-10 + 19755: 39,-9 + 20021: 17,-2 + 20285: -19,19 + 20286: -19,12 + 20287: -19,5 + 20288: -19,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNw decals: - 15863: 97,-3 - 18043: -50,21 - 18071: -55,37 - 18115: -46,55 - 18147: -50,41 - 18149: -48,42 - 18153: -50,38 - 18196: -59,54 - 18197: -60,57 - 18200: -59,58 - 18210: -60,48 - 18211: -60,50 - 18229: -47,45 + 15717: 97,-3 + 17897: -50,21 + 17925: -55,37 + 17969: -46,55 + 18001: -50,41 + 18003: -48,42 + 18007: -50,38 + 18050: -59,54 + 18051: -60,57 + 18054: -59,58 + 18064: -60,48 + 18065: -60,50 + 18083: -47,45 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNw decals: - 9592: 16,-25 - 9610: 21,-34 - 9749: 16,-35 - 9757: 16,-31 - 9759: 12,-34 - 9772: 10,-36 - 9833: 29,-34 - 9836: 36,-34 - 9962: 16,-44 - 9963: 16,-39 - 9968: 26,-44 - 9972: 26,-39 - 9986: 20,-39 - 10043: 37,-44 - 10045: 30,-40 - 10063: 32,-40 - 10093: 29,-29 - 10094: 29,-29 - 10210: 20,-44 - 10239: 32,-51 - 10240: 32,-49 - 10279: 30,-50 - 10403: 4,-43 - 10404: 9,-43 - 10408: 8,-45 - 10410: 2,-44 - 10427: 14,-47 - 10664: 43,-33 - 12417: -7,-58 - 15363: 6,-25 - 15375: 17,-40 - 15380: 27,-47 - 15383: 27,-40 - 15384: 22,-35 - 15385: 31,-35 - 15391: 11,-35 - 18629: 17,-31 - 19561: 5,64 - 19562: 6,65 - 19939: 20,-27 - 19940: 24,-29 + 9557: 16,-25 + 9575: 21,-34 + 9714: 16,-35 + 9722: 16,-31 + 9724: 12,-34 + 9737: 10,-36 + 9798: 29,-34 + 9801: 36,-34 + 9927: 16,-44 + 9928: 16,-39 + 9933: 26,-44 + 9937: 26,-39 + 9951: 20,-39 + 10008: 37,-44 + 10010: 30,-40 + 10028: 32,-40 + 10058: 29,-29 + 10059: 29,-29 + 10175: 20,-44 + 10204: 32,-51 + 10205: 32,-49 + 10244: 30,-50 + 10368: 4,-43 + 10369: 9,-43 + 10373: 8,-45 + 10375: 2,-44 + 10392: 14,-47 + 10629: 43,-33 + 12382: -7,-58 + 15328: 6,-25 + 15340: 17,-40 + 15345: 27,-47 + 15348: 27,-40 + 15349: 22,-35 + 15350: 31,-35 + 15356: 11,-35 + 18464: 17,-31 + 19396: 5,64 + 19397: 6,65 + 19774: 20,-27 + 19775: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNw decals: - 2925: -35,49 - 2927: -34,50 - 2938: -29,54 - 2946: -26,51 - 2996: -28,50 - 2997: -30,53 - 2998: -32,53 - 3035: -38,46 + 2898: -35,49 + 2900: -34,50 + 2911: -29,54 + 2919: -26,51 + 2969: -28,50 + 2970: -30,53 + 2971: -32,53 + 3008: -38,46 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNw decals: - 5123: 20,32 - 11564: -15,-34 - 11565: -13,-34 - 11642: -24,-34 - 11714: -6,-30 - 11715: -6,-30 - 11739: -10,-34 - 11740: -10,-35 - 11860: -15,-40 - 11953: -29,-34 - 11984: -30,-27 - 12138: -23,-24 - 12246: -25,-39 - 12281: -17,-51 - 12298: -20,-58 - 12310: -16,-56 - 12338: -10,-49 - 12342: -11,-50 - 12348: -6,-46 - 12372: -20,-40 - 12684: -8,-32 - 12785: -8,-32 - 15309: -12,-25 - 15318: -23,-26 - 15319: -29,-35 - 15325: -18,-35 - 15330: -14,-47 - 15331: -14,-39 - 15334: -29,-39 - 20229: 34,39 + 5096: 20,32 + 11529: -15,-34 + 11530: -13,-34 + 11607: -24,-34 + 11679: -6,-30 + 11680: -6,-30 + 11704: -10,-34 + 11705: -10,-35 + 11825: -15,-40 + 11918: -29,-34 + 11949: -30,-27 + 12103: -23,-24 + 12211: -25,-39 + 12246: -17,-51 + 12263: -20,-58 + 12275: -16,-56 + 12303: -10,-49 + 12307: -11,-50 + 12313: -6,-46 + 12337: -20,-40 + 12649: -8,-32 + 12750: -8,-32 + 15274: -12,-25 + 15283: -23,-26 + 15284: -29,-35 + 15290: -18,-35 + 15295: -14,-47 + 15296: -14,-39 + 15299: -29,-39 + 20064: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNw decals: - 10877: 26,-56 - 10917: 38,-62 - 10934: 43,-62 - 10946: 34,-61 - 10950: 34,-68 - 11023: 30,-69 + 10842: 26,-56 + 10882: 38,-62 + 10899: 43,-62 + 10911: 34,-61 + 10915: 34,-68 + 10988: 30,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNw decals: - 7658: 61,-3 - 7659: 65,-3 - 19449: 65,-4 + 7631: 61,-3 + 7632: 65,-3 + 19284: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNw decals: - 3843: 10,68 + 3816: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNw decals: - 4398: 7,31 - 4409: 2,29 - 4442: 10,37 - 4450: 4,31 - 4474: 4,29 - 4494: 15,28 - 4532: 13,27 - 4533: 16,31 - 4567: 4,40 - 4578: 7,43 - 4586: 10,40 - 4623: 13,36 - 4650: 15,46 - 4651: 13,45 - 4652: 13,43 - 4661: 20,32 - 4745: 20,29 - 4746: 20,30 - 4750: 26,30 - 4755: 24,29 - 4760: 21,29 - 4761: 22,30 - 4766: 24,36 - 4795: 26,37 - 4813: 16,37 - 4814: 15,36 - 4818: 28,38 - 4855: 4,35 - 4860: 5,37 - 4901: 34,49 - 4946: 10,54 - 4975: 17,54 - 4980: 15,53 - 4988: 24,54 - 5086: 19,51 - 5087: 19,49 - 5088: 19,47 - 5089: 19,45 - 5090: 19,43 - 5091: 19,41 - 5092: 16,41 - 5093: 16,43 - 5094: 16,45 - 7034: 4,29 - 20095: 25,29 + 4371: 7,31 + 4382: 2,29 + 4415: 10,37 + 4423: 4,31 + 4447: 4,29 + 4467: 15,28 + 4505: 13,27 + 4506: 16,31 + 4540: 4,40 + 4551: 7,43 + 4559: 10,40 + 4596: 13,36 + 4623: 15,46 + 4624: 13,45 + 4625: 13,43 + 4634: 20,32 + 4718: 20,29 + 4719: 20,30 + 4723: 26,30 + 4728: 24,29 + 4733: 21,29 + 4734: 22,30 + 4739: 24,36 + 4768: 26,37 + 4786: 16,37 + 4787: 15,36 + 4791: 28,38 + 4828: 4,35 + 4833: 5,37 + 4874: 34,49 + 4919: 10,54 + 4948: 17,54 + 4953: 15,53 + 4961: 24,54 + 5059: 19,51 + 5060: 19,49 + 5061: 19,47 + 5062: 19,45 + 5063: 19,43 + 5064: 19,41 + 5065: 16,41 + 5066: 16,43 + 5067: 16,45 + 7007: 4,29 + 19930: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNw decals: - 4036: -39,54 - 9630: 3,-35 - 9637: 5,-30 - 9660: 5,-32 + 4009: -39,54 + 9595: 3,-35 + 9602: 5,-30 + 9625: 5,-32 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNw decals: - 17069: -53,2 - 17071: -49,2 - 17092: -61,1 - 17140: -64,1 - 17171: -58,-6 - 17174: -61,-7 - 17182: -58,-12 - 17233: -54,-12 - 17241: -50,-15 - 17248: -59,-17 - 17349: -55,15 - 17352: -58,15 - 17354: -59,14 - 17357: -59,10 - 17402: -78,14 - 17489: -49,-7 - 17528: -55,-9 - 17561: -71,-6 - 17562: -69,-6 - 17603: 5,90 - 17612: 10,88 - 17645: 10,81 - 17660: 10,76 - 17790: -73,2 - 17795: -74,0 - 17846: -72,12 - 17894: -77,7 - 17917: -77,1 - 17923: -79,0 - 17963: -71,-10 - 17998: -54,18 + 16923: -53,2 + 16925: -49,2 + 16946: -61,1 + 16994: -64,1 + 17025: -58,-6 + 17028: -61,-7 + 17036: -58,-12 + 17087: -54,-12 + 17095: -50,-15 + 17102: -59,-17 + 17203: -55,15 + 17206: -58,15 + 17208: -59,14 + 17211: -59,10 + 17256: -78,14 + 17343: -49,-7 + 17382: -55,-9 + 17415: -71,-6 + 17416: -69,-6 + 17457: 5,90 + 17466: 10,88 + 17499: 10,81 + 17514: 10,76 + 17644: -73,2 + 17649: -74,0 + 17700: -72,12 + 17748: -77,7 + 17771: -77,1 + 17777: -79,0 + 17817: -71,-10 + 17852: -54,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2383: -30,38 - 2837: -7,33 - 5620: -31,28 - 5621: -31,28 - 5622: -34,26 - 6384: -2,-16 - 6743: -24,-2 - 6744: -24,-2 - 6774: -33,-11 - 6796: -30,-16 - 8125: 58,-25 - 8126: 57,-26 - 8127: 57,-13 - 8128: 58,-12 - 8366: 35,-10 - 8367: 35,-10 - 8369: 35,-13 - 8406: 46,-14 - 8754: -8,-76 - 8755: -5,-77 - 8756: -3,-76 - 8757: -8,-80 - 8758: -3,-80 - 9146: 2,-25 - 9527: 72,-50 - 9528: 73,-49 - 9534: 73,-42 - 10720: 72,-50 - 11034: 39,-67 - 11035: 39,-67 - 15065: 11,23 - 15066: 1,23 - 15067: -6,23 - 15068: -16,23 - 15069: -19,19 - 15076: 17,19 - 15084: -21,34 - 15085: -19,36 - 15086: -19,32 - 15087: -19,29 - 15092: -22,33 - 15095: -22,50 - 15096: -21,51 - 15097: -19,52 - 15098: -17,51 - 15104: -19,48 - 15105: -23,41 - 15109: -11,49 - 15110: -6,49 - 15123: -20,57 - 15124: -13,57 - 15125: -6,57 - 15126: 0,57 - 15127: -5,64 - 15128: -6,68 - 15129: 0,68 - 15130: 5,68 - 15131: 6,75 - 15132: 6,82 - 15133: -13,68 - 15134: -12,75 - 15135: -12,82 - 15136: -12,88 - 15137: -12,95 - 15138: -26,68 - 15139: -20,68 - 15140: -31,68 - 15141: -30,75 - 15142: -30,82 - 15143: -30,88 - 15144: -30,95 - 15207: -19,64 - 15213: 17,12 - 15214: 21,5 - 15215: 28,5 - 15228: 21,-11 - 15231: 28,-11 - 15232: 17,-12 - 15245: -38,5 - 15246: -38,5 - 15247: -33,5 - 15248: -27,5 - 15259: -19,-12 - 15260: -19,-2 - 15261: -19,5 - 15271: 3,-20 - 15272: -8,-20 - 15273: -15,-20 - 15281: 44,-20 - 15282: 49,-20 - 15286: 17,5 - 15287: -10,14 - 15350: -1,-39 - 15351: -1,-44 - 15352: -1,-31 - 15353: -1,-24 - 15359: -1,-52 - 15360: -1,-59 - 15513: -42,11 - 15514: -42,17 - 15515: -42,22 - 15836: 95,-3 - 19006: -9,-9 - 19007: -3,-9 - 19008: 4,-9 - 19009: 10,-9 - 19016: -15,-9 - 19719: -19,12 - 19722: 10,-20 - 19913: 35,-9 - 19914: 34,-10 - 20185: 17,-2 - 20446: -19,-2 - 20447: -19,5 - 20448: -19,12 - 20449: -19,19 + 2356: -30,38 + 2810: -7,33 + 5593: -31,28 + 5594: -31,28 + 5595: -34,26 + 6357: -2,-16 + 6716: -24,-2 + 6717: -24,-2 + 6747: -33,-11 + 6769: -30,-16 + 8090: 58,-25 + 8091: 57,-26 + 8092: 57,-13 + 8093: 58,-12 + 8331: 35,-10 + 8332: 35,-10 + 8334: 35,-13 + 8371: 46,-14 + 8719: -8,-76 + 8720: -5,-77 + 8721: -3,-76 + 8722: -8,-80 + 8723: -3,-80 + 9111: 2,-25 + 9492: 72,-50 + 9493: 73,-49 + 9499: 73,-42 + 10685: 72,-50 + 10999: 39,-67 + 11000: 39,-67 + 15030: 11,23 + 15031: 1,23 + 15032: -6,23 + 15033: -16,23 + 15034: -19,19 + 15041: 17,19 + 15049: -21,34 + 15050: -19,36 + 15051: -19,32 + 15052: -19,29 + 15057: -22,33 + 15060: -22,50 + 15061: -21,51 + 15062: -19,52 + 15063: -17,51 + 15069: -19,48 + 15070: -23,41 + 15074: -11,49 + 15075: -6,49 + 15088: -20,57 + 15089: -13,57 + 15090: -6,57 + 15091: 0,57 + 15092: -5,64 + 15093: -6,68 + 15094: 0,68 + 15095: 5,68 + 15096: 6,75 + 15097: 6,82 + 15098: -13,68 + 15099: -12,75 + 15100: -12,82 + 15101: -12,88 + 15102: -12,95 + 15103: -26,68 + 15104: -20,68 + 15105: -31,68 + 15106: -30,75 + 15107: -30,82 + 15108: -30,88 + 15109: -30,95 + 15172: -19,64 + 15178: 17,12 + 15179: 21,5 + 15180: 28,5 + 15193: 21,-11 + 15196: 28,-11 + 15197: 17,-12 + 15210: -38,5 + 15211: -38,5 + 15212: -33,5 + 15213: -27,5 + 15224: -19,-12 + 15225: -19,-2 + 15226: -19,5 + 15236: 3,-20 + 15237: -8,-20 + 15238: -15,-20 + 15246: 44,-20 + 15247: 49,-20 + 15251: 17,5 + 15252: -10,14 + 15315: -1,-39 + 15316: -1,-44 + 15317: -1,-31 + 15318: -1,-24 + 15324: -1,-52 + 15325: -1,-59 + 15478: -42,11 + 15479: -42,17 + 15480: -42,22 + 15690: 95,-3 + 18841: -9,-9 + 18842: -3,-9 + 18843: 4,-9 + 18844: 10,-9 + 18851: -15,-9 + 19554: -19,12 + 19557: 10,-20 + 19748: 35,-9 + 19749: 34,-10 + 20020: 17,-2 + 20281: -19,-2 + 20282: -19,5 + 20283: -19,12 + 20284: -19,19 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe decals: - 18033: -46,23 - 18077: -55,32 - 18078: -55,36 - 18110: -46,51 - 18145: -48,44 - 18152: -47,41 - 18195: -59,56 - 18199: -58,57 - 18222: -56,44 - 18223: -54,44 - 18294: -53,21 + 17887: -46,23 + 17931: -55,32 + 17932: -55,36 + 17964: -46,51 + 17999: -48,44 + 18006: -47,41 + 18049: -59,56 + 18053: -58,57 + 18076: -56,44 + 18077: -54,44 + 18148: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSe decals: - 9607: 18,-28 - 9740: 18,-36 - 9753: 14,-35 - 9827: 27,-53 - 9828: 28,-50 - 9829: 28,-44 - 9830: 28,-40 - 9831: 28,-36 - 9948: 17,-47 - 9955: 18,-40 - 9956: 18,-44 - 9985: 24,-40 - 10005: 38,-35 - 10006: 38,-35 - 10042: 37,-42 - 10066: 36,-40 - 10081: 30,-30 - 10131: 29,-27 - 10135: 29,-32 - 10157: 14,-40 - 10161: 24,-45 - 10179: 22,-49 - 10180: 25,-43 - 10209: 24,-44 - 10265: 31,-53 - 10394: 9,-41 - 10395: 4,-47 - 10425: 14,-44 - 10654: 49,-33 - 15365: 10,-26 - 15366: 13,-35 - 15367: 17,-34 - 15368: 27,-35 - 15369: 36,-35 - 15370: 27,-44 - 15371: 27,-51 - 15372: 17,-45 - 19591: -5,-60 + 9572: 18,-28 + 9705: 18,-36 + 9718: 14,-35 + 9792: 27,-53 + 9793: 28,-50 + 9794: 28,-44 + 9795: 28,-40 + 9796: 28,-36 + 9913: 17,-47 + 9920: 18,-40 + 9921: 18,-44 + 9950: 24,-40 + 9970: 38,-35 + 9971: 38,-35 + 10007: 37,-42 + 10031: 36,-40 + 10046: 30,-30 + 10096: 29,-27 + 10100: 29,-32 + 10122: 14,-40 + 10126: 24,-45 + 10144: 22,-49 + 10145: 25,-43 + 10174: 24,-44 + 10230: 31,-53 + 10359: 9,-41 + 10360: 4,-47 + 10390: 14,-44 + 10619: 49,-33 + 15330: 10,-26 + 15331: 13,-35 + 15332: 17,-34 + 15333: 27,-35 + 15334: 36,-35 + 15335: 27,-44 + 15336: 27,-51 + 15337: 17,-45 + 19426: -5,-60 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSe decals: - 2910: -27,47 - 2911: -31,46 - 2917: -32,46 - 2941: -28,53 - 2994: -30,47 - 2995: -28,47 - 3025: -37,49 - 3028: -38,47 + 2883: -27,47 + 2884: -31,46 + 2890: -32,46 + 2914: -28,53 + 2967: -30,47 + 2968: -28,47 + 2998: -37,49 + 3001: -38,47 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSe decals: - 5129: 27,31 - 5132: 22,27 - 5206: 35,34 - 5209: 36,37 - 11685: -12,-35 - 11710: -5,-35 - 11729: -5,-32 - 11734: -7,-36 - 11737: -12,-34 - 11838: -13,-36 - 11862: -13,-41 - 11948: -29,-36 - 11949: -24,-36 - 11979: -28,-31 - 11980: -29,-29 - 11981: -29,-29 - 11982: -28,-27 - 12142: -22,-31 - 12143: -22,-26 - 12245: -24,-41 - 12282: -13,-50 - 12285: -16,-54 - 12313: -13,-59 - 12345: -4,-48 - 12353: -6,-53 - 12375: -19,-44 - 12682: -7,-34 - 12783: -7,-34 - 12784: -7,-34 - 15312: -8,-26 - 15313: -14,-35 - 15314: -14,-43 - 15315: -14,-53 - 15316: -24,-35 - 15317: -23,-30 - 15336: -29,-41 - 20233: 36,39 + 5102: 27,31 + 5105: 22,27 + 5179: 35,34 + 5182: 36,37 + 11650: -12,-35 + 11675: -5,-35 + 11694: -5,-32 + 11699: -7,-36 + 11702: -12,-34 + 11803: -13,-36 + 11827: -13,-41 + 11913: -29,-36 + 11914: -24,-36 + 11944: -28,-31 + 11945: -29,-29 + 11946: -29,-29 + 11947: -28,-27 + 12107: -22,-31 + 12108: -22,-26 + 12210: -24,-41 + 12247: -13,-50 + 12250: -16,-54 + 12278: -13,-59 + 12310: -4,-48 + 12318: -6,-53 + 12340: -19,-44 + 12647: -7,-34 + 12748: -7,-34 + 12749: -7,-34 + 15277: -8,-26 + 15278: -14,-35 + 15279: -14,-43 + 15280: -14,-53 + 15281: -24,-35 + 15282: -23,-30 + 15301: -29,-41 + 20068: 36,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSe decals: - 10876: 28,-56 - 10882: 27,-58 - 10914: 41,-62 - 10943: 36,-62 - 10948: 36,-70 - 10983: 41,-71 - 10984: 39,-71 - 10985: 39,-71 - 11022: 28,-67 + 10841: 28,-56 + 10847: 27,-58 + 10879: 41,-62 + 10908: 36,-62 + 10913: 36,-70 + 10948: 41,-71 + 10949: 39,-71 + 10950: 39,-71 + 10987: 28,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSe decals: - 19424: 70,13 - 19436: 63,-4 + 19259: 70,13 + 19271: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSe decals: - 3845: 12,67 + 3818: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSe decals: - 4412: 10,28 - 4413: 10,30 - 4437: 4,33 - 4438: 9,33 - 4445: 11,35 - 4453: 5,26 - 4454: 8,26 - 4472: 8,28 - 4504: 16,26 - 4530: 16,27 - 4559: 10,34 - 4562: 5,39 - 4581: 10,39 - 4598: 10,42 - 4601: 11,43 - 4604: 11,45 - 4616: 13,34 - 4617: 15,34 - 4633: 21,34 - 4657: 22,36 - 4681: 22,27 - 4682: 21,26 - 4692: 27,31 - 4727: 20,28 - 4728: 26,28 - 4729: 24,28 - 4751: 26,29 - 4752: 22,29 - 4758: 21,29 - 4794: 27,35 - 4811: 18,35 - 4812: 19,36 - 4820: 28,40 - 4853: 9,35 - 4865: 21,40 - 4898: 32,51 - 4902: 38,51 - 4925: 25,48 - 4963: 13,49 - 4968: 13,52 - 4989: 25,54 - 5066: 22,43 - 5078: 17,45 - 5079: 17,43 - 5080: 17,41 - 5081: 22,41 - 5082: 22,45 - 5083: 22,47 - 5084: 22,49 - 5085: 22,51 - 7032: 8,28 - 20099: 25,29 + 4385: 10,28 + 4386: 10,30 + 4410: 4,33 + 4411: 9,33 + 4418: 11,35 + 4426: 5,26 + 4427: 8,26 + 4445: 8,28 + 4477: 16,26 + 4503: 16,27 + 4532: 10,34 + 4535: 5,39 + 4554: 10,39 + 4571: 10,42 + 4574: 11,43 + 4577: 11,45 + 4589: 13,34 + 4590: 15,34 + 4606: 21,34 + 4630: 22,36 + 4654: 22,27 + 4655: 21,26 + 4665: 27,31 + 4700: 20,28 + 4701: 26,28 + 4702: 24,28 + 4724: 26,29 + 4725: 22,29 + 4731: 21,29 + 4767: 27,35 + 4784: 18,35 + 4785: 19,36 + 4793: 28,40 + 4826: 9,35 + 4838: 21,40 + 4871: 32,51 + 4875: 38,51 + 4898: 25,48 + 4936: 13,49 + 4941: 13,52 + 4962: 25,54 + 5039: 22,43 + 5051: 17,45 + 5052: 17,43 + 5053: 17,41 + 5054: 22,41 + 5055: 22,45 + 5056: 22,47 + 5057: 22,49 + 5058: 22,51 + 7005: 8,28 + 19934: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSe decals: - 9634: 5,-36 - 9636: 8,-34 - 9663: 6,-34 + 9599: 5,-36 + 9601: 8,-34 + 9628: 6,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 17066: -49,1 - 17089: -58,-4 - 17110: -52,8 - 17120: -51,9 - 17139: -63,1 - 17158: -63,-7 - 17166: -57,-9 - 17167: -57,-7 - 17180: -58,-10 - 17220: -52,-4 - 17234: -52,-10 - 17235: -52,-15 - 17243: -56,-18 - 17244: -54,-18 - 17265: -50,-17 - 17342: -47,14 - 17347: -50,11 - 17377: -68,15 - 17403: -76,14 - 17404: -77,13 - 17408: -72,14 - 17468: -58,17 - 17487: -51,-9 - 17557: -69,-8 - 17583: -75,-8 - 17627: 6,87 - 17628: 10,84 - 17637: 11,87 - 17663: 12,78 - 17793: -66,1 - 17798: -71,-4 - 17799: -69,-4 - 17842: -72,10 - 17888: -77,3 - 17929: -76,-2 - 17933: -76,0 - 20104: -49,-3 + 16920: -49,1 + 16943: -58,-4 + 16964: -52,8 + 16974: -51,9 + 16993: -63,1 + 17012: -63,-7 + 17020: -57,-9 + 17021: -57,-7 + 17034: -58,-10 + 17074: -52,-4 + 17088: -52,-10 + 17089: -52,-15 + 17097: -56,-18 + 17098: -54,-18 + 17119: -50,-17 + 17196: -47,14 + 17201: -50,11 + 17231: -68,15 + 17257: -76,14 + 17258: -77,13 + 17262: -72,14 + 17322: -58,17 + 17341: -51,-9 + 17411: -69,-8 + 17437: -75,-8 + 17481: 6,87 + 17482: 10,84 + 17491: 11,87 + 17517: 12,78 + 17647: -66,1 + 17652: -71,-4 + 17653: -69,-4 + 17696: -72,10 + 17742: -77,3 + 17783: -76,-2 + 17787: -76,0 + 19939: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2393: -29,32 - 2394: -29,32 - 2397: -29,30 - 2400: -31,30 - 2726: -12,52 - 3863: 19,69 - 3866: 22,69 - 6708: -32,-3 - 6709: -32,-3 - 6726: -32,1 - 6731: -29,-3 - 6735: -24,-3 - 6736: -24,-3 - 6799: -35,-11 - 7009: -23,-17 - 7013: -24,-18 - 8121: 60,-16 - 8122: 61,-15 - 8123: 61,-28 - 8124: 60,-29 - 8375: 39,-11 - 8376: 39,-14 - 8377: 39,-14 - 8401: 47,-17 - 8764: -4,-79 - 8765: -1,-80 - 8766: -6,-80 - 8768: -6,-76 - 8769: -1,-76 - 9022: -15,-28 - 9023: -6,-28 - 9140: 11,-28 - 9516: -4,-71 - 9531: 73,-47 - 10727: 75,-45 - 13530: -41,-63 - 14928: -21,47 - 14929: -17,47 - 14930: -16,48 - 14931: -19,46 - 14932: -19,50 - 14933: -23,41 - 14934: -19,34 - 14935: -19,31 - 14936: -19,27 - 14937: -19,16 - 14938: -13,23 - 14939: -3,23 - 14940: 4,23 - 15025: 17,16 - 15026: 14,23 - 15093: -21,29 - 15113: -10,49 - 15114: -5,49 - 15115: -11,57 - 15116: -4,57 - 15117: 2,57 - 15118: -18,57 - 15151: -30,85 - 15152: -30,92 - 15153: -30,79 - 15158: -30,72 - 15159: -29,68 - 15160: -24,68 - 15161: -18,68 - 15162: -11,68 - 15163: -4,68 - 15164: -12,72 - 15165: -12,79 - 15166: -12,85 - 15167: -12,92 - 15183: 6,79 - 15184: 6,72 - 15185: 7,68 - 15186: 2,68 - 15201: -5,61 - 15208: -19,61 - 15210: 17,9 - 15211: 24,5 - 15212: 31,5 - 15221: 17,2 - 15222: 17,-5 - 15223: 17,-17 - 15224: 24,-11 - 15225: 30,-11 - 15249: -31,5 - 15250: -23,5 - 15251: -36,5 - 15258: -19,-17 - 15262: -19,2 - 15263: -19,-5 - 15264: -12,-20 - 15265: -5,-20 - 15269: 6,-20 - 15270: 13,-20 - 15279: 47,-20 - 15280: 52,-20 - 15337: -1,-35 - 15338: -1,-42 - 15339: -1,-50 - 15340: -1,-55 - 15341: -1,-61 - 15348: -1,-27 - 15516: -42,20 - 15517: -42,9 - 15518: -42,14 - 15762: 95,-3 - 15853: 96,6 - 19013: -6,-9 - 19014: -12,-9 - 19023: 7,-9 - 19024: 13,-9 - 19026: 1,-9 - 19721: -19,9 - 19917: 40,-14 - 19918: 39,-15 - 20458: -19,2 - 20459: -19,9 - 20460: -19,16 - 20461: -19,-5 + 2366: -29,32 + 2367: -29,32 + 2370: -29,30 + 2373: -31,30 + 2699: -12,52 + 3836: 19,69 + 3839: 22,69 + 6681: -32,-3 + 6682: -32,-3 + 6699: -32,1 + 6704: -29,-3 + 6708: -24,-3 + 6709: -24,-3 + 6772: -35,-11 + 6982: -23,-17 + 6986: -24,-18 + 8086: 60,-16 + 8087: 61,-15 + 8088: 61,-28 + 8089: 60,-29 + 8340: 39,-11 + 8341: 39,-14 + 8342: 39,-14 + 8366: 47,-17 + 8729: -4,-79 + 8730: -1,-80 + 8731: -6,-80 + 8733: -6,-76 + 8734: -1,-76 + 8987: -15,-28 + 8988: -6,-28 + 9105: 11,-28 + 9481: -4,-71 + 9496: 73,-47 + 10692: 75,-45 + 13495: -41,-63 + 14893: -21,47 + 14894: -17,47 + 14895: -16,48 + 14896: -19,46 + 14897: -19,50 + 14898: -23,41 + 14899: -19,34 + 14900: -19,31 + 14901: -19,27 + 14902: -19,16 + 14903: -13,23 + 14904: -3,23 + 14905: 4,23 + 14990: 17,16 + 14991: 14,23 + 15058: -21,29 + 15078: -10,49 + 15079: -5,49 + 15080: -11,57 + 15081: -4,57 + 15082: 2,57 + 15083: -18,57 + 15116: -30,85 + 15117: -30,92 + 15118: -30,79 + 15123: -30,72 + 15124: -29,68 + 15125: -24,68 + 15126: -18,68 + 15127: -11,68 + 15128: -4,68 + 15129: -12,72 + 15130: -12,79 + 15131: -12,85 + 15132: -12,92 + 15148: 6,79 + 15149: 6,72 + 15150: 7,68 + 15151: 2,68 + 15166: -5,61 + 15173: -19,61 + 15175: 17,9 + 15176: 24,5 + 15177: 31,5 + 15186: 17,2 + 15187: 17,-5 + 15188: 17,-17 + 15189: 24,-11 + 15190: 30,-11 + 15214: -31,5 + 15215: -23,5 + 15216: -36,5 + 15223: -19,-17 + 15227: -19,2 + 15228: -19,-5 + 15229: -12,-20 + 15230: -5,-20 + 15234: 6,-20 + 15235: 13,-20 + 15244: 47,-20 + 15245: 52,-20 + 15302: -1,-35 + 15303: -1,-42 + 15304: -1,-50 + 15305: -1,-55 + 15306: -1,-61 + 15313: -1,-27 + 15481: -42,20 + 15482: -42,9 + 15483: -42,14 + 15616: 95,-3 + 15707: 96,6 + 18848: -6,-9 + 18849: -12,-9 + 18858: 7,-9 + 18859: 13,-9 + 18861: 1,-9 + 19556: -19,9 + 19752: 40,-14 + 19753: 39,-15 + 20293: -19,2 + 20294: -19,9 + 20295: -19,16 + 20296: -19,-5 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 21492: -16,14 - 21493: -16,14 + 21327: -16,14 + 21328: -16,14 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSw decals: - 15862: 97,-3 - 18054: -49,21 - 18075: -55,32 - 18076: -56,35 - 18144: -48,44 - 18146: -50,41 - 18194: -59,56 - 18198: -60,57 - 18206: -60,48 - 18209: -60,50 - 18221: -56,44 - 18224: -54,44 - 18295: -54,23 + 15716: 97,-3 + 17908: -49,21 + 17929: -55,32 + 17930: -56,35 + 17998: -48,44 + 18000: -50,41 + 18048: -59,56 + 18052: -60,57 + 18060: -60,48 + 18063: -60,50 + 18075: -56,44 + 18078: -54,44 + 18149: -54,23 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSw decals: - 9591: 16,-26 - 9748: 16,-35 - 9758: 16,-31 - 9771: 10,-34 - 9826: 27,-53 - 9832: 26,-36 - 9947: 17,-47 - 9957: 16,-44 - 9958: 16,-40 - 9969: 26,-44 - 9973: 26,-40 - 9984: 20,-40 - 10040: 37,-42 - 10041: 30,-40 - 10065: 32,-40 - 10080: 26,-30 - 10130: 29,-27 - 10134: 29,-32 - 10160: 20,-45 - 10178: 22,-49 - 10208: 20,-44 - 10238: 32,-51 - 10241: 32,-49 - 10264: 31,-53 - 10278: 30,-50 - 10392: 9,-41 - 10393: 4,-47 - 10402: 3,-44 - 10426: 14,-45 - 10663: 43,-33 - 15364: 6,-26 - 15377: 17,-45 - 15378: 27,-44 - 15379: 27,-51 - 15388: 22,-35 - 15389: 31,-35 - 15390: 11,-35 - 18631: 17,-34 - 19560: 5,64 - 19929: 20,-28 - 19930: 24,-29 + 9556: 16,-26 + 9713: 16,-35 + 9723: 16,-31 + 9736: 10,-34 + 9791: 27,-53 + 9797: 26,-36 + 9912: 17,-47 + 9922: 16,-44 + 9923: 16,-40 + 9934: 26,-44 + 9938: 26,-40 + 9949: 20,-40 + 10005: 37,-42 + 10006: 30,-40 + 10030: 32,-40 + 10045: 26,-30 + 10095: 29,-27 + 10099: 29,-32 + 10125: 20,-45 + 10143: 22,-49 + 10173: 20,-44 + 10203: 32,-51 + 10206: 32,-49 + 10229: 31,-53 + 10243: 30,-50 + 10357: 9,-41 + 10358: 4,-47 + 10367: 3,-44 + 10391: 14,-45 + 10628: 43,-33 + 15329: 6,-26 + 15342: 17,-45 + 15343: 27,-44 + 15344: 27,-51 + 15353: 22,-35 + 15354: 31,-35 + 15355: 11,-35 + 18466: 17,-34 + 19395: 5,64 + 19764: 20,-28 + 19765: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSw decals: - 2912: -31,46 - 2918: -32,46 - 2923: -34,48 - 2924: -35,49 - 2991: -30,47 - 2992: -32,47 - 2993: -28,47 - 3034: -38,48 - 3036: -38,45 + 2885: -31,46 + 2891: -32,46 + 2896: -34,48 + 2897: -35,49 + 2964: -30,47 + 2965: -32,47 + 2966: -28,47 + 3007: -38,48 + 3009: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSw decals: - 5131: 24,27 - 5192: 38,30 - 5202: 38,30 - 11733: -7,-36 - 11735: -10,-35 - 11736: -10,-35 - 11738: -10,-34 - 11837: -15,-36 - 11859: -15,-40 - 11946: -29,-36 - 11947: -24,-36 - 11983: -30,-31 - 12244: -25,-41 - 12280: -17,-51 - 12284: -16,-54 - 12296: -19,-59 - 12297: -20,-58 - 12341: -11,-50 - 12352: -6,-53 - 12374: -19,-44 - 12683: -8,-34 - 12781: -8,-34 - 12782: -8,-34 - 15311: -12,-26 - 15321: -29,-35 - 15322: -23,-30 - 15326: -18,-35 - 15327: -14,-43 - 15328: -14,-53 - 15335: -29,-41 + 5104: 24,27 + 5165: 38,30 + 5175: 38,30 + 11698: -7,-36 + 11700: -10,-35 + 11701: -10,-35 + 11703: -10,-34 + 11802: -15,-36 + 11824: -15,-40 + 11911: -29,-36 + 11912: -24,-36 + 11948: -30,-31 + 12209: -25,-41 + 12245: -17,-51 + 12249: -16,-54 + 12261: -19,-59 + 12262: -20,-58 + 12306: -11,-50 + 12317: -6,-53 + 12339: -19,-44 + 12648: -8,-34 + 12746: -8,-34 + 12747: -8,-34 + 15276: -12,-26 + 15286: -29,-35 + 15287: -23,-30 + 15291: -18,-35 + 15292: -14,-43 + 15293: -14,-53 + 15300: -29,-41 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSw decals: - 10875: 26,-56 - 10881: 27,-58 - 10916: 38,-62 - 10933: 43,-62 - 10945: 34,-61 - 10949: 34,-68 - 10958: 38,-70 - 10966: 39,-71 - 10986: 41,-71 - 10987: 41,-71 - 11024: 30,-67 + 10840: 26,-56 + 10846: 27,-58 + 10881: 38,-62 + 10898: 43,-62 + 10910: 34,-61 + 10914: 34,-68 + 10923: 38,-70 + 10931: 39,-71 + 10951: 41,-71 + 10952: 41,-71 + 10989: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSw decals: - 19448: 65,-4 + 19283: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSw decals: - 3842: 10,68 + 3815: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSw decals: - 4408: 2,29 - 4436: 4,33 - 4439: 9,33 - 4455: 7,26 - 4456: 4,26 - 4471: 4,28 - 4491: 12,28 - 4503: 14,26 - 4531: 13,27 - 4563: 5,39 - 4566: 4,40 - 4580: 10,39 - 4597: 10,42 - 4618: 15,34 - 4624: 13,35 - 4632: 20,34 - 4653: 13,45 - 4654: 13,43 - 4680: 24,27 - 4683: 21,26 - 4725: 20,28 - 4726: 26,28 - 4730: 22,28 - 4744: 20,29 - 4753: 24,29 - 4759: 21,29 - 4765: 24,36 - 4793: 26,35 - 4809: 16,35 - 4810: 15,36 - 4819: 28,40 - 4854: 4,35 - 4866: 24,40 - 4900: 34,51 - 4979: 15,52 - 5067: 19,43 - 5068: 19,45 - 5069: 19,47 - 5070: 19,49 - 5071: 19,51 - 5074: 19,41 - 5075: 16,41 - 5076: 16,43 - 5077: 16,45 - 5196: 38,30 - 7033: 4,28 - 20098: 25,29 + 4381: 2,29 + 4409: 4,33 + 4412: 9,33 + 4428: 7,26 + 4429: 4,26 + 4444: 4,28 + 4464: 12,28 + 4476: 14,26 + 4504: 13,27 + 4536: 5,39 + 4539: 4,40 + 4553: 10,39 + 4570: 10,42 + 4591: 15,34 + 4597: 13,35 + 4605: 20,34 + 4626: 13,45 + 4627: 13,43 + 4653: 24,27 + 4656: 21,26 + 4698: 20,28 + 4699: 26,28 + 4703: 22,28 + 4717: 20,29 + 4726: 24,29 + 4732: 21,29 + 4738: 24,36 + 4766: 26,35 + 4782: 16,35 + 4783: 15,36 + 4792: 28,40 + 4827: 4,35 + 4839: 24,40 + 4873: 34,51 + 4952: 15,52 + 5040: 19,43 + 5041: 19,45 + 5042: 19,47 + 5043: 19,49 + 5044: 19,51 + 5047: 19,41 + 5048: 16,41 + 5049: 16,43 + 5050: 16,45 + 5169: 38,30 + 7006: 4,28 + 19933: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSw decals: - 9632: 3,-35 - 9633: 5,-36 - 9644: 3,-32 - 9662: 5,-34 + 9597: 3,-35 + 9598: 5,-36 + 9609: 3,-32 + 9627: 5,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSw decals: - 17088: -58,-4 - 17108: -59,1 - 17109: -53,8 - 17121: -54,9 - 17138: -64,1 - 17157: -61,-7 - 17179: -58,-10 - 17217: -59,-17 - 17218: -55,-7 - 17219: -54,-9 - 17240: -50,-15 - 17242: -54,-18 - 17247: -56,-18 - 17355: -59,14 - 17356: -59,10 - 17365: -66,15 - 17400: -72,14 - 17405: -77,13 - 17467: -58,17 - 17490: -49,-9 - 17556: -71,-8 - 17626: 6,87 - 17629: 10,84 - 17644: 10,80 - 17659: 10,75 - 17666: 12,74 - 17794: -74,0 - 17796: -71,-4 - 17797: -69,-4 - 17841: -72,10 - 17887: -77,3 - 17921: -79,0 - 17926: -78,-1 - 17928: -76,-2 - 18354: -54,-4 + 16942: -58,-4 + 16962: -59,1 + 16963: -53,8 + 16975: -54,9 + 16992: -64,1 + 17011: -61,-7 + 17033: -58,-10 + 17071: -59,-17 + 17072: -55,-7 + 17073: -54,-9 + 17094: -50,-15 + 17096: -54,-18 + 17101: -56,-18 + 17209: -59,14 + 17210: -59,10 + 17219: -66,15 + 17254: -72,14 + 17259: -77,13 + 17321: -58,17 + 17344: -49,-9 + 17410: -71,-8 + 17480: 6,87 + 17483: 10,84 + 17498: 10,80 + 17513: 10,75 + 17520: 12,74 + 17648: -74,0 + 17650: -71,-4 + 17651: -69,-4 + 17695: -72,10 + 17741: -77,3 + 17775: -79,0 + 17780: -78,-1 + 17782: -76,-2 + 18208: -54,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2386: -28,38 - 2401: -31,30 - 2738: -12,52 - 2836: -7,33 - 3860: 17,70 - 3862: 18,69 - 3865: 21,69 - 6385: -2,-16 - 6732: -29,-3 - 6733: -24,-3 - 6734: -24,-3 - 6776: -28,-16 - 6798: -30,-11 - 7012: -24,-18 - 8117: 58,-29 - 8118: 57,-28 - 8119: 57,-15 - 8120: 58,-16 - 8372: 35,-14 - 8373: 35,-14 - 8374: 35,-11 - 8400: 46,-17 - 8750: -8,-80 - 8751: -3,-80 - 8752: -8,-76 - 8753: -3,-76 - 8767: -5,-79 - 9021: -13,-28 - 9024: -6,-28 - 9138: 5,-28 - 9139: 13,-28 - 9147: -16,-24 - 9517: -5,-71 - 9526: 72,-50 - 9530: 73,-47 - 9532: 69,-41 - 10719: 72,-50 - 14905: 10,-20 - 14906: 17,-17 - 14907: 17,-5 - 14908: 17,2 - 14909: 17,9 - 14910: 17,16 - 14911: 11,23 - 14912: 1,23 - 14913: -6,23 - 14914: -16,23 - 14915: -19,16 - 14916: -19,27 - 14917: -21,29 - 14918: -22,30 - 14919: -19,31 - 14920: -19,34 - 14921: -23,41 - 14922: -19,46 - 14923: -21,47 - 14924: -17,47 - 14925: -19,50 - 15094: -22,48 - 15111: -11,49 - 15112: -6,49 - 15119: -20,57 - 15120: -13,57 - 15121: -6,57 - 15122: 0,57 - 15149: -30,85 - 15150: -30,92 - 15154: -30,79 - 15157: -30,72 - 15168: -12,92 - 15169: -12,85 - 15170: -12,79 - 15171: -12,72 - 15172: -13,68 - 15173: -20,68 - 15174: -26,68 - 15175: -31,68 - 15176: -19,61 - 15177: -5,61 - 15178: -6,68 - 15179: 0,68 - 15180: 5,68 - 15181: 6,72 - 15182: 6,79 - 15219: 21,5 - 15220: 28,5 - 15226: 28,-11 - 15227: 21,-11 - 15252: -38,5 - 15253: -33,5 - 15254: -27,5 - 15255: -19,2 - 15256: -19,-5 - 15257: -19,-17 - 15267: -8,-20 - 15268: 3,-20 - 15274: -15,-20 - 15277: 44,-20 - 15278: 49,-20 - 15342: -1,-61 - 15343: -1,-55 - 15344: -1,-50 - 15345: -1,-42 - 15346: -1,-35 - 15347: -1,-27 - 15507: -42,9 - 15508: -42,14 - 15509: -42,20 - 15854: 96,6 - 19015: -15,-9 - 19019: -9,-9 - 19020: -3,-9 - 19021: 4,-9 - 19022: 10,-9 - 19720: -19,9 - 19916: 34,-14 - 19919: 35,-15 - 20454: -19,-5 - 20455: -19,2 - 20456: -19,9 - 20457: -19,16 + 2359: -28,38 + 2374: -31,30 + 2711: -12,52 + 2809: -7,33 + 3833: 17,70 + 3835: 18,69 + 3838: 21,69 + 6358: -2,-16 + 6705: -29,-3 + 6706: -24,-3 + 6707: -24,-3 + 6749: -28,-16 + 6771: -30,-11 + 6985: -24,-18 + 8082: 58,-29 + 8083: 57,-28 + 8084: 57,-15 + 8085: 58,-16 + 8337: 35,-14 + 8338: 35,-14 + 8339: 35,-11 + 8365: 46,-17 + 8715: -8,-80 + 8716: -3,-80 + 8717: -8,-76 + 8718: -3,-76 + 8732: -5,-79 + 8986: -13,-28 + 8989: -6,-28 + 9103: 5,-28 + 9104: 13,-28 + 9112: -16,-24 + 9482: -5,-71 + 9491: 72,-50 + 9495: 73,-47 + 9497: 69,-41 + 10684: 72,-50 + 14870: 10,-20 + 14871: 17,-17 + 14872: 17,-5 + 14873: 17,2 + 14874: 17,9 + 14875: 17,16 + 14876: 11,23 + 14877: 1,23 + 14878: -6,23 + 14879: -16,23 + 14880: -19,16 + 14881: -19,27 + 14882: -21,29 + 14883: -22,30 + 14884: -19,31 + 14885: -19,34 + 14886: -23,41 + 14887: -19,46 + 14888: -21,47 + 14889: -17,47 + 14890: -19,50 + 15059: -22,48 + 15076: -11,49 + 15077: -6,49 + 15084: -20,57 + 15085: -13,57 + 15086: -6,57 + 15087: 0,57 + 15114: -30,85 + 15115: -30,92 + 15119: -30,79 + 15122: -30,72 + 15133: -12,92 + 15134: -12,85 + 15135: -12,79 + 15136: -12,72 + 15137: -13,68 + 15138: -20,68 + 15139: -26,68 + 15140: -31,68 + 15141: -19,61 + 15142: -5,61 + 15143: -6,68 + 15144: 0,68 + 15145: 5,68 + 15146: 6,72 + 15147: 6,79 + 15184: 21,5 + 15185: 28,5 + 15191: 28,-11 + 15192: 21,-11 + 15217: -38,5 + 15218: -33,5 + 15219: -27,5 + 15220: -19,2 + 15221: -19,-5 + 15222: -19,-17 + 15232: -8,-20 + 15233: 3,-20 + 15239: -15,-20 + 15242: 44,-20 + 15243: 49,-20 + 15307: -1,-61 + 15308: -1,-55 + 15309: -1,-50 + 15310: -1,-42 + 15311: -1,-35 + 15312: -1,-27 + 15472: -42,9 + 15473: -42,14 + 15474: -42,20 + 15708: 96,6 + 18850: -15,-9 + 18854: -9,-9 + 18855: -3,-9 + 18856: 4,-9 + 18857: 10,-9 + 19555: -19,9 + 19751: 34,-14 + 19754: 35,-15 + 20289: -19,-5 + 20290: -19,2 + 20291: -19,9 + 20292: -19,16 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE @@ -13285,8 +13287,8 @@ entities: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 21489: -18,12 - 21490: -18,13 + 21324: -18,12 + 21325: -18,13 - node: color: '#80C71FFF' id: BrickTileWhiteLineE @@ -13297,329 +13299,329 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineE decals: - 3924: 27,66 - 3926: 24,66 - 15859: 97,-3 - 15864: 96,-3 - 18032: -46,22 - 18041: -51,21 - 18051: -46,19 - 18052: -46,20 - 18053: -46,21 - 18057: -54,33 - 18058: -54,34 - 18062: -55,38 - 18064: -55,35 - 18096: -47,37 - 18097: -47,38 - 18098: -47,39 - 18099: -47,40 - 18106: -45,51 - 18111: -46,52 - 18112: -46,53 - 18113: -46,54 - 18114: -46,55 - 18119: -46,57 - 18133: -46,50 - 18134: -46,49 - 18135: -46,48 - 18136: -46,47 - 18137: -46,47 - 18138: -46,46 - 18139: -46,43 - 18142: -51,41 - 18172: -58,46 - 18173: -58,47 - 18174: -58,48 - 18175: -58,49 - 18176: -58,50 - 18177: -58,51 - 18178: -58,52 - 18180: -58,53 - 18193: -61,57 - 18207: -61,48 - 18208: -61,50 - 18277: -53,22 - 18278: -53,23 - 18282: -56,24 - 18283: -56,23 - 18290: -53,20 + 3897: 27,66 + 3899: 24,66 + 15713: 97,-3 + 15718: 96,-3 + 17886: -46,22 + 17895: -51,21 + 17905: -46,19 + 17906: -46,20 + 17907: -46,21 + 17911: -54,33 + 17912: -54,34 + 17916: -55,38 + 17918: -55,35 + 17950: -47,37 + 17951: -47,38 + 17952: -47,39 + 17953: -47,40 + 17960: -45,51 + 17965: -46,52 + 17966: -46,53 + 17967: -46,54 + 17968: -46,55 + 17973: -46,57 + 17987: -46,50 + 17988: -46,49 + 17989: -46,48 + 17990: -46,47 + 17991: -46,47 + 17992: -46,46 + 17993: -46,43 + 17996: -51,41 + 18026: -58,46 + 18027: -58,47 + 18028: -58,48 + 18029: -58,49 + 18030: -58,50 + 18031: -58,51 + 18032: -58,52 + 18034: -58,53 + 18047: -61,57 + 18061: -61,48 + 18062: -61,50 + 18131: -53,22 + 18132: -53,23 + 18136: -56,24 + 18137: -56,23 + 18144: -53,20 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineE decals: - 9547: 5,-26 - 9548: 5,-26 - 9551: 5,-25 - 9552: 18,-25 - 9553: 18,-26 - 9554: 18,-29 - 9555: 18,-30 - 9556: 18,-31 - 9557: 18,-32 - 9558: 18,-33 - 9586: 15,-26 - 9587: 15,-25 - 9697: 28,-38 - 9698: 28,-39 - 9699: 28,-42 - 9700: 28,-43 - 9701: 28,-45 - 9702: 28,-46 - 9703: 28,-47 - 9704: 28,-48 - 9705: 28,-48 - 9706: 28,-49 - 9707: 28,-51 - 9708: 28,-52 - 9741: 19,-36 - 9742: 19,-35 - 9743: 19,-34 - 9751: 15,-35 - 9756: 15,-31 - 9773: 9,-36 - 9774: 9,-34 - 9776: 15,-35 - 9814: 25,-39 - 9815: 25,-40 - 9816: 19,-39 - 9817: 19,-40 - 9823: 25,-44 - 9885: 10,-35 - 9886: 21,-35 - 9887: 30,-35 - 9888: 26,-40 - 9889: 26,-41 - 9890: 26,-43 - 9891: 26,-44 - 9892: 26,-42 - 9893: 26,-47 - 9894: 26,-48 - 9895: 26,-49 - 9896: 26,-50 - 9897: 26,-50 - 9898: 26,-51 - 9899: 16,-40 - 9900: 16,-41 - 9901: 16,-43 - 9902: 16,-43 - 9903: 16,-45 - 9904: 16,-34 - 9905: 16,-34 - 9906: 16,-32 - 9907: 16,-32 - 9908: 16,-31 - 9909: 16,-31 - 9910: 16,-33 - 9949: 18,-46 - 9950: 18,-45 - 9951: 18,-43 - 9952: 18,-42 - 9953: 18,-41 - 9954: 18,-38 - 9959: 16,-44 - 9961: 15,-44 - 9964: 15,-39 - 9965: 15,-40 - 10008: 38,-41 - 10009: 38,-40 - 10010: 38,-39 - 10037: 29,-40 - 10057: 31,-40 - 10083: 23,-29 - 10085: 19,-28 - 10086: 19,-27 - 10125: 32,-26 - 10126: 32,-25 - 10140: 28,-41 - 10171: 24,-48 - 10172: 24,-47 - 10207: 19,-44 - 10212: 24,-45 - 10217: 34,-51 - 10218: 34,-51 - 10219: 34,-50 - 10220: 34,-48 - 10221: 34,-48 - 10222: 34,-48 - 10223: 34,-49 - 10224: 34,-49 - 10225: 34,-52 - 10234: 31,-51 - 10235: 31,-49 - 10236: 31,-49 - 10266: 31,-53 - 10267: 31,-52 - 10268: 31,-50 - 10269: 31,-48 - 10277: 29,-50 - 10373: 6,-44 - 10381: 10,-46 - 10382: 10,-45 - 10383: 10,-44 - 10397: 1,-44 - 10416: 13,-47 - 10418: 14,-46 - 10419: 14,-45 - 10657: 49,-34 - 10658: 49,-35 - 10660: 42,-33 - 10661: 42,-33 - 15373: 16,-42 - 19559: 4,64 - 19566: 7,63 - 19567: 7,64 - 19933: 22,-28 - 19934: 22,-27 - 19935: 22,-26 - 19945: 26,-28 - 19955: 30,-31 + 9512: 5,-26 + 9513: 5,-26 + 9516: 5,-25 + 9517: 18,-25 + 9518: 18,-26 + 9519: 18,-29 + 9520: 18,-30 + 9521: 18,-31 + 9522: 18,-32 + 9523: 18,-33 + 9551: 15,-26 + 9552: 15,-25 + 9662: 28,-38 + 9663: 28,-39 + 9664: 28,-42 + 9665: 28,-43 + 9666: 28,-45 + 9667: 28,-46 + 9668: 28,-47 + 9669: 28,-48 + 9670: 28,-48 + 9671: 28,-49 + 9672: 28,-51 + 9673: 28,-52 + 9706: 19,-36 + 9707: 19,-35 + 9708: 19,-34 + 9716: 15,-35 + 9721: 15,-31 + 9738: 9,-36 + 9739: 9,-34 + 9741: 15,-35 + 9779: 25,-39 + 9780: 25,-40 + 9781: 19,-39 + 9782: 19,-40 + 9788: 25,-44 + 9850: 10,-35 + 9851: 21,-35 + 9852: 30,-35 + 9853: 26,-40 + 9854: 26,-41 + 9855: 26,-43 + 9856: 26,-44 + 9857: 26,-42 + 9858: 26,-47 + 9859: 26,-48 + 9860: 26,-49 + 9861: 26,-50 + 9862: 26,-50 + 9863: 26,-51 + 9864: 16,-40 + 9865: 16,-41 + 9866: 16,-43 + 9867: 16,-43 + 9868: 16,-45 + 9869: 16,-34 + 9870: 16,-34 + 9871: 16,-32 + 9872: 16,-32 + 9873: 16,-31 + 9874: 16,-31 + 9875: 16,-33 + 9914: 18,-46 + 9915: 18,-45 + 9916: 18,-43 + 9917: 18,-42 + 9918: 18,-41 + 9919: 18,-38 + 9924: 16,-44 + 9926: 15,-44 + 9929: 15,-39 + 9930: 15,-40 + 9973: 38,-41 + 9974: 38,-40 + 9975: 38,-39 + 10002: 29,-40 + 10022: 31,-40 + 10048: 23,-29 + 10050: 19,-28 + 10051: 19,-27 + 10090: 32,-26 + 10091: 32,-25 + 10105: 28,-41 + 10136: 24,-48 + 10137: 24,-47 + 10172: 19,-44 + 10177: 24,-45 + 10182: 34,-51 + 10183: 34,-51 + 10184: 34,-50 + 10185: 34,-48 + 10186: 34,-48 + 10187: 34,-48 + 10188: 34,-49 + 10189: 34,-49 + 10190: 34,-52 + 10199: 31,-51 + 10200: 31,-49 + 10201: 31,-49 + 10231: 31,-53 + 10232: 31,-52 + 10233: 31,-50 + 10234: 31,-48 + 10242: 29,-50 + 10338: 6,-44 + 10346: 10,-46 + 10347: 10,-45 + 10348: 10,-44 + 10362: 1,-44 + 10381: 13,-47 + 10383: 14,-46 + 10384: 14,-45 + 10622: 49,-34 + 10623: 49,-35 + 10625: 42,-33 + 10626: 42,-33 + 15338: 16,-42 + 19394: 4,64 + 19401: 7,63 + 19402: 7,64 + 19768: 22,-28 + 19769: 22,-27 + 19770: 22,-26 + 19780: 26,-28 + 19790: 30,-31 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineE decals: - 2902: -26,49 - 2903: -26,50 - 2916: -32,45 - 2939: -28,54 - 2942: -28,52 - 2945: -26,51 - 2952: -31,53 - 2953: -31,52 - 2954: -31,51 - 2955: -31,50 - 2956: -31,49 - 2957: -31,47 - 2958: -31,48 - 2959: -33,53 - 2960: -33,52 - 2961: -33,51 - 2962: -33,50 - 2963: -33,49 - 2964: -33,47 - 2965: -33,48 - 2984: -29,50 - 2985: -29,49 - 2986: -29,48 - 2987: -29,47 - 3022: -36,49 - 3026: -37,48 - 3027: -37,47 - 3030: -38,46 - 3031: -38,45 + 2875: -26,49 + 2876: -26,50 + 2889: -32,45 + 2912: -28,54 + 2915: -28,52 + 2918: -26,51 + 2925: -31,53 + 2926: -31,52 + 2927: -31,51 + 2928: -31,50 + 2929: -31,49 + 2930: -31,47 + 2931: -31,48 + 2932: -33,53 + 2933: -33,52 + 2934: -33,51 + 2935: -33,50 + 2936: -33,49 + 2937: -33,47 + 2938: -33,48 + 2957: -29,50 + 2958: -29,49 + 2959: -29,48 + 2960: -29,47 + 2995: -36,49 + 2999: -37,48 + 3000: -37,47 + 3003: -38,46 + 3004: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteLineE decals: - 5120: 27,28 - 5121: 27,30 - 5184: 43,29 - 5190: 37,30 - 5210: 36,35 - 11471: -24,-30 - 11472: -24,-30 - 11473: -24,-29 - 11474: -24,-29 - 11475: -24,-28 - 11476: -24,-27 - 11477: -24,-27 - 11478: -24,-26 - 11513: -30,-35 - 11514: -30,-35 - 11515: -19,-35 - 11518: -15,-53 - 11519: -15,-53 - 11520: -15,-52 - 11521: -15,-52 - 11522: -15,-51 - 11523: -15,-51 - 11524: -15,-50 - 11525: -15,-50 - 11526: -15,-49 - 11527: -15,-49 - 11528: -15,-48 - 11529: -15,-48 - 11530: -15,-47 - 11531: -15,-47 - 11532: -15,-43 - 11533: -15,-42 - 11534: -15,-41 - 11535: -15,-41 - 11536: -15,-40 - 11537: -15,-39 - 11538: -15,-39 - 11601: -21,-34 - 11602: -21,-35 - 11603: -21,-36 - 11682: -13,-26 - 11683: -13,-25 - 11684: -13,-25 - 11698: -11,-35 - 11699: -11,-35 - 11700: -11,-34 - 11726: -4,-31 - 11727: -5,-33 - 11728: -5,-34 - 11843: -13,-38 - 11844: -13,-38 - 11845: -13,-39 - 11846: -13,-40 - 11847: -13,-42 - 11848: -13,-43 - 11849: -13,-44 - 11861: -16,-40 - 11927: -33,-45 - 11928: -33,-44 - 11929: -33,-44 - 11930: -33,-43 - 11931: -33,-42 - 11932: -33,-41 - 11959: -31,-31 - 11960: -31,-30 - 11961: -31,-29 - 11962: -31,-29 - 11963: -31,-28 - 11964: -31,-28 - 11965: -31,-27 - 11966: -31,-27 - 12126: -22,-25 - 12127: -22,-27 - 12128: -22,-28 - 12129: -22,-29 - 12130: -22,-30 - 12131: -22,-32 - 12233: -26,-41 - 12234: -26,-40 - 12235: -26,-39 - 12248: -30,-41 - 12249: -30,-40 - 12250: -30,-39 - 12261: -13,-46 - 12262: -13,-47 - 12263: -13,-48 - 12264: -13,-49 - 12265: -13,-51 - 12266: -13,-52 - 12267: -13,-53 - 12279: -18,-51 - 12299: -21,-58 - 12306: -13,-57 - 12307: -13,-58 - 12327: -4,-52 - 12328: -4,-51 - 12329: -4,-50 - 12330: -4,-49 - 12331: -4,-47 - 12340: -12,-50 - 12364: -21,-44 - 12365: -21,-43 - 12366: -21,-42 - 12367: -21,-41 - 12368: -21,-40 - 12672: -9,-34 - 12673: -9,-33 - 12674: -9,-32 - 20227: 36,37 + 5093: 27,28 + 5094: 27,30 + 5157: 43,29 + 5163: 37,30 + 5183: 36,35 + 11436: -24,-30 + 11437: -24,-30 + 11438: -24,-29 + 11439: -24,-29 + 11440: -24,-28 + 11441: -24,-27 + 11442: -24,-27 + 11443: -24,-26 + 11478: -30,-35 + 11479: -30,-35 + 11480: -19,-35 + 11483: -15,-53 + 11484: -15,-53 + 11485: -15,-52 + 11486: -15,-52 + 11487: -15,-51 + 11488: -15,-51 + 11489: -15,-50 + 11490: -15,-50 + 11491: -15,-49 + 11492: -15,-49 + 11493: -15,-48 + 11494: -15,-48 + 11495: -15,-47 + 11496: -15,-47 + 11497: -15,-43 + 11498: -15,-42 + 11499: -15,-41 + 11500: -15,-41 + 11501: -15,-40 + 11502: -15,-39 + 11503: -15,-39 + 11566: -21,-34 + 11567: -21,-35 + 11568: -21,-36 + 11647: -13,-26 + 11648: -13,-25 + 11649: -13,-25 + 11663: -11,-35 + 11664: -11,-35 + 11665: -11,-34 + 11691: -4,-31 + 11692: -5,-33 + 11693: -5,-34 + 11808: -13,-38 + 11809: -13,-38 + 11810: -13,-39 + 11811: -13,-40 + 11812: -13,-42 + 11813: -13,-43 + 11814: -13,-44 + 11826: -16,-40 + 11892: -33,-45 + 11893: -33,-44 + 11894: -33,-44 + 11895: -33,-43 + 11896: -33,-42 + 11897: -33,-41 + 11924: -31,-31 + 11925: -31,-30 + 11926: -31,-29 + 11927: -31,-29 + 11928: -31,-28 + 11929: -31,-28 + 11930: -31,-27 + 11931: -31,-27 + 12091: -22,-25 + 12092: -22,-27 + 12093: -22,-28 + 12094: -22,-29 + 12095: -22,-30 + 12096: -22,-32 + 12198: -26,-41 + 12199: -26,-40 + 12200: -26,-39 + 12213: -30,-41 + 12214: -30,-40 + 12215: -30,-39 + 12226: -13,-46 + 12227: -13,-47 + 12228: -13,-48 + 12229: -13,-49 + 12230: -13,-51 + 12231: -13,-52 + 12232: -13,-53 + 12244: -18,-51 + 12264: -21,-58 + 12271: -13,-57 + 12272: -13,-58 + 12292: -4,-52 + 12293: -4,-51 + 12294: -4,-50 + 12295: -4,-49 + 12296: -4,-47 + 12305: -12,-50 + 12329: -21,-44 + 12330: -21,-43 + 12331: -21,-42 + 12332: -21,-41 + 12333: -21,-40 + 12637: -9,-34 + 12638: -9,-33 + 12639: -9,-32 + 20062: 36,37 - node: color: '#B240B4FF' id: BrickTileWhiteLineE @@ -13629,246 +13631,246 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineE decals: - 10869: 25,-56 - 10873: 28,-57 - 10887: 36,-61 - 10888: 36,-64 - 10889: 36,-66 - 10890: 36,-67 - 10891: 36,-68 - 10892: 36,-69 - 10927: 41,-63 - 10938: 42,-62 - 10940: 37,-62 - 10944: 33,-61 - 10957: 37,-70 - 10969: 39,-73 - 10970: 39,-74 - 10988: 33,-68 - 11014: 31,-68 - 11015: 28,-68 + 10834: 25,-56 + 10838: 28,-57 + 10852: 36,-61 + 10853: 36,-64 + 10854: 36,-66 + 10855: 36,-67 + 10856: 36,-68 + 10857: 36,-69 + 10892: 41,-63 + 10903: 42,-62 + 10905: 37,-62 + 10909: 33,-61 + 10922: 37,-70 + 10934: 39,-73 + 10935: 39,-74 + 10953: 33,-68 + 10979: 31,-68 + 10980: 28,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineE decals: - 7656: 64,-4 - 19426: 70,14 - 19427: 70,15 - 19441: 63,-5 - 19447: 66,-4 + 7629: 64,-4 + 19261: 70,14 + 19262: 70,15 + 19276: 63,-5 + 19282: 66,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineE decals: - 3846: 12,68 - 3847: 12,69 - 3852: 9,68 + 3819: 12,68 + 3820: 12,69 + 3825: 9,68 - node: color: '#DAA58BFF' id: BrickTileWhiteLineE decals: - 4406: 10,29 - 4415: 1,29 - 4464: 3,29 - 4465: 3,28 - 4475: 11,28 - 4488: 10,27 - 4497: 17,31 - 4498: 17,30 - 4499: 17,29 - 4500: 17,28 - 4501: 17,27 - 4514: 12,27 - 4524: 15,31 - 4525: 15,30 - 4526: 15,29 - 4573: 7,43 - 4574: 7,42 - 4575: 7,42 - 4576: 7,41 - 4577: 7,40 - 4603: 11,44 - 4621: 12,36 - 4622: 12,35 - 4635: 22,35 - 4636: 22,37 - 4655: 12,43 - 4656: 12,45 - 4687: 27,27 - 4688: 27,28 - 4689: 27,29 - 4690: 27,30 - 4714: 19,28 - 4715: 19,29 - 4716: 19,30 - 4733: 20,29 - 4739: 24,29 - 4764: 23,36 - 4776: 29,35 - 4777: 29,36 - 4778: 29,37 - 4783: 25,36 - 4784: 25,37 - 4785: 25,35 - 4804: 14,36 - 4821: 29,41 - 4822: 29,42 - 4823: 29,43 - 4846: 3,35 - 4894: 32,50 - 4895: 38,50 - 4906: 33,49 - 4909: 33,51 - 4926: 25,47 - 4927: 25,46 - 4928: 25,45 - 4929: 25,45 - 4930: 25,44 - 4931: 25,44 - 4932: 25,43 - 4933: 25,42 - 4937: 25,53 - 4967: 13,51 - 4977: 14,53 - 4978: 14,52 - 5024: 18,51 - 5025: 18,49 - 5026: 18,47 - 5027: 18,45 - 5028: 15,45 - 5029: 15,43 - 5030: 15,41 - 5031: 18,41 - 5032: 18,43 - 5195: 37,30 - 5204: 36,36 - 11403: -11,-82 - 11404: -11,-81 - 11405: -11,-80 - 20224: 36,38 + 4379: 10,29 + 4388: 1,29 + 4437: 3,29 + 4438: 3,28 + 4448: 11,28 + 4461: 10,27 + 4470: 17,31 + 4471: 17,30 + 4472: 17,29 + 4473: 17,28 + 4474: 17,27 + 4487: 12,27 + 4497: 15,31 + 4498: 15,30 + 4499: 15,29 + 4546: 7,43 + 4547: 7,42 + 4548: 7,42 + 4549: 7,41 + 4550: 7,40 + 4576: 11,44 + 4594: 12,36 + 4595: 12,35 + 4608: 22,35 + 4609: 22,37 + 4628: 12,43 + 4629: 12,45 + 4660: 27,27 + 4661: 27,28 + 4662: 27,29 + 4663: 27,30 + 4687: 19,28 + 4688: 19,29 + 4689: 19,30 + 4706: 20,29 + 4712: 24,29 + 4737: 23,36 + 4749: 29,35 + 4750: 29,36 + 4751: 29,37 + 4756: 25,36 + 4757: 25,37 + 4758: 25,35 + 4777: 14,36 + 4794: 29,41 + 4795: 29,42 + 4796: 29,43 + 4819: 3,35 + 4867: 32,50 + 4868: 38,50 + 4879: 33,49 + 4882: 33,51 + 4899: 25,47 + 4900: 25,46 + 4901: 25,45 + 4902: 25,45 + 4903: 25,44 + 4904: 25,44 + 4905: 25,43 + 4906: 25,42 + 4910: 25,53 + 4940: 13,51 + 4950: 14,53 + 4951: 14,52 + 4997: 18,51 + 4998: 18,49 + 4999: 18,47 + 5000: 18,45 + 5001: 15,45 + 5002: 15,43 + 5003: 15,41 + 5004: 18,41 + 5005: 18,43 + 5168: 37,30 + 5177: 36,36 + 11368: -11,-82 + 11369: -11,-81 + 11370: -11,-80 + 20059: 36,38 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 4043: -37,53 - 9614: 8,-33 - 9615: 8,-32 - 9616: 8,-31 - 9629: 8,-35 - 9631: 2,-35 - 9645: 4,-32 - 9646: 4,-33 - 9647: 4,-34 + 4016: -37,53 + 9579: 8,-33 + 9580: 8,-32 + 9581: 8,-31 + 9594: 8,-35 + 9596: 2,-35 + 9610: 4,-32 + 9611: 4,-33 + 9612: 4,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 17048: -52,4 - 17049: -52,5 - 17050: -52,6 - 17070: -49,2 - 17072: -49,0 - 17095: -62,1 - 17137: -52,16 - 17147: -65,1 - 17148: -62,1 - 17150: -56,-7 - 17151: -56,-9 - 17155: -62,-7 - 17163: -56,-9 - 17165: -57,-8 - 17195: -52,-5 - 17198: -52,-11 - 17199: -52,-13 - 17200: -52,-13 - 17201: -52,-12 - 17202: -52,-14 - 17203: -52,-16 - 17204: -52,-17 - 17214: -62,-17 - 17215: -60,-17 - 17225: -55,-13 - 17226: -55,-14 - 17239: -51,-15 - 17261: -47,-14 - 17262: -47,-15 - 17263: -47,-16 - 17293: -51,-15 - 17343: -47,13 - 17346: -50,10 - 17358: -60,10 - 17366: -67,15 - 17401: -79,14 - 17476: -57,18 - 17512: -45,-7 - 17513: -45,-8 - 17514: -45,-9 - 17519: -50,-9 - 17520: -50,-8 - 17521: -50,-7 - 17526: -56,-7 - 17527: -56,-9 - 17567: -74,-8 - 17568: -74,-7 - 17569: -74,-6 - 17582: -75,-9 - 17587: -11,-80 - 17588: -11,-81 - 17589: -11,-82 - 17604: 5,92 - 17607: 10,90 - 17619: 7,89 - 17620: 7,88 - 17632: 11,85 - 17633: 11,86 - 17646: 9,80 - 17647: 9,81 - 17650: 12,81 - 17651: 12,80 - 17652: 12,79 - 17653: 12,77 - 17654: 12,76 - 17655: 12,75 - 17656: 12,74 - 17667: 9,75 - 17668: 9,76 - 17669: 9,80 - 17670: 9,81 - 17696: -62,9 - 17697: -62,8 - 17698: -62,7 - 17699: -62,6 - 17764: -60,10 - 17770: -66,-3 - 17771: -66,-2 - 17772: -66,-1 - 17773: -66,0 - 17804: -65,1 - 17805: -65,1 - 17807: -75,0 - 17809: -75,0 - 17839: -70,11 - 17840: -74,11 - 17848: -79,14 - 17852: -83,14 - 17889: -77,3 - 17890: -77,4 - 17891: -77,5 - 17892: -77,6 - 17893: -77,7 - 17906: -77,9 - 17907: -77,10 - 17908: -77,11 - 17922: -80,0 - 17931: -76,-2 - 17932: -76,-1 - 17936: -75,0 - 17976: -67,-11 - 17977: -67,-12 - 17994: -52,17 - 18343: -55,-2 - 18344: -55,-3 - 20106: -49,-2 + 16902: -52,4 + 16903: -52,5 + 16904: -52,6 + 16924: -49,2 + 16926: -49,0 + 16949: -62,1 + 16991: -52,16 + 17001: -65,1 + 17002: -62,1 + 17004: -56,-7 + 17005: -56,-9 + 17009: -62,-7 + 17017: -56,-9 + 17019: -57,-8 + 17049: -52,-5 + 17052: -52,-11 + 17053: -52,-13 + 17054: -52,-13 + 17055: -52,-12 + 17056: -52,-14 + 17057: -52,-16 + 17058: -52,-17 + 17068: -62,-17 + 17069: -60,-17 + 17079: -55,-13 + 17080: -55,-14 + 17093: -51,-15 + 17115: -47,-14 + 17116: -47,-15 + 17117: -47,-16 + 17147: -51,-15 + 17197: -47,13 + 17200: -50,10 + 17212: -60,10 + 17220: -67,15 + 17255: -79,14 + 17330: -57,18 + 17366: -45,-7 + 17367: -45,-8 + 17368: -45,-9 + 17373: -50,-9 + 17374: -50,-8 + 17375: -50,-7 + 17380: -56,-7 + 17381: -56,-9 + 17421: -74,-8 + 17422: -74,-7 + 17423: -74,-6 + 17436: -75,-9 + 17441: -11,-80 + 17442: -11,-81 + 17443: -11,-82 + 17458: 5,92 + 17461: 10,90 + 17473: 7,89 + 17474: 7,88 + 17486: 11,85 + 17487: 11,86 + 17500: 9,80 + 17501: 9,81 + 17504: 12,81 + 17505: 12,80 + 17506: 12,79 + 17507: 12,77 + 17508: 12,76 + 17509: 12,75 + 17510: 12,74 + 17521: 9,75 + 17522: 9,76 + 17523: 9,80 + 17524: 9,81 + 17550: -62,9 + 17551: -62,8 + 17552: -62,7 + 17553: -62,6 + 17618: -60,10 + 17624: -66,-3 + 17625: -66,-2 + 17626: -66,-1 + 17627: -66,0 + 17658: -65,1 + 17659: -65,1 + 17661: -75,0 + 17663: -75,0 + 17693: -70,11 + 17694: -74,11 + 17702: -79,14 + 17706: -83,14 + 17743: -77,3 + 17744: -77,4 + 17745: -77,5 + 17746: -77,6 + 17747: -77,7 + 17760: -77,9 + 17761: -77,10 + 17762: -77,11 + 17776: -80,0 + 17785: -76,-2 + 17786: -76,-1 + 17790: -75,0 + 17830: -67,-11 + 17831: -67,-12 + 17848: -52,17 + 18197: -55,-2 + 18198: -55,-3 + 19941: -49,-2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -13877,301 +13879,301 @@ entities: 867: 75,-43 1183: 49,-16 1184: 49,-15 - 2078: -20,48 - 2079: -20,47 - 2080: -20,46 - 2081: -20,51 - 2082: -20,52 - 2083: -23,50 - 2084: -23,49 - 2085: -23,48 - 2111: -18,47 - 2112: -18,48 - 2113: -18,49 - 2114: -18,50 - 2115: -18,51 - 2138: -20,27 - 2139: -20,28 - 2140: -20,29 - 2141: -20,31 - 2142: -20,32 - 2143: -23,31 - 2144: -23,33 - 2145: -23,32 - 2146: -23,30 - 2147: -20,34 - 2148: -20,35 - 2149: -20,36 - 2292: -24,41 - 2395: -29,31 - 2730: -9,53 - 2801: -7,49 - 2802: -12,49 - 2835: -8,33 - 2844: -5,33 - 3046: -14,57 - 3051: -20,61 - 3052: -20,62 - 3053: -20,63 - 3116: -14,68 - 3117: -21,68 - 3118: -21,57 - 3119: -7,57 - 3120: -6,61 - 3121: -6,62 - 3122: -6,63 - 3123: -6,64 - 3139: -7,68 - 3259: -13,75 - 3260: -13,74 - 3261: -13,73 - 3262: -13,72 - 3274: -13,79 - 3275: -13,80 - 3276: -13,81 - 3277: -13,82 - 3278: -13,92 - 3279: -13,93 - 3280: -13,94 - 3281: -13,95 - 3285: -13,88 - 3286: -13,87 - 3287: -13,86 - 3288: -13,86 - 3289: -13,85 - 3295: -31,79 - 3296: -31,80 - 3297: -31,81 - 3298: -31,82 - 3299: -31,85 - 3300: -31,86 - 3301: -31,88 - 3302: -31,92 - 3303: -31,93 - 3304: -31,94 - 3305: -31,95 - 3306: -31,75 - 3307: -31,74 - 3308: -31,73 - 3309: -31,72 - 3340: -32,68 - 3553: -1,68 - 3554: 4,68 - 3642: 5,72 - 3643: 5,73 - 3644: 5,74 - 3645: 5,75 - 3704: 5,82 - 3705: 5,81 - 3706: 5,80 - 3707: 5,79 - 3811: -1,57 - 3858: 16,70 - 3859: 16,71 - 3868: 23,70 - 4180: -23,22 - 4181: -23,22 - 5212: 16,16 - 5213: 16,17 - 5214: 16,18 - 5215: 16,19 - 5225: 16,9 - 5226: 16,10 - 5227: 16,11 - 5228: 16,12 - 5233: 16,2 - 5234: 16,3 - 5235: 16,5 - 5236: 16,4 - 5237: 16,-2 - 5238: 16,-3 - 5239: 16,-4 - 5240: 16,-5 - 5264: -27,68 - 5547: -39,5 - 5548: -34,5 - 5549: -28,5 - 5626: -35,26 - 6261: -20,-17 - 6262: -20,-16 - 6263: -20,-15 - 6264: -20,-14 - 6265: -20,-13 - 6266: -20,-12 - 6361: 16,-17 - 6362: 16,-15 - 6363: 16,-14 - 6364: 16,-12 - 6365: 16,-13 - 6366: 16,-16 - 6386: -3,-16 - 6702: -32,-9 - 6703: -32,-8 - 6704: -32,-7 - 6705: -32,-6 - 6706: -32,-5 - 6707: -32,-4 - 6721: -32,-1 - 6722: -32,0 - 6723: -32,0 - 6724: -32,2 - 6753: -28,-12 - 6754: -28,-13 - 6755: -28,-14 - 6756: -28,-15 - 6757: -28,-16 - 6783: -35,-15 - 6784: -35,-14 - 6785: -35,-13 - 6786: -35,-12 - 7056: -16,-20 - 7057: -9,-20 - 7058: 2,-20 - 7059: 9,-20 - 7173: 20,5 - 7240: 27,5 - 8069: 56,-15 - 8070: 56,-14 - 8071: 56,-13 - 8076: 56,-28 - 8077: 56,-27 - 8078: 56,-26 - 8088: 58,-27 - 8089: 60,-27 - 8090: 60,-14 - 8091: 58,-14 - 8297: 27,-11 - 8303: 20,-11 - 8304: 33,-13 - 8305: 33,-12 - 8306: 33,-12 - 8307: 33,-11 - 8308: 33,-10 - 8495: 48,-20 - 8496: 48,-20 - 8746: -9,-76 - 8747: -9,-80 - 8748: -6,-78 - 8803: 5,-25 - 8804: 5,-26 - 8827: -13,-25 - 8828: -13,-25 - 8829: -13,-26 - 8830: -13,-26 - 8881: -2,-27 - 8882: -2,-26 - 8883: -2,-26 - 8884: -2,-24 - 8885: -2,-25 - 8924: -2,-31 - 8925: -2,-32 - 8926: -2,-33 - 8927: -2,-34 - 8928: -2,-35 - 9008: -4,-24 - 9128: 1,-26 - 9129: 1,-25 - 9141: 14,-24 - 9426: -2,-42 - 9427: -2,-41 - 9428: -2,-41 - 9429: -2,-40 - 9430: -2,-40 - 9431: -2,-39 - 9432: -2,-45 - 9433: -2,-45 - 9434: -2,-46 - 9435: -2,-47 - 9436: -2,-48 - 9437: -2,-49 - 9438: -2,-50 - 9439: -2,-44 - 9440: -2,-44 - 9441: -2,-52 - 9442: -2,-53 - 9443: -2,-54 - 9444: -2,-54 - 9445: -2,-54 - 9446: -2,-55 - 9472: -2,-61 - 9473: -2,-60 - 9474: -2,-59 - 9508: -7,-71 - 9509: -7,-70 - 9510: -7,-69 - 9511: -4,-73 - 9512: -4,-72 - 9520: 74,-50 - 9521: 74,-51 - 10717: 71,-50 - 10718: 71,-50 - 10725: 75,-44 - 10747: 68,-41 - 12788: -43,22 - 14926: -20,50 - 15021: -17,23 - 15022: -7,23 - 15023: 0,23 - 15024: 10,23 - 15148: -31,87 - 15209: -20,64 - 15276: 43,-20 - 15393: -3,-71 - 15397: -3,-70 - 15482: -43,9 - 15483: -43,10 - 15484: -43,11 - 15485: -43,14 - 15486: -43,15 - 15487: -43,15 - 15488: -43,16 - 15489: -43,17 - 15490: -43,20 - 15491: -43,21 - 15520: -9,-79 - 15521: -9,-78 - 15522: -9,-77 - 15761: 95,-4 - 18976: 3,-9 - 18977: 9,-9 - 18978: -4,-9 - 18979: -10,-9 - 18980: -16,-9 - 19897: 34,-11 - 19898: 34,-10 - 19899: 34,-13 - 19900: 34,-14 - 19902: 33,-14 - 20410: -20,9 - 20411: -20,10 - 20412: -20,11 - 20413: -20,12 - 20414: -20,16 - 20415: -20,17 - 20416: -20,18 - 20417: -20,19 - 20418: -20,5 - 20419: -20,4 - 20420: -20,4 - 20421: -20,2 - 20422: -20,-2 - 20423: -20,-3 - 20424: -20,-4 - 20425: -20,-5 - 20462: -20,3 + 2051: -20,48 + 2052: -20,47 + 2053: -20,46 + 2054: -20,51 + 2055: -20,52 + 2056: -23,50 + 2057: -23,49 + 2058: -23,48 + 2084: -18,47 + 2085: -18,48 + 2086: -18,49 + 2087: -18,50 + 2088: -18,51 + 2111: -20,27 + 2112: -20,28 + 2113: -20,29 + 2114: -20,31 + 2115: -20,32 + 2116: -23,31 + 2117: -23,33 + 2118: -23,32 + 2119: -23,30 + 2120: -20,34 + 2121: -20,35 + 2122: -20,36 + 2265: -24,41 + 2368: -29,31 + 2703: -9,53 + 2774: -7,49 + 2775: -12,49 + 2808: -8,33 + 2817: -5,33 + 3019: -14,57 + 3024: -20,61 + 3025: -20,62 + 3026: -20,63 + 3089: -14,68 + 3090: -21,68 + 3091: -21,57 + 3092: -7,57 + 3093: -6,61 + 3094: -6,62 + 3095: -6,63 + 3096: -6,64 + 3112: -7,68 + 3232: -13,75 + 3233: -13,74 + 3234: -13,73 + 3235: -13,72 + 3247: -13,79 + 3248: -13,80 + 3249: -13,81 + 3250: -13,82 + 3251: -13,92 + 3252: -13,93 + 3253: -13,94 + 3254: -13,95 + 3258: -13,88 + 3259: -13,87 + 3260: -13,86 + 3261: -13,86 + 3262: -13,85 + 3268: -31,79 + 3269: -31,80 + 3270: -31,81 + 3271: -31,82 + 3272: -31,85 + 3273: -31,86 + 3274: -31,88 + 3275: -31,92 + 3276: -31,93 + 3277: -31,94 + 3278: -31,95 + 3279: -31,75 + 3280: -31,74 + 3281: -31,73 + 3282: -31,72 + 3313: -32,68 + 3526: -1,68 + 3527: 4,68 + 3615: 5,72 + 3616: 5,73 + 3617: 5,74 + 3618: 5,75 + 3677: 5,82 + 3678: 5,81 + 3679: 5,80 + 3680: 5,79 + 3784: -1,57 + 3831: 16,70 + 3832: 16,71 + 3841: 23,70 + 4153: -23,22 + 4154: -23,22 + 5185: 16,16 + 5186: 16,17 + 5187: 16,18 + 5188: 16,19 + 5198: 16,9 + 5199: 16,10 + 5200: 16,11 + 5201: 16,12 + 5206: 16,2 + 5207: 16,3 + 5208: 16,5 + 5209: 16,4 + 5210: 16,-2 + 5211: 16,-3 + 5212: 16,-4 + 5213: 16,-5 + 5237: -27,68 + 5520: -39,5 + 5521: -34,5 + 5522: -28,5 + 5599: -35,26 + 6234: -20,-17 + 6235: -20,-16 + 6236: -20,-15 + 6237: -20,-14 + 6238: -20,-13 + 6239: -20,-12 + 6334: 16,-17 + 6335: 16,-15 + 6336: 16,-14 + 6337: 16,-12 + 6338: 16,-13 + 6339: 16,-16 + 6359: -3,-16 + 6675: -32,-9 + 6676: -32,-8 + 6677: -32,-7 + 6678: -32,-6 + 6679: -32,-5 + 6680: -32,-4 + 6694: -32,-1 + 6695: -32,0 + 6696: -32,0 + 6697: -32,2 + 6726: -28,-12 + 6727: -28,-13 + 6728: -28,-14 + 6729: -28,-15 + 6730: -28,-16 + 6756: -35,-15 + 6757: -35,-14 + 6758: -35,-13 + 6759: -35,-12 + 7029: -16,-20 + 7030: -9,-20 + 7031: 2,-20 + 7032: 9,-20 + 7146: 20,5 + 7213: 27,5 + 8034: 56,-15 + 8035: 56,-14 + 8036: 56,-13 + 8041: 56,-28 + 8042: 56,-27 + 8043: 56,-26 + 8053: 58,-27 + 8054: 60,-27 + 8055: 60,-14 + 8056: 58,-14 + 8262: 27,-11 + 8268: 20,-11 + 8269: 33,-13 + 8270: 33,-12 + 8271: 33,-12 + 8272: 33,-11 + 8273: 33,-10 + 8460: 48,-20 + 8461: 48,-20 + 8711: -9,-76 + 8712: -9,-80 + 8713: -6,-78 + 8768: 5,-25 + 8769: 5,-26 + 8792: -13,-25 + 8793: -13,-25 + 8794: -13,-26 + 8795: -13,-26 + 8846: -2,-27 + 8847: -2,-26 + 8848: -2,-26 + 8849: -2,-24 + 8850: -2,-25 + 8889: -2,-31 + 8890: -2,-32 + 8891: -2,-33 + 8892: -2,-34 + 8893: -2,-35 + 8973: -4,-24 + 9093: 1,-26 + 9094: 1,-25 + 9106: 14,-24 + 9391: -2,-42 + 9392: -2,-41 + 9393: -2,-41 + 9394: -2,-40 + 9395: -2,-40 + 9396: -2,-39 + 9397: -2,-45 + 9398: -2,-45 + 9399: -2,-46 + 9400: -2,-47 + 9401: -2,-48 + 9402: -2,-49 + 9403: -2,-50 + 9404: -2,-44 + 9405: -2,-44 + 9406: -2,-52 + 9407: -2,-53 + 9408: -2,-54 + 9409: -2,-54 + 9410: -2,-54 + 9411: -2,-55 + 9437: -2,-61 + 9438: -2,-60 + 9439: -2,-59 + 9473: -7,-71 + 9474: -7,-70 + 9475: -7,-69 + 9476: -4,-73 + 9477: -4,-72 + 9485: 74,-50 + 9486: 74,-51 + 10682: 71,-50 + 10683: 71,-50 + 10690: 75,-44 + 10712: 68,-41 + 12753: -43,22 + 14891: -20,50 + 14986: -17,23 + 14987: -7,23 + 14988: 0,23 + 14989: 10,23 + 15113: -31,87 + 15174: -20,64 + 15241: 43,-20 + 15358: -3,-71 + 15362: -3,-70 + 15447: -43,9 + 15448: -43,10 + 15449: -43,11 + 15450: -43,14 + 15451: -43,15 + 15452: -43,15 + 15453: -43,16 + 15454: -43,17 + 15455: -43,20 + 15456: -43,21 + 15485: -9,-79 + 15486: -9,-78 + 15487: -9,-77 + 15615: 95,-4 + 18811: 3,-9 + 18812: 9,-9 + 18813: -4,-9 + 18814: -10,-9 + 18815: -16,-9 + 19732: 34,-11 + 19733: 34,-10 + 19734: 34,-13 + 19735: 34,-14 + 19737: 33,-14 + 20245: -20,9 + 20246: -20,10 + 20247: -20,11 + 20248: -20,12 + 20249: -20,16 + 20250: -20,17 + 20251: -20,18 + 20252: -20,19 + 20253: -20,5 + 20254: -20,4 + 20255: -20,4 + 20256: -20,2 + 20257: -20,-2 + 20258: -20,-3 + 20259: -20,-4 + 20260: -20,-5 + 20297: -20,3 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4110: -20,16 - 4111: -20,17 - 4112: -20,18 - 4113: -20,19 - 4114: -20,12 - 4115: -20,11 - 4116: -20,10 - 4117: -20,9 + 4083: -20,16 + 4084: -20,17 + 4085: -20,18 + 4086: -20,19 + 4087: -20,12 + 4088: -20,11 + 4089: -20,10 + 4090: -20,9 - node: color: '#52E5FFFF' id: BrickTileWhiteLineN @@ -14181,252 +14183,252 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineN decals: - 18034: -46,23 - 18035: -47,23 - 18036: -47,23 - 18037: -48,23 - 18038: -49,23 - 18070: -56,37 - 18074: -55,31 - 18105: -44,51 - 18116: -46,56 - 18143: -48,43 - 18148: -49,42 - 18157: -45,45 - 18161: -48,45 - 18162: -49,45 - 18163: -49,45 - 18164: -50,45 - 18165: -51,45 - 18166: -52,45 - 18167: -53,45 - 18168: -54,45 - 18169: -55,45 - 18170: -57,45 - 18171: -56,45 - 18205: -59,55 - 18226: -56,43 - 18227: -54,43 - 18280: -55,24 - 18281: -54,24 - 18288: -54,19 - 18289: -53,19 - 18292: -52,21 + 17888: -46,23 + 17889: -47,23 + 17890: -47,23 + 17891: -48,23 + 17892: -49,23 + 17924: -56,37 + 17928: -55,31 + 17959: -44,51 + 17970: -46,56 + 17997: -48,43 + 18002: -49,42 + 18011: -45,45 + 18015: -48,45 + 18016: -49,45 + 18017: -49,45 + 18018: -50,45 + 18019: -51,45 + 18020: -52,45 + 18021: -53,45 + 18022: -54,45 + 18023: -55,45 + 18024: -57,45 + 18025: -56,45 + 18059: -59,55 + 18080: -56,43 + 18081: -54,43 + 18134: -55,24 + 18135: -54,24 + 18142: -54,19 + 18143: -53,19 + 18146: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineN decals: - 9536: 6,-27 - 9537: 7,-27 - 9538: 8,-27 - 9539: 9,-27 - 9540: 10,-27 - 9566: 20,-34 - 9567: 22,-34 - 9568: 23,-34 - 9569: 24,-34 - 9570: 25,-34 - 9571: 26,-34 - 9572: 27,-34 - 9573: 28,-34 - 9574: 30,-34 - 9575: 31,-34 - 9576: 32,-34 - 9577: 33,-34 - 9578: 34,-34 - 9579: 35,-34 - 9580: 37,-34 - 9590: 17,-24 - 9744: 16,-37 - 9745: 17,-37 - 9746: 18,-37 - 9767: 13,-34 - 9768: 11,-34 - 9769: 10,-34 - 9806: 26,-37 - 9807: 27,-37 - 9808: 28,-37 - 9809: 17,-48 - 9810: 27,-54 - 9845: 22,-36 - 9846: 23,-36 - 9847: 24,-36 - 9848: 25,-36 - 9849: 26,-36 - 9850: 27,-36 - 9851: 31,-36 - 9852: 32,-36 - 9853: 33,-36 - 9854: 34,-36 - 9855: 34,-36 - 9856: 35,-36 - 9857: 36,-36 - 9858: 27,-45 - 9859: 27,-52 - 9860: 17,-46 - 9861: 17,-35 - 9862: 11,-36 - 9863: 12,-36 - 9864: 13,-36 - 9978: 21,-38 - 9979: 22,-38 - 9980: 23,-38 - 10029: 31,-38 - 10030: 32,-38 - 10031: 33,-38 - 10032: 33,-38 - 10033: 34,-38 - 10034: 35,-38 - 10035: 36,-38 - 10036: 37,-38 - 10038: 37,-43 - 10052: 32,-41 - 10053: 33,-41 - 10054: 34,-41 - 10055: 35,-41 - 10056: 36,-41 - 10129: 29,-28 - 10145: 9,-38 - 10146: 10,-38 - 10147: 11,-38 - 10148: 12,-38 - 10149: 13,-38 - 10162: 20,-46 - 10163: 21,-46 - 10164: 22,-46 - 10165: 23,-46 - 10166: 24,-46 - 10177: 22,-50 - 10200: 21,-43 - 10201: 22,-43 - 10202: 23,-43 - 10263: 31,-47 - 10280: 31,-54 - 10370: 3,-43 - 10371: 5,-43 - 10374: 7,-45 - 10391: 9,-42 - 10407: 4,-48 - 10423: 13,-43 - 10648: 44,-31 - 10649: 47,-31 - 10650: 46,-31 - 10651: 48,-31 - 10652: 48,-31 - 19596: -6,-58 - 19946: 27,-29 - 19947: 28,-29 - 19948: 30,-29 - 19949: 31,-29 + 9501: 6,-27 + 9502: 7,-27 + 9503: 8,-27 + 9504: 9,-27 + 9505: 10,-27 + 9531: 20,-34 + 9532: 22,-34 + 9533: 23,-34 + 9534: 24,-34 + 9535: 25,-34 + 9536: 26,-34 + 9537: 27,-34 + 9538: 28,-34 + 9539: 30,-34 + 9540: 31,-34 + 9541: 32,-34 + 9542: 33,-34 + 9543: 34,-34 + 9544: 35,-34 + 9545: 37,-34 + 9555: 17,-24 + 9709: 16,-37 + 9710: 17,-37 + 9711: 18,-37 + 9732: 13,-34 + 9733: 11,-34 + 9734: 10,-34 + 9771: 26,-37 + 9772: 27,-37 + 9773: 28,-37 + 9774: 17,-48 + 9775: 27,-54 + 9810: 22,-36 + 9811: 23,-36 + 9812: 24,-36 + 9813: 25,-36 + 9814: 26,-36 + 9815: 27,-36 + 9816: 31,-36 + 9817: 32,-36 + 9818: 33,-36 + 9819: 34,-36 + 9820: 34,-36 + 9821: 35,-36 + 9822: 36,-36 + 9823: 27,-45 + 9824: 27,-52 + 9825: 17,-46 + 9826: 17,-35 + 9827: 11,-36 + 9828: 12,-36 + 9829: 13,-36 + 9943: 21,-38 + 9944: 22,-38 + 9945: 23,-38 + 9994: 31,-38 + 9995: 32,-38 + 9996: 33,-38 + 9997: 33,-38 + 9998: 34,-38 + 9999: 35,-38 + 10000: 36,-38 + 10001: 37,-38 + 10003: 37,-43 + 10017: 32,-41 + 10018: 33,-41 + 10019: 34,-41 + 10020: 35,-41 + 10021: 36,-41 + 10094: 29,-28 + 10110: 9,-38 + 10111: 10,-38 + 10112: 11,-38 + 10113: 12,-38 + 10114: 13,-38 + 10127: 20,-46 + 10128: 21,-46 + 10129: 22,-46 + 10130: 23,-46 + 10131: 24,-46 + 10142: 22,-50 + 10165: 21,-43 + 10166: 22,-43 + 10167: 23,-43 + 10228: 31,-47 + 10245: 31,-54 + 10335: 3,-43 + 10336: 5,-43 + 10339: 7,-45 + 10356: 9,-42 + 10372: 4,-48 + 10388: 13,-43 + 10613: 44,-31 + 10614: 47,-31 + 10615: 46,-31 + 10616: 48,-31 + 10617: 48,-31 + 19431: -6,-58 + 19781: 27,-29 + 19782: 28,-29 + 19783: 30,-29 + 19784: 31,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineN decals: - 2901: -25,48 - 2914: -32,44 - 2932: -33,54 - 2933: -32,54 - 2934: -31,54 - 2935: -30,54 - 2944: -27,51 - 2988: -32,46 - 2989: -30,46 - 2990: -28,46 - 3020: -38,50 - 3038: -38,44 - 3039: -30,44 + 2874: -25,48 + 2887: -32,44 + 2905: -33,54 + 2906: -32,54 + 2907: -31,54 + 2908: -30,54 + 2917: -27,51 + 2961: -32,46 + 2962: -30,46 + 2963: -28,46 + 2993: -38,50 + 3011: -38,44 + 3012: -30,44 - node: color: '#B18BDAFF' id: BrickTileWhiteLineN decals: - 5124: 22,32 - 5126: 24,32 - 5127: 26,32 - 5177: 39,30 - 5178: 40,30 - 5179: 41,30 - 5180: 42,30 - 5189: 38,30 - 5207: 35,33 - 11486: -23,-31 - 11487: -18,-36 - 11488: -17,-36 - 11489: -17,-36 - 11490: -16,-36 - 11491: -15,-36 - 11492: -14,-36 - 11493: -29,-36 - 11494: -27,-36 - 11495: -28,-36 - 11496: -26,-36 - 11497: -26,-36 - 11498: -24,-36 - 11499: -25,-36 - 11559: -14,-54 - 11560: -14,-44 - 11568: -14,-34 - 11569: -16,-34 - 11570: -17,-34 - 11571: -17,-34 - 11572: -18,-34 - 11573: -19,-34 - 11574: -20,-34 - 11616: -12,-34 - 11617: -31,-34 - 11618: -30,-34 - 11619: -27,-34 - 11620: -27,-34 - 11621: -28,-34 - 11622: -26,-34 - 11623: -25,-34 - 11624: -25,-34 - 11666: -12,-27 - 11667: -11,-27 - 11668: -10,-27 - 11669: -9,-27 - 11670: -9,-27 - 11671: -8,-27 - 11716: -7,-30 - 11717: -8,-30 - 11718: -9,-30 - 11719: -5,-30 - 11830: -7,-37 - 11833: -15,-37 - 11834: -14,-37 - 11835: -13,-37 - 11836: -13,-37 - 11856: -15,-45 - 11857: -14,-45 - 11858: -13,-45 - 11950: -29,-37 - 11951: -24,-37 - 11952: -24,-37 - 11956: -28,-28 - 11975: -30,-32 - 11976: -29,-32 - 11977: -29,-32 - 11978: -28,-32 - 12132: -24,-33 - 12133: -23,-33 - 12134: -22,-33 - 12241: -25,-42 - 12242: -24,-42 - 12243: -29,-42 - 12277: -16,-55 - 12278: -16,-50 - 12301: -19,-56 - 12302: -18,-56 - 12303: -17,-56 - 12304: -15,-56 - 12305: -14,-56 - 12332: -9,-49 - 12333: -8,-49 - 12334: -5,-46 - 12351: -6,-54 - 12361: -19,-45 - 12680: -8,-35 - 12681: -7,-35 - 20234: 36,39 + 5097: 22,32 + 5099: 24,32 + 5100: 26,32 + 5150: 39,30 + 5151: 40,30 + 5152: 41,30 + 5153: 42,30 + 5162: 38,30 + 5180: 35,33 + 11451: -23,-31 + 11452: -18,-36 + 11453: -17,-36 + 11454: -17,-36 + 11455: -16,-36 + 11456: -15,-36 + 11457: -14,-36 + 11458: -29,-36 + 11459: -27,-36 + 11460: -28,-36 + 11461: -26,-36 + 11462: -26,-36 + 11463: -24,-36 + 11464: -25,-36 + 11524: -14,-54 + 11525: -14,-44 + 11533: -14,-34 + 11534: -16,-34 + 11535: -17,-34 + 11536: -17,-34 + 11537: -18,-34 + 11538: -19,-34 + 11539: -20,-34 + 11581: -12,-34 + 11582: -31,-34 + 11583: -30,-34 + 11584: -27,-34 + 11585: -27,-34 + 11586: -28,-34 + 11587: -26,-34 + 11588: -25,-34 + 11589: -25,-34 + 11631: -12,-27 + 11632: -11,-27 + 11633: -10,-27 + 11634: -9,-27 + 11635: -9,-27 + 11636: -8,-27 + 11681: -7,-30 + 11682: -8,-30 + 11683: -9,-30 + 11684: -5,-30 + 11795: -7,-37 + 11798: -15,-37 + 11799: -14,-37 + 11800: -13,-37 + 11801: -13,-37 + 11821: -15,-45 + 11822: -14,-45 + 11823: -13,-45 + 11915: -29,-37 + 11916: -24,-37 + 11917: -24,-37 + 11921: -28,-28 + 11940: -30,-32 + 11941: -29,-32 + 11942: -29,-32 + 11943: -28,-32 + 12097: -24,-33 + 12098: -23,-33 + 12099: -22,-33 + 12206: -25,-42 + 12207: -24,-42 + 12208: -29,-42 + 12242: -16,-55 + 12243: -16,-50 + 12266: -19,-56 + 12267: -18,-56 + 12268: -17,-56 + 12269: -15,-56 + 12270: -14,-56 + 12297: -9,-49 + 12298: -8,-49 + 12299: -5,-46 + 12316: -6,-54 + 12326: -19,-45 + 12645: -8,-35 + 12646: -7,-35 + 20069: 36,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineN @@ -14438,318 +14440,318 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineN decals: - 10871: 27,-59 - 10886: 35,-60 - 10903: 39,-60 - 10904: 40,-60 - 10959: 38,-70 - 10960: 39,-70 - 10961: 41,-70 - 10967: 39,-72 - 11009: 28,-67 - 11010: 28,-67 - 11011: 29,-67 - 11012: 30,-67 + 10836: 27,-59 + 10851: 35,-60 + 10868: 39,-60 + 10869: 40,-60 + 10924: 38,-70 + 10925: 39,-70 + 10926: 41,-70 + 10932: 39,-72 + 10974: 28,-67 + 10975: 28,-67 + 10976: 29,-67 + 10977: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineN decals: - 19428: 69,16 - 19432: 62,-3 + 19263: 69,16 + 19267: 62,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineN decals: - 2733: -11,54 - 2739: -12,51 - 3832: 11,70 - 9484: -38,2 + 2706: -11,54 + 2712: -12,51 + 3805: 11,70 + 9449: -38,2 - node: color: '#DAA58BFF' id: BrickTileWhiteLineN decals: - 4392: 4,25 - 4393: 5,25 - 4394: 7,25 - 4395: 8,25 - 4396: 6,31 - 4423: 4,32 - 4429: 3,37 - 4430: 4,37 - 4431: 9,37 - 4441: 9,32 - 4448: 5,31 - 4449: 3,31 - 4466: 4,27 - 4467: 5,27 - 4468: 6,27 - 4469: 7,27 - 4470: 8,27 - 4476: 14,28 - 4492: 12,28 - 4493: 13,28 - 4505: 14,25 - 4506: 15,25 - 4507: 16,25 - 4509: 16,32 - 4515: 13,26 - 4516: 14,26 - 4517: 15,26 - 4518: 16,26 - 4535: 13,39 - 4536: 14,39 - 4537: 15,39 - 4538: 15,39 - 4539: 16,39 - 4540: 17,39 - 4541: 17,39 - 4542: 19,39 - 4543: 20,39 - 4544: 17,39 - 4545: 18,39 - 4564: 5,38 - 4571: 5,43 - 4572: 6,43 - 4579: 10,38 - 4589: 13,33 - 4599: 10,41 - 4619: 15,33 - 4639: 20,33 - 4640: 21,33 - 4648: 14,46 - 4665: 22,32 - 4666: 23,32 - 4667: 24,32 - 4668: 25,32 - 4669: 26,32 - 4702: 21,25 - 4706: 22,27 - 4707: 23,27 - 4708: 23,27 - 4709: 24,27 - 4723: 26,27 - 4724: 20,27 - 4735: 22,28 - 4736: 24,28 - 4742: 26,28 - 4743: 20,28 - 4757: 23,29 - 4780: 25,38 - 4781: 26,38 - 4782: 27,38 - 4786: 26,34 - 4787: 27,34 - 4806: 16,34 - 4807: 17,34 - 4808: 18,34 - 4831: 28,44 - 4833: 28,39 - 4847: 4,34 - 4848: 5,34 - 4849: 6,34 - 4850: 7,34 - 4851: 8,34 - 4852: 9,34 - 4857: 6,37 - 4858: 7,37 - 4859: 8,37 - 4867: 27,52 - 4868: 28,52 - 4869: 29,52 - 4870: 30,52 - 4871: 31,52 - 4872: 32,52 - 4873: 33,52 - 4874: 34,52 - 4875: 36,52 - 4876: 37,52 - 4877: 37,52 - 4878: 38,52 - 4935: 35,52 - 4936: 26,52 - 4950: 11,54 - 4951: 12,54 - 4974: 16,54 - 4981: 18,54 - 4982: 19,54 - 4983: 20,54 - 4984: 20,54 - 4985: 22,54 - 4986: 23,54 - 4987: 21,54 - 5036: 16,40 - 5037: 17,40 - 5038: 19,40 - 5039: 20,40 - 5040: 21,40 - 5041: 22,40 - 5042: 22,42 - 5043: 21,42 - 5044: 19,42 - 5045: 20,42 - 5046: 17,42 - 5047: 16,42 - 5048: 16,44 - 5049: 17,44 - 5050: 19,44 - 5051: 20,44 - 5052: 21,44 - 5053: 22,44 - 5054: 22,46 - 5055: 21,46 - 5056: 20,46 - 5057: 19,46 - 5058: 19,48 - 5059: 20,48 - 5060: 21,48 - 5061: 22,48 - 5062: 22,50 - 5063: 21,50 - 5064: 20,50 - 5073: 19,50 - 5193: 39,30 - 5194: 41,30 - 11407: -11,-83 - 20226: 35,39 + 4365: 4,25 + 4366: 5,25 + 4367: 7,25 + 4368: 8,25 + 4369: 6,31 + 4396: 4,32 + 4402: 3,37 + 4403: 4,37 + 4404: 9,37 + 4414: 9,32 + 4421: 5,31 + 4422: 3,31 + 4439: 4,27 + 4440: 5,27 + 4441: 6,27 + 4442: 7,27 + 4443: 8,27 + 4449: 14,28 + 4465: 12,28 + 4466: 13,28 + 4478: 14,25 + 4479: 15,25 + 4480: 16,25 + 4482: 16,32 + 4488: 13,26 + 4489: 14,26 + 4490: 15,26 + 4491: 16,26 + 4508: 13,39 + 4509: 14,39 + 4510: 15,39 + 4511: 15,39 + 4512: 16,39 + 4513: 17,39 + 4514: 17,39 + 4515: 19,39 + 4516: 20,39 + 4517: 17,39 + 4518: 18,39 + 4537: 5,38 + 4544: 5,43 + 4545: 6,43 + 4552: 10,38 + 4562: 13,33 + 4572: 10,41 + 4592: 15,33 + 4612: 20,33 + 4613: 21,33 + 4621: 14,46 + 4638: 22,32 + 4639: 23,32 + 4640: 24,32 + 4641: 25,32 + 4642: 26,32 + 4675: 21,25 + 4679: 22,27 + 4680: 23,27 + 4681: 23,27 + 4682: 24,27 + 4696: 26,27 + 4697: 20,27 + 4708: 22,28 + 4709: 24,28 + 4715: 26,28 + 4716: 20,28 + 4730: 23,29 + 4753: 25,38 + 4754: 26,38 + 4755: 27,38 + 4759: 26,34 + 4760: 27,34 + 4779: 16,34 + 4780: 17,34 + 4781: 18,34 + 4804: 28,44 + 4806: 28,39 + 4820: 4,34 + 4821: 5,34 + 4822: 6,34 + 4823: 7,34 + 4824: 8,34 + 4825: 9,34 + 4830: 6,37 + 4831: 7,37 + 4832: 8,37 + 4840: 27,52 + 4841: 28,52 + 4842: 29,52 + 4843: 30,52 + 4844: 31,52 + 4845: 32,52 + 4846: 33,52 + 4847: 34,52 + 4848: 36,52 + 4849: 37,52 + 4850: 37,52 + 4851: 38,52 + 4908: 35,52 + 4909: 26,52 + 4923: 11,54 + 4924: 12,54 + 4947: 16,54 + 4954: 18,54 + 4955: 19,54 + 4956: 20,54 + 4957: 20,54 + 4958: 22,54 + 4959: 23,54 + 4960: 21,54 + 5009: 16,40 + 5010: 17,40 + 5011: 19,40 + 5012: 20,40 + 5013: 21,40 + 5014: 22,40 + 5015: 22,42 + 5016: 21,42 + 5017: 19,42 + 5018: 20,42 + 5019: 17,42 + 5020: 16,42 + 5021: 16,44 + 5022: 17,44 + 5023: 19,44 + 5024: 20,44 + 5025: 21,44 + 5026: 22,44 + 5027: 22,46 + 5028: 21,46 + 5029: 20,46 + 5030: 19,46 + 5031: 19,48 + 5032: 20,48 + 5033: 21,48 + 5034: 22,48 + 5035: 22,50 + 5036: 21,50 + 5037: 20,50 + 5046: 19,50 + 5166: 39,30 + 5167: 41,30 + 11372: -11,-83 + 20061: 35,39 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 4034: -38,54 - 9617: 7,-30 - 9618: 6,-30 - 9619: 4,-30 - 9620: 3,-30 - 9648: 5,-35 - 9649: 6,-35 - 9667: 5,-37 + 4007: -38,54 + 9582: 7,-30 + 9583: 6,-30 + 9584: 4,-30 + 9585: 3,-30 + 9613: 5,-35 + 9614: 6,-35 + 9632: 5,-37 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 17040: -55,2 - 17041: -54,2 - 17042: -53,3 - 17043: -52,3 - 17044: -53,7 - 17045: -52,7 - 17056: -53,7 - 17057: -52,7 - 17058: -53,3 - 17059: -52,3 - 17062: -51,2 - 17063: -50,2 - 17074: -50,-1 - 17090: -58,-5 - 17096: -60,2 - 17097: -59,2 - 17098: -58,2 - 17099: -57,2 - 17100: -56,2 - 17116: -48,15 - 17117: -49,15 - 17118: -50,15 - 17119: -51,15 - 17134: -57,15 - 17135: -56,15 - 17153: -58,-11 - 17172: -60,-6 - 17173: -59,-6 - 17184: -60,-12 - 17185: -59,-12 - 17186: -57,-12 - 17187: -56,-12 - 17188: -55,-7 - 17212: -61,-17 - 17245: -56,-19 - 17246: -54,-19 - 17258: -49,-13 - 17259: -48,-13 - 17350: -58,16 - 17359: -62,15 - 17360: -63,15 - 17361: -64,15 - 17362: -65,15 - 17363: -66,15 - 17380: -77,16 - 17381: -76,16 - 17382: -75,16 - 17383: -74,16 - 17384: -73,16 - 17385: -71,16 - 17386: -70,16 - 17387: -69,16 - 17388: -72,16 - 17406: -77,12 - 17407: -72,13 - 17409: -77,12 - 17477: -60,19 - 17478: -59,19 - 17479: -58,19 - 17508: -48,-6 - 17509: -47,-6 - 17510: -46,-6 - 17541: -66,-6 - 17542: -65,-6 - 17543: -64,-6 - 17544: -72,-6 - 17545: -70,-6 - 17546: -68,-6 - 17547: -73,-6 - 17558: -71,-9 - 17559: -70,-9 - 17560: -69,-9 - 17573: -75,-6 - 17574: -76,-6 - 17584: -71,-9 - 17585: -70,-9 - 17586: -69,-9 - 17594: -11,-83 - 17599: 10,89 - 17600: 5,91 - 17602: 6,86 - 17615: 10,89 - 17616: 6,90 - 17648: 11,82 - 17665: 12,73 - 17707: -63,10 - 17708: -64,10 - 17774: -72,2 - 17775: -71,2 - 17776: -70,2 - 17777: -69,2 - 17778: -68,2 - 17779: -67,2 - 17780: -67,2 - 17800: -71,-5 - 17801: -69,-5 - 17832: -73,12 - 17833: -71,12 - 17843: -72,9 - 17845: -72,13 - 17849: -82,14 - 17850: -81,14 - 17851: -80,14 - 17865: -77,12 - 17896: -77,2 - 17913: -77,8 - 17914: -77,12 - 17915: -78,1 - 17930: -76,-3 - 17960: -72,-10 - 17961: -68,-10 - 17965: -71,-9 - 17966: -70,-9 - 17967: -69,-9 - 18337: -60,-1 - 18338: -59,-1 - 18339: -58,-1 - 18340: -57,-1 - 18341: -56,-1 - 18395: -55,15 - 18396: -54,15 - 18397: -53,15 - 18398: -52,15 + 16894: -55,2 + 16895: -54,2 + 16896: -53,3 + 16897: -52,3 + 16898: -53,7 + 16899: -52,7 + 16910: -53,7 + 16911: -52,7 + 16912: -53,3 + 16913: -52,3 + 16916: -51,2 + 16917: -50,2 + 16928: -50,-1 + 16944: -58,-5 + 16950: -60,2 + 16951: -59,2 + 16952: -58,2 + 16953: -57,2 + 16954: -56,2 + 16970: -48,15 + 16971: -49,15 + 16972: -50,15 + 16973: -51,15 + 16988: -57,15 + 16989: -56,15 + 17007: -58,-11 + 17026: -60,-6 + 17027: -59,-6 + 17038: -60,-12 + 17039: -59,-12 + 17040: -57,-12 + 17041: -56,-12 + 17042: -55,-7 + 17066: -61,-17 + 17099: -56,-19 + 17100: -54,-19 + 17112: -49,-13 + 17113: -48,-13 + 17204: -58,16 + 17213: -62,15 + 17214: -63,15 + 17215: -64,15 + 17216: -65,15 + 17217: -66,15 + 17234: -77,16 + 17235: -76,16 + 17236: -75,16 + 17237: -74,16 + 17238: -73,16 + 17239: -71,16 + 17240: -70,16 + 17241: -69,16 + 17242: -72,16 + 17260: -77,12 + 17261: -72,13 + 17263: -77,12 + 17331: -60,19 + 17332: -59,19 + 17333: -58,19 + 17362: -48,-6 + 17363: -47,-6 + 17364: -46,-6 + 17395: -66,-6 + 17396: -65,-6 + 17397: -64,-6 + 17398: -72,-6 + 17399: -70,-6 + 17400: -68,-6 + 17401: -73,-6 + 17412: -71,-9 + 17413: -70,-9 + 17414: -69,-9 + 17427: -75,-6 + 17428: -76,-6 + 17438: -71,-9 + 17439: -70,-9 + 17440: -69,-9 + 17448: -11,-83 + 17453: 10,89 + 17454: 5,91 + 17456: 6,86 + 17469: 10,89 + 17470: 6,90 + 17502: 11,82 + 17519: 12,73 + 17561: -63,10 + 17562: -64,10 + 17628: -72,2 + 17629: -71,2 + 17630: -70,2 + 17631: -69,2 + 17632: -68,2 + 17633: -67,2 + 17634: -67,2 + 17654: -71,-5 + 17655: -69,-5 + 17686: -73,12 + 17687: -71,12 + 17697: -72,9 + 17699: -72,13 + 17703: -82,14 + 17704: -81,14 + 17705: -80,14 + 17719: -77,12 + 17750: -77,2 + 17767: -77,8 + 17768: -77,12 + 17769: -78,1 + 17784: -76,-3 + 17814: -72,-10 + 17815: -68,-10 + 17819: -71,-9 + 17820: -70,-9 + 17821: -69,-9 + 18191: -60,-1 + 18192: -59,-1 + 18193: -58,-1 + 18194: -57,-1 + 18195: -56,-1 + 18249: -55,15 + 18250: -54,15 + 18251: -53,15 + 18252: -52,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -14759,604 +14761,604 @@ entities: 870: 71,-42 1174: 45,-14 1175: 48,-14 - 2099: -19,49 - 2100: -19,45 - 2109: -21,46 - 2110: -17,46 - 2167: -19,33 - 2168: -19,26 - 2172: -19,30 - 2240: -21,28 - 2293: -23,40 - 2418: -31,29 - 2725: -12,51 - 2732: -10,54 - 2734: -12,54 - 2797: -11,48 - 2798: -10,48 - 2799: -6,48 - 2800: -5,48 - 2843: -6,34 - 3043: -13,56 - 3044: -12,56 - 3045: -11,56 - 3059: -19,60 - 3092: -16,58 - 3093: -15,58 - 3094: -14,58 - 3095: -13,58 - 3107: -20,67 - 3108: -19,67 - 3109: -18,67 - 3110: -12,67 - 3111: -13,67 - 3112: -11,67 - 3125: -5,60 - 3131: -6,67 - 3132: -5,67 - 3133: -4,67 - 3144: -6,56 - 3145: -5,56 - 3146: -4,56 - 3147: -20,56 - 3148: -19,56 - 3149: -18,56 - 3257: -12,71 - 3263: -12,78 - 3282: -12,91 - 3283: -12,84 - 3330: -30,71 - 3331: -30,78 - 3332: -30,84 - 3333: -30,91 - 3337: -31,67 - 3338: -30,67 - 3339: -29,67 - 3546: 0,67 - 3547: 1,67 - 3548: 1,67 - 3549: 2,67 - 3550: 5,67 - 3551: 6,67 - 3552: 7,67 - 3641: 6,71 - 3709: 6,78 - 3807: 0,56 - 3808: 1,56 - 3809: 2,56 - 3869: 17,71 - 3870: 18,71 - 3871: 19,71 - 3872: 20,71 - 3873: 21,71 - 3875: 22,71 - 3892: 18,68 - 3893: 19,68 - 3894: 21,68 - 3895: 22,68 - 4184: -24,23 - 5229: 17,15 - 5230: 17,8 - 5250: -19,1 - 5251: 17,-6 - 5252: 17,1 - 5261: -26,67 - 5262: -25,67 - 5263: -24,67 - 5518: -38,4 - 5519: -38,4 - 5520: -37,4 - 5521: -36,4 - 5522: -33,4 - 5523: -32,4 - 5524: -31,4 - 5525: -27,4 - 5526: -26,4 - 5527: -25,4 - 5528: -23,4 - 5529: -24,4 - 5530: -24,4 - 5609: -32,28 - 6274: -19,-18 - 6354: 17,-18 - 6377: -2,-14 - 6378: -1,-14 - 6379: 0,-14 - 6380: 1,-14 - 6447: 3,-21 - 6448: 4,-21 - 6449: 5,-21 - 6450: 6,-21 - 6451: 10,-21 - 6452: 12,-21 - 6453: 11,-21 - 6454: 13,-21 - 6455: -5,-21 - 6456: -6,-21 - 6457: -6,-21 - 6458: -7,-21 - 6459: -7,-21 - 6460: -8,-21 - 6461: -8,-21 - 6462: -12,-21 - 6463: -12,-21 - 6464: -13,-21 - 6465: -14,-21 - 6466: -14,-21 - 6467: -15,-21 - 6468: -15,-21 - 6700: -33,-10 - 6701: -32,-10 - 6710: -31,-2 - 6711: -30,-2 - 6712: -29,-2 - 6713: -28,-2 - 6714: -27,-2 - 6715: -26,-2 - 6716: -26,-2 - 6717: -23,-2 - 6718: -22,-2 - 6719: -22,-2 - 6720: -25,-2 - 6747: -31,-11 - 6748: -30,-11 - 6749: -29,-11 - 6750: -34,-11 - 6778: -28,-17 - 6779: -34,-16 - 6780: -33,-16 - 6781: -32,-16 - 6782: -31,-16 - 7001: -25,-15 - 7002: -24,-15 - 7007: -25,-15 - 7008: -24,-15 - 7014: -24,-19 - 7168: 21,4 - 7169: 22,4 - 7170: 23,4 - 7171: 24,4 - 7235: 28,4 - 7236: 29,4 - 7237: 30,4 - 7238: 31,4 - 8111: 58,-17 - 8112: 59,-17 - 8113: 60,-17 - 8114: 58,-30 - 8115: 59,-30 - 8116: 60,-30 - 8254: 39,-7 - 8255: 40,-7 - 8285: 22,-12 - 8286: 23,-12 - 8287: 23,-12 - 8288: 24,-12 - 8289: 24,-12 - 8290: 21,-12 - 8291: 28,-12 - 8292: 28,-12 - 8293: 29,-12 - 8294: 29,-12 - 8295: 30,-12 - 8296: 30,-12 - 8315: 35,-16 - 8316: 36,-16 - 8317: 36,-16 - 8318: 37,-16 - 8319: 37,-16 - 8320: 39,-16 - 8321: 39,-16 - 8322: 38,-16 - 8323: 38,-16 - 8402: 46,-18 - 8403: 47,-18 - 8407: 48,-14 - 8408: 48,-14 - 8409: 47,-14 - 8481: 44,-21 - 8482: 44,-21 - 8483: 44,-21 - 8484: 45,-21 - 8485: 46,-21 - 8486: 46,-21 - 8487: 47,-21 - 8488: 49,-21 - 8489: 50,-21 - 8490: 51,-21 - 8491: 51,-21 - 8492: 51,-21 - 8493: 52,-21 - 8494: 52,-21 - 8716: -2,-77 - 8717: -1,-77 - 8718: -7,-77 - 8719: -8,-77 - 8720: -8,-81 - 8721: -7,-81 - 8722: -6,-81 - 8723: -3,-81 - 8724: -2,-81 - 8725: -1,-81 - 8807: 6,-27 - 8808: 6,-27 - 8809: 7,-27 - 8810: 9,-27 - 8811: 9,-27 - 8812: 10,-27 - 8813: 10,-27 - 8814: 8,-27 - 8815: -12,-27 - 8816: -11,-27 - 8817: -10,-27 - 8818: -9,-27 - 8819: -8,-27 - 8890: -1,-28 - 8930: -1,-36 - 9468: -1,-43 - 9469: -1,-51 - 9470: -1,-56 - 9471: -1,-62 - 9499: -5,-69 - 9500: -4,-69 - 9506: -5,-74 - 9507: -4,-74 - 9514: -6,-69 - 9515: -3,-69 - 9533: 69,-41 - 9600: 5,-29 - 9601: 11,-29 - 9602: 13,-29 - 10721: 73,-48 - 10722: 73,-48 - 11033: 40,-66 - 11448: -6,-29 - 11449: -13,-29 - 11450: -15,-29 - 11453: -15,-29 - 11454: -13,-29 - 13526: -41,-64 - 15031: 11,22 - 15032: 12,22 - 15033: 13,22 - 15034: 14,22 - 15035: 4,22 - 15036: 3,22 - 15037: 2,22 - 15038: 1,22 - 15039: -3,22 - 15040: -4,22 - 15041: -5,22 - 15042: -6,22 - 15043: -13,22 - 15044: -14,22 - 15045: -15,22 - 15046: -15,22 - 15047: -16,22 - 15492: -42,19 - 15493: -42,13 - 15494: -42,8 - 15751: 95,-2 - 15833: 92,-3 - 15834: 93,-3 - 15835: 94,-3 - 15849: 96,7 - 15855: 96,5 - 18929: -3,-10 - 18930: -2,-10 - 18931: -2,-10 - 18932: 0,-10 - 18933: 0,-10 - 18934: -1,-10 - 18935: 1,-10 - 18936: 4,-10 - 18937: 5,-10 - 18938: 6,-10 - 18939: 7,-10 - 18940: 10,-10 - 18941: 11,-10 - 18942: 12,-10 - 18943: 13,-10 - 18944: -9,-10 - 18945: -8,-10 - 18946: -7,-10 - 18947: -7,-10 - 18948: -6,-10 - 18949: -12,-10 - 18950: -13,-10 - 18951: -14,-10 - 18952: -15,-10 - 19887: 35,-15 - 19888: 36,-15 - 19889: 37,-15 - 19890: 38,-15 - 19891: 39,-15 - 19892: 35,-12 - 19893: 36,-12 - 19894: 37,-12 - 19895: 38,-12 - 19896: 39,-12 - 20406: -19,-6 - 20407: -19,1 - 20408: -19,8 - 20409: -19,15 + 2072: -19,49 + 2073: -19,45 + 2082: -21,46 + 2083: -17,46 + 2140: -19,33 + 2141: -19,26 + 2145: -19,30 + 2213: -21,28 + 2266: -23,40 + 2391: -31,29 + 2698: -12,51 + 2705: -10,54 + 2707: -12,54 + 2770: -11,48 + 2771: -10,48 + 2772: -6,48 + 2773: -5,48 + 2816: -6,34 + 3016: -13,56 + 3017: -12,56 + 3018: -11,56 + 3032: -19,60 + 3065: -16,58 + 3066: -15,58 + 3067: -14,58 + 3068: -13,58 + 3080: -20,67 + 3081: -19,67 + 3082: -18,67 + 3083: -12,67 + 3084: -13,67 + 3085: -11,67 + 3098: -5,60 + 3104: -6,67 + 3105: -5,67 + 3106: -4,67 + 3117: -6,56 + 3118: -5,56 + 3119: -4,56 + 3120: -20,56 + 3121: -19,56 + 3122: -18,56 + 3230: -12,71 + 3236: -12,78 + 3255: -12,91 + 3256: -12,84 + 3303: -30,71 + 3304: -30,78 + 3305: -30,84 + 3306: -30,91 + 3310: -31,67 + 3311: -30,67 + 3312: -29,67 + 3519: 0,67 + 3520: 1,67 + 3521: 1,67 + 3522: 2,67 + 3523: 5,67 + 3524: 6,67 + 3525: 7,67 + 3614: 6,71 + 3682: 6,78 + 3780: 0,56 + 3781: 1,56 + 3782: 2,56 + 3842: 17,71 + 3843: 18,71 + 3844: 19,71 + 3845: 20,71 + 3846: 21,71 + 3848: 22,71 + 3865: 18,68 + 3866: 19,68 + 3867: 21,68 + 3868: 22,68 + 4157: -24,23 + 5202: 17,15 + 5203: 17,8 + 5223: -19,1 + 5224: 17,-6 + 5225: 17,1 + 5234: -26,67 + 5235: -25,67 + 5236: -24,67 + 5491: -38,4 + 5492: -38,4 + 5493: -37,4 + 5494: -36,4 + 5495: -33,4 + 5496: -32,4 + 5497: -31,4 + 5498: -27,4 + 5499: -26,4 + 5500: -25,4 + 5501: -23,4 + 5502: -24,4 + 5503: -24,4 + 5582: -32,28 + 6247: -19,-18 + 6327: 17,-18 + 6350: -2,-14 + 6351: -1,-14 + 6352: 0,-14 + 6353: 1,-14 + 6420: 3,-21 + 6421: 4,-21 + 6422: 5,-21 + 6423: 6,-21 + 6424: 10,-21 + 6425: 12,-21 + 6426: 11,-21 + 6427: 13,-21 + 6428: -5,-21 + 6429: -6,-21 + 6430: -6,-21 + 6431: -7,-21 + 6432: -7,-21 + 6433: -8,-21 + 6434: -8,-21 + 6435: -12,-21 + 6436: -12,-21 + 6437: -13,-21 + 6438: -14,-21 + 6439: -14,-21 + 6440: -15,-21 + 6441: -15,-21 + 6673: -33,-10 + 6674: -32,-10 + 6683: -31,-2 + 6684: -30,-2 + 6685: -29,-2 + 6686: -28,-2 + 6687: -27,-2 + 6688: -26,-2 + 6689: -26,-2 + 6690: -23,-2 + 6691: -22,-2 + 6692: -22,-2 + 6693: -25,-2 + 6720: -31,-11 + 6721: -30,-11 + 6722: -29,-11 + 6723: -34,-11 + 6751: -28,-17 + 6752: -34,-16 + 6753: -33,-16 + 6754: -32,-16 + 6755: -31,-16 + 6974: -25,-15 + 6975: -24,-15 + 6980: -25,-15 + 6981: -24,-15 + 6987: -24,-19 + 7141: 21,4 + 7142: 22,4 + 7143: 23,4 + 7144: 24,4 + 7208: 28,4 + 7209: 29,4 + 7210: 30,4 + 7211: 31,4 + 8076: 58,-17 + 8077: 59,-17 + 8078: 60,-17 + 8079: 58,-30 + 8080: 59,-30 + 8081: 60,-30 + 8219: 39,-7 + 8220: 40,-7 + 8250: 22,-12 + 8251: 23,-12 + 8252: 23,-12 + 8253: 24,-12 + 8254: 24,-12 + 8255: 21,-12 + 8256: 28,-12 + 8257: 28,-12 + 8258: 29,-12 + 8259: 29,-12 + 8260: 30,-12 + 8261: 30,-12 + 8280: 35,-16 + 8281: 36,-16 + 8282: 36,-16 + 8283: 37,-16 + 8284: 37,-16 + 8285: 39,-16 + 8286: 39,-16 + 8287: 38,-16 + 8288: 38,-16 + 8367: 46,-18 + 8368: 47,-18 + 8372: 48,-14 + 8373: 48,-14 + 8374: 47,-14 + 8446: 44,-21 + 8447: 44,-21 + 8448: 44,-21 + 8449: 45,-21 + 8450: 46,-21 + 8451: 46,-21 + 8452: 47,-21 + 8453: 49,-21 + 8454: 50,-21 + 8455: 51,-21 + 8456: 51,-21 + 8457: 51,-21 + 8458: 52,-21 + 8459: 52,-21 + 8681: -2,-77 + 8682: -1,-77 + 8683: -7,-77 + 8684: -8,-77 + 8685: -8,-81 + 8686: -7,-81 + 8687: -6,-81 + 8688: -3,-81 + 8689: -2,-81 + 8690: -1,-81 + 8772: 6,-27 + 8773: 6,-27 + 8774: 7,-27 + 8775: 9,-27 + 8776: 9,-27 + 8777: 10,-27 + 8778: 10,-27 + 8779: 8,-27 + 8780: -12,-27 + 8781: -11,-27 + 8782: -10,-27 + 8783: -9,-27 + 8784: -8,-27 + 8855: -1,-28 + 8895: -1,-36 + 9433: -1,-43 + 9434: -1,-51 + 9435: -1,-56 + 9436: -1,-62 + 9464: -5,-69 + 9465: -4,-69 + 9471: -5,-74 + 9472: -4,-74 + 9479: -6,-69 + 9480: -3,-69 + 9498: 69,-41 + 9565: 5,-29 + 9566: 11,-29 + 9567: 13,-29 + 10686: 73,-48 + 10687: 73,-48 + 10998: 40,-66 + 11413: -6,-29 + 11414: -13,-29 + 11415: -15,-29 + 11418: -15,-29 + 11419: -13,-29 + 13491: -41,-64 + 14996: 11,22 + 14997: 12,22 + 14998: 13,22 + 14999: 14,22 + 15000: 4,22 + 15001: 3,22 + 15002: 2,22 + 15003: 1,22 + 15004: -3,22 + 15005: -4,22 + 15006: -5,22 + 15007: -6,22 + 15008: -13,22 + 15009: -14,22 + 15010: -15,22 + 15011: -15,22 + 15012: -16,22 + 15457: -42,19 + 15458: -42,13 + 15459: -42,8 + 15605: 95,-2 + 15687: 92,-3 + 15688: 93,-3 + 15689: 94,-3 + 15703: 96,7 + 15709: 96,5 + 18764: -3,-10 + 18765: -2,-10 + 18766: -2,-10 + 18767: 0,-10 + 18768: 0,-10 + 18769: -1,-10 + 18770: 1,-10 + 18771: 4,-10 + 18772: 5,-10 + 18773: 6,-10 + 18774: 7,-10 + 18775: 10,-10 + 18776: 11,-10 + 18777: 12,-10 + 18778: 13,-10 + 18779: -9,-10 + 18780: -8,-10 + 18781: -7,-10 + 18782: -7,-10 + 18783: -6,-10 + 18784: -12,-10 + 18785: -13,-10 + 18786: -14,-10 + 18787: -15,-10 + 19722: 35,-15 + 19723: 36,-15 + 19724: 37,-15 + 19725: 38,-15 + 19726: 39,-15 + 19727: 35,-12 + 19728: 36,-12 + 19729: 37,-12 + 19730: 38,-12 + 19731: 39,-12 + 20241: -19,-6 + 20242: -19,1 + 20243: -19,8 + 20244: -19,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4109: -19,15 - 4118: -19,8 + 4082: -19,15 + 4091: -19,8 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 21496: -12,13 - 21497: -11,13 + 21331: -12,13 + 21332: -11,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS decals: - 18040: -50,21 - 18047: -48,18 - 18048: -47,18 - 18049: -46,18 - 18073: -55,39 - 18093: -50,36 - 18094: -49,36 - 18095: -48,36 - 18103: -44,51 - 18104: -44,51 - 18117: -46,56 - 18118: -46,58 - 18141: -48,43 - 18154: -47,44 - 18155: -46,44 - 18159: -45,44 - 18204: -59,55 - 18213: -59,44 - 18214: -58,44 - 18215: -57,44 - 18216: -55,44 - 18217: -52,44 - 18218: -51,44 - 18219: -50,44 - 18220: -49,44 - 18225: -53,44 - 18284: -55,23 - 18291: -52,21 + 17894: -50,21 + 17901: -48,18 + 17902: -47,18 + 17903: -46,18 + 17927: -55,39 + 17947: -50,36 + 17948: -49,36 + 17949: -48,36 + 17957: -44,51 + 17958: -44,51 + 17971: -46,56 + 17972: -46,58 + 17995: -48,43 + 18008: -47,44 + 18009: -46,44 + 18013: -45,44 + 18058: -59,55 + 18067: -59,44 + 18068: -58,44 + 18069: -57,44 + 18070: -55,44 + 18071: -52,44 + 18072: -51,44 + 18073: -50,44 + 18074: -49,44 + 18079: -53,44 + 18138: -55,23 + 18145: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineS decals: - 9541: 6,-24 - 9542: 7,-24 - 9543: 8,-24 - 9544: 9,-24 - 9545: 9,-24 - 9546: 10,-24 - 9681: 20,-36 - 9682: 21,-36 - 9683: 22,-36 - 9684: 23,-36 - 9685: 24,-36 - 9686: 25,-36 - 9687: 29,-36 - 9688: 30,-36 - 9689: 31,-36 - 9690: 33,-36 - 9691: 32,-36 - 9692: 34,-36 - 9693: 35,-36 - 9694: 36,-36 - 9695: 37,-36 - 9755: 12,-33 - 9761: 10,-36 - 9762: 11,-36 - 9763: 12,-36 - 9764: 13,-36 - 9797: 29,-33 - 9798: 36,-33 - 9799: 21,-33 - 9800: 16,-37 - 9801: 17,-37 - 9802: 18,-37 - 9803: 26,-37 - 9804: 27,-37 - 9805: 28,-37 - 9865: 22,-34 - 9866: 23,-34 - 9867: 24,-34 - 9868: 26,-34 - 9869: 27,-34 - 9870: 25,-34 - 9871: 31,-34 - 9872: 33,-34 - 9873: 34,-34 - 9874: 36,-34 - 9875: 34,-34 - 9876: 35,-34 - 9877: 32,-34 - 9878: 27,-39 - 9879: 17,-39 - 9880: 17,-30 - 9881: 11,-34 - 9882: 12,-34 - 9883: 12,-34 - 9884: 13,-34 - 9931: 27,-46 - 9981: 21,-41 - 9982: 22,-41 - 9983: 23,-41 - 10018: 37,-45 - 10019: 31,-42 - 10020: 32,-42 - 10021: 33,-42 - 10022: 33,-42 - 10023: 34,-42 - 10024: 35,-42 - 10025: 36,-42 - 10039: 37,-43 - 10046: 32,-39 - 10047: 33,-39 - 10048: 34,-39 - 10049: 35,-39 - 10050: 36,-39 - 10079: 25,-30 - 10082: 31,-30 - 10092: 29,-28 - 10122: 30,-27 - 10123: 30,-27 - 10124: 31,-27 - 10152: 10,-41 - 10153: 11,-41 - 10154: 12,-41 - 10155: 13,-41 - 10175: 21,-49 - 10176: 23,-49 - 10375: 5,-47 - 10376: 6,-47 - 10377: 7,-47 - 10378: 8,-47 - 10379: 9,-47 - 10386: 2,-44 - 10389: 4,-42 - 10390: 9,-42 - 10421: 13,-45 - 12419: -7,-62 - 19558: 6,66 - 19564: 6,62 - 19592: -6,-62 - 19931: 22,-29 - 19932: 21,-29 - 19953: 27,-32 - 19954: 28,-32 - 19956: 29,-28 + 9506: 6,-24 + 9507: 7,-24 + 9508: 8,-24 + 9509: 9,-24 + 9510: 9,-24 + 9511: 10,-24 + 9646: 20,-36 + 9647: 21,-36 + 9648: 22,-36 + 9649: 23,-36 + 9650: 24,-36 + 9651: 25,-36 + 9652: 29,-36 + 9653: 30,-36 + 9654: 31,-36 + 9655: 33,-36 + 9656: 32,-36 + 9657: 34,-36 + 9658: 35,-36 + 9659: 36,-36 + 9660: 37,-36 + 9720: 12,-33 + 9726: 10,-36 + 9727: 11,-36 + 9728: 12,-36 + 9729: 13,-36 + 9762: 29,-33 + 9763: 36,-33 + 9764: 21,-33 + 9765: 16,-37 + 9766: 17,-37 + 9767: 18,-37 + 9768: 26,-37 + 9769: 27,-37 + 9770: 28,-37 + 9830: 22,-34 + 9831: 23,-34 + 9832: 24,-34 + 9833: 26,-34 + 9834: 27,-34 + 9835: 25,-34 + 9836: 31,-34 + 9837: 33,-34 + 9838: 34,-34 + 9839: 36,-34 + 9840: 34,-34 + 9841: 35,-34 + 9842: 32,-34 + 9843: 27,-39 + 9844: 17,-39 + 9845: 17,-30 + 9846: 11,-34 + 9847: 12,-34 + 9848: 12,-34 + 9849: 13,-34 + 9896: 27,-46 + 9946: 21,-41 + 9947: 22,-41 + 9948: 23,-41 + 9983: 37,-45 + 9984: 31,-42 + 9985: 32,-42 + 9986: 33,-42 + 9987: 33,-42 + 9988: 34,-42 + 9989: 35,-42 + 9990: 36,-42 + 10004: 37,-43 + 10011: 32,-39 + 10012: 33,-39 + 10013: 34,-39 + 10014: 35,-39 + 10015: 36,-39 + 10044: 25,-30 + 10047: 31,-30 + 10057: 29,-28 + 10087: 30,-27 + 10088: 30,-27 + 10089: 31,-27 + 10117: 10,-41 + 10118: 11,-41 + 10119: 12,-41 + 10120: 13,-41 + 10140: 21,-49 + 10141: 23,-49 + 10340: 5,-47 + 10341: 6,-47 + 10342: 7,-47 + 10343: 8,-47 + 10344: 9,-47 + 10351: 2,-44 + 10354: 4,-42 + 10355: 9,-42 + 10386: 13,-45 + 12384: -7,-62 + 19393: 6,66 + 19399: 6,62 + 19427: -6,-62 + 19766: 22,-29 + 19767: 21,-29 + 19788: 27,-32 + 19789: 28,-32 + 19791: 29,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineS decals: - 2900: -25,47 - 2905: -26,47 - 2906: -30,46 - 2907: -29,46 - 2908: -28,46 - 2919: -33,46 - 2949: -32,54 - 2950: -30,54 - 2951: -28,51 - 18555: -26,52 + 2873: -25,47 + 2878: -26,47 + 2879: -30,46 + 2880: -29,46 + 2881: -28,46 + 2892: -33,46 + 2922: -32,54 + 2923: -30,54 + 2924: -28,51 + 18390: -26,52 - node: color: '#B18BDAFF' id: BrickTileWhiteLineS decals: - 5116: 20,26 - 5117: 23,27 - 5118: 25,26 - 5122: 20,33 - 5185: 39,28 - 5186: 40,28 - 5187: 41,28 - 5188: 42,28 - 11500: -23,-25 - 11501: -29,-34 - 11502: -28,-34 - 11503: -27,-34 - 11504: -26,-34 - 11505: -25,-34 - 11506: -24,-34 - 11507: -18,-34 - 11508: -17,-34 - 11509: -16,-34 - 11510: -15,-34 - 11511: -14,-34 - 11539: -14,-38 - 11540: -14,-38 - 11557: -14,-46 - 11558: -14,-46 - 11561: -15,-33 - 11562: -13,-33 - 11563: -13,-33 - 11604: -20,-36 - 11605: -20,-36 - 11606: -19,-36 - 11607: -19,-36 - 11608: -18,-36 - 11609: -18,-36 - 11610: -17,-36 - 11611: -17,-36 - 11612: -16,-36 - 11613: -16,-36 - 11625: -31,-36 - 11626: -30,-36 - 11627: -28,-36 - 11628: -28,-36 - 11629: -27,-36 - 11630: -26,-36 - 11631: -26,-36 - 11632: -25,-36 - 11633: -25,-36 - 11634: -23,-36 - 11635: -22,-36 - 11636: -22,-36 - 11645: -24,-33 - 11646: -23,-33 - 11647: -22,-33 - 11648: -22,-33 - 11672: -12,-24 - 11673: -11,-24 - 11674: -11,-24 - 11675: -9,-24 - 11676: -9,-24 - 11677: -8,-24 - 11678: -10,-24 - 11692: -15,-33 - 11693: -13,-33 - 11703: -9,-36 - 11704: -9,-36 - 11705: -8,-36 - 11706: -6,-36 - 11709: -6,-29 - 11839: -15,-37 - 11840: -14,-37 - 11841: -14,-37 - 11842: -13,-37 - 11955: -29,-33 - 11967: -30,-26 - 11968: -29,-26 - 11969: -28,-26 - 11970: -28,-30 - 11971: -28,-30 - 12137: -23,-23 - 12236: -25,-38 - 12237: -24,-38 - 12251: -29,-38 - 12268: -15,-54 - 12269: -14,-54 - 12273: -15,-45 - 12274: -14,-45 - 12275: -13,-45 - 12290: -18,-60 - 12291: -17,-60 - 12292: -16,-60 - 12293: -15,-60 - 12294: -14,-60 - 12311: -16,-55 - 12322: -10,-53 - 12323: -9,-53 - 12324: -8,-53 - 12325: -7,-53 - 12326: -5,-53 - 12337: -10,-48 - 12349: -6,-45 - 12362: -20,-44 - 12363: -18,-44 - 12369: -20,-39 - 12370: -19,-39 - 12371: -18,-39 - 12675: -8,-31 - 12676: -7,-31 - 20231: 34,40 + 5089: 20,26 + 5090: 23,27 + 5091: 25,26 + 5095: 20,33 + 5158: 39,28 + 5159: 40,28 + 5160: 41,28 + 5161: 42,28 + 11465: -23,-25 + 11466: -29,-34 + 11467: -28,-34 + 11468: -27,-34 + 11469: -26,-34 + 11470: -25,-34 + 11471: -24,-34 + 11472: -18,-34 + 11473: -17,-34 + 11474: -16,-34 + 11475: -15,-34 + 11476: -14,-34 + 11504: -14,-38 + 11505: -14,-38 + 11522: -14,-46 + 11523: -14,-46 + 11526: -15,-33 + 11527: -13,-33 + 11528: -13,-33 + 11569: -20,-36 + 11570: -20,-36 + 11571: -19,-36 + 11572: -19,-36 + 11573: -18,-36 + 11574: -18,-36 + 11575: -17,-36 + 11576: -17,-36 + 11577: -16,-36 + 11578: -16,-36 + 11590: -31,-36 + 11591: -30,-36 + 11592: -28,-36 + 11593: -28,-36 + 11594: -27,-36 + 11595: -26,-36 + 11596: -26,-36 + 11597: -25,-36 + 11598: -25,-36 + 11599: -23,-36 + 11600: -22,-36 + 11601: -22,-36 + 11610: -24,-33 + 11611: -23,-33 + 11612: -22,-33 + 11613: -22,-33 + 11637: -12,-24 + 11638: -11,-24 + 11639: -11,-24 + 11640: -9,-24 + 11641: -9,-24 + 11642: -8,-24 + 11643: -10,-24 + 11657: -15,-33 + 11658: -13,-33 + 11668: -9,-36 + 11669: -9,-36 + 11670: -8,-36 + 11671: -6,-36 + 11674: -6,-29 + 11804: -15,-37 + 11805: -14,-37 + 11806: -14,-37 + 11807: -13,-37 + 11920: -29,-33 + 11932: -30,-26 + 11933: -29,-26 + 11934: -28,-26 + 11935: -28,-30 + 11936: -28,-30 + 12102: -23,-23 + 12201: -25,-38 + 12202: -24,-38 + 12216: -29,-38 + 12233: -15,-54 + 12234: -14,-54 + 12238: -15,-45 + 12239: -14,-45 + 12240: -13,-45 + 12255: -18,-60 + 12256: -17,-60 + 12257: -16,-60 + 12258: -15,-60 + 12259: -14,-60 + 12276: -16,-55 + 12287: -10,-53 + 12288: -9,-53 + 12289: -8,-53 + 12290: -7,-53 + 12291: -5,-53 + 12302: -10,-48 + 12314: -6,-45 + 12327: -20,-44 + 12328: -18,-44 + 12334: -20,-39 + 12335: -19,-39 + 12336: -18,-39 + 12640: -8,-31 + 12641: -7,-31 + 20066: 34,40 - node: color: '#B240B4FF' id: BrickTileWhiteLineS @@ -15368,297 +15370,297 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineS decals: - 10868: 27,-54 - 10894: 35,-72 - 10932: 44,-63 - 10937: 40,-63 - 10964: 38,-71 - 10968: 39,-72 - 11016: 28,-69 - 11017: 30,-69 - 11019: 29,-67 + 10833: 27,-54 + 10859: 35,-72 + 10897: 44,-63 + 10902: 40,-63 + 10929: 38,-71 + 10933: 39,-72 + 10981: 28,-69 + 10982: 30,-69 + 10984: 29,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineS decals: - 7663: 61,-2 - 7664: 65,-2 - 19421: 69,12 - 19439: 61,-6 - 19440: 62,-6 + 7636: 61,-2 + 7637: 65,-2 + 19256: 69,12 + 19274: 61,-6 + 19275: 62,-6 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineS decals: - 2727: -11,52 - 3839: 11,66 + 2700: -11,52 + 3812: 11,66 - node: color: '#DAA58BFF' id: BrickTileWhiteLineS decals: - 4404: 3,26 - 4405: 9,26 - 4422: 4,32 - 4435: 3,33 - 4440: 9,32 - 4452: 6,26 - 4459: 4,30 - 4460: 6,30 - 4461: 5,30 - 4462: 7,30 - 4463: 8,30 - 4508: 13,26 - 4512: 15,33 - 4513: 16,32 - 4527: 13,28 - 4528: 14,28 - 4555: 5,38 - 4556: 10,38 - 4561: 6,39 - 4588: 10,41 - 4610: 16,34 - 4611: 17,34 - 4612: 18,34 - 4613: 19,34 - 4614: 14,34 - 4659: 20,33 - 4660: 21,33 - 4676: 20,26 - 4679: 23,27 - 4684: 25,26 - 4685: 26,26 - 4721: 20,31 - 4722: 26,31 - 4731: 22,31 - 4732: 23,31 - 4737: 22,30 - 4740: 20,30 - 4741: 26,30 - 4756: 23,29 - 4771: 25,34 - 4772: 26,34 - 4773: 27,34 - 4774: 28,34 - 4791: 26,38 - 4792: 27,38 - 4801: 16,38 - 4802: 17,38 - 4803: 18,38 - 4834: 28,39 - 4835: 5,33 - 4836: 6,33 - 4837: 7,33 - 4838: 8,33 - 4839: 5,36 - 4840: 6,36 - 4841: 7,36 - 4842: 8,36 - 4843: 4,36 - 4844: 9,36 - 4862: 5,38 - 4863: 22,40 - 4864: 23,40 - 4879: 26,48 - 4880: 28,48 - 4881: 27,48 - 4882: 28,48 - 4883: 29,48 - 4884: 30,48 - 4885: 31,48 - 4886: 32,48 - 4887: 33,48 - 4888: 34,48 - 4889: 35,48 - 4890: 36,48 - 4891: 37,48 - 4892: 39,48 - 4893: 38,48 - 4911: 34,48 - 4912: 35,48 - 4913: 36,48 - 4914: 37,48 - 4915: 38,48 - 4916: 33,48 - 4917: 32,48 - 4918: 31,48 - 4919: 30,48 - 4920: 29,48 - 4921: 28,48 - 4922: 27,48 - 4923: 27,48 - 4924: 26,48 - 4945: 10,55 - 4958: 10,48 - 4959: 11,48 - 4960: 11,48 - 4961: 12,48 - 4972: 17,55 - 4990: 19,52 - 4991: 20,52 - 4992: 21,52 - 4993: 22,52 - 4994: 20,50 - 4995: 21,50 - 4996: 22,50 - 4997: 19,48 - 4998: 20,48 - 4999: 21,48 - 5000: 22,48 - 5001: 19,46 - 5002: 20,46 - 5003: 21,46 - 5004: 22,46 - 5005: 16,46 - 5006: 17,46 - 5007: 16,44 - 5008: 17,44 - 5009: 16,42 - 5010: 17,42 - 5011: 19,42 - 5012: 20,42 - 5013: 21,42 - 5014: 22,42 - 5015: 22,44 - 5016: 21,44 - 5017: 19,44 - 5018: 20,44 - 5072: 19,50 - 5199: 41,28 - 5200: 39,28 - 11406: -11,-79 - 14474: -58,9 - 14475: -57,9 - 14476: -56,9 - 14477: -55,9 - 20097: 24,30 - 20101: 24,31 + 4377: 3,26 + 4378: 9,26 + 4395: 4,32 + 4408: 3,33 + 4413: 9,32 + 4425: 6,26 + 4432: 4,30 + 4433: 6,30 + 4434: 5,30 + 4435: 7,30 + 4436: 8,30 + 4481: 13,26 + 4485: 15,33 + 4486: 16,32 + 4500: 13,28 + 4501: 14,28 + 4528: 5,38 + 4529: 10,38 + 4534: 6,39 + 4561: 10,41 + 4583: 16,34 + 4584: 17,34 + 4585: 18,34 + 4586: 19,34 + 4587: 14,34 + 4632: 20,33 + 4633: 21,33 + 4649: 20,26 + 4652: 23,27 + 4657: 25,26 + 4658: 26,26 + 4694: 20,31 + 4695: 26,31 + 4704: 22,31 + 4705: 23,31 + 4710: 22,30 + 4713: 20,30 + 4714: 26,30 + 4729: 23,29 + 4744: 25,34 + 4745: 26,34 + 4746: 27,34 + 4747: 28,34 + 4764: 26,38 + 4765: 27,38 + 4774: 16,38 + 4775: 17,38 + 4776: 18,38 + 4807: 28,39 + 4808: 5,33 + 4809: 6,33 + 4810: 7,33 + 4811: 8,33 + 4812: 5,36 + 4813: 6,36 + 4814: 7,36 + 4815: 8,36 + 4816: 4,36 + 4817: 9,36 + 4835: 5,38 + 4836: 22,40 + 4837: 23,40 + 4852: 26,48 + 4853: 28,48 + 4854: 27,48 + 4855: 28,48 + 4856: 29,48 + 4857: 30,48 + 4858: 31,48 + 4859: 32,48 + 4860: 33,48 + 4861: 34,48 + 4862: 35,48 + 4863: 36,48 + 4864: 37,48 + 4865: 39,48 + 4866: 38,48 + 4884: 34,48 + 4885: 35,48 + 4886: 36,48 + 4887: 37,48 + 4888: 38,48 + 4889: 33,48 + 4890: 32,48 + 4891: 31,48 + 4892: 30,48 + 4893: 29,48 + 4894: 28,48 + 4895: 27,48 + 4896: 27,48 + 4897: 26,48 + 4918: 10,55 + 4931: 10,48 + 4932: 11,48 + 4933: 11,48 + 4934: 12,48 + 4945: 17,55 + 4963: 19,52 + 4964: 20,52 + 4965: 21,52 + 4966: 22,52 + 4967: 20,50 + 4968: 21,50 + 4969: 22,50 + 4970: 19,48 + 4971: 20,48 + 4972: 21,48 + 4973: 22,48 + 4974: 19,46 + 4975: 20,46 + 4976: 21,46 + 4977: 22,46 + 4978: 16,46 + 4979: 17,46 + 4980: 16,44 + 4981: 17,44 + 4982: 16,42 + 4983: 17,42 + 4984: 19,42 + 4985: 20,42 + 4986: 21,42 + 4987: 22,42 + 4988: 22,44 + 4989: 21,44 + 4990: 19,44 + 4991: 20,44 + 5045: 19,50 + 5172: 41,28 + 5173: 39,28 + 11371: -11,-79 + 14439: -58,9 + 14440: -57,9 + 14441: -56,9 + 14442: -55,9 + 19932: 24,30 + 19936: 24,31 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 4040: -39,52 - 4041: -38,52 - 4044: -39,55 - 9625: 4,-36 - 9626: 6,-36 - 9627: 7,-36 - 9628: 8,-36 - 9639: 5,-29 - 9640: 5,-31 - 9641: 6,-31 + 4013: -39,52 + 4014: -38,52 + 4017: -39,55 + 9590: 4,-36 + 9591: 6,-36 + 9592: 7,-36 + 9593: 8,-36 + 9604: 5,-29 + 9605: 5,-31 + 9606: 6,-31 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 17046: -53,3 - 17047: -52,3 - 17054: -53,7 - 17055: -52,7 - 17060: -53,3 - 17061: -52,3 - 17064: -49,3 - 17077: -50,-4 - 17078: -61,1 - 17079: -60,1 - 17085: -60,-4 - 17086: -59,-4 - 17087: -57,-4 - 17113: -50,9 - 17114: -49,11 - 17115: -48,11 - 17122: -56,9 - 17123: -56,9 - 17124: -56,9 - 17125: -57,9 - 17126: -58,9 - 17127: -58,9 - 17128: -59,9 - 17149: -58,-5 - 17152: -58,-11 - 17177: -60,-10 - 17178: -59,-10 - 17181: -58,-11 - 17190: -55,-9 - 17206: -53,-18 - 17207: -55,-18 - 17208: -57,-18 - 17209: -58,-18 - 17213: -61,-17 - 17228: -60,-15 - 17229: -59,-15 - 17230: -58,-15 - 17231: -57,-15 - 17232: -56,-15 - 17254: -49,-17 - 17255: -48,-17 - 17351: -58,16 - 17367: -65,14 - 17368: -64,14 - 17369: -63,14 - 17370: -62,14 - 17371: -62,14 - 17372: -62,14 - 17373: -61,14 - 17393: -75,14 - 17394: -74,14 - 17395: -73,14 - 17396: -71,14 - 17397: -70,14 - 17398: -69,14 - 17469: -59,17 - 17470: -60,17 - 17516: -48,-10 - 17517: -47,-10 - 17534: -64,-8 - 17535: -66,-8 - 17536: -67,-8 - 17537: -65,-8 - 17538: -68,-8 - 17539: -73,-8 - 17540: -72,-8 - 17565: -71,-5 - 17566: -69,-5 - 17580: -76,-10 - 17593: -11,-79 - 17597: 10,89 - 17598: 10,91 - 17601: 5,91 - 17614: 10,89 - 17657: 11,74 - 17709: -64,5 - 17710: -63,5 - 17781: -67,-4 - 17782: -68,-4 - 17783: -70,-4 - 17784: -72,-4 - 17785: -73,-4 - 17802: -71,-5 - 17803: -69,-5 - 17808: -73,3 - 17837: -73,10 - 17838: -71,10 - 17844: -72,13 - 17853: -82,14 - 17854: -81,14 - 17855: -80,14 - 17895: -77,8 - 17912: -77,12 - 17919: -77,2 - 17927: -77,-2 - 17968: -71,-9 - 17969: -70,-9 - 17970: -69,-9 - 17971: -72,-13 - 17972: -71,-13 - 17973: -70,-13 - 17974: -69,-13 - 17975: -68,-13 - 18352: -56,-4 - 18399: -55,17 - 18400: -54,17 - 18401: -54,17 - 18402: -52,17 - 18403: -53,17 + 16900: -53,3 + 16901: -52,3 + 16908: -53,7 + 16909: -52,7 + 16914: -53,3 + 16915: -52,3 + 16918: -49,3 + 16931: -50,-4 + 16932: -61,1 + 16933: -60,1 + 16939: -60,-4 + 16940: -59,-4 + 16941: -57,-4 + 16967: -50,9 + 16968: -49,11 + 16969: -48,11 + 16976: -56,9 + 16977: -56,9 + 16978: -56,9 + 16979: -57,9 + 16980: -58,9 + 16981: -58,9 + 16982: -59,9 + 17003: -58,-5 + 17006: -58,-11 + 17031: -60,-10 + 17032: -59,-10 + 17035: -58,-11 + 17044: -55,-9 + 17060: -53,-18 + 17061: -55,-18 + 17062: -57,-18 + 17063: -58,-18 + 17067: -61,-17 + 17082: -60,-15 + 17083: -59,-15 + 17084: -58,-15 + 17085: -57,-15 + 17086: -56,-15 + 17108: -49,-17 + 17109: -48,-17 + 17205: -58,16 + 17221: -65,14 + 17222: -64,14 + 17223: -63,14 + 17224: -62,14 + 17225: -62,14 + 17226: -62,14 + 17227: -61,14 + 17247: -75,14 + 17248: -74,14 + 17249: -73,14 + 17250: -71,14 + 17251: -70,14 + 17252: -69,14 + 17323: -59,17 + 17324: -60,17 + 17370: -48,-10 + 17371: -47,-10 + 17388: -64,-8 + 17389: -66,-8 + 17390: -67,-8 + 17391: -65,-8 + 17392: -68,-8 + 17393: -73,-8 + 17394: -72,-8 + 17419: -71,-5 + 17420: -69,-5 + 17434: -76,-10 + 17447: -11,-79 + 17451: 10,89 + 17452: 10,91 + 17455: 5,91 + 17468: 10,89 + 17511: 11,74 + 17563: -64,5 + 17564: -63,5 + 17635: -67,-4 + 17636: -68,-4 + 17637: -70,-4 + 17638: -72,-4 + 17639: -73,-4 + 17656: -71,-5 + 17657: -69,-5 + 17662: -73,3 + 17691: -73,10 + 17692: -71,10 + 17698: -72,13 + 17707: -82,14 + 17708: -81,14 + 17709: -80,14 + 17749: -77,8 + 17766: -77,12 + 17773: -77,2 + 17781: -77,-2 + 17822: -71,-9 + 17823: -70,-9 + 17824: -69,-9 + 17825: -72,-13 + 17826: -71,-13 + 17827: -70,-13 + 17828: -69,-13 + 17829: -68,-13 + 18206: -56,-4 + 18253: -55,17 + 18254: -54,17 + 18255: -54,17 + 18256: -52,17 + 18257: -53,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -15669,303 +15671,303 @@ entities: 864: 74,-47 1180: 45,-17 1181: 48,-17 - 2093: -21,52 - 2094: -17,52 - 2095: -19,53 - 2101: -19,49 - 2164: -19,33 - 2165: -19,30 - 2166: -19,37 - 2169: -21,35 - 2299: -23,42 - 2398: -29,30 - 2399: -30,30 - 2439: -30,39 - 2728: -10,52 - 2803: -11,50 - 2804: -10,50 - 2805: -6,50 - 2806: -5,50 - 2842: -6,32 - 3048: -13,58 - 3049: -12,58 - 3050: -11,58 - 3058: -19,65 - 3113: -13,69 - 3114: -12,69 - 3115: -11,69 - 3124: -5,65 - 3134: -6,69 - 3135: -6,69 - 3136: -4,69 - 3137: -5,69 - 3141: -6,58 - 3142: -5,58 - 3143: -4,58 - 3150: -20,58 - 3151: -19,58 - 3152: -18,58 - 3159: -20,69 - 3160: -19,69 - 3161: -18,69 - 3258: -12,76 - 3272: -12,96 - 3273: -12,83 - 3284: -12,89 - 3310: -30,76 - 3311: -30,83 - 3312: -30,89 - 3313: -30,96 - 3334: -31,69 - 3335: -30,69 - 3336: -29,69 - 3556: 0,69 - 3557: 1,69 - 3558: 2,69 - 3559: 5,69 - 3560: 6,69 - 3561: 7,69 - 3646: 6,76 - 3647: 6,76 - 3708: 6,83 - 3812: 0,58 - 3813: 1,58 - 3814: 2,58 - 3864: 20,69 - 5231: 17,13 - 5232: 17,20 - 5241: 17,-1 - 5242: 17,6 - 5257: -26,69 - 5258: -25,69 - 5259: -24,69 - 5531: -27,6 - 5532: -25,6 - 5533: -24,6 - 5534: -23,6 - 5535: -33,6 - 5536: -32,6 - 5537: -32,6 - 5538: -33,6 - 5539: -31,6 - 5540: -38,6 - 5541: -37,6 - 5542: -37,6 - 5543: -27,6 - 5544: -26,6 - 5545: -36,6 - 5546: -36,6 - 5613: -33,26 - 5614: -32,26 - 5615: -34,26 - 5624: -31,29 - 6267: -19,-11 - 6353: 17,-11 - 6388: -1,-17 - 6389: 0,-17 - 6390: 1,-17 - 6675: -31,-3 - 6676: -30,-3 - 6677: -28,-3 - 6678: -27,-3 - 6679: -26,-3 - 6680: -25,-3 - 6681: -23,-3 - 6682: -22,-3 - 6686: -33,3 - 6687: -32,3 - 6742: -24,-1 - 6758: -34,-16 - 6759: -33,-16 - 6760: -32,-16 - 6761: -31,-16 - 6762: -31,-16 - 6763: -30,-16 - 6772: -33,-10 - 6773: -32,-10 - 6777: -29,-16 - 6787: -34,-11 - 6788: -33,-11 - 6789: -32,-11 - 6790: -31,-11 - 7011: -25,-18 - 7036: -7,-19 - 7037: -6,-19 - 7038: -5,-19 - 7039: -12,-19 - 7040: -13,-19 - 7041: -13,-19 - 7042: -15,-19 - 7043: -14,-19 - 7044: 3,-19 - 7045: 4,-19 - 7046: 5,-19 - 7047: 5,-19 - 7048: 6,-19 - 7049: 10,-19 - 7050: 11,-19 - 7051: 12,-19 - 7052: 13,-19 - 7174: 21,6 - 7175: 23,6 - 7176: 24,6 - 7177: 22,6 - 7241: 28,6 - 7242: 29,6 - 7243: 30,6 - 7244: 31,6 - 8105: 58,-24 - 8106: 59,-24 - 8107: 60,-24 - 8108: 58,-11 - 8109: 59,-11 - 8110: 60,-11 - 8251: 39,-7 - 8252: 40,-7 - 8253: 40,-7 - 8276: 21,-10 - 8277: 22,-10 - 8278: 23,-10 - 8279: 24,-10 - 8280: 28,-10 - 8281: 29,-10 - 8282: 29,-10 - 8283: 30,-10 - 8284: 30,-10 - 8355: 36,-8 - 8356: 36,-8 - 8357: 37,-8 - 8358: 37,-8 - 8359: 38,-8 - 8360: 39,-8 - 8361: 39,-8 - 8362: 35,-8 - 8363: 35,-8 - 8446: 46,-13 - 8447: 46,-13 - 8497: 44,-19 - 8498: 45,-19 - 8499: 46,-19 - 8500: 47,-19 - 8501: 49,-19 - 8502: 50,-19 - 8503: 52,-19 - 8504: 51,-19 - 8726: -8,-75 - 8727: -7,-75 - 8728: -6,-75 - 8729: -3,-75 - 8730: -2,-75 - 8731: -1,-75 - 8732: -2,-79 - 8733: -1,-79 - 8734: -7,-79 - 8735: -8,-79 - 8798: 6,-24 - 8799: 7,-24 - 8800: 8,-24 - 8801: 9,-24 - 8802: 10,-24 - 8823: -11,-24 - 8824: -10,-24 - 8825: -9,-24 - 8826: -8,-24 - 8891: -1,-23 - 8929: -1,-30 - 8938: -12,-24 - 8974: -14,-28 - 8975: -14,-22 - 8976: -13,-22 - 8977: -7,-22 - 8978: -6,-22 - 9010: -7,-28 - 9011: -5,-28 - 9130: 4,-22 - 9131: 5,-22 - 9132: 11,-22 - 9133: 12,-22 - 9134: 12,-28 - 9135: 4,-28 - 9136: 3,-28 - 9464: -1,-51 - 9465: -1,-43 - 9466: -1,-38 - 9478: -1,-58 - 9479: -1,-58 - 9513: -3,-71 - 9524: 73,-52 - 10723: 73,-48 - 10724: 73,-41 - 11031: 41,-68 - 11032: 40,-68 - 12789: -42,23 - 15048: -16,24 - 15049: -15,24 - 15050: -14,24 - 15051: -14,24 - 15052: -13,24 - 15053: -6,24 - 15054: -5,24 - 15055: -4,24 - 15056: -3,24 - 15057: 1,24 - 15058: 2,24 - 15059: 3,24 - 15060: 4,24 - 15061: 11,24 - 15062: 12,24 - 15063: 13,24 - 15064: 14,24 - 15266: -8,-19 - 15495: -42,12 - 15496: -42,18 - 15497: -42,23 - 15757: 92,-5 - 15758: 93,-5 - 15759: 93,-5 - 15760: 94,-5 - 18953: -15,-8 - 18954: -14,-8 - 18955: -13,-8 - 18956: -12,-8 - 18957: -9,-8 - 18958: -8,-8 - 18959: -7,-8 - 18960: -6,-8 - 18961: -3,-8 - 18962: -2,-8 - 18963: -1,-8 - 18964: 1,-8 - 18965: 0,-8 - 18966: 4,-8 - 18967: 5,-8 - 18968: 6,-8 - 18969: 7,-8 - 18970: 10,-8 - 18971: 11,-8 - 18972: 12,-8 - 18973: 13,-8 - 19903: 35,-12 - 19904: 36,-12 - 19905: 37,-12 - 19906: 38,-12 - 19907: 39,-12 - 19908: 35,-9 - 19909: 36,-9 - 19910: 37,-9 - 19911: 38,-9 - 19912: 39,-9 - 20442: -19,20 - 20443: -19,13 - 20444: -19,6 - 20445: -19,-1 + 2066: -21,52 + 2067: -17,52 + 2068: -19,53 + 2074: -19,49 + 2137: -19,33 + 2138: -19,30 + 2139: -19,37 + 2142: -21,35 + 2272: -23,42 + 2371: -29,30 + 2372: -30,30 + 2412: -30,39 + 2701: -10,52 + 2776: -11,50 + 2777: -10,50 + 2778: -6,50 + 2779: -5,50 + 2815: -6,32 + 3021: -13,58 + 3022: -12,58 + 3023: -11,58 + 3031: -19,65 + 3086: -13,69 + 3087: -12,69 + 3088: -11,69 + 3097: -5,65 + 3107: -6,69 + 3108: -6,69 + 3109: -4,69 + 3110: -5,69 + 3114: -6,58 + 3115: -5,58 + 3116: -4,58 + 3123: -20,58 + 3124: -19,58 + 3125: -18,58 + 3132: -20,69 + 3133: -19,69 + 3134: -18,69 + 3231: -12,76 + 3245: -12,96 + 3246: -12,83 + 3257: -12,89 + 3283: -30,76 + 3284: -30,83 + 3285: -30,89 + 3286: -30,96 + 3307: -31,69 + 3308: -30,69 + 3309: -29,69 + 3529: 0,69 + 3530: 1,69 + 3531: 2,69 + 3532: 5,69 + 3533: 6,69 + 3534: 7,69 + 3619: 6,76 + 3620: 6,76 + 3681: 6,83 + 3785: 0,58 + 3786: 1,58 + 3787: 2,58 + 3837: 20,69 + 5204: 17,13 + 5205: 17,20 + 5214: 17,-1 + 5215: 17,6 + 5230: -26,69 + 5231: -25,69 + 5232: -24,69 + 5504: -27,6 + 5505: -25,6 + 5506: -24,6 + 5507: -23,6 + 5508: -33,6 + 5509: -32,6 + 5510: -32,6 + 5511: -33,6 + 5512: -31,6 + 5513: -38,6 + 5514: -37,6 + 5515: -37,6 + 5516: -27,6 + 5517: -26,6 + 5518: -36,6 + 5519: -36,6 + 5586: -33,26 + 5587: -32,26 + 5588: -34,26 + 5597: -31,29 + 6240: -19,-11 + 6326: 17,-11 + 6361: -1,-17 + 6362: 0,-17 + 6363: 1,-17 + 6648: -31,-3 + 6649: -30,-3 + 6650: -28,-3 + 6651: -27,-3 + 6652: -26,-3 + 6653: -25,-3 + 6654: -23,-3 + 6655: -22,-3 + 6659: -33,3 + 6660: -32,3 + 6715: -24,-1 + 6731: -34,-16 + 6732: -33,-16 + 6733: -32,-16 + 6734: -31,-16 + 6735: -31,-16 + 6736: -30,-16 + 6745: -33,-10 + 6746: -32,-10 + 6750: -29,-16 + 6760: -34,-11 + 6761: -33,-11 + 6762: -32,-11 + 6763: -31,-11 + 6984: -25,-18 + 7009: -7,-19 + 7010: -6,-19 + 7011: -5,-19 + 7012: -12,-19 + 7013: -13,-19 + 7014: -13,-19 + 7015: -15,-19 + 7016: -14,-19 + 7017: 3,-19 + 7018: 4,-19 + 7019: 5,-19 + 7020: 5,-19 + 7021: 6,-19 + 7022: 10,-19 + 7023: 11,-19 + 7024: 12,-19 + 7025: 13,-19 + 7147: 21,6 + 7148: 23,6 + 7149: 24,6 + 7150: 22,6 + 7214: 28,6 + 7215: 29,6 + 7216: 30,6 + 7217: 31,6 + 8070: 58,-24 + 8071: 59,-24 + 8072: 60,-24 + 8073: 58,-11 + 8074: 59,-11 + 8075: 60,-11 + 8216: 39,-7 + 8217: 40,-7 + 8218: 40,-7 + 8241: 21,-10 + 8242: 22,-10 + 8243: 23,-10 + 8244: 24,-10 + 8245: 28,-10 + 8246: 29,-10 + 8247: 29,-10 + 8248: 30,-10 + 8249: 30,-10 + 8320: 36,-8 + 8321: 36,-8 + 8322: 37,-8 + 8323: 37,-8 + 8324: 38,-8 + 8325: 39,-8 + 8326: 39,-8 + 8327: 35,-8 + 8328: 35,-8 + 8411: 46,-13 + 8412: 46,-13 + 8462: 44,-19 + 8463: 45,-19 + 8464: 46,-19 + 8465: 47,-19 + 8466: 49,-19 + 8467: 50,-19 + 8468: 52,-19 + 8469: 51,-19 + 8691: -8,-75 + 8692: -7,-75 + 8693: -6,-75 + 8694: -3,-75 + 8695: -2,-75 + 8696: -1,-75 + 8697: -2,-79 + 8698: -1,-79 + 8699: -7,-79 + 8700: -8,-79 + 8763: 6,-24 + 8764: 7,-24 + 8765: 8,-24 + 8766: 9,-24 + 8767: 10,-24 + 8788: -11,-24 + 8789: -10,-24 + 8790: -9,-24 + 8791: -8,-24 + 8856: -1,-23 + 8894: -1,-30 + 8903: -12,-24 + 8939: -14,-28 + 8940: -14,-22 + 8941: -13,-22 + 8942: -7,-22 + 8943: -6,-22 + 8975: -7,-28 + 8976: -5,-28 + 9095: 4,-22 + 9096: 5,-22 + 9097: 11,-22 + 9098: 12,-22 + 9099: 12,-28 + 9100: 4,-28 + 9101: 3,-28 + 9429: -1,-51 + 9430: -1,-43 + 9431: -1,-38 + 9443: -1,-58 + 9444: -1,-58 + 9478: -3,-71 + 9489: 73,-52 + 10688: 73,-48 + 10689: 73,-41 + 10996: 41,-68 + 10997: 40,-68 + 12754: -42,23 + 15013: -16,24 + 15014: -15,24 + 15015: -14,24 + 15016: -14,24 + 15017: -13,24 + 15018: -6,24 + 15019: -5,24 + 15020: -4,24 + 15021: -3,24 + 15022: 1,24 + 15023: 2,24 + 15024: 3,24 + 15025: 4,24 + 15026: 11,24 + 15027: 12,24 + 15028: 13,24 + 15029: 14,24 + 15231: -8,-19 + 15460: -42,12 + 15461: -42,18 + 15462: -42,23 + 15611: 92,-5 + 15612: 93,-5 + 15613: 93,-5 + 15614: 94,-5 + 18788: -15,-8 + 18789: -14,-8 + 18790: -13,-8 + 18791: -12,-8 + 18792: -9,-8 + 18793: -8,-8 + 18794: -7,-8 + 18795: -6,-8 + 18796: -3,-8 + 18797: -2,-8 + 18798: -1,-8 + 18799: 1,-8 + 18800: 0,-8 + 18801: 4,-8 + 18802: 5,-8 + 18803: 6,-8 + 18804: 7,-8 + 18805: 10,-8 + 18806: 11,-8 + 18807: 12,-8 + 18808: 13,-8 + 19738: 35,-12 + 19739: 36,-12 + 19740: 37,-12 + 19741: 38,-12 + 19742: 39,-12 + 19743: 35,-9 + 19744: 36,-9 + 19745: 37,-9 + 19746: 38,-9 + 19747: 39,-9 + 20277: -19,20 + 20278: -19,13 + 20279: -19,6 + 20280: -19,-1 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4127: -19,13 - 4128: -19,20 + 4100: -19,13 + 4101: -19,20 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW @@ -15975,328 +15977,328 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineW decals: - 18042: -50,22 - 18044: -49,20 - 18045: -49,19 - 18063: -55,38 - 18065: -56,33 - 18066: -56,34 - 18068: -57,36 - 18080: -45,23 - 18085: -45,23 - 18086: -51,37 - 18087: -50,39 - 18088: -50,40 - 18107: -43,51 - 18108: -45,51 - 18120: -46,57 - 18121: -47,54 - 18122: -47,53 - 18123: -47,52 - 18124: -47,51 - 18125: -47,51 - 18126: -47,50 - 18127: -47,49 - 18128: -47,49 - 18129: -47,47 - 18130: -47,47 - 18131: -47,48 - 18132: -47,46 - 18140: -46,41 - 18181: -60,47 - 18182: -60,46 - 18183: -60,46 - 18184: -60,45 - 18185: -60,49 - 18186: -60,51 - 18187: -60,52 - 18188: -60,53 - 18285: -54,22 - 18286: -54,21 - 18287: -54,20 - 18293: -51,21 + 17896: -50,22 + 17898: -49,20 + 17899: -49,19 + 17917: -55,38 + 17919: -56,33 + 17920: -56,34 + 17922: -57,36 + 17934: -45,23 + 17939: -45,23 + 17940: -51,37 + 17941: -50,39 + 17942: -50,40 + 17961: -43,51 + 17962: -45,51 + 17974: -46,57 + 17975: -47,54 + 17976: -47,53 + 17977: -47,52 + 17978: -47,51 + 17979: -47,51 + 17980: -47,50 + 17981: -47,49 + 17982: -47,49 + 17983: -47,47 + 17984: -47,47 + 17985: -47,48 + 17986: -47,46 + 17994: -46,41 + 18035: -60,47 + 18036: -60,46 + 18037: -60,46 + 18038: -60,45 + 18039: -60,49 + 18040: -60,51 + 18041: -60,52 + 18042: -60,53 + 18139: -54,22 + 18140: -54,21 + 18141: -54,20 + 18147: -51,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 18547: -38,48 - 18548: -38,48 + 18382: -38,48 + 18383: -38,48 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineW decals: - 9549: 11,-26 - 9550: 11,-25 - 9559: 16,-34 - 9560: 16,-33 - 9561: 16,-32 - 9562: 16,-30 - 9563: 16,-29 - 9564: 16,-28 - 9565: 16,-27 - 9605: 19,-27 - 9606: 19,-28 - 9709: 26,-52 - 9710: 26,-51 - 9711: 26,-50 - 9712: 26,-49 - 9713: 26,-48 - 9714: 26,-47 - 9715: 26,-46 - 9716: 26,-45 - 9717: 26,-43 - 9718: 26,-42 - 9719: 26,-41 - 9720: 26,-38 - 9737: 19,-36 - 9738: 19,-35 - 9739: 19,-34 - 9747: 16,-36 - 9752: 15,-35 - 9770: 10,-35 - 9775: 15,-35 - 9811: 29,-50 - 9812: 29,-44 - 9813: 29,-40 - 9818: 19,-40 - 9819: 19,-39 - 9820: 25,-39 - 9821: 25,-40 - 9822: 19,-44 - 9911: 18,-34 - 9912: 18,-33 - 9913: 18,-32 - 9914: 18,-32 - 9915: 18,-31 - 9916: 14,-35 - 9917: 28,-35 - 9918: 37,-35 - 9919: 28,-40 - 9920: 28,-42 - 9921: 28,-43 - 9922: 28,-43 - 9923: 28,-44 - 9924: 28,-47 - 9925: 28,-48 - 9926: 28,-49 - 9927: 28,-50 - 9928: 28,-50 - 9929: 28,-51 - 9930: 28,-51 - 9932: 18,-40 - 9933: 18,-41 - 9934: 18,-42 - 9935: 18,-43 - 9936: 18,-43 - 9937: 18,-44 - 9938: 18,-45 - 9939: 18,-45 - 9940: 16,-38 - 9941: 16,-41 - 9942: 16,-43 - 9943: 16,-45 - 9944: 16,-46 - 10003: 39,-35 - 10027: 30,-41 - 10028: 30,-39 - 10051: 37,-40 - 10084: 23,-29 - 10120: 28,-25 - 10121: 28,-26 - 10139: 28,-41 - 10141: 15,-39 - 10142: 15,-40 - 10150: 8,-39 - 10151: 8,-40 - 10173: 20,-48 - 10174: 20,-47 - 10206: 25,-44 - 10213: 20,-45 - 10231: 32,-48 - 10232: 32,-48 - 10233: 32,-50 - 10237: 32,-52 - 10273: 30,-52 - 10274: 30,-51 - 10275: 30,-49 - 10276: 30,-48 - 10385: 8,-44 - 10387: 3,-45 - 10388: 3,-46 - 10420: 14,-46 - 10422: 12,-44 - 10428: 15,-44 - 10655: 50,-33 - 10656: 50,-33 - 10659: 43,-34 - 10662: 43,-32 - 12420: -4,-60 - 15374: 16,-42 - 19565: 5,63 - 19593: -8,-61 - 19594: -8,-60 - 19595: -8,-59 - 19597: -4,-60 - 19928: 26,-31 - 19938: 20,-26 - 19942: 24,-28 + 9514: 11,-26 + 9515: 11,-25 + 9524: 16,-34 + 9525: 16,-33 + 9526: 16,-32 + 9527: 16,-30 + 9528: 16,-29 + 9529: 16,-28 + 9530: 16,-27 + 9570: 19,-27 + 9571: 19,-28 + 9674: 26,-52 + 9675: 26,-51 + 9676: 26,-50 + 9677: 26,-49 + 9678: 26,-48 + 9679: 26,-47 + 9680: 26,-46 + 9681: 26,-45 + 9682: 26,-43 + 9683: 26,-42 + 9684: 26,-41 + 9685: 26,-38 + 9702: 19,-36 + 9703: 19,-35 + 9704: 19,-34 + 9712: 16,-36 + 9717: 15,-35 + 9735: 10,-35 + 9740: 15,-35 + 9776: 29,-50 + 9777: 29,-44 + 9778: 29,-40 + 9783: 19,-40 + 9784: 19,-39 + 9785: 25,-39 + 9786: 25,-40 + 9787: 19,-44 + 9876: 18,-34 + 9877: 18,-33 + 9878: 18,-32 + 9879: 18,-32 + 9880: 18,-31 + 9881: 14,-35 + 9882: 28,-35 + 9883: 37,-35 + 9884: 28,-40 + 9885: 28,-42 + 9886: 28,-43 + 9887: 28,-43 + 9888: 28,-44 + 9889: 28,-47 + 9890: 28,-48 + 9891: 28,-49 + 9892: 28,-50 + 9893: 28,-50 + 9894: 28,-51 + 9895: 28,-51 + 9897: 18,-40 + 9898: 18,-41 + 9899: 18,-42 + 9900: 18,-43 + 9901: 18,-43 + 9902: 18,-44 + 9903: 18,-45 + 9904: 18,-45 + 9905: 16,-38 + 9906: 16,-41 + 9907: 16,-43 + 9908: 16,-45 + 9909: 16,-46 + 9968: 39,-35 + 9992: 30,-41 + 9993: 30,-39 + 10016: 37,-40 + 10049: 23,-29 + 10085: 28,-25 + 10086: 28,-26 + 10104: 28,-41 + 10106: 15,-39 + 10107: 15,-40 + 10115: 8,-39 + 10116: 8,-40 + 10138: 20,-48 + 10139: 20,-47 + 10171: 25,-44 + 10178: 20,-45 + 10196: 32,-48 + 10197: 32,-48 + 10198: 32,-50 + 10202: 32,-52 + 10238: 30,-52 + 10239: 30,-51 + 10240: 30,-49 + 10241: 30,-48 + 10350: 8,-44 + 10352: 3,-45 + 10353: 3,-46 + 10385: 14,-46 + 10387: 12,-44 + 10393: 15,-44 + 10620: 50,-33 + 10621: 50,-33 + 10624: 43,-34 + 10627: 43,-32 + 12385: -4,-60 + 15339: 16,-42 + 19400: 5,63 + 19428: -8,-61 + 19429: -8,-60 + 19430: -8,-59 + 19432: -4,-60 + 19763: 26,-31 + 19773: 20,-26 + 19777: 24,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineW decals: - 2898: -24,48 - 2899: -24,47 - 2915: -32,45 - 2921: -34,47 - 2928: -34,51 - 2929: -34,52 - 2930: -34,53 - 2947: -24,50 - 2948: -24,51 - 2966: -31,47 - 2967: -31,48 - 2968: -31,49 - 2969: -31,50 - 2970: -31,51 - 2971: -31,52 - 2972: -31,53 - 2973: -29,53 - 2974: -29,52 - 2975: -29,51 - 2976: -29,50 - 2977: -29,49 - 2978: -29,47 - 2979: -29,48 - 2980: -27,47 - 2981: -27,48 - 2982: -27,49 - 2983: -27,50 - 3023: -36,49 - 3033: -38,47 - 18549: -38,48 - 18550: -38,49 - 18551: -38,50 - 18553: -38,45 - 18554: -38,46 - 18556: -27,53 + 2871: -24,48 + 2872: -24,47 + 2888: -32,45 + 2894: -34,47 + 2901: -34,51 + 2902: -34,52 + 2903: -34,53 + 2920: -24,50 + 2921: -24,51 + 2939: -31,47 + 2940: -31,48 + 2941: -31,49 + 2942: -31,50 + 2943: -31,51 + 2944: -31,52 + 2945: -31,53 + 2946: -29,53 + 2947: -29,52 + 2948: -29,51 + 2949: -29,50 + 2950: -29,49 + 2951: -29,47 + 2952: -29,48 + 2953: -27,47 + 2954: -27,48 + 2955: -27,49 + 2956: -27,50 + 2996: -36,49 + 3006: -38,47 + 18384: -38,48 + 18385: -38,49 + 18386: -38,50 + 18388: -38,45 + 18389: -38,46 + 18391: -27,53 - node: color: '#B18BDAFF' id: BrickTileWhiteLineW decals: - 5113: 19,31 - 5114: 19,29 - 5115: 19,27 - 5128: 28,31 - 5191: 38,29 - 11479: -22,-30 - 11480: -22,-29 - 11481: -22,-29 - 11482: -22,-28 - 11483: -22,-27 - 11484: -22,-27 - 11485: -22,-26 - 11512: -23,-35 - 11516: -13,-35 - 11517: -13,-35 - 11541: -13,-39 - 11542: -13,-40 - 11543: -13,-41 - 11544: -13,-42 - 11545: -13,-43 - 11546: -13,-47 - 11547: -13,-49 - 11548: -13,-49 - 11549: -13,-51 - 11550: -13,-52 - 11551: -13,-52 - 11552: -13,-53 - 11553: -13,-50 - 11554: -13,-50 - 11555: -13,-48 - 11556: -13,-48 - 11637: -21,-36 - 11638: -21,-35 - 11639: -21,-35 - 11640: -21,-34 - 11641: -21,-34 - 11651: -31,-35 - 11652: -24,-32 - 11653: -24,-31 - 11654: -24,-30 - 11655: -24,-30 - 11656: -24,-29 - 11657: -24,-28 - 11658: -24,-28 - 11659: -24,-27 - 11660: -24,-27 - 11661: -24,-27 - 11662: -24,-27 - 11663: -24,-26 - 11664: -24,-25 - 11665: -24,-25 - 11679: -7,-26 - 11680: -7,-25 - 11681: -7,-25 - 11696: -11,-34 - 11697: -11,-35 - 11708: -4,-35 - 11721: -10,-31 - 11722: -10,-32 - 11723: -10,-32 - 11724: -10,-33 - 11725: -10,-33 - 11831: -12,-41 - 11832: -12,-41 - 11850: -15,-38 - 11851: -15,-39 - 11852: -15,-41 - 11853: -15,-42 - 11854: -15,-43 - 11855: -15,-44 - 11933: -34,-45 - 11934: -34,-44 - 11935: -34,-44 - 11936: -34,-43 - 11937: -34,-43 - 11938: -34,-42 - 11939: -34,-42 - 11940: -34,-41 - 11972: -27,-27 - 11973: -28,-29 - 11974: -27,-31 - 12118: -24,-24 - 12135: -21,-31 - 12136: -21,-26 - 12238: -23,-39 - 12239: -23,-40 - 12240: -23,-41 - 12252: -28,-39 - 12253: -28,-40 - 12254: -28,-41 - 12255: -15,-46 - 12256: -15,-47 - 12257: -15,-48 - 12258: -15,-49 - 12259: -17,-52 - 12260: -17,-53 - 12276: -12,-50 - 12288: -12,-59 - 12300: -20,-57 - 12335: -7,-48 - 12336: -7,-47 - 12343: -11,-51 - 12344: -11,-52 - 12350: -3,-48 - 12356: -17,-44 - 12357: -17,-43 - 12358: -17,-42 - 12359: -17,-41 - 12360: -17,-40 - 12677: -6,-32 - 12678: -6,-33 - 12679: -6,-34 - 20228: 33,38 - 20232: 37,39 + 5086: 19,31 + 5087: 19,29 + 5088: 19,27 + 5101: 28,31 + 5164: 38,29 + 11444: -22,-30 + 11445: -22,-29 + 11446: -22,-29 + 11447: -22,-28 + 11448: -22,-27 + 11449: -22,-27 + 11450: -22,-26 + 11477: -23,-35 + 11481: -13,-35 + 11482: -13,-35 + 11506: -13,-39 + 11507: -13,-40 + 11508: -13,-41 + 11509: -13,-42 + 11510: -13,-43 + 11511: -13,-47 + 11512: -13,-49 + 11513: -13,-49 + 11514: -13,-51 + 11515: -13,-52 + 11516: -13,-52 + 11517: -13,-53 + 11518: -13,-50 + 11519: -13,-50 + 11520: -13,-48 + 11521: -13,-48 + 11602: -21,-36 + 11603: -21,-35 + 11604: -21,-35 + 11605: -21,-34 + 11606: -21,-34 + 11616: -31,-35 + 11617: -24,-32 + 11618: -24,-31 + 11619: -24,-30 + 11620: -24,-30 + 11621: -24,-29 + 11622: -24,-28 + 11623: -24,-28 + 11624: -24,-27 + 11625: -24,-27 + 11626: -24,-27 + 11627: -24,-27 + 11628: -24,-26 + 11629: -24,-25 + 11630: -24,-25 + 11644: -7,-26 + 11645: -7,-25 + 11646: -7,-25 + 11661: -11,-34 + 11662: -11,-35 + 11673: -4,-35 + 11686: -10,-31 + 11687: -10,-32 + 11688: -10,-32 + 11689: -10,-33 + 11690: -10,-33 + 11796: -12,-41 + 11797: -12,-41 + 11815: -15,-38 + 11816: -15,-39 + 11817: -15,-41 + 11818: -15,-42 + 11819: -15,-43 + 11820: -15,-44 + 11898: -34,-45 + 11899: -34,-44 + 11900: -34,-44 + 11901: -34,-43 + 11902: -34,-43 + 11903: -34,-42 + 11904: -34,-42 + 11905: -34,-41 + 11937: -27,-27 + 11938: -28,-29 + 11939: -27,-31 + 12083: -24,-24 + 12100: -21,-31 + 12101: -21,-26 + 12203: -23,-39 + 12204: -23,-40 + 12205: -23,-41 + 12217: -28,-39 + 12218: -28,-40 + 12219: -28,-41 + 12220: -15,-46 + 12221: -15,-47 + 12222: -15,-48 + 12223: -15,-49 + 12224: -17,-52 + 12225: -17,-53 + 12241: -12,-50 + 12253: -12,-59 + 12265: -20,-57 + 12300: -7,-48 + 12301: -7,-47 + 12308: -11,-51 + 12309: -11,-52 + 12315: -3,-48 + 12321: -17,-44 + 12322: -17,-43 + 12323: -17,-42 + 12324: -17,-41 + 12325: -17,-40 + 12642: -6,-32 + 12643: -6,-33 + 12644: -6,-34 + 20063: 33,38 + 20067: 37,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineW @@ -16306,252 +16308,252 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineW decals: - 10870: 29,-56 - 10872: 26,-57 - 10896: 34,-71 - 10897: 34,-70 - 10898: 34,-69 - 10899: 34,-67 - 10900: 34,-64 - 10901: 34,-63 - 10902: 34,-62 - 10918: 38,-61 - 10920: 38,-63 - 10939: 42,-62 - 10941: 37,-62 - 10956: 37,-70 - 11021: 30,-68 + 10835: 29,-56 + 10837: 26,-57 + 10861: 34,-71 + 10862: 34,-70 + 10863: 34,-69 + 10864: 34,-67 + 10865: 34,-64 + 10866: 34,-63 + 10867: 34,-62 + 10883: 38,-61 + 10885: 38,-63 + 10904: 42,-62 + 10906: 37,-62 + 10921: 37,-70 + 10986: 30,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineW decals: - 7657: 64,-4 - 7662: 65,-3 - 7693: 71,13 - 19429: 68,15 - 19430: 68,14 - 19431: 68,13 - 19442: 60,-5 - 19443: 60,-4 - 21172: 71,13 + 7630: 64,-4 + 7635: 65,-3 + 7666: 71,13 + 19264: 68,15 + 19265: 68,14 + 19266: 68,13 + 19277: 60,-5 + 19278: 60,-4 + 21007: 71,13 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineW decals: - 3835: 10,69 - 3836: 10,67 - 3837: 10,66 - 3841: 13,67 - 3848: 13,67 - 3854: 13,67 + 3808: 10,69 + 3809: 10,67 + 3810: 10,66 + 3814: 13,67 + 3821: 13,67 + 3827: 13,67 - node: color: '#DAA58BFF' id: BrickTileWhiteLineW decals: - 4400: 2,30 - 4401: 2,28 - 4402: 2,27 - 4425: 2,34 - 4426: 2,35 - 4427: 2,36 - 4446: 11,30 - 4447: 11,28 - 4457: 9,28 - 4458: 9,29 - 4477: 15,29 - 4478: 15,30 - 4479: 15,31 - 4490: 12,27 - 4495: 15,32 - 4519: 17,27 - 4520: 17,28 - 4521: 17,29 - 4522: 17,30 - 4523: 17,31 - 4557: 12,36 - 4558: 12,35 - 4568: 4,41 - 4569: 4,42 - 4593: 9,45 - 4594: 9,44 - 4595: 9,43 - 4608: 13,38 - 4609: 13,37 - 4615: 13,34 - 4641: 12,43 - 4642: 12,45 - 4643: 13,40 - 4644: 13,41 - 4645: 13,42 - 4646: 13,44 - 4649: 15,47 - 4670: 19,31 - 4671: 19,30 - 4672: 19,29 - 4673: 19,28 - 4674: 19,27 - 4705: 28,31 - 4717: 27,29 - 4718: 27,29 - 4719: 27,30 - 4720: 27,28 - 4734: 26,29 - 4738: 22,29 - 4763: 23,36 - 4767: 24,37 - 4768: 24,35 - 4788: 28,35 - 4789: 28,36 - 4790: 28,37 - 4805: 20,36 - 4828: 27,41 - 4829: 27,42 - 4830: 27,43 - 4845: 10,35 - 4899: 34,50 - 4907: 33,49 - 4908: 33,51 - 4910: 39,51 - 4952: 9,53 - 4953: 9,52 - 4954: 9,51 - 4955: 9,50 - 4956: 9,49 - 4964: 14,49 - 4965: 14,50 - 4970: 14,53 - 4971: 14,52 - 5019: 23,43 - 5020: 23,45 - 5021: 23,47 - 5022: 23,49 - 5023: 23,51 - 5033: 18,41 - 5034: 18,43 - 5035: 18,45 - 5065: 23,41 - 5109: 39,49 - 5110: 39,51 - 5111: 39,48 - 5112: 39,52 - 5201: 38,29 - 5203: 33,37 - 11408: -11,-82 - 11409: -11,-81 - 11410: -11,-80 - 14462: -46,14 - 14463: -46,12 - 15413: -49,9 + 4373: 2,30 + 4374: 2,28 + 4375: 2,27 + 4398: 2,34 + 4399: 2,35 + 4400: 2,36 + 4419: 11,30 + 4420: 11,28 + 4430: 9,28 + 4431: 9,29 + 4450: 15,29 + 4451: 15,30 + 4452: 15,31 + 4463: 12,27 + 4468: 15,32 + 4492: 17,27 + 4493: 17,28 + 4494: 17,29 + 4495: 17,30 + 4496: 17,31 + 4530: 12,36 + 4531: 12,35 + 4541: 4,41 + 4542: 4,42 + 4566: 9,45 + 4567: 9,44 + 4568: 9,43 + 4581: 13,38 + 4582: 13,37 + 4588: 13,34 + 4614: 12,43 + 4615: 12,45 + 4616: 13,40 + 4617: 13,41 + 4618: 13,42 + 4619: 13,44 + 4622: 15,47 + 4643: 19,31 + 4644: 19,30 + 4645: 19,29 + 4646: 19,28 + 4647: 19,27 + 4678: 28,31 + 4690: 27,29 + 4691: 27,29 + 4692: 27,30 + 4693: 27,28 + 4707: 26,29 + 4711: 22,29 + 4736: 23,36 + 4740: 24,37 + 4741: 24,35 + 4761: 28,35 + 4762: 28,36 + 4763: 28,37 + 4778: 20,36 + 4801: 27,41 + 4802: 27,42 + 4803: 27,43 + 4818: 10,35 + 4872: 34,50 + 4880: 33,49 + 4881: 33,51 + 4883: 39,51 + 4925: 9,53 + 4926: 9,52 + 4927: 9,51 + 4928: 9,50 + 4929: 9,49 + 4937: 14,49 + 4938: 14,50 + 4943: 14,53 + 4944: 14,52 + 4992: 23,43 + 4993: 23,45 + 4994: 23,47 + 4995: 23,49 + 4996: 23,51 + 5006: 18,41 + 5007: 18,43 + 5008: 18,45 + 5038: 23,41 + 5082: 39,49 + 5083: 39,51 + 5084: 39,48 + 5085: 39,52 + 5174: 38,29 + 5176: 33,37 + 11373: -11,-82 + 11374: -11,-81 + 11375: -11,-80 + 14427: -46,14 + 14428: -46,12 + 15378: -49,9 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 4038: -40,53 - 9622: 2,-31 - 9642: 3,-34 - 9643: 3,-33 - 9650: 7,-34 - 9651: 7,-33 - 9652: 7,-32 - 9668: 9,-36 - 9669: 9,-34 + 4011: -40,53 + 9587: 2,-31 + 9607: 3,-34 + 9608: 3,-33 + 9615: 7,-34 + 9616: 7,-33 + 9617: 7,-32 + 9633: 9,-36 + 9634: 9,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 17051: -53,4 - 17052: -53,5 - 17053: -53,6 - 17065: -48,1 - 17080: -59,0 - 17082: -61,-2 - 17083: -61,-3 - 17130: -59,11 - 17131: -59,12 - 17132: -59,13 - 17136: -55,16 - 17146: -62,1 - 17156: -62,-7 - 17164: -56,-9 - 17175: -61,-8 - 17176: -61,-9 - 17189: -55,-8 - 17191: -54,-10 - 17192: -54,-11 - 17193: -54,-6 - 17194: -54,-5 - 17216: -60,-17 - 17222: -61,-13 - 17223: -61,-14 - 17238: -51,-15 - 17249: -59,-16 - 17250: -50,-16 - 17251: -50,-17 - 17266: -50,-14 - 17267: -50,-13 - 17338: -46,12 - 17339: -46,14 - 17374: -60,14 - 17376: -67,15 - 17390: -78,15 - 17472: -61,18 - 17473: -61,19 - 17484: -50,-9 - 17485: -50,-8 - 17486: -50,-7 - 17522: -50,-9 - 17523: -50,-8 - 17524: -50,-7 - 17525: -56,-7 - 17531: -62,-7 - 17570: -74,-6 - 17571: -74,-7 - 17572: -74,-8 - 17576: -77,-7 - 17577: -77,-8 - 17578: -77,-9 - 17590: -11,-82 - 17591: -11,-81 - 17592: -11,-80 - 17595: 13,78 - 17596: 12,87 - 17605: 5,92 - 17606: 10,90 - 17623: 5,88 - 17624: 5,89 - 17625: 5,90 - 17634: 9,85 - 17635: 9,86 - 17636: 9,87 - 17639: 12,87 - 17640: 10,82 - 17641: 10,79 - 17642: 10,78 - 17643: 10,77 - 17664: 13,78 - 17703: -65,6 - 17704: -65,7 - 17705: -65,8 - 17706: -65,9 - 17766: -65,1 - 17786: -74,-3 - 17787: -74,-2 - 17788: -74,-1 - 17789: -74,1 - 17806: -65,1 - 17883: -78,6 - 17884: -78,5 - 17885: -78,4 - 17909: -77,9 - 17910: -77,10 - 17911: -77,11 - 17935: -75,0 - 17978: -73,-11 - 17979: -73,-12 - 17995: -55,17 - 18355: -51,-3 - 18356: -51,-2 - 20103: -48,-3 + 16905: -53,4 + 16906: -53,5 + 16907: -53,6 + 16919: -48,1 + 16934: -59,0 + 16936: -61,-2 + 16937: -61,-3 + 16984: -59,11 + 16985: -59,12 + 16986: -59,13 + 16990: -55,16 + 17000: -62,1 + 17010: -62,-7 + 17018: -56,-9 + 17029: -61,-8 + 17030: -61,-9 + 17043: -55,-8 + 17045: -54,-10 + 17046: -54,-11 + 17047: -54,-6 + 17048: -54,-5 + 17070: -60,-17 + 17076: -61,-13 + 17077: -61,-14 + 17092: -51,-15 + 17103: -59,-16 + 17104: -50,-16 + 17105: -50,-17 + 17120: -50,-14 + 17121: -50,-13 + 17192: -46,12 + 17193: -46,14 + 17228: -60,14 + 17230: -67,15 + 17244: -78,15 + 17326: -61,18 + 17327: -61,19 + 17338: -50,-9 + 17339: -50,-8 + 17340: -50,-7 + 17376: -50,-9 + 17377: -50,-8 + 17378: -50,-7 + 17379: -56,-7 + 17385: -62,-7 + 17424: -74,-6 + 17425: -74,-7 + 17426: -74,-8 + 17430: -77,-7 + 17431: -77,-8 + 17432: -77,-9 + 17444: -11,-82 + 17445: -11,-81 + 17446: -11,-80 + 17449: 13,78 + 17450: 12,87 + 17459: 5,92 + 17460: 10,90 + 17477: 5,88 + 17478: 5,89 + 17479: 5,90 + 17488: 9,85 + 17489: 9,86 + 17490: 9,87 + 17493: 12,87 + 17494: 10,82 + 17495: 10,79 + 17496: 10,78 + 17497: 10,77 + 17518: 13,78 + 17557: -65,6 + 17558: -65,7 + 17559: -65,8 + 17560: -65,9 + 17620: -65,1 + 17640: -74,-3 + 17641: -74,-2 + 17642: -74,-1 + 17643: -74,1 + 17660: -65,1 + 17737: -78,6 + 17738: -78,5 + 17739: -78,4 + 17763: -77,9 + 17764: -77,10 + 17765: -77,11 + 17789: -75,0 + 17832: -73,-11 + 17833: -73,-12 + 17849: -55,17 + 18209: -51,-3 + 18210: -51,-2 + 19938: -48,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -16567,322 +16569,322 @@ entities: 978: 2,-14 1177: 44,-15 1178: 44,-16 - 2086: -15,50 - 2087: -15,49 - 2088: -15,48 - 2096: -18,52 - 2097: -18,51 - 2098: -18,50 - 2102: -18,48 - 2103: -18,47 - 2104: -18,46 - 2105: -20,47 - 2106: -20,48 - 2107: -20,49 - 2108: -20,51 - 2150: -18,36 - 2151: -18,35 - 2152: -18,34 - 2153: -18,32 - 2154: -18,31 - 2155: -18,29 - 2156: -18,28 - 2157: -18,27 - 2158: -20,29 - 2159: -20,30 - 2160: -20,31 - 2161: -20,32 - 2162: -20,33 - 2163: -20,34 - 2294: -22,41 - 2387: -28,37 - 2388: -28,36 - 2389: -28,34 - 2390: -28,35 - 2391: -28,33 - 2392: -28,32 - 2402: -31,30 - 2403: -31,31 - 2736: -13,53 - 2807: -9,49 - 2808: -4,49 - 3047: -10,57 - 3054: -18,61 - 3055: -18,62 - 3056: -18,63 - 3057: -18,64 - 3126: -4,61 - 3127: -4,62 - 3128: -4,63 - 3129: -4,64 - 3130: -3,57 - 3138: -3,68 - 3140: -10,68 - 3153: -17,57 - 3162: -17,68 - 3253: -11,72 - 3254: -11,73 - 3255: -11,74 - 3256: -11,75 - 3264: -11,79 - 3265: -11,80 - 3266: -11,81 - 3267: -11,82 - 3268: -11,92 - 3269: -11,93 - 3270: -11,94 - 3271: -11,95 - 3290: -11,88 - 3291: -11,88 - 3292: -11,87 - 3293: -11,86 - 3294: -11,85 - 3314: -29,95 - 3315: -29,94 - 3316: -29,93 - 3317: -29,92 - 3318: -29,88 - 3319: -29,87 - 3320: -29,86 - 3321: -29,85 - 3322: -29,82 - 3323: -29,81 - 3324: -29,80 - 3325: -29,79 - 3326: -29,75 - 3327: -29,74 - 3328: -29,73 - 3329: -29,72 - 3341: -28,68 - 3555: 3,68 - 3562: 8,68 - 3648: 7,75 - 3699: 7,72 - 3700: 7,73 - 3701: 7,79 - 3702: 7,80 - 3703: 7,81 - 3810: 3,57 - 3857: 17,69 - 4186: -25,22 - 5216: 18,16 - 5217: 18,17 - 5218: 18,18 - 5219: 18,19 - 5220: 18,12 - 5221: 18,12 - 5222: 18,11 - 5223: 18,10 - 5224: 18,9 - 5243: 18,3 - 5244: 18,4 - 5245: 18,2 - 5246: 18,-2 - 5247: 18,-3 - 5248: 18,-4 - 5249: 18,-5 - 5260: -23,68 - 5550: -35,5 - 5551: -30,5 - 5552: -22,5 - 5616: -34,27 - 5617: -34,28 - 6268: -18,-12 - 6269: -18,-13 - 6270: -18,-14 - 6271: -18,-15 - 6272: -18,-16 - 6273: -18,-17 - 6355: 18,-17 - 6356: 18,-16 - 6357: 18,-15 - 6358: 18,-14 - 6359: 18,-13 - 6360: 18,-12 - 6381: -2,-14 - 6382: -2,-15 - 6391: 2,-17 - 6683: -21,-3 - 6684: -21,-2 - 6685: -21,-2 - 6688: -33,2 - 6689: -33,1 - 6690: -33,0 - 6691: -33,-1 - 6692: -33,-2 - 6693: -33,-3 - 6694: -33,-4 - 6695: -33,-5 - 6696: -33,-6 - 6697: -33,-7 - 6698: -33,-8 - 6699: -33,-9 - 6728: -31,1 - 6765: -35,-15 - 6766: -35,-14 - 6767: -35,-14 - 6768: -35,-13 - 6769: -35,-12 - 6791: -30,-12 - 6792: -30,-13 - 6793: -30,-14 - 6794: -30,-14 - 6795: -30,-15 - 7015: -26,-17 - 7016: -26,-16 - 7017: -26,-16 - 7018: -22,-17 - 7019: -22,-17 - 7020: -22,-16 - 7053: 7,-20 - 7054: -4,-20 - 7055: -11,-20 - 7060: 14,-20 - 7061: 18,5 - 7172: 25,5 - 7239: 32,5 - 8079: 62,-15 - 8080: 62,-14 - 8081: 62,-13 - 8082: 58,-14 - 8083: 58,-27 - 8084: 60,-27 - 8085: 62,-28 - 8086: 62,-27 - 8087: 62,-26 - 8096: 60,-14 - 8298: 31,-11 - 8299: 25,-11 - 8300: 25,-11 - 8309: 41,-14 - 8310: 41,-12 - 8311: 41,-12 - 8312: 41,-12 - 8313: 41,-10 - 8314: 41,-11 - 8364: 41,-13 - 8365: 41,-13 - 8505: 48,-20 - 8506: 53,-20 - 8507: 53,-20 - 8744: 0,-76 - 8745: 0,-80 - 8749: -3,-78 - 8805: 11,-25 - 8806: 11,-26 - 8820: -7,-26 - 8821: -7,-25 - 8822: -7,-25 - 8886: 0,-27 - 8887: 0,-26 - 8888: 0,-25 - 8889: 0,-24 - 8931: 0,-35 - 8932: 0,-34 - 8933: 0,-34 - 8934: 0,-33 - 8935: 0,-32 - 8936: 0,-31 - 8937: 0,-31 - 8979: -3,-25 - 8980: -3,-25 - 8981: -3,-26 - 9014: -16,-26 - 9015: -16,-25 - 9144: 2,-24 - 9447: 0,-50 - 9448: 0,-49 - 9449: 0,-49 - 9450: 0,-45 - 9451: 0,-46 - 9452: 0,-48 - 9453: 0,-48 - 9454: 0,-47 - 9455: 0,-42 - 9456: 0,-41 - 9457: 0,-40 - 9458: 0,-40 - 9459: 0,-39 - 9460: 0,-52 - 9461: 0,-53 - 9462: 0,-54 - 9463: 0,-55 - 9467: 0,-44 - 9475: 0,-61 - 9476: 0,-60 - 9477: 0,-59 - 9501: -5,-73 - 9502: -5,-72 - 9503: -2,-69 - 9504: -2,-70 - 9505: -2,-71 - 9525: 72,-51 - 9584: 15,-26 - 9585: 15,-25 - 10726: 76,-45 - 12790: -41,22 - 13527: -41,-63 - 14927: -20,50 - 15027: -12,23 - 15028: -2,23 - 15029: 5,23 - 15030: 15,23 - 15398: -6,-70 - 15473: -41,21 - 15474: -41,20 - 15475: -41,17 - 15476: -41,16 - 15477: -41,15 - 15478: -41,14 - 15479: -41,11 - 15480: -41,10 - 15481: -41,9 - 15523: 0,-79 - 15524: 0,-78 - 15525: 0,-77 - 15753: 91,-4 - 15754: 91,-3 - 15765: 96,-3 - 17684: 7,82 - 17692: 7,74 - 18981: -11,-9 - 18982: -5,-9 - 18983: 2,-9 - 18984: 8,-9 - 19012: 14,-9 - 19921: 40,-10 - 19922: 40,-11 - 19923: 40,-13 - 19924: 40,-14 - 20426: -18,-5 - 20427: -18,-4 - 20428: -18,-3 - 20429: -18,-2 - 20430: -18,2 - 20431: -18,3 - 20432: -18,4 - 20433: -18,5 - 20434: -18,9 - 20435: -18,10 - 20436: -18,11 - 20437: -18,12 - 20438: -18,16 - 20439: -18,17 - 20440: -18,18 - 20441: -18,19 + 2059: -15,50 + 2060: -15,49 + 2061: -15,48 + 2069: -18,52 + 2070: -18,51 + 2071: -18,50 + 2075: -18,48 + 2076: -18,47 + 2077: -18,46 + 2078: -20,47 + 2079: -20,48 + 2080: -20,49 + 2081: -20,51 + 2123: -18,36 + 2124: -18,35 + 2125: -18,34 + 2126: -18,32 + 2127: -18,31 + 2128: -18,29 + 2129: -18,28 + 2130: -18,27 + 2131: -20,29 + 2132: -20,30 + 2133: -20,31 + 2134: -20,32 + 2135: -20,33 + 2136: -20,34 + 2267: -22,41 + 2360: -28,37 + 2361: -28,36 + 2362: -28,34 + 2363: -28,35 + 2364: -28,33 + 2365: -28,32 + 2375: -31,30 + 2376: -31,31 + 2709: -13,53 + 2780: -9,49 + 2781: -4,49 + 3020: -10,57 + 3027: -18,61 + 3028: -18,62 + 3029: -18,63 + 3030: -18,64 + 3099: -4,61 + 3100: -4,62 + 3101: -4,63 + 3102: -4,64 + 3103: -3,57 + 3111: -3,68 + 3113: -10,68 + 3126: -17,57 + 3135: -17,68 + 3226: -11,72 + 3227: -11,73 + 3228: -11,74 + 3229: -11,75 + 3237: -11,79 + 3238: -11,80 + 3239: -11,81 + 3240: -11,82 + 3241: -11,92 + 3242: -11,93 + 3243: -11,94 + 3244: -11,95 + 3263: -11,88 + 3264: -11,88 + 3265: -11,87 + 3266: -11,86 + 3267: -11,85 + 3287: -29,95 + 3288: -29,94 + 3289: -29,93 + 3290: -29,92 + 3291: -29,88 + 3292: -29,87 + 3293: -29,86 + 3294: -29,85 + 3295: -29,82 + 3296: -29,81 + 3297: -29,80 + 3298: -29,79 + 3299: -29,75 + 3300: -29,74 + 3301: -29,73 + 3302: -29,72 + 3314: -28,68 + 3528: 3,68 + 3535: 8,68 + 3621: 7,75 + 3672: 7,72 + 3673: 7,73 + 3674: 7,79 + 3675: 7,80 + 3676: 7,81 + 3783: 3,57 + 3830: 17,69 + 4159: -25,22 + 5189: 18,16 + 5190: 18,17 + 5191: 18,18 + 5192: 18,19 + 5193: 18,12 + 5194: 18,12 + 5195: 18,11 + 5196: 18,10 + 5197: 18,9 + 5216: 18,3 + 5217: 18,4 + 5218: 18,2 + 5219: 18,-2 + 5220: 18,-3 + 5221: 18,-4 + 5222: 18,-5 + 5233: -23,68 + 5523: -35,5 + 5524: -30,5 + 5525: -22,5 + 5589: -34,27 + 5590: -34,28 + 6241: -18,-12 + 6242: -18,-13 + 6243: -18,-14 + 6244: -18,-15 + 6245: -18,-16 + 6246: -18,-17 + 6328: 18,-17 + 6329: 18,-16 + 6330: 18,-15 + 6331: 18,-14 + 6332: 18,-13 + 6333: 18,-12 + 6354: -2,-14 + 6355: -2,-15 + 6364: 2,-17 + 6656: -21,-3 + 6657: -21,-2 + 6658: -21,-2 + 6661: -33,2 + 6662: -33,1 + 6663: -33,0 + 6664: -33,-1 + 6665: -33,-2 + 6666: -33,-3 + 6667: -33,-4 + 6668: -33,-5 + 6669: -33,-6 + 6670: -33,-7 + 6671: -33,-8 + 6672: -33,-9 + 6701: -31,1 + 6738: -35,-15 + 6739: -35,-14 + 6740: -35,-14 + 6741: -35,-13 + 6742: -35,-12 + 6764: -30,-12 + 6765: -30,-13 + 6766: -30,-14 + 6767: -30,-14 + 6768: -30,-15 + 6988: -26,-17 + 6989: -26,-16 + 6990: -26,-16 + 6991: -22,-17 + 6992: -22,-17 + 6993: -22,-16 + 7026: 7,-20 + 7027: -4,-20 + 7028: -11,-20 + 7033: 14,-20 + 7034: 18,5 + 7145: 25,5 + 7212: 32,5 + 8044: 62,-15 + 8045: 62,-14 + 8046: 62,-13 + 8047: 58,-14 + 8048: 58,-27 + 8049: 60,-27 + 8050: 62,-28 + 8051: 62,-27 + 8052: 62,-26 + 8061: 60,-14 + 8263: 31,-11 + 8264: 25,-11 + 8265: 25,-11 + 8274: 41,-14 + 8275: 41,-12 + 8276: 41,-12 + 8277: 41,-12 + 8278: 41,-10 + 8279: 41,-11 + 8329: 41,-13 + 8330: 41,-13 + 8470: 48,-20 + 8471: 53,-20 + 8472: 53,-20 + 8709: 0,-76 + 8710: 0,-80 + 8714: -3,-78 + 8770: 11,-25 + 8771: 11,-26 + 8785: -7,-26 + 8786: -7,-25 + 8787: -7,-25 + 8851: 0,-27 + 8852: 0,-26 + 8853: 0,-25 + 8854: 0,-24 + 8896: 0,-35 + 8897: 0,-34 + 8898: 0,-34 + 8899: 0,-33 + 8900: 0,-32 + 8901: 0,-31 + 8902: 0,-31 + 8944: -3,-25 + 8945: -3,-25 + 8946: -3,-26 + 8979: -16,-26 + 8980: -16,-25 + 9109: 2,-24 + 9412: 0,-50 + 9413: 0,-49 + 9414: 0,-49 + 9415: 0,-45 + 9416: 0,-46 + 9417: 0,-48 + 9418: 0,-48 + 9419: 0,-47 + 9420: 0,-42 + 9421: 0,-41 + 9422: 0,-40 + 9423: 0,-40 + 9424: 0,-39 + 9425: 0,-52 + 9426: 0,-53 + 9427: 0,-54 + 9428: 0,-55 + 9432: 0,-44 + 9440: 0,-61 + 9441: 0,-60 + 9442: 0,-59 + 9466: -5,-73 + 9467: -5,-72 + 9468: -2,-69 + 9469: -2,-70 + 9470: -2,-71 + 9490: 72,-51 + 9549: 15,-26 + 9550: 15,-25 + 10691: 76,-45 + 12755: -41,22 + 13492: -41,-63 + 14892: -20,50 + 14992: -12,23 + 14993: -2,23 + 14994: 5,23 + 14995: 15,23 + 15363: -6,-70 + 15438: -41,21 + 15439: -41,20 + 15440: -41,17 + 15441: -41,16 + 15442: -41,15 + 15443: -41,14 + 15444: -41,11 + 15445: -41,10 + 15446: -41,9 + 15488: 0,-79 + 15489: 0,-78 + 15490: 0,-77 + 15607: 91,-4 + 15608: 91,-3 + 15619: 96,-3 + 17538: 7,82 + 17546: 7,74 + 18816: -11,-9 + 18817: -5,-9 + 18818: 2,-9 + 18819: 8,-9 + 18847: 14,-9 + 19756: 40,-10 + 19757: 40,-11 + 19758: 40,-13 + 19759: 40,-14 + 20261: -18,-5 + 20262: -18,-4 + 20263: -18,-3 + 20264: -18,-2 + 20265: -18,2 + 20266: -18,3 + 20267: -18,4 + 20268: -18,5 + 20269: -18,9 + 20270: -18,10 + 20271: -18,11 + 20272: -18,12 + 20273: -18,16 + 20274: -18,17 + 20275: -18,18 + 20276: -18,19 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 4119: -18,19 - 4120: -18,18 - 4121: -18,17 - 4122: -18,16 - 4123: -18,11 - 4124: -18,10 - 4125: -18,9 - 4126: -18,12 + 4092: -18,19 + 4093: -18,18 + 4094: -18,17 + 4095: -18,16 + 4096: -18,11 + 4097: -18,10 + 4098: -18,9 + 4099: -18,12 - node: color: '#FFFFFFFF' id: BushAThree @@ -16893,23 +16895,23 @@ entities: color: '#FFFFFFFF' id: BushCThree decals: - 2875: -33,41 + 2848: -33,41 - node: color: '#FFFFFFFF' id: Busha1 decals: 980: -43.133636,-38.091503 - 1592: -38,35 + 1565: -38,35 - node: color: '#FFFFFFFF' id: Busha2 decals: - 1593: -38,31 + 1566: -38,31 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1594: -41,31 + 1567: -41,31 - node: color: '#FFFFFFFF' id: Bushb1 @@ -16919,7 +16921,7 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 15572: 73,-20 + 15537: 73,-20 - node: color: '#FFFFFFFF' id: Bushb3 @@ -16975,7 +16977,7 @@ entities: id: Caution decals: 846: 92,26 - 13334: -58,22 + 13299: -58,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -16989,51 +16991,51 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 13331: -58,25 - 13332: -58,25 - 13333: -58,25 + 13296: -58,25 + 13297: -58,25 + 13298: -58,25 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 19528: 54.897575,4.5646844 + 19363: 54.897575,4.5646844 - node: color: '#3EB38896' id: CheckerNESW decals: - 14044: -68,56 - 14045: -67,56 - 14046: -68,55 - 14047: -68,54 - 14048: -67,54 - 14049: -67,55 - 14050: -66,56 - 14051: -66,55 - 14052: -66,54 - 14053: -65,54 - 14054: -65,55 - 14055: -65,56 - 14056: -64,54 - 14057: -64,55 - 14058: -64,56 - 14059: -63,56 - 14060: -63,55 - 14061: -63,54 - 14062: -62,54 - 14063: -62,55 - 14064: -62,56 - 14065: -62,57 - 14066: -63,57 - 14067: -63,58 - 14068: -62,58 - 14069: -62,59 - 14070: -63,59 - 14071: -63,60 - 14072: -62,60 - 14073: -62,61 - 14074: -63,61 - 14075: -70,55 + 14009: -68,56 + 14010: -67,56 + 14011: -68,55 + 14012: -68,54 + 14013: -67,54 + 14014: -67,55 + 14015: -66,56 + 14016: -66,55 + 14017: -66,54 + 14018: -65,54 + 14019: -65,55 + 14020: -65,56 + 14021: -64,54 + 14022: -64,55 + 14023: -64,56 + 14024: -63,56 + 14025: -63,55 + 14026: -63,54 + 14027: -62,54 + 14028: -62,55 + 14029: -62,56 + 14030: -62,57 + 14031: -63,57 + 14032: -63,58 + 14033: -62,58 + 14034: -62,59 + 14035: -63,59 + 14036: -63,60 + 14037: -62,60 + 14038: -62,61 + 14039: -63,61 + 14040: -70,55 - node: color: '#808080FF' id: CheckerNESW @@ -17050,499 +17052,499 @@ entities: color: '#9D9D97FF' id: CheckerNWSE decals: - 2667: 2,52 - 2668: 2,50 - 2669: 2,51 - 2670: 2,51 - 2671: 1,51 - 2672: 1,50 - 2673: 0,50 - 2674: -1,50 - 2675: -1,51 - 2676: 0,51 - 2677: 0,52 - 2678: -1,54 - 2679: 0,53 - 2680: -1,53 - 2681: 0,54 - 2682: 1,53 - 2683: 2,53 - 2684: 3,54 - 2685: 3,50 - 2686: 3,51 - 2687: 3,52 - 2688: 3,53 - 2689: 1,52 - 2690: -1,52 + 2640: 2,52 + 2641: 2,50 + 2642: 2,51 + 2643: 2,51 + 2644: 1,51 + 2645: 1,50 + 2646: 0,50 + 2647: -1,50 + 2648: -1,51 + 2649: 0,51 + 2650: 0,52 + 2651: -1,54 + 2652: 0,53 + 2653: -1,53 + 2654: 0,54 + 2655: 1,53 + 2656: 2,53 + 2657: 3,54 + 2658: 3,50 + 2659: 3,51 + 2660: 3,52 + 2661: 3,53 + 2662: 1,52 + 2663: -1,52 - node: color: '#DA8BC9FF' id: CheckerNWSE decals: - 16292: -67,-46 - 16293: -66,-46 - 16294: -66,-47 - 16295: -66,-48 - 16296: -65,-47 - 16297: -65,-48 - 16298: -64,-48 - 16299: -64,-47 - 16300: -64,-46 - 16301: -65,-46 - 16302: -63,-46 - 16303: -62,-46 - 16304: -62,-47 - 16305: -62,-48 - 16306: -63,-45 - 16307: -64,-45 - 16308: -65,-45 + 16146: -67,-46 + 16147: -66,-46 + 16148: -66,-47 + 16149: -66,-48 + 16150: -65,-47 + 16151: -65,-48 + 16152: -64,-48 + 16153: -64,-47 + 16154: -64,-46 + 16155: -65,-46 + 16156: -63,-46 + 16157: -62,-46 + 16158: -62,-47 + 16159: -62,-48 + 16160: -63,-45 + 16161: -64,-45 + 16162: -65,-45 - node: color: '#FFFF00D8' id: ConcreteTrimCornerNe decals: - 14076: -62,61 + 14041: -62,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNe decals: - 14089: -62,61 + 14054: -62,61 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 2120: -21,39 - 2216: -20,40 - 7892: 75,-16 - 7938: 68,-24 - 12726: -40,34 - 12739: -38,33 - 15847: 97,7 + 2093: -21,39 + 2189: -20,40 + 7865: 75,-16 + 7911: 68,-24 + 12691: -40,34 + 12704: -38,33 + 15701: 97,7 - node: color: '#FFFF00D9' id: ConcreteTrimCornerNw decals: - 14077: -63,61 + 14042: -63,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNw decals: - 14090: -63,61 - 14103: -68,56 + 14055: -63,61 + 14068: -68,56 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 2119: -17,39 - 2215: -18,40 - 7937: 74,-24 - 7944: 67,-16 + 2092: -17,39 + 2188: -18,40 + 7910: 74,-24 + 7917: 67,-16 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSe decals: - 14092: -62,54 + 14057: -62,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 2121: -21,43 - 2214: -20,42 - 7973: 68,-17 - 7998: 75,-25 + 2094: -21,43 + 2187: -20,42 + 7946: 68,-17 + 7971: 75,-25 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSw decals: - 14099: -68,54 + 14064: -68,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 2122: -17,43 - 2218: -18,42 - 7972: 74,-17 - 7999: 67,-25 - 12730: -38,32 + 2095: -17,43 + 2191: -18,42 + 7945: 74,-17 + 7972: 67,-25 + 12695: -38,32 - node: color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 2203: -18,41 + 2176: -18,41 - node: color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 2201: -19,42 + 2174: -19,42 - node: color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 2202: -19,40 - 12727: -40,32 + 2175: -19,40 + 12692: -40,32 - node: color: '#FFFF00FF' id: ConcreteTrimEndW decals: - 14101: -70,55 + 14066: -70,55 - node: color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 2200: -20,41 + 2173: -20,41 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNe decals: - 14105: -67,56 + 14070: -67,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 2127: -21,38 - 2129: -22,39 - 2204: -19,41 - 2222: -21,40 - 2223: -20,39 - 2236: -18,43 - 2237: -17,42 - 2882: -33,43 - 5992: -3,9 - 6037: -1,-5 - 6050: -1,7 - 6051: -1,3 - 6052: -1,-1 - 7954: 67,-24 - 7955: 68,-25 - 7956: 67,-22 - 7957: 67,-19 - 8020: 75,-22 - 8021: 75,-19 - 12737: -40,33 - 12738: -38,32 + 2100: -21,38 + 2102: -22,39 + 2177: -19,41 + 2195: -21,40 + 2196: -20,39 + 2209: -18,43 + 2210: -17,42 + 2855: -33,43 + 5965: -3,9 + 6010: -1,-5 + 6023: -1,7 + 6024: -1,3 + 6025: -1,-1 + 7927: 67,-24 + 7928: 68,-25 + 7929: 67,-22 + 7930: 67,-19 + 7991: 75,-22 + 7992: 75,-19 + 12702: -40,33 + 12703: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNw decals: - 14102: -68,55 - 14104: -67,56 - 14110: -63,56 + 14067: -68,55 + 14069: -67,56 + 14075: -63,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 2126: -16,39 - 2128: -17,38 - 2205: -19,41 - 2233: -21,42 - 2234: -21,42 - 2235: -20,43 - 2238: -17,40 - 2239: -18,39 - 5993: 1,9 - 6038: -1,-5 - 6047: -1,-1 - 6048: -1,3 - 6049: -1,7 - 7975: 74,-25 - 7976: 75,-24 - 7977: 75,-22 - 7978: 75,-19 - 7979: 67,-22 - 7980: 67,-19 + 2099: -16,39 + 2101: -17,38 + 2178: -19,41 + 2206: -21,42 + 2207: -21,42 + 2208: -20,43 + 2211: -17,40 + 2212: -18,39 + 5966: 1,9 + 6011: -1,-5 + 6020: -1,-1 + 6021: -1,3 + 6022: -1,7 + 7948: 74,-25 + 7949: 75,-24 + 7950: 75,-22 + 7951: 75,-19 + 7952: 67,-22 + 7953: 67,-19 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSe decals: - 14093: -63,54 + 14058: -63,54 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 2130: -21,44 - 2206: -19,41 - 2224: -21,42 - 2225: -20,43 - 2226: -17,40 - 2227: -17,40 - 2228: -18,39 - 2297: -22,43 - 2881: -33,40 - 5990: -3,-6 - 6040: -1,-5 - 6041: -1,-1 - 6042: -1,3 - 6043: -1,7 - 7959: 67,-22 - 7960: 67,-19 - 7961: 67,-17 - 7962: 68,-16 - 8018: 75,-19 - 8019: 75,-22 - 12736: -40,33 + 2103: -21,44 + 2179: -19,41 + 2197: -21,42 + 2198: -20,43 + 2199: -17,40 + 2200: -17,40 + 2201: -18,39 + 2270: -22,43 + 2854: -33,40 + 5963: -3,-6 + 6013: -1,-5 + 6014: -1,-1 + 6015: -1,3 + 6016: -1,7 + 7932: 67,-22 + 7933: 67,-19 + 7934: 67,-17 + 7935: 68,-16 + 7989: 75,-19 + 7990: 75,-22 + 12701: -40,33 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSw decals: - 14094: -63,54 - 14100: -68,55 + 14059: -63,54 + 14065: -68,55 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 2131: -17,44 - 2132: -16,43 - 2207: -19,41 - 2229: -17,42 - 2230: -18,43 - 2231: -20,39 - 2232: -21,40 - 2873: -32,44 - 5991: 1,-6 - 6039: -1,-5 - 6044: -1,7 - 6045: -1,3 - 6046: -1,-1 - 7951: 75,-22 - 7952: 75,-19 - 7953: 75,-17 - 8016: 67,-22 - 8017: 67,-19 - 12734: -40,34 - 12735: -38,33 + 2104: -17,44 + 2105: -16,43 + 2180: -19,41 + 2202: -17,42 + 2203: -18,43 + 2204: -20,39 + 2205: -21,40 + 2846: -32,44 + 5964: 1,-6 + 6012: -1,-5 + 6017: -1,7 + 6018: -1,3 + 6019: -1,-1 + 7924: 75,-22 + 7925: 75,-19 + 7926: 75,-17 + 7987: 67,-22 + 7988: 67,-19 + 12699: -40,34 + 12700: -38,33 - node: color: '#FFFF00D9' id: ConcreteTrimLineE decals: - 14078: -62,60 - 14079: -62,59 - 14080: -62,59 - 14081: -62,58 - 14082: -62,57 - 14083: -62,56 + 14043: -62,60 + 14044: -62,59 + 14045: -62,59 + 14046: -62,58 + 14047: -62,57 + 14048: -62,56 - node: color: '#FFFF00FF' id: ConcreteTrimLineE decals: - 14084: -62,56 - 14085: -62,57 - 14086: -62,58 - 14087: -62,59 - 14088: -62,60 - 14091: -62,55 + 14049: -62,56 + 14050: -62,57 + 14051: -62,58 + 14052: -62,59 + 14053: -62,60 + 14056: -62,55 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 2133: -22,40 - 2134: -22,41 - 2219: -21,41 - 2298: -22,42 - 5421: 0,-6 - 5422: 0,-6 - 5423: 0,-5 - 5424: 0,-4 - 5425: 0,-3 - 5426: 0,-2 - 5427: 0,-1 - 5428: 0,0 - 5429: 0,1 - 5430: 0,1 - 5431: 0,2 - 5432: 0,2 - 5433: 0,3 - 5434: 0,3 - 5435: 0,4 - 5436: 0,5 - 5437: 0,5 - 5438: 0,6 - 5439: 0,7 - 5440: 0,8 - 5441: 0,8 - 5442: 0,9 - 6033: 0,7 - 6034: 0,3 - 6035: 0,-1 - 6036: 0,-5 - 7924: 67,-21 - 7925: 67,-20 - 7926: 67,-23 - 7974: 67,-18 - 7981: 75,-17 - 7982: 75,-18 - 7983: 75,-20 - 7984: 75,-21 - 7985: 75,-23 - 7986: 75,-24 - 8012: 66,-22 - 8013: 66,-19 + 2106: -22,40 + 2107: -22,41 + 2192: -21,41 + 2271: -22,42 + 5394: 0,-6 + 5395: 0,-6 + 5396: 0,-5 + 5397: 0,-4 + 5398: 0,-3 + 5399: 0,-2 + 5400: 0,-1 + 5401: 0,0 + 5402: 0,1 + 5403: 0,1 + 5404: 0,2 + 5405: 0,2 + 5406: 0,3 + 5407: 0,3 + 5408: 0,4 + 5409: 0,5 + 5410: 0,5 + 5411: 0,6 + 5412: 0,7 + 5413: 0,8 + 5414: 0,8 + 5415: 0,9 + 6006: 0,7 + 6007: 0,3 + 6008: 0,-1 + 6009: 0,-5 + 7897: 67,-21 + 7898: 67,-20 + 7899: 67,-23 + 7947: 67,-18 + 7954: 75,-17 + 7955: 75,-18 + 7956: 75,-20 + 7957: 75,-21 + 7958: 75,-23 + 7959: 75,-24 + 7983: 66,-22 + 7984: 66,-19 - node: color: '#FFFF00FF' id: ConcreteTrimLineN decals: - 14106: -66,56 - 14107: -65,56 - 14108: -65,56 - 14109: -64,56 + 14071: -66,56 + 14072: -65,56 + 14073: -65,56 + 14074: -64,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 2116: -20,38 - 2117: -19,38 - 2118: -18,38 - 2221: -19,39 - 7893: 74,-16 - 7894: 73,-16 - 7895: 72,-16 - 7896: 71,-16 - 7897: 70,-16 - 7898: 69,-16 - 7899: 68,-16 - 7900: 68,-19 - 7901: 69,-19 - 7902: 70,-19 - 7903: 71,-19 - 7904: 72,-19 - 7905: 73,-19 - 7906: 74,-19 - 7907: 68,-22 - 7908: 70,-22 - 7909: 71,-22 - 7910: 72,-22 - 7911: 73,-22 - 7912: 69,-22 - 7913: 73,-22 - 7914: 74,-22 - 7939: 69,-25 - 7940: 70,-25 - 7941: 71,-25 - 7942: 72,-25 - 7943: 73,-25 - 12725: -41,34 - 12731: -39,33 - 12732: -38,33 + 2089: -20,38 + 2090: -19,38 + 2091: -18,38 + 2194: -19,39 + 7866: 74,-16 + 7867: 73,-16 + 7868: 72,-16 + 7869: 71,-16 + 7870: 70,-16 + 7871: 69,-16 + 7872: 68,-16 + 7873: 68,-19 + 7874: 69,-19 + 7875: 70,-19 + 7876: 71,-19 + 7877: 72,-19 + 7878: 73,-19 + 7879: 74,-19 + 7880: 68,-22 + 7881: 70,-22 + 7882: 71,-22 + 7883: 72,-22 + 7884: 73,-22 + 7885: 69,-22 + 7886: 73,-22 + 7887: 74,-22 + 7912: 69,-25 + 7913: 70,-25 + 7914: 71,-25 + 7915: 72,-25 + 7916: 73,-25 + 12690: -41,34 + 12696: -39,33 + 12697: -38,33 - node: color: '#FFFF00FF' id: ConcreteTrimLineS decals: - 14095: -64,54 - 14096: -65,54 - 14097: -66,54 - 14098: -67,54 + 14060: -64,54 + 14061: -65,54 + 14062: -66,54 + 14063: -67,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 2135: -20,44 - 2136: -19,44 - 2137: -18,44 - 2217: -19,43 - 7917: 68,-19 - 7918: 69,-19 - 7919: 70,-19 - 7920: 71,-19 - 7921: 72,-19 - 7922: 73,-19 - 7923: 74,-19 - 7927: 68,-22 - 7928: 69,-22 - 7929: 70,-22 - 7930: 71,-22 - 7931: 73,-22 - 7932: 73,-22 - 7933: 72,-22 - 7934: 74,-22 - 7935: 73,-22 - 7963: 69,-16 - 7964: 70,-16 - 7965: 71,-16 - 7966: 71,-16 - 7967: 72,-16 - 7968: 72,-16 - 7969: 72,-16 - 7970: 72,-16 - 7971: 73,-16 - 7987: 68,-25 - 7988: 68,-25 - 7989: 68,-25 - 7990: 69,-25 - 7991: 70,-25 - 7992: 71,-25 - 7993: 71,-25 - 7994: 72,-25 - 7995: 72,-25 - 7996: 74,-25 - 7997: 74,-25 - 12724: -41,34 - 12728: -39,33 - 12729: -38,32 + 2108: -20,44 + 2109: -19,44 + 2110: -18,44 + 2190: -19,43 + 7890: 68,-19 + 7891: 69,-19 + 7892: 70,-19 + 7893: 71,-19 + 7894: 72,-19 + 7895: 73,-19 + 7896: 74,-19 + 7900: 68,-22 + 7901: 69,-22 + 7902: 70,-22 + 7903: 71,-22 + 7904: 73,-22 + 7905: 73,-22 + 7906: 72,-22 + 7907: 74,-22 + 7908: 73,-22 + 7936: 69,-16 + 7937: 70,-16 + 7938: 71,-16 + 7939: 71,-16 + 7940: 72,-16 + 7941: 72,-16 + 7942: 72,-16 + 7943: 72,-16 + 7944: 73,-16 + 7960: 68,-25 + 7961: 68,-25 + 7962: 68,-25 + 7963: 69,-25 + 7964: 70,-25 + 7965: 71,-25 + 7966: 71,-25 + 7967: 72,-25 + 7968: 72,-25 + 7969: 74,-25 + 7970: 74,-25 + 12689: -41,34 + 12693: -39,33 + 12694: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimLineW decals: - 14111: -63,57 - 14112: -63,58 - 14113: -63,59 - 14114: -63,59 - 14115: -63,60 + 14076: -63,57 + 14077: -63,58 + 14078: -63,59 + 14079: -63,59 + 14080: -63,60 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 2123: -16,42 - 2124: -16,41 - 2125: -16,40 - 2220: -17,41 - 2869: -32,40 - 2870: -32,41 - 2871: -32,42 - 2872: -32,43 - 5443: -2,8 - 5444: -2,7 - 5445: -2,6 - 5446: -2,5 - 5447: -2,5 - 5448: -2,4 - 5449: -2,3 - 5450: -2,2 - 5451: -2,1 - 5452: -2,1 - 5453: -2,0 - 5454: -2,-1 - 5455: -2,-2 - 5456: -2,-2 - 5457: -2,-3 - 5458: -2,-4 - 5459: -2,-4 - 5460: -2,-5 - 5461: -2,-5 - 5462: -2,-6 - 6029: -2,-5 - 6030: -2,-1 - 6031: -2,3 - 6032: -2,7 - 7915: 75,-21 - 7916: 75,-20 - 7936: 75,-23 - 7945: 67,-17 - 7946: 67,-18 - 7947: 67,-20 - 7948: 67,-21 - 7949: 67,-23 - 7950: 67,-24 - 7958: 75,-18 - 8014: 76,-19 - 8015: 76,-22 - 12733: -40,33 - 18878: -2,9 + 2096: -16,42 + 2097: -16,41 + 2098: -16,40 + 2193: -17,41 + 2842: -32,40 + 2843: -32,41 + 2844: -32,42 + 2845: -32,43 + 5416: -2,8 + 5417: -2,7 + 5418: -2,6 + 5419: -2,5 + 5420: -2,5 + 5421: -2,4 + 5422: -2,3 + 5423: -2,2 + 5424: -2,1 + 5425: -2,1 + 5426: -2,0 + 5427: -2,-1 + 5428: -2,-2 + 5429: -2,-2 + 5430: -2,-3 + 5431: -2,-4 + 5432: -2,-4 + 5433: -2,-5 + 5434: -2,-5 + 5435: -2,-6 + 6002: -2,-5 + 6003: -2,-1 + 6004: -2,3 + 6005: -2,7 + 7888: 75,-21 + 7889: 75,-20 + 7909: 75,-23 + 7918: 67,-17 + 7919: 67,-18 + 7920: 67,-20 + 7921: 67,-21 + 7922: 67,-23 + 7923: 67,-24 + 7931: 75,-18 + 7985: 76,-19 + 7986: 76,-22 + 12698: -40,33 + 18713: -2,9 - node: color: '#FFFFFF25' id: Damaged decals: - 18879: 63,-40 - 18880: 64,-40 - 18881: 59,-42 - 18882: 60,-42 - 18883: 58,-42 + 18714: 63,-40 + 18715: 64,-40 + 18716: 59,-42 + 18717: 60,-42 + 18718: 58,-42 - node: color: '#FFFFFFFF' id: Delivery @@ -17592,79 +17594,79 @@ entities: 1216: 61,6 1217: 63,6 1244: 63,3 - 3154: -2,64 - 3155: -2,63 - 3156: -2,62 - 3157: -2,61 - 3248: -2,64 - 3249: -2,63 - 3250: -2,62 - 3251: -2,61 - 6053: -8,-16 - 6054: -8,-17 - 6055: -8,-13 - 6056: -8,-12 - 6063: -16,-16 - 6064: -16,-15 - 6065: -16,-14 - 6066: -16,-13 - 6067: -14,-16 - 6068: -14,-15 - 6069: -14,-14 - 6070: -14,-13 - 6071: -12,-13 - 6072: -12,-14 - 6073: -12,-15 - 6074: -12,-16 - 6075: -10,-16 - 6076: -10,-15 - 6077: -10,-14 - 6078: -10,-13 - 6079: -10,-13 - 6254: -13,-18 - 6255: -12,-18 - 6256: -11,-18 - 17491: -46,-9 - 17492: -46,-10 - 17493: -45,-10 - 17494: -45,-9 - 17495: -45,-6 - 17496: -47,-6 - 17497: -46,-6 - 17498: -45,-7 - 17499: -46,-7 - 17500: -48,-6 - 17501: -49,-6 - 17502: -49,-10 - 17503: -48,-10 - 17504: -47,-10 - 17505: -47,-9 - 17506: -47,-7 - 17937: -67,-13 - 17938: -68,-13 - 17939: -68,-12 - 17940: -67,-12 - 17941: -67,-11 - 17942: -68,-11 - 17943: -68,-10 - 17944: -67,-10 - 17945: -69,-13 - 17946: -69,-12 - 17947: -70,-12 - 17948: -70,-13 - 17949: -71,-13 - 17950: -71,-12 - 17951: -72,-12 - 17952: -72,-13 - 17953: -73,-13 - 17954: -73,-11 - 17955: -72,-11 - 17956: -72,-10 - 17957: -73,-10 - 17958: -73,-12 - 19533: 70,1 - 19534: 70,0 - 19535: 70,-1 + 3127: -2,64 + 3128: -2,63 + 3129: -2,62 + 3130: -2,61 + 3221: -2,64 + 3222: -2,63 + 3223: -2,62 + 3224: -2,61 + 6026: -8,-16 + 6027: -8,-17 + 6028: -8,-13 + 6029: -8,-12 + 6036: -16,-16 + 6037: -16,-15 + 6038: -16,-14 + 6039: -16,-13 + 6040: -14,-16 + 6041: -14,-15 + 6042: -14,-14 + 6043: -14,-13 + 6044: -12,-13 + 6045: -12,-14 + 6046: -12,-15 + 6047: -12,-16 + 6048: -10,-16 + 6049: -10,-15 + 6050: -10,-14 + 6051: -10,-13 + 6052: -10,-13 + 6227: -13,-18 + 6228: -12,-18 + 6229: -11,-18 + 17345: -46,-9 + 17346: -46,-10 + 17347: -45,-10 + 17348: -45,-9 + 17349: -45,-6 + 17350: -47,-6 + 17351: -46,-6 + 17352: -45,-7 + 17353: -46,-7 + 17354: -48,-6 + 17355: -49,-6 + 17356: -49,-10 + 17357: -48,-10 + 17358: -47,-10 + 17359: -47,-9 + 17360: -47,-7 + 17791: -67,-13 + 17792: -68,-13 + 17793: -68,-12 + 17794: -67,-12 + 17795: -67,-11 + 17796: -68,-11 + 17797: -68,-10 + 17798: -67,-10 + 17799: -69,-13 + 17800: -69,-12 + 17801: -70,-12 + 17802: -70,-13 + 17803: -71,-13 + 17804: -71,-12 + 17805: -72,-12 + 17806: -72,-13 + 17807: -73,-13 + 17808: -73,-11 + 17809: -72,-11 + 17810: -72,-10 + 17811: -73,-10 + 17812: -73,-12 + 19368: 70,1 + 19369: 70,0 + 19370: 70,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -17734,16 +17736,16 @@ entities: color: '#DA8B8BFF' id: DiagonalCheckerAOverlay decals: - 15791: 78,1 - 15792: 82,1 - 15793: 83,1 - 15794: 81,1 - 15795: 84,1 - 15796: 86,1 - 15797: 88,1 - 15798: 87,1 - 15799: 77,1 - 15800: 79,1 + 15645: 78,1 + 15646: 82,1 + 15647: 83,1 + 15648: 81,1 + 15649: 84,1 + 15650: 86,1 + 15651: 88,1 + 15652: 87,1 + 15653: 77,1 + 15654: 79,1 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay @@ -17756,892 +17758,902 @@ entities: color: '#B18BDAFF' id: DiagonalCheckerBOverlay decals: - 12774: -8,-34 - 12775: -7,-34 - 12776: -7,-33 - 12777: -8,-33 - 12778: -8,-32 - 12779: -7,-32 - 12780: -7,-32 + 12739: -8,-34 + 12740: -7,-34 + 12741: -7,-33 + 12742: -8,-33 + 12743: -8,-32 + 12744: -7,-32 + 12745: -7,-32 - node: color: '#DABC8BFF' id: DiagonalCheckerBOverlay decals: - 9653: 5,-32 - 9654: 5,-33 - 9655: 5,-34 - 9656: 6,-34 - 9657: 6,-33 - 9658: 6,-32 + 9618: 5,-32 + 9619: 5,-33 + 9620: 5,-34 + 9621: 6,-34 + 9622: 6,-33 + 9623: 6,-32 - node: color: '#FFFFFF02' id: DiagonalOverlay decals: - 14529: -16,23 - 14530: -15,23 - 14531: -14,23 - 14532: -13,23 - 14533: -6,23 - 14534: -5,23 - 14535: -4,23 - 14536: -3,23 - 14537: -19,16 - 14538: -19,17 - 14539: -19,18 - 14540: -19,19 - 14541: -19,9 - 14542: -19,10 - 14543: -19,11 - 14544: -19,12 - 14545: -22,30 - 14546: -22,31 - 14547: -22,32 - 14548: -22,33 - 14549: -21,34 - 14550: -21,33 - 14551: -21,32 - 14552: -21,30 - 14553: -21,29 - 14554: -21,31 - 14555: -19,27 - 14556: -19,28 - 14557: -19,29 - 14558: -19,32 - 14559: -19,31 - 14560: -19,36 - 14561: -19,35 - 14562: -19,34 - 14563: -23,41 - 14564: -19,48 - 14565: -19,47 - 14566: -19,46 - 14567: -17,47 - 14568: -17,48 - 14569: -16,48 - 14570: -16,49 - 14571: -17,49 - 14572: -17,50 - 14573: -16,50 - 14574: -17,51 - 14575: -19,52 - 14576: -19,51 - 14577: -19,50 - 14578: -22,49 - 14579: -22,50 - 14580: -21,50 - 14581: -21,51 - 14582: -21,49 - 14583: -22,48 - 14584: -21,47 - 14585: -21,48 - 14586: -18,57 - 14587: -19,57 - 14588: -20,57 - 14589: -11,57 - 14590: -12,57 - 14591: -13,57 - 14592: -4,57 - 14593: -5,57 - 14594: -6,57 - 14595: 2,57 - 14596: 1,57 - 14597: 0,57 - 14598: -5,64 - 14599: -5,63 - 14600: -5,62 - 14601: -5,61 - 14602: -6,68 - 14603: -5,68 - 14604: -4,68 - 14605: -13,68 - 14606: -11,68 - 14607: -12,68 - 14608: -20,68 - 14609: -19,68 - 14610: -18,68 - 14611: -25,68 - 14612: -26,68 - 14613: -24,68 - 14614: -29,68 - 14615: -30,68 - 14616: -31,68 - 14617: -30,75 - 14618: -30,74 - 14619: -30,73 - 14620: -30,72 - 14621: -30,82 - 14622: -30,81 - 14623: -30,80 - 14624: -30,79 - 14625: -30,86 - 14626: -30,85 - 14627: -30,88 - 14628: -30,95 - 14629: -30,94 - 14630: -30,92 - 14631: -30,93 - 14632: -12,94 - 14633: -12,93 - 14634: -12,92 - 14635: -12,95 - 14636: -12,85 - 14637: -12,86 - 14638: -12,87 - 14639: -12,88 - 14640: -12,79 - 14641: -12,80 - 14642: -12,81 - 14643: -12,82 - 14644: -12,72 - 14645: -12,73 - 14646: -12,74 - 14647: -12,75 - 14648: 2,68 - 14649: 1,68 - 14650: 0,68 - 14651: 7,68 - 14652: 6,68 - 14653: 5,68 - 14654: 6,74 - 14655: 6,72 - 14656: 6,73 - 14657: 6,75 - 14658: 6,81 - 14659: 6,82 - 14660: 6,80 - 14661: 6,79 - 14662: -11,49 - 14663: -10,49 - 14664: -6,49 - 14665: -5,49 - 14666: -19,2 - 14667: -19,4 - 14668: -19,5 - 14669: -12,14 - 14670: -12,15 - 14671: -6,14 - 14672: -7,14 - 14673: -8,14 - 14674: -9,14 - 14675: -10,14 - 14676: 1,16 - 14677: 0,16 - 14678: -2,16 - 14679: -3,16 - 14680: -1,16 - 14681: 8,14 - 14682: 7,14 - 14683: 6,14 - 14684: 4,14 - 14685: 5,14 - 14686: 10,15 - 14687: 10,14 - 14688: 17,18 - 14689: 17,19 - 14690: 17,17 - 14691: 17,16 - 14692: 14,23 - 14693: 13,23 - 14694: 12,23 - 14695: 11,23 - 14696: 1,23 - 14697: 2,23 - 14698: 3,23 - 14699: 4,23 - 14700: 17,9 - 14701: 17,10 - 14702: 17,11 - 14703: 17,12 - 14704: 17,3 - 14705: 17,2 - 14706: 17,4 - 14707: 17,5 - 14708: 24,5 - 14709: 23,5 - 14710: 22,5 - 14711: 21,5 - 14712: 31,5 - 14713: 30,5 - 14714: 29,5 - 14715: 28,5 - 14716: 17,-5 - 14717: 17,-4 - 14718: 17,-3 - 14719: 17,-2 - 14720: 17,-17 - 14721: 17,-16 - 14722: 17,-15 - 14723: 17,-14 - 14724: 17,-13 - 14725: 17,-12 - 14726: 21,-11 - 14727: 22,-11 - 14728: 23,-11 - 14729: 24,-11 - 14730: 28,-11 - 14731: 29,-11 - 14732: 30,-11 - 14733: 47,-20 - 14734: 46,-20 - 14735: 45,-20 - 14736: 44,-20 - 14737: 49,-20 - 14738: 50,-20 - 14739: 51,-20 - 14740: 52,-20 - 14741: 10,-20 - 14742: 11,-20 - 14743: 12,-20 - 14744: 13,-20 - 14745: 3,-20 - 14746: 4,-20 - 14747: 5,-20 - 14748: 6,-20 - 14749: -8,-20 - 14750: -7,-20 - 14751: -6,-20 - 14752: -5,-20 - 14753: -14,-20 - 14754: -13,-20 - 14755: -12,-20 - 14756: -15,-20 - 14757: -12,-26 - 14758: -12,-25 - 14759: -11,-25 - 14760: -11,-26 - 14761: -10,-26 - 14762: -10,-25 - 14763: -9,-25 - 14764: -9,-26 - 14765: -8,-26 - 14766: -8,-25 - 14767: 6,-25 - 14768: 7,-25 - 14769: 8,-25 - 14770: 9,-25 - 14771: 10,-25 - 14772: 10,-26 - 14773: 9,-26 - 14774: 8,-26 - 14775: 7,-26 - 14776: 6,-26 - 14777: -1,-27 - 14778: -1,-24 - 14779: -1,-25 - 14780: -1,-26 - 14781: -1,-34 - 14782: -1,-33 - 14783: -1,-32 - 14784: -1,-31 - 14785: -1,-35 - 14786: -1,-42 - 14787: -1,-40 - 14788: -1,-39 - 14789: -1,-50 - 14790: -1,-49 - 14791: -1,-48 - 14792: -1,-47 - 14793: -1,-46 - 14794: -1,-45 - 14795: -1,-44 - 14796: -1,-55 - 14797: -1,-54 - 14798: -1,-53 - 14799: -1,-52 - 14800: -1,-59 - 14801: -1,-60 - 14802: -1,-61 - 14803: -19,-12 - 14804: -19,-13 - 14805: -19,-14 - 14806: -19,-15 - 14807: -19,-16 - 14808: -19,-17 - 14809: -19,-2 - 14810: -19,-3 - 14811: -19,-4 - 14812: -19,-5 - 14813: -27,5 - 14814: -26,5 - 14815: -25,5 - 14816: -24,5 - 14817: -23,5 - 14818: -31,5 - 14819: -32,5 - 14820: -33,5 - 14821: -38,5 - 14822: -37,5 - 14823: -36,5 - 14824: -19,61 - 14825: -19,62 - 14826: -19,63 - 14827: -19,64 - 14828: 17,-40 - 14829: 17,-41 - 14830: 17,-42 - 14831: 17,-43 - 14832: 17,-45 - 14833: 17,-44 - 14834: 11,-35 - 14835: 12,-35 - 14836: 13,-35 - 14837: 17,-31 - 14838: 17,-32 - 14839: 17,-34 - 14840: 17,-33 - 14841: 27,-35 - 14842: 26,-35 - 14843: 25,-35 - 14844: 23,-35 - 14845: 22,-35 - 14846: 24,-35 - 14847: 32,-35 - 14848: 36,-35 - 14849: 35,-35 - 14850: 34,-35 - 14851: 33,-35 - 14852: 31,-35 - 14853: 27,-43 - 14854: 27,-44 - 14855: 27,-42 - 14856: 27,-41 - 14857: 27,-40 - 14858: 27,-51 - 14859: 27,-50 - 14860: 27,-49 - 14861: 27,-48 - 14862: 27,-47 - 14863: -18,-35 - 14864: -14,-35 - 14865: -15,-35 - 14866: -16,-35 - 14867: -17,-35 - 14868: -29,-35 - 14869: -28,-35 - 14870: -27,-35 - 14871: -26,-35 - 14872: -25,-35 - 14873: -24,-35 - 14874: -23,-26 - 14875: -23,-27 - 14876: -23,-28 - 14877: -23,-29 - 14878: -23,-30 - 14879: -29,-41 - 14880: -29,-40 - 14881: -29,-39 - 14882: -14,-43 - 14883: -14,-42 - 14884: -14,-41 - 14885: -14,-40 - 14886: -14,-39 - 14887: -14,-53 - 14888: -14,-52 - 14889: -14,-51 - 14890: -14,-50 - 14891: -14,-49 - 14892: -14,-48 - 14893: -14,-47 - 14894: 29,-49 - 14895: 29,-48 - 14896: 29,-47 - 14897: 29,-51 - 14898: 29,-52 - 14899: 29,-53 - 14900: 30,-46 - 14901: 31,-46 - 14902: 32,-46 - 14903: 33,-46 - 14904: 34,-46 - 15147: -30,87 - 15349: -1,-41 - 15498: -42,14 - 15499: -42,16 - 15500: -42,17 - 15501: -42,20 - 15502: -42,21 - 15503: -42,22 - 15504: -42,11 - 15505: -42,10 - 15506: -42,9 - 15519: -42,15 - 18985: -15,-9 - 18986: -14,-9 - 18987: -13,-9 - 18988: -12,-9 - 18989: -9,-9 - 18990: -8,-9 - 18991: -7,-9 - 18992: -6,-9 - 18993: -3,-9 - 18994: -2,-9 - 18995: -1,-9 - 18996: 0,-9 - 18997: 1,-9 - 18998: 4,-9 - 18999: 5,-9 - 19000: 6,-9 - 19001: 7,-9 - 19002: 10,-9 - 19003: 11,-9 - 19004: 12,-9 - 19005: 13,-9 - 19598: -14,28 - 19599: -14,27 - 19600: -14,26 - 19601: -13,26 - 19602: -12,26 - 19603: -11,27 - 19604: -11,28 - 19605: -11,29 - 19606: -11,30 - 19607: -12,30 - 19608: -11,31 - 19609: -11,32 - 19610: -11,33 - 19611: -12,34 - 19612: -13,34 - 19613: -14,34 - 19614: -14,33 - 19615: -14,32 - 19616: -14,31 - 19617: -15,31 - 19618: -15,30 - 19619: -15,29 - 19620: -10,30 - 19621: -9,30 - 19622: -9,34 - 19623: -10,34 - 19624: -9,26 - 19625: -10,26 - 19688: -14,29 - 19862: 34,-14 - 19863: 34,-13 - 19864: 34,-12 - 19865: 34,-11 - 19866: 34,-10 - 19867: 35,-9 - 19868: 36,-9 - 19869: 37,-9 - 19870: 39,-9 - 19871: 38,-9 - 19872: 40,-10 - 19873: 40,-11 - 19874: 40,-12 - 19875: 39,-12 - 19876: 38,-12 - 19877: 36,-12 - 19878: 35,-12 - 19879: 37,-12 - 19880: 35,-15 - 19881: 36,-15 - 19882: 37,-15 - 19883: 38,-15 - 19884: 39,-15 - 19885: 40,-14 - 19886: 40,-13 - 20464: -19,3 + 14494: -16,23 + 14495: -15,23 + 14496: -14,23 + 14497: -13,23 + 14498: -6,23 + 14499: -5,23 + 14500: -4,23 + 14501: -3,23 + 14502: -19,16 + 14503: -19,17 + 14504: -19,18 + 14505: -19,19 + 14506: -19,9 + 14507: -19,10 + 14508: -19,11 + 14509: -19,12 + 14510: -22,30 + 14511: -22,31 + 14512: -22,32 + 14513: -22,33 + 14514: -21,34 + 14515: -21,33 + 14516: -21,32 + 14517: -21,30 + 14518: -21,29 + 14519: -21,31 + 14520: -19,27 + 14521: -19,28 + 14522: -19,29 + 14523: -19,32 + 14524: -19,31 + 14525: -19,36 + 14526: -19,35 + 14527: -19,34 + 14528: -23,41 + 14529: -19,48 + 14530: -19,47 + 14531: -19,46 + 14532: -17,47 + 14533: -17,48 + 14534: -16,48 + 14535: -16,49 + 14536: -17,49 + 14537: -17,50 + 14538: -16,50 + 14539: -17,51 + 14540: -19,52 + 14541: -19,51 + 14542: -19,50 + 14543: -22,49 + 14544: -22,50 + 14545: -21,50 + 14546: -21,51 + 14547: -21,49 + 14548: -22,48 + 14549: -21,47 + 14550: -21,48 + 14551: -18,57 + 14552: -19,57 + 14553: -20,57 + 14554: -11,57 + 14555: -12,57 + 14556: -13,57 + 14557: -4,57 + 14558: -5,57 + 14559: -6,57 + 14560: 2,57 + 14561: 1,57 + 14562: 0,57 + 14563: -5,64 + 14564: -5,63 + 14565: -5,62 + 14566: -5,61 + 14567: -6,68 + 14568: -5,68 + 14569: -4,68 + 14570: -13,68 + 14571: -11,68 + 14572: -12,68 + 14573: -20,68 + 14574: -19,68 + 14575: -18,68 + 14576: -25,68 + 14577: -26,68 + 14578: -24,68 + 14579: -29,68 + 14580: -30,68 + 14581: -31,68 + 14582: -30,75 + 14583: -30,74 + 14584: -30,73 + 14585: -30,72 + 14586: -30,82 + 14587: -30,81 + 14588: -30,80 + 14589: -30,79 + 14590: -30,86 + 14591: -30,85 + 14592: -30,88 + 14593: -30,95 + 14594: -30,94 + 14595: -30,92 + 14596: -30,93 + 14597: -12,94 + 14598: -12,93 + 14599: -12,92 + 14600: -12,95 + 14601: -12,85 + 14602: -12,86 + 14603: -12,87 + 14604: -12,88 + 14605: -12,79 + 14606: -12,80 + 14607: -12,81 + 14608: -12,82 + 14609: -12,72 + 14610: -12,73 + 14611: -12,74 + 14612: -12,75 + 14613: 2,68 + 14614: 1,68 + 14615: 0,68 + 14616: 7,68 + 14617: 6,68 + 14618: 5,68 + 14619: 6,74 + 14620: 6,72 + 14621: 6,73 + 14622: 6,75 + 14623: 6,81 + 14624: 6,82 + 14625: 6,80 + 14626: 6,79 + 14627: -11,49 + 14628: -10,49 + 14629: -6,49 + 14630: -5,49 + 14631: -19,2 + 14632: -19,4 + 14633: -19,5 + 14634: -12,14 + 14635: -12,15 + 14636: -6,14 + 14637: -7,14 + 14638: -8,14 + 14639: -9,14 + 14640: -10,14 + 14641: 1,16 + 14642: 0,16 + 14643: -2,16 + 14644: -3,16 + 14645: -1,16 + 14646: 8,14 + 14647: 7,14 + 14648: 6,14 + 14649: 4,14 + 14650: 5,14 + 14651: 10,15 + 14652: 10,14 + 14653: 17,18 + 14654: 17,19 + 14655: 17,17 + 14656: 17,16 + 14657: 14,23 + 14658: 13,23 + 14659: 12,23 + 14660: 11,23 + 14661: 1,23 + 14662: 2,23 + 14663: 3,23 + 14664: 4,23 + 14665: 17,9 + 14666: 17,10 + 14667: 17,11 + 14668: 17,12 + 14669: 17,3 + 14670: 17,2 + 14671: 17,4 + 14672: 17,5 + 14673: 24,5 + 14674: 23,5 + 14675: 22,5 + 14676: 21,5 + 14677: 31,5 + 14678: 30,5 + 14679: 29,5 + 14680: 28,5 + 14681: 17,-5 + 14682: 17,-4 + 14683: 17,-3 + 14684: 17,-2 + 14685: 17,-17 + 14686: 17,-16 + 14687: 17,-15 + 14688: 17,-14 + 14689: 17,-13 + 14690: 17,-12 + 14691: 21,-11 + 14692: 22,-11 + 14693: 23,-11 + 14694: 24,-11 + 14695: 28,-11 + 14696: 29,-11 + 14697: 30,-11 + 14698: 47,-20 + 14699: 46,-20 + 14700: 45,-20 + 14701: 44,-20 + 14702: 49,-20 + 14703: 50,-20 + 14704: 51,-20 + 14705: 52,-20 + 14706: 10,-20 + 14707: 11,-20 + 14708: 12,-20 + 14709: 13,-20 + 14710: 3,-20 + 14711: 4,-20 + 14712: 5,-20 + 14713: 6,-20 + 14714: -8,-20 + 14715: -7,-20 + 14716: -6,-20 + 14717: -5,-20 + 14718: -14,-20 + 14719: -13,-20 + 14720: -12,-20 + 14721: -15,-20 + 14722: -12,-26 + 14723: -12,-25 + 14724: -11,-25 + 14725: -11,-26 + 14726: -10,-26 + 14727: -10,-25 + 14728: -9,-25 + 14729: -9,-26 + 14730: -8,-26 + 14731: -8,-25 + 14732: 6,-25 + 14733: 7,-25 + 14734: 8,-25 + 14735: 9,-25 + 14736: 10,-25 + 14737: 10,-26 + 14738: 9,-26 + 14739: 8,-26 + 14740: 7,-26 + 14741: 6,-26 + 14742: -1,-27 + 14743: -1,-24 + 14744: -1,-25 + 14745: -1,-26 + 14746: -1,-34 + 14747: -1,-33 + 14748: -1,-32 + 14749: -1,-31 + 14750: -1,-35 + 14751: -1,-42 + 14752: -1,-40 + 14753: -1,-39 + 14754: -1,-50 + 14755: -1,-49 + 14756: -1,-48 + 14757: -1,-47 + 14758: -1,-46 + 14759: -1,-45 + 14760: -1,-44 + 14761: -1,-55 + 14762: -1,-54 + 14763: -1,-53 + 14764: -1,-52 + 14765: -1,-59 + 14766: -1,-60 + 14767: -1,-61 + 14768: -19,-12 + 14769: -19,-13 + 14770: -19,-14 + 14771: -19,-15 + 14772: -19,-16 + 14773: -19,-17 + 14774: -19,-2 + 14775: -19,-3 + 14776: -19,-4 + 14777: -19,-5 + 14778: -27,5 + 14779: -26,5 + 14780: -25,5 + 14781: -24,5 + 14782: -23,5 + 14783: -31,5 + 14784: -32,5 + 14785: -33,5 + 14786: -38,5 + 14787: -37,5 + 14788: -36,5 + 14789: -19,61 + 14790: -19,62 + 14791: -19,63 + 14792: -19,64 + 14793: 17,-40 + 14794: 17,-41 + 14795: 17,-42 + 14796: 17,-43 + 14797: 17,-45 + 14798: 17,-44 + 14799: 11,-35 + 14800: 12,-35 + 14801: 13,-35 + 14802: 17,-31 + 14803: 17,-32 + 14804: 17,-34 + 14805: 17,-33 + 14806: 27,-35 + 14807: 26,-35 + 14808: 25,-35 + 14809: 23,-35 + 14810: 22,-35 + 14811: 24,-35 + 14812: 32,-35 + 14813: 36,-35 + 14814: 35,-35 + 14815: 34,-35 + 14816: 33,-35 + 14817: 31,-35 + 14818: 27,-43 + 14819: 27,-44 + 14820: 27,-42 + 14821: 27,-41 + 14822: 27,-40 + 14823: 27,-51 + 14824: 27,-50 + 14825: 27,-49 + 14826: 27,-48 + 14827: 27,-47 + 14828: -18,-35 + 14829: -14,-35 + 14830: -15,-35 + 14831: -16,-35 + 14832: -17,-35 + 14833: -29,-35 + 14834: -28,-35 + 14835: -27,-35 + 14836: -26,-35 + 14837: -25,-35 + 14838: -24,-35 + 14839: -23,-26 + 14840: -23,-27 + 14841: -23,-28 + 14842: -23,-29 + 14843: -23,-30 + 14844: -29,-41 + 14845: -29,-40 + 14846: -29,-39 + 14847: -14,-43 + 14848: -14,-42 + 14849: -14,-41 + 14850: -14,-40 + 14851: -14,-39 + 14852: -14,-53 + 14853: -14,-52 + 14854: -14,-51 + 14855: -14,-50 + 14856: -14,-49 + 14857: -14,-48 + 14858: -14,-47 + 14859: 29,-49 + 14860: 29,-48 + 14861: 29,-47 + 14862: 29,-51 + 14863: 29,-52 + 14864: 29,-53 + 14865: 30,-46 + 14866: 31,-46 + 14867: 32,-46 + 14868: 33,-46 + 14869: 34,-46 + 15112: -30,87 + 15314: -1,-41 + 15463: -42,14 + 15464: -42,16 + 15465: -42,17 + 15466: -42,20 + 15467: -42,21 + 15468: -42,22 + 15469: -42,11 + 15470: -42,10 + 15471: -42,9 + 15484: -42,15 + 18820: -15,-9 + 18821: -14,-9 + 18822: -13,-9 + 18823: -12,-9 + 18824: -9,-9 + 18825: -8,-9 + 18826: -7,-9 + 18827: -6,-9 + 18828: -3,-9 + 18829: -2,-9 + 18830: -1,-9 + 18831: 0,-9 + 18832: 1,-9 + 18833: 4,-9 + 18834: 5,-9 + 18835: 6,-9 + 18836: 7,-9 + 18837: 10,-9 + 18838: 11,-9 + 18839: 12,-9 + 18840: 13,-9 + 19433: -14,28 + 19434: -14,27 + 19435: -14,26 + 19436: -13,26 + 19437: -12,26 + 19438: -11,27 + 19439: -11,28 + 19440: -11,29 + 19441: -11,30 + 19442: -12,30 + 19443: -11,31 + 19444: -11,32 + 19445: -11,33 + 19446: -12,34 + 19447: -13,34 + 19448: -14,34 + 19449: -14,33 + 19450: -14,32 + 19451: -14,31 + 19452: -15,31 + 19453: -15,30 + 19454: -15,29 + 19455: -10,30 + 19456: -9,30 + 19457: -9,34 + 19458: -10,34 + 19459: -9,26 + 19460: -10,26 + 19523: -14,29 + 19697: 34,-14 + 19698: 34,-13 + 19699: 34,-12 + 19700: 34,-11 + 19701: 34,-10 + 19702: 35,-9 + 19703: 36,-9 + 19704: 37,-9 + 19705: 39,-9 + 19706: 38,-9 + 19707: 40,-10 + 19708: 40,-11 + 19709: 40,-12 + 19710: 39,-12 + 19711: 38,-12 + 19712: 36,-12 + 19713: 35,-12 + 19714: 37,-12 + 19715: 35,-15 + 19716: 36,-15 + 19717: 37,-15 + 19718: 38,-15 + 19719: 39,-15 + 19720: 40,-14 + 19721: 40,-13 + 20299: -19,3 - node: angle: 3.141592653589793 rad color: '#4A0000C0' id: Dirt decals: - 13779: -34,-79 - 13780: -35,-79 - 13781: -35,-78 - 13782: -35,-77 - 13783: -34,-77 - 13784: -33,-77 - 13785: -32,-77 - 13786: -31,-77 - 13787: -31,-78 - 13788: -31,-79 - 13789: -32,-80 - 13790: -30,-79 - 13791: -36,-79 - 13792: -36,-78 - 13793: -33,-76 - 13794: -34,-76 - 13795: -35,-76 - 13796: -32,-76 - 13797: -33,-79 - 13798: -34,-80 - 13799: -35,-80 - 13800: -37,-80 - 13801: -37,-77 - 13802: -37,-76 - 13803: -37,-73 - 13804: -29,-73 - 13805: -29,-74 - 13806: -29,-75 - 13807: -33,-73 - 13808: -32,-73 - 13809: -30,-75 + 13744: -34,-79 + 13745: -35,-79 + 13746: -35,-78 + 13747: -35,-77 + 13748: -34,-77 + 13749: -33,-77 + 13750: -32,-77 + 13751: -31,-77 + 13752: -31,-78 + 13753: -31,-79 + 13754: -32,-80 + 13755: -30,-79 + 13756: -36,-79 + 13757: -36,-78 + 13758: -33,-76 + 13759: -34,-76 + 13760: -35,-76 + 13761: -32,-76 + 13762: -33,-79 + 13763: -34,-80 + 13764: -35,-80 + 13765: -37,-80 + 13766: -37,-77 + 13767: -37,-76 + 13768: -37,-73 + 13769: -29,-73 + 13770: -29,-74 + 13771: -29,-75 + 13772: -33,-73 + 13773: -32,-73 + 13774: -30,-75 - node: angle: 3.141592653589793 rad color: '#4A0000FF' id: Dirt decals: - 13776: -34,-78 - 13777: -32,-78 - 13778: -32,-79 + 13741: -34,-78 + 13742: -32,-78 + 13743: -32,-79 - node: color: '#DABC8B7F' id: Dirt decals: - 13547: -40,-68 - 13548: -38,-66 - 13549: -39,-66 - 13550: -41,-66 - 13551: -41,-67 - 13552: -40,-66 - 13553: -41,-65 - 13554: -41,-63 + 13512: -40,-68 + 13513: -38,-66 + 13514: -39,-66 + 13515: -41,-66 + 13516: -41,-67 + 13517: -40,-66 + 13518: -41,-65 + 13519: -41,-63 - node: color: '#DABC8B95' id: Dirt decals: - 13545: -37,-66 - 13546: -37,-67 + 13510: -37,-66 + 13511: -37,-67 - node: color: '#DABC8BA7' id: Dirt decals: - 13555: -39,-65 - 13556: -40,-65 - 13557: -37,-65 - 13558: -38,-65 - 13559: -38,-67 - 13560: -34,-66 - 13561: -34,-65 - 13562: -33,-66 - 13563: -34,-67 - 13564: -34,-68 - 13565: -30,-66 - 13566: -31,-66 - 13567: -30,-65 - 13568: -31,-65 - 13569: -32,-66 - 13570: -32,-66 - 13571: -32,-65 - 13572: -33,-68 - 13573: -33,-67 - 13574: -32,-67 - 13575: -32,-68 - 13576: -31,-68 - 13577: -31,-67 + 13520: -39,-65 + 13521: -40,-65 + 13522: -37,-65 + 13523: -38,-65 + 13524: -38,-67 + 13525: -34,-66 + 13526: -34,-65 + 13527: -33,-66 + 13528: -34,-67 + 13529: -34,-68 + 13530: -30,-66 + 13531: -31,-66 + 13532: -30,-65 + 13533: -31,-65 + 13534: -32,-66 + 13535: -32,-66 + 13536: -32,-65 + 13537: -33,-68 + 13538: -33,-67 + 13539: -32,-67 + 13540: -32,-68 + 13541: -31,-68 + 13542: -31,-67 - node: color: '#DABC8BAE' id: Dirt decals: - 13544: -37,-65 + 13509: -37,-65 - node: color: '#DABC8BD0' id: Dirt decals: - 13540: -37,-68 - 13541: -36,-67 - 13542: -36,-68 - 13543: -36,-66 + 13505: -37,-68 + 13506: -36,-67 + 13507: -36,-68 + 13508: -36,-66 - node: color: '#DC5F31FF' id: Dirt decals: - 18899: 60,-40 - 18900: 59,-40 - 18901: 59,-41 - 18902: 58,-41 - 18903: 60,-41 - 18904: 61,-41 - 18905: 62,-40 - 18906: 62,-41 - 18907: 58,-42 - 18908: 59,-42 - 18909: 60,-42 - 18910: 63,-40 - 18911: 25,-66 - 18912: 26,-67 - 18913: 25,-69 - 18914: 27,-68 - 18915: 27,-67 - 18916: -44,-66 - 18917: -43,-65 - 18918: -44,-64 - 18919: -45,-64 - 18920: -45,-63 - 18921: -46,-63 - 18922: -44,-66 - 18923: -46,-68 - 18924: -46,-69 - 18925: -45,-68 - 18926: -46,-67 - 18927: -44,-65 + 18734: 60,-40 + 18735: 59,-40 + 18736: 59,-41 + 18737: 58,-41 + 18738: 60,-41 + 18739: 61,-41 + 18740: 62,-40 + 18741: 62,-41 + 18742: 58,-42 + 18743: 59,-42 + 18744: 60,-42 + 18745: 63,-40 + 18746: 25,-66 + 18747: 26,-67 + 18748: 25,-69 + 18749: 27,-68 + 18750: 27,-67 + 18751: -44,-66 + 18752: -43,-65 + 18753: -44,-64 + 18754: -45,-64 + 18755: -45,-63 + 18756: -46,-63 + 18757: -44,-66 + 18758: -46,-68 + 18759: -46,-69 + 18760: -45,-68 + 18761: -46,-67 + 18762: -44,-65 - node: color: '#FFFFFF2B' id: Dirt decals: - 16486: -67,-40 - 16487: -68,-40 - 16488: -68,-41 - 16489: -69,-40 - 16490: -66,-40 - 16491: -65,-40 - 16492: -65,-41 - 16493: -64,-41 - 16494: -63,-41 - 16495: -63,-41 - 16496: -63,-42 - 16497: -63,-44 - 16498: -64,-44 - 16499: -65,-44 - 16500: -66,-44 - 16501: -67,-44 - 16502: -68,-46 - 16503: -69,-44 + 16340: -67,-40 + 16341: -68,-40 + 16342: -68,-41 + 16343: -69,-40 + 16344: -66,-40 + 16345: -65,-40 + 16346: -65,-41 + 16347: -64,-41 + 16348: -63,-41 + 16349: -63,-41 + 16350: -63,-42 + 16351: -63,-44 + 16352: -64,-44 + 16353: -65,-44 + 16354: -66,-44 + 16355: -67,-44 + 16356: -68,-46 + 16357: -69,-44 - node: color: '#FFFFFF4D' id: Dirt decals: - 18618: -59,-46 - 18619: -60,-46 - 18620: -60,-45 - 18621: -60,-44 - 18622: -59,-44 - 18623: -59,-45 - 18624: -58,-45 - 18625: -58,-44 - 18626: -60,-43 - 18627: -60,-43 + 18453: -59,-46 + 18454: -60,-46 + 18455: -60,-45 + 18456: -60,-44 + 18457: -59,-44 + 18458: -59,-45 + 18459: -58,-45 + 18460: -58,-44 + 18461: -60,-43 + 18462: -60,-43 - node: color: '#FFFFFF50' id: Dirt decals: - 16201: 91,-1 - 16202: 92,-1 - 16203: 93,-1 - 16204: 92,0 - 16205: 91,7 - 16206: 91,6 - 16207: 92,7 - 16208: 96,5 - 16209: 97,5 - 16210: 97,4 - 16211: 97,3 - 16212: 96,4 - 16259: 83,4 - 16260: 84,4 - 16261: 85,5 - 16262: 85,4 - 16263: 86,4 - 16264: 86,5 - 16265: 87,6 - 16266: 87,5 - 16267: 89,9 - 16268: 90,9 - 16269: 91,9 - 16270: 92,10 - 16271: 91,9 + 16055: 91,-1 + 16056: 92,-1 + 16057: 93,-1 + 16058: 92,0 + 16059: 91,7 + 16060: 91,6 + 16061: 92,7 + 16062: 96,5 + 16063: 97,5 + 16064: 97,4 + 16065: 97,3 + 16066: 96,4 + 16113: 83,4 + 16114: 84,4 + 16115: 85,5 + 16116: 85,4 + 16117: 86,4 + 16118: 86,5 + 16119: 87,6 + 16120: 87,5 + 16121: 89,9 + 16122: 90,9 + 16123: 91,9 + 16124: 92,10 + 16125: 91,9 - node: color: '#FFFFFF60' id: Dirt decals: - 16832: -41,-11 - 16833: -40,-11 - 16834: -39,-10 - 16835: -39,-10 - 16836: -40,-10 - 16837: -40,-9 - 16838: -41,-9 - 16839: -41,-10 - 16840: -39,-9 - 16841: -39,-11 - 16842: -38,-11 + 16686: -41,-11 + 16687: -40,-11 + 16688: -39,-10 + 16689: -39,-10 + 16690: -40,-10 + 16691: -40,-9 + 16692: -41,-9 + 16693: -41,-10 + 16694: -39,-9 + 16695: -39,-11 + 16696: -38,-11 - node: color: '#FFFFFF66' id: Dirt decals: - 16351: -62,-43 - 16352: -62,-42 - 16353: -62,-44 - 16354: -63,-43 - 16355: -72,-42 - 16356: -71,-42 - 16357: -70,-42 - 16358: -71,-41 - 16359: -72,-41 - 16360: -72,-40 - 16361: -71,-40 - 16362: -70,-40 - 16363: -70,-43 - 16364: -70,-44 - 16365: -70,-45 - 16366: -69,-45 - 16367: -68,-45 - 16368: -68,-46 - 16369: -69,-46 - 16370: -66,-42 - 16371: -66,-43 - 16372: -65,-43 - 16373: -66,-41 - 16374: -65,-42 - 16375: -68,-43 - 16376: -67,-43 - 16377: -68,-42 - 16378: -67,-41 - 16379: -68,-44 - 16380: -64,-42 - 16381: -64,-43 - 16382: -63,-43 + 16205: -62,-43 + 16206: -62,-42 + 16207: -62,-44 + 16208: -63,-43 + 16209: -72,-42 + 16210: -71,-42 + 16211: -70,-42 + 16212: -71,-41 + 16213: -72,-41 + 16214: -72,-40 + 16215: -71,-40 + 16216: -70,-40 + 16217: -70,-43 + 16218: -70,-44 + 16219: -70,-45 + 16220: -69,-45 + 16221: -68,-45 + 16222: -68,-46 + 16223: -69,-46 + 16224: -66,-42 + 16225: -66,-43 + 16226: -65,-43 + 16227: -66,-41 + 16228: -65,-42 + 16229: -68,-43 + 16230: -67,-43 + 16231: -68,-42 + 16232: -67,-41 + 16233: -68,-44 + 16234: -64,-42 + 16235: -64,-43 + 16236: -63,-43 - node: color: '#FFFFFF6C' id: Dirt decals: - 19037: 39,-53 - 19038: 40,-53 - 19039: 39,-52 - 19040: 40,-52 - 19041: 40,-52 - 19042: 40,-51 - 19043: 39,-51 - 19044: 39,-50 - 19045: 41,-50 - 19046: 42,-50 - 19047: 42,-51 - 19048: 41,-51 - 19049: 41,-52 - 19050: 41,-53 - 19051: 42,-53 - 19052: 42,-54 - 19053: 42,-54 - 19054: 41,-55 - 19055: 41,-56 - 19056: 42,-56 - 19057: 39,-55 - 19058: 39,-54 - 19059: 41,-54 - 19060: 41,-54 - 19061: 44,-50 - 19062: 45,-50 - 19063: 45,-51 - 19064: 44,-51 - 19065: 44,-53 - 19066: 45,-54 - 19067: 45,-55 - 19068: 45,-55 - 19069: 44,-54 - 19070: 44,-53 - 19071: 45,-53 - 19072: 43,-50 - 19073: 43,-51 - 19074: 43,-52 - 19075: 43,-54 - 19076: 43,-54 - 19077: 43,-56 - 19078: 46,-55 - 19079: 46,-56 - 19080: 46,-52 - 19081: 50,-50 - 19082: 50,-51 - 19083: 50,-52 - 19084: 49,-53 - 19085: 49,-53 - 19086: 51,-53 - 19087: 51,-52 - 19088: 50,-53 - 19089: 50,-55 - 19090: 49,-55 - 19091: 49,-56 - 19092: 50,-56 - 19093: 51,-56 - 19094: 51,-54 - 19095: 49,-54 - 19096: 52,-56 - 19097: 52,-55 - 19098: 52,-54 - 19099: 52,-53 - 19100: 52,-52 - 19101: 52,-51 - 19102: 52,-51 - 19103: 52,-50 - 19104: 53,-51 - 19105: 53,-53 - 19106: 53,-54 - 19107: 53,-55 - 19108: 53,-56 + 18872: 39,-53 + 18873: 40,-53 + 18874: 39,-52 + 18875: 40,-52 + 18876: 40,-52 + 18877: 40,-51 + 18878: 39,-51 + 18879: 39,-50 + 18880: 41,-50 + 18881: 42,-50 + 18882: 42,-51 + 18883: 41,-51 + 18884: 41,-52 + 18885: 41,-53 + 18886: 42,-53 + 18887: 42,-54 + 18888: 42,-54 + 18889: 41,-55 + 18890: 41,-56 + 18891: 42,-56 + 18892: 39,-55 + 18893: 39,-54 + 18894: 41,-54 + 18895: 41,-54 + 18896: 44,-50 + 18897: 45,-50 + 18898: 45,-51 + 18899: 44,-51 + 18900: 44,-53 + 18901: 45,-54 + 18902: 45,-55 + 18903: 45,-55 + 18904: 44,-54 + 18905: 44,-53 + 18906: 45,-53 + 18907: 43,-50 + 18908: 43,-51 + 18909: 43,-52 + 18910: 43,-54 + 18911: 43,-54 + 18912: 43,-56 + 18913: 46,-55 + 18914: 46,-56 + 18915: 46,-52 + 18916: 50,-50 + 18917: 50,-51 + 18918: 50,-52 + 18919: 49,-53 + 18920: 49,-53 + 18921: 51,-53 + 18922: 51,-52 + 18923: 50,-53 + 18924: 50,-55 + 18925: 49,-55 + 18926: 49,-56 + 18927: 50,-56 + 18928: 51,-56 + 18929: 51,-54 + 18930: 49,-54 + 18931: 52,-56 + 18932: 52,-55 + 18933: 52,-54 + 18934: 52,-53 + 18935: 52,-52 + 18936: 52,-51 + 18937: 52,-51 + 18938: 52,-50 + 18939: 53,-51 + 18940: 53,-53 + 18941: 53,-54 + 18942: 53,-55 + 18943: 53,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: Dirt decals: - 13872: -34,-63 - 13873: -32,-63 - 13874: -33,-62 - 13875: -33,-61 - 13876: -33,-60 - 13877: -34,-61 - 13878: -31,-61 - 13879: -31,-60 + 13837: -34,-63 + 13838: -32,-63 + 13839: -33,-62 + 13840: -33,-61 + 13841: -33,-60 + 13842: -34,-61 + 13843: -31,-61 + 13844: -31,-60 - node: color: '#FFFFFFFF' id: Dirt decals: 649: 38,-21 880: -32,49 - 3947: 18,70 - 3948: 23,66 - 3988: 15,60 - 3991: 20,61 - 4018: -34,59 - 4019: -35,59 - 4020: -34,60 - 4021: -38,60 - 4022: -38,59 - 4047: -32,62 - 4050: -24,65 - 11171: 32,-68 - 11172: 41,-67 - 11173: 40,-67 - 11174: 43,-64 - 11175: 45,-62 - 11176: 41,-60 - 11177: 41,-61 - 11178: 42,-75 - 11179: 35,-71 - 11180: 36,-71 - 11181: 35,-70 - 11182: 34,-65 - 11183: 31,-61 - 11184: 32,-61 - 11185: 32,-61 - 11207: 27,-55 - 13180: 43,-33 - 13238: 39,-53 - 13347: 52,-37 - 13356: 52,-37 - 13391: 56,-36 - 13481: -33,-65 - 13578: -37,-64 - 13581: -41,-64 - 20035: -30,-23 - 20036: -29,-23 - 20037: -28,-23 - 20038: -29,-24 - 20039: -30,-24 - 20173: -71,-38 - 20174: -72,-37 - 20175: -72,-35 - 20176: -72,-34 - 20177: -71,-34 - 20178: -67,-34 - 20179: -65,-34 - 20180: -68,-34 - 20181: -62,-37 - 20182: -68,-38 - 20183: -69,-38 - 20241: 33,39 - 20242: 34,39 - 20243: 34,38 - 20244: 36,39 + 3920: 18,70 + 3921: 23,66 + 3961: 15,60 + 3964: 20,61 + 3991: -34,59 + 3992: -35,59 + 3993: -34,60 + 3994: -38,60 + 3995: -38,59 + 4020: -32,62 + 4023: -24,65 + 11136: 32,-68 + 11137: 41,-67 + 11138: 40,-67 + 11139: 43,-64 + 11140: 45,-62 + 11141: 41,-60 + 11142: 41,-61 + 11143: 42,-75 + 11144: 35,-71 + 11145: 36,-71 + 11146: 35,-70 + 11147: 34,-65 + 11148: 31,-61 + 11149: 32,-61 + 11150: 32,-61 + 11172: 27,-55 + 13145: 43,-33 + 13203: 39,-53 + 13312: 52,-37 + 13321: 52,-37 + 13356: 56,-36 + 13446: -33,-65 + 13543: -37,-64 + 13546: -41,-64 + 19870: -30,-23 + 19871: -29,-23 + 19872: -28,-23 + 19873: -29,-24 + 19874: -30,-24 + 20008: -71,-38 + 20009: -72,-37 + 20010: -72,-35 + 20011: -72,-34 + 20012: -71,-34 + 20013: -67,-34 + 20014: -65,-34 + 20015: -68,-34 + 20016: -62,-37 + 20017: -68,-38 + 20018: -69,-38 + 20076: 33,39 + 20077: 34,39 + 20078: 34,38 + 20079: 36,39 + 21546: -60,-25 + 21547: -60,-25 + 21548: -63,-23 + 21549: -64,-23 + 21550: -64,-23 + 21551: -63,-23 + 21552: -62,-27 + 21553: -62,-27 + 21554: -62,-27 + 21555: -62,-30 - node: cleanable: True color: '#FFFFFFFF' @@ -18664,693 +18676,721 @@ entities: 965: 35,-69 966: 31,-61 1063: -33,-47 - 1423: -42,63 - 1424: -41,63 - 1425: -42,60 - 1609: -38,29 - 1610: -39,26 - 1611: -38,25 - 1638: -60,-34 - 1639: -59,-36 - 1640: -58,-35 - 1641: -59,-34 - 1642: -60,-39 - 1643: -58,-39 - 1644: -58,-37 - 1645: -60,-36 - 1684: -59,-43 - 1685: -58,-42 - 1686: -58,-41 - 1687: -60,-42 - 1868: -72,-28 - 1869: -69,-25 - 1870: -70,-28 - 1871: -70,-29 - 1872: -70,-25 - 1873: -69,-23 - 1874: -69,-24 - 1960: 34,-20 - 1961: 33,-20 - 1962: 33,-19 - 1963: 36,-21 - 1964: 35,-23 - 1965: 37,-23 - 1966: 37,-24 - 1967: 41,-24 - 1968: 40,-24 - 1969: 40,-27 - 1970: 41,-28 - 1971: 43,-29 - 1972: 26,-20 - 1973: 24,-21 - 1974: 23,-23 - 1975: 24,-23 - 1976: 23,-23 - 1977: 22,-21 - 1978: 21,-22 - 1979: 20,-21 - 1980: 21,-21 - 1981: 22,-18 - 1982: 52,-29 - 1983: 52,-29 - 1984: 52,-31 - 1985: 52,-34 - 1986: 51,-39 - 1987: 52,-42 - 1988: 52,-45 - 1989: 51,-48 - 1990: 51,-48 - 1991: 47,-48 - 1992: 44,-48 - 1993: 41,-48 - 1994: 37,-47 - 1995: 36,-49 - 1996: 37,-56 - 1997: 34,-56 - 1998: 32,-55 - 1999: 30,-55 - 4067: 11,79 - 16526: -71,-35 - 16527: -67,-36 - 16528: -71,-37 - 16529: -66,-35 - 16530: -63,-37 - 16531: -63,-34 - 16532: -63,-34 - 16533: -69,-37 - 16534: -69,-35 - 16535: -70,-36 - 16536: -66,-37 - 16537: -65,-37 - 16538: -65,-36 - 16539: -65,-35 - 16540: -69,-36 - 16541: -69,-36 - 16543: -63,-36 - 16549: -68,-35 - 16550: -65,-37 - 16551: -63,-36 + 1396: -42,63 + 1397: -41,63 + 1398: -42,60 + 1582: -38,29 + 1583: -39,26 + 1584: -38,25 + 1611: -60,-34 + 1612: -59,-36 + 1613: -58,-35 + 1614: -59,-34 + 1615: -60,-39 + 1616: -58,-39 + 1617: -58,-37 + 1618: -60,-36 + 1657: -59,-43 + 1658: -58,-42 + 1659: -58,-41 + 1660: -60,-42 + 1841: -72,-28 + 1842: -69,-25 + 1843: -70,-28 + 1844: -70,-29 + 1845: -70,-25 + 1846: -69,-23 + 1847: -69,-24 + 1933: 34,-20 + 1934: 33,-20 + 1935: 33,-19 + 1936: 36,-21 + 1937: 35,-23 + 1938: 37,-23 + 1939: 37,-24 + 1940: 41,-24 + 1941: 40,-24 + 1942: 40,-27 + 1943: 41,-28 + 1944: 43,-29 + 1945: 26,-20 + 1946: 24,-21 + 1947: 23,-23 + 1948: 24,-23 + 1949: 23,-23 + 1950: 22,-21 + 1951: 21,-22 + 1952: 20,-21 + 1953: 21,-21 + 1954: 22,-18 + 1955: 52,-29 + 1956: 52,-29 + 1957: 52,-31 + 1958: 52,-34 + 1959: 51,-39 + 1960: 52,-42 + 1961: 52,-45 + 1962: 51,-48 + 1963: 51,-48 + 1964: 47,-48 + 1965: 44,-48 + 1966: 41,-48 + 1967: 37,-47 + 1968: 36,-49 + 1969: 37,-56 + 1970: 34,-56 + 1971: 32,-55 + 1972: 30,-55 + 4040: 11,79 + 16380: -71,-35 + 16381: -67,-36 + 16382: -71,-37 + 16383: -66,-35 + 16384: -63,-37 + 16385: -63,-34 + 16386: -63,-34 + 16387: -69,-37 + 16388: -69,-35 + 16389: -70,-36 + 16390: -66,-37 + 16391: -65,-37 + 16392: -65,-36 + 16393: -65,-35 + 16394: -69,-36 + 16395: -69,-36 + 16397: -63,-36 + 16403: -68,-35 + 16404: -65,-37 + 16405: -63,-36 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 13731: -33,-72 - 13869: -30,-61 + 13696: -33,-72 + 13834: -30,-61 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavy decals: - 13880: -32,-60 - 13881: -32,-61 - 13882: -34,-60 - 13883: -32,-62 - 13884: -31,-62 - 13910: -39,-56 - 13911: -39,-55 - 13913: -38,-56 - 13914: -38,-55 - 13915: -38,-55 - 13917: -37,-55 - 13918: -37,-56 + 13845: -32,-60 + 13846: -32,-61 + 13847: -34,-60 + 13848: -32,-62 + 13849: -31,-62 + 13875: -39,-56 + 13876: -39,-55 + 13878: -38,-56 + 13879: -38,-55 + 13880: -38,-55 + 13882: -37,-55 + 13883: -37,-56 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3896: 23,71 - 3898: 17,69 - 3928: 18,67 - 3929: 20,66 - 3930: 19,66 - 3931: 23,67 - 3942: 23,67 - 3943: 22,67 - 3983: 21,61 - 3984: 19,63 - 3989: 12,59 - 3990: 18,62 - 4023: -38,62 - 4024: -39,62 - 4025: -42,61 - 4029: -37,60 - 4030: -36,59 - 4031: -36,60 - 4048: -30,62 - 4049: -28,60 - 4051: -24,63 - 11037: 35,-61 - 11038: 34,-60 - 11039: 31,-68 - 11040: 30,-70 - 11041: 29,-70 - 11042: 27,-67 - 11043: 27,-66 - 11044: 29,-66 - 11045: 33,-66 - 11046: 33,-66 - 11047: 40,-71 - 11048: 40,-71 - 11049: 38,-72 - 11050: 38,-71 - 11051: 39,-70 - 11052: 40,-70 - 11053: 41,-73 - 11054: 41,-68 - 11055: 41,-68 - 11056: 41,-66 - 11057: 39,-66 - 11058: 38,-67 - 11059: 35,-72 - 11060: 34,-71 - 11061: 35,-67 - 11062: 37,-66 - 11063: 35,-65 - 11064: 34,-63 - 11065: 35,-61 - 11066: 38,-62 - 11067: 40,-63 - 11068: 40,-61 - 11069: 40,-60 - 11070: 42,-62 - 11071: 43,-63 - 11205: 27,-56 - 11206: 27,-56 - 11211: 26,-55 - 11212: 26,-55 - 11213: 28,-55 - 11214: 28,-58 - 11215: 40,-68 - 11216: 38,-68 - 11312: -60,-39 - 11313: -60,-42 - 11314: -60,-41 - 11315: -60,-41 - 12916: -46,-23 - 12917: -47,-23 - 12918: -47,-22 - 12919: -46,-22 - 12920: -45,-22 - 12921: -45,-23 - 12998: -47,-25 - 12999: -46,-25 - 13000: -45,-26 - 13001: -45,-27 - 13002: -46,-29 - 13003: -45,-29 - 13004: -46,-30 - 13005: -46,-30 - 13006: -45,-31 - 13007: -46,-31 - 13008: -46,-28 - 13009: -46,-28 - 13010: -42,-29 - 13011: -42,-29 - 13012: -41,-27 - 13013: -41,-27 - 13014: -40,-28 - 13015: -41,-29 - 13016: -42,-27 - 13017: -42,-26 - 13018: -41,-28 - 13019: -41,-29 - 13020: -40,-27 - 13021: -39,-27 - 13022: -38,-26 - 13023: -37,-27 - 13024: -37,-28 - 13025: -39,-29 - 13026: -39,-29 - 13027: -36,-29 - 13028: -36,-28 - 13029: -37,-27 - 13030: -38,-27 - 13031: -35,-29 - 13032: -34,-29 - 13033: -35,-27 - 13034: -35,-27 - 13062: -40,-24 - 13063: -39,-23 - 13064: -39,-22 - 13065: -38,-23 - 13066: -38,-24 - 13067: -37,-23 - 13068: -37,-22 - 13069: -34,-22 - 13070: -34,-24 - 13071: -33,-24 - 13072: -33,-23 - 13073: -43,-23 - 13074: -43,-22 - 13075: -42,-22 - 13076: -41,-23 - 13077: -43,-27 - 13078: -42,-28 - 13079: -42,-29 - 13080: -43,-28 - 13081: -40,-27 - 13082: -39,-29 - 13083: -37,-29 - 13084: -36,-27 - 13085: -35,-28 - 13086: -38,-30 - 13087: -38,-30 - 13088: -34,-28 - 13089: -34,-28 - 13090: -34,-30 - 13091: -35,-29 - 13092: -37,-27 - 13093: -38,-26 - 13094: -40,-29 - 13095: -42,-30 - 13096: -42,-31 - 13097: -42,-32 - 13098: -43,-33 - 13099: -40,-33 - 13100: -42,-34 - 13101: -37,-32 - 13102: -37,-32 - 13103: -39,-34 - 13104: -39,-32 - 13105: -38,-34 - 13106: -37,-34 - 13107: -34,-33 - 13108: -34,-32 - 13109: -33,-33 - 13110: -35,-34 - 13111: -33,-34 - 13112: -35,-32 - 13113: -34,-33 - 13137: -29,-27 - 13138: -30,-27 - 13139: -30,-26 - 13140: -27,-26 - 13141: -27,-27 - 13142: -27,-30 - 13143: -26,-31 - 13144: -28,-31 - 13145: -30,-31 - 13146: -30,-29 - 13147: -31,-28 - 13148: -31,-29 - 13149: -31,-31 - 13150: -28,-31 - 13151: -27,-31 - 13152: -27,-32 - 13153: -30,-32 - 13154: -30,-32 - 13155: -30,-31 - 13156: -29,-31 - 13157: -29,-31 - 13158: -30,-30 - 13159: -30,-29 - 13160: -30,-27 - 13181: 43,-34 - 13182: 44,-33 - 13183: 42,-31 - 13184: 44,-32 - 13185: 44,-31 - 13186: 45,-32 - 13187: 45,-33 - 13188: 46,-32 - 13189: 47,-31 - 13190: 48,-32 - 13191: 48,-33 - 13192: 48,-32 - 13193: 47,-34 - 13194: 46,-35 - 13195: 46,-35 - 13196: 48,-35 - 13197: 48,-36 - 13198: 48,-36 - 13199: 47,-36 - 13200: 47,-36 - 13201: 44,-35 - 13202: 45,-33 - 13203: 46,-33 - 13204: 48,-33 - 13205: 48,-34 - 13206: 49,-34 - 13207: 49,-33 - 13208: 49,-34 - 13209: 49,-35 - 13210: 47,-33 - 13211: 47,-32 - 13237: 48,-31 - 13311: 39,-51 - 13312: 41,-52 - 13313: 41,-53 - 13314: 46,-53 - 13315: 47,-53 - 13316: 46,-54 - 13317: 46,-51 - 13318: 46,-52 - 13346: 52,-37 - 13357: 52,-37 - 13358: 53,-36 - 13360: 55,-39 - 13361: 56,-39 - 13362: 55,-38 - 13363: 56,-36 - 13364: 53,-35 - 13379: 55,-36 - 13380: 54,-36 - 13381: 53,-37 - 13382: 53,-38 - 13383: 54,-38 - 13384: 54,-37 - 13385: 54,-35 - 13482: -37,-63 - 13483: -36,-62 - 13500: -38,-63 - 13501: -38,-63 - 13502: -37,-63 - 13503: -38,-62 - 13504: -38,-62 - 13505: -38,-61 - 13506: -37,-60 - 13507: -36,-60 - 13508: -38,-60 - 13509: -38,-61 - 13510: -37,-62 - 13511: -37,-62 - 13512: -36,-61 - 13513: -36,-63 - 13514: -36,-63 - 13515: -37,-61 - 13531: -41,-62 - 13532: -40,-63 - 13579: -37,-64 - 13580: -41,-64 - 13585: -37,-59 - 16213: 76,0 - 16214: 77,0 - 16215: 78,0 - 16228: 99,-2 - 16229: 99,-3 - 16230: 99,-4 - 16231: 100,-4 - 16232: 100,-4 - 16233: 100,-2 - 16246: 91,-3 - 16247: 84,2 - 16252: 83,-3 - 16253: 83,-4 - 16254: 84,-4 - 16255: 88,-3 - 16256: 87,-4 - 16272: 89,9 - 16273: 89,10 - 16274: 91,10 - 16275: 93,10 - 16276: 93,9 - 16277: 92,9 - 16281: 76,4 - 16282: 76,6 - 16283: 93,6 - 16289: 95,7 - 16290: 97,7 - 16291: 97,6 - 16394: -71,-40 - 16395: -70,-40 - 16396: -70,-41 - 16397: -69,-41 - 16398: -69,-42 - 16399: -70,-43 - 16400: -70,-43 - 16401: -70,-43 - 16402: -66,-41 - 16403: -64,-40 - 16404: -62,-40 - 16405: -62,-41 - 16406: -63,-43 - 16407: -65,-43 - 16408: -66,-43 - 16409: -68,-45 - 16410: -69,-46 - 16411: -70,-46 - 16426: -67,-46 - 16427: -66,-46 - 16428: -66,-47 - 16429: -65,-48 - 16430: -65,-47 - 16431: -64,-46 - 16432: -63,-47 - 16433: -62,-47 - 16434: -62,-48 - 16555: -60,-49 - 16556: -60,-48 - 16557: -59,-50 - 16567: 10,69 - 16568: 10,70 - 16569: 11,70 - 16570: 11,69 - 16571: 10,67 - 16572: 11,66 - 16573: 12,66 - 16574: 12,68 - 16611: -39,-7 - 16612: -39,-6 - 16613: -40,-6 - 16614: -40,-7 - 16625: -39,1 - 16626: -39,1 - 16627: -38,0 - 16628: -38,0 - 16629: -37,2 - 16630: -37,2 - 16631: -39,0 - 16632: -37,1 - 16633: -37,2 - 16640: -43,-12 - 16641: -43,-11 - 16642: -43,-10 - 16643: -43,-10 - 16644: -44,-12 - 16645: -44,-12 - 16646: -43,-10 - 16647: -42,-9 - 16648: -42,-10 - 16649: -43,-12 - 16650: -44,-13 - 16651: -44,-13 - 16652: -44,-14 - 16653: -44,-16 - 16654: -44,-17 - 16655: -44,-18 - 16656: -44,-20 - 16657: -42,-20 - 16658: -42,-20 - 16659: -39,-20 - 16660: -37,-20 - 16661: -36,-20 - 16662: -36,-20 - 16663: -38,-20 - 16664: -38,-20 - 16665: -41,-20 - 16666: -42,-20 - 16667: -43,-20 - 16668: -44,-20 - 16669: -36,-20 - 16670: -31,-20 - 16671: -30,-20 - 16672: -30,-20 - 16673: -32,-20 - 16674: -32,-20 - 16675: -32,-18 - 16676: -31,-18 - 16677: -30,-18 - 16678: -29,-18 - 16679: -28,-18 - 16680: -28,-19 - 16681: -28,-20 - 16682: -29,-20 - 16683: -24,-22 - 16684: -24,-22 - 16685: -25,-22 - 16686: -25,-22 - 16687: -24,-21 - 16688: -23,-21 - 16689: -23,-22 - 16690: -22,-22 - 16691: -22,-21 - 16692: -23,-21 - 16693: -25,-21 - 16694: -25,-20 - 16695: -22,-20 - 16696: -22,-20 - 16697: -29,-18 - 17420: -2,32 - 17421: -1,32 - 17422: -1,32 - 17423: -2,27 - 17424: -2,27 - 17425: -1,27 - 17426: 0,27 - 17427: -1,27 - 17428: -2,27 - 17438: 0,39 - 17439: 0,40 - 17440: 0,40 - 17441: 2,40 - 17442: 2,40 - 17443: 0,38 - 17444: -1,36 - 17445: -1,35 - 17446: 0,34 - 17447: 0,34 - 17448: 0,42 - 17449: 1,42 - 17450: 1,42 - 17451: 0,42 - 17452: 0,48 - 17453: 0,48 - 17454: 0,48 - 17455: 0,47 - 17463: 6,52 - 17464: 7,52 - 17465: 6,50 - 18574: -53,-38 - 18575: -53,-37 - 18576: -52,-36 - 18577: -51,-36 - 18578: -52,-38 - 18579: -51,-38 - 18580: -51,-37 - 18581: -50,-37 - 18582: -50,-38 - 18583: -52,-37 - 18584: -52,-37 - 18585: -51,-37 - 18586: -50,-38 - 18587: -49,-38 - 18588: -48,-38 - 18589: -50,-37 - 18598: -52,-40 - 18599: -50,-40 - 18600: -51,-41 - 18616: -58,-46 - 18884: 61,-41 - 18885: 60,-41 - 18886: 59,-41 - 18887: 60,-40 - 18888: 59,-40 - 18889: 59,-40 - 18890: 59,-40 - 18891: 59,-40 - 18892: 60,-40 - 18893: 62,-40 - 18894: 61,-41 - 18895: 61,-41 - 19109: 43,-42 - 19110: 43,-41 - 19111: 43,-39 - 19112: 43,-38 - 19113: 45,-38 - 19114: 47,-38 - 19115: 49,-38 - 19116: 49,-39 - 19117: 48,-41 - 19118: 48,-43 - 19119: 46,-43 - 19120: 45,-43 - 19121: 44,-41 - 19122: 46,-40 - 19123: 47,-40 - 19149: 44,-48 - 19150: 45,-48 - 19151: 46,-48 - 19152: 43,-52 - 19153: 43,-53 - 19154: 43,-53 - 19155: 56,-41 - 20017: -31,-22 - 20018: -27,-23 - 20109: -72,-34 - 20110: -71,-34 - 20111: -72,-34 - 20112: -72,-36 - 20113: -72,-36 - 20114: -72,-37 - 20115: -72,-38 - 20116: -66,-38 - 20117: -66,-38 - 20118: -64,-38 - 20119: -64,-38 - 20120: -66,-38 - 20121: -67,-38 - 20122: -69,-38 - 20123: -71,-38 - 20124: -70,-38 - 20125: -68,-38 - 20126: -68,-38 - 20127: -65,-38 - 20128: -65,-38 - 20129: -64,-38 - 20130: -63,-38 - 20131: -62,-38 - 20132: -62,-36 - 20133: -62,-36 - 20134: -62,-38 - 20135: -62,-37 - 20136: -65,-34 - 20137: -66,-34 - 20138: -67,-34 - 20139: -69,-34 - 20140: -69,-34 - 20141: -67,-34 - 20142: -69,-34 - 20143: -69,-34 - 20144: -67,-34 - 20145: -67,-34 - 20146: -66,-34 - 20147: -65,-34 - 20148: -69,-34 - 20149: -66,-34 - 20150: -65,-34 - 20151: -63,-37 - 20152: -65,-38 - 20153: -67,-38 - 20154: -69,-38 - 20155: -70,-38 - 20156: -72,-38 - 20157: -72,-37 - 20158: -72,-36 - 20159: -72,-35 - 20160: -72,-35 - 20161: -70,-35 - 20162: -70,-35 - 20163: -70,-35 - 20164: -68,-35 - 20165: -67,-35 - 20166: -67,-36 - 20167: -64,-37 - 20168: -63,-37 - 20169: -62,-37 - 20170: -62,-37 - 20171: -62,-38 - 20172: -62,-36 - 20235: 35,39 - 20236: 34,39 - 20237: 34,38 - 20238: 33,39 - 20239: 36,39 - 20240: 35,37 - 21648: -71,-29 - 21649: -72,-26 - 21650: -70,-27 - 21651: -70,-26 - 21652: -69,-26 - 21653: -69,-27 - 21654: -68,-26 - 21655: -68,-26 - 21656: -67,-25 - 21657: -67,-26 - 21658: -68,-27 - 21659: -68,-27 - 21660: -67,-27 - 21661: -68,-25 - 21662: -67,-24 + 3869: 23,71 + 3871: 17,69 + 3901: 18,67 + 3902: 20,66 + 3903: 19,66 + 3904: 23,67 + 3915: 23,67 + 3916: 22,67 + 3956: 21,61 + 3957: 19,63 + 3962: 12,59 + 3963: 18,62 + 3996: -38,62 + 3997: -39,62 + 3998: -42,61 + 4002: -37,60 + 4003: -36,59 + 4004: -36,60 + 4021: -30,62 + 4022: -28,60 + 4024: -24,63 + 11002: 35,-61 + 11003: 34,-60 + 11004: 31,-68 + 11005: 30,-70 + 11006: 29,-70 + 11007: 27,-67 + 11008: 27,-66 + 11009: 29,-66 + 11010: 33,-66 + 11011: 33,-66 + 11012: 40,-71 + 11013: 40,-71 + 11014: 38,-72 + 11015: 38,-71 + 11016: 39,-70 + 11017: 40,-70 + 11018: 41,-73 + 11019: 41,-68 + 11020: 41,-68 + 11021: 41,-66 + 11022: 39,-66 + 11023: 38,-67 + 11024: 35,-72 + 11025: 34,-71 + 11026: 35,-67 + 11027: 37,-66 + 11028: 35,-65 + 11029: 34,-63 + 11030: 35,-61 + 11031: 38,-62 + 11032: 40,-63 + 11033: 40,-61 + 11034: 40,-60 + 11035: 42,-62 + 11036: 43,-63 + 11170: 27,-56 + 11171: 27,-56 + 11176: 26,-55 + 11177: 26,-55 + 11178: 28,-55 + 11179: 28,-58 + 11180: 40,-68 + 11181: 38,-68 + 11277: -60,-39 + 11278: -60,-42 + 11279: -60,-41 + 11280: -60,-41 + 12881: -46,-23 + 12882: -47,-23 + 12883: -47,-22 + 12884: -46,-22 + 12885: -45,-22 + 12886: -45,-23 + 12963: -47,-25 + 12964: -46,-25 + 12965: -45,-26 + 12966: -45,-27 + 12967: -46,-29 + 12968: -45,-29 + 12969: -46,-30 + 12970: -46,-30 + 12971: -45,-31 + 12972: -46,-31 + 12973: -46,-28 + 12974: -46,-28 + 12975: -42,-29 + 12976: -42,-29 + 12977: -41,-27 + 12978: -41,-27 + 12979: -40,-28 + 12980: -41,-29 + 12981: -42,-27 + 12982: -42,-26 + 12983: -41,-28 + 12984: -41,-29 + 12985: -40,-27 + 12986: -39,-27 + 12987: -38,-26 + 12988: -37,-27 + 12989: -37,-28 + 12990: -39,-29 + 12991: -39,-29 + 12992: -36,-29 + 12993: -36,-28 + 12994: -37,-27 + 12995: -38,-27 + 12996: -35,-29 + 12997: -34,-29 + 12998: -35,-27 + 12999: -35,-27 + 13027: -40,-24 + 13028: -39,-23 + 13029: -39,-22 + 13030: -38,-23 + 13031: -38,-24 + 13032: -37,-23 + 13033: -37,-22 + 13034: -34,-22 + 13035: -34,-24 + 13036: -33,-24 + 13037: -33,-23 + 13038: -43,-23 + 13039: -43,-22 + 13040: -42,-22 + 13041: -41,-23 + 13042: -43,-27 + 13043: -42,-28 + 13044: -42,-29 + 13045: -43,-28 + 13046: -40,-27 + 13047: -39,-29 + 13048: -37,-29 + 13049: -36,-27 + 13050: -35,-28 + 13051: -38,-30 + 13052: -38,-30 + 13053: -34,-28 + 13054: -34,-28 + 13055: -34,-30 + 13056: -35,-29 + 13057: -37,-27 + 13058: -38,-26 + 13059: -40,-29 + 13060: -42,-30 + 13061: -42,-31 + 13062: -42,-32 + 13063: -43,-33 + 13064: -40,-33 + 13065: -42,-34 + 13066: -37,-32 + 13067: -37,-32 + 13068: -39,-34 + 13069: -39,-32 + 13070: -38,-34 + 13071: -37,-34 + 13072: -34,-33 + 13073: -34,-32 + 13074: -33,-33 + 13075: -35,-34 + 13076: -33,-34 + 13077: -35,-32 + 13078: -34,-33 + 13102: -29,-27 + 13103: -30,-27 + 13104: -30,-26 + 13105: -27,-26 + 13106: -27,-27 + 13107: -27,-30 + 13108: -26,-31 + 13109: -28,-31 + 13110: -30,-31 + 13111: -30,-29 + 13112: -31,-28 + 13113: -31,-29 + 13114: -31,-31 + 13115: -28,-31 + 13116: -27,-31 + 13117: -27,-32 + 13118: -30,-32 + 13119: -30,-32 + 13120: -30,-31 + 13121: -29,-31 + 13122: -29,-31 + 13123: -30,-30 + 13124: -30,-29 + 13125: -30,-27 + 13146: 43,-34 + 13147: 44,-33 + 13148: 42,-31 + 13149: 44,-32 + 13150: 44,-31 + 13151: 45,-32 + 13152: 45,-33 + 13153: 46,-32 + 13154: 47,-31 + 13155: 48,-32 + 13156: 48,-33 + 13157: 48,-32 + 13158: 47,-34 + 13159: 46,-35 + 13160: 46,-35 + 13161: 48,-35 + 13162: 48,-36 + 13163: 48,-36 + 13164: 47,-36 + 13165: 47,-36 + 13166: 44,-35 + 13167: 45,-33 + 13168: 46,-33 + 13169: 48,-33 + 13170: 48,-34 + 13171: 49,-34 + 13172: 49,-33 + 13173: 49,-34 + 13174: 49,-35 + 13175: 47,-33 + 13176: 47,-32 + 13202: 48,-31 + 13276: 39,-51 + 13277: 41,-52 + 13278: 41,-53 + 13279: 46,-53 + 13280: 47,-53 + 13281: 46,-54 + 13282: 46,-51 + 13283: 46,-52 + 13311: 52,-37 + 13322: 52,-37 + 13323: 53,-36 + 13325: 55,-39 + 13326: 56,-39 + 13327: 55,-38 + 13328: 56,-36 + 13329: 53,-35 + 13344: 55,-36 + 13345: 54,-36 + 13346: 53,-37 + 13347: 53,-38 + 13348: 54,-38 + 13349: 54,-37 + 13350: 54,-35 + 13447: -37,-63 + 13448: -36,-62 + 13465: -38,-63 + 13466: -38,-63 + 13467: -37,-63 + 13468: -38,-62 + 13469: -38,-62 + 13470: -38,-61 + 13471: -37,-60 + 13472: -36,-60 + 13473: -38,-60 + 13474: -38,-61 + 13475: -37,-62 + 13476: -37,-62 + 13477: -36,-61 + 13478: -36,-63 + 13479: -36,-63 + 13480: -37,-61 + 13496: -41,-62 + 13497: -40,-63 + 13544: -37,-64 + 13545: -41,-64 + 13550: -37,-59 + 16067: 76,0 + 16068: 77,0 + 16069: 78,0 + 16082: 99,-2 + 16083: 99,-3 + 16084: 99,-4 + 16085: 100,-4 + 16086: 100,-4 + 16087: 100,-2 + 16100: 91,-3 + 16101: 84,2 + 16106: 83,-3 + 16107: 83,-4 + 16108: 84,-4 + 16109: 88,-3 + 16110: 87,-4 + 16126: 89,9 + 16127: 89,10 + 16128: 91,10 + 16129: 93,10 + 16130: 93,9 + 16131: 92,9 + 16135: 76,4 + 16136: 76,6 + 16137: 93,6 + 16143: 95,7 + 16144: 97,7 + 16145: 97,6 + 16248: -71,-40 + 16249: -70,-40 + 16250: -70,-41 + 16251: -69,-41 + 16252: -69,-42 + 16253: -70,-43 + 16254: -70,-43 + 16255: -70,-43 + 16256: -66,-41 + 16257: -64,-40 + 16258: -62,-40 + 16259: -62,-41 + 16260: -63,-43 + 16261: -65,-43 + 16262: -66,-43 + 16263: -68,-45 + 16264: -69,-46 + 16265: -70,-46 + 16280: -67,-46 + 16281: -66,-46 + 16282: -66,-47 + 16283: -65,-48 + 16284: -65,-47 + 16285: -64,-46 + 16286: -63,-47 + 16287: -62,-47 + 16288: -62,-48 + 16409: -60,-49 + 16410: -60,-48 + 16411: -59,-50 + 16421: 10,69 + 16422: 10,70 + 16423: 11,70 + 16424: 11,69 + 16425: 10,67 + 16426: 11,66 + 16427: 12,66 + 16428: 12,68 + 16465: -39,-7 + 16466: -39,-6 + 16467: -40,-6 + 16468: -40,-7 + 16479: -39,1 + 16480: -39,1 + 16481: -38,0 + 16482: -38,0 + 16483: -37,2 + 16484: -37,2 + 16485: -39,0 + 16486: -37,1 + 16487: -37,2 + 16494: -43,-12 + 16495: -43,-11 + 16496: -43,-10 + 16497: -43,-10 + 16498: -44,-12 + 16499: -44,-12 + 16500: -43,-10 + 16501: -42,-9 + 16502: -42,-10 + 16503: -43,-12 + 16504: -44,-13 + 16505: -44,-13 + 16506: -44,-14 + 16507: -44,-16 + 16508: -44,-17 + 16509: -44,-18 + 16510: -44,-20 + 16511: -42,-20 + 16512: -42,-20 + 16513: -39,-20 + 16514: -37,-20 + 16515: -36,-20 + 16516: -36,-20 + 16517: -38,-20 + 16518: -38,-20 + 16519: -41,-20 + 16520: -42,-20 + 16521: -43,-20 + 16522: -44,-20 + 16523: -36,-20 + 16524: -31,-20 + 16525: -30,-20 + 16526: -30,-20 + 16527: -32,-20 + 16528: -32,-20 + 16529: -32,-18 + 16530: -31,-18 + 16531: -30,-18 + 16532: -29,-18 + 16533: -28,-18 + 16534: -28,-19 + 16535: -28,-20 + 16536: -29,-20 + 16537: -24,-22 + 16538: -24,-22 + 16539: -25,-22 + 16540: -25,-22 + 16541: -24,-21 + 16542: -23,-21 + 16543: -23,-22 + 16544: -22,-22 + 16545: -22,-21 + 16546: -23,-21 + 16547: -25,-21 + 16548: -25,-20 + 16549: -22,-20 + 16550: -22,-20 + 16551: -29,-18 + 17274: -2,32 + 17275: -1,32 + 17276: -1,32 + 17277: -2,27 + 17278: -2,27 + 17279: -1,27 + 17280: 0,27 + 17281: -1,27 + 17282: -2,27 + 17292: 0,39 + 17293: 0,40 + 17294: 0,40 + 17295: 2,40 + 17296: 2,40 + 17297: 0,38 + 17298: -1,36 + 17299: -1,35 + 17300: 0,34 + 17301: 0,34 + 17302: 0,42 + 17303: 1,42 + 17304: 1,42 + 17305: 0,42 + 17306: 0,48 + 17307: 0,48 + 17308: 0,48 + 17309: 0,47 + 17317: 6,52 + 17318: 7,52 + 17319: 6,50 + 18409: -53,-38 + 18410: -53,-37 + 18411: -52,-36 + 18412: -51,-36 + 18413: -52,-38 + 18414: -51,-38 + 18415: -51,-37 + 18416: -50,-37 + 18417: -50,-38 + 18418: -52,-37 + 18419: -52,-37 + 18420: -51,-37 + 18421: -50,-38 + 18422: -49,-38 + 18423: -48,-38 + 18424: -50,-37 + 18433: -52,-40 + 18434: -50,-40 + 18435: -51,-41 + 18451: -58,-46 + 18719: 61,-41 + 18720: 60,-41 + 18721: 59,-41 + 18722: 60,-40 + 18723: 59,-40 + 18724: 59,-40 + 18725: 59,-40 + 18726: 59,-40 + 18727: 60,-40 + 18728: 62,-40 + 18729: 61,-41 + 18730: 61,-41 + 18944: 43,-42 + 18945: 43,-41 + 18946: 43,-39 + 18947: 43,-38 + 18948: 45,-38 + 18949: 47,-38 + 18950: 49,-38 + 18951: 49,-39 + 18952: 48,-41 + 18953: 48,-43 + 18954: 46,-43 + 18955: 45,-43 + 18956: 44,-41 + 18957: 46,-40 + 18958: 47,-40 + 18984: 44,-48 + 18985: 45,-48 + 18986: 46,-48 + 18987: 43,-52 + 18988: 43,-53 + 18989: 43,-53 + 18990: 56,-41 + 19852: -31,-22 + 19853: -27,-23 + 19944: -72,-34 + 19945: -71,-34 + 19946: -72,-34 + 19947: -72,-36 + 19948: -72,-36 + 19949: -72,-37 + 19950: -72,-38 + 19951: -66,-38 + 19952: -66,-38 + 19953: -64,-38 + 19954: -64,-38 + 19955: -66,-38 + 19956: -67,-38 + 19957: -69,-38 + 19958: -71,-38 + 19959: -70,-38 + 19960: -68,-38 + 19961: -68,-38 + 19962: -65,-38 + 19963: -65,-38 + 19964: -64,-38 + 19965: -63,-38 + 19966: -62,-38 + 19967: -62,-36 + 19968: -62,-36 + 19969: -62,-38 + 19970: -62,-37 + 19971: -65,-34 + 19972: -66,-34 + 19973: -67,-34 + 19974: -69,-34 + 19975: -69,-34 + 19976: -67,-34 + 19977: -69,-34 + 19978: -69,-34 + 19979: -67,-34 + 19980: -67,-34 + 19981: -66,-34 + 19982: -65,-34 + 19983: -69,-34 + 19984: -66,-34 + 19985: -65,-34 + 19986: -63,-37 + 19987: -65,-38 + 19988: -67,-38 + 19989: -69,-38 + 19990: -70,-38 + 19991: -72,-38 + 19992: -72,-37 + 19993: -72,-36 + 19994: -72,-35 + 19995: -72,-35 + 19996: -70,-35 + 19997: -70,-35 + 19998: -70,-35 + 19999: -68,-35 + 20000: -67,-35 + 20001: -67,-36 + 20002: -64,-37 + 20003: -63,-37 + 20004: -62,-37 + 20005: -62,-37 + 20006: -62,-38 + 20007: -62,-36 + 20070: 35,39 + 20071: 34,39 + 20072: 34,38 + 20073: 33,39 + 20074: 36,39 + 20075: 35,37 + 21483: -71,-29 + 21484: -72,-26 + 21485: -70,-27 + 21486: -70,-26 + 21487: -69,-26 + 21488: -69,-27 + 21489: -68,-26 + 21490: -68,-26 + 21491: -67,-25 + 21492: -67,-26 + 21493: -68,-27 + 21494: -68,-27 + 21495: -67,-27 + 21496: -68,-25 + 21497: -67,-24 + 21520: -62,-29 + 21521: -63,-29 + 21522: -63,-30 + 21523: -62,-29 + 21543: -60,-29 + 21544: -60,-29 + 21545: -59,-30 + 21556: -63,-27 + 21557: -64,-27 + 21558: -64,-26 + 21559: -65,-25 + 21560: -66,-24 + 21561: -65,-23 + 21562: -63,-23 + 21563: -62,-23 + 21564: -60,-23 + 21565: -59,-23 + 21566: -61,-25 + 21567: -59,-24 + 21568: -59,-25 + 21569: -59,-26 + 21598: -64,-26 + 21599: -64,-25 + 21600: -63,-24 + 21601: -62,-24 + 21602: -62,-25 + 21603: -60,-26 + 21604: -60,-24 - node: cleanable: True color: '#FFFFFFFF' @@ -19404,1083 +19444,1114 @@ entities: 1008: -40,-36 1009: -40,-37 1010: -41,-37 - 1289: 25,59 - 1290: 25,60 - 1291: 27,56 - 1292: 26,56 - 1293: 30,56 - 1294: 31,56 - 1295: 31,58 - 1320: 18,56 - 1321: 18,56 - 1322: 20,56 - 1323: 11,56 - 1324: 10,56 - 1335: 15,65 - 1336: 14,68 - 1337: 14,68 - 1338: 14,67 - 1339: 15,66 - 1343: 12,72 - 1344: 13,72 - 1345: 14,60 - 1346: 14,59 - 1347: 16,59 - 1348: 16,58 - 1349: 16,58 - 1350: 18,59 - 1351: 17,61 - 1352: 17,62 - 1353: 12,62 - 1354: 19,61 - 1355: 21,63 - 1391: 15,62 - 1392: 16,62 - 1393: 18,61 - 1394: 22,69 - 1395: 23,70 - 1396: 19,70 - 1397: 18,69 - 1398: 17,69 - 1399: 17,71 - 1400: 20,71 - 1401: 20,72 - 1402: 18,72 - 1403: 14,68 - 1404: 15,68 - 1405: 15,69 - 1406: 22,72 - 1420: 24,66 - 1421: 9,66 - 1426: -40,60 - 1427: -41,59 - 1428: -40,62 - 1429: -42,62 - 1439: -28,58 - 1440: -30,57 - 1441: -30,57 - 1442: -30,58 - 1443: -31,57 - 1444: -24,57 - 1445: -25,57 - 1446: -24,55 - 1447: -24,56 - 1448: -25,57 - 1449: -31,58 - 1450: -36,57 - 1451: -37,57 - 1452: -40,57 - 1453: -42,57 - 1454: -42,56 - 1455: -42,53 - 1456: -42,51 - 1457: -42,48 - 1458: -42,48 - 1459: -41,49 - 1460: -42,49 - 1461: -41,50 - 1462: -42,47 - 1463: -42,45 - 1464: -42,44 - 1465: -42,43 - 1466: -42,42 - 1467: -40,42 - 1468: -40,42 - 1469: -38,42 - 1470: -37,42 - 1471: -36,42 - 1472: -36,39 - 1473: -36,37 - 1474: -37,37 - 1475: -38,37 - 1476: -39,37 - 1477: -41,37 - 1478: -45,37 - 1479: -45,38 - 1480: -45,40 - 1481: -44,40 - 1482: -44,41 - 1483: -45,41 - 1484: -43,36 - 1485: -43,34 - 1486: -43,32 - 1487: -43,30 - 1488: -43,28 - 1489: -43,30 - 1490: -43,26 - 1491: -43,25 - 1492: -41,25 - 1493: -41,25 - 1494: -36,25 - 1495: -36,24 - 1496: -36,23 - 1497: -37,23 - 1498: -39,23 - 1499: -38,23 - 1500: -33,23 - 1501: -32,23 - 1502: -31,22 - 1503: -31,22 - 1504: -31,21 - 1505: -31,23 - 1506: -30,23 - 1507: -29,25 - 1508: -28,25 - 1509: -24,26 - 1510: -23,26 - 1511: -26,17 - 1512: -25,17 - 1513: -25,17 - 1514: -31,13 - 1515: -31,12 - 1516: -31,10 - 1517: -31,8 - 1568: -39,54 - 1569: -40,54 - 1570: -40,53 - 1571: -39,52 - 1572: -38,53 - 1573: -38,54 - 1574: -38,54 - 1575: -37,53 - 1576: -37,55 - 1586: -39,44 - 1587: -37,44 - 1588: -36,44 - 1589: -36,45 - 1590: -38,46 - 1591: -40,44 - 1620: -39,29 - 1621: -39,29 - 1622: -41,27 - 1623: -66,-45 - 1624: -65,-41 - 1625: -68,-43 - 1626: -68,-43 - 1627: -60,-36 - 1628: -60,-35 - 1629: -60,-37 - 1630: -59,-37 - 1631: -59,-38 - 1632: -60,-39 - 1633: -58,-38 - 1634: -58,-39 - 1635: -58,-36 - 1636: -59,-35 - 1637: -58,-34 - 1646: -59,-42 - 1647: -60,-42 - 1648: -60,-43 - 1649: -60,-41 - 1650: -59,-41 - 1651: -59,-40 - 1652: -58,-43 - 1676: -58,-50 - 1677: -59,-51 - 1678: -60,-50 - 1679: -60,-49 - 1680: -58,-48 - 1681: -58,-48 - 1682: -59,-48 - 1683: -59,-49 - 1688: -38,-1 - 1689: -39,0 - 1690: -37,1 - 1691: -38,1 - 1692: -37,0 - 1693: -39,2 - 1694: -39,2 - 1725: -54,-47 - 1726: -52,-48 - 1727: -52,-48 - 1728: -51,-49 - 1729: -49,-48 - 1730: -48,-48 - 1731: -49,-47 - 1732: -50,-47 - 1733: -52,-47 - 1734: -49,-47 - 1735: -50,-46 - 1736: -49,-45 - 1737: -50,-44 - 1738: -50,-44 - 1739: -54,-45 - 1740: -55,-47 - 1741: -56,-46 - 1742: -55,-45 - 1743: -54,-44 - 1744: -55,-43 - 1745: -56,-44 - 1746: -54,-46 - 1747: -53,-47 - 1748: -50,-48 - 1749: -49,-48 - 1750: -48,-47 - 1751: -47,-48 - 1752: -50,-48 - 1753: -51,-48 - 1754: -48,-49 - 1755: -48,-47 - 1756: -47,-47 - 1757: -46,-48 - 1758: -47,-46 - 1759: -47,-45 - 1760: -46,-45 - 1761: -47,-45 - 1762: -47,-44 - 1763: -46,-44 - 1764: -46,-43 - 1765: -47,-44 - 1766: -47,-48 - 1767: -49,-48 - 1768: -49,-46 - 1769: -50,-46 - 1770: -49,-45 - 1771: -50,-44 - 1772: -51,-44 - 1773: -50,-43 - 1774: -53,-44 - 1775: -54,-44 - 1776: -54,-43 - 1777: -53,-44 - 1778: -53,-44 - 1779: -54,-44 - 1780: -52,-44 - 1781: -51,-44 - 1782: -50,-43 - 1783: -54,-44 - 1784: -55,-44 - 1785: -55,-44 - 1786: -55,-45 - 1787: -55,-46 - 1788: -56,-46 - 1789: -55,-47 - 1790: -52,-48 - 1791: -50,-49 - 1792: -49,-49 - 1793: -52,-48 - 1794: -53,-49 - 1795: -53,-49 - 1796: -54,-48 - 1797: -52,-49 - 1798: -47,-47 - 1799: -46,-47 - 1800: -56,-49 - 1801: -56,-49 - 1802: -56,-48 - 1803: -50,-48 - 1804: -47,-48 - 1805: -46,-47 - 1806: -58,-23 - 1807: -59,-23 - 1808: -66,-23 - 1834: -70,-29 - 1835: -70,-28 - 1836: -71,-28 - 1837: -72,-29 - 1838: -72,-28 - 1839: -71,-27 - 1840: -70,-27 - 1841: -70,-24 - 1842: -71,-25 - 1843: -72,-23 - 1844: -70,-23 - 1845: -68,-23 - 1846: -70,-26 - 1847: -69,-27 - 1848: -69,-29 - 1849: -68,-23 - 1850: -69,-23 - 1875: -55,-31 - 1876: -55,-23 - 1877: -52,-21 - 1878: -51,-21 - 1879: -64,-21 - 1880: -69,-20 - 1881: -75,-22 - 1882: -77,-20 - 1883: -77,-19 - 1884: -78,-20 - 1885: -78,-21 - 1886: -78,-24 - 1887: -78,-27 - 1888: -78,-28 - 1889: -78,-28 - 1890: -78,-26 - 1891: -77,-31 - 1892: -77,-32 - 1893: -78,-32 - 1894: -59,-32 - 1895: 41,-48 - 1896: 41,-48 - 1897: 37,-48 - 1898: 36,-47 - 1899: 36,-48 - 1900: 47,-48 - 1901: 45,-48 - 1902: 41,-45 - 1903: 41,-45 - 1904: 41,-39 - 1905: 41,-38 - 1906: 40,-37 - 1907: 40,-36 - 1908: 41,-33 - 1909: 42,-28 - 1910: 43,-28 - 1911: 51,-28 - 1912: 52,-28 - 1913: 52,-29 - 1914: 51,-30 - 1915: 52,-31 - 1916: 52,-32 - 1917: 51,-34 - 1918: 51,-35 - 1919: 51,-37 - 1920: 51,-39 - 1921: 52,-38 - 1922: 52,-43 - 1923: 52,-45 - 1924: 49,-42 - 1925: 49,-44 - 1926: 47,-45 - 1927: 45,-45 - 1928: 43,-41 - 1929: 46,-45 - 1930: 45,-44 - 1931: 45,-41 - 1932: 48,-42 - 1933: 49,-40 - 1934: 47,-40 - 1935: 45,-39 - 1936: 48,-38 - 1937: 47,-38 - 1938: 45,-38 - 1939: 44,-38 - 1940: 52,-47 - 1941: 55,-43 - 1942: 55,-44 - 1943: 55,-44 - 1944: 35,-55 - 1945: 34,-56 - 1946: 32,-55 - 1947: 30,-55 - 1948: 41,-42 - 1949: 43,-28 - 1950: 39,-23 - 1951: 38,-23 - 1952: 36,-23 - 1953: 36,-22 - 1954: 35,-21 - 1955: 36,-20 - 1956: 34,-21 - 1957: 35,-22 - 1958: 35,-23 - 1959: 34,-20 - 4053: -22,45 - 4060: -21,64 - 4068: 11,81 - 16504: -70,-36 - 16505: -67,-37 - 16506: -64,-36 - 16507: -63,-35 - 16508: -63,-35 - 16516: -69,-37 - 16517: -63,-34 - 16518: -63,-37 + 1262: 25,59 + 1263: 25,60 + 1264: 27,56 + 1265: 26,56 + 1266: 30,56 + 1267: 31,56 + 1268: 31,58 + 1293: 18,56 + 1294: 18,56 + 1295: 20,56 + 1296: 11,56 + 1297: 10,56 + 1308: 15,65 + 1309: 14,68 + 1310: 14,68 + 1311: 14,67 + 1312: 15,66 + 1316: 12,72 + 1317: 13,72 + 1318: 14,60 + 1319: 14,59 + 1320: 16,59 + 1321: 16,58 + 1322: 16,58 + 1323: 18,59 + 1324: 17,61 + 1325: 17,62 + 1326: 12,62 + 1327: 19,61 + 1328: 21,63 + 1364: 15,62 + 1365: 16,62 + 1366: 18,61 + 1367: 22,69 + 1368: 23,70 + 1369: 19,70 + 1370: 18,69 + 1371: 17,69 + 1372: 17,71 + 1373: 20,71 + 1374: 20,72 + 1375: 18,72 + 1376: 14,68 + 1377: 15,68 + 1378: 15,69 + 1379: 22,72 + 1393: 24,66 + 1394: 9,66 + 1399: -40,60 + 1400: -41,59 + 1401: -40,62 + 1402: -42,62 + 1412: -28,58 + 1413: -30,57 + 1414: -30,57 + 1415: -30,58 + 1416: -31,57 + 1417: -24,57 + 1418: -25,57 + 1419: -24,55 + 1420: -24,56 + 1421: -25,57 + 1422: -31,58 + 1423: -36,57 + 1424: -37,57 + 1425: -40,57 + 1426: -42,57 + 1427: -42,56 + 1428: -42,53 + 1429: -42,51 + 1430: -42,48 + 1431: -42,48 + 1432: -41,49 + 1433: -42,49 + 1434: -41,50 + 1435: -42,47 + 1436: -42,45 + 1437: -42,44 + 1438: -42,43 + 1439: -42,42 + 1440: -40,42 + 1441: -40,42 + 1442: -38,42 + 1443: -37,42 + 1444: -36,42 + 1445: -36,39 + 1446: -36,37 + 1447: -37,37 + 1448: -38,37 + 1449: -39,37 + 1450: -41,37 + 1451: -45,37 + 1452: -45,38 + 1453: -45,40 + 1454: -44,40 + 1455: -44,41 + 1456: -45,41 + 1457: -43,36 + 1458: -43,34 + 1459: -43,32 + 1460: -43,30 + 1461: -43,28 + 1462: -43,30 + 1463: -43,26 + 1464: -43,25 + 1465: -41,25 + 1466: -41,25 + 1467: -36,25 + 1468: -36,24 + 1469: -36,23 + 1470: -37,23 + 1471: -39,23 + 1472: -38,23 + 1473: -33,23 + 1474: -32,23 + 1475: -31,22 + 1476: -31,22 + 1477: -31,21 + 1478: -31,23 + 1479: -30,23 + 1480: -29,25 + 1481: -28,25 + 1482: -24,26 + 1483: -23,26 + 1484: -26,17 + 1485: -25,17 + 1486: -25,17 + 1487: -31,13 + 1488: -31,12 + 1489: -31,10 + 1490: -31,8 + 1541: -39,54 + 1542: -40,54 + 1543: -40,53 + 1544: -39,52 + 1545: -38,53 + 1546: -38,54 + 1547: -38,54 + 1548: -37,53 + 1549: -37,55 + 1559: -39,44 + 1560: -37,44 + 1561: -36,44 + 1562: -36,45 + 1563: -38,46 + 1564: -40,44 + 1593: -39,29 + 1594: -39,29 + 1595: -41,27 + 1596: -66,-45 + 1597: -65,-41 + 1598: -68,-43 + 1599: -68,-43 + 1600: -60,-36 + 1601: -60,-35 + 1602: -60,-37 + 1603: -59,-37 + 1604: -59,-38 + 1605: -60,-39 + 1606: -58,-38 + 1607: -58,-39 + 1608: -58,-36 + 1609: -59,-35 + 1610: -58,-34 + 1619: -59,-42 + 1620: -60,-42 + 1621: -60,-43 + 1622: -60,-41 + 1623: -59,-41 + 1624: -59,-40 + 1625: -58,-43 + 1649: -58,-50 + 1650: -59,-51 + 1651: -60,-50 + 1652: -60,-49 + 1653: -58,-48 + 1654: -58,-48 + 1655: -59,-48 + 1656: -59,-49 + 1661: -38,-1 + 1662: -39,0 + 1663: -37,1 + 1664: -38,1 + 1665: -37,0 + 1666: -39,2 + 1667: -39,2 + 1698: -54,-47 + 1699: -52,-48 + 1700: -52,-48 + 1701: -51,-49 + 1702: -49,-48 + 1703: -48,-48 + 1704: -49,-47 + 1705: -50,-47 + 1706: -52,-47 + 1707: -49,-47 + 1708: -50,-46 + 1709: -49,-45 + 1710: -50,-44 + 1711: -50,-44 + 1712: -54,-45 + 1713: -55,-47 + 1714: -56,-46 + 1715: -55,-45 + 1716: -54,-44 + 1717: -55,-43 + 1718: -56,-44 + 1719: -54,-46 + 1720: -53,-47 + 1721: -50,-48 + 1722: -49,-48 + 1723: -48,-47 + 1724: -47,-48 + 1725: -50,-48 + 1726: -51,-48 + 1727: -48,-49 + 1728: -48,-47 + 1729: -47,-47 + 1730: -46,-48 + 1731: -47,-46 + 1732: -47,-45 + 1733: -46,-45 + 1734: -47,-45 + 1735: -47,-44 + 1736: -46,-44 + 1737: -46,-43 + 1738: -47,-44 + 1739: -47,-48 + 1740: -49,-48 + 1741: -49,-46 + 1742: -50,-46 + 1743: -49,-45 + 1744: -50,-44 + 1745: -51,-44 + 1746: -50,-43 + 1747: -53,-44 + 1748: -54,-44 + 1749: -54,-43 + 1750: -53,-44 + 1751: -53,-44 + 1752: -54,-44 + 1753: -52,-44 + 1754: -51,-44 + 1755: -50,-43 + 1756: -54,-44 + 1757: -55,-44 + 1758: -55,-44 + 1759: -55,-45 + 1760: -55,-46 + 1761: -56,-46 + 1762: -55,-47 + 1763: -52,-48 + 1764: -50,-49 + 1765: -49,-49 + 1766: -52,-48 + 1767: -53,-49 + 1768: -53,-49 + 1769: -54,-48 + 1770: -52,-49 + 1771: -47,-47 + 1772: -46,-47 + 1773: -56,-49 + 1774: -56,-49 + 1775: -56,-48 + 1776: -50,-48 + 1777: -47,-48 + 1778: -46,-47 + 1779: -58,-23 + 1781: -66,-23 + 1807: -70,-29 + 1808: -70,-28 + 1809: -71,-28 + 1810: -72,-29 + 1811: -72,-28 + 1812: -71,-27 + 1813: -70,-27 + 1814: -70,-24 + 1815: -71,-25 + 1816: -72,-23 + 1817: -70,-23 + 1818: -68,-23 + 1819: -70,-26 + 1820: -69,-27 + 1821: -69,-29 + 1822: -68,-23 + 1823: -69,-23 + 1848: -55,-31 + 1849: -55,-23 + 1850: -52,-21 + 1851: -51,-21 + 1852: -64,-21 + 1853: -69,-20 + 1854: -75,-22 + 1855: -77,-20 + 1856: -77,-19 + 1857: -78,-20 + 1858: -78,-21 + 1859: -78,-24 + 1860: -78,-27 + 1861: -78,-28 + 1862: -78,-28 + 1863: -78,-26 + 1864: -77,-31 + 1865: -77,-32 + 1866: -78,-32 + 1867: -59,-32 + 1868: 41,-48 + 1869: 41,-48 + 1870: 37,-48 + 1871: 36,-47 + 1872: 36,-48 + 1873: 47,-48 + 1874: 45,-48 + 1875: 41,-45 + 1876: 41,-45 + 1877: 41,-39 + 1878: 41,-38 + 1879: 40,-37 + 1880: 40,-36 + 1881: 41,-33 + 1882: 42,-28 + 1883: 43,-28 + 1884: 51,-28 + 1885: 52,-28 + 1886: 52,-29 + 1887: 51,-30 + 1888: 52,-31 + 1889: 52,-32 + 1890: 51,-34 + 1891: 51,-35 + 1892: 51,-37 + 1893: 51,-39 + 1894: 52,-38 + 1895: 52,-43 + 1896: 52,-45 + 1897: 49,-42 + 1898: 49,-44 + 1899: 47,-45 + 1900: 45,-45 + 1901: 43,-41 + 1902: 46,-45 + 1903: 45,-44 + 1904: 45,-41 + 1905: 48,-42 + 1906: 49,-40 + 1907: 47,-40 + 1908: 45,-39 + 1909: 48,-38 + 1910: 47,-38 + 1911: 45,-38 + 1912: 44,-38 + 1913: 52,-47 + 1914: 55,-43 + 1915: 55,-44 + 1916: 55,-44 + 1917: 35,-55 + 1918: 34,-56 + 1919: 32,-55 + 1920: 30,-55 + 1921: 41,-42 + 1922: 43,-28 + 1923: 39,-23 + 1924: 38,-23 + 1925: 36,-23 + 1926: 36,-22 + 1927: 35,-21 + 1928: 36,-20 + 1929: 34,-21 + 1930: 35,-22 + 1931: 35,-23 + 1932: 34,-20 + 4026: -22,45 + 4033: -21,64 + 4041: 11,81 + 16358: -70,-36 + 16359: -67,-37 + 16360: -64,-36 + 16361: -63,-35 + 16362: -63,-35 + 16370: -69,-37 + 16371: -63,-34 + 16372: -63,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 13666: -36,-75 - 13667: -37,-73 - 13668: -36,-73 - 13669: -35,-73 - 13670: -34,-73 - 13671: -33,-73 - 13672: -33,-73 - 13673: -33,-73 - 13674: -32,-73 - 13675: -33,-72 - 13676: -33,-72 - 13677: -31,-74 - 13678: -30,-73 - 13679: -30,-74 - 13680: -30,-75 - 13681: -31,-74 - 13682: -29,-75 - 13683: -29,-75 - 13684: -29,-76 - 13685: -29,-77 - 13686: -29,-78 - 13687: -29,-79 - 13688: -29,-80 - 13689: -30,-80 - 13690: -30,-79 - 13691: -30,-78 - 13692: -30,-77 - 13693: -30,-76 - 13694: -30,-75 - 13695: -32,-78 - 13696: -32,-79 - 13697: -33,-78 - 13698: -34,-78 - 13699: -34,-79 - 13700: -33,-80 - 13701: -35,-80 - 13702: -35,-79 - 13703: -35,-78 - 13704: -34,-77 - 13705: -33,-77 - 13706: -32,-78 - 13707: -31,-79 - 13708: -32,-80 - 13709: -37,-80 - 13710: -37,-79 - 13711: -37,-79 - 13712: -36,-78 - 13713: -37,-78 - 13714: -37,-77 - 13715: -36,-77 - 13716: -37,-76 - 13717: -37,-76 - 13718: -36,-76 - 13719: -36,-75 - 13720: -37,-74 - 13721: -36,-73 - 13722: -36,-74 - 13723: -36,-75 - 13724: -35,-74 - 13725: -35,-74 - 13726: -35,-75 - 13727: -35,-76 - 13728: -33,-76 - 13729: -33,-76 - 13730: -33,-75 - 13732: -37,-73 - 13733: -37,-74 - 13734: -36,-75 - 13735: -37,-76 - 13736: -37,-77 - 13737: -36,-78 - 13738: -37,-79 - 13739: -37,-79 - 13740: -37,-79 - 13741: -36,-77 - 13742: -35,-76 - 13743: -32,-76 - 13744: -31,-76 - 13745: -30,-76 - 13746: -30,-77 - 13747: -30,-78 - 13748: -29,-78 - 13749: -29,-77 - 13750: -33,-75 - 13751: -33,-75 - 13752: -32,-75 - 13753: -29,-74 - 13754: -29,-73 - 13755: -29,-73 - 13756: -32,-74 - 13757: -33,-74 - 13758: -31,-73 - 13759: -33,-74 - 13760: -34,-75 - 13761: -34,-74 - 13774: -31,-75 - 13775: -36,-74 - 13810: -39,-74 - 13811: -39,-71 - 13812: -36,-71 - 13813: -35,-71 - 13814: -34,-71 - 13815: -33,-71 - 13816: -32,-71 - 13817: -31,-71 - 13834: -27,-75 - 13835: -27,-74 - 13836: -27,-73 - 13837: -27,-73 - 13838: -27,-68 - 13839: -27,-67 - 13840: -27,-67 - 13841: -27,-69 - 13842: -28,-66 - 13843: -28,-65 - 13844: -28,-62 - 13845: -28,-63 - 13846: -28,-65 - 13859: -34,-60 - 13860: -34,-62 - 13861: -32,-60 - 13862: -32,-61 - 13863: -32,-62 - 13864: -31,-62 - 13865: -31,-63 - 13866: -33,-63 - 13867: -30,-61 - 13870: -34,-63 - 13871: -31,-60 - 13966: -15,-62 - 13967: -10,-62 - 13968: -9,-57 - 13969: -10,-57 - 13970: -7,-56 - 13971: -7,-56 - 13972: -6,-55 - 13973: -5,-55 - 13974: -5,-56 - 13975: -6,-55 - 13976: -6,-56 - 14281: -69,-21 - 14282: -70,-21 - 14283: -69,-21 - 14284: -68,-21 - 14285: -67,-21 - 14286: -63,-21 - 14287: -63,-21 - 14288: -61,-21 - 14289: -60,-21 - 14290: -59,-21 - 14291: -58,-21 - 14292: -58,-21 - 14293: -75,-21 - 14294: -75,-23 - 14295: -75,-24 - 14296: -75,-25 - 14297: -75,-26 - 14298: -75,-27 - 14299: -75,-28 - 14300: -75,-26 - 14301: -75,-25 - 14302: -75,-22 - 14303: -75,-21 - 14304: -75,-21 - 14305: -74,-32 - 14306: -75,-31 - 14307: -73,-32 - 14308: -77,-26 - 14309: -78,-26 - 14310: -78,-27 - 14311: -78,-28 - 14312: -78,-23 - 14313: -77,-23 - 14314: -77,-24 - 14315: -78,-24 - 14316: -77,-19 - 14317: -78,-19 - 14318: -78,-19 - 14319: -78,-21 + 13631: -36,-75 + 13632: -37,-73 + 13633: -36,-73 + 13634: -35,-73 + 13635: -34,-73 + 13636: -33,-73 + 13637: -33,-73 + 13638: -33,-73 + 13639: -32,-73 + 13640: -33,-72 + 13641: -33,-72 + 13642: -31,-74 + 13643: -30,-73 + 13644: -30,-74 + 13645: -30,-75 + 13646: -31,-74 + 13647: -29,-75 + 13648: -29,-75 + 13649: -29,-76 + 13650: -29,-77 + 13651: -29,-78 + 13652: -29,-79 + 13653: -29,-80 + 13654: -30,-80 + 13655: -30,-79 + 13656: -30,-78 + 13657: -30,-77 + 13658: -30,-76 + 13659: -30,-75 + 13660: -32,-78 + 13661: -32,-79 + 13662: -33,-78 + 13663: -34,-78 + 13664: -34,-79 + 13665: -33,-80 + 13666: -35,-80 + 13667: -35,-79 + 13668: -35,-78 + 13669: -34,-77 + 13670: -33,-77 + 13671: -32,-78 + 13672: -31,-79 + 13673: -32,-80 + 13674: -37,-80 + 13675: -37,-79 + 13676: -37,-79 + 13677: -36,-78 + 13678: -37,-78 + 13679: -37,-77 + 13680: -36,-77 + 13681: -37,-76 + 13682: -37,-76 + 13683: -36,-76 + 13684: -36,-75 + 13685: -37,-74 + 13686: -36,-73 + 13687: -36,-74 + 13688: -36,-75 + 13689: -35,-74 + 13690: -35,-74 + 13691: -35,-75 + 13692: -35,-76 + 13693: -33,-76 + 13694: -33,-76 + 13695: -33,-75 + 13697: -37,-73 + 13698: -37,-74 + 13699: -36,-75 + 13700: -37,-76 + 13701: -37,-77 + 13702: -36,-78 + 13703: -37,-79 + 13704: -37,-79 + 13705: -37,-79 + 13706: -36,-77 + 13707: -35,-76 + 13708: -32,-76 + 13709: -31,-76 + 13710: -30,-76 + 13711: -30,-77 + 13712: -30,-78 + 13713: -29,-78 + 13714: -29,-77 + 13715: -33,-75 + 13716: -33,-75 + 13717: -32,-75 + 13718: -29,-74 + 13719: -29,-73 + 13720: -29,-73 + 13721: -32,-74 + 13722: -33,-74 + 13723: -31,-73 + 13724: -33,-74 + 13725: -34,-75 + 13726: -34,-74 + 13739: -31,-75 + 13740: -36,-74 + 13775: -39,-74 + 13776: -39,-71 + 13777: -36,-71 + 13778: -35,-71 + 13779: -34,-71 + 13780: -33,-71 + 13781: -32,-71 + 13782: -31,-71 + 13799: -27,-75 + 13800: -27,-74 + 13801: -27,-73 + 13802: -27,-73 + 13803: -27,-68 + 13804: -27,-67 + 13805: -27,-67 + 13806: -27,-69 + 13807: -28,-66 + 13808: -28,-65 + 13809: -28,-62 + 13810: -28,-63 + 13811: -28,-65 + 13824: -34,-60 + 13825: -34,-62 + 13826: -32,-60 + 13827: -32,-61 + 13828: -32,-62 + 13829: -31,-62 + 13830: -31,-63 + 13831: -33,-63 + 13832: -30,-61 + 13835: -34,-63 + 13836: -31,-60 + 13931: -15,-62 + 13932: -10,-62 + 13933: -9,-57 + 13934: -10,-57 + 13935: -7,-56 + 13936: -7,-56 + 13937: -6,-55 + 13938: -5,-55 + 13939: -5,-56 + 13940: -6,-55 + 13941: -6,-56 + 14246: -69,-21 + 14247: -70,-21 + 14248: -69,-21 + 14249: -68,-21 + 14250: -67,-21 + 14251: -63,-21 + 14252: -63,-21 + 14253: -61,-21 + 14254: -60,-21 + 14255: -59,-21 + 14256: -58,-21 + 14257: -58,-21 + 14258: -75,-21 + 14259: -75,-23 + 14260: -75,-24 + 14261: -75,-25 + 14262: -75,-26 + 14263: -75,-27 + 14264: -75,-28 + 14265: -75,-26 + 14266: -75,-25 + 14267: -75,-22 + 14268: -75,-21 + 14269: -75,-21 + 14270: -74,-32 + 14271: -75,-31 + 14272: -73,-32 + 14273: -77,-26 + 14274: -78,-26 + 14275: -78,-27 + 14276: -78,-28 + 14277: -78,-23 + 14278: -77,-23 + 14279: -77,-24 + 14280: -78,-24 + 14281: -77,-19 + 14282: -78,-19 + 14283: -78,-19 + 14284: -78,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavyMonotile decals: - 13885: -32,-60 - 13886: -32,-61 - 13887: -31,-62 - 13888: -31,-62 - 13889: -32,-62 - 13890: -33,-63 - 13891: -34,-62 - 13892: -31,-63 - 13893: -30,-61 + 13850: -32,-60 + 13851: -32,-61 + 13852: -31,-62 + 13853: -31,-62 + 13854: -32,-62 + 13855: -33,-63 + 13856: -34,-62 + 13857: -31,-63 + 13858: -30,-61 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: 1042: -12,-50 - 3897: 23,72 - 3905: 18,69 - 3932: 20,67 - 3933: 26,66 - 3934: 27,67 - 3944: 21,68 - 3945: 18,66 - 3946: 17,65 - 3949: 22,66 - 3985: 18,63 - 3986: 21,60 - 3987: 21,58 - 3992: 20,60 - 3993: 18,60 - 4017: -35,61 - 4026: -42,59 - 4032: -36,62 - 4045: -36,55 - 4046: -32,60 - 11072: 34,-64 - 11073: 34,-64 - 11074: 35,-64 - 11075: 35,-62 - 11076: 35,-62 - 11077: 36,-61 - 11078: 36,-60 - 11079: 35,-60 - 11080: 34,-62 - 11081: 29,-69 - 11082: 31,-68 - 11083: 31,-67 - 11084: 27,-69 - 11085: 27,-70 - 11086: 29,-70 - 11087: 31,-70 - 11088: 32,-69 - 11089: 32,-68 - 11090: 31,-67 - 11091: 30,-66 - 11092: 29,-67 - 11093: 28,-68 - 11094: 26,-69 - 11095: 34,-60 - 11096: 41,-70 - 11097: 41,-71 - 11098: 39,-71 - 11099: 39,-71 - 11100: 42,-73 - 11101: 41,-75 - 11102: 38,-74 - 11103: 42,-74 - 11104: 42,-74 - 11105: 36,-68 - 11106: 35,-68 - 11107: 34,-68 - 11108: 39,-67 - 11109: 39,-67 - 11110: 40,-66 - 11111: 40,-66 - 11112: 41,-66 - 11113: 41,-68 - 11114: 45,-63 - 11115: 44,-63 - 11116: 43,-63 - 11117: 44,-62 - 11118: 45,-61 - 11119: 45,-61 - 11120: 39,-62 - 11121: 40,-62 - 11122: 40,-62 - 11123: 41,-62 - 11124: 41,-62 - 11208: 26,-57 - 11209: 26,-57 - 11210: 26,-58 - 11217: 38,-68 - 11218: 41,-68 - 11219: 40,-68 - 11316: -65,-37 - 11317: -59,-37 - 11318: -59,-37 - 11319: -59,-38 - 11320: -58,-38 - 11321: -58,-38 - 11322: -59,-42 - 11323: -60,-41 - 11324: -60,-41 - 11325: -59,-41 - 11326: -59,-40 - 11327: -59,-41 - 11328: -58,-41 - 11329: -58,-41 - 11330: -65,-41 - 11331: -65,-41 - 11332: -65,-41 - 12922: -45,-23 - 12923: -47,-22 - 12924: -46,-23 - 12928: -53,-28 - 12929: -53,-26 - 12930: -52,-25 - 12931: -51,-25 - 12932: -51,-26 - 12933: -51,-27 - 12934: -51,-27 - 12935: -51,-28 - 12936: -50,-28 - 12937: -50,-29 - 12938: -51,-29 - 12939: -51,-31 - 12940: -53,-31 - 12941: -53,-30 - 12942: -52,-28 - 12943: -52,-30 - 12944: -52,-27 - 13036: -53,-28 - 13037: -52,-29 - 13038: -43,-29 - 13039: -42,-30 - 13040: -42,-33 - 13041: -43,-32 - 13042: -43,-34 - 13043: -42,-34 - 13044: -41,-33 - 13045: -42,-32 - 13046: -43,-23 - 13047: -43,-24 - 13048: -43,-22 - 13049: -41,-23 - 13050: -42,-24 - 13051: -39,-24 - 13052: -39,-23 - 13053: -37,-22 - 13054: -37,-23 - 13055: -38,-24 - 13056: -35,-23 - 13057: -35,-22 - 13058: -34,-23 - 13059: -34,-24 - 13060: -34,-24 - 13061: -33,-24 - 13114: -35,-33 - 13115: -34,-33 - 13116: -34,-34 - 13117: -33,-32 - 13118: -34,-29 - 13119: -31,-27 - 13120: -31,-29 - 13121: -30,-28 - 13122: -30,-27 - 13123: -28,-27 - 13124: -28,-26 - 13125: -26,-27 - 13126: -29,-28 - 13127: -29,-29 - 13128: -28,-31 - 13129: -27,-31 - 13130: -30,-31 - 13131: -30,-30 - 13132: -28,-29 - 13133: -26,-31 - 13134: -26,-32 - 13135: -26,-30 - 13136: -29,-22 - 13178: 28,-57 - 13179: 48,-31 - 13212: 46,-32 - 13213: 47,-33 - 13214: 47,-32 - 13215: 48,-31 - 13216: 48,-32 - 13217: 47,-34 - 13218: 49,-34 - 13219: 49,-34 - 13220: 49,-35 - 13221: 47,-35 - 13222: 47,-35 - 13223: 46,-34 - 13224: 44,-34 - 13225: 44,-34 - 13226: 43,-33 - 13227: 45,-33 - 13228: 45,-32 - 13229: 47,-32 - 13230: 46,-34 - 13231: 46,-35 - 13232: 47,-33 - 13233: 48,-33 - 13234: 49,-33 - 13235: 49,-33 - 13236: 48,-32 - 13239: 39,-52 - 13240: 40,-51 - 13241: 40,-52 - 13242: 40,-53 - 13243: 40,-53 - 13244: 39,-54 - 13245: 39,-55 - 13246: 40,-55 - 13247: 41,-52 - 13248: 41,-54 - 13249: 41,-55 - 13250: 42,-53 - 13251: 42,-53 - 13252: 41,-56 - 13253: 42,-56 - 13254: 42,-50 - 13255: 44,-50 - 13256: 44,-50 - 13257: 45,-50 - 13258: 45,-52 - 13259: 44,-52 - 13260: 44,-51 - 13261: 45,-52 - 13262: 44,-54 - 13263: 44,-55 - 13264: 46,-55 - 13265: 45,-54 - 13266: 45,-55 - 13267: 46,-55 - 13268: 46,-52 - 13269: 47,-52 - 13345: 52,-37 - 13359: 54,-35 - 13365: 54,-39 - 13386: 54,-36 - 13387: 55,-35 - 13388: 53,-36 - 13389: 53,-38 - 13390: 54,-37 - 13484: -37,-63 - 13485: -37,-62 - 13486: -38,-62 - 13487: -38,-61 - 13488: -38,-60 - 13489: -36,-60 - 13490: -38,-60 - 13491: -37,-59 - 13492: -37,-61 - 13493: -36,-62 - 13494: -36,-61 - 13495: -37,-61 - 13496: -38,-63 - 13497: -36,-63 - 13498: -36,-63 - 13499: -36,-62 - 13533: -41,-63 - 13534: -41,-62 - 13535: -40,-63 - 13582: -41,-64 - 13583: -37,-64 - 13584: -37,-59 - 16216: 76,1 - 16217: 76,0 - 16218: 77,0 - 16219: 78,0 - 16220: 79,4 - 16221: 79,5 - 16222: 78,4 - 16234: 99,-2 - 16235: 99,-3 - 16236: 99,-4 - 16237: 100,-4 - 16238: 100,-2 - 16248: 85,2 - 16249: 86,2 - 16250: 79,-3 - 16251: 79,-4 - 16278: 92,9 - 16279: 76,6 - 16280: 76,4 - 16284: 93,6 - 16285: 96,6 - 16286: 95,6 - 16287: 96,7 - 16288: 97,7 - 16383: -72,-40 - 16384: -72,-41 - 16385: -71,-41 - 16386: -71,-42 - 16387: -72,-42 - 16388: -71,-40 - 16389: -70,-40 - 16390: -70,-41 - 16391: -69,-41 - 16392: -69,-41 - 16393: -69,-43 - 16435: -65,-47 - 16436: -65,-47 - 16437: -64,-47 - 16438: -64,-47 - 16439: -63,-46 - 16440: -62,-47 - 16441: -62,-48 - 16442: -63,-48 - 16443: -66,-48 - 16458: -65,-46 - 16459: -64,-46 - 16460: -64,-45 - 16461: -63,-45 - 16462: -63,-46 - 16463: -63,-47 - 16464: -65,-47 - 16465: -66,-48 - 16466: -66,-48 - 16467: -63,-48 - 16468: -63,-47 - 16469: -62,-47 - 16470: -62,-41 - 16471: -62,-40 - 16472: -64,-40 - 16473: -70,-43 - 16474: -69,-43 - 16475: -68,-45 - 16476: -69,-46 - 16477: -70,-46 - 16478: -72,-42 - 16558: -59,-50 - 16559: -60,-49 - 16560: -60,-48 - 16575: 10,68 - 16576: 10,68 - 16577: 11,69 - 16578: 11,69 - 16579: 12,69 - 16580: 12,68 - 16581: 12,67 - 16582: 12,66 - 16583: 10,66 - 16584: 11,66 - 16585: 11,67 - 16586: 11,67 - 16587: 12,67 - 16588: 11,69 - 16589: 12,70 - 16590: 13,67 - 16591: 13,67 - 16592: 11,68 - 16593: 12,69 - 16594: 11,70 - 16615: -40,-6 - 16616: -40,-7 - 16617: -39,-7 - 16618: -39,-6 - 16619: -38,2 - 16620: -37,2 - 16621: -37,1 - 16622: -37,0 - 16623: -39,0 - 16624: -38,2 - 16698: -32,-20 - 16699: -30,-20 - 16700: -30,-20 - 16701: -30,-19 - 16702: -32,-18 - 16703: -34,-18 - 16704: -35,-18 - 16705: -31,-18 - 16706: -29,-18 - 16707: -29,-18 - 16708: -28,-20 - 16709: -28,-19 - 16710: -29,-20 - 16711: -24,-21 - 16712: -24,-22 - 16713: -22,-22 - 16714: -22,-21 - 16715: -35,-20 - 16716: -36,-20 - 16717: -39,-20 - 16718: -41,-20 - 16719: -43,-20 - 16720: -44,-20 - 16721: -48,-20 - 16722: -49,-22 - 16723: -49,-23 - 16724: -49,-23 - 16725: -50,-22 - 16726: -49,-22 - 16727: -49,-22 - 16728: -50,-23 - 16729: -53,-23 - 16730: -54,-23 - 16731: -53,-21 - 16732: -53,-20 - 16733: -53,-20 - 16734: -52,-20 - 16735: -53,-20 - 16736: -55,-20 - 16737: -56,-20 - 16738: -56,-21 - 16739: -55,-22 - 16740: -56,-23 - 16741: -56,-26 - 16742: -56,-25 - 16743: -56,-27 - 16744: -55,-29 - 16745: -55,-30 - 16746: -60,-32 - 17416: -2,32 - 17417: -1,32 - 17418: -1,32 - 17419: -2,32 - 17429: -2,27 - 17430: 0,27 - 17431: 0,40 - 17432: 1,40 - 17433: 1,40 - 17434: 2,40 - 17435: 0,36 - 17436: 0,35 - 17437: 0,34 - 17456: 0,48 - 17457: 0,47 - 17458: 0,41 - 17459: 1,42 - 17460: 6,50 - 17461: 6,52 - 17462: 7,52 - 18590: -50,-36 - 18591: -50,-37 - 18592: -51,-38 - 18593: -53,-37 - 18594: -53,-36 - 18595: -48,-38 - 18596: -52,-40 - 18597: -51,-41 - 18615: -58,-46 - 18896: 59,-40 - 18897: 60,-40 - 18898: 60,-41 - 19124: 44,-42 - 19125: 44,-44 - 19126: 46,-44 - 19127: 44,-42 - 19128: 46,-40 - 19129: 47,-39 - 19130: 48,-39 - 19131: 48,-38 - 19132: 49,-38 - 19133: 49,-41 - 19134: 49,-42 - 19135: 49,-42 - 19136: 49,-41 - 19137: 49,-44 - 19138: 49,-45 - 19139: 48,-45 - 19140: 46,-45 - 19141: 44,-45 - 19142: 43,-45 - 19143: 43,-44 - 19144: 43,-42 - 19145: 52,-47 - 19146: 46,-48 - 19147: 45,-48 - 19148: 44,-48 - 19156: 56,-43 - 19157: 56,-43 - 19158: 55,-44 - 19159: 55,-43 - 19160: 56,-41 - 20019: -31,-23 - 20020: -31,-24 - 20021: -30,-22 - 20022: -27,-23 - 20033: -28,-24 - 20034: -27,-24 - 20040: -29,-24 - 20041: -29,-24 - 20042: -30,-23 - 20043: -29,-23 - 20044: -28,-23 - 20045: -29,-23 - 21663: -67,-29 - 21664: -67,-29 - 21665: -67,-28 - 21666: -67,-28 - 21667: -68,-26 - 21668: -67,-26 - 21669: -68,-25 - 21670: -67,-24 - 21671: -69,-23 - 21672: -69,-23 - 21673: -70,-24 - 21674: -72,-24 - 21675: -72,-25 - 21676: -70,-23 - 21677: -71,-23 - 21678: -72,-25 - 21679: -72,-27 - 21680: -72,-26 + 3870: 23,72 + 3878: 18,69 + 3905: 20,67 + 3906: 26,66 + 3907: 27,67 + 3917: 21,68 + 3918: 18,66 + 3919: 17,65 + 3922: 22,66 + 3958: 18,63 + 3959: 21,60 + 3960: 21,58 + 3965: 20,60 + 3966: 18,60 + 3990: -35,61 + 3999: -42,59 + 4005: -36,62 + 4018: -36,55 + 4019: -32,60 + 11037: 34,-64 + 11038: 34,-64 + 11039: 35,-64 + 11040: 35,-62 + 11041: 35,-62 + 11042: 36,-61 + 11043: 36,-60 + 11044: 35,-60 + 11045: 34,-62 + 11046: 29,-69 + 11047: 31,-68 + 11048: 31,-67 + 11049: 27,-69 + 11050: 27,-70 + 11051: 29,-70 + 11052: 31,-70 + 11053: 32,-69 + 11054: 32,-68 + 11055: 31,-67 + 11056: 30,-66 + 11057: 29,-67 + 11058: 28,-68 + 11059: 26,-69 + 11060: 34,-60 + 11061: 41,-70 + 11062: 41,-71 + 11063: 39,-71 + 11064: 39,-71 + 11065: 42,-73 + 11066: 41,-75 + 11067: 38,-74 + 11068: 42,-74 + 11069: 42,-74 + 11070: 36,-68 + 11071: 35,-68 + 11072: 34,-68 + 11073: 39,-67 + 11074: 39,-67 + 11075: 40,-66 + 11076: 40,-66 + 11077: 41,-66 + 11078: 41,-68 + 11079: 45,-63 + 11080: 44,-63 + 11081: 43,-63 + 11082: 44,-62 + 11083: 45,-61 + 11084: 45,-61 + 11085: 39,-62 + 11086: 40,-62 + 11087: 40,-62 + 11088: 41,-62 + 11089: 41,-62 + 11173: 26,-57 + 11174: 26,-57 + 11175: 26,-58 + 11182: 38,-68 + 11183: 41,-68 + 11184: 40,-68 + 11281: -65,-37 + 11282: -59,-37 + 11283: -59,-37 + 11284: -59,-38 + 11285: -58,-38 + 11286: -58,-38 + 11287: -59,-42 + 11288: -60,-41 + 11289: -60,-41 + 11290: -59,-41 + 11291: -59,-40 + 11292: -59,-41 + 11293: -58,-41 + 11294: -58,-41 + 11295: -65,-41 + 11296: -65,-41 + 11297: -65,-41 + 12887: -45,-23 + 12888: -47,-22 + 12889: -46,-23 + 12893: -53,-28 + 12894: -53,-26 + 12895: -52,-25 + 12896: -51,-25 + 12897: -51,-26 + 12898: -51,-27 + 12899: -51,-27 + 12900: -51,-28 + 12901: -50,-28 + 12902: -50,-29 + 12903: -51,-29 + 12904: -51,-31 + 12905: -53,-31 + 12906: -53,-30 + 12907: -52,-28 + 12908: -52,-30 + 12909: -52,-27 + 13001: -53,-28 + 13002: -52,-29 + 13003: -43,-29 + 13004: -42,-30 + 13005: -42,-33 + 13006: -43,-32 + 13007: -43,-34 + 13008: -42,-34 + 13009: -41,-33 + 13010: -42,-32 + 13011: -43,-23 + 13012: -43,-24 + 13013: -43,-22 + 13014: -41,-23 + 13015: -42,-24 + 13016: -39,-24 + 13017: -39,-23 + 13018: -37,-22 + 13019: -37,-23 + 13020: -38,-24 + 13021: -35,-23 + 13022: -35,-22 + 13023: -34,-23 + 13024: -34,-24 + 13025: -34,-24 + 13026: -33,-24 + 13079: -35,-33 + 13080: -34,-33 + 13081: -34,-34 + 13082: -33,-32 + 13083: -34,-29 + 13084: -31,-27 + 13085: -31,-29 + 13086: -30,-28 + 13087: -30,-27 + 13088: -28,-27 + 13089: -28,-26 + 13090: -26,-27 + 13091: -29,-28 + 13092: -29,-29 + 13093: -28,-31 + 13094: -27,-31 + 13095: -30,-31 + 13096: -30,-30 + 13097: -28,-29 + 13098: -26,-31 + 13099: -26,-32 + 13100: -26,-30 + 13101: -29,-22 + 13143: 28,-57 + 13144: 48,-31 + 13177: 46,-32 + 13178: 47,-33 + 13179: 47,-32 + 13180: 48,-31 + 13181: 48,-32 + 13182: 47,-34 + 13183: 49,-34 + 13184: 49,-34 + 13185: 49,-35 + 13186: 47,-35 + 13187: 47,-35 + 13188: 46,-34 + 13189: 44,-34 + 13190: 44,-34 + 13191: 43,-33 + 13192: 45,-33 + 13193: 45,-32 + 13194: 47,-32 + 13195: 46,-34 + 13196: 46,-35 + 13197: 47,-33 + 13198: 48,-33 + 13199: 49,-33 + 13200: 49,-33 + 13201: 48,-32 + 13204: 39,-52 + 13205: 40,-51 + 13206: 40,-52 + 13207: 40,-53 + 13208: 40,-53 + 13209: 39,-54 + 13210: 39,-55 + 13211: 40,-55 + 13212: 41,-52 + 13213: 41,-54 + 13214: 41,-55 + 13215: 42,-53 + 13216: 42,-53 + 13217: 41,-56 + 13218: 42,-56 + 13219: 42,-50 + 13220: 44,-50 + 13221: 44,-50 + 13222: 45,-50 + 13223: 45,-52 + 13224: 44,-52 + 13225: 44,-51 + 13226: 45,-52 + 13227: 44,-54 + 13228: 44,-55 + 13229: 46,-55 + 13230: 45,-54 + 13231: 45,-55 + 13232: 46,-55 + 13233: 46,-52 + 13234: 47,-52 + 13310: 52,-37 + 13324: 54,-35 + 13330: 54,-39 + 13351: 54,-36 + 13352: 55,-35 + 13353: 53,-36 + 13354: 53,-38 + 13355: 54,-37 + 13449: -37,-63 + 13450: -37,-62 + 13451: -38,-62 + 13452: -38,-61 + 13453: -38,-60 + 13454: -36,-60 + 13455: -38,-60 + 13456: -37,-59 + 13457: -37,-61 + 13458: -36,-62 + 13459: -36,-61 + 13460: -37,-61 + 13461: -38,-63 + 13462: -36,-63 + 13463: -36,-63 + 13464: -36,-62 + 13498: -41,-63 + 13499: -41,-62 + 13500: -40,-63 + 13547: -41,-64 + 13548: -37,-64 + 13549: -37,-59 + 16070: 76,1 + 16071: 76,0 + 16072: 77,0 + 16073: 78,0 + 16074: 79,4 + 16075: 79,5 + 16076: 78,4 + 16088: 99,-2 + 16089: 99,-3 + 16090: 99,-4 + 16091: 100,-4 + 16092: 100,-2 + 16102: 85,2 + 16103: 86,2 + 16104: 79,-3 + 16105: 79,-4 + 16132: 92,9 + 16133: 76,6 + 16134: 76,4 + 16138: 93,6 + 16139: 96,6 + 16140: 95,6 + 16141: 96,7 + 16142: 97,7 + 16237: -72,-40 + 16238: -72,-41 + 16239: -71,-41 + 16240: -71,-42 + 16241: -72,-42 + 16242: -71,-40 + 16243: -70,-40 + 16244: -70,-41 + 16245: -69,-41 + 16246: -69,-41 + 16247: -69,-43 + 16289: -65,-47 + 16290: -65,-47 + 16291: -64,-47 + 16292: -64,-47 + 16293: -63,-46 + 16294: -62,-47 + 16295: -62,-48 + 16296: -63,-48 + 16297: -66,-48 + 16312: -65,-46 + 16313: -64,-46 + 16314: -64,-45 + 16315: -63,-45 + 16316: -63,-46 + 16317: -63,-47 + 16318: -65,-47 + 16319: -66,-48 + 16320: -66,-48 + 16321: -63,-48 + 16322: -63,-47 + 16323: -62,-47 + 16324: -62,-41 + 16325: -62,-40 + 16326: -64,-40 + 16327: -70,-43 + 16328: -69,-43 + 16329: -68,-45 + 16330: -69,-46 + 16331: -70,-46 + 16332: -72,-42 + 16412: -59,-50 + 16413: -60,-49 + 16414: -60,-48 + 16429: 10,68 + 16430: 10,68 + 16431: 11,69 + 16432: 11,69 + 16433: 12,69 + 16434: 12,68 + 16435: 12,67 + 16436: 12,66 + 16437: 10,66 + 16438: 11,66 + 16439: 11,67 + 16440: 11,67 + 16441: 12,67 + 16442: 11,69 + 16443: 12,70 + 16444: 13,67 + 16445: 13,67 + 16446: 11,68 + 16447: 12,69 + 16448: 11,70 + 16469: -40,-6 + 16470: -40,-7 + 16471: -39,-7 + 16472: -39,-6 + 16473: -38,2 + 16474: -37,2 + 16475: -37,1 + 16476: -37,0 + 16477: -39,0 + 16478: -38,2 + 16552: -32,-20 + 16553: -30,-20 + 16554: -30,-20 + 16555: -30,-19 + 16556: -32,-18 + 16557: -34,-18 + 16558: -35,-18 + 16559: -31,-18 + 16560: -29,-18 + 16561: -29,-18 + 16562: -28,-20 + 16563: -28,-19 + 16564: -29,-20 + 16565: -24,-21 + 16566: -24,-22 + 16567: -22,-22 + 16568: -22,-21 + 16569: -35,-20 + 16570: -36,-20 + 16571: -39,-20 + 16572: -41,-20 + 16573: -43,-20 + 16574: -44,-20 + 16575: -48,-20 + 16576: -49,-22 + 16577: -49,-23 + 16578: -49,-23 + 16579: -50,-22 + 16580: -49,-22 + 16581: -49,-22 + 16582: -50,-23 + 16583: -53,-23 + 16584: -54,-23 + 16585: -53,-21 + 16586: -53,-20 + 16587: -53,-20 + 16588: -52,-20 + 16589: -53,-20 + 16590: -55,-20 + 16591: -56,-20 + 16592: -56,-21 + 16593: -55,-22 + 16594: -56,-23 + 16595: -56,-26 + 16596: -56,-25 + 16597: -56,-27 + 16598: -55,-29 + 16599: -55,-30 + 16600: -60,-32 + 17270: -2,32 + 17271: -1,32 + 17272: -1,32 + 17273: -2,32 + 17283: -2,27 + 17284: 0,27 + 17285: 0,40 + 17286: 1,40 + 17287: 1,40 + 17288: 2,40 + 17289: 0,36 + 17290: 0,35 + 17291: 0,34 + 17310: 0,48 + 17311: 0,47 + 17312: 0,41 + 17313: 1,42 + 17314: 6,50 + 17315: 6,52 + 17316: 7,52 + 18425: -50,-36 + 18426: -50,-37 + 18427: -51,-38 + 18428: -53,-37 + 18429: -53,-36 + 18430: -48,-38 + 18431: -52,-40 + 18432: -51,-41 + 18450: -58,-46 + 18731: 59,-40 + 18732: 60,-40 + 18733: 60,-41 + 18959: 44,-42 + 18960: 44,-44 + 18961: 46,-44 + 18962: 44,-42 + 18963: 46,-40 + 18964: 47,-39 + 18965: 48,-39 + 18966: 48,-38 + 18967: 49,-38 + 18968: 49,-41 + 18969: 49,-42 + 18970: 49,-42 + 18971: 49,-41 + 18972: 49,-44 + 18973: 49,-45 + 18974: 48,-45 + 18975: 46,-45 + 18976: 44,-45 + 18977: 43,-45 + 18978: 43,-44 + 18979: 43,-42 + 18980: 52,-47 + 18981: 46,-48 + 18982: 45,-48 + 18983: 44,-48 + 18991: 56,-43 + 18992: 56,-43 + 18993: 55,-44 + 18994: 55,-43 + 18995: 56,-41 + 19854: -31,-23 + 19855: -31,-24 + 19856: -30,-22 + 19857: -27,-23 + 19868: -28,-24 + 19869: -27,-24 + 19875: -29,-24 + 19876: -29,-24 + 19877: -30,-23 + 19878: -29,-23 + 19879: -28,-23 + 19880: -29,-23 + 21498: -67,-29 + 21499: -67,-29 + 21500: -67,-28 + 21501: -67,-28 + 21502: -68,-26 + 21503: -67,-26 + 21504: -68,-25 + 21505: -67,-24 + 21506: -69,-23 + 21507: -69,-23 + 21508: -70,-24 + 21509: -72,-24 + 21510: -72,-25 + 21511: -70,-23 + 21512: -71,-23 + 21513: -72,-25 + 21514: -72,-27 + 21515: -72,-26 + 21524: -61,-29 + 21525: -63,-29 + 21526: -63,-30 + 21527: -61,-29 + 21570: -60,-27 + 21571: -61,-27 + 21572: -60,-27 + 21573: -59,-26 + 21574: -59,-25 + 21575: -60,-25 + 21576: -61,-25 + 21577: -60,-23 + 21578: -60,-23 + 21579: -63,-23 + 21580: -64,-23 + 21581: -60,-23 + 21582: -62,-23 + 21583: -61,-23 + 21584: -65,-24 + 21585: -65,-25 + 21586: -65,-25 + 21587: -60,-25 + 21588: -60,-25 + 21589: -61,-27 + 21590: -62,-27 + 21591: -64,-27 + 21592: -62,-26 + 21593: -63,-26 + 21594: -63,-24 + 21595: -62,-24 + 21596: -61,-24 + 21597: -62,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -20490,488 +20561,487 @@ entities: 849: 38,21 850: 14,29 958: 33,36 - 1280: 57,5 - 1281: 62,6 - 1282: 70,6 - 1296: 31,58 - 1297: 31,59 - 1298: 31,59 - 1299: 31,60 - 1300: 29,60 - 1301: 28,60 - 1302: 29,60 - 1303: 27,56 - 1304: 26,56 - 1305: 25,59 - 1306: 25,60 - 1307: 25,61 - 1308: 26,61 - 1309: 28,59 - 1310: 27,59 - 1311: 30,59 - 1312: 30,56 - 1313: 31,56 - 1314: 31,58 - 1315: 31,59 - 1316: 31,60 - 1317: 31,60 - 1318: 20,56 - 1319: 21,56 - 1325: 9,59 - 1326: 9,60 - 1327: 9,59 - 1328: 7,57 - 1329: 6,56 - 1332: 6,56 - 1333: 6,56 - 1334: 15,65 - 1340: 13,72 - 1341: 13,72 - 1342: 12,72 - 1356: 19,63 - 1357: 20,62 - 1358: 20,61 - 1359: 21,61 - 1360: 20,60 - 1361: 20,59 - 1362: 20,58 - 1363: 19,59 - 1364: 19,58 - 1365: 18,58 - 1366: 20,58 - 1367: 21,60 - 1368: 13,58 - 1369: 12,59 - 1370: 12,58 - 1371: 18,59 - 1372: 17,60 - 1373: 17,58 - 1374: 17,58 - 1375: 19,58 - 1376: 21,59 - 1377: 18,63 - 1378: 17,63 - 1379: 16,63 - 1380: 14,61 - 1381: 13,61 - 1382: 12,61 - 1383: 17,60 - 1384: 17,61 - 1385: 24,57 - 1386: 23,57 - 1387: 23,56 - 1388: 25,56 - 1389: 25,57 - 1390: 25,58 - 1407: 20,70 - 1408: 19,69 - 1409: 18,70 - 1410: 20,71 - 1411: 18,72 - 1412: 21,69 - 1413: 20,70 - 1414: 15,62 - 1415: 14,62 - 1416: 13,61 - 1417: 13,62 - 1418: 15,59 - 1419: 15,60 - 1430: -41,60 - 1431: -40,61 - 1432: -41,59 - 1433: -40,62 - 1434: -42,63 - 1435: -38,60 - 1436: -38,62 - 1518: -31,9 - 1519: -31,9 - 1520: -31,11 - 1521: -31,16 - 1522: -28,17 - 1523: -31,18 - 1524: -31,22 - 1525: -31,23 - 1526: -32,23 - 1527: -31,23 - 1528: -27,25 - 1529: -27,25 - 1530: -23,26 - 1531: -31,21 - 1532: -31,20 - 1533: -31,19 - 1534: -31,19 - 1535: -25,27 - 1536: -25,27 - 1537: -24,25 - 1538: -36,24 - 1539: -36,27 - 1540: -36,29 - 1541: -36,31 - 1542: -36,32 - 1543: -36,33 - 1544: -39,37 - 1545: -39,37 - 1546: -45,37 - 1547: -39,42 - 1548: -39,42 - 1549: -37,42 - 1550: -36,41 - 1551: -42,45 - 1552: -41,50 - 1553: -41,50 - 1554: -41,49 - 1555: -41,48 - 1556: -42,49 - 1557: -39,57 - 1558: -36,57 - 1577: -39,54 - 1578: -39,54 - 1579: -40,54 - 1580: -40,53 - 1581: -38,54 - 1582: -37,55 - 1583: -37,53 - 1584: -38,52 - 1612: -41,29 - 1613: -40,29 - 1614: -40,29 - 1615: -40,27 - 1616: -39,29 - 1617: -39,29 - 1618: -39,29 - 1619: -41,27 - 1653: -60,-43 - 1654: -60,-42 - 1655: -59,-42 - 1656: -59,-41 - 1657: -60,-41 - 1658: -60,-41 - 1659: -59,-40 - 1695: -36,1 - 1696: -38,1 - 1697: -38,1 - 1698: -37,1 - 1699: -39,1 - 1700: -39,1 - 1701: -39,0 - 1702: -39,-1 - 1703: -37,0 - 1704: -37,0 - 1809: -59,-23 - 1810: -57,-26 - 1811: -57,-26 - 1851: -70,-24 - 1852: -70,-24 - 1853: -71,-25 - 1854: -70,-25 - 1855: -70,-26 - 1856: -71,-25 - 1857: -72,-24 - 1858: -72,-23 - 1859: -70,-27 - 1860: -71,-26 - 1861: -71,-27 - 1862: -72,-28 - 1863: -70,-29 - 1864: -69,-29 - 1865: -69,-28 - 1866: -69,-26 - 1867: -69,-24 - 4054: -22,37 - 4057: -17,45 - 4061: -14,68 - 4069: -27,69 - 4070: -2,26 - 16509: -71,-35 - 16510: -70,-36 - 16511: -67,-35 - 16512: -66,-36 - 16522: -71,-36 - 16523: -68,-37 + 1253: 57,5 + 1254: 62,6 + 1255: 70,6 + 1269: 31,58 + 1270: 31,59 + 1271: 31,59 + 1272: 31,60 + 1273: 29,60 + 1274: 28,60 + 1275: 29,60 + 1276: 27,56 + 1277: 26,56 + 1278: 25,59 + 1279: 25,60 + 1280: 25,61 + 1281: 26,61 + 1282: 28,59 + 1283: 27,59 + 1284: 30,59 + 1285: 30,56 + 1286: 31,56 + 1287: 31,58 + 1288: 31,59 + 1289: 31,60 + 1290: 31,60 + 1291: 20,56 + 1292: 21,56 + 1298: 9,59 + 1299: 9,60 + 1300: 9,59 + 1301: 7,57 + 1302: 6,56 + 1305: 6,56 + 1306: 6,56 + 1307: 15,65 + 1313: 13,72 + 1314: 13,72 + 1315: 12,72 + 1329: 19,63 + 1330: 20,62 + 1331: 20,61 + 1332: 21,61 + 1333: 20,60 + 1334: 20,59 + 1335: 20,58 + 1336: 19,59 + 1337: 19,58 + 1338: 18,58 + 1339: 20,58 + 1340: 21,60 + 1341: 13,58 + 1342: 12,59 + 1343: 12,58 + 1344: 18,59 + 1345: 17,60 + 1346: 17,58 + 1347: 17,58 + 1348: 19,58 + 1349: 21,59 + 1350: 18,63 + 1351: 17,63 + 1352: 16,63 + 1353: 14,61 + 1354: 13,61 + 1355: 12,61 + 1356: 17,60 + 1357: 17,61 + 1358: 24,57 + 1359: 23,57 + 1360: 23,56 + 1361: 25,56 + 1362: 25,57 + 1363: 25,58 + 1380: 20,70 + 1381: 19,69 + 1382: 18,70 + 1383: 20,71 + 1384: 18,72 + 1385: 21,69 + 1386: 20,70 + 1387: 15,62 + 1388: 14,62 + 1389: 13,61 + 1390: 13,62 + 1391: 15,59 + 1392: 15,60 + 1403: -41,60 + 1404: -40,61 + 1405: -41,59 + 1406: -40,62 + 1407: -42,63 + 1408: -38,60 + 1409: -38,62 + 1491: -31,9 + 1492: -31,9 + 1493: -31,11 + 1494: -31,16 + 1495: -28,17 + 1496: -31,18 + 1497: -31,22 + 1498: -31,23 + 1499: -32,23 + 1500: -31,23 + 1501: -27,25 + 1502: -27,25 + 1503: -23,26 + 1504: -31,21 + 1505: -31,20 + 1506: -31,19 + 1507: -31,19 + 1508: -25,27 + 1509: -25,27 + 1510: -24,25 + 1511: -36,24 + 1512: -36,27 + 1513: -36,29 + 1514: -36,31 + 1515: -36,32 + 1516: -36,33 + 1517: -39,37 + 1518: -39,37 + 1519: -45,37 + 1520: -39,42 + 1521: -39,42 + 1522: -37,42 + 1523: -36,41 + 1524: -42,45 + 1525: -41,50 + 1526: -41,50 + 1527: -41,49 + 1528: -41,48 + 1529: -42,49 + 1530: -39,57 + 1531: -36,57 + 1550: -39,54 + 1551: -39,54 + 1552: -40,54 + 1553: -40,53 + 1554: -38,54 + 1555: -37,55 + 1556: -37,53 + 1557: -38,52 + 1585: -41,29 + 1586: -40,29 + 1587: -40,29 + 1588: -40,27 + 1589: -39,29 + 1590: -39,29 + 1591: -39,29 + 1592: -41,27 + 1626: -60,-43 + 1627: -60,-42 + 1628: -59,-42 + 1629: -59,-41 + 1630: -60,-41 + 1631: -60,-41 + 1632: -59,-40 + 1668: -36,1 + 1669: -38,1 + 1670: -38,1 + 1671: -37,1 + 1672: -39,1 + 1673: -39,1 + 1674: -39,0 + 1675: -39,-1 + 1676: -37,0 + 1677: -37,0 + 1783: -57,-26 + 1784: -57,-26 + 1824: -70,-24 + 1825: -70,-24 + 1826: -71,-25 + 1827: -70,-25 + 1828: -70,-26 + 1829: -71,-25 + 1830: -72,-24 + 1831: -72,-23 + 1832: -70,-27 + 1833: -71,-26 + 1834: -71,-27 + 1835: -72,-28 + 1836: -70,-29 + 1837: -69,-29 + 1838: -69,-28 + 1839: -69,-26 + 1840: -69,-24 + 4027: -22,37 + 4030: -17,45 + 4034: -14,68 + 4042: -27,69 + 4043: -2,26 + 16363: -71,-35 + 16364: -70,-36 + 16365: -67,-35 + 16366: -66,-36 + 16376: -71,-36 + 16377: -68,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 13762: -34,-75 - 13763: -34,-74 - 13764: -36,-73 - 13765: -37,-76 - 13766: -37,-78 - 13767: -37,-78 - 13768: -37,-79 - 13769: -29,-78 - 13770: -30,-76 - 13771: -30,-75 - 13772: -31,-75 - 13773: -31,-75 - 13818: -36,-71 - 13819: -36,-71 - 13820: -34,-71 - 13821: -33,-71 - 13822: -31,-71 - 13823: -30,-71 - 13824: -39,-71 - 13825: -39,-74 - 13826: -28,-70 - 13827: -27,-73 - 13828: -27,-73 - 13829: -26,-74 - 13830: -27,-74 - 13831: -26,-75 - 13832: -27,-73 - 13833: -27,-75 - 13847: -27,-65 - 13848: -28,-66 - 13849: -28,-63 - 13850: -27,-62 - 13851: -27,-62 - 13852: -27,-65 - 13853: -27,-67 - 13854: -27,-68 - 13855: -27,-69 - 13868: -30,-61 - 13919: -38,-56 - 13920: -39,-56 - 13921: -38,-55 - 13922: -37,-55 - 13923: -37,-56 - 13924: -40,-58 - 13925: -39,-58 - 13926: -38,-58 - 13927: -36,-58 - 13928: -34,-58 - 13929: -35,-57 - 13930: -34,-56 - 13931: -34,-57 - 13932: -34,-58 - 13933: -32,-58 - 13934: -31,-58 - 13935: -29,-58 - 13936: -28,-59 - 13937: -28,-59 - 13938: -28,-60 - 13939: -29,-61 - 13940: -29,-61 - 13941: -27,-62 - 13942: -27,-62 - 13943: -27,-61 - 13944: -25,-62 - 13945: -24,-62 - 13946: -23,-62 - 13947: -26,-62 - 13948: -26,-62 - 13949: -23,-62 - 13950: -21,-62 - 13951: -20,-62 - 13952: -18,-62 - 13953: -16,-62 - 13954: -16,-62 - 13955: -20,-62 - 13956: -17,-63 - 13957: -16,-63 - 13958: -16,-62 - 13959: -15,-62 - 13960: -19,-62 - 13961: -17,-63 - 13962: -14,-62 - 13963: -12,-62 - 13964: -11,-62 - 13965: -10,-62 - 13977: -27,-61 - 13978: -28,-58 - 13998: -58,-34 - 13999: -58,-36 - 14000: -58,-37 - 14001: -59,-39 - 14002: -58,-39 - 14003: -60,-39 - 14004: -60,-37 - 14005: -60,-36 - 14006: -60,-35 - 14007: -59,-34 - 14008: -60,-42 - 14128: -35,-49 - 14129: -35,-50 - 14130: -33,-50 - 14131: -33,-49 - 14132: -40,-49 - 14133: -43,-47 - 14134: -44,-47 - 14135: -44,-44 - 14136: -44,-45 - 14137: -44,-47 - 14138: -44,-49 - 14139: -44,-49 - 14140: -43,-41 - 14141: -44,-41 - 14142: -46,-41 - 14143: -47,-41 - 14144: -49,-41 - 14145: -50,-40 - 14146: -51,-41 - 14147: -51,-41 - 14148: -51,-40 - 14149: -50,-40 - 14150: -50,-40 - 14151: -51,-40 - 14152: -53,-40 - 14153: -53,-40 - 14154: -55,-40 - 14155: -55,-40 - 14156: -56,-39 - 14157: -56,-39 - 14158: -55,-38 - 14159: -55,-39 - 14160: -56,-37 - 14161: -55,-34 - 14162: -55,-35 - 14163: -56,-34 - 14164: -56,-33 - 14165: -55,-35 - 14166: -55,-35 - 14167: -61,-32 - 14168: -61,-32 - 14169: -62,-31 - 14170: -61,-31 - 14171: -60,-32 - 14265: -70,-21 - 14266: -69,-21 - 14267: -69,-21 - 14268: -68,-21 - 14269: -62,-21 - 14270: -63,-21 - 14271: -59,-21 - 14272: -62,-21 - 14273: -62,-21 - 14274: -59,-21 - 14275: -58,-20 - 14276: -57,-20 - 14277: -58,-21 - 14278: -59,-21 - 14279: -59,-21 - 14280: -61,-21 - 14320: -78,-20 - 14321: -78,-20 - 14322: -78,-19 - 14323: -77,-20 - 14324: -77,-23 - 14325: -78,-23 - 14326: -77,-24 - 14327: -78,-27 - 14328: -77,-27 - 14329: -77,-28 - 14330: -78,-31 - 14331: -77,-30 - 14332: -77,-31 - 14333: -77,-32 - 14334: -78,-30 - 14335: -77,-30 - 14336: -71,-32 - 14337: -71,-32 - 14338: -70,-31 - 14339: -68,-31 - 14340: -69,-32 - 14341: -72,-32 - 14342: -74,-32 - 14343: -72,-32 - 14344: -69,-31 - 14345: -74,-32 - 14346: -62,-31 - 14347: -62,-32 - 14348: -61,-32 - 14349: -59,-31 - 14350: -58,-32 - 14351: -59,-32 - 14352: -61,-32 - 14353: -58,-32 - 14354: -58,-32 - 14355: -62,-31 - 14356: -63,-31 - 14357: -64,-31 - 14358: -61,-31 - 14359: -65,-31 - 14360: -68,-31 - 14361: -69,-32 - 14362: -71,-32 - 14363: -58,-31 - 14364: -60,-31 - 14365: -56,-31 - 14366: -55,-29 - 14367: -56,-29 - 14368: -55,-31 - 14369: -56,-32 - 14370: -55,-32 - 14371: -56,-31 - 14372: -55,-30 - 14373: -55,-30 - 14374: -55,-29 - 14375: -56,-26 - 14376: -56,-25 - 14377: -55,-26 - 14378: -55,-27 - 14379: -56,-26 - 14380: -56,-24 - 14381: -55,-24 - 14382: -56,-23 - 14383: -55,-22 - 14384: -56,-21 - 14385: -56,-20 - 14386: -55,-20 - 14387: -55,-21 - 14388: -55,-21 - 14389: -52,-20 - 14390: -52,-21 - 14391: -55,-20 - 14392: -54,-20 - 14393: -52,-21 - 14394: -51,-22 - 14395: -52,-23 - 14396: -54,-23 - 14397: -36,-19 - 14398: -36,-18 - 14399: -36,-19 - 14400: -37,-16 - 14401: -37,-15 - 14402: -37,-14 - 14403: -37,-13 - 14404: -37,-11 - 14405: -39,-14 - 14406: -40,-14 - 14407: -39,-15 - 14408: -39,-16 - 14409: -40,-17 - 14410: -42,-16 - 14411: -41,-14 - 14412: -40,-16 - 14413: -41,-16 - 14414: -41,-16 - 14415: -41,-13 - 14416: -44,-11 - 14417: -39,-9 - 14418: -43,-8 - 14419: -40,-1 - 14420: -38,-1 - 14421: -38,-2 - 14422: -38,-3 - 14423: -38,1 - 14424: -38,-3 - 14425: -37,-5 - 14426: -37,-7 - 14427: -37,-9 - 14428: -37,-12 - 14429: -37,-15 - 14430: -37,-15 - 14431: -37,-17 - 14432: -35,-19 - 14433: -32,-19 - 14434: -32,-19 - 14435: -29,-20 - 14436: -32,-19 - 14437: -27,-19 - 14438: -23,-21 - 14439: -24,-22 - 14440: -25,-21 + 13727: -34,-75 + 13728: -34,-74 + 13729: -36,-73 + 13730: -37,-76 + 13731: -37,-78 + 13732: -37,-78 + 13733: -37,-79 + 13734: -29,-78 + 13735: -30,-76 + 13736: -30,-75 + 13737: -31,-75 + 13738: -31,-75 + 13783: -36,-71 + 13784: -36,-71 + 13785: -34,-71 + 13786: -33,-71 + 13787: -31,-71 + 13788: -30,-71 + 13789: -39,-71 + 13790: -39,-74 + 13791: -28,-70 + 13792: -27,-73 + 13793: -27,-73 + 13794: -26,-74 + 13795: -27,-74 + 13796: -26,-75 + 13797: -27,-73 + 13798: -27,-75 + 13812: -27,-65 + 13813: -28,-66 + 13814: -28,-63 + 13815: -27,-62 + 13816: -27,-62 + 13817: -27,-65 + 13818: -27,-67 + 13819: -27,-68 + 13820: -27,-69 + 13833: -30,-61 + 13884: -38,-56 + 13885: -39,-56 + 13886: -38,-55 + 13887: -37,-55 + 13888: -37,-56 + 13889: -40,-58 + 13890: -39,-58 + 13891: -38,-58 + 13892: -36,-58 + 13893: -34,-58 + 13894: -35,-57 + 13895: -34,-56 + 13896: -34,-57 + 13897: -34,-58 + 13898: -32,-58 + 13899: -31,-58 + 13900: -29,-58 + 13901: -28,-59 + 13902: -28,-59 + 13903: -28,-60 + 13904: -29,-61 + 13905: -29,-61 + 13906: -27,-62 + 13907: -27,-62 + 13908: -27,-61 + 13909: -25,-62 + 13910: -24,-62 + 13911: -23,-62 + 13912: -26,-62 + 13913: -26,-62 + 13914: -23,-62 + 13915: -21,-62 + 13916: -20,-62 + 13917: -18,-62 + 13918: -16,-62 + 13919: -16,-62 + 13920: -20,-62 + 13921: -17,-63 + 13922: -16,-63 + 13923: -16,-62 + 13924: -15,-62 + 13925: -19,-62 + 13926: -17,-63 + 13927: -14,-62 + 13928: -12,-62 + 13929: -11,-62 + 13930: -10,-62 + 13942: -27,-61 + 13943: -28,-58 + 13963: -58,-34 + 13964: -58,-36 + 13965: -58,-37 + 13966: -59,-39 + 13967: -58,-39 + 13968: -60,-39 + 13969: -60,-37 + 13970: -60,-36 + 13971: -60,-35 + 13972: -59,-34 + 13973: -60,-42 + 14093: -35,-49 + 14094: -35,-50 + 14095: -33,-50 + 14096: -33,-49 + 14097: -40,-49 + 14098: -43,-47 + 14099: -44,-47 + 14100: -44,-44 + 14101: -44,-45 + 14102: -44,-47 + 14103: -44,-49 + 14104: -44,-49 + 14105: -43,-41 + 14106: -44,-41 + 14107: -46,-41 + 14108: -47,-41 + 14109: -49,-41 + 14110: -50,-40 + 14111: -51,-41 + 14112: -51,-41 + 14113: -51,-40 + 14114: -50,-40 + 14115: -50,-40 + 14116: -51,-40 + 14117: -53,-40 + 14118: -53,-40 + 14119: -55,-40 + 14120: -55,-40 + 14121: -56,-39 + 14122: -56,-39 + 14123: -55,-38 + 14124: -55,-39 + 14125: -56,-37 + 14126: -55,-34 + 14127: -55,-35 + 14128: -56,-34 + 14129: -56,-33 + 14130: -55,-35 + 14131: -55,-35 + 14132: -61,-32 + 14133: -61,-32 + 14134: -62,-31 + 14135: -61,-31 + 14136: -60,-32 + 14230: -70,-21 + 14231: -69,-21 + 14232: -69,-21 + 14233: -68,-21 + 14234: -62,-21 + 14235: -63,-21 + 14236: -59,-21 + 14237: -62,-21 + 14238: -62,-21 + 14239: -59,-21 + 14240: -58,-20 + 14241: -57,-20 + 14242: -58,-21 + 14243: -59,-21 + 14244: -59,-21 + 14245: -61,-21 + 14285: -78,-20 + 14286: -78,-20 + 14287: -78,-19 + 14288: -77,-20 + 14289: -77,-23 + 14290: -78,-23 + 14291: -77,-24 + 14292: -78,-27 + 14293: -77,-27 + 14294: -77,-28 + 14295: -78,-31 + 14296: -77,-30 + 14297: -77,-31 + 14298: -77,-32 + 14299: -78,-30 + 14300: -77,-30 + 14301: -71,-32 + 14302: -71,-32 + 14303: -70,-31 + 14304: -68,-31 + 14305: -69,-32 + 14306: -72,-32 + 14307: -74,-32 + 14308: -72,-32 + 14309: -69,-31 + 14310: -74,-32 + 14311: -62,-31 + 14312: -62,-32 + 14313: -61,-32 + 14314: -59,-31 + 14315: -58,-32 + 14316: -59,-32 + 14317: -61,-32 + 14318: -58,-32 + 14319: -58,-32 + 14320: -62,-31 + 14321: -63,-31 + 14322: -64,-31 + 14323: -61,-31 + 14324: -65,-31 + 14325: -68,-31 + 14326: -69,-32 + 14327: -71,-32 + 14328: -58,-31 + 14329: -60,-31 + 14330: -56,-31 + 14331: -55,-29 + 14332: -56,-29 + 14333: -55,-31 + 14334: -56,-32 + 14335: -55,-32 + 14336: -56,-31 + 14337: -55,-30 + 14338: -55,-30 + 14339: -55,-29 + 14340: -56,-26 + 14341: -56,-25 + 14342: -55,-26 + 14343: -55,-27 + 14344: -56,-26 + 14345: -56,-24 + 14346: -55,-24 + 14347: -56,-23 + 14348: -55,-22 + 14349: -56,-21 + 14350: -56,-20 + 14351: -55,-20 + 14352: -55,-21 + 14353: -55,-21 + 14354: -52,-20 + 14355: -52,-21 + 14356: -55,-20 + 14357: -54,-20 + 14358: -52,-21 + 14359: -51,-22 + 14360: -52,-23 + 14361: -54,-23 + 14362: -36,-19 + 14363: -36,-18 + 14364: -36,-19 + 14365: -37,-16 + 14366: -37,-15 + 14367: -37,-14 + 14368: -37,-13 + 14369: -37,-11 + 14370: -39,-14 + 14371: -40,-14 + 14372: -39,-15 + 14373: -39,-16 + 14374: -40,-17 + 14375: -42,-16 + 14376: -41,-14 + 14377: -40,-16 + 14378: -41,-16 + 14379: -41,-16 + 14380: -41,-13 + 14381: -44,-11 + 14382: -39,-9 + 14383: -43,-8 + 14384: -40,-1 + 14385: -38,-1 + 14386: -38,-2 + 14387: -38,-3 + 14388: -38,1 + 14389: -38,-3 + 14390: -37,-5 + 14391: -37,-7 + 14392: -37,-9 + 14393: -37,-12 + 14394: -37,-15 + 14395: -37,-15 + 14396: -37,-17 + 14397: -35,-19 + 14398: -32,-19 + 14399: -32,-19 + 14400: -29,-20 + 14401: -32,-19 + 14402: -27,-19 + 14403: -23,-21 + 14404: -24,-22 + 14405: -25,-21 - node: color: '#FFFFFFFF' id: DirtLight @@ -20987,168 +21057,171 @@ entities: 1039: -29,-53 1040: -24,-49 1046: -12,-46 - 3901: 22,70 - 3935: 25,67 - 3936: 27,66 - 3937: 20,66 - 3938: 21,67 - 4027: -36,59 - 4028: -36,60 - 4052: -27,65 - 11125: 44,-63 - 11126: 44,-63 - 11127: 43,-62 - 11128: 45,-61 - 11129: 45,-61 - 11130: 45,-62 - 11131: 45,-62 - 11132: 36,-62 - 11133: 36,-62 - 11134: 34,-61 - 11135: 32,-61 - 11136: 32,-61 - 11137: 34,-66 - 11138: 34,-66 - 11139: 34,-67 - 11140: 34,-69 - 11141: 30,-68 - 11142: 30,-68 - 11143: 32,-67 - 11144: 30,-69 - 11145: 29,-70 - 11146: 28,-70 - 11147: 26,-69 - 11148: 28,-68 - 11149: 28,-68 - 11150: 27,-66 - 11151: 39,-71 - 11152: 41,-71 - 11153: 41,-71 - 11154: 41,-73 - 11155: 41,-73 - 11156: 42,-73 - 11157: 42,-75 - 11158: 39,-74 - 11159: 39,-74 - 11160: 37,-73 - 11161: 39,-73 - 11162: 35,-71 - 11163: 36,-70 - 11164: 36,-70 - 11165: 35,-68 - 11166: 36,-67 - 11167: 36,-66 - 11168: 35,-64 - 11169: 36,-64 - 11170: 35,-60 - 12925: -47,-23 - 12926: -47,-25 - 12927: -46,-26 - 12977: -46,-31 - 12978: -48,-30 - 12979: -48,-31 - 12980: -49,-31 - 12981: -47,-30 - 12982: -47,-29 - 12983: -48,-26 - 12984: -48,-25 - 12985: -47,-26 - 12986: -47,-27 - 12987: -46,-27 - 12988: -45,-26 - 12989: -45,-26 - 12990: -45,-27 - 12991: -46,-26 - 12992: -45,-25 - 12993: -45,-25 - 12994: -45,-27 - 12995: -44,-28 - 12996: -43,-28 - 12997: -42,-27 - 13374: 54,-37 - 13375: 53,-38 - 13376: 54,-38 - 13377: 55,-36 - 13378: 55,-35 - 16412: -66,-47 - 16413: -66,-48 - 16414: -66,-46 - 16415: -67,-46 - 16416: -64,-46 - 16417: -63,-46 - 16418: -63,-46 - 16419: -65,-47 - 16420: -63,-47 - 16421: -62,-46 - 16422: -62,-48 - 16423: -62,-48 - 16424: -63,-47 - 16425: -63,-48 - 16444: -64,-47 - 16445: -63,-47 - 16446: -63,-46 - 16447: -62,-46 - 16448: -62,-48 - 16449: -62,-48 - 16450: -63,-48 - 16451: -64,-48 - 16452: -63,-47 - 16453: -65,-46 - 16454: -65,-45 - 16455: -64,-45 - 16456: -63,-45 - 16457: -63,-46 - 16595: 10,70 - 16596: 10,69 - 16597: 11,70 - 16598: 12,70 - 16599: 12,68 - 16600: 11,67 - 16601: 10,67 - 16602: 12,69 - 16603: 12,67 - 16604: 10,68 - 16605: 9,68 - 16783: -43,0 - 16784: -43,-1 - 16785: -43,-3 - 16786: -43,-4 - 16787: -42,1 - 16788: -41,1 - 16789: -41,0 - 16790: -41,-2 - 16791: -42,-5 - 16792: -43,-8 - 16793: -40,-10 - 16794: -38,-10 - 16795: -38,-11 - 16796: -37,-20 - 16797: -34,-18 - 16798: -33,-18 - 16799: -33,-18 - 16800: -33,-20 - 16801: -34,-20 - 16802: -34,-20 - 16803: -34,-19 - 16804: -36,-19 - 16805: -40,-14 - 16806: -40,-15 - 16807: -40,-15 - 16808: -39,-15 - 16809: -39,-16 - 16810: -42,-16 - 16811: -42,-15 - 16812: -41,-15 - 16813: -41,-16 - 16814: -42,-17 - 16815: -40,-18 - 16816: -39,-18 - 16817: -39,-17 - 18601: -52,-40 - 18602: -55,-34 - 18603: -56,-34 - 18604: -52,-34 - 18617: -58,-46 + 3874: 22,70 + 3908: 25,67 + 3909: 27,66 + 3910: 20,66 + 3911: 21,67 + 4000: -36,59 + 4001: -36,60 + 4025: -27,65 + 11090: 44,-63 + 11091: 44,-63 + 11092: 43,-62 + 11093: 45,-61 + 11094: 45,-61 + 11095: 45,-62 + 11096: 45,-62 + 11097: 36,-62 + 11098: 36,-62 + 11099: 34,-61 + 11100: 32,-61 + 11101: 32,-61 + 11102: 34,-66 + 11103: 34,-66 + 11104: 34,-67 + 11105: 34,-69 + 11106: 30,-68 + 11107: 30,-68 + 11108: 32,-67 + 11109: 30,-69 + 11110: 29,-70 + 11111: 28,-70 + 11112: 26,-69 + 11113: 28,-68 + 11114: 28,-68 + 11115: 27,-66 + 11116: 39,-71 + 11117: 41,-71 + 11118: 41,-71 + 11119: 41,-73 + 11120: 41,-73 + 11121: 42,-73 + 11122: 42,-75 + 11123: 39,-74 + 11124: 39,-74 + 11125: 37,-73 + 11126: 39,-73 + 11127: 35,-71 + 11128: 36,-70 + 11129: 36,-70 + 11130: 35,-68 + 11131: 36,-67 + 11132: 36,-66 + 11133: 35,-64 + 11134: 36,-64 + 11135: 35,-60 + 12890: -47,-23 + 12891: -47,-25 + 12892: -46,-26 + 12942: -46,-31 + 12943: -48,-30 + 12944: -48,-31 + 12945: -49,-31 + 12946: -47,-30 + 12947: -47,-29 + 12948: -48,-26 + 12949: -48,-25 + 12950: -47,-26 + 12951: -47,-27 + 12952: -46,-27 + 12953: -45,-26 + 12954: -45,-26 + 12955: -45,-27 + 12956: -46,-26 + 12957: -45,-25 + 12958: -45,-25 + 12959: -45,-27 + 12960: -44,-28 + 12961: -43,-28 + 12962: -42,-27 + 13339: 54,-37 + 13340: 53,-38 + 13341: 54,-38 + 13342: 55,-36 + 13343: 55,-35 + 16266: -66,-47 + 16267: -66,-48 + 16268: -66,-46 + 16269: -67,-46 + 16270: -64,-46 + 16271: -63,-46 + 16272: -63,-46 + 16273: -65,-47 + 16274: -63,-47 + 16275: -62,-46 + 16276: -62,-48 + 16277: -62,-48 + 16278: -63,-47 + 16279: -63,-48 + 16298: -64,-47 + 16299: -63,-47 + 16300: -63,-46 + 16301: -62,-46 + 16302: -62,-48 + 16303: -62,-48 + 16304: -63,-48 + 16305: -64,-48 + 16306: -63,-47 + 16307: -65,-46 + 16308: -65,-45 + 16309: -64,-45 + 16310: -63,-45 + 16311: -63,-46 + 16449: 10,70 + 16450: 10,69 + 16451: 11,70 + 16452: 12,70 + 16453: 12,68 + 16454: 11,67 + 16455: 10,67 + 16456: 12,69 + 16457: 12,67 + 16458: 10,68 + 16459: 9,68 + 16637: -43,0 + 16638: -43,-1 + 16639: -43,-3 + 16640: -43,-4 + 16641: -42,1 + 16642: -41,1 + 16643: -41,0 + 16644: -41,-2 + 16645: -42,-5 + 16646: -43,-8 + 16647: -40,-10 + 16648: -38,-10 + 16649: -38,-11 + 16650: -37,-20 + 16651: -34,-18 + 16652: -33,-18 + 16653: -33,-18 + 16654: -33,-20 + 16655: -34,-20 + 16656: -34,-20 + 16657: -34,-19 + 16658: -36,-19 + 16659: -40,-14 + 16660: -40,-15 + 16661: -40,-15 + 16662: -39,-15 + 16663: -39,-16 + 16664: -42,-16 + 16665: -42,-15 + 16666: -41,-15 + 16667: -41,-16 + 16668: -42,-17 + 16669: -40,-18 + 16670: -39,-18 + 16671: -39,-17 + 18436: -52,-40 + 18437: -55,-34 + 18438: -56,-34 + 18439: -52,-34 + 18452: -58,-46 + 21528: -63,-30 + 21529: -63,-29 + 21530: -62,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21249,34 +21322,34 @@ entities: 991: -37,-37 1047: -7,-43 1048: -6,-41 - 1283: 66,8 - 1284: 62,9 - 1285: 67,4 - 1286: 52,5 - 1287: 47,0 - 1288: 56,26 - 1330: 6,56 - 1331: 7,57 - 1422: 10,67 - 1437: -35,62 - 1438: -36,61 - 1660: -59,-43 - 1661: -59,-43 - 1662: -58,-42 - 1663: -58,-41 - 1664: -58,-41 - 1665: -58,-43 - 1812: -57,-26 - 4056: -23,35 - 4058: -20,52 - 4059: -16,57 - 4063: -11,84 - 4064: -13,91 - 4065: -9,68 - 4066: 4,68 - 16513: -66,-35 - 16514: -66,-35 - 16515: -66,-35 + 1256: 66,8 + 1257: 62,9 + 1258: 67,4 + 1259: 52,5 + 1260: 47,0 + 1261: 56,26 + 1303: 6,56 + 1304: 7,57 + 1395: 10,67 + 1410: -35,62 + 1411: -36,61 + 1633: -59,-43 + 1634: -59,-43 + 1635: -58,-42 + 1636: -58,-41 + 1637: -58,-41 + 1638: -58,-43 + 1785: -57,-26 + 4029: -23,35 + 4031: -20,52 + 4032: -16,57 + 4036: -11,84 + 4037: -13,91 + 4038: -9,68 + 4039: 4,68 + 16367: -66,-35 + 16368: -66,-35 + 16369: -66,-35 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21312,224 +21385,236 @@ entities: 1043: -21,-29 1044: -12,-51 1045: -12,-49 - 3899: 18,71 - 3900: 17,71 - 3902: 19,71 - 3903: 20,71 - 3904: 21,69 - 3939: 21,65 - 3940: 22,65 - 3941: 23,65 - 4033: -38,63 - 11186: 35,-61 - 11187: 41,-62 - 11188: 39,-62 - 11189: 39,-62 - 11190: 36,-68 - 11191: 35,-67 - 11192: 35,-67 - 11193: 29,-68 - 11194: 29,-68 - 11195: 28,-66 - 11196: 26,-69 - 11197: 26,-70 - 11198: 27,-69 - 11199: 41,-67 - 11200: 28,-69 - 11201: 27,-60 - 11202: 27,-58 - 11203: 28,-56 - 11204: 28,-56 - 12945: -53,-27 - 12946: -53,-26 - 12947: -52,-25 - 12948: -51,-26 - 12949: -52,-28 - 12950: -52,-28 - 12951: -50,-28 - 12952: -51,-29 - 12953: -50,-28 - 12954: -50,-27 - 12955: -51,-29 - 12956: -52,-30 - 12957: -52,-31 - 12958: -52,-31 - 12959: -52,-29 - 12960: -51,-30 - 12961: -51,-30 - 12962: -51,-31 - 12963: -53,-27 - 12964: -52,-26 - 12965: -52,-27 - 12966: -53,-25 - 12967: -51,-25 - 12968: -45,-27 - 12969: -45,-28 - 12970: -46,-29 - 12971: -47,-29 - 12972: -48,-31 - 12973: -46,-31 - 12974: -45,-31 - 12975: -46,-29 - 12976: -45,-28 - 13161: -30,-30 - 13162: -30,-29 - 13163: -30,-28 - 13164: -29,-28 - 13165: -28,-27 - 13166: -26,-27 - 13167: -26,-29 - 13168: -27,-30 - 13169: -29,-30 - 13170: -27,-29 - 13171: -27,-28 - 13172: -28,-28 - 13173: -28,-29 - 13174: -27,-28 - 13175: -29,-28 - 13176: 27,-57 - 13177: 28,-57 - 13270: 45,-52 - 13271: 44,-51 - 13272: 45,-50 - 13273: 45,-52 - 13274: 45,-53 - 13275: 46,-52 - 13276: 45,-55 - 13277: 46,-55 - 13278: 45,-55 - 13279: 45,-54 - 13280: 45,-52 - 13281: 45,-51 - 13282: 41,-54 - 13283: 41,-55 - 13284: 41,-55 - 13285: 40,-54 - 13286: 40,-53 - 13287: 40,-52 - 13288: 40,-51 - 13289: 40,-51 - 13290: 40,-53 - 13291: 41,-53 - 13292: 40,-54 - 13293: 39,-55 - 13294: 39,-55 - 13295: 40,-53 - 13296: 41,-52 - 13297: 41,-51 - 13298: 41,-50 - 13299: 41,-51 - 13300: 42,-52 - 13301: 40,-55 - 13302: 40,-56 - 13303: 39,-56 - 13304: 39,-56 - 13305: 42,-55 - 13306: 39,-51 - 13307: 46,-50 - 13308: 46,-51 - 13309: 47,-52 - 13310: 46,-54 - 13348: 52,-37 - 13366: 54,-39 - 13367: 55,-39 - 13368: 56,-39 - 13369: 55,-38 - 13370: 56,-36 - 13371: 53,-35 - 13372: 55,-37 - 13373: 55,-35 - 13516: -37,-63 - 13517: -37,-62 - 13518: -36,-62 - 13519: -37,-61 - 13520: -38,-60 - 13536: -41,-62 - 13537: -41,-63 - 13538: -40,-63 - 13539: -41,-63 - 16223: 78,4 - 16224: 79,4 - 16225: 79,5 - 16226: 78,5 - 16227: 92,6 - 16239: 99,-4 - 16240: 100,-4 - 16241: 100,-3 - 16242: 99,-3 - 16243: 99,-2 - 16244: 100,-2 - 16245: 93,-4 - 16479: -69,-43 - 16480: -69,-42 - 16481: -69,-41 - 16482: -66,-41 - 16483: -66,-43 - 16484: -65,-43 - 16485: -64,-40 - 16747: -43,-11 - 16748: -43,-12 - 16749: -43,-11 - 16750: -38,-10 - 16751: -37,-9 - 16752: -38,-9 - 16753: -38,-10 - 16754: -38,-10 - 16755: -38,-9 - 16756: -38,-11 - 16757: -43,-4 - 16758: -43,-3 - 16759: -43,-2 - 16760: -43,-1 - 16761: -43,-2 - 16762: -43,-5 - 16763: -43,-6 - 16764: -43,-7 - 16765: -43,-7 - 16766: -43,-4 - 16767: -43,-2 - 16768: -43,0 - 16769: -43,1 - 16770: -42,1 - 16771: -42,0 - 16772: -43,0 - 16773: -42,1 - 16774: -41,1 - 16775: -42,-1 - 16776: -41,-2 - 16777: -41,-1 - 16778: -41,0 - 16779: -41,-2 - 16780: -41,-2 - 16781: -41,-1 - 16782: -41,0 - 16818: -41,-15 - 16819: -42,-16 - 16820: -42,-17 - 16821: -40,-18 - 16822: -39,-18 - 16823: -39,-17 - 16824: -40,-17 - 16825: -41,-17 - 16826: -40,-16 - 16827: -43,-15 - 16828: -42,-15 - 16829: -42,-14 - 16830: -41,-14 - 16831: -40,-14 - 20023: -28,-24 - 20024: -27,-23 - 20025: -27,-22 - 20026: -30,-24 - 20027: -30,-25 - 20028: -28,-25 - 20029: -29,-25 - 20030: -28,-22 - 20031: -27,-22 - 20032: -29,-22 - 20046: -30,-23 - 20047: -29,-23 - 20048: -28,-23 + 3872: 18,71 + 3873: 17,71 + 3875: 19,71 + 3876: 20,71 + 3877: 21,69 + 3912: 21,65 + 3913: 22,65 + 3914: 23,65 + 4006: -38,63 + 11151: 35,-61 + 11152: 41,-62 + 11153: 39,-62 + 11154: 39,-62 + 11155: 36,-68 + 11156: 35,-67 + 11157: 35,-67 + 11158: 29,-68 + 11159: 29,-68 + 11160: 28,-66 + 11161: 26,-69 + 11162: 26,-70 + 11163: 27,-69 + 11164: 41,-67 + 11165: 28,-69 + 11166: 27,-60 + 11167: 27,-58 + 11168: 28,-56 + 11169: 28,-56 + 12910: -53,-27 + 12911: -53,-26 + 12912: -52,-25 + 12913: -51,-26 + 12914: -52,-28 + 12915: -52,-28 + 12916: -50,-28 + 12917: -51,-29 + 12918: -50,-28 + 12919: -50,-27 + 12920: -51,-29 + 12921: -52,-30 + 12922: -52,-31 + 12923: -52,-31 + 12924: -52,-29 + 12925: -51,-30 + 12926: -51,-30 + 12927: -51,-31 + 12928: -53,-27 + 12929: -52,-26 + 12930: -52,-27 + 12931: -53,-25 + 12932: -51,-25 + 12933: -45,-27 + 12934: -45,-28 + 12935: -46,-29 + 12936: -47,-29 + 12937: -48,-31 + 12938: -46,-31 + 12939: -45,-31 + 12940: -46,-29 + 12941: -45,-28 + 13126: -30,-30 + 13127: -30,-29 + 13128: -30,-28 + 13129: -29,-28 + 13130: -28,-27 + 13131: -26,-27 + 13132: -26,-29 + 13133: -27,-30 + 13134: -29,-30 + 13135: -27,-29 + 13136: -27,-28 + 13137: -28,-28 + 13138: -28,-29 + 13139: -27,-28 + 13140: -29,-28 + 13141: 27,-57 + 13142: 28,-57 + 13235: 45,-52 + 13236: 44,-51 + 13237: 45,-50 + 13238: 45,-52 + 13239: 45,-53 + 13240: 46,-52 + 13241: 45,-55 + 13242: 46,-55 + 13243: 45,-55 + 13244: 45,-54 + 13245: 45,-52 + 13246: 45,-51 + 13247: 41,-54 + 13248: 41,-55 + 13249: 41,-55 + 13250: 40,-54 + 13251: 40,-53 + 13252: 40,-52 + 13253: 40,-51 + 13254: 40,-51 + 13255: 40,-53 + 13256: 41,-53 + 13257: 40,-54 + 13258: 39,-55 + 13259: 39,-55 + 13260: 40,-53 + 13261: 41,-52 + 13262: 41,-51 + 13263: 41,-50 + 13264: 41,-51 + 13265: 42,-52 + 13266: 40,-55 + 13267: 40,-56 + 13268: 39,-56 + 13269: 39,-56 + 13270: 42,-55 + 13271: 39,-51 + 13272: 46,-50 + 13273: 46,-51 + 13274: 47,-52 + 13275: 46,-54 + 13313: 52,-37 + 13331: 54,-39 + 13332: 55,-39 + 13333: 56,-39 + 13334: 55,-38 + 13335: 56,-36 + 13336: 53,-35 + 13337: 55,-37 + 13338: 55,-35 + 13481: -37,-63 + 13482: -37,-62 + 13483: -36,-62 + 13484: -37,-61 + 13485: -38,-60 + 13501: -41,-62 + 13502: -41,-63 + 13503: -40,-63 + 13504: -41,-63 + 16077: 78,4 + 16078: 79,4 + 16079: 79,5 + 16080: 78,5 + 16081: 92,6 + 16093: 99,-4 + 16094: 100,-4 + 16095: 100,-3 + 16096: 99,-3 + 16097: 99,-2 + 16098: 100,-2 + 16099: 93,-4 + 16333: -69,-43 + 16334: -69,-42 + 16335: -69,-41 + 16336: -66,-41 + 16337: -66,-43 + 16338: -65,-43 + 16339: -64,-40 + 16601: -43,-11 + 16602: -43,-12 + 16603: -43,-11 + 16604: -38,-10 + 16605: -37,-9 + 16606: -38,-9 + 16607: -38,-10 + 16608: -38,-10 + 16609: -38,-9 + 16610: -38,-11 + 16611: -43,-4 + 16612: -43,-3 + 16613: -43,-2 + 16614: -43,-1 + 16615: -43,-2 + 16616: -43,-5 + 16617: -43,-6 + 16618: -43,-7 + 16619: -43,-7 + 16620: -43,-4 + 16621: -43,-2 + 16622: -43,0 + 16623: -43,1 + 16624: -42,1 + 16625: -42,0 + 16626: -43,0 + 16627: -42,1 + 16628: -41,1 + 16629: -42,-1 + 16630: -41,-2 + 16631: -41,-1 + 16632: -41,0 + 16633: -41,-2 + 16634: -41,-2 + 16635: -41,-1 + 16636: -41,0 + 16672: -41,-15 + 16673: -42,-16 + 16674: -42,-17 + 16675: -40,-18 + 16676: -39,-18 + 16677: -39,-17 + 16678: -40,-17 + 16679: -41,-17 + 16680: -40,-16 + 16681: -43,-15 + 16682: -42,-15 + 16683: -42,-14 + 16684: -41,-14 + 16685: -40,-14 + 19858: -28,-24 + 19859: -27,-23 + 19860: -27,-22 + 19861: -30,-24 + 19862: -30,-25 + 19863: -28,-25 + 19864: -29,-25 + 19865: -28,-22 + 19866: -27,-22 + 19867: -29,-22 + 19881: -30,-23 + 19882: -29,-23 + 19883: -28,-23 + 21531: -63,-29 + 21532: -63,-30 + 21533: -61,-29 + 21534: -62,-30 + 21535: -64,-30 + 21536: -65,-30 + 21537: -65,-30 + 21538: -60,-29 + 21539: -59,-29 + 21540: -59,-30 + 21541: -59,-30 + 21542: -59,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21557,24 +21642,24 @@ entities: 1050: -7,-51 1064: -35,-45 1065: -33,-37 - 1666: -60,-43 - 1667: -60,-41 - 1668: -59,-40 - 1669: -58,-49 - 1670: -59,-48 - 1671: -59,-49 - 1672: -60,-51 - 1673: -60,-50 - 1674: -60,-48 - 1675: -58,-49 - 4055: -16,38 - 4062: -13,74 - 16519: -69,-35 - 16520: -69,-35 - 16521: -66,-36 - 16524: -69,-36 - 16525: -63,-33 - 16542: -70,-37 + 1639: -60,-43 + 1640: -60,-41 + 1641: -59,-40 + 1642: -58,-49 + 1643: -59,-48 + 1644: -59,-49 + 1645: -60,-51 + 1646: -60,-50 + 1647: -60,-48 + 1648: -58,-49 + 4028: -16,38 + 4035: -13,74 + 16373: -69,-35 + 16374: -69,-35 + 16375: -66,-36 + 16378: -69,-36 + 16379: -63,-33 + 16396: -70,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21594,23 +21679,23 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 13856: -28,-65 - 13857: -28,-64 - 13858: -28,-63 - 14009: -59,-35 - 14010: -59,-34 - 14116: -46,-41 - 14117: -47,-41 - 14118: -48,-41 - 14119: -47,-41 - 14120: -43,-41 - 14121: -40,-49 - 14122: -43,-47 - 14123: -35,-49 - 14124: -35,-50 - 14125: -33,-49 - 14126: -33,-49 - 14127: -33,-50 + 13821: -28,-65 + 13822: -28,-64 + 13823: -28,-63 + 13974: -59,-35 + 13975: -59,-34 + 14081: -46,-41 + 14082: -47,-41 + 14083: -48,-41 + 14084: -47,-41 + 14085: -43,-41 + 14086: -40,-49 + 14087: -43,-47 + 14088: -35,-49 + 14089: -35,-50 + 14090: -33,-49 + 14091: -33,-49 + 14092: -33,-50 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -21627,8 +21712,8 @@ entities: decals: 1131: 1,-6 1171: 70,-18 - 15986: 81,3 - 21535: -16.774988,18.928102 + 15840: 81,3 + 21370: -16.774988,18.928102 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -21637,7 +21722,7 @@ entities: 540: -1,-84 541: 0,-84 1126: -6,-4 - 21534: -16.884361,19.974977 + 21369: -16.884361,19.974977 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -21676,7 +21761,7 @@ entities: decals: 1133: 3,1 1172: 72,-18 - 15597: 68,-21 + 15562: 68,-21 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -21757,26 +21842,26 @@ entities: color: '#FFFFFFFF' id: Grassa3 decals: - 2195: -18,43 + 2168: -18,43 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 15598: 69,-21 - 18865: 3,-3 + 15563: 69,-21 + 18700: 3,-3 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 15985: 89,3 + 15839: 89,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: 1137: 4,4 - 1279: -34,40 - 2211: -20,42 - 2880: -34,41 + 1252: -34,40 + 2184: -20,42 + 2853: -34,41 - node: color: '#FFFFFFFF' id: Grassb2 @@ -21794,18 +21879,18 @@ entities: decals: 1135: -3,4 1169: 70,-24 - 1600: -39,32 - 2198: -18,39 + 1573: -39,32 + 2171: -18,39 - node: color: '#FFFFFFFF' id: Grassb5 decals: 1136: 1,-4 1170: 68,-20 - 1601: -40,35 - 2199: -21,41 - 2879: -33,42 - 18866: 2,2 + 1574: -40,35 + 2172: -21,41 + 2852: -33,42 + 18701: 2,2 - node: color: '#FFFFFFFF' id: Grassc1 @@ -21820,10 +21905,10 @@ entities: 1106: 3,-6 1107: 2,8 1163: 69,-18 - 1277: -34,42 - 2194: -20,39 - 21532: 14.954241,19.381239 - 21533: -16.861458,19.162476 + 1250: -34,42 + 2167: -20,39 + 21367: 14.954241,19.381239 + 21368: -16.861458,19.162476 - node: cleanable: True color: '#FFFFFFFF' @@ -21861,10 +21946,10 @@ entities: 1116: -4,2 1165: 70,-23 1167: 71,-21 - 1602: -39,31 - 2210: -20,40 - 2878: -33,40 - 18867: 4,-4 + 1575: -39,31 + 2183: -20,40 + 2851: -33,40 + 18702: 4,-4 - node: color: '#FFFFFFFF' id: Grassc4 @@ -21875,11 +21960,11 @@ entities: 1120: 4,5 1121: -3,7 1166: 72,-24 - 1595: -41,33 - 2193: -21,42 - 2197: -17,42 - 15595: 68,-23 - 15596: 69,-23 + 1568: -41,33 + 2166: -21,42 + 2170: -17,42 + 15560: 68,-23 + 15561: 69,-23 - node: color: '#FFFFFFFF' id: Grassd1 @@ -21893,26 +21978,26 @@ entities: 1148: 68,-18 1149: 72,-21 1150: 73,-24 - 1596: -40,31 - 1603: -41,32 - 2177: -19,43 - 2185: -18,42 - 2186: -18,42 - 2187: -18,43 - 15573: 71,-24 - 15574: 72,-23 - 15575: 69,-23 - 15576: 70,-23 - 15577: 73,-23 - 15581: 72,-20 - 15582: 71,-20 - 15583: 69,-21 - 15584: 70,-17 - 15585: 71,-17 - 15586: 68,-18 - 15587: 72,-18 - 15588: 74,-18 - 15589: 72,-17 + 1569: -40,31 + 1576: -41,32 + 2150: -19,43 + 2158: -18,42 + 2159: -18,42 + 2160: -18,43 + 15538: 71,-24 + 15539: 72,-23 + 15540: 69,-23 + 15541: 70,-23 + 15542: 73,-23 + 15546: 72,-20 + 15547: 71,-20 + 15548: 69,-21 + 15549: 70,-17 + 15550: 71,-17 + 15551: 68,-18 + 15552: 72,-18 + 15553: 74,-18 + 15554: 72,-17 - node: color: '#FFFFFFFF' id: Grassd2 @@ -21927,58 +22012,58 @@ entities: 1151: 68,-21 1152: 72,-17 1153: 69,-23 - 1605: -39,35 - 2176: -17,41 - 2188: -18,39 - 2208: -20,40 - 2212: -20,42 - 2213: -20,42 - 15590: 73,-17 - 15591: 71,-18 - 15592: 71,-18 - 15593: 69,-17 - 15594: 71,-17 - 15981: 82,3 - 18762: -6,0 - 18763: -6,1 - 18764: -6,-1 - 18765: -3,-1 - 18766: -3,0 - 18767: -5,-1 - 18768: -3,-3 - 18769: -4,-2 - 18770: -3,4 - 18771: -3,4 - 18772: -3,3 - 18773: -3,5 - 18774: -3,6 - 18775: -3,7 - 18776: -4,7 - 18777: -4,8 - 18778: -3,9 - 18779: -3,8 - 18780: -4,8 - 18781: -4,9 - 18782: -4,8 - 18783: -4,7 - 18784: -4,8 - 18785: -3,9 - 18786: -3,8 - 18787: -4,5 - 18788: -4,6 - 18789: -3,5 - 18790: -4,4 - 18791: -5,4 - 18792: -4,3 - 18793: -3,2 - 18822: 2,-2 - 18823: 3,-1 - 18824: 2,-4 - 18825: 1,-5 - 18826: 3,-6 - 18827: 4,-6 - 18828: 4,-6 - 21537: 14.885454,17.936722 + 1578: -39,35 + 2149: -17,41 + 2161: -18,39 + 2181: -20,40 + 2185: -20,42 + 2186: -20,42 + 15555: 73,-17 + 15556: 71,-18 + 15557: 71,-18 + 15558: 69,-17 + 15559: 71,-17 + 15835: 82,3 + 18597: -6,0 + 18598: -6,1 + 18599: -6,-1 + 18600: -3,-1 + 18601: -3,0 + 18602: -5,-1 + 18603: -3,-3 + 18604: -4,-2 + 18605: -3,4 + 18606: -3,4 + 18607: -3,3 + 18608: -3,5 + 18609: -3,6 + 18610: -3,7 + 18611: -4,7 + 18612: -4,8 + 18613: -3,9 + 18614: -3,8 + 18615: -4,8 + 18616: -4,9 + 18617: -4,8 + 18618: -4,7 + 18619: -4,8 + 18620: -3,9 + 18621: -3,8 + 18622: -4,5 + 18623: -4,6 + 18624: -3,5 + 18625: -4,4 + 18626: -5,4 + 18627: -4,3 + 18628: -3,2 + 18657: 2,-2 + 18658: 3,-1 + 18659: 2,-4 + 18660: 1,-5 + 18661: 3,-6 + 18662: 4,-6 + 18663: 4,-6 + 21372: 14.885454,17.936722 - node: color: '#FFFFFFFF' id: Grassd3 @@ -21991,16 +22076,16 @@ entities: 1154: 69,-24 1155: 74,-20 1156: 69,-17 - 1597: -39,32 - 2175: -17,42 - 2189: -19,39 - 2190: -20,43 - 2209: -20,42 - 2876: -33,42 - 2877: -34,41 - 15984: 89,3 - 21529: -16.892008,19.490566 - 21538: -16.71812,17.842958 + 1570: -39,32 + 2148: -17,42 + 2162: -19,39 + 2163: -20,43 + 2182: -20,42 + 2849: -33,42 + 2850: -34,41 + 15838: 89,3 + 21364: -16.892008,19.490566 + 21373: -16.71812,17.842958 - node: color: '#FFFFFFFF' id: Grasse1 @@ -22012,33 +22097,33 @@ entities: 1090: 2,7 1157: 71,-23 1158: 69,-20 - 1599: -38,34 - 1604: -39,34 - 2181: -21,41 - 2182: -21,41 - 15983: 88,3 - 18794: -4,-2 - 18795: -3,-2 - 18796: -3,-4 - 18797: -3,-4 - 18798: -3,-6 - 18799: -4,-6 - 18800: -5,-6 - 18801: -4,-6 - 18802: -4,-5 - 18803: -5,-5 - 18804: -3,-5 - 18805: -3,-4 - 18806: -5,-3 - 18807: -6,-2 - 18808: -5,-1 - 18809: -6,0 - 18810: 3,1 - 18811: 2,1 - 18812: 2,3 - 18813: 1,2 - 18814: 2,3 - 21528: 14.992542,20.099949 + 1572: -38,34 + 1577: -39,34 + 2154: -21,41 + 2155: -21,41 + 15837: 88,3 + 18629: -4,-2 + 18630: -3,-2 + 18631: -3,-4 + 18632: -3,-4 + 18633: -3,-6 + 18634: -4,-6 + 18635: -5,-6 + 18636: -4,-6 + 18637: -4,-5 + 18638: -5,-5 + 18639: -3,-5 + 18640: -3,-4 + 18641: -5,-3 + 18642: -6,-2 + 18643: -5,-1 + 18644: -6,0 + 18645: 3,1 + 18646: 2,1 + 18647: 2,3 + 18648: 1,2 + 18649: 2,3 + 21363: 14.992542,20.099949 - node: color: '#FFFFFFFF' id: Grasse2 @@ -22050,20 +22135,20 @@ entities: 1095: -6,-6 1159: 68,-23 1160: 70,-21 - 1278: -33,43 - 1598: -41,35 - 2174: -17,40 - 2178: -20,43 - 2179: -20,39 - 2196: -19,43 - 15982: 81,3 - 18860: 4,-4 - 18861: 4,-3 - 18862: 4,-3 - 18863: 3,-5 - 18864: 3,-1 - 21531: -17.048258,19.490566 - 21540: -16.921246,18.874208 + 1251: -33,43 + 1571: -41,35 + 2147: -17,40 + 2151: -20,43 + 2152: -20,39 + 2169: -19,43 + 15836: 81,3 + 18695: 4,-4 + 18696: 4,-3 + 18697: 4,-3 + 18698: 3,-5 + 18699: 3,-1 + 21366: -17.048258,19.490566 + 21375: -16.921246,18.874208 - node: color: '#FFFFFFFF' id: Grasse3 @@ -22073,65 +22158,65 @@ entities: 1098: -4,5 1161: 73,-18 1162: 74,-23 - 1276: -33,40 - 2173: -21,42 - 2180: -21,40 - 2183: -18,40 - 2184: -18,40 - 2191: -21,40 - 2192: -17,42 - 15578: 73,-21 - 15579: 74,-21 - 15580: 72,-20 - 18815: 1,3 - 18816: 1,4 - 18817: 1,5 - 18818: 1,6 - 18819: 1,7 - 18820: 1,8 - 18821: 1,8 - 18829: 1,-6 - 18830: 1,-3 - 18831: 4,-2 - 18832: 4,-2 - 18833: 3,-2 - 18834: 3,2 - 18835: 3,2 - 18836: 3,3 - 18837: 3,3 - 18838: 3,4 - 18839: 4,4 - 18840: 4,2 - 18841: 3,0 - 18842: 3,-1 - 18843: 3,-1 - 18844: 3,-1 - 18845: 3,0 - 18846: 4,0 - 18847: 4,0 - 18848: 4,0 - 18849: 1,0 - 18850: 2,-2 - 18851: 3,-2 - 18852: 3,-3 - 18853: 2,-3 - 18854: 3,-3 - 18855: 3,-3 - 18856: 4,-4 - 18857: 2,-5 - 18858: 2,-5 - 18859: 3,-4 - 21527: 14.976916,19.162449 - 21530: -16.985758,20.224941 - 21536: 14.71358,18.577347 - 21539: -16.952496,18.202333 + 1249: -33,40 + 2146: -21,42 + 2153: -21,40 + 2156: -18,40 + 2157: -18,40 + 2164: -21,40 + 2165: -17,42 + 15543: 73,-21 + 15544: 74,-21 + 15545: 72,-20 + 18650: 1,3 + 18651: 1,4 + 18652: 1,5 + 18653: 1,6 + 18654: 1,7 + 18655: 1,8 + 18656: 1,8 + 18664: 1,-6 + 18665: 1,-3 + 18666: 4,-2 + 18667: 4,-2 + 18668: 3,-2 + 18669: 3,2 + 18670: 3,2 + 18671: 3,3 + 18672: 3,3 + 18673: 3,4 + 18674: 4,4 + 18675: 4,2 + 18676: 3,0 + 18677: 3,-1 + 18678: 3,-1 + 18679: 3,-1 + 18680: 3,0 + 18681: 4,0 + 18682: 4,0 + 18683: 4,0 + 18684: 1,0 + 18685: 2,-2 + 18686: 3,-2 + 18687: 3,-3 + 18688: 2,-3 + 18689: 3,-3 + 18690: 3,-3 + 18691: 4,-4 + 18692: 2,-5 + 18693: 2,-5 + 18694: 3,-4 + 21362: 14.976916,19.162449 + 21365: -16.985758,20.224941 + 21371: 14.71358,18.577347 + 21374: -16.952496,18.202333 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 1814: -71,-23 - 1815: -70,-23 - 1816: -69,-23 + 1787: -71,-23 + 1788: -70,-23 + 1789: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -22160,9 +22245,9 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 15839: 96,7 - 15840: 97,7 - 15846: 95,7 + 15693: 96,7 + 15694: 97,7 + 15700: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -22187,9 +22272,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale decals: - 3820: 10,70 - 3821: 11,70 - 3822: 12,70 + 3793: 10,70 + 3794: 11,70 + 3795: 12,70 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -22208,14 +22293,14 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 1559: -38,54 - 1560: -39,54 + 1532: -38,54 + 1533: -39,54 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 1822: -70,-29 - 1823: -69,-29 + 1795: -70,-29 + 1796: -69,-29 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -22247,13 +22332,13 @@ entities: color: '#639137BF' id: HalfTileOverlayGreyscale180 decals: - 1585: -39,44 + 1558: -39,44 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 15837: 95,6 - 15838: 97,6 + 15691: 95,6 + 15692: 97,6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -22265,23 +22350,23 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale180 decals: - 3829: 10,66 - 3830: 11,66 - 3831: 12,66 + 3802: 10,66 + 3803: 11,66 + 3804: 12,66 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 1564: -39,52 - 1565: -38,52 + 1537: -39,52 + 1538: -38,52 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 1817: -72,-24 - 1818: -72,-25 - 1819: -72,-27 - 1820: -72,-28 + 1790: -72,-24 + 1791: -72,-25 + 1792: -72,-27 + 1793: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -22319,8 +22404,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale270 decals: - 15841: 95,6 - 15845: 95,7 + 15695: 95,6 + 15699: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -22336,11 +22421,11 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale270 decals: - 3815: 10,67 - 3816: 10,66 - 3817: 10,68 - 3818: 10,69 - 3819: 10,70 + 3788: 10,67 + 3789: 10,66 + 3790: 10,68 + 3791: 10,69 + 3792: 10,70 - node: cleanable: True color: '#EFB34196' @@ -22353,7 +22438,7 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 1562: -40,53 + 1535: -40,53 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -22392,8 +22477,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale90 decals: - 15842: 97,6 - 15843: 97,7 + 15696: 97,6 + 15697: 97,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -22409,12 +22494,12 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale90 decals: - 3823: 12,70 - 3824: 12,69 - 3825: 12,68 - 3826: 12,68 - 3827: 12,67 - 3828: 12,66 + 3796: 12,70 + 3797: 12,69 + 3798: 12,68 + 3799: 12,68 + 3800: 12,67 + 3801: 12,66 - node: cleanable: True color: '#EFB34196' @@ -22427,7 +22512,7 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale90 decals: - 1567: -37,53 + 1540: -37,53 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -22461,170 +22546,170 @@ entities: 25: 24,52 985: -35,-40 1055: -35,-45 - 3158: -2,60 + 3131: -2,60 - node: angle: 3.141592653589793 rad color: '#8BDA8EFF' id: LoadingAreaGreyscale decals: - 15844: 96,6 + 15698: 96,6 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNe decals: - 16099: 78,10 - 16119: 86,10 - 16147: 93,23 + 15953: 78,10 + 15973: 86,10 + 16001: 93,23 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNw decals: - 16097: 76,10 - 16100: 80,10 - 16148: 91,23 - 16157: 81,14 + 15951: 76,10 + 15954: 80,10 + 16002: 91,23 + 16011: 81,14 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSe decals: - 16102: 78,8 - 16118: 86,9 - 16140: 93,12 + 15956: 78,8 + 15972: 86,9 + 15994: 93,12 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSw decals: - 16101: 76,8 - 16155: 81,12 + 15955: 76,8 + 16009: 81,12 - node: color: '#DA8B8BFF' id: MiniTileDarkEndW decals: - 16190: 91,15 + 16044: 91,15 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNe decals: - 16110: 78,9 - 16127: 83,10 - 16168: 93,13 - 16172: 93,17 - 16176: 93,21 - 16181: 92,23 + 15964: 78,9 + 15981: 83,10 + 16022: 93,13 + 16026: 93,17 + 16030: 93,21 + 16035: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNw decals: - 16104: 76,9 - 16111: 80,9 - 16126: 83,10 - 16167: 91,14 - 16178: 91,21 - 16182: 92,23 + 15958: 76,9 + 15965: 80,9 + 15980: 83,10 + 16021: 91,14 + 16032: 91,21 + 16036: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSe decals: - 16108: 78,9 - 16169: 93,13 - 16173: 93,17 - 16174: 93,20 - 16175: 93,21 + 15962: 78,9 + 16023: 93,13 + 16027: 93,17 + 16028: 93,20 + 16029: 93,21 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSw decals: - 16109: 76,9 - 16179: 91,21 + 15963: 76,9 + 16033: 91,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineE decals: - 16105: 75,9 - 16106: 79,9 - 16141: 93,14 - 16142: 93,16 - 16143: 93,18 - 16144: 93,19 - 16145: 93,20 - 16146: 93,22 - 16180: 90,21 + 15959: 75,9 + 15960: 79,9 + 15995: 93,14 + 15996: 93,16 + 15997: 93,18 + 15998: 93,19 + 15999: 93,20 + 16000: 93,22 + 16034: 90,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineN decals: - 16094: 83,11 - 16098: 77,10 - 16120: 85,10 - 16121: 84,10 - 16122: 81,10 - 16123: 82,10 - 16124: 83,11 - 16158: 82,14 - 16159: 84,14 - 16160: 83,14 - 16161: 85,14 - 16162: 86,14 - 16163: 87,14 - 16164: 89,14 - 16165: 88,14 - 16166: 90,14 - 16189: 92,15 - 16194: 91,15 - 16195: 93,15 + 15948: 83,11 + 15952: 77,10 + 15974: 85,10 + 15975: 84,10 + 15976: 81,10 + 15977: 82,10 + 15978: 83,11 + 16012: 82,14 + 16013: 84,14 + 16014: 83,14 + 16015: 85,14 + 16016: 86,14 + 16017: 87,14 + 16018: 89,14 + 16019: 88,14 + 16020: 90,14 + 16043: 92,15 + 16048: 91,15 + 16049: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineS decals: - 16095: 83,11 - 16103: 77,8 - 16112: 80,9 - 16113: 81,9 - 16114: 82,9 - 16115: 83,9 - 16116: 84,9 - 16117: 85,9 - 16125: 83,11 - 16128: 82,12 - 16129: 84,12 - 16130: 85,12 - 16131: 86,12 - 16132: 87,12 - 16133: 89,12 - 16134: 88,12 - 16135: 90,12 - 16136: 91,12 - 16137: 92,12 - 16138: 93,12 - 16183: 92,24 - 16188: 92,15 - 16192: 91,15 - 16193: 93,15 + 15949: 83,11 + 15957: 77,8 + 15966: 80,9 + 15967: 81,9 + 15968: 82,9 + 15969: 83,9 + 15970: 84,9 + 15971: 85,9 + 15979: 83,11 + 15982: 82,12 + 15983: 84,12 + 15984: 85,12 + 15985: 86,12 + 15986: 87,12 + 15987: 89,12 + 15988: 88,12 + 15989: 90,12 + 15990: 91,12 + 15991: 92,12 + 15992: 93,12 + 16037: 92,24 + 16042: 92,15 + 16046: 91,15 + 16047: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineW decals: - 16107: 79,9 - 16139: 94,13 - 16149: 91,22 - 16150: 91,20 - 16151: 91,19 - 16152: 91,18 - 16153: 91,17 - 16154: 91,16 - 16156: 81,13 - 16170: 94,13 - 16171: 94,17 - 16177: 94,21 + 15961: 79,9 + 15993: 94,13 + 16003: 91,22 + 16004: 91,20 + 16005: 91,19 + 16006: 91,18 + 16007: 91,17 + 16008: 91,16 + 16010: 81,13 + 16024: 94,13 + 16025: 94,17 + 16031: 94,21 - node: color: '#8CB7E8FF' id: MiniTileDiagonalCheckerBOverlay decals: - 10058: 32,-40 - 10059: 33,-40 - 10060: 34,-40 - 10061: 35,-40 - 10062: 36,-40 + 10023: 32,-40 + 10024: 33,-40 + 10025: 34,-40 + 10026: 35,-40 + 10027: 36,-40 - node: color: '#1D1D214C' id: MiniTileDiagonalOverlay @@ -22647,34 +22732,34 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 15712: 7,-15 + 15566: 7,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 15713: 9,-15 + 15567: 9,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 15711: 7,-13 + 15565: 7,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 15710: 9,-13 + 15564: 9,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 15724: 9,-14 - 18721: 8,-13 + 15578: 9,-14 + 18556: 8,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 15723: 7,-14 - 18720: 8,-13 + 15577: 7,-14 + 18555: 8,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -22686,8 +22771,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 15719: 8,-16 - 15720: 9,-14 + 15573: 8,-16 + 15574: 9,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22698,8 +22783,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 15721: 8,-16 - 15722: 7,-14 + 15575: 8,-16 + 15576: 7,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22710,29 +22795,29 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 15716: 7,-16 - 15717: 6,-14 + 15570: 7,-16 + 15571: 6,-14 - node: color: '#DA8B8BFF' id: MiniTileSteelLineN decals: - 16096: 83,11 + 15950: 83,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 15714: 8,-17 + 15568: 8,-17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 18719: 8,-12 + 18554: 8,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 15715: 9,-16 - 15718: 10,-14 + 15569: 9,-16 + 15572: 10,-14 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -22757,12 +22842,12 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 13351: 53,-37 + 13316: 53,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 13350: 53,-37 + 13315: 53,-37 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE @@ -22777,14 +22862,14 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 13349: 52,-37 + 13314: 52,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 5729: 13,3 - 13354: 54,-35 - 13355: 55,-35 + 5702: 13,3 + 13319: 54,-35 + 13320: 55,-35 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW @@ -22799,75 +22884,75 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 13352: 53,-36 - 13353: 53,-38 + 13317: 53,-36 + 13318: 53,-38 - node: color: '#630000FF' id: Omni decals: - 13665: -32.978848,-78.98036 + 13630: -32.978848,-78.98036 - node: color: '#00000019' id: OriginStationSign4 decals: - 13894: -68,61 - 13895: -68,60 - 13896: -68,59 - 13897: -68,58 - 13898: -67,58 - 13899: -67,57 - 13900: -66,58 - 13901: -66,59 - 13902: -67,59 - 13903: -67,60 - 13904: -66,60 - 13905: -66,61 - 13906: -67,61 - 13907: -65,62 - 13908: -65,61 - 13909: -65,60 - 13912: -65,59 - 13916: -65,58 - 13979: -68,62 - 13980: -67,62 - 13981: -66,62 + 13859: -68,61 + 13860: -68,60 + 13861: -68,59 + 13862: -68,58 + 13863: -67,58 + 13864: -67,57 + 13865: -66,58 + 13866: -66,59 + 13867: -67,59 + 13868: -67,60 + 13869: -66,60 + 13870: -66,61 + 13871: -67,61 + 13872: -65,62 + 13873: -65,61 + 13874: -65,60 + 13877: -65,59 + 13881: -65,58 + 13944: -68,62 + 13945: -67,62 + 13946: -66,62 - node: color: '#00000028' id: OriginStationSign4 decals: - 14011: -72,57 - 14012: -72,58 - 14013: -71,58 - 14014: -71,57 - 14015: -70,57 - 14016: -70,58 - 14017: -72,58 - 14018: -72,57 - 14019: -71,57 - 14020: -71,58 - 14021: -70,58 - 14022: -70,57 - 14023: -72,56 - 14024: -71,56 - 14025: -70,56 - 14026: -72,57 - 14027: -72,58 - 14028: -71,58 - 14029: -71,57 - 14030: -70,57 - 14031: -70,58 - 14032: -72,58 - 14033: -71,58 - 14034: -70,58 - 14035: -71,57 - 14036: -71,58 - 14037: -70,58 - 14038: -72,58 - 14039: -71,56 - 14040: -72,56 - 14041: -71,58 - 14042: -70,58 - 14043: -70,57 + 13976: -72,57 + 13977: -72,58 + 13978: -71,58 + 13979: -71,57 + 13980: -70,57 + 13981: -70,58 + 13982: -72,58 + 13983: -72,57 + 13984: -71,57 + 13985: -71,58 + 13986: -70,58 + 13987: -70,57 + 13988: -72,56 + 13989: -71,56 + 13990: -70,56 + 13991: -72,57 + 13992: -72,58 + 13993: -71,58 + 13994: -71,57 + 13995: -70,57 + 13996: -70,58 + 13997: -72,58 + 13998: -71,58 + 13999: -70,58 + 14000: -71,57 + 14001: -71,58 + 14002: -70,58 + 14003: -72,58 + 14004: -71,56 + 14005: -72,56 + 14006: -71,58 + 14007: -70,58 + 14008: -70,57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -22914,9 +22999,9 @@ entities: id: Remains decals: 260: 37,-56 - 13664: -33.82276,-75.75149 - 16200: 99.21471,-3.5288568 - 18928: -42.945545,-64.87067 + 13629: -33.82276,-75.75149 + 16054: 99.21471,-3.5288568 + 18763: -42.945545,-64.87067 - node: cleanable: True color: '#FFFFFFFF' @@ -22927,72 +23012,72 @@ entities: color: '#FFFFFFFF' id: Rock01 decals: - 18868: -4,-5 - 18874: 1,4 + 18703: -4,-5 + 18709: 1,4 - node: color: '#FFFFFFFF' id: Rock02 decals: 885: -36,48 - 18869: 3,-1 + 18704: 3,-1 - node: color: '#FFFFFFFF' id: Rock03 decals: - 18871: -6,0 - 18875: -4,8 + 18706: -6,0 + 18710: -4,8 - node: color: '#FFFFFFFF' id: Rock04 decals: 886: -36,50 - 18870: 3,4 - 18876: 2,2 + 18705: 3,4 + 18711: 2,2 - node: color: '#FFFFFFFF' id: Rock05 decals: - 18872: -6,-6 - 18877: -3,-2 + 18707: -6,-6 + 18712: -3,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: 477: 0,0 - 15987: 82,3 - 18873: 3,-3 + 15841: 82,3 + 18708: 3,-3 - node: color: '#000000FF' id: Rust decals: - 2614: -19,41 - 2615: -19,41 - 2616: -19,41 - 2617: -19,41 - 2618: -19,40 - 2619: -19,40 - 2620: -19,40 - 2621: -18,41 - 2622: -18,41 - 2623: -19,42 - 2624: -19,42 - 2625: -20,41 - 2626: -20,41 - 2627: -20,41 - 2628: -20,41 - 2629: -19,42 - 2630: -18,41 - 2631: -19,40 + 2587: -19,41 + 2588: -19,41 + 2589: -19,41 + 2590: -19,41 + 2591: -19,40 + 2592: -19,40 + 2593: -19,40 + 2594: -18,41 + 2595: -18,41 + 2596: -19,42 + 2597: -19,42 + 2598: -20,41 + 2599: -20,41 + 2600: -20,41 + 2601: -20,41 + 2602: -19,42 + 2603: -18,41 + 2604: -19,40 - node: cleanable: True color: '#FFFFFF5D' id: Rust decals: - 16544: -71,-36 - 16545: -67,-35 - 16546: -63,-35 - 16547: -65,-37 - 16548: -65,-37 + 16398: -71,-36 + 16399: -67,-35 + 16400: -63,-35 + 16401: -65,-37 + 16402: -65,-37 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -23022,7 +23107,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 1813: -72,-23 + 1786: -72,-23 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale @@ -23037,7 +23122,7 @@ entities: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: - 1561: -40,54 + 1534: -40,54 - node: cleanable: True color: '#334E6DC8' @@ -23055,12 +23140,12 @@ entities: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1566: -37,52 + 1539: -37,52 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1821: -72,-29 + 1794: -72,-29 - node: color: '#C3E6A5FF' id: ThreeQuarterTileOverlayGreyscale270 @@ -23075,7 +23160,7 @@ entities: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1563: -40,52 + 1536: -40,52 - node: cleanable: True color: '#334E6DC8' @@ -23098,8 +23183,8 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 13329: -58,23 - 13330: -58,24 + 13294: -58,23 + 13295: -58,24 - node: color: '#FFFFFFFF' id: WarnCorner @@ -23150,9 +23235,9 @@ entities: 680: -27,-50 687: -9,-46 692: -27,-54 - 1826: -71,-27 - 1831: -71,-23 - 13338: -52,29 + 1799: -71,-27 + 1804: -71,-23 + 13303: -52,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23166,9 +23251,9 @@ entities: 681: -31,-50 688: -11,-46 691: -30,-54 - 1825: -72,-27 - 1830: -72,-23 - 13339: -54,29 + 1798: -72,-27 + 1803: -72,-23 + 13304: -54,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23182,8 +23267,8 @@ entities: decals: 689: -9,-48 694: -27,-55 - 1829: -71,-25 - 13337: -52,27 + 1802: -71,-25 + 13302: -52,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23196,9 +23281,9 @@ entities: decals: 686: -11,-48 693: -30,-55 - 1824: -72,-29 - 1832: -72,-25 - 13336: -54,27 + 1797: -72,-29 + 1805: -72,-25 + 13301: -54,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23209,51 +23294,51 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6247: -14,-19 - 13325: -63,21 - 18358: -52,-5 - 18373: -56,-12 - 18383: -51,-10 - 18490: -74,-4 - 18496: -73,-3 - 18497: -71,-3 - 18498: -69,-3 + 6220: -14,-19 + 13290: -63,21 + 18212: -52,-5 + 18227: -56,-12 + 18237: -51,-10 + 18325: -74,-4 + 18331: -73,-3 + 18332: -71,-3 + 18333: -69,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6248: -10,-19 - 18374: -54,-16 - 18384: -49,-10 - 18491: -66,-4 - 18494: -67,-3 - 18495: -71,-3 + 6221: -10,-19 + 18228: -54,-16 + 18238: -49,-10 + 18326: -66,-4 + 18329: -67,-3 + 18330: -71,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6252: -14,-17 - 13324: -63,27 - 18359: -52,0 - 18361: -56,-4 - 18382: -51,-6 - 18393: -55,9 - 18489: -74,2 - 18499: -73,1 - 18500: -71,1 - 18501: -69,1 + 6225: -14,-17 + 13289: -63,27 + 18213: -52,0 + 18215: -56,-4 + 18236: -51,-6 + 18247: -55,9 + 18324: -74,2 + 18334: -73,1 + 18335: -71,1 + 18336: -69,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6253: -10,-17 - 18360: -54,0 - 18381: -49,-6 - 18394: -50,9 - 18492: -66,2 - 18493: -67,1 - 18502: -71,1 - 18503: -69,1 + 6226: -10,-17 + 18214: -54,0 + 18235: -49,-6 + 18248: -50,9 + 18327: -66,2 + 18328: -67,1 + 18337: -71,1 + 18338: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23309,47 +23394,47 @@ entities: id: WarnLineE decals: 685: -27,-51 - 1827: -71,-28 - 6217: -13,-16 - 6218: -13,-15 - 6219: -13,-14 - 6220: -13,-13 - 6230: -15,-16 - 6231: -15,-15 - 6232: -15,-14 - 6233: -15,-13 - 6234: -15,-13 - 6235: -11,-16 - 6236: -11,-15 - 6237: -11,-14 - 6238: -11,-13 - 13319: -63,22 - 13320: -63,23 - 13321: -63,24 - 13322: -63,25 - 13323: -63,26 - 13340: -52,28 - 18332: -52,-1 - 18333: -52,-2 - 18334: -52,-2 - 18335: -52,-4 - 18336: -52,-3 - 18375: -51,-9 - 18376: -51,-8 - 18377: -51,-7 - 18451: -74,-3 - 18452: -74,-2 - 18453: -74,-1 - 18454: -74,0 - 18455: -74,1 - 18474: -73,0 - 18475: -73,-1 - 18476: -73,-2 - 19526: 55,4 - 19527: 55,5 - 19532: 69,0 - 19536: 69,-1 - 19537: 69,1 + 1800: -71,-28 + 6190: -13,-16 + 6191: -13,-15 + 6192: -13,-14 + 6193: -13,-13 + 6203: -15,-16 + 6204: -15,-15 + 6205: -15,-14 + 6206: -15,-13 + 6207: -15,-13 + 6208: -11,-16 + 6209: -11,-15 + 6210: -11,-14 + 6211: -11,-13 + 13284: -63,22 + 13285: -63,23 + 13286: -63,24 + 13287: -63,25 + 13288: -63,26 + 13305: -52,28 + 18186: -52,-1 + 18187: -52,-2 + 18188: -52,-2 + 18189: -52,-4 + 18190: -52,-3 + 18229: -51,-9 + 18230: -51,-8 + 18231: -51,-7 + 18298: -74,-3 + 18299: -74,-2 + 18300: -74,-1 + 18301: -74,0 + 18302: -74,1 + 18315: -73,0 + 18316: -73,-1 + 18317: -73,-2 + 19361: 55,4 + 19362: 55,5 + 19367: 69,0 + 19371: 69,-1 + 19372: 69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23370,8 +23455,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleE decals: - 21517: -18,14 - 21518: -18,15 + 21352: -18,14 + 21353: -18,15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -23386,8 +23471,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleW decals: - 21519: 16,14 - 21520: 16,15 + 21354: 16,14 + 21355: 16,15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -23397,41 +23482,41 @@ entities: 695: -29,-55 696: -28,-55 744: 66,12 - 5211: 33,37 - 6249: -13,-17 - 6250: -12,-17 - 6251: -11,-17 - 13326: -62,27 - 13327: -61,27 - 13328: -60,27 - 13335: -59,27 - 13341: -53,27 - 18323: -59,0 - 18324: -58,0 - 18325: -57,0 - 18326: -57,0 - 18327: -55,0 - 18328: -56,0 - 18329: -51,0 - 18330: -50,0 - 18331: -49,0 - 18362: -55,-4 - 18385: -54,9 - 18386: -53,9 - 18387: -52,9 - 18388: -51,9 - 18444: -73,2 - 18445: -72,2 - 18446: -71,2 - 18447: -70,2 - 18448: -69,2 - 18449: -68,2 - 18450: -67,2 - 18486: -72,1 - 18487: -70,1 - 18488: -68,1 - 21683: -71,1 - 21684: -69,1 + 5184: 33,37 + 6222: -13,-17 + 6223: -12,-17 + 6224: -11,-17 + 13291: -62,27 + 13292: -61,27 + 13293: -60,27 + 13300: -59,27 + 13306: -53,27 + 18177: -59,0 + 18178: -58,0 + 18179: -57,0 + 18180: -57,0 + 18181: -55,0 + 18182: -56,0 + 18183: -51,0 + 18184: -50,0 + 18185: -49,0 + 18216: -55,-4 + 18239: -54,9 + 18240: -53,9 + 18241: -52,9 + 18242: -51,9 + 18291: -73,2 + 18292: -72,2 + 18293: -71,2 + 18294: -70,2 + 18295: -69,2 + 18296: -68,2 + 18297: -67,2 + 18321: -72,1 + 18322: -70,1 + 18323: -68,1 + 21518: -71,1 + 21519: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23452,51 +23537,51 @@ entities: id: WarnLineS decals: 679: -31,-51 - 1828: -72,-28 - 1833: -72,-24 - 6221: -11,-16 - 6222: -11,-15 - 6223: -11,-14 - 6224: -11,-14 - 6225: -11,-13 - 6226: -13,-16 - 6227: -13,-15 - 6228: -13,-14 - 6229: -13,-13 - 6239: -9,-16 - 6240: -9,-15 - 6241: -9,-14 - 6242: -9,-14 - 6243: -9,-13 - 6257: -15,-16 - 6258: -15,-15 - 6259: -15,-14 - 6260: -15,-13 - 13342: -54,28 - 18319: -54,-4 - 18320: -54,-3 - 18321: -54,-2 - 18322: -54,-1 - 18357: -54,-4 - 18368: -54,-15 - 18369: -54,-14 - 18370: -54,-13 - 18371: -54,-12 - 18378: -49,-9 - 18379: -49,-8 - 18380: -49,-7 - 18456: -66,1 - 18457: -66,0 - 18458: -66,-1 - 18459: -66,-2 - 18460: -66,-3 - 18467: -67,0 - 18468: -67,-1 - 18469: -67,-2 - 18470: -67,-2 - 18471: -67,-1 - 18472: -67,0 - 18473: -67,-1 + 1801: -72,-28 + 1806: -72,-24 + 6194: -11,-16 + 6195: -11,-15 + 6196: -11,-14 + 6197: -11,-14 + 6198: -11,-13 + 6199: -13,-16 + 6200: -13,-15 + 6201: -13,-14 + 6202: -13,-13 + 6212: -9,-16 + 6213: -9,-15 + 6214: -9,-14 + 6215: -9,-14 + 6216: -9,-13 + 6230: -15,-16 + 6231: -15,-15 + 6232: -15,-14 + 6233: -15,-13 + 13307: -54,28 + 18173: -54,-4 + 18174: -54,-3 + 18175: -54,-2 + 18176: -54,-1 + 18211: -54,-4 + 18222: -54,-15 + 18223: -54,-14 + 18224: -54,-13 + 18225: -54,-12 + 18232: -49,-9 + 18233: -49,-8 + 18234: -49,-7 + 18303: -66,1 + 18304: -66,0 + 18305: -66,-1 + 18306: -66,-2 + 18307: -66,-3 + 18308: -67,0 + 18309: -67,-1 + 18310: -67,-2 + 18311: -67,-2 + 18312: -67,-1 + 18313: -67,0 + 18314: -67,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -23534,37 +23619,37 @@ entities: 743: 66,12 751: 78,22 752: 77,22 - 6244: -13,-19 - 6245: -12,-19 - 6246: -11,-19 - 13343: -53,29 - 18363: -59,-16 - 18364: -58,-16 - 18365: -57,-16 - 18366: -56,-16 - 18367: -55,-16 - 18372: -55,-12 - 18389: -55,17 - 18390: -54,17 - 18391: -53,17 - 18392: -52,17 - 18406: -55,17 - 18407: -52,17 - 18437: -73,-4 - 18438: -72,-4 - 18439: -71,-4 - 18440: -70,-4 - 18441: -69,-4 - 18442: -68,-4 - 18443: -67,-4 - 18483: -72,-3 - 18484: -70,-3 - 18485: -68,-3 - 21471: 58,1 - 21472: 62,1 - 21473: 66,1 - 21681: -71,-3 - 21682: -69,-3 + 6217: -13,-19 + 6218: -12,-19 + 6219: -11,-19 + 13308: -53,29 + 18217: -59,-16 + 18218: -58,-16 + 18219: -57,-16 + 18220: -56,-16 + 18221: -55,-16 + 18226: -55,-12 + 18243: -55,17 + 18244: -54,17 + 18245: -53,17 + 18246: -52,17 + 18260: -55,17 + 18261: -52,17 + 18284: -73,-4 + 18285: -72,-4 + 18286: -71,-4 + 18287: -70,-4 + 18288: -69,-4 + 18289: -68,-4 + 18290: -67,-4 + 18318: -72,-3 + 18319: -70,-3 + 18320: -68,-3 + 21306: 58,1 + 21307: 62,1 + 21308: 66,1 + 21516: -71,-3 + 21517: -69,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -23654,166 +23739,164 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerNe decals: - 2602: -10,46 - 2657: -2,42 - 2751: -3,54 - 4004: -34,63 - 4156: -26,23 - 5721: 14,11 - 5730: 14,2 - 5770: 11,7 - 5785: 11,3 - 5871: -15,-4 - 5885: -9,-3 - 5915: -9,5 - 5925: -9,0 - 5955: -8,11 - 5980: 1,14 - 6501: -22,-4 - 6522: -34,2 - 6557: -26,2 - 6572: -22,-11 - 6627: -22,-5 - 6628: -22,-5 - 6801: -31,-12 - 7293: 37,2 - 7323: 36,1 - 7382: 33,11 - 7774: 43,22 - 7775: 43,23 - 7782: 36,22 - 7804: 36,21 - 8582: 53,-23 - 8596: 49,-23 - 8609: 45,-23 - 10308: 37,-29 - 10309: 38,-28 - 10350: 24,-51 - 10550: 18,-49 - 10760: 74,-37 - 10771: 42,-50 - 10785: 51,-54 - 10853: 45,-51 - 11221: -49,-43 - 11253: -46,-43 - 11268: -46,-47 - 12396: -17,-46 - 12533: -15,-74 - 12575: -13,-79 - 12582: -21,-80 - 13427: -38,-66 - 13441: -36,-65 - 13466: -30,-65 - 13638: -31,-77 - 13985: -65,62 - 15529: -6,-77 - 15541: -1,-77 - 15881: 97,5 - 15911: 96,3 - 15997: 89,7 - 16074: 98,13 - 16081: 98,14 - 18300: -63,18 - 18318: -57,7 - 18607: -58,-44 - 18757: 1,-11 - 18758: 2,-12 - 19028: -112,33 - 19712: -14,29 - 19724: 53,27 - 19727: 56,27 - 19845: 57,30 - 19857: 55,31 - 20049: -24,13 - 20063: -25,12 - 21619: -59,-25 + 2575: -10,46 + 2630: -2,42 + 2724: -3,54 + 3977: -34,63 + 4129: -26,23 + 5694: 14,11 + 5703: 14,2 + 5743: 11,7 + 5758: 11,3 + 5844: -15,-4 + 5858: -9,-3 + 5888: -9,5 + 5898: -9,0 + 5928: -8,11 + 5953: 1,14 + 6474: -22,-4 + 6495: -34,2 + 6530: -26,2 + 6545: -22,-11 + 6600: -22,-5 + 6601: -22,-5 + 6774: -31,-12 + 7266: 37,2 + 7296: 36,1 + 7355: 33,11 + 7747: 43,22 + 7748: 43,23 + 7755: 36,22 + 7777: 36,21 + 8547: 53,-23 + 8561: 49,-23 + 8574: 45,-23 + 10273: 37,-29 + 10274: 38,-28 + 10315: 24,-51 + 10515: 18,-49 + 10725: 74,-37 + 10736: 42,-50 + 10750: 51,-54 + 10818: 45,-51 + 11186: -49,-43 + 11218: -46,-43 + 11233: -46,-47 + 12361: -17,-46 + 12498: -15,-74 + 12540: -13,-79 + 12547: -21,-80 + 13392: -38,-66 + 13406: -36,-65 + 13431: -30,-65 + 13603: -31,-77 + 13950: -65,62 + 15494: -6,-77 + 15506: -1,-77 + 15735: 97,5 + 15765: 96,3 + 15851: 89,7 + 15928: 98,13 + 15935: 98,14 + 18154: -63,18 + 18172: -57,7 + 18442: -58,-44 + 18592: 1,-11 + 18593: 2,-12 + 18863: -112,33 + 19547: -14,29 + 19559: 53,27 + 19562: 56,27 + 19680: 57,30 + 19692: 55,31 + 19884: -24,13 + 19898: -25,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1710: -49,-43 + 1683: -49,-43 - node: color: '#DABC8BFF' id: WoodTrimThinCornerNw decals: - 2658: -4,42 - 4003: -39,63 - 4155: -27,23 - 4160: -29,21 - 5699: 6,11 - 5734: 12,2 - 5769: 7,7 - 5784: 7,3 - 5870: -16,-4 - 5888: -13,-3 - 5903: -14,5 - 5948: -16,11 - 5979: -3,14 - 6484: -30,2 - 6485: -35,2 - 6486: -31,-4 - 6539: -35,2 - 6555: -35,2 - 6556: -30,2 - 6571: -26,-11 - 6625: -26,-5 - 6626: -26,-5 - 6641: -26,-5 - 6800: -34,-12 - 7292: 33,2 - 7322: 34,1 - 7375: 29,11 - 7776: 39,23 - 7777: 39,22 - 7778: 38,22 - 7779: 34,22 - 7805: 34,21 - 8581: 51,-23 - 8602: 47,-23 - 8608: 43,-23 - 10306: 34,-28 - 10307: 35,-29 - 10549: 14,-49 - 10759: 72,-37 - 10784: 49,-54 - 10852: 44,-51 - 11220: -56,-43 - 12531: -16,-79 - 12532: -19,-74 - 12581: -23,-80 - 12710: -4,40 - 12755: -41,29 - 12765: -39,26 - 13435: -41,-66 - 13465: -34,-65 - 13639: -35,-77 - 13982: -68,62 - 15527: -8,-77 - 15528: -3,-77 - 15871: 91,5 - 15908: 93,3 - 15989: 81,7 - 16078: 95,14 - 16333: -72,-40 - 16634: -41,-9 - 18297: -66,18 - 18317: -58,7 - 18752: -3,-11 - 18759: -4,-12 - 19027: -115,33 - 19725: 52,27 - 19726: 55,27 - 19841: 51,30 - 19856: 53,31 - 20050: -27,13 - 20062: -26,12 - 21620: -65,-25 + 2631: -4,42 + 3976: -39,63 + 4128: -27,23 + 4133: -29,21 + 5672: 6,11 + 5707: 12,2 + 5742: 7,7 + 5757: 7,3 + 5843: -16,-4 + 5861: -13,-3 + 5876: -14,5 + 5921: -16,11 + 5952: -3,14 + 6457: -30,2 + 6458: -35,2 + 6459: -31,-4 + 6512: -35,2 + 6528: -35,2 + 6529: -30,2 + 6544: -26,-11 + 6598: -26,-5 + 6599: -26,-5 + 6614: -26,-5 + 6773: -34,-12 + 7265: 33,2 + 7295: 34,1 + 7348: 29,11 + 7749: 39,23 + 7750: 39,22 + 7751: 38,22 + 7752: 34,22 + 7778: 34,21 + 8546: 51,-23 + 8567: 47,-23 + 8573: 43,-23 + 10271: 34,-28 + 10272: 35,-29 + 10514: 14,-49 + 10724: 72,-37 + 10749: 49,-54 + 10817: 44,-51 + 11185: -56,-43 + 12496: -16,-79 + 12497: -19,-74 + 12546: -23,-80 + 12675: -4,40 + 12720: -41,29 + 12730: -39,26 + 13400: -41,-66 + 13430: -34,-65 + 13604: -35,-77 + 13947: -68,62 + 15492: -8,-77 + 15493: -3,-77 + 15725: 91,5 + 15762: 93,3 + 15843: 81,7 + 15932: 95,14 + 16187: -72,-40 + 16488: -41,-9 + 18151: -66,18 + 18171: -58,7 + 18587: -3,-11 + 18594: -4,-12 + 18862: -115,33 + 19560: 52,27 + 19561: 55,27 + 19676: 51,30 + 19691: 53,31 + 19885: -27,13 + 19897: -26,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1607: -41,29 - 1705: -56,-43 + 1580: -41,29 + 1678: -56,-43 - node: cleanable: True color: '#5F697828' @@ -23824,90 +23907,89 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSe decals: - 2603: -10,36 - 2752: -3,53 - 4008: -34,59 - 4152: -22,19 - 5702: 14,7 - 5738: 14,0 - 5775: 11,5 - 5787: 11,0 - 5874: -15,-6 - 5882: -9,-6 - 5916: -9,3 - 5917: -9,-1 - 5920: -11,-2 - 5945: -9,7 - 5946: -8,8 - 5984: 1,12 - 6511: -27,-9 - 6538: -34,-9 - 6558: -26,0 - 6574: -22,-13 - 6624: -22,-9 - 6802: -31,-15 - 7294: 37,-2 - 7328: 36,-1 - 7381: 33,8 - 7784: 43,18 - 7792: 36,18 - 7793: 36,19 - 7794: 36,19 - 7798: 43,17 - 8583: 53,-26 - 8598: 49,-26 - 8618: 45,-26 - 10310: 38,-32 - 10311: 37,-31 - 10351: 24,-53 - 10552: 18,-53 - 10762: 74,-40 - 10773: 42,-56 - 10786: 51,-56 - 10787: 51,-56 - 10795: 52,-56 - 10855: 45,-55 - 11222: -49,-47 - 11262: -46,-45 - 11269: -46,-49 - 12408: -17,-48 - 12534: -15,-76 - 12579: -13,-82 - 12580: -21,-82 - 12711: -2,36 - 12773: -38,25 - 13429: -38,-68 - 13451: -36,-68 - 13470: -30,-68 - 13648: -31,-80 - 13989: -65,58 - 15531: -6,-79 - 15537: -1,-79 - 15879: 94,-2 - 15880: 95,-1 - 15888: 97,0 - 15912: 96,1 - 15998: 89,4 - 16073: 98,12 - 16086: 96,12 - 16093: 98,12 - 18304: -63,16 - 18314: -57,5 - 19029: -112,31 - 19713: -14,31 - 19733: 53,22 - 19736: 56,22 - 19839: 52,29 - 19840: 57,29 - 19842: 57,29 - 20060: -24,10 - 20061: -25,11 - 21638: -59,-27 + 2576: -10,36 + 2725: -3,53 + 3981: -34,59 + 4125: -22,19 + 5675: 14,7 + 5711: 14,0 + 5748: 11,5 + 5760: 11,0 + 5847: -15,-6 + 5855: -9,-6 + 5889: -9,3 + 5890: -9,-1 + 5893: -11,-2 + 5918: -9,7 + 5919: -8,8 + 5957: 1,12 + 6484: -27,-9 + 6511: -34,-9 + 6531: -26,0 + 6547: -22,-13 + 6597: -22,-9 + 6775: -31,-15 + 7267: 37,-2 + 7301: 36,-1 + 7354: 33,8 + 7757: 43,18 + 7765: 36,18 + 7766: 36,19 + 7767: 36,19 + 7771: 43,17 + 8548: 53,-26 + 8563: 49,-26 + 8583: 45,-26 + 10275: 38,-32 + 10276: 37,-31 + 10316: 24,-53 + 10517: 18,-53 + 10727: 74,-40 + 10738: 42,-56 + 10751: 51,-56 + 10752: 51,-56 + 10760: 52,-56 + 10820: 45,-55 + 11187: -49,-47 + 11227: -46,-45 + 11234: -46,-49 + 12373: -17,-48 + 12499: -15,-76 + 12544: -13,-82 + 12545: -21,-82 + 12676: -2,36 + 12738: -38,25 + 13394: -38,-68 + 13416: -36,-68 + 13435: -30,-68 + 13613: -31,-80 + 13954: -65,58 + 15496: -6,-79 + 15502: -1,-79 + 15733: 94,-2 + 15734: 95,-1 + 15742: 97,0 + 15766: 96,1 + 15852: 89,4 + 15927: 98,12 + 15940: 96,12 + 15947: 98,12 + 18158: -63,16 + 18168: -57,5 + 18864: -112,31 + 19548: -14,31 + 19568: 53,22 + 19571: 56,22 + 19674: 52,29 + 19675: 57,29 + 19677: 57,29 + 19895: -24,10 + 19896: -25,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 1714: -49,-47 + 1687: -49,-47 - node: cleanable: True color: '#5F697828' @@ -23918,354 +24000,345 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSw decals: - 2753: -4,53 - 4162: -29,19 - 5701: 6,8 - 5703: 13,7 - 5736: 12,0 - 5772: 7,5 - 5780: 7,0 - 5873: -16,-6 - 5881: -13,-6 - 5904: -14,-1 - 5919: -13,-2 - 5947: -16,7 - 5983: -3,12 - 6510: -31,-9 - 6540: -35,-9 - 6559: -30,0 - 6573: -26,-13 - 6622: -26,-9 - 6623: -26,-9 - 6803: -34,-15 - 7295: 33,-2 - 7327: 34,-1 - 7785: 39,18 - 7790: 34,18 - 7791: 34,19 - 7799: 39,17 - 7800: 38,18 - 8584: 51,-26 - 8597: 47,-26 - 8606: 47,-26 - 8607: 43,-26 - 10312: 34,-32 - 10313: 35,-31 - 10551: 14,-53 - 10761: 72,-40 - 10788: 49,-56 - 10854: 44,-55 - 11232: -56,-47 - 11233: -56,-47 - 11270: -54,-49 - 12535: -19,-76 - 12578: -16,-82 - 12583: -23,-82 - 12712: -4,36 - 12764: -39,25 - 13432: -41,-68 - 13471: -34,-68 - 13637: -32,-80 - 13646: -35,-80 - 13990: -68,58 - 15532: -8,-79 - 15536: -3,-79 - 15878: 91,-2 - 15913: 93,1 - 15999: 81,4 - 16075: 97,12 - 16085: 95,12 - 16639: -41,-11 - 18303: -66,16 - 18315: -58,5 - 18611: -60,-46 - 19030: -115,31 - 19734: 55,22 - 19735: 52,22 - 19843: 51,29 - 19844: 56,29 - 20057: -27,10 - 20064: -26,11 - 21639: -65,-27 + 2726: -4,53 + 4135: -29,19 + 5674: 6,8 + 5676: 13,7 + 5709: 12,0 + 5745: 7,5 + 5753: 7,0 + 5846: -16,-6 + 5854: -13,-6 + 5877: -14,-1 + 5892: -13,-2 + 5920: -16,7 + 5956: -3,12 + 6483: -31,-9 + 6513: -35,-9 + 6532: -30,0 + 6546: -26,-13 + 6595: -26,-9 + 6596: -26,-9 + 6776: -34,-15 + 7268: 33,-2 + 7300: 34,-1 + 7758: 39,18 + 7763: 34,18 + 7764: 34,19 + 7772: 39,17 + 7773: 38,18 + 8549: 51,-26 + 8562: 47,-26 + 8571: 47,-26 + 8572: 43,-26 + 10277: 34,-32 + 10278: 35,-31 + 10516: 14,-53 + 10726: 72,-40 + 10753: 49,-56 + 10819: 44,-55 + 11197: -56,-47 + 11198: -56,-47 + 11235: -54,-49 + 12500: -19,-76 + 12543: -16,-82 + 12548: -23,-82 + 12677: -4,36 + 12729: -39,25 + 13397: -41,-68 + 13436: -34,-68 + 13602: -32,-80 + 13611: -35,-80 + 13955: -68,58 + 15497: -8,-79 + 15501: -3,-79 + 15732: 91,-2 + 15767: 93,1 + 15853: 81,4 + 15929: 97,12 + 15939: 95,12 + 16493: -41,-11 + 18157: -66,16 + 18169: -58,5 + 18446: -60,-46 + 18865: -115,31 + 19569: 55,22 + 19570: 52,22 + 19678: 51,29 + 19679: 56,29 + 19892: -27,10 + 19899: -26,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 1721: -56,-47 + 1694: -56,-47 - node: color: '#DABC8BFF' id: WoodTrimThinEndE decals: - 16091: 98,14 - 21631: -59,-23 + 15945: 98,14 - node: color: '#DABC8BFF' id: WoodTrimThinEndN decals: - 10344: 20,-51 - 12398: -21,-46 - 12761: -38,29 + 10309: 20,-51 + 12363: -21,-46 + 12726: -38,29 - node: color: '#DABC8BFF' id: WoodTrimThinEndS decals: - 10345: 20,-53 - 12397: -21,-48 - 13997: -67,57 + 10310: 20,-53 + 12362: -21,-48 + 13962: -67,57 - node: color: '#DABC8BFF' id: WoodTrimThinEndW decals: - 19670: -12,30 - 21632: -65,-23 + 19505: -12,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNe decals: - 2016: -12,29 - 2024: -12,33 - 2026: -9,33 - 2509: -11,44 - 2510: -11,42 - 2511: -11,40 - 2512: -11,36 - 2533: -13,40 - 2536: -12,41 - 2607: -10,45 - 2608: -10,43 - 2636: -11,38 - 4175: -24,20 - 4176: -26,20 - 5715: 8,11 - 5733: 13,2 - 5797: 11,1 - 5801: 8,3 - 5876: -15,-5 - 5902: -10,-3 - 5928: -10,0 - 5932: -11,5 - 5959: -10,11 - 6516: -29,-4 - 6517: -24,-4 - 6583: -24,-11 - 6667: -24,-7 - 7302: 35,2 - 7810: 43,20 - 7814: 36,20 - 8590: 52,-23 - 8594: 48,-23 - 8595: 48,-23 - 8612: 44,-23 - 10332: 37,-28 - 10352: 22,-51 - 10353: 22,-51 - 10567: 17,-49 - 10802: 50,-50 - 11263: -47,-43 - 11266: -47,-47 - 12403: -19,-46 - 12411: -19,-46 - 12563: -17,-74 - 12717: -3,40 - 12768: -38,27 - 13443: -36,-66 - 13444: -37,-65 - 13448: -41,-65 - 13650: -31,-79 - 15918: 95,3 - 16344: -62,-43 - 16348: -68,-46 - 18761: 1,-12 - 19663: -9,27 - 19664: -9,30 - 19860: 55,30 - 20108: 96,2 - 21627: -60,-25 + 1989: -12,29 + 1997: -12,33 + 1999: -9,33 + 2482: -11,44 + 2483: -11,42 + 2484: -11,40 + 2485: -11,36 + 2506: -13,40 + 2509: -12,41 + 2580: -10,45 + 2581: -10,43 + 2609: -11,38 + 4148: -24,20 + 4149: -26,20 + 5688: 8,11 + 5706: 13,2 + 5770: 11,1 + 5774: 8,3 + 5849: -15,-5 + 5875: -10,-3 + 5901: -10,0 + 5905: -11,5 + 5932: -10,11 + 6489: -29,-4 + 6490: -24,-4 + 6556: -24,-11 + 6640: -24,-7 + 7275: 35,2 + 7783: 43,20 + 7787: 36,20 + 8555: 52,-23 + 8559: 48,-23 + 8560: 48,-23 + 8577: 44,-23 + 10297: 37,-28 + 10317: 22,-51 + 10318: 22,-51 + 10532: 17,-49 + 10767: 50,-50 + 11228: -47,-43 + 11231: -47,-47 + 12368: -19,-46 + 12376: -19,-46 + 12528: -17,-74 + 12682: -3,40 + 12733: -38,27 + 13408: -36,-66 + 13409: -37,-65 + 13413: -41,-65 + 13615: -31,-79 + 15772: 95,3 + 16198: -62,-43 + 16202: -68,-46 + 18596: 1,-12 + 19498: -9,27 + 19499: -9,30 + 19695: 55,30 + 19943: 96,2 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNw decals: - 2015: -13,33 - 2025: -10,33 - 2037: -10,29 - 2513: -13,36 - 2514: -13,38 - 2515: -13,40 - 2516: -13,42 - 2517: -13,44 - 2518: -13,44 - 2537: -12,41 - 2538: -11,40 - 2539: -11,40 - 4158: -27,21 - 4177: -24,20 - 5714: 8,11 - 5732: 13,2 - 5800: 8,3 - 5880: -13,-5 - 5901: -10,-3 - 5910: -14,4 - 5931: -11,5 - 5958: -10,11 - 6515: -29,-4 - 6518: -24,-4 - 6568: -30,1 - 6582: -24,-11 - 6639: -26,-6 - 6640: -26,-6 - 6669: -24,-7 - 7303: 35,2 - 7306: 33,1 - 7808: 38,20 - 8591: 52,-23 - 8603: 48,-23 - 8611: 44,-23 - 10333: 37,-28 - 10354: 22,-51 - 10568: 17,-49 - 10782: 39,-53 - 10803: 50,-50 - 11265: -47,-47 - 12404: -19,-46 - 12410: -19,-46 - 12564: -17,-74 - 12714: -4,37 - 12716: -3,40 - 12758: -41,28 - 12759: -41,28 - 12772: -38,26 - 13445: -37,-65 - 13478: -34,-66 - 13645: -35,-79 - 15920: 94,3 - 15921: 93,2 - 16082: 95,13 - 18760: -3,-12 - 19717: -14,30 - 19859: 53,30 - 21628: -64,-25 + 1988: -13,33 + 1998: -10,33 + 2010: -10,29 + 2486: -13,36 + 2487: -13,38 + 2488: -13,40 + 2489: -13,42 + 2490: -13,44 + 2491: -13,44 + 2510: -12,41 + 2511: -11,40 + 2512: -11,40 + 4131: -27,21 + 4150: -24,20 + 5687: 8,11 + 5705: 13,2 + 5773: 8,3 + 5853: -13,-5 + 5874: -10,-3 + 5883: -14,4 + 5904: -11,5 + 5931: -10,11 + 6488: -29,-4 + 6491: -24,-4 + 6541: -30,1 + 6555: -24,-11 + 6612: -26,-6 + 6613: -26,-6 + 6642: -24,-7 + 7276: 35,2 + 7279: 33,1 + 7781: 38,20 + 8556: 52,-23 + 8568: 48,-23 + 8576: 44,-23 + 10298: 37,-28 + 10319: 22,-51 + 10533: 17,-49 + 10747: 39,-53 + 10768: 50,-50 + 11230: -47,-47 + 12369: -19,-46 + 12375: -19,-46 + 12529: -17,-74 + 12679: -4,37 + 12681: -3,40 + 12723: -41,28 + 12724: -41,28 + 12737: -38,26 + 13410: -37,-65 + 13443: -34,-66 + 13610: -35,-79 + 15774: 94,3 + 15775: 93,2 + 15936: 95,13 + 18595: -3,-12 + 19552: -14,30 + 19694: 53,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSe decals: - 2017: -12,31 - 2029: -9,33 - 2525: -11,40 - 2526: -11,42 - 2527: -11,44 - 2528: -11,46 - 2532: -12,41 - 2534: -13,42 - 2604: -10,39 - 2605: -10,39 - 2606: -10,45 - 2637: -11,38 - 4169: -25,19 - 5726: 8,8 - 5727: 10,8 - 5793: 8,5 - 5796: 11,1 - 5807: 10,0 - 5875: -15,-5 - 5894: -10,-6 - 5922: -12,-2 - 5923: -10,-1 - 5929: -10,3 - 5937: -11,-1 - 5966: -11,7 - 6282: -4,-12 - 6520: -24,-4 - 6643: -24,-9 - 6645: -27,-4 - 6646: -27,-6 - 6647: -27,-6 - 6670: -24,-7 - 7309: 36,-2 - 7389: 29,8 - 7809: 43,20 - 7813: 36,20 - 10331: 36,-32 - 10570: 17,-53 - 10571: 7,-57 - 10770: 73,-40 - 11264: -47,-45 - 12572: -17,-67 - 12723: -2,40 - 12767: -38,27 - 13442: -36,-66 - 13647: -34,-79 - 13651: -31,-79 - 13995: -67,58 - 15886: 94,-1 - 15887: 95,0 - 15919: 95,1 - 15926: 96,2 - 16088: 96,14 - 16090: 97,14 - 16345: -62,-43 - 16349: -68,-44 - 19662: -9,27 - 19665: -9,30 - 19855: 52,30 - 21630: -60,-23 - 21645: -62,-27 + 1990: -12,31 + 2002: -9,33 + 2498: -11,40 + 2499: -11,42 + 2500: -11,44 + 2501: -11,46 + 2505: -12,41 + 2507: -13,42 + 2577: -10,39 + 2578: -10,39 + 2579: -10,45 + 2610: -11,38 + 4142: -25,19 + 5699: 8,8 + 5700: 10,8 + 5766: 8,5 + 5769: 11,1 + 5780: 10,0 + 5848: -15,-5 + 5867: -10,-6 + 5895: -12,-2 + 5896: -10,-1 + 5902: -10,3 + 5910: -11,-1 + 5939: -11,7 + 6255: -4,-12 + 6493: -24,-4 + 6616: -24,-9 + 6618: -27,-4 + 6619: -27,-6 + 6620: -27,-6 + 6643: -24,-7 + 7282: 36,-2 + 7362: 29,8 + 7782: 43,20 + 7786: 36,20 + 10296: 36,-32 + 10535: 17,-53 + 10536: 7,-57 + 10735: 73,-40 + 11229: -47,-45 + 12537: -17,-67 + 12688: -2,40 + 12732: -38,27 + 13407: -36,-66 + 13612: -34,-79 + 13616: -31,-79 + 13960: -67,58 + 15740: 94,-1 + 15741: 95,0 + 15773: 95,1 + 15780: 96,2 + 15942: 96,14 + 15944: 97,14 + 16199: -62,-43 + 16203: -68,-44 + 19497: -9,27 + 19500: -9,30 + 19690: 52,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSw decals: - 2033: -10,27 - 2038: -10,31 - 2519: -13,46 - 2520: -13,44 - 2521: -13,44 - 2522: -13,42 - 2523: -13,40 - 2524: -13,38 - 2531: -12,41 - 2535: -11,42 - 4168: -25,19 - 5724: 8,8 - 5725: 10,8 - 5792: 8,5 - 5806: 10,0 - 5879: -13,-5 - 5893: -10,-6 - 5911: -14,4 - 5918: -13,-1 - 5921: -12,-2 - 5936: -10,-1 - 5965: -11,7 - 6283: 2,-12 - 6519: -24,-4 - 6567: -30,1 - 6638: -26,-6 - 6642: -24,-9 - 6668: -24,-7 - 7307: 33,1 - 7308: 36,-2 - 7807: 38,20 - 10330: 36,-32 - 10569: 17,-53 - 10769: 73,-40 - 10783: 39,-53 - 10808: 44,-50 - 12571: -17,-67 - 12713: -4,37 - 12757: -41,28 - 12766: -39,27 - 13479: -34,-66 - 13644: -35,-79 - 13996: -67,58 - 15924: 93,2 - 15925: 94,1 - 16083: 95,13 - 16089: 97,14 - 16350: -70,-42 - 19715: -13,27 - 19716: -14,30 - 19854: 56,30 - 21629: -64,-23 - 21644: -62,-27 + 2006: -10,27 + 2011: -10,31 + 2492: -13,46 + 2493: -13,44 + 2494: -13,44 + 2495: -13,42 + 2496: -13,40 + 2497: -13,38 + 2504: -12,41 + 2508: -11,42 + 4141: -25,19 + 5697: 8,8 + 5698: 10,8 + 5765: 8,5 + 5779: 10,0 + 5852: -13,-5 + 5866: -10,-6 + 5884: -14,4 + 5891: -13,-1 + 5894: -12,-2 + 5909: -10,-1 + 5938: -11,7 + 6256: 2,-12 + 6492: -24,-4 + 6540: -30,1 + 6611: -26,-6 + 6615: -24,-9 + 6641: -24,-7 + 7280: 33,1 + 7281: 36,-2 + 7780: 38,20 + 10295: 36,-32 + 10534: 17,-53 + 10734: 73,-40 + 10748: 39,-53 + 10773: 44,-50 + 12536: -17,-67 + 12678: -4,37 + 12722: -41,28 + 12731: -39,27 + 13444: -34,-66 + 13609: -35,-79 + 13961: -67,58 + 15778: 93,2 + 15779: 94,1 + 15937: 95,13 + 15943: 97,14 + 16204: -70,-42 + 19550: -13,27 + 19551: -14,30 + 19689: 56,30 - node: cleanable: True color: '#151C2553' @@ -24287,203 +24360,200 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineE decals: - 2027: -9,32 - 2028: -9,31 - 2030: -9,29 - 2031: -9,28 - 2483: -14,44 - 2484: -14,42 - 2485: -14,40 - 2486: -14,38 - 2487: -14,36 - 2490: -14,46 - 2529: -13,41 - 2598: -10,44 - 2599: -10,38 - 2600: -10,37 - 2660: -2,41 - 4005: -34,62 - 4006: -34,61 - 4007: -34,60 - 4170: -26,22 - 4171: -26,21 - 5704: 14,8 - 5705: 14,9 - 5706: 14,10 - 5739: 14,1 - 5774: 11,6 - 5786: 11,2 - 5878: -14,-5 - 5883: -9,-5 - 5884: -9,-4 - 5909: -15,4 - 5926: -10,1 - 5927: -10,2 - 5930: -9,4 - 5934: -10,-2 - 5956: -8,10 - 5957: -8,9 - 5988: 1,13 - 6275: 2,-12 - 6506: -27,-5 - 6507: -27,-7 - 6508: -27,-8 - 6509: -27,-9 - 6523: -34,1 - 6524: -34,0 - 6525: -34,-1 - 6526: -34,-1 - 6527: -34,-2 - 6528: -34,-2 - 6529: -34,-3 - 6530: -34,-4 - 6531: -34,-4 - 6532: -34,-5 - 6533: -34,-6 - 6534: -34,-6 - 6535: -34,-7 - 6536: -34,-7 - 6537: -34,-8 - 6563: -26,1 - 6578: -22,-12 - 6632: -22,-6 - 6633: -22,-7 - 6634: -22,-8 - 6650: -27,-6 - 6663: -25,-7 - 6729: -31,1 - 6808: -31,-14 - 6809: -31,-13 - 7305: 32,1 - 7310: 37,-1 - 7311: 37,0 - 7312: 37,1 - 7324: 36,0 - 7379: 33,10 - 7380: 33,9 - 7601: 60,25 - 7602: 60,25 - 7772: 43,18 - 7773: 43,19 - 7783: 43,21 - 7803: 36,21 - 7806: 37,20 - 8586: 53,-25 - 8587: 53,-24 - 8601: 49,-25 - 8613: 45,-24 - 8614: 45,-25 - 10316: 38,-31 - 10317: 38,-30 - 10318: 38,-29 - 10326: 37,-30 - 10338: 20,-52 - 10339: 24,-52 - 10558: 18,-52 - 10559: 18,-51 - 10560: 18,-50 - 10763: 74,-39 - 10764: 74,-38 - 10774: 42,-54 - 10775: 42,-53 - 10791: 51,-55 - 10792: 51,-55 - 10794: 52,-56 - 10796: 52,-55 - 10797: 52,-55 - 10798: 52,-54 - 10799: 52,-53 - 10800: 52,-52 - 10807: 43,-50 - 10848: 43,-50 - 10849: 45,-52 - 10850: 45,-53 - 10851: 45,-54 - 11242: -49,-44 - 11243: -49,-46 - 11244: -49,-45 - 11260: -46,-44 - 11261: -46,-45 - 11272: -46,-48 - 12399: -21,-47 - 12409: -17,-47 - 12519: -17,-68 - 12520: -17,-69 - 12521: -17,-69 - 12522: -17,-70 - 12523: -17,-70 - 12524: -17,-71 - 12525: -17,-71 - 12526: -17,-72 - 12527: -17,-72 - 12528: -17,-73 - 12529: -13,-80 - 12530: -13,-81 - 12555: -22,-67 - 12556: -22,-66 - 12559: -15,-75 - 12586: -21,-81 - 12707: -5,37 - 12720: -2,39 - 12721: -2,38 - 12722: -2,37 - 12756: -42,28 - 12762: -38,28 - 12763: -38,26 - 13428: -38,-67 - 13450: -36,-67 - 13473: -30,-67 - 13474: -30,-66 - 13480: -35,-66 - 13649: -31,-78 - 13986: -65,61 - 13987: -65,60 - 13988: -65,59 - 15530: -6,-78 - 15540: -1,-78 - 15889: 97,1 - 15890: 97,2 - 15891: 97,3 - 15892: 97,4 - 15916: 92,2 - 16007: 89,5 - 16008: 89,6 - 16084: 94,13 - 16087: 96,13 - 16343: -62,-42 - 16636: -39,-10 - 18305: -63,17 - 18313: -57,6 - 18613: -58,-45 - 19033: -112,32 - 19671: -11,31 - 19672: -11,32 - 19673: -11,33 - 19680: -11,27 - 19681: -11,28 - 19682: -11,29 - 19683: -14,27 - 19684: -14,28 - 19685: -14,31 - 19686: -14,32 - 19687: -14,33 - 19714: -15,30 - 19728: 53,26 - 19729: 53,25 - 19730: 53,24 - 19731: 53,23 - 19732: 53,22 - 19737: 56,23 - 19738: 56,24 - 19739: 56,25 - 19740: 56,25 - 19741: 56,26 - 20051: -24,12 - 20052: -24,11 - 21618: 49,-24 - 21621: -59,-27 - 21622: -59,-26 - 21626: -60,-24 + 2000: -9,32 + 2001: -9,31 + 2003: -9,29 + 2004: -9,28 + 2456: -14,44 + 2457: -14,42 + 2458: -14,40 + 2459: -14,38 + 2460: -14,36 + 2463: -14,46 + 2502: -13,41 + 2571: -10,44 + 2572: -10,38 + 2573: -10,37 + 2633: -2,41 + 3978: -34,62 + 3979: -34,61 + 3980: -34,60 + 4143: -26,22 + 4144: -26,21 + 5677: 14,8 + 5678: 14,9 + 5679: 14,10 + 5712: 14,1 + 5747: 11,6 + 5759: 11,2 + 5851: -14,-5 + 5856: -9,-5 + 5857: -9,-4 + 5882: -15,4 + 5899: -10,1 + 5900: -10,2 + 5903: -9,4 + 5907: -10,-2 + 5929: -8,10 + 5930: -8,9 + 5961: 1,13 + 6248: 2,-12 + 6479: -27,-5 + 6480: -27,-7 + 6481: -27,-8 + 6482: -27,-9 + 6496: -34,1 + 6497: -34,0 + 6498: -34,-1 + 6499: -34,-1 + 6500: -34,-2 + 6501: -34,-2 + 6502: -34,-3 + 6503: -34,-4 + 6504: -34,-4 + 6505: -34,-5 + 6506: -34,-6 + 6507: -34,-6 + 6508: -34,-7 + 6509: -34,-7 + 6510: -34,-8 + 6536: -26,1 + 6551: -22,-12 + 6605: -22,-6 + 6606: -22,-7 + 6607: -22,-8 + 6623: -27,-6 + 6636: -25,-7 + 6702: -31,1 + 6781: -31,-14 + 6782: -31,-13 + 7278: 32,1 + 7283: 37,-1 + 7284: 37,0 + 7285: 37,1 + 7297: 36,0 + 7352: 33,10 + 7353: 33,9 + 7574: 60,25 + 7575: 60,25 + 7745: 43,18 + 7746: 43,19 + 7756: 43,21 + 7776: 36,21 + 7779: 37,20 + 8551: 53,-25 + 8552: 53,-24 + 8566: 49,-25 + 8578: 45,-24 + 8579: 45,-25 + 10281: 38,-31 + 10282: 38,-30 + 10283: 38,-29 + 10291: 37,-30 + 10303: 20,-52 + 10304: 24,-52 + 10523: 18,-52 + 10524: 18,-51 + 10525: 18,-50 + 10728: 74,-39 + 10729: 74,-38 + 10739: 42,-54 + 10740: 42,-53 + 10756: 51,-55 + 10757: 51,-55 + 10759: 52,-56 + 10761: 52,-55 + 10762: 52,-55 + 10763: 52,-54 + 10764: 52,-53 + 10765: 52,-52 + 10772: 43,-50 + 10813: 43,-50 + 10814: 45,-52 + 10815: 45,-53 + 10816: 45,-54 + 11207: -49,-44 + 11208: -49,-46 + 11209: -49,-45 + 11225: -46,-44 + 11226: -46,-45 + 11237: -46,-48 + 12364: -21,-47 + 12374: -17,-47 + 12484: -17,-68 + 12485: -17,-69 + 12486: -17,-69 + 12487: -17,-70 + 12488: -17,-70 + 12489: -17,-71 + 12490: -17,-71 + 12491: -17,-72 + 12492: -17,-72 + 12493: -17,-73 + 12494: -13,-80 + 12495: -13,-81 + 12520: -22,-67 + 12521: -22,-66 + 12524: -15,-75 + 12551: -21,-81 + 12672: -5,37 + 12685: -2,39 + 12686: -2,38 + 12687: -2,37 + 12721: -42,28 + 12727: -38,28 + 12728: -38,26 + 13393: -38,-67 + 13415: -36,-67 + 13438: -30,-67 + 13439: -30,-66 + 13445: -35,-66 + 13614: -31,-78 + 13951: -65,61 + 13952: -65,60 + 13953: -65,59 + 15495: -6,-78 + 15505: -1,-78 + 15743: 97,1 + 15744: 97,2 + 15745: 97,3 + 15746: 97,4 + 15770: 92,2 + 15861: 89,5 + 15862: 89,6 + 15938: 94,13 + 15941: 96,13 + 16197: -62,-42 + 16490: -39,-10 + 18159: -63,17 + 18167: -57,6 + 18448: -58,-45 + 18868: -112,32 + 19506: -11,31 + 19507: -11,32 + 19508: -11,33 + 19515: -11,27 + 19516: -11,28 + 19517: -11,29 + 19518: -14,27 + 19519: -14,28 + 19520: -14,31 + 19521: -14,32 + 19522: -14,33 + 19549: -15,30 + 19563: 53,26 + 19564: 53,25 + 19565: 53,24 + 19566: 53,23 + 19567: 53,22 + 19572: 56,23 + 19573: 56,24 + 19574: 56,25 + 19575: 56,25 + 19576: 56,26 + 19886: -24,12 + 19887: -24,11 + 21453: 49,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -24491,9 +24561,9 @@ entities: 502: 0,9 891: 0,4 892: 0,-6 - 1711: -49,-44 - 1712: -49,-45 - 1713: -49,-46 + 1684: -49,-44 + 1685: -49,-45 + 1686: -49,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -24511,279 +24581,273 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 2032: -9,25 - 2454: -13,45 - 2455: -12,45 - 2456: -11,45 - 2457: -13,43 - 2458: -12,43 - 2459: -11,43 - 2460: -13,41 - 2461: -11,41 - 2462: -13,39 - 2463: -12,39 - 2464: -11,39 - 2465: -13,37 - 2466: -12,37 - 2467: -11,37 - 2587: -13,46 - 2588: -12,46 - 2589: -11,46 - 2590: -11,46 - 2611: -14,46 - 2659: -3,42 - 2754: -4,54 - 3999: -38,63 - 4000: -36,63 - 4001: -37,63 - 4002: -35,63 - 4153: -22,20 - 4159: -28,21 - 4172: -25,20 - 4173: -23,20 - 4174: -23,20 - 4195: -25,18 - 5713: 7,11 - 5716: 10,11 - 5717: 9,11 - 5718: 11,11 - 5719: 12,11 - 5720: 13,11 - 5722: 10,7 - 5723: 8,7 - 5771: 9,7 - 5794: 8,4 - 5798: 9,3 - 5799: 10,3 - 5802: 10,-1 - 5886: -13,-3 - 5887: -12,-3 - 5892: -10,-7 - 5900: -11,-3 - 5912: -13,5 - 5913: -12,5 - 5914: -10,5 - 5924: -10,-2 - 5949: -15,11 - 5950: -14,11 - 5951: -13,11 - 5952: -12,11 - 5953: -11,11 - 5954: -9,11 - 5964: -11,6 - 5981: 0,14 - 5982: -1,14 - 6288: 2,-13 - 6289: -4,-13 - 6487: -30,-4 - 6488: -28,-4 - 6489: -27,-4 - 6490: -26,-4 - 6491: -26,-4 - 6492: -25,-4 - 6493: -23,-4 - 6494: -22,-4 - 6521: -24,-5 - 6564: -29,2 - 6565: -28,2 - 6566: -27,2 - 6580: -25,-11 - 6581: -23,-11 - 6629: -23,-5 - 6630: -25,-5 - 6631: -25,-5 - 6644: -24,-10 - 6664: -24,-8 - 6806: -33,-12 - 6807: -32,-12 - 7300: 34,2 - 7301: 36,2 - 7313: 36,-3 - 7325: 35,1 - 7376: 30,11 - 7377: 32,11 - 7378: 31,11 - 7390: 29,7 - 7757: 40,23 - 7758: 40,23 - 7759: 41,23 - 7760: 41,23 - 7761: 42,23 - 7762: 42,23 - 7763: 40,22 - 7764: 41,22 - 7765: 42,22 - 7780: 35,22 - 7781: 35,21 - 10319: 35,-28 - 10320: 36,-28 - 10327: 36,-29 - 10329: 36,-33 - 10348: 21,-51 - 10349: 23,-51 - 10564: 15,-49 - 10565: 16,-49 - 10566: 17,-54 - 10765: 73,-37 - 10768: 73,-41 - 10789: 50,-54 - 10804: 52,-50 - 10805: 44,-50 - 10806: 45,-50 - 11237: -55,-43 - 11238: -54,-43 - 11239: -54,-43 - 11240: -51,-43 - 11241: -50,-43 - 11252: -47,-46 - 11267: -48,-47 - 12401: -18,-46 - 12412: -20,-46 - 12545: -21,-66 - 12546: -20,-66 - 12547: -19,-66 - 12548: -18,-66 - 12549: -17,-66 - 12550: -16,-66 - 12551: -15,-66 - 12552: -14,-66 - 12553: -14,-66 - 12554: -13,-66 - 12561: -18,-74 - 12562: -16,-74 - 12573: -15,-79 - 12574: -14,-79 - 12585: -22,-80 - 12715: -2,40 - 12760: -40,29 - 13436: -40,-66 - 13437: -39,-66 - 13438: -40,-65 - 13439: -39,-65 - 13440: -38,-65 - 13475: -33,-65 - 13476: -32,-65 - 13477: -31,-65 - 13640: -34,-77 - 13641: -33,-77 - 13642: -32,-77 - 13983: -67,62 - 13984: -66,62 - 15526: -7,-77 - 15539: -2,-77 - 15882: 93,5 - 15883: 94,5 - 15884: 95,5 - 15914: 94,0 - 15915: 95,0 - 15990: 82,7 - 15991: 83,7 - 15992: 84,7 - 15993: 85,7 - 15994: 86,7 - 15995: 87,7 - 15996: 88,7 - 16079: 96,14 - 16080: 97,14 - 16092: 97,13 - 16327: -69,-40 - 16328: -68,-40 - 16329: -67,-40 - 16330: -66,-40 - 16331: -65,-40 - 16332: -63,-40 - 16635: -40,-9 - 18298: -65,18 - 18299: -64,18 - 18608: -59,-44 - 18753: -2,-11 - 18754: -1,-11 - 18755: 0,-11 - 18756: 1,-11 - 19034: -114,33 - 19035: -113,33 - 19653: -11,33 - 19658: -13,26 - 19659: -12,26 - 19660: -10,26 - 19661: -9,26 - 19666: -9,30 - 19667: -10,30 - 19846: 56,30 - 19847: 56,30 - 19848: 52,30 - 19849: 52,30 - 19850: 56,30 - 19858: 54,31 - 20053: -26,13 - 20054: -25,13 - 21633: -64,-23 - 21634: -63,-23 - 21635: -62,-23 - 21636: -61,-23 - 21637: -60,-23 - 21647: -62,-28 + 2005: -9,25 + 2427: -13,45 + 2428: -12,45 + 2429: -11,45 + 2430: -13,43 + 2431: -12,43 + 2432: -11,43 + 2433: -13,41 + 2434: -11,41 + 2435: -13,39 + 2436: -12,39 + 2437: -11,39 + 2438: -13,37 + 2439: -12,37 + 2440: -11,37 + 2560: -13,46 + 2561: -12,46 + 2562: -11,46 + 2563: -11,46 + 2584: -14,46 + 2632: -3,42 + 2727: -4,54 + 3972: -38,63 + 3973: -36,63 + 3974: -37,63 + 3975: -35,63 + 4126: -22,20 + 4132: -28,21 + 4145: -25,20 + 4146: -23,20 + 4147: -23,20 + 4168: -25,18 + 5686: 7,11 + 5689: 10,11 + 5690: 9,11 + 5691: 11,11 + 5692: 12,11 + 5693: 13,11 + 5695: 10,7 + 5696: 8,7 + 5744: 9,7 + 5767: 8,4 + 5771: 9,3 + 5772: 10,3 + 5775: 10,-1 + 5859: -13,-3 + 5860: -12,-3 + 5865: -10,-7 + 5873: -11,-3 + 5885: -13,5 + 5886: -12,5 + 5887: -10,5 + 5897: -10,-2 + 5922: -15,11 + 5923: -14,11 + 5924: -13,11 + 5925: -12,11 + 5926: -11,11 + 5927: -9,11 + 5937: -11,6 + 5954: 0,14 + 5955: -1,14 + 6261: 2,-13 + 6262: -4,-13 + 6460: -30,-4 + 6461: -28,-4 + 6462: -27,-4 + 6463: -26,-4 + 6464: -26,-4 + 6465: -25,-4 + 6466: -23,-4 + 6467: -22,-4 + 6494: -24,-5 + 6537: -29,2 + 6538: -28,2 + 6539: -27,2 + 6553: -25,-11 + 6554: -23,-11 + 6602: -23,-5 + 6603: -25,-5 + 6604: -25,-5 + 6617: -24,-10 + 6637: -24,-8 + 6779: -33,-12 + 6780: -32,-12 + 7273: 34,2 + 7274: 36,2 + 7286: 36,-3 + 7298: 35,1 + 7349: 30,11 + 7350: 32,11 + 7351: 31,11 + 7363: 29,7 + 7730: 40,23 + 7731: 40,23 + 7732: 41,23 + 7733: 41,23 + 7734: 42,23 + 7735: 42,23 + 7736: 40,22 + 7737: 41,22 + 7738: 42,22 + 7753: 35,22 + 7754: 35,21 + 10284: 35,-28 + 10285: 36,-28 + 10292: 36,-29 + 10294: 36,-33 + 10313: 21,-51 + 10314: 23,-51 + 10529: 15,-49 + 10530: 16,-49 + 10531: 17,-54 + 10730: 73,-37 + 10733: 73,-41 + 10754: 50,-54 + 10769: 52,-50 + 10770: 44,-50 + 10771: 45,-50 + 11202: -55,-43 + 11203: -54,-43 + 11204: -54,-43 + 11205: -51,-43 + 11206: -50,-43 + 11217: -47,-46 + 11232: -48,-47 + 12366: -18,-46 + 12377: -20,-46 + 12510: -21,-66 + 12511: -20,-66 + 12512: -19,-66 + 12513: -18,-66 + 12514: -17,-66 + 12515: -16,-66 + 12516: -15,-66 + 12517: -14,-66 + 12518: -14,-66 + 12519: -13,-66 + 12526: -18,-74 + 12527: -16,-74 + 12538: -15,-79 + 12539: -14,-79 + 12550: -22,-80 + 12680: -2,40 + 12725: -40,29 + 13401: -40,-66 + 13402: -39,-66 + 13403: -40,-65 + 13404: -39,-65 + 13405: -38,-65 + 13440: -33,-65 + 13441: -32,-65 + 13442: -31,-65 + 13605: -34,-77 + 13606: -33,-77 + 13607: -32,-77 + 13948: -67,62 + 13949: -66,62 + 15491: -7,-77 + 15504: -2,-77 + 15736: 93,5 + 15737: 94,5 + 15738: 95,5 + 15768: 94,0 + 15769: 95,0 + 15844: 82,7 + 15845: 83,7 + 15846: 84,7 + 15847: 85,7 + 15848: 86,7 + 15849: 87,7 + 15850: 88,7 + 15933: 96,14 + 15934: 97,14 + 15946: 97,13 + 16181: -69,-40 + 16182: -68,-40 + 16183: -67,-40 + 16184: -66,-40 + 16185: -65,-40 + 16186: -63,-40 + 16489: -40,-9 + 18152: -65,18 + 18153: -64,18 + 18443: -59,-44 + 18588: -2,-11 + 18589: -1,-11 + 18590: 0,-11 + 18591: 1,-11 + 18869: -114,33 + 18870: -113,33 + 19488: -11,33 + 19493: -13,26 + 19494: -12,26 + 19495: -10,26 + 19496: -9,26 + 19501: -9,30 + 19502: -10,30 + 19681: 56,30 + 19682: 56,30 + 19683: 52,30 + 19684: 52,30 + 19685: 56,30 + 19693: 54,31 + 19888: -26,13 + 19889: -25,13 - node: angle: 1.9198621771937625 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13525: -35.813877,-65.105484 - 16561: -64.29358,-40.983166 + 13490: -35.813877,-65.105484 + 16415: -64.29358,-40.983166 - node: angle: 2.0943951023931953 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13523: -29.784193,-66.29185 + 13488: -29.784193,-66.29185 - node: angle: 2.443460952792061 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16564: -62.793587,-43.12379 + 16418: -62.793587,-43.12379 - node: angle: 2.6179938779914944 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16563: -69.402954,-44.592537 + 16417: -69.402954,-44.592537 - node: angle: 3.490658503988659 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13522: -40.693886,-64.73856 + 13487: -40.693886,-64.73856 - node: angle: 3.6651914291880923 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13524: -33.77137,-66.21846 + 13489: -33.77137,-66.21846 - node: angle: 3.839724354387525 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16562: -69.85608,-41.076912 + 16416: -69.85608,-41.076912 - node: angle: 4.363323129985824 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16565: -67.26233,-43.09254 + 16419: -67.26233,-43.09254 - node: angle: 5.235987755982989 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13521: -37.183704,-67.03792 + 13486: -37.183704,-67.03792 - node: angle: 6.981317007977318 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16566: -67.51233,-46.24879 + 16420: -67.51233,-46.24879 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -24808,11 +24872,11 @@ entities: decals: 545: 35,1 1049: -26,-4 - 1608: -40,29 - 1706: -55,-43 - 1707: -54,-43 - 1708: -51,-43 - 1709: -50,-43 + 1581: -40,29 + 1679: -55,-43 + 1680: -54,-43 + 1681: -51,-43 + 1682: -50,-43 - node: cleanable: True color: '#FFFFFFFF' @@ -24848,231 +24912,227 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineS decals: - 2468: -13,37 - 2469: -12,37 - 2470: -12,37 - 2471: -11,37 - 2472: -11,39 - 2473: -12,39 - 2474: -13,39 - 2475: -13,41 - 2476: -11,41 - 2477: -11,43 - 2478: -12,43 - 2479: -13,43 - 2480: -13,45 - 2481: -12,45 - 2482: -11,45 - 2591: -13,36 - 2592: -12,36 - 2593: -11,36 - 2601: -14,36 - 2663: -4,41 - 2664: -2,41 - 4009: -35,59 - 4163: -28,19 - 4164: -27,19 - 4165: -26,19 - 4166: -24,19 - 4167: -23,19 - 4178: -24,21 - 5700: 8,12 - 5707: 12,8 - 5708: 11,8 - 5709: 9,8 - 5710: 7,8 - 5731: 13,3 - 5737: 13,0 - 5776: 10,5 - 5777: 9,5 - 5778: 8,0 - 5779: 9,0 - 5791: 8,4 - 5890: -12,-6 - 5891: -11,-6 - 5899: -10,-2 - 5933: -11,6 - 5939: -10,-2 - 5940: -12,7 - 5941: -13,7 - 5942: -14,7 - 5943: -15,7 - 5944: -10,7 - 5960: -10,12 - 5985: -2,12 - 5986: -1,12 - 5987: 0,12 - 6276: -3,-12 - 6277: -2,-12 - 6278: -1,-12 - 6279: 0,-12 - 6280: 1,-12 - 6502: -22,-4 - 6503: -23,-4 - 6504: -25,-4 - 6505: -26,-4 - 6512: -30,-9 - 6513: -29,-9 - 6514: -28,-9 - 6560: -29,0 - 6561: -28,0 - 6562: -27,0 - 6569: -29,-3 - 6570: -24,-3 - 6575: -25,-13 - 6576: -24,-13 - 6577: -23,-13 - 6619: -24,-10 - 6620: -23,-9 - 6621: -25,-9 - 6651: -24,-4 - 6666: -24,-6 - 6804: -33,-15 - 6805: -32,-15 - 7296: 34,-2 - 7297: 35,-2 - 7304: 35,3 - 7326: 35,-1 - 7386: 30,8 - 7387: 31,8 - 7388: 32,8 - 7766: 40,18 - 7767: 41,18 - 7768: 42,18 - 7769: 40,17 - 7770: 41,17 - 7771: 42,17 - 7795: 35,18 - 7796: 35,18 - 7797: 35,19 - 8585: 52,-26 - 8592: 52,-22 - 8593: 48,-22 - 8599: 48,-26 - 8600: 48,-26 - 8610: 44,-22 - 8617: 44,-26 - 10314: 35,-32 - 10315: 37,-32 - 10325: 36,-31 - 10328: 37,-27 - 10340: 22,-50 - 10341: 22,-53 - 10342: 22,-53 - 10343: 23,-53 - 10347: 21,-53 - 10553: 15,-53 - 10554: 15,-53 - 10555: 16,-53 - 10556: 16,-53 - 10557: 17,-48 - 10772: 41,-56 - 10790: 50,-56 - 10809: 44,-50 - 10810: 44,-50 - 10811: 45,-50 - 11223: -50,-47 - 11224: -51,-47 - 11225: -52,-47 - 11226: -52,-47 - 11227: -53,-47 - 11228: -53,-47 - 11229: -54,-47 - 11230: -54,-47 - 11231: -55,-47 - 11250: -47,-42 - 11251: -47,-46 - 11273: -53,-49 - 11274: -52,-49 - 11275: -51,-49 - 11276: -51,-49 - 11277: -50,-49 - 11278: -49,-49 - 11279: -48,-49 - 11280: -47,-49 - 12402: -19,-45 - 12405: -20,-48 - 12406: -19,-48 - 12407: -18,-48 - 12515: -21,-67 - 12516: -20,-67 - 12517: -19,-67 - 12518: -18,-67 - 12536: -18,-76 - 12537: -17,-76 - 12538: -16,-76 - 12539: -15,-82 - 12540: -14,-82 - 12541: -16,-67 - 12542: -15,-67 - 12543: -14,-67 - 12544: -13,-67 - 12584: -22,-82 - 12706: -3,36 - 12709: -3,41 - 12753: -40,27 - 12754: -40,27 - 13430: -39,-68 - 13431: -40,-68 - 13446: -37,-64 - 13447: -41,-64 - 13452: -37,-68 - 13467: -33,-68 - 13468: -32,-68 - 13469: -31,-68 - 13636: -33,-79 - 13994: -66,58 - 15534: -7,-79 - 15538: -2,-79 - 15885: 96,0 - 15909: 94,4 - 15910: 95,4 - 16000: 82,4 - 16001: 84,4 - 16002: 83,4 - 16003: 85,4 - 16004: 87,4 - 16005: 86,4 - 16006: 88,4 - 16337: -71,-42 - 16338: -67,-44 - 16339: -66,-44 - 16340: -65,-44 - 16341: -64,-44 - 16342: -63,-44 - 16347: -68,-46 - 16637: -40,-11 - 18301: -65,16 - 18302: -64,16 - 18612: -59,-46 - 19031: -114,31 - 19032: -113,31 - 19654: -10,34 - 19655: -9,34 - 19656: -13,34 - 19657: -12,34 - 19668: -10,30 - 19669: -9,30 - 19851: 53,30 - 19852: 54,30 - 19853: 55,30 - 20055: -26,10 - 20056: -25,10 - 21640: -64,-27 - 21641: -63,-27 - 21642: -61,-27 - 21643: -60,-27 + 2441: -13,37 + 2442: -12,37 + 2443: -12,37 + 2444: -11,37 + 2445: -11,39 + 2446: -12,39 + 2447: -13,39 + 2448: -13,41 + 2449: -11,41 + 2450: -11,43 + 2451: -12,43 + 2452: -13,43 + 2453: -13,45 + 2454: -12,45 + 2455: -11,45 + 2564: -13,36 + 2565: -12,36 + 2566: -11,36 + 2574: -14,36 + 2636: -4,41 + 2637: -2,41 + 3982: -35,59 + 4136: -28,19 + 4137: -27,19 + 4138: -26,19 + 4139: -24,19 + 4140: -23,19 + 4151: -24,21 + 5673: 8,12 + 5680: 12,8 + 5681: 11,8 + 5682: 9,8 + 5683: 7,8 + 5704: 13,3 + 5710: 13,0 + 5749: 10,5 + 5750: 9,5 + 5751: 8,0 + 5752: 9,0 + 5764: 8,4 + 5863: -12,-6 + 5864: -11,-6 + 5872: -10,-2 + 5906: -11,6 + 5912: -10,-2 + 5913: -12,7 + 5914: -13,7 + 5915: -14,7 + 5916: -15,7 + 5917: -10,7 + 5933: -10,12 + 5958: -2,12 + 5959: -1,12 + 5960: 0,12 + 6249: -3,-12 + 6250: -2,-12 + 6251: -1,-12 + 6252: 0,-12 + 6253: 1,-12 + 6475: -22,-4 + 6476: -23,-4 + 6477: -25,-4 + 6478: -26,-4 + 6485: -30,-9 + 6486: -29,-9 + 6487: -28,-9 + 6533: -29,0 + 6534: -28,0 + 6535: -27,0 + 6542: -29,-3 + 6543: -24,-3 + 6548: -25,-13 + 6549: -24,-13 + 6550: -23,-13 + 6592: -24,-10 + 6593: -23,-9 + 6594: -25,-9 + 6624: -24,-4 + 6639: -24,-6 + 6777: -33,-15 + 6778: -32,-15 + 7269: 34,-2 + 7270: 35,-2 + 7277: 35,3 + 7299: 35,-1 + 7359: 30,8 + 7360: 31,8 + 7361: 32,8 + 7739: 40,18 + 7740: 41,18 + 7741: 42,18 + 7742: 40,17 + 7743: 41,17 + 7744: 42,17 + 7768: 35,18 + 7769: 35,18 + 7770: 35,19 + 8550: 52,-26 + 8557: 52,-22 + 8558: 48,-22 + 8564: 48,-26 + 8565: 48,-26 + 8575: 44,-22 + 8582: 44,-26 + 10279: 35,-32 + 10280: 37,-32 + 10290: 36,-31 + 10293: 37,-27 + 10305: 22,-50 + 10306: 22,-53 + 10307: 22,-53 + 10308: 23,-53 + 10312: 21,-53 + 10518: 15,-53 + 10519: 15,-53 + 10520: 16,-53 + 10521: 16,-53 + 10522: 17,-48 + 10737: 41,-56 + 10755: 50,-56 + 10774: 44,-50 + 10775: 44,-50 + 10776: 45,-50 + 11188: -50,-47 + 11189: -51,-47 + 11190: -52,-47 + 11191: -52,-47 + 11192: -53,-47 + 11193: -53,-47 + 11194: -54,-47 + 11195: -54,-47 + 11196: -55,-47 + 11215: -47,-42 + 11216: -47,-46 + 11238: -53,-49 + 11239: -52,-49 + 11240: -51,-49 + 11241: -51,-49 + 11242: -50,-49 + 11243: -49,-49 + 11244: -48,-49 + 11245: -47,-49 + 12367: -19,-45 + 12370: -20,-48 + 12371: -19,-48 + 12372: -18,-48 + 12480: -21,-67 + 12481: -20,-67 + 12482: -19,-67 + 12483: -18,-67 + 12501: -18,-76 + 12502: -17,-76 + 12503: -16,-76 + 12504: -15,-82 + 12505: -14,-82 + 12506: -16,-67 + 12507: -15,-67 + 12508: -14,-67 + 12509: -13,-67 + 12549: -22,-82 + 12671: -3,36 + 12674: -3,41 + 12718: -40,27 + 12719: -40,27 + 13395: -39,-68 + 13396: -40,-68 + 13411: -37,-64 + 13412: -41,-64 + 13417: -37,-68 + 13432: -33,-68 + 13433: -32,-68 + 13434: -31,-68 + 13601: -33,-79 + 13959: -66,58 + 15499: -7,-79 + 15503: -2,-79 + 15739: 96,0 + 15763: 94,4 + 15764: 95,4 + 15854: 82,4 + 15855: 84,4 + 15856: 83,4 + 15857: 85,4 + 15858: 87,4 + 15859: 86,4 + 15860: 88,4 + 16191: -71,-42 + 16192: -67,-44 + 16193: -66,-44 + 16194: -65,-44 + 16195: -64,-44 + 16196: -63,-44 + 16201: -68,-46 + 16491: -40,-11 + 18155: -65,16 + 18156: -64,16 + 18447: -59,-46 + 18866: -114,31 + 18867: -113,31 + 19489: -10,34 + 19490: -9,34 + 19491: -13,34 + 19492: -12,34 + 19503: -10,30 + 19504: -9,30 + 19686: 53,30 + 19687: 54,30 + 19688: 55,30 + 19890: -26,10 + 19891: -25,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1606: -40,27 - 1715: -50,-47 - 1716: -51,-47 - 1717: -52,-47 - 1718: -53,-47 - 1719: -54,-47 - 1720: -55,-47 + 1579: -40,27 + 1688: -50,-47 + 1689: -51,-47 + 1690: -52,-47 + 1691: -53,-47 + 1692: -54,-47 + 1693: -55,-47 - node: cleanable: True color: '#FFFFFFFF' @@ -25096,205 +25156,202 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineW decals: - 2018: -8,27 - 2019: -8,33 - 2034: -8,27 - 2035: -8,30 - 2036: -8,33 - 2488: -10,36 - 2489: -10,46 - 2491: -10,42 - 2492: -10,40 - 2493: -10,38 - 2494: -10,44 - 2530: -11,41 - 2594: -9,39 - 2595: -9,41 - 2596: -9,42 - 2597: -9,43 - 2609: -9,40 - 2610: -9,40 - 2661: -4,41 - 2662: -4,41 - 3042: -9,45 - 4016: -39,60 - 4154: -21,20 - 4157: -27,22 - 4161: -29,20 - 4194: -21,20 - 5711: 6,9 - 5712: 6,10 - 5735: 12,1 - 5773: 7,6 - 5781: 7,1 - 5782: 7,2 - 5783: 7,3 - 5795: 12,1 - 5803: 12,1 - 5872: -16,-5 - 5877: -14,-5 - 5889: -13,-4 - 5905: -14,0 - 5906: -14,1 - 5907: -14,2 - 5908: -14,3 - 5935: -10,-2 - 5961: -16,8 - 5962: -16,9 - 5963: -16,10 - 5989: -3,13 - 6281: -4,-12 - 6495: -31,-5 - 6496: -31,-6 - 6497: -31,-7 - 6498: -31,-7 - 6499: -31,-8 - 6500: -31,-9 - 6541: -35,-8 - 6542: -35,-7 - 6543: -35,-6 - 6544: -35,-5 - 6545: -35,-4 - 6546: -35,-3 - 6547: -35,-3 - 6548: -35,-2 - 6549: -35,-1 - 6550: -35,-1 - 6551: -35,0 - 6552: -35,0 - 6553: -35,1 - 6554: -35,2 - 6579: -26,-12 - 6635: -26,-8 - 6636: -26,-7 - 6637: -26,-7 - 6665: -23,-7 - 6810: -34,-14 - 6811: -34,-13 - 7298: 33,-1 - 7299: 33,0 - 7329: 34,0 - 7383: 29,8 - 7384: 29,9 - 7385: 29,10 - 7786: 39,19 - 7787: 39,20 - 7788: 39,21 - 7789: 34,20 - 7801: 38,19 - 7802: 38,21 - 7811: 44,20 - 7812: 37,20 - 8588: 51,-25 - 8589: 51,-24 - 8604: 47,-24 - 8605: 47,-25 - 8615: 43,-25 - 8616: 43,-24 - 10321: 34,-31 - 10322: 34,-30 - 10323: 34,-29 - 10324: 35,-30 - 10346: 20,-52 - 10561: 14,-52 - 10562: 14,-51 - 10563: 14,-50 - 10766: 72,-39 - 10767: 72,-38 - 10776: 39,-55 - 10777: 39,-55 - 10778: 39,-54 - 10779: 39,-54 - 10780: 39,-52 - 10781: 39,-52 - 10793: 49,-55 - 10801: 49,-53 - 10812: 46,-52 - 10813: 46,-55 - 10814: 46,-55 - 10856: 44,-54 - 10857: 44,-53 - 10858: 44,-52 - 11234: -56,-46 - 11235: -56,-45 - 11236: -56,-44 - 11254: -47,-43 - 11255: -47,-43 - 11256: -47,-44 - 11257: -47,-44 - 11258: -47,-45 - 11259: -47,-45 - 11271: -54,-48 - 11282: -61,-43 - 12400: -21,-47 - 12557: -12,-66 - 12558: -12,-67 - 12560: -19,-75 - 12565: -17,-73 - 12566: -17,-72 - 12567: -17,-71 - 12568: -17,-70 - 12569: -17,-69 - 12570: -17,-68 - 12576: -16,-80 - 12577: -16,-81 - 12587: -23,-81 - 12708: -1,40 - 12718: -4,38 - 12719: -4,39 - 12769: -37,27 - 12770: -38,27 - 12771: -38,28 - 13433: -41,-67 - 13434: -41,-66 - 13449: -41,-65 - 13453: -35,-66 - 13472: -34,-67 - 13643: -35,-78 - 13991: -68,59 - 13992: -68,60 - 13993: -68,61 - 15533: -8,-78 - 15535: -3,-78 - 15872: 91,4 - 15873: 91,3 - 15874: 91,2 - 15875: 91,1 - 15876: 91,0 - 15877: 91,-1 - 15917: 97,2 - 16009: 81,5 - 16010: 81,6 - 16076: 97,13 - 16334: -72,-41 - 16335: -70,-44 - 16336: -70,-45 - 16346: -61,-43 - 16638: -41,-10 - 18306: -66,17 - 18316: -58,6 - 18609: -60,-44 - 18610: -60,-45 - 19036: -115,32 - 19674: -11,31 - 19675: -11,32 - 19676: -11,33 - 19677: -11,29 - 19678: -11,28 - 19679: -11,27 - 19742: 55,23 - 19743: 55,24 - 19744: 55,25 - 19745: 55,26 - 19746: 52,23 - 19747: 52,24 - 19748: 52,25 - 19749: 52,26 - 20058: -27,11 - 20059: -27,12 - 21623: -65,-27 - 21624: -65,-26 - 21625: -64,-24 + 1991: -8,27 + 1992: -8,33 + 2007: -8,27 + 2008: -8,30 + 2009: -8,33 + 2461: -10,36 + 2462: -10,46 + 2464: -10,42 + 2465: -10,40 + 2466: -10,38 + 2467: -10,44 + 2503: -11,41 + 2567: -9,39 + 2568: -9,41 + 2569: -9,42 + 2570: -9,43 + 2582: -9,40 + 2583: -9,40 + 2634: -4,41 + 2635: -4,41 + 3015: -9,45 + 3989: -39,60 + 4127: -21,20 + 4130: -27,22 + 4134: -29,20 + 4167: -21,20 + 5684: 6,9 + 5685: 6,10 + 5708: 12,1 + 5746: 7,6 + 5754: 7,1 + 5755: 7,2 + 5756: 7,3 + 5768: 12,1 + 5776: 12,1 + 5845: -16,-5 + 5850: -14,-5 + 5862: -13,-4 + 5878: -14,0 + 5879: -14,1 + 5880: -14,2 + 5881: -14,3 + 5908: -10,-2 + 5934: -16,8 + 5935: -16,9 + 5936: -16,10 + 5962: -3,13 + 6254: -4,-12 + 6468: -31,-5 + 6469: -31,-6 + 6470: -31,-7 + 6471: -31,-7 + 6472: -31,-8 + 6473: -31,-9 + 6514: -35,-8 + 6515: -35,-7 + 6516: -35,-6 + 6517: -35,-5 + 6518: -35,-4 + 6519: -35,-3 + 6520: -35,-3 + 6521: -35,-2 + 6522: -35,-1 + 6523: -35,-1 + 6524: -35,0 + 6525: -35,0 + 6526: -35,1 + 6527: -35,2 + 6552: -26,-12 + 6608: -26,-8 + 6609: -26,-7 + 6610: -26,-7 + 6638: -23,-7 + 6783: -34,-14 + 6784: -34,-13 + 7271: 33,-1 + 7272: 33,0 + 7302: 34,0 + 7356: 29,8 + 7357: 29,9 + 7358: 29,10 + 7759: 39,19 + 7760: 39,20 + 7761: 39,21 + 7762: 34,20 + 7774: 38,19 + 7775: 38,21 + 7784: 44,20 + 7785: 37,20 + 8553: 51,-25 + 8554: 51,-24 + 8569: 47,-24 + 8570: 47,-25 + 8580: 43,-25 + 8581: 43,-24 + 10286: 34,-31 + 10287: 34,-30 + 10288: 34,-29 + 10289: 35,-30 + 10311: 20,-52 + 10526: 14,-52 + 10527: 14,-51 + 10528: 14,-50 + 10731: 72,-39 + 10732: 72,-38 + 10741: 39,-55 + 10742: 39,-55 + 10743: 39,-54 + 10744: 39,-54 + 10745: 39,-52 + 10746: 39,-52 + 10758: 49,-55 + 10766: 49,-53 + 10777: 46,-52 + 10778: 46,-55 + 10779: 46,-55 + 10821: 44,-54 + 10822: 44,-53 + 10823: 44,-52 + 11199: -56,-46 + 11200: -56,-45 + 11201: -56,-44 + 11219: -47,-43 + 11220: -47,-43 + 11221: -47,-44 + 11222: -47,-44 + 11223: -47,-45 + 11224: -47,-45 + 11236: -54,-48 + 11247: -61,-43 + 12365: -21,-47 + 12522: -12,-66 + 12523: -12,-67 + 12525: -19,-75 + 12530: -17,-73 + 12531: -17,-72 + 12532: -17,-71 + 12533: -17,-70 + 12534: -17,-69 + 12535: -17,-68 + 12541: -16,-80 + 12542: -16,-81 + 12552: -23,-81 + 12673: -1,40 + 12683: -4,38 + 12684: -4,39 + 12734: -37,27 + 12735: -38,27 + 12736: -38,28 + 13398: -41,-67 + 13399: -41,-66 + 13414: -41,-65 + 13418: -35,-66 + 13437: -34,-67 + 13608: -35,-78 + 13956: -68,59 + 13957: -68,60 + 13958: -68,61 + 15498: -8,-78 + 15500: -3,-78 + 15726: 91,4 + 15727: 91,3 + 15728: 91,2 + 15729: 91,1 + 15730: 91,0 + 15731: 91,-1 + 15771: 97,2 + 15863: 81,5 + 15864: 81,6 + 15930: 97,13 + 16188: -72,-41 + 16189: -70,-44 + 16190: -70,-45 + 16200: -61,-43 + 16492: -41,-10 + 18160: -66,17 + 18170: -58,6 + 18444: -60,-44 + 18445: -60,-45 + 18871: -115,32 + 19509: -11,31 + 19510: -11,32 + 19511: -11,33 + 19512: -11,29 + 19513: -11,28 + 19514: -11,27 + 19577: 55,23 + 19578: 55,24 + 19579: 55,25 + 19580: 55,26 + 19581: 52,23 + 19582: 52,24 + 19583: 52,25 + 19584: 52,26 + 19893: -27,11 + 19894: -27,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -25303,9 +25360,9 @@ entities: 888: -2,2 889: -2,1 890: -2,-3 - 1722: -56,-46 - 1723: -56,-45 - 1724: -56,-44 + 1695: -56,-46 + 1696: -56,-45 + 1697: -56,-44 - node: cleanable: True color: '#FFFFFFFF' @@ -25330,31 +25387,31 @@ entities: color: '#FFFFFF42' id: clown decals: - 13407: 55.22766,-37.04212 + 13372: 55.22766,-37.04212 - node: angle: 1.5707963267948966 rad color: '#FFFFFF42' id: corgi decals: - 13408: 53.258907,-37.95879 + 13373: 53.258907,-37.95879 - node: color: '#FFFFFF42' id: disk decals: - 13406: 54.696407,-34.97962 + 13371: 54.696407,-34.97962 - node: color: '#FFFFFF42' id: face decals: - 13405: 54.258907,-35.719204 + 13370: 54.258907,-35.719204 - node: cleanable: True angle: -0.7853981633974483 rad color: '#95171085' id: footprint decals: - 15422: -45.887077,-23.10373 - 15423: -45.527702,-22.869354 + 15387: -45.887077,-23.10373 + 15388: -45.527702,-22.869354 - node: color: '#D381C996' id: ghost @@ -25372,7 +25429,7 @@ entities: color: '#FFFFFFFF' id: grasssnow01 decals: - 14264: -71.98031,53.856472 + 14229: -71.98031,53.856472 - node: cleanable: True color: '#53960057' @@ -25417,7 +25474,7 @@ entities: color: '#FFFFFFFF' id: grasssnow05 decals: - 14260: -71.26156,54.153347 + 14225: -71.26156,54.153347 - node: cleanable: True color: '#53960057' @@ -25472,7 +25529,7 @@ entities: color: '#FFFFFFFF' id: grasssnow07 decals: - 14261: -70.73031,54.825222 + 14226: -70.73031,54.825222 - node: cleanable: True color: '#53960057' @@ -25498,7 +25555,7 @@ entities: color: '#FFFFFFFF' id: grasssnow08 decals: - 14262: -70.04281,53.918972 + 14227: -70.04281,53.918972 - node: cleanable: True color: '#53960057' @@ -25536,7 +25593,7 @@ entities: color: '#FFFFFFFF' id: grasssnow10 decals: - 14259: -71.855316,54.965847 + 14224: -71.855316,54.965847 - node: cleanable: True color: '#53960057' @@ -25583,57 +25640,83 @@ entities: color: '#FFFFFFFF' id: grasssnowa1 decals: - 14258: -70.57406,54.043972 + 14223: -70.57406,54.043972 - node: color: '#FFFFFFFF' id: grasssnowb1 decals: - 14257: -71.94906,54.028347 + 14222: -71.94906,54.028347 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 14263: -72.02719,55.09085 + 14228: -72.02719,55.09085 - node: angle: 1.5707963267948966 rad color: '#640000FF' id: pawprint decals: - 13402: 52.706825,-37.17754 + 13367: 52.706825,-37.17754 - node: angle: 3.141592653589793 rad color: '#640000FF' id: pawprint decals: - 13395: 52.727657,-35.10462 - 13396: 52.988075,-35.38587 - 13397: 52.696407,-35.60462 - 13398: 52.95682,-35.91712 - 13399: 52.71724,-36.125458 - 13400: 52.96724,-36.45879 - 13401: 52.67557,-36.656708 - 13403: 52.95682,-36.92754 - 13404: 52.946407,-34.79212 + 13360: 52.727657,-35.10462 + 13361: 52.988075,-35.38587 + 13362: 52.696407,-35.60462 + 13363: 52.95682,-35.91712 + 13364: 52.71724,-36.125458 + 13365: 52.96724,-36.45879 + 13366: 52.67557,-36.656708 + 13368: 52.95682,-36.92754 + 13369: 52.946407,-34.79212 - node: color: '#630000FF' id: rune2 decals: - 13660: -29.676588,-77.64111 + 13625: -29.676588,-77.64111 - node: color: '#630000FF' id: rune4 decals: - 13658: -36.02427,-73.86186 + 13623: -36.02427,-73.86186 - node: color: '#630000FF' id: rune5 decals: - 13659: -32.153282,-75.98998 + 13624: -32.153282,-75.98998 - node: color: '#630000FF' id: rune6 decals: - 13661: -35.987576,-80.062775 + 13626: -35.987576,-80.062775 + - node: + color: '#15FFFF22' + id: splatter + decals: + 21675: -62.94583,-29.13605 + 21676: -63.35208,-29.2298 + 21677: -63.38333,-29.292301 + 21678: -63.16458,-29.401674 + 21679: -62.992706,-29.44855 + 21680: -63.242702,-29.776674 + 21681: -63.055202,-29.7923 + 21682: -62.805202,-29.589174 + 21683: -62.53958,-29.38605 + 21684: -62.430206,-29.26105 + 21685: -62.492706,-29.151674 + 21686: -62.805206,-28.94855 + 21687: -62.97708,-28.901674 + - node: + color: '#15FFFF68' + id: splatter + decals: + 21670: -63.180206,-29.32355 + 21671: -63.180206,-29.32355 + 21672: -62.88333,-29.214174 + 21673: -62.711456,-29.182924 + 21674: -62.648956,-29.151674 - node: cleanable: True color: '#52B4E93B' @@ -25671,103 +25754,103 @@ entities: color: '#630000FF' id: splatter decals: - 13653: -29.986324,-80.05321 - 13654: -29.949633,-80.47516 - 13655: -28.824398,-73.46101 - 13656: -28.98951,-73.22252 - 13657: -28.695976,-73.13079 - 13662: -33.67599,-75.01765 - 13663: -33.565918,-74.7608 + 13618: -29.986324,-80.05321 + 13619: -29.949633,-80.47516 + 13620: -28.824398,-73.46101 + 13621: -28.98951,-73.22252 + 13622: -28.695976,-73.13079 + 13627: -33.67599,-75.01765 + 13628: -33.565918,-74.7608 - node: color: '#640000FF' id: splatter decals: - 13392: 55.854828,-38.332344 - 13393: 55.42427,-38.3879 - 13394: 52.66038,-34.5129 + 13357: 55.854828,-38.332344 + 13358: 55.42427,-38.3879 + 13359: 52.66038,-34.5129 - node: cleanable: True color: '#6CDBD006' id: splatter decals: - 14464: -65.29756,58.074463 - 14465: -65.51631,62.043217 - 14466: -65.34444,61.793213 - 14467: -67.65694,58.027588 - 14468: -67.54756,58.465088 - 14469: -67.23506,61.699463 - 14470: -66.76631,61.652588 - 14471: -67.12569,61.715088 + 14429: -65.29756,58.074463 + 14430: -65.51631,62.043217 + 14431: -65.34444,61.793213 + 14432: -67.65694,58.027588 + 14433: -67.54756,58.465088 + 14434: -67.23506,61.699463 + 14435: -66.76631,61.652588 + 14436: -67.12569,61.715088 - node: cleanable: True color: '#6CDBD012' id: splatter decals: - 14472: -67.01631,61.777588 + 14437: -67.01631,61.777588 - node: cleanable: True color: '#6CDBD015' id: splatter decals: - 14203: -71.167816,57.481472 - 14204: -70.58969,57.543972 - 14205: -70.667816,58.090847 - 14206: -70.667816,57.715847 - 14207: -70.96469,57.497097 - 14208: -71.136566,57.387722 - 14209: -71.21469,57.059597 - 14210: -71.167816,56.903347 - 14211: -71.136566,57.153347 - 14212: -70.824066,57.512722 - 14213: -70.58969,57.684597 - 14214: -70.43344,57.997097 - 14215: -70.43343,58.262722 - 14216: -70.43344,58.122097 - 14217: -70.511566,57.715847 - 14218: -70.667816,57.434597 - 14219: -71.02719,57.278347 - 14220: -72.12094,57.6221 - 14221: -72.12094,57.6221 - 14222: -71.90219,57.700222 - 14223: -71.667816,57.840847 - 14224: -71.52719,58.043972 - 14225: -71.511566,58.200222 - 14226: -71.511566,58.200222 - 14227: -71.605316,57.997097 - 14228: -71.761566,57.778347 - 14229: -71.90219,57.575222 - 14230: -72.05844,57.497097 - 14231: -72.167816,57.450226 - 14232: -72.230316,57.418976 - 14233: -72.02719,57.481472 - 14234: -71.74594,57.684597 - 14235: -71.542816,57.934597 - 14236: -71.48031,58.247097 - 14237: -71.48031,58.372097 - 14238: -71.49594,58.200222 - 14239: -71.77719,57.747097 - 14240: -72.15219,57.418976 - 14241: -72.386566,57.27835 - 14242: -71.136566,56.715847 - 14243: -71.08969,56.715847 - 14244: -70.949066,56.622097 - 14245: -70.80844,56.559597 - 14246: -70.62094,56.543972 - 14247: -70.37094,56.512722 - 14248: -70.15219,56.512722 - 14249: -69.917816,56.512722 - 14250: -69.792816,56.512726 + 14168: -71.167816,57.481472 + 14169: -70.58969,57.543972 + 14170: -70.667816,58.090847 + 14171: -70.667816,57.715847 + 14172: -70.96469,57.497097 + 14173: -71.136566,57.387722 + 14174: -71.21469,57.059597 + 14175: -71.167816,56.903347 + 14176: -71.136566,57.153347 + 14177: -70.824066,57.512722 + 14178: -70.58969,57.684597 + 14179: -70.43344,57.997097 + 14180: -70.43343,58.262722 + 14181: -70.43344,58.122097 + 14182: -70.511566,57.715847 + 14183: -70.667816,57.434597 + 14184: -71.02719,57.278347 + 14185: -72.12094,57.6221 + 14186: -72.12094,57.6221 + 14187: -71.90219,57.700222 + 14188: -71.667816,57.840847 + 14189: -71.52719,58.043972 + 14190: -71.511566,58.200222 + 14191: -71.511566,58.200222 + 14192: -71.605316,57.997097 + 14193: -71.761566,57.778347 + 14194: -71.90219,57.575222 + 14195: -72.05844,57.497097 + 14196: -72.167816,57.450226 + 14197: -72.230316,57.418976 + 14198: -72.02719,57.481472 + 14199: -71.74594,57.684597 + 14200: -71.542816,57.934597 + 14201: -71.48031,58.247097 + 14202: -71.48031,58.372097 + 14203: -71.49594,58.200222 + 14204: -71.77719,57.747097 + 14205: -72.15219,57.418976 + 14206: -72.386566,57.27835 + 14207: -71.136566,56.715847 + 14208: -71.08969,56.715847 + 14209: -70.949066,56.622097 + 14210: -70.80844,56.559597 + 14211: -70.62094,56.543972 + 14212: -70.37094,56.512722 + 14213: -70.15219,56.512722 + 14214: -69.917816,56.512722 + 14215: -69.792816,56.512726 - node: cleanable: True color: '#6CDBD034' id: splatter decals: - 14251: -70.917816,56.653347 - 14252: -70.71469,56.653347 - 14253: -70.49594,56.653347 - 14254: -70.136566,56.622097 - 14255: -69.90219,56.6221 - 14256: -69.87094,56.6221 + 14216: -70.917816,56.653347 + 14217: -70.71469,56.653347 + 14218: -70.49594,56.653347 + 14219: -70.136566,56.622097 + 14220: -69.90219,56.6221 + 14221: -69.87094,56.6221 - node: cleanable: True color: '#703C065D' @@ -25792,16 +25875,79 @@ entities: 1205: 4.891087,-50.39177 1206: 5.9236617,-50.067284 1207: 5.982666,-50.52451 + - node: + color: '#95000068' + id: splatter + decals: + 21611: -64.85194,-25.289093 + 21612: -65.03944,-25.289093 + 21613: -65.35194,-25.195345 + 21614: -65.11756,-24.773468 + 21615: -64.94569,-24.585968 + 21616: -64.71131,-24.695343 + 21617: -64.75819,-25.132843 + 21618: -64.82069,-25.226593 + 21619: -65.22694,-25.27347 + 21620: -65.43006,-25.164095 + 21621: -65.50819,-25.039095 + 21622: -65.25819,-25.101595 + 21623: -64.49256,-27.11722 + 21624: -64.49256,-27.257845 + 21625: -64.25819,-27.476595 + 21626: -63.99256,-27.507845 + 21627: -63.93006,-27.55472 + 21628: -64.27381,-27.61722 + 21629: -64.49256,-27.382845 + 21630: -58.945686,-27.39847 + 21631: -59.570686,-27.351593 + 21632: -59.64881,-27.351595 + 21633: -59.21131,-27.117218 + 21634: -59.476936,-27.164093 + 21635: -59.695686,-27.49222 + 21636: -59.86756,-27.601595 + 21637: -63.789436,-22.445345 + 21638: -64.18006,-22.507845 + 21639: -64.38319,-22.64847 + 21640: -64.64881,-23.007843 + 21641: -64.64881,-23.007843 + 21642: -64.36756,-22.58597 + 21643: -64.11756,-22.414095 + 21644: -59.055065,-25.320345 + 21645: -59.22694,-25.023468 + 21646: -58.867565,-24.757845 + 21647: -58.57069,-24.58597 + 21648: -58.69569,-24.507845 + 21649: -58.94569,-25.132845 + 21650: -58.773815,-25.101595 + 21651: -63.070805,-30.339186 + 21652: -63.336452,-30.19855 + 21653: -63.570827,-29.886051 + 21654: -63.38333,-29.401676 + 21655: -63.47708,-29.167301 + 21656: -63.53958,-28.917301 + 21657: -63.336456,-28.964174 + 21658: -63.539577,-29.495426 + 21659: -63.430202,-29.964176 + 21660: -63.242702,-30.07355 + 21661: -63.086452,-30.19855 + 21662: -61.617706,-29.229801 + 21663: -61.336456,-29.151674 + 21664: -61.242706,-28.9173 + 21665: -61.055206,-28.745424 + 21666: -60.836456,-28.7298 + 21667: -60.742706,-28.7298 + 21668: -60.836456,-28.870424 + 21669: -60.85208,-29.120424 - node: cleanable: True color: '#95171085' id: splatter decals: - 15417: -45.01208,-21.634981 - 15418: -44.66833,-21.947481 - 15419: -45.13708,-21.775606 - 15420: -44.82458,-21.947481 - 15421: -45.012077,-22.541231 + 15382: -45.01208,-21.634981 + 15383: -44.66833,-21.947481 + 15384: -45.13708,-21.775606 + 15385: -44.82458,-21.947481 + 15386: -45.012077,-22.541231 - node: cleanable: True color: '#951710FF' @@ -25814,47 +25960,57 @@ entities: color: '#D9DBD0CC' id: splatter decals: - 14192: -70.230316,55.856472 - 14193: -69.87094,55.84085 - 14194: -70.71469,55.918972 - 14195: -70.105316,55.684597 - 14196: -69.824066,55.7471 - 14197: -70.80844,55.918972 - 14198: -71.199066,55.903347 - 14199: -71.52719,55.950222 - 14200: -72.042816,56.0596 - 14201: -72.33969,56.09085 - 14202: -71.77719,55.965847 + 14157: -70.230316,55.856472 + 14158: -69.87094,55.84085 + 14159: -70.71469,55.918972 + 14160: -70.105316,55.684597 + 14161: -69.824066,55.7471 + 14162: -70.80844,55.918972 + 14163: -71.199066,55.903347 + 14164: -71.52719,55.950222 + 14165: -72.042816,56.0596 + 14166: -72.33969,56.09085 + 14167: -71.77719,55.965847 + - node: + color: '#FF002268' + id: splatter + decals: + 21605: -64.99256,-25.179718 + 21606: -65.21131,-24.976593 + 21607: -64.78944,-24.710968 + 21608: -64.61756,-24.89847 + 21609: -64.64881,-25.351593 + 21610: -64.91444,-25.367218 - node: cleanable: True color: '#FFFFFFCD' id: splatter decals: - 14172: -70.58968,54.450222 - 14173: -70.30843,54.309597 - 14174: -69.88656,54.2471 - 14175: -70.43343,54.512722 - 14176: -70.730316,54.950222 - 14177: -70.58969,55.262722 - 14178: -70.62094,55.184597 - 14179: -70.74594,54.856472 - 14180: -70.62093,54.653347 - 14181: -70.54281,54.465847 - 14182: -70.58969,55.325222 - 14183: -69.74593,54.325226 - 14184: -70.52719,54.887722 - 14185: -70.18343,54.700222 - 14186: -72.199066,55.481476 - 14187: -71.761566,55.450222 - 14188: -71.355316,55.434597 - 14189: -71.08969,55.403347 - 14190: -70.58969,55.497097 - 14191: -70.65219,55.559597 + 14137: -70.58968,54.450222 + 14138: -70.30843,54.309597 + 14139: -69.88656,54.2471 + 14140: -70.43343,54.512722 + 14141: -70.730316,54.950222 + 14142: -70.58969,55.262722 + 14143: -70.62094,55.184597 + 14144: -70.74594,54.856472 + 14145: -70.62093,54.653347 + 14146: -70.54281,54.465847 + 14147: -70.58969,55.325222 + 14148: -69.74593,54.325226 + 14149: -70.52719,54.887722 + 14150: -70.18343,54.700222 + 14151: -72.199066,55.481476 + 14152: -71.761566,55.450222 + 14153: -71.355316,55.434597 + 14154: -71.08969,55.403347 + 14155: -70.58969,55.497097 + 14156: -70.65219,55.559597 - node: color: '#A40000FF' id: star decals: - 13652: -33.071037,-77.06283 + 13617: -33.071037,-77.06283 - node: cleanable: True color: '#DDC3A1FF' @@ -29781,8 +29937,8 @@ entities: localAnchorB: 5,0.49999997 localAnchorA: 90,21.5 referenceAngle: -3.173097E-05 - damping: 467.6685 - stiffness: 4197.7827 + damping: 467.6623 + stiffness: 4197.727 - type: NavMap - uid: 4 components: @@ -41444,12 +41600,6 @@ entities: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 34753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-22.5 - parent: 2 - uid: 38488 components: - type: Transform @@ -43466,6 +43616,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 9969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.47504,-25.429726 + parent: 2 - proto: BaseComputer entities: - uid: 1392 @@ -46732,11 +46888,6 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 869 - components: - - type: Transform - pos: -63.5,-25.5 - parent: 2 - uid: 1887 components: - type: Transform @@ -70707,11 +70858,6 @@ entities: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 6747 - components: - - type: Transform - pos: -61.5,-24.5 - parent: 2 - uid: 6748 components: - type: Transform @@ -74592,76 +74738,11 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 12858 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 2 - uid: 13148 components: - type: Transform pos: -61.5,-27.5 parent: 2 - - uid: 13180 - components: - - type: Transform - pos: -60.5,-22.5 - parent: 2 - - uid: 13215 - components: - - type: Transform - pos: -61.5,-25.5 - parent: 2 - - uid: 15038 - components: - - type: Transform - pos: -62.5,-25.5 - parent: 2 - - uid: 17386 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 2 - - uid: 17851 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 2 - - uid: 18663 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 2 - - uid: 18664 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 25189 - components: - - type: Transform - pos: -64.5,-25.5 - parent: 2 - - uid: 25894 - components: - - type: Transform - pos: -60.5,-25.5 - parent: 2 - - uid: 33232 - components: - - type: Transform - pos: -59.5,-22.5 - parent: 2 - - uid: 33449 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 2 - - uid: 34267 - components: - - type: Transform - pos: -57.5,-22.5 - parent: 2 - uid: 38491 components: - type: Transform @@ -100911,11 +100992,6 @@ entities: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 33268 - components: - - type: Transform - pos: -57.5,-22.5 - parent: 2 - uid: 33762 components: - type: Transform @@ -103050,98 +103126,66 @@ entities: - uid: 870 components: - type: Transform - pos: -58.5,-26.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - pos: -63.5,-26.5 + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 parent: 2 - uid: 6734 components: - type: Transform - pos: -63.5,-25.5 + rot: 1.5707963267948966 rad + pos: -64.5,-25.5 parent: 2 - uid: 6736 components: - type: Transform + rot: 1.5707963267948966 rad pos: -61.5,-24.5 parent: 2 - uid: 6737 components: - type: Transform - pos: -61.5,-25.5 + rot: 1.5707963267948966 rad + pos: -59.5,-25.5 parent: 2 - uid: 6738 components: - type: Transform - pos: -62.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-25.5 parent: 2 - uid: 6740 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 6741 - components: - - type: Transform - pos: -62.5,-25.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 2 - uid: 6744 components: - type: Transform pos: -60.5,-24.5 parent: 2 - - uid: 6745 - components: - - type: Transform - pos: -60.5,-25.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - pos: -60.5,-26.5 - parent: 2 - - uid: 13153 - components: - - type: Transform - pos: -64.5,-24.5 - parent: 2 - - uid: 13155 - components: - - type: Transform - pos: -64.5,-25.5 - parent: 2 - - uid: 13203 + - uid: 6747 components: - type: Transform - pos: -64.5,-26.5 + rot: 1.5707963267948966 rad + pos: -61.5,-25.5 parent: 2 - - uid: 13941 + - uid: 9965 components: - type: Transform - pos: -58.5,-24.5 + rot: 1.5707963267948966 rad + pos: -60.5,-25.5 parent: 2 - - uid: 13973 + - uid: 9970 components: - type: Transform - pos: -58.5,-25.5 + rot: 1.5707963267948966 rad + pos: -63.5,-25.5 parent: 2 - uid: 15046 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 15047 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 2 - uid: 17440 components: - type: Transform @@ -103152,21 +103196,6 @@ entities: - type: Transform pos: -63.5,-24.5 parent: 2 - - uid: 27260 - components: - - type: Transform - pos: -59.5,-24.5 - parent: 2 - - uid: 30774 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 2 - - uid: 31367 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - uid: 31829 components: - type: Transform @@ -103179,12 +103208,6 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-29.5 - parent: 2 - uid: 2846 components: - type: Transform @@ -109395,12 +109418,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 - - uid: 33444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-29.5 - parent: 2 - uid: 34520 components: - type: Transform @@ -109563,11 +109580,6 @@ entities: - type: Transform pos: -6.5,35.5 parent: 38584 - - uid: 40933 - components: - - type: Transform - pos: -61.5,-28.5 - parent: 2 - proto: Chair entities: - uid: 13906 @@ -111141,6 +111153,18 @@ entities: parent: 2 - proto: ChairCarp entities: + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-24.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-24.5 + parent: 2 - uid: 14182 components: - type: Transform @@ -111152,21 +111176,11 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,-31.5 parent: 2 - - uid: 15037 - components: - - type: Transform - pos: -63.5,-24.5 - parent: 2 - uid: 25504 components: - type: Transform pos: -61.5,-23.5 parent: 2 - - uid: 31828 - components: - - type: Transform - pos: -59.5,-24.5 - parent: 2 - proto: ChairFolding entities: - uid: 14184 @@ -113081,8 +113095,22 @@ entities: - type: Transform pos: -76.360794,-0.4243784 parent: 2 +- proto: Cigarette + entities: + - uid: 9964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.27191,-23.5391 + parent: 2 - proto: CigaretteSpent entities: + - uid: 6745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.30316,-23.38285 + parent: 2 - uid: 14487 components: - type: Transform @@ -113093,12 +113121,6 @@ entities: - type: Transform pos: -4.220675,56.874905 parent: 2 - - uid: 14489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.749214,14.934522 - parent: 2 - uid: 14490 components: - type: Transform @@ -117125,6 +117147,25 @@ entities: parent: 14840 - type: Physics canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null - type: InsideEntityStorage - proto: ClothingBackpackDuffelSurgeryFilled entities: @@ -118373,6 +118414,9 @@ entities: - type: Transform pos: -61.5176,-23.48128 parent: 2 + - type: PointLight + color: '#FFD966FF' + radius: 3 - proto: ClothingHeadHatSecsoft entities: - uid: 15055 @@ -118911,7 +118955,7 @@ entities: - uid: 15114 components: - type: Transform - pos: -5.5252013,26.629133 + pos: -5.3621683,26.622637 parent: 2 - uid: 39120 components: @@ -119223,6 +119267,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 9974 + components: + - type: Transform + parent: 14840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13203 + components: + - type: Transform + pos: -5.6434183,26.544512 + parent: 2 - proto: ClothingNeckStethoscope entities: - uid: 15156 @@ -143234,6 +143292,11 @@ entities: parent: 38584 - proto: FlippoLighter entities: + - uid: 1258 + components: + - type: Transform + pos: -60.662537,-23.4141 + parent: 2 - uid: 14518 components: - type: Transform @@ -144055,6 +144118,13 @@ entities: - type: Transform pos: -4.516571,46.1589 parent: 2 +- proto: FoodBreadMimanaSlice + entities: + - uid: 13215 + components: + - type: Transform + pos: -6.252793,26.482012 + parent: 2 - proto: FoodBurgerClown entities: - uid: 18609 @@ -144084,15 +144154,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodBurgerSuper - entities: - - uid: 18613 - components: - - type: Transform - parent: 18612 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodCakeApple entities: - uid: 18616 @@ -144309,15 +144370,6 @@ entities: - type: Transform pos: -32.667824,43.245087 parent: 2 -- proto: FoodMealCubancarp - entities: - - uid: 18614 - components: - - type: Transform - parent: 18612 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodMealFries entities: - uid: 18647 @@ -144434,13 +144486,6 @@ entities: parent: 2 - proto: FoodMeatCooked entities: - - uid: 18615 - components: - - type: Transform - parent: 18612 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 18655 components: - type: Transform @@ -144539,6 +144584,16 @@ entities: parent: 2 - proto: FoodMimana entities: + - uid: 13941 + components: + - type: Transform + pos: -6.3777933,26.669514 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -6.205918,26.497637 + parent: 2 - uid: 14854 components: - type: Transform @@ -144912,7 +144967,7 @@ entities: - uid: 18729 components: - type: Transform - pos: -6.3533263,26.629135 + pos: -6.6746683,26.591387 parent: 2 - proto: FoodTartMimeSlice entities: @@ -177991,6 +178046,13 @@ entities: - type: Transform pos: -123.5,26.5 parent: 2 +- proto: GeneratorRTGDamaged + entities: + - uid: 9975 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 - proto: GeneratorWallmountAPU entities: - uid: 38526 @@ -188857,6 +188919,14 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 38584 +- proto: HydroponicsTrayEmpty + entities: + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-28.5 + parent: 2 - proto: Hypopen entities: - uid: 24805 @@ -192410,42 +192480,11 @@ entities: parent: 38584 - proto: LockerFreezerVaultFilled entities: - - uid: 18612 + - uid: 13180 components: - type: Transform pos: 24.5,12.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18613 - - 18614 - - 18615 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerHeadOfPersonnelFilled entities: - uid: 25226 @@ -192708,25 +192747,26 @@ entities: showEnts: False occludes: True ents: - - 14856 - - 14849 - - 14844 - - 14841 - - 14850 - - 14857 - - 14858 - 14859 - - 14851 - - 14842 - - 14843 - - 14848 - - 14845 - - 14853 - - 14854 - - 14852 - - 14847 - - 14855 + - 14858 + - 14857 + - 14850 + - 14841 + - 14844 + - 14849 + - 14856 + - 9974 - 14846 + - 14855 + - 14847 + - 14852 + - 14854 + - 14853 + - 14845 + - 14848 + - 14843 + - 14842 + - 14851 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -199531,6 +199571,16 @@ entities: parent: 2 - proto: PottedPlantAlt4 entities: + - uid: 869 + components: + - type: Transform + pos: -63.83441,-23.085978 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -59.162537,-22.992228 + parent: 2 - uid: 26062 components: - type: Transform @@ -199551,16 +199601,6 @@ entities: ent: 25679 - proto: PottedPlantRandom entities: - - uid: 18458 - components: - - type: Transform - pos: -63.5,-23.5 - parent: 2 - - uid: 25913 - components: - - type: Transform - pos: -59.5,-23.5 - parent: 2 - uid: 26063 components: - type: Transform @@ -206463,18 +206503,6 @@ entities: ent: 25013 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25014 - components: - - type: Transform - pos: -62.5,-30.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 25016 components: - type: Transform @@ -207968,13 +207996,6 @@ entities: rot: 3.141592653589793 rad pos: -68.5,-37.5 parent: 2 - - uid: 34833 - components: - - type: Transform - pos: -62.5,-29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredlightExterior entities: - uid: 26985 @@ -208159,11 +208180,6 @@ entities: parent: 2 - proto: PoweredlightRed entities: - - uid: 1356 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 2 - uid: 27009 components: - type: Transform @@ -211425,6 +211441,18 @@ entities: parent: 38584 - proto: RailingCornerSmall entities: + - uid: 14189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-25.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 2 - uid: 27509 components: - type: Transform @@ -213251,26 +213279,32 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-41.5 parent: 2 - - uid: 41049 +- proto: RandomSpawner100 + entities: + - uid: 9973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-26.5 + rot: 1.5707963267948966 rad + pos: -59.5,-25.5 parent: 2 - - uid: 41050 + - uid: 9977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-22.5 + rot: 1.5707963267948966 rad + pos: -62.5,-26.5 parent: 2 - - uid: 41051 + - uid: 9978 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-25.5 + pos: -61.5,-22.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-23.5 parent: 2 -- proto: RandomSpawner100 - entities: - uid: 27837 components: - type: Transform @@ -219775,6 +219809,23 @@ entities: parent: 38584 - proto: ShardGlass entities: + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.844826,-22.4828 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: -62.313576,-25.5453 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.11045,-26.029676 + parent: 2 - uid: 29104 components: - type: Transform @@ -233277,6 +233328,12 @@ entities: parent: 2 - proto: TableFrame entities: + - uid: 1356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-25.5 + parent: 2 - uid: 31018 components: - type: Transform @@ -236167,6 +236224,12 @@ entities: parent: 2 - proto: TableWood entities: + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-25.5 + parent: 2 - uid: 14187 components: - type: Transform @@ -238043,6 +238106,12 @@ entities: parent: 38584 - proto: ToiletEmpty entities: + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-28.5 + parent: 2 - uid: 31851 components: - type: Transform @@ -238700,9 +238769,14 @@ entities: entities: - uid: 40932 components: + - type: MetaData + name: Расмус - type: Transform - pos: -59.486847,-24.4969 + pos: -58.49105,-24.47471 parent: 2 + - type: PointLight + color: '#CC0000FF' + radius: 2 - proto: ToyRubberDuck entities: - uid: 31948 @@ -240747,12 +240821,6 @@ entities: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 1258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-22.5 - parent: 2 - uid: 1355 components: - type: Transform @@ -240769,21 +240837,57 @@ entities: - type: Transform pos: -40.5,-72.5 parent: 2 + - uid: 6733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-22.5 + parent: 2 - uid: 6739 components: - type: Transform pos: -63.5,-27.5 parent: 2 + - uid: 6741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-26.5 + parent: 2 - uid: 6743 components: - type: Transform pos: -60.5,-27.5 parent: 2 + - uid: 9966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-26.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-29.5 + parent: 2 - uid: 12050 components: - type: Transform pos: -63.5,-21.5 parent: 2 + - uid: 13153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-22.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-22.5 + parent: 2 - uid: 14188 components: - type: Transform @@ -240830,12 +240934,6 @@ entities: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 23178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-23.5 - parent: 2 - uid: 23209 components: - type: Transform @@ -254739,12 +254837,6 @@ entities: - type: Transform pos: -25.5,27.5 parent: 2 - - uid: 34829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-23.5 - parent: 2 - uid: 34830 components: - type: Transform @@ -276796,14 +276888,6 @@ entities: rot: 3.141592653589793 rad pos: 12.13895,19.323975 parent: 38584 -- proto: WeaponRevolverDeckard - entities: - - uid: 37880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.580856,16.480206 - parent: 2 - proto: WeaponRevolverMateba entities: - uid: 37881 @@ -277189,8 +277273,11 @@ entities: - type: MetaData name: Дон-Жуан - type: Transform - pos: -63.502472,-24.4344 + pos: -64.46133,-24.459093 parent: 2 + - type: PointLight + color: '#58B7FFFF' + radius: 2 - proto: Windoor entities: - uid: 37940 From ced419725b3b05f5dcd81e85c43501ae2b7605f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B0=D1=81=D1=82=D1=8F?= <164001172+meowstushka@users.noreply.github.com> Date: Thu, 18 Jul 2024 20:42:45 +0300 Subject: [PATCH 89/97] [Maps] Delta Small Tweak (#2422) --- Resources/Maps/corvax_delta.yml | 131887 +++++++++++++++-------------- 1 file changed, 65987 insertions(+), 65900 deletions(-) diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index 8ec3d6b2aa2..a5aafd6d5a5 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -740,13 +740,8 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15842: 88,3 - 21360: -16.954817,20.099903 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 21361: 14.8853855,19.990562 + 15840: 88,3 + 21358: -16.954817,20.099903 - node: color: '#FFFFFFFF' id: Bot @@ -818,23 +813,23 @@ entities: 1221: 63,7 1222: 63,8 1223: 63,9 - 6994: 4,29 - 6995: 5,29 - 6996: 6,29 - 6997: 7,29 - 6998: 8,29 - 6999: 8,28 - 7000: 7,28 - 7001: 7,28 - 7002: 6,28 - 7003: 5,28 - 7004: 4,28 - 18574: 12,-13 - 18575: 13,-13 - 18576: 14,-13 - 18577: 14,-14 - 18578: 13,-14 - 18579: 12,-14 + 6992: 4,29 + 6993: 5,29 + 6994: 6,29 + 6995: 7,29 + 6996: 8,29 + 6997: 8,28 + 6998: 7,28 + 6999: 7,28 + 7000: 6,28 + 7001: 5,28 + 7002: 4,28 + 18572: 12,-13 + 18573: 13,-13 + 18574: 14,-13 + 18575: 14,-14 + 18576: 13,-14 + 18577: 12,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -897,12 +892,12 @@ entities: 1145: -91,-3 1146: -91,-13 1147: -95,-13 - 20027: -16,4 - 20028: -16,3 - 20029: -16,2 - 20030: -16,1 - 20031: -16,0 - 20032: -16,-1 + 20025: -16,4 + 20026: -16,3 + 20027: -16,2 + 20028: -16,1 + 20029: -16,0 + 20030: -16,-1 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -952,8 +947,8 @@ entities: color: '#A9DA8BFF' id: Box decals: - 3013: -31,45 - 3014: -31,38 + 3011: -31,45 + 3012: -31,38 - node: color: '#FFFFFFFF' id: Box @@ -987,4976 +982,4976 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 20046: -16,3 - 20047: -16,2 - 20048: -16,1 - 20049: -16,0 - 20050: -16,-1 - 20051: -16,4 + 20044: -16,3 + 20045: -16,2 + 20046: -16,1 + 20047: -16,0 + 20048: -16,-1 + 20049: -16,4 - node: color: '#DA8B8BFF' id: BrickTileDarkBox decals: - 19347: 55,9 + 19345: 55,9 - node: color: '#EFB341FF' id: BrickTileDarkBox decals: - 17855: -61,57 - 17856: -63,53 - 17857: -61,50 - 17858: -61,48 - 17859: -59,55 - 17860: -54,43 - 17861: -56,43 - 17862: -51,41 - 17863: -55,39 - 17864: -48,43 - 17865: -46,41 + 17853: -61,57 + 17854: -63,53 + 17855: -61,50 + 17856: -61,48 + 17857: -59,55 + 17858: -54,43 + 17859: -56,43 + 17860: -51,41 + 17861: -55,39 + 17862: -48,43 + 17863: -46,41 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1973: -8,30 - 1974: -8,33 - 1975: -4,30 - 1976: -8,27 - 1993: -9,25 - 2251: -14,48 - 2252: -14,50 - 2274: -25,41 - 2327: -28,30 - 2390: -31,29 - 2411: -30,39 - 2515: -9,45 - 2605: -5,37 - 2606: -1,42 - 2608: -1,40 - 2638: -1,55 - 2639: -2,51 - 2695: 3,49 - 2697: -12,51 - 2713: -6,51 - 2768: -1,48 - 2790: -4,47 - 2836: -30,44 - 2837: -32,44 - 2987: -36,49 - 2988: -38,44 - 3435: -1,61 - 3438: 2,59 - 3564: -14,77 - 3565: -16,77 - 3566: -10,77 - 3567: -8,77 - 3643: 4,77 - 3644: 2,77 - 3645: 4,84 - 3646: 2,84 - 3647: 6,86 - 3683: 6,66 - 3689: 4,64 - 3692: 4,60 - 3695: 5,91 - 3708: 10,83 - 3709: 13,78 - 3710: 12,73 - 3715: 10,89 - 3716: 12,87 - 3720: 5,93 - 3721: 10,91 - 3725: -22,55 - 3727: -25,66 - 3729: -25,63 - 3730: -25,61 - 3731: -25,59 - 3732: -28,59 - 3733: -30,66 - 3775: 4,57 - 3822: 9,68 - 3826: 13,67 - 3893: 24,66 - 3894: 16,66 - 3923: 7,58 - 3967: -31,59 + 1971: -8,30 + 1972: -8,33 + 1973: -4,30 + 1974: -8,27 + 1991: -9,25 + 2249: -14,48 + 2250: -14,50 + 2272: -25,41 + 2325: -28,30 + 2388: -31,29 + 2409: -30,39 + 2513: -9,45 + 2603: -5,37 + 2604: -1,42 + 2606: -1,40 + 2636: -1,55 + 2637: -2,51 + 2693: 3,49 + 2695: -12,51 + 2711: -6,51 + 2766: -1,48 + 2788: -4,47 + 2834: -30,44 + 2835: -32,44 + 2985: -36,49 + 2986: -38,44 + 3433: -1,61 + 3436: 2,59 + 3562: -14,77 + 3563: -16,77 + 3564: -10,77 + 3565: -8,77 + 3641: 4,77 + 3642: 2,77 + 3643: 4,84 + 3644: 2,84 + 3645: 6,86 + 3681: 6,66 + 3687: 4,64 + 3690: 4,60 + 3693: 5,91 + 3706: 10,83 + 3707: 13,78 + 3708: 12,73 + 3713: 10,89 + 3714: 12,87 + 3718: 5,93 + 3719: 10,91 + 3723: -22,55 + 3725: -25,66 + 3727: -25,63 + 3728: -25,61 + 3729: -25,59 + 3730: -28,59 + 3731: -30,66 + 3773: 4,57 + 3820: 9,68 + 3824: 13,67 + 3891: 24,66 + 3892: 16,66 + 3921: 7,58 + 3965: -31,59 + 3966: -38,58 + 3967: -38,58 3968: -38,58 - 3969: -38,58 - 3970: -38,58 - 3971: -36,58 - 4124: -21,20 - 4162: -25,18 - 4163: -21,20 - 4164: -21,17 - 4199: -10,12 - 4387: 1,29 - 4390: 4,32 - 4391: 9,32 - 4392: 11,28 - 4393: 11,30 - 4394: 13,33 - 4484: 15,33 - 4521: 10,38 - 4522: 5,38 - 4523: 10,41 - 4600: 12,45 - 4601: 12,43 - 4666: 19,24 - 4667: 21,25 - 4676: 28,31 - 4677: 23,36 - 4805: 28,39 - 4876: 33,51 - 4877: 33,49 - 4878: 39,51 - 4916: 10,55 - 4917: 17,55 - 5077: 39,52 - 5078: 39,48 - 5079: 33,48 - 5080: 33,52 - 5081: 39,49 - 5106: 31,29 - 5107: 35,29 - 5108: 37,30 - 5109: 35,33 - 5541: -17,4 - 5542: -17,-1 - 5598: -35,26 - 5647: -1,-7 - 5648: 8,-7 - 5656: 15,-4 - 5659: -11,6 - 5660: -15,4 - 5661: -14,-5 - 5670: 8,12 - 5701: 13,3 - 5716: 8,4 - 5729: 10,-1 - 5788: 12,-3 - 5817: -10,-7 - 6257: -4,-13 - 6258: 2,-13 - 6259: -4,-18 - 6260: -3,-16 - 6365: 8,-18 - 6366: 11,-16 - 6455: -21,-20 - 6557: -24,-10 - 6698: -31,1 - 6710: -24,-1 - 6711: -23,3 - 6719: -28,-17 - 6785: -17,-1 - 6787: -31,7 - 6788: -36,7 - 6793: -26,16 - 6820: -42,2 - 6912: -36,17 - 6965: -24,-19 - 6966: -24,-19 - 7068: 22,7 - 7087: 22,3 - 7088: 19,-3 - 7089: 22,-9 - 7136: 24,-8 - 7187: 32,1 - 7188: 35,3 - 7189: 36,-3 - 7190: 24,-2 - 7193: 30,3 - 7303: 29,7 - 7364: 33,6 - 7365: 33,4 - 7366: 36,7 - 7367: 36,10 - 7368: 38,6 - 7369: 38,4 - 7390: 45,8 - 7391: 40,10 - 7392: 45,12 - 7393: 40,2 - 7394: 45,0 - 7395: 36,10 - 7490: 49,4 - 7493: 49,8 - 7496: 53,10 - 7508: 47,14 - 7509: 51,14 - 7521: 49,16 - 7534: 37,20 - 7535: 44,20 - 7536: 52,20 - 7537: 57,20 - 7538: 55,17 - 7539: 60,25 - 7570: 49,12 - 7576: 75,24 - 7577: 75,26 - 7578: 73,20 - 7579: 71,18 - 7580: 71,13 - 7581: 71,6 - 7582: 73,4 - 7583: 75,9 - 7584: 79,9 - 7585: 83,11 - 7586: 94,17 - 7587: 94,21 - 7588: 90,21 - 7589: 92,27 - 7590: 92,24 - 7591: 83,11 - 7592: 73,4 - 7593: 72,-4 - 7594: 72,-4 - 7595: 69,-2 - 7596: 69,-2 - 7597: 64,-4 - 7598: 64,-4 - 7599: 61,-2 - 7600: 65,-2 - 7601: 52,-2 - 7602: 47,-2 - 7603: 47,-2 - 7638: 58,2 - 7639: 62,2 - 7640: 66,2 - 7641: 62,10 - 7642: 61,12 - 7643: 71,6 - 7662: 71,18 - 7663: 71,13 - 7668: 73,20 - 7788: 68,-1 - 7789: 68,1 - 7790: 71,-1 - 7791: 71,1 - 7973: 64,-19 - 7974: 66,-19 - 7975: 66,-22 - 7976: 64,-22 - 7977: 76,-22 - 7978: 76,-19 - 7979: 78,-19 - 7980: 78,-22 - 7981: 82,-22 - 7982: 82,-19 - 8031: 54,-21 - 8032: 54,-19 - 8033: 54,-11 - 8098: 23,-15 - 8099: 25,-13 - 8100: 32,-16 - 8101: 27,-17 - 8102: 29,-17 - 8103: 31,-17 - 8158: 25,-19 - 8165: 32,-12 - 8166: 32,-10 - 8167: 32,-10 - 8226: 33,-6 - 8230: 42,-8 - 8231: 39,-18 - 8232: 41,-18 - 8233: 41,-18 - 8234: 42,-19 - 8235: 42,-21 - 8238: 44,-22 - 8239: 48,-22 - 8240: 52,-22 - 8291: 40,-17 - 8369: 46,-13 - 8410: 52,-18 - 8584: 54,-29 - 9559: 2,-35 - 9560: 5,-29 - 9561: 11,-29 - 9562: 13,-29 - 9563: 12,-33 - 9564: 15,-31 - 9629: 9,-36 - 9630: 9,-34 - 9631: 5,-37 - 9636: 1,-39 - 9715: 15,-35 - 9746: 21,-33 - 9747: 29,-33 - 9748: 36,-33 - 9749: 33,-23 - 9750: 29,-28 - 9751: 23,-29 - 9752: 29,-40 - 9753: 25,-44 - 9754: 29,-44 - 9755: 29,-50 - 9756: 19,-44 - 9757: 22,-50 - 9758: 17,-48 - 9761: 27,-54 - 9925: 15,-44 - 9967: 39,-35 - 9972: 37,-43 - 10101: 35,-26 - 10102: 37,-27 - 10103: 37,-25 - 10181: 31,-54 - 10320: 4,-42 - 10321: 1,-44 - 10322: 9,-42 - 10323: 4,-48 - 10324: 1,-51 - 10325: 10,-54 - 10326: 8,-56 - 10327: 2,-55 - 10328: 12,-56 - 10329: 10,-57 - 10330: 7,-57 - 10331: 13,-47 - 10332: 17,-54 - 10512: 25,-56 - 10513: 29,-56 - 10538: 2,-60 - 10539: 2,-60 - 10540: 5,-63 - 10541: 5,-63 - 10553: 5,-73 - 10554: 5,-73 - 10555: 7,-75 - 10556: 5,-79 - 10557: 4,-87 - 10558: 4,-83 - 10559: 7,-77 - 10560: 7,-65 - 10669: 76,-45 - 10670: 73,-41 - 10671: 68,-41 - 10672: 73,-48 - 10673: 71,-50 - 10848: 33,-61 - 10900: 42,-62 - 10901: 37,-62 - 10916: 33,-68 - 10917: 37,-70 - 10918: 39,-72 - 10919: 41,-72 - 10920: 41,-72 - 11210: -61,-43 - 11211: -59,-33 - 11212: -59,-40 - 11213: -47,-46 - 11214: -47,-42 - 11326: -11,-83 - 11327: -11,-79 - 11328: -6,-83 - 11329: -4,-83 - 11330: -4,-83 - 11331: 2,-87 - 11332: -4,-87 - 11333: -6,-87 - 11337: 2,-83 - 11380: -24,-63 - 11381: -23,-71 - 11382: -23,-77 - 11383: -23,-79 - 11384: -21,-77 - 11385: -18,-78 - 11386: -12,-78 - 11387: -14,-77 - 11388: -19,-81 - 11389: -10,-63 - 11394: -34,-51 - 11395: -36,-53 - 11396: -34,-55 - 11397: -32,-53 - 11398: -3,-48 - 11408: -4,-35 - 11412: -6,-29 - 11416: -15,-29 - 11417: -13,-29 - 11653: -11,-35 - 11654: -11,-34 - 11655: -13,-33 - 11656: -15,-33 - 11706: -7,-37 - 11707: -6,-45 - 11708: -12,-50 - 11709: -20,-52 - 11710: -18,-51 - 11711: -6,-54 - 11712: -4,-56 - 11713: -16,-55 - 11718: -19,-45 - 11719: -19,-45 - 11720: -16,-40 - 11721: -34,-25 - 11722: -38,-25 - 11723: -42,-25 - 11724: -49,-28 - 11725: -42,-31 - 11726: -38,-31 - 11727: -34,-31 - 11739: -46,-24 - 11740: -48,-23 - 11741: -48,-23 - 11742: -35,-37 - 11743: -35,-37 - 11744: -42,-37 - 11745: -42,-37 - 11746: -45,-35 - 11747: -29,-37 - 11748: -29,-37 - 11749: -31,-39 - 11750: -29,-43 - 11751: -29,-43 - 11752: -24,-37 - 11753: -12,-41 - 11829: -12,-59 - 11830: -24,-43 - 11831: -24,-49 - 11890: -36,-45 - 11891: -36,-40 - 12084: -25,-24 - 12085: -23,-23 - 12086: -21,-26 - 12087: -17,-24 - 12088: -21,-31 - 12379: -17,-64 - 12380: -4,-60 - 12715: -37,27 - 12757: -45,9 - 12759: -45,18 - 12873: -45,9 - 12875: -44,23 - 13309: 52,-37 - 13377: -37,-59 - 13378: -37,-64 - 13379: -35,-66 - 13380: -41,-64 - 13391: -30,-61 - 13586: -33,-72 - 14409: -46,12 - 14410: -46,14 - 15375: -49,9 - 15376: -48,7 - 15392: -42,2 - 15589: 75,1 - 15595: 92,8 - 15596: 94,10 - 15597: 78,3 - 15598: 81,-1 - 15599: 85,-1 - 15600: 89,-1 - 15606: 96,-3 - 15912: 94,13 - 16179: -61,-48 - 16703: -58,-11 - 16704: -56,-9 - 16705: -56,-7 - 16728: -58,-11 - 16734: -56,-19 - 16735: -54,-19 - 16738: -60,-17 - 16739: -62,-17 - 16785: -58,-5 - 16790: -48,1 - 16791: -49,3 - 16855: -56,-7 - 16856: -56,-9 - 16857: -62,-7 - 16947: -62,1 - 16948: -65,1 - 17008: -62,-7 - 17091: -51,-15 - 17122: -61,-18 - 17151: -60,14 - 17152: -67,15 - 17153: -72,13 - 17154: -72,9 - 17155: -79,14 - 17156: -77,8 - 17157: -83,14 - 17158: -77,2 - 17159: -75,0 - 17160: -73,3 - 17161: -65,1 - 17162: -71,-5 - 17163: -69,-5 - 17172: -60,14 - 17173: -58,16 - 17174: -67,15 - 17175: -72,13 - 17176: -77,12 - 17177: -79,14 - 17178: -77,8 - 17179: -72,9 - 17180: -73,3 - 17181: -77,2 - 17182: -75,0 - 17183: -80,0 - 17184: -80,-5 - 17185: -82,-3 - 17186: -62,-7 - 17187: -60,6 - 17188: -60,10 - 17189: -46,14 - 17190: -46,12 - 17264: -77,8 - 17265: -72,9 - 17266: -73,3 - 17267: -77,2 - 17268: -75,0 - 17269: -80,0 - 17462: 9,90 - 17463: 11,90 - 17854: -69,55 - 17866: -55,39 - 17867: -54,43 - 17868: -56,43 - 17869: -51,41 - 17870: -48,43 - 17871: -46,41 - 17872: -61,48 - 17873: -61,50 - 17874: -63,53 - 17875: -61,57 - 17876: -67,57 - 17877: -59,55 - 17878: -60,39 - 17879: -62,39 - 17880: -55,31 - 17881: -51,21 - 18084: -44,52 - 18085: -44,50 - 18118: -52,20 - 18508: -14,-11 - 18509: -10,-11 - 18545: 8,-11 - 18996: 57,3 - 18997: 59,3 - 18998: 61,3 - 18999: 63,3 - 19000: 65,3 - 19001: 67,3 - 19005: 57,6 - 19006: 59,6 - 19007: 61,6 - 19008: 63,6 - 19009: 65,6 - 19010: 67,6 - 19011: 68,7 - 19012: 70,7 - 19013: 70,8 - 19014: 68,8 - 19835: -29,-25 - 19937: -48,-3 - 20022: -16,5 - 20023: -16,-2 - 20058: 37,39 - 20081: 71,26 - 20114: 62,27 - 20149: 40,-17 - 20150: 40,-17 - 21217: 75,-4 - 21247: 45,-8 - 21257: 51,-6 - 21276: 56,-2 - 21393: 21,23 + 3969: -36,58 + 4122: -21,20 + 4160: -25,18 + 4161: -21,20 + 4162: -21,17 + 4197: -10,12 + 4385: 1,29 + 4388: 4,32 + 4389: 9,32 + 4390: 11,28 + 4391: 11,30 + 4392: 13,33 + 4482: 15,33 + 4519: 10,38 + 4520: 5,38 + 4521: 10,41 + 4598: 12,45 + 4599: 12,43 + 4664: 19,24 + 4665: 21,25 + 4674: 28,31 + 4675: 23,36 + 4803: 28,39 + 4874: 33,51 + 4875: 33,49 + 4876: 39,51 + 4914: 10,55 + 4915: 17,55 + 5075: 39,52 + 5076: 39,48 + 5077: 33,48 + 5078: 33,52 + 5079: 39,49 + 5104: 31,29 + 5105: 35,29 + 5106: 37,30 + 5107: 35,33 + 5539: -17,4 + 5540: -17,-1 + 5596: -35,26 + 5645: -1,-7 + 5646: 8,-7 + 5654: 15,-4 + 5657: -11,6 + 5658: -15,4 + 5659: -14,-5 + 5668: 8,12 + 5699: 13,3 + 5714: 8,4 + 5727: 10,-1 + 5786: 12,-3 + 5815: -10,-7 + 6255: -4,-13 + 6256: 2,-13 + 6257: -4,-18 + 6258: -3,-16 + 6363: 8,-18 + 6364: 11,-16 + 6453: -21,-20 + 6555: -24,-10 + 6696: -31,1 + 6708: -24,-1 + 6709: -23,3 + 6717: -28,-17 + 6783: -17,-1 + 6785: -31,7 + 6786: -36,7 + 6791: -26,16 + 6818: -42,2 + 6910: -36,17 + 6963: -24,-19 + 6964: -24,-19 + 7066: 22,7 + 7085: 22,3 + 7086: 19,-3 + 7087: 22,-9 + 7134: 24,-8 + 7185: 32,1 + 7186: 35,3 + 7187: 36,-3 + 7188: 24,-2 + 7191: 30,3 + 7301: 29,7 + 7362: 33,6 + 7363: 33,4 + 7364: 36,7 + 7365: 36,10 + 7366: 38,6 + 7367: 38,4 + 7388: 45,8 + 7389: 40,10 + 7390: 45,12 + 7391: 40,2 + 7392: 45,0 + 7393: 36,10 + 7488: 49,4 + 7491: 49,8 + 7494: 53,10 + 7506: 47,14 + 7507: 51,14 + 7519: 49,16 + 7532: 37,20 + 7533: 44,20 + 7534: 52,20 + 7535: 57,20 + 7536: 55,17 + 7537: 60,25 + 7568: 49,12 + 7574: 75,24 + 7575: 75,26 + 7576: 73,20 + 7577: 71,18 + 7578: 71,13 + 7579: 71,6 + 7580: 73,4 + 7581: 75,9 + 7582: 79,9 + 7583: 83,11 + 7584: 94,17 + 7585: 94,21 + 7586: 90,21 + 7587: 92,27 + 7588: 92,24 + 7589: 83,11 + 7590: 73,4 + 7591: 72,-4 + 7592: 72,-4 + 7593: 69,-2 + 7594: 69,-2 + 7595: 64,-4 + 7596: 64,-4 + 7597: 61,-2 + 7598: 65,-2 + 7599: 52,-2 + 7600: 47,-2 + 7601: 47,-2 + 7636: 58,2 + 7637: 62,2 + 7638: 66,2 + 7639: 62,10 + 7640: 61,12 + 7641: 71,6 + 7660: 71,18 + 7661: 71,13 + 7666: 73,20 + 7786: 68,-1 + 7787: 68,1 + 7788: 71,-1 + 7789: 71,1 + 7971: 64,-19 + 7972: 66,-19 + 7973: 66,-22 + 7974: 64,-22 + 7975: 76,-22 + 7976: 76,-19 + 7977: 78,-19 + 7978: 78,-22 + 7979: 82,-22 + 7980: 82,-19 + 8029: 54,-21 + 8030: 54,-19 + 8031: 54,-11 + 8096: 23,-15 + 8097: 25,-13 + 8098: 32,-16 + 8099: 27,-17 + 8100: 29,-17 + 8101: 31,-17 + 8156: 25,-19 + 8163: 32,-12 + 8164: 32,-10 + 8165: 32,-10 + 8224: 33,-6 + 8228: 42,-8 + 8229: 39,-18 + 8230: 41,-18 + 8231: 41,-18 + 8232: 42,-19 + 8233: 42,-21 + 8236: 44,-22 + 8237: 48,-22 + 8238: 52,-22 + 8289: 40,-17 + 8367: 46,-13 + 8408: 52,-18 + 8582: 54,-29 + 9557: 2,-35 + 9558: 5,-29 + 9559: 11,-29 + 9560: 13,-29 + 9561: 12,-33 + 9562: 15,-31 + 9627: 9,-36 + 9628: 9,-34 + 9629: 5,-37 + 9634: 1,-39 + 9713: 15,-35 + 9744: 21,-33 + 9745: 29,-33 + 9746: 36,-33 + 9747: 33,-23 + 9748: 29,-28 + 9749: 23,-29 + 9750: 29,-40 + 9751: 25,-44 + 9752: 29,-44 + 9753: 29,-50 + 9754: 19,-44 + 9755: 22,-50 + 9756: 17,-48 + 9759: 27,-54 + 9923: 15,-44 + 9965: 39,-35 + 9970: 37,-43 + 10099: 35,-26 + 10100: 37,-27 + 10101: 37,-25 + 10179: 31,-54 + 10318: 4,-42 + 10319: 1,-44 + 10320: 9,-42 + 10321: 4,-48 + 10322: 1,-51 + 10323: 10,-54 + 10324: 8,-56 + 10325: 2,-55 + 10326: 12,-56 + 10327: 10,-57 + 10328: 7,-57 + 10329: 13,-47 + 10330: 17,-54 + 10510: 25,-56 + 10511: 29,-56 + 10536: 2,-60 + 10537: 2,-60 + 10538: 5,-63 + 10539: 5,-63 + 10551: 5,-73 + 10552: 5,-73 + 10553: 7,-75 + 10554: 5,-79 + 10555: 4,-87 + 10556: 4,-83 + 10557: 7,-77 + 10558: 7,-65 + 10667: 76,-45 + 10668: 73,-41 + 10669: 68,-41 + 10670: 73,-48 + 10671: 71,-50 + 10846: 33,-61 + 10898: 42,-62 + 10899: 37,-62 + 10914: 33,-68 + 10915: 37,-70 + 10916: 39,-72 + 10917: 41,-72 + 10918: 41,-72 + 11208: -61,-43 + 11209: -59,-33 + 11210: -59,-40 + 11211: -47,-46 + 11212: -47,-42 + 11324: -11,-83 + 11325: -11,-79 + 11326: -6,-83 + 11327: -4,-83 + 11328: -4,-83 + 11329: 2,-87 + 11330: -4,-87 + 11331: -6,-87 + 11335: 2,-83 + 11378: -24,-63 + 11379: -23,-71 + 11380: -23,-77 + 11381: -23,-79 + 11382: -21,-77 + 11383: -18,-78 + 11384: -12,-78 + 11385: -14,-77 + 11386: -19,-81 + 11387: -10,-63 + 11392: -34,-51 + 11393: -36,-53 + 11394: -34,-55 + 11395: -32,-53 + 11396: -3,-48 + 11406: -4,-35 + 11410: -6,-29 + 11414: -15,-29 + 11415: -13,-29 + 11651: -11,-35 + 11652: -11,-34 + 11653: -13,-33 + 11654: -15,-33 + 11704: -7,-37 + 11705: -6,-45 + 11706: -12,-50 + 11707: -20,-52 + 11708: -18,-51 + 11709: -6,-54 + 11710: -4,-56 + 11711: -16,-55 + 11716: -19,-45 + 11717: -19,-45 + 11718: -16,-40 + 11719: -34,-25 + 11720: -38,-25 + 11721: -42,-25 + 11722: -49,-28 + 11723: -42,-31 + 11724: -38,-31 + 11725: -34,-31 + 11737: -46,-24 + 11738: -48,-23 + 11739: -48,-23 + 11740: -35,-37 + 11741: -35,-37 + 11742: -42,-37 + 11743: -42,-37 + 11744: -45,-35 + 11745: -29,-37 + 11746: -29,-37 + 11747: -31,-39 + 11748: -29,-43 + 11749: -29,-43 + 11750: -24,-37 + 11751: -12,-41 + 11827: -12,-59 + 11828: -24,-43 + 11829: -24,-49 + 11888: -36,-45 + 11889: -36,-40 + 12082: -25,-24 + 12083: -23,-23 + 12084: -21,-26 + 12085: -17,-24 + 12086: -21,-31 + 12377: -17,-64 + 12378: -4,-60 + 12713: -37,27 + 12755: -45,9 + 12757: -45,18 + 12871: -45,9 + 12873: -44,23 + 13307: 52,-37 + 13375: -37,-59 + 13376: -37,-64 + 13377: -35,-66 + 13378: -41,-64 + 13389: -30,-61 + 13584: -33,-72 + 14407: -46,12 + 14408: -46,14 + 15373: -49,9 + 15374: -48,7 + 15390: -42,2 + 15587: 75,1 + 15593: 92,8 + 15594: 94,10 + 15595: 78,3 + 15596: 81,-1 + 15597: 85,-1 + 15598: 89,-1 + 15604: 96,-3 + 15910: 94,13 + 16177: -61,-48 + 16701: -58,-11 + 16702: -56,-9 + 16703: -56,-7 + 16726: -58,-11 + 16732: -56,-19 + 16733: -54,-19 + 16736: -60,-17 + 16737: -62,-17 + 16783: -58,-5 + 16788: -48,1 + 16789: -49,3 + 16853: -56,-7 + 16854: -56,-9 + 16855: -62,-7 + 16945: -62,1 + 16946: -65,1 + 17006: -62,-7 + 17089: -51,-15 + 17120: -61,-18 + 17149: -60,14 + 17150: -67,15 + 17151: -72,13 + 17152: -72,9 + 17153: -79,14 + 17154: -77,8 + 17155: -83,14 + 17156: -77,2 + 17157: -75,0 + 17158: -73,3 + 17159: -65,1 + 17160: -71,-5 + 17161: -69,-5 + 17170: -60,14 + 17171: -58,16 + 17172: -67,15 + 17173: -72,13 + 17174: -77,12 + 17175: -79,14 + 17176: -77,8 + 17177: -72,9 + 17178: -73,3 + 17179: -77,2 + 17180: -75,0 + 17181: -80,0 + 17182: -80,-5 + 17183: -82,-3 + 17184: -62,-7 + 17185: -60,6 + 17186: -60,10 + 17187: -46,14 + 17188: -46,12 + 17262: -77,8 + 17263: -72,9 + 17264: -73,3 + 17265: -77,2 + 17266: -75,0 + 17267: -80,0 + 17460: 9,90 + 17461: 11,90 + 17852: -69,55 + 17864: -55,39 + 17865: -54,43 + 17866: -56,43 + 17867: -51,41 + 17868: -48,43 + 17869: -46,41 + 17870: -61,48 + 17871: -61,50 + 17872: -63,53 + 17873: -61,57 + 17874: -67,57 + 17875: -59,55 + 17876: -60,39 + 17877: -62,39 + 17878: -55,31 + 17879: -51,21 + 18082: -44,52 + 18083: -44,50 + 18116: -52,20 + 18506: -14,-11 + 18507: -10,-11 + 18543: 8,-11 + 18994: 57,3 + 18995: 59,3 + 18996: 61,3 + 18997: 63,3 + 18998: 65,3 + 18999: 67,3 + 19003: 57,6 + 19004: 59,6 + 19005: 61,6 + 19006: 63,6 + 19007: 65,6 + 19008: 67,6 + 19009: 68,7 + 19010: 70,7 + 19011: 70,8 + 19012: 68,8 + 19833: -29,-25 + 19935: -48,-3 + 20020: -16,5 + 20021: -16,-2 + 20056: 37,39 + 20079: 71,26 + 20112: 62,27 + 20147: 40,-17 + 20148: 40,-17 + 21215: 75,-4 + 21245: 45,-8 + 21255: 51,-6 + 21274: 56,-2 + 21391: 21,23 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 4103: 0,25 + 4101: 0,25 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNe decals: - 4192: -11,16 - 4211: 11,16 - 4275: 4,18 - 4276: 7,16 - 4307: 14,16 - 9960: 34,-44 + 4190: -11,16 + 4209: 11,16 + 4273: 4,18 + 4274: 7,16 + 4305: 14,16 + 9958: 34,-44 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerNe decals: - 2979: -26,54 - 2980: -25,53 + 2977: -26,54 + 2978: -25,53 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNe decals: - 11760: -5,-38 - 11761: -4,-39 - 12652: -51,-25 - 12653: -50,-27 + 11758: -5,-38 + 11759: -4,-39 + 12650: -51,-25 + 12651: -50,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNe decals: - 7438: 37,9 - 7454: 37,12 - 7457: 48,-3 - 7623: 58,-3 - 7626: 53,-3 - 15579: 74,3 - 19058: 74,19 - 19084: 44,1 - 19127: 41,1 - 19143: 44,9 - 19144: 44,13 - 19145: 41,13 - 19181: 47,24 - 19185: 48,19 - 19215: 54,19 - 19230: 71,-3 - 19245: 76,23 - 19312: 60,13 - 19345: 55,9 - 19642: 55,29 - 20055: 58,32 - 20056: 59,31 + 7436: 37,9 + 7452: 37,12 + 7455: 48,-3 + 7621: 58,-3 + 7624: 53,-3 + 15577: 74,3 + 19056: 74,19 + 19082: 44,1 + 19125: 41,1 + 19141: 44,9 + 19142: 44,13 + 19143: 41,13 + 19179: 47,24 + 19183: 48,19 + 19213: 54,19 + 19228: 71,-3 + 19243: 76,23 + 19310: 60,13 + 19343: 55,9 + 19640: 55,29 + 20053: 58,32 + 20054: 59,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerNe decals: - 17591: -61,11 - 17671: -70,8 - 18263: -67,1 + 17589: -61,11 + 17669: -70,8 + 18261: -67,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 1202: 13,-59 1242: 70,4 - 2023: -15,28 - 2342: -28,38 - 2414: -10,46 - 2472: -10,46 - 2545: -6,43 - 2546: -7,46 - 3210: -2,65 - 3949: 18,61 - 5723: 11,7 - 5737: 11,3 - 5783: 8,-2 - 5820: -15,-4 - 5830: -9,-3 - 5943: 1,14 - 6572: -22,-5 - 6573: -22,-5 - 7232: 23,2 - 7294: 36,1 - 7338: 33,11 - 7699: 43,22 - 7718: 36,21 - 8533: 53,-23 - 8611: 65,-10 - 8615: 65,-29 - 10263: 37,-29 - 10264: 37,-29 - 10429: 12,-49 - 10498: 14,-58 - 10599: 51,-54 - 10696: 82,-43 - 10711: 74,-37 - 10792: 45,-51 - 11325: -74,-34 - 12422: -15,-74 - 12443: -13,-65 - 12457: -13,-79 - 12469: -21,-80 - 12625: -23,-64 - 13384: -38,-66 - 13558: -29,-73 - 13590: -31,-77 - 15681: 93,7 - 15720: 100,-2 - 15754: 96,3 - 16050: 91,9 - 16800: -45,6 - 17129: -46,-12 - 17752: -78,11 - 18089: -44,48 - 18104: -53,38 - 18125: -52,25 - 18162: -57,7 - 18402: -50,-36 - 18568: 14,-13 - 18584: 14,-13 - 18585: 14,-13 - 19462: -9,34 - 19471: -12,34 - 19528: -12,34 - 19545: -9,34 - 19844: -27,-22 - 20135: 68,30 - 21405: 26,17 - 21449: 25,16 + 2021: -15,28 + 2340: -28,38 + 2412: -10,46 + 2470: -10,46 + 2543: -6,43 + 2544: -7,46 + 3208: -2,65 + 3947: 18,61 + 5721: 11,7 + 5735: 11,3 + 5781: 8,-2 + 5818: -15,-4 + 5828: -9,-3 + 5941: 1,14 + 6570: -22,-5 + 6571: -22,-5 + 7230: 23,2 + 7292: 36,1 + 7336: 33,11 + 7697: 43,22 + 7716: 36,21 + 8531: 53,-23 + 8609: 65,-10 + 8613: 65,-29 + 10261: 37,-29 + 10262: 37,-29 + 10427: 12,-49 + 10496: 14,-58 + 10597: 51,-54 + 10694: 82,-43 + 10709: 74,-37 + 10790: 45,-51 + 11323: -74,-34 + 12420: -15,-74 + 12441: -13,-65 + 12455: -13,-79 + 12467: -21,-80 + 12623: -23,-64 + 13382: -38,-66 + 13556: -29,-73 + 13588: -31,-77 + 15679: 93,7 + 15718: 100,-2 + 15752: 96,3 + 16048: 91,9 + 16798: -45,6 + 17127: -46,-12 + 17750: -78,11 + 18087: -44,48 + 18102: -53,38 + 18123: -52,25 + 18160: -57,7 + 18400: -50,-36 + 18566: 14,-13 + 18582: 14,-13 + 18583: 14,-13 + 19460: -9,34 + 19469: -12,34 + 19526: -12,34 + 19543: -9,34 + 19842: -27,-22 + 20133: 68,30 + 21403: 26,17 + 21447: 25,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNw decals: - 4174: -16,16 - 4181: -13,16 - 4213: 9,16 - 4262: -9,16 - 4265: -6,18 - 21339: -16,16 + 4172: -16,16 + 4179: -13,16 + 4211: 9,16 + 4260: -9,16 + 4263: -6,18 + 21337: -16,16 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNw decals: - 11754: -10,-38 - 11755: -10,-38 - 11756: -11,-39 - 12651: -53,-25 + 11752: -10,-38 + 11753: -10,-38 + 11754: -11,-39 + 12649: -53,-25 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNw decals: - 7453: 35,12 - 7620: 50,-3 - 7621: 55,-3 - 7622: 55,-3 - 15580: 72,3 - 19059: 72,19 - 19085: 43,1 - 19124: 35,9 - 19126: 39,1 - 19140: 43,13 - 19141: 39,13 - 19142: 43,9 - 19165: 46,13 - 19179: 45,24 - 19214: 50,19 - 19228: 56,19 - 19229: 68,-3 - 19244: 72,23 - 19313: 50,13 - 19346: 50,9 - 19403: -20,-24 - 19641: 53,29 - 20052: 50,32 - 20053: 49,31 + 7451: 35,12 + 7618: 50,-3 + 7619: 55,-3 + 7620: 55,-3 + 15578: 72,3 + 19057: 72,19 + 19083: 43,1 + 19122: 35,9 + 19124: 39,1 + 19138: 43,13 + 19139: 39,13 + 19140: 43,9 + 19163: 46,13 + 19177: 45,24 + 19212: 50,19 + 19226: 56,19 + 19227: 68,-3 + 19242: 72,23 + 19311: 50,13 + 19344: 50,9 + 19401: -20,-24 + 19639: 53,29 + 20050: 50,32 + 20051: 49,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerNw decals: - 20325: -24,2 + 20323: -24,2 - node: color: '#EFB341FF' id: BrickTileDarkCornerNw decals: - 17590: -66,11 - 17672: -74,8 - 18262: -73,1 + 17588: -66,11 + 17670: -74,8 + 18260: -73,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 1203: 11,-59 1241: 68,4 - 2012: -17,34 - 2535: -8,46 - 2614: -4,40 - 2720: -7,54 - 3935: 12,62 - 3983: -42,63 - 5713: 7,7 - 5725: 7,3 - 5782: 7,-2 - 5819: -16,-4 - 5828: -13,-3 - 5942: -3,14 - 6570: -26,-5 - 6571: -26,-5 - 7242: 20,2 - 7293: 34,1 - 7309: 26,9 - 7337: 29,11 - 7693: 39,22 - 7716: 34,21 - 7717: 34,21 - 8532: 51,-23 - 8609: 64,-29 - 8610: 64,-10 - 10262: 35,-29 - 10428: 2,-49 - 10463: 2,-49 - 10598: 49,-54 - 10695: 80,-43 - 10710: 72,-37 - 10791: 44,-51 - 11323: -75,-34 - 11324: -75,-34 - 12423: -19,-74 - 12442: -21,-65 - 12456: -16,-79 - 12468: -23,-80 - 12576: -18,-80 - 12611: -25,-64 - 12612: -24,-72 - 12626: -25,-64 - 12708: -39,26 - 13381: -41,-66 - 13589: -35,-77 - 15669: 89,10 - 15684: 91,7 - 15719: 99,-2 - 15747: 93,3 - 15865: 79,-2 - 15892: 83,-2 - 15893: 87,-2 - 15922: 95,14 - 16053: 93,9 - 16796: -49,6 - 17753: -79,11 - 18088: -45,48 - 18161: -58,7 - 18392: -53,-36 - 18569: 12,-13 - 18583: 12,-13 - 19461: -10,34 - 19485: -15,31 - 19527: -10,34 - 19838: -31,-22 - 20126: 61,30 - 21404: 22,17 - 21448: 23,16 + 2010: -17,34 + 2533: -8,46 + 2612: -4,40 + 2718: -7,54 + 3933: 12,62 + 3981: -42,63 + 5711: 7,7 + 5723: 7,3 + 5780: 7,-2 + 5817: -16,-4 + 5826: -13,-3 + 5940: -3,14 + 6568: -26,-5 + 6569: -26,-5 + 7240: 20,2 + 7291: 34,1 + 7307: 26,9 + 7335: 29,11 + 7691: 39,22 + 7714: 34,21 + 7715: 34,21 + 8530: 51,-23 + 8607: 64,-29 + 8608: 64,-10 + 10260: 35,-29 + 10426: 2,-49 + 10461: 2,-49 + 10596: 49,-54 + 10693: 80,-43 + 10708: 72,-37 + 10789: 44,-51 + 11321: -75,-34 + 11322: -75,-34 + 12421: -19,-74 + 12440: -21,-65 + 12454: -16,-79 + 12466: -23,-80 + 12574: -18,-80 + 12609: -25,-64 + 12610: -24,-72 + 12624: -25,-64 + 12706: -39,26 + 13379: -41,-66 + 13587: -35,-77 + 15667: 89,10 + 15682: 91,7 + 15717: 99,-2 + 15745: 93,3 + 15863: 79,-2 + 15890: 83,-2 + 15891: 87,-2 + 15920: 95,14 + 16051: 93,9 + 16794: -49,6 + 17751: -79,11 + 18086: -45,48 + 18159: -58,7 + 18390: -53,-36 + 18567: 12,-13 + 18581: 12,-13 + 19459: -10,34 + 19483: -15,31 + 19525: -10,34 + 19836: -31,-22 + 20124: 61,30 + 21402: 22,17 + 21446: 23,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSe decals: - 4210: 11,13 - 4288: -4,13 - 4308: 14,13 - 9961: 34,-45 + 4208: 11,13 + 4286: -4,13 + 4306: 14,13 + 9959: 34,-45 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSe decals: - 2981: -25,52 + 2979: -25,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSe decals: - 11762: -4,-43 - 11763: -5,-44 - 12150: -23,-48 - 12654: -50,-29 - 12655: -51,-31 + 11760: -4,-43 + 11761: -5,-44 + 12148: -23,-48 + 12652: -50,-29 + 12653: -51,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSe decals: - 7452: 37,11 - 7459: 48,-5 - 7614: 58,-5 - 7615: 53,-5 - 15587: 74,-1 - 19061: 74,5 - 19081: 44,-1 - 19125: 41,-1 - 19137: 44,7 - 19138: 44,11 - 19139: 41,11 - 19163: 60,11 - 19168: 48,15 - 19199: 59,21 - 19216: 54,15 - 19226: 57,15 - 19232: 71,-5 - 19243: 76,21 - 19351: 55,3 - 19404: -18,-28 - 19657: 52,31 + 7450: 37,11 + 7457: 48,-5 + 7612: 58,-5 + 7613: 53,-5 + 15585: 74,-1 + 19059: 74,5 + 19079: 44,-1 + 19123: 41,-1 + 19135: 44,7 + 19136: 44,11 + 19137: 41,11 + 19161: 60,11 + 19166: 48,15 + 19197: 59,21 + 19214: 54,15 + 19224: 57,15 + 19230: 71,-5 + 19241: 76,21 + 19349: 55,3 + 19402: -18,-28 + 19655: 52,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerSe decals: - 20324: -22,0 + 20322: -22,0 - node: color: '#EFB341FF' id: BrickTileDarkCornerSe decals: - 17589: -61,4 - 17664: -70,4 - 18277: -67,-3 + 17587: -61,4 + 17662: -70,4 + 18275: -67,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 1204: 13,-61 - 2020: -15,26 - 2024: -15,32 - 2418: -10,36 - 2481: -10,36 - 2533: -6,36 - 2617: -2,36 - 2668: 2,54 - 2716: -5,52 - 3207: -2,60 - 3888: 23,65 - 3988: -40,59 - 5721: 11,5 - 5732: 11,0 - 5781: 8,-3 - 5822: -15,-6 - 5831: -9,-6 - 5941: 1,12 - 6569: -22,-9 - 6840: -33,8 - 7288: 36,-1 - 7304: 27,8 - 7342: 33,8 - 7700: 43,18 - 7701: 43,18 - 7713: 36,19 - 8542: 53,-26 - 8607: 65,-12 - 8608: 65,-31 - 10261: 37,-31 - 10431: 12,-53 - 10492: 14,-62 - 10600: 51,-56 - 10694: 82,-47 - 10713: 74,-40 - 10790: 45,-55 - 11318: -74,-36 - 12429: -15,-76 - 12463: -13,-82 - 12466: -21,-82 - 12574: -17,-82 - 12710: -38,25 - 13389: -38,-68 - 13578: -36,-78 - 13596: -31,-80 - 15682: 93,6 - 15722: 100,-4 - 15753: 96,1 - 15871: 81,-5 - 15888: 89,-5 - 15889: 85,-5 - 15920: 96,12 - 16801: -45,4 - 17134: -46,-18 - 17754: -78,9 - 18087: -44,46 - 18166: -57,5 - 18573: 14,-14 - 18581: 14,-14 - 19002: 70,3 - 19473: -12,26 - 19533: -12,26 - 19839: -27,-24 - 20136: 68,28 - 21403: 26,12 - 21444: 25,13 + 2018: -15,26 + 2022: -15,32 + 2416: -10,36 + 2479: -10,36 + 2531: -6,36 + 2615: -2,36 + 2666: 2,54 + 2714: -5,52 + 3205: -2,60 + 3886: 23,65 + 3986: -40,59 + 5719: 11,5 + 5730: 11,0 + 5779: 8,-3 + 5820: -15,-6 + 5829: -9,-6 + 5939: 1,12 + 6567: -22,-9 + 6838: -33,8 + 7286: 36,-1 + 7302: 27,8 + 7340: 33,8 + 7698: 43,18 + 7699: 43,18 + 7711: 36,19 + 8540: 53,-26 + 8605: 65,-12 + 8606: 65,-31 + 10259: 37,-31 + 10429: 12,-53 + 10490: 14,-62 + 10598: 51,-56 + 10692: 82,-47 + 10711: 74,-40 + 10788: 45,-55 + 11316: -74,-36 + 12427: -15,-76 + 12461: -13,-82 + 12464: -21,-82 + 12572: -17,-82 + 12708: -38,25 + 13387: -38,-68 + 13576: -36,-78 + 13594: -31,-80 + 15680: 93,6 + 15720: 100,-4 + 15751: 96,1 + 15869: 81,-5 + 15886: 89,-5 + 15887: 85,-5 + 15918: 96,12 + 16799: -45,4 + 17132: -46,-18 + 17752: -78,9 + 18085: -44,46 + 18164: -57,5 + 18571: 14,-14 + 18579: 14,-14 + 19000: 70,3 + 19471: -12,26 + 19531: -12,26 + 19837: -27,-24 + 20134: 68,28 + 21401: 26,12 + 21442: 25,13 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSw decals: - 4175: -16,13 - 4180: -13,13 - 4287: 2,13 - 9962: 30,-45 - 21335: -13,13 - 21336: -16,13 + 4173: -16,13 + 4178: -13,13 + 4285: 2,13 + 9960: 30,-45 + 21333: -13,13 + 21334: -16,13 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSw decals: - 2975: -27,52 + 2973: -27,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSw decals: - 11764: -11,-44 - 12151: -30,-48 - 12656: -53,-31 + 11762: -11,-44 + 12149: -30,-48 + 12654: -53,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSw decals: - 7455: 35,11 - 7612: 50,-5 - 7613: 55,-5 - 19060: 72,5 - 19078: 46,-1 - 19079: 39,-1 - 19080: 43,-1 - 19123: 35,8 - 19134: 39,11 - 19135: 43,11 - 19136: 43,7 - 19164: 50,11 - 19169: 45,15 - 19200: 49,21 - 19213: 50,15 - 19227: 56,15 - 19231: 68,-5 - 19246: 72,21 - 19352: 50,3 - 19405: -20,-28 - 19658: 56,31 + 7453: 35,11 + 7610: 50,-5 + 7611: 55,-5 + 19058: 72,5 + 19076: 46,-1 + 19077: 39,-1 + 19078: 43,-1 + 19121: 35,8 + 19132: 39,11 + 19133: 43,11 + 19134: 43,7 + 19162: 50,11 + 19167: 45,15 + 19198: 49,21 + 19211: 50,15 + 19225: 56,15 + 19229: 68,-5 + 19244: 72,21 + 19350: 50,3 + 19403: -20,-28 + 19656: 56,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerSw decals: - 17588: -66,4 - 17665: -74,4 - 18276: -73,-3 + 17586: -66,4 + 17663: -74,4 + 18274: -73,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 1201: 11,-61 - 2019: -17,26 - 2532: -8,36 - 2615: -4,36 - 2669: 1,54 - 2684: -1,50 - 2715: -7,52 - 3892: 17,65 - 3986: -42,59 - 5715: 7,5 - 5728: 7,0 - 5784: 7,-3 - 5821: -16,-6 - 5832: -13,-6 - 5940: -3,12 - 6565: -26,-9 - 6839: -39,8 - 7241: 20,-8 - 7287: 34,-1 - 7310: 26,8 - 7705: 39,18 - 7714: 34,19 - 7715: 34,19 - 8543: 51,-26 - 8612: 64,-12 - 8613: 64,-31 - 8614: 64,-31 - 10260: 35,-31 - 10430: 2,-53 - 10491: 10,-62 - 10597: 49,-56 - 10714: 72,-40 - 10789: 44,-55 - 11319: -75,-36 - 12428: -19,-76 - 12462: -16,-82 - 12467: -23,-82 - 12575: -18,-82 - 12609: -24,-76 - 12610: -25,-70 - 12709: -39,25 - 13386: -41,-68 - 13562: -30,-80 - 13579: -30,-78 - 13584: -37,-80 - 13597: -35,-80 - 13598: -32,-80 - 15683: 91,6 - 15721: 99,-4 - 15752: 93,1 - 15872: 79,-5 - 15890: 83,-5 - 15891: 87,-5 - 15923: 95,12 - 17755: -79,9 - 18086: -45,46 - 18165: -58,5 - 18394: -53,-38 - 18571: 12,-14 - 18580: 12,-14 - 19003: 68,3 - 19463: -10,26 - 19476: -14,26 - 19484: -15,29 - 19532: -10,26 - 19840: -31,-24 - 20137: 61,28 - 21402: 22,12 - 21443: 23,13 + 2017: -17,26 + 2530: -8,36 + 2613: -4,36 + 2667: 1,54 + 2682: -1,50 + 2713: -7,52 + 3890: 17,65 + 3984: -42,59 + 5713: 7,5 + 5726: 7,0 + 5782: 7,-3 + 5819: -16,-6 + 5830: -13,-6 + 5938: -3,12 + 6563: -26,-9 + 6837: -39,8 + 7239: 20,-8 + 7285: 34,-1 + 7308: 26,8 + 7703: 39,18 + 7712: 34,19 + 7713: 34,19 + 8541: 51,-26 + 8610: 64,-12 + 8611: 64,-31 + 8612: 64,-31 + 10258: 35,-31 + 10428: 2,-53 + 10489: 10,-62 + 10595: 49,-56 + 10712: 72,-40 + 10787: 44,-55 + 11317: -75,-36 + 12426: -19,-76 + 12460: -16,-82 + 12465: -23,-82 + 12573: -18,-82 + 12607: -24,-76 + 12608: -25,-70 + 12707: -39,25 + 13384: -41,-68 + 13560: -30,-80 + 13577: -30,-78 + 13582: -37,-80 + 13595: -35,-80 + 13596: -32,-80 + 15681: 91,6 + 15719: 99,-4 + 15750: 93,1 + 15870: 79,-5 + 15888: 83,-5 + 15889: 87,-5 + 15921: 95,12 + 17753: -79,9 + 18084: -45,46 + 18163: -58,5 + 18392: -53,-38 + 18569: 12,-14 + 18578: 12,-14 + 19001: 68,3 + 19461: -10,26 + 19474: -14,26 + 19482: -15,29 + 19530: -10,26 + 19838: -31,-24 + 20135: 61,28 + 21400: 22,12 + 21441: 23,13 - node: color: '#CEDA8BFF' id: BrickTileDarkEndE decals: - 10871: 45,-64 - 10872: 45,-61 - 10886: 41,-64 + 10869: 45,-64 + 10870: 45,-61 + 10884: 41,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndE decals: - 19247: 76,25 + 19245: 76,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2217: -18,54 - 2664: 2,55 - 3849: 23,72 - 3861: 19,68 - 3862: 22,68 - 4321: 4,12 - 4322: -5,12 - 4453: 16,25 - 4602: 21,33 - 5531: -18,7 - 5547: -18,-7 - 5568: -33,30 - 5571: -31,25 - 5600: -10,66 - 5601: -10,59 - 5650: 11,-7 - 5981: 0,7 - 5982: 0,3 - 5983: 0,-1 - 5984: 0,-5 - 6091: -11,-18 - 6131: 18,-7 - 6141: 18,7 - 6186: -18,-22 - 6317: 18,-22 - 6389: 14,-18 - 6561: -32,3 - 6562: -32,-10 - 6789: -25,7 - 6832: -38,16 - 6833: -38,16 - 6837: -38,8 - 6838: -38,8 - 7476: 48,10 - 8194: 36,-17 - 8195: 36,-17 - 8221: 36,-7 - 8236: 47,-18 - 8735: 0,-22 - 8736: 0,-29 - 8737: -6,-22 - 8738: -13,-22 - 8739: 5,-22 - 8740: 12,-22 - 8741: 0,-37 - 8742: 0,-57 - 8743: 0,-63 - 9115: -4,-74 - 9125: -3,-68 - 9126: -3,-66 - 9162: 0,-82 - 9693: 18,-37 - 9694: 28,-37 - 11540: -18,-33 - 11548: -22,-33 - 11549: -22,-33 - 11558: -13,-37 - 11559: -13,-37 - 11714: -13,-45 - 12761: -17,59 - 12762: -3,59 - 12763: -3,66 - 12764: -17,66 - 12765: -11,70 - 12766: 7,70 - 12767: -29,70 - 13583: -36,-80 - 14419: -57,20 - 14444: -61,13 - 14486: -18,21 - 14491: 18,21 - 15390: -41,3 - 15404: -41,7 - 15905: 80,-1 + 2215: -18,54 + 2662: 2,55 + 3847: 23,72 + 3859: 19,68 + 3860: 22,68 + 4319: 4,12 + 4320: -5,12 + 4451: 16,25 + 4600: 21,33 + 5529: -18,7 + 5545: -18,-7 + 5566: -33,30 + 5569: -31,25 + 5598: -10,66 + 5599: -10,59 + 5648: 11,-7 + 5979: 0,7 + 5980: 0,3 + 5981: 0,-1 + 5982: 0,-5 + 6089: -11,-18 + 6129: 18,-7 + 6139: 18,7 + 6184: -18,-22 + 6315: 18,-22 + 6387: 14,-18 + 6559: -32,3 + 6560: -32,-10 + 6787: -25,7 + 6830: -38,16 + 6831: -38,16 + 6835: -38,8 + 6836: -38,8 + 7474: 48,10 + 8192: 36,-17 + 8193: 36,-17 + 8219: 36,-7 + 8234: 47,-18 + 8733: 0,-22 + 8734: 0,-29 + 8735: -6,-22 + 8736: -13,-22 + 8737: 5,-22 + 8738: 12,-22 + 8739: 0,-37 + 8740: 0,-57 + 8741: 0,-63 + 9113: -4,-74 + 9123: -3,-68 + 9124: -3,-66 + 9160: 0,-82 + 9691: 18,-37 + 9692: 28,-37 + 11538: -18,-33 + 11546: -22,-33 + 11547: -22,-33 + 11556: -13,-37 + 11557: -13,-37 + 11712: -13,-45 + 12759: -17,59 + 12760: -3,59 + 12761: -3,66 + 12762: -17,66 + 12763: -11,70 + 12764: 7,70 + 12765: -29,70 + 13581: -36,-80 + 14417: -57,20 + 14442: -61,13 + 14484: -18,21 + 14489: 18,21 + 15388: -41,3 + 15402: -41,7 + 15903: 80,-1 + 15904: 84,-1 + 15905: 88,-1 15906: 84,-1 - 15907: 88,-1 - 15908: 84,-1 - 15909: 80,-1 - 15914: 98,14 - 16038: 93,15 - 16792: -52,3 - 16793: -52,7 - 16955: -56,3 - 17164: -69,-9 - 17409: -69,-9 - 17710: -80,13 - 17714: -80,15 - 17882: -53,19 - 18095: -56,38 - 18408: -48,-38 - 18564: 14,-11 - 19015: 70,10 - 19816: -6,-40 - 20116: 67,27 + 15907: 80,-1 + 15912: 98,14 + 16036: 93,15 + 16790: -52,3 + 16791: -52,7 + 16953: -56,3 + 17162: -69,-9 + 17407: -69,-9 + 17708: -80,13 + 17712: -80,15 + 17880: -53,19 + 18093: -56,38 + 18406: -48,-38 + 18562: 14,-11 + 19013: 70,10 + 19814: -6,-40 + 20114: 67,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 4045: -18,25 - 4112: 8,25 - 4113: 5,25 + 4043: -18,25 + 4110: 8,25 + 4111: 5,25 - node: color: '#A9DA8BFF' id: BrickTileDarkEndN decals: - 2978: -27,55 + 2976: -27,55 - node: color: '#B18BDAFF' id: BrickTileDarkEndN decals: - 12129: -30,-44 - 12130: -23,-44 + 12127: -30,-44 + 12128: -23,-44 - node: color: '#EFB341FF' id: BrickTileDarkEndN decals: - 17836: -59,7 - 17837: -56,7 - 18269: -68,0 + 17834: -59,7 + 17835: -56,7 + 18267: -68,0 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 2513: -9,43 - 2514: -9,43 - 2670: 4,54 - 2856: -24,48 - 2859: -24,51 - 3136: -16,65 - 3150: -8,65 - 3194: -22,65 - 3558: -22,58 - 3641: 9,81 - 3648: 9,76 - 3828: 16,71 - 4165: -14,15 - 4170: -17,15 - 4299: 12,15 - 4300: 15,15 - 4519: 12,36 - 4912: 14,53 - 4915: 14,50 - 5238: -32,82 - 5239: -28,82 - 5240: -28,92 - 5241: -32,92 - 5325: -14,92 - 5326: -10,92 - 5343: -10,82 - 5344: -14,82 - 5345: -14,82 - 5357: 4,82 - 5576: -29,28 - 5577: -29,28 - 5617: -17,-8 - 5618: 15,-8 - 5643: -17,-19 - 5662: -7,10 - 5666: 5,10 - 5980: -1,8 - 6170: -3,-19 - 6171: 1,-19 - 6172: -17,-19 - 6185: 15,-19 - 6558: -21,-2 - 6792: -21,12 - 6964: -22,-16 - 7053: 26,6 - 7060: 19,6 - 7090: 26,-10 - 7091: 19,-10 - 7400: 49,1 - 7557: 48,23 - 7645: 56,5 - 8203: 42,-14 - 8204: 42,-10 - 8205: 42,-10 - 8834: 1,-25 - 8835: -3,-25 - 9113: -2,-69 - 9114: -7,-69 - 9130: -1,-67 - 9131: -1,-67 - 9132: -8,-67 - 9133: -8,-72 - 9134: -1,-72 - 9135: -1,-72 - 9146: -6,-72 - 9147: -6,-72 - 9148: -3,-72 - 9149: -3,-72 - 9370: 1,-46 - 9371: 1,-55 - 9372: 1,-55 - 9375: -3,-55 - 9377: 1,-46 - 9547: 15,-25 - 9568: 19,-27 - 9686: 19,-34 - 9689: 19,-39 - 9690: 25,-39 - 9759: 15,-39 - 10299: 20,-51 - 10547: 3,-66 - 10548: 3,-75 - 10549: 3,-75 - 10788: 53,-50 - 11376: -12,-66 - 11377: -22,-66 - 11402: -3,-40 - 11546: -21,-34 - 11547: -21,-34 - 11730: -44,-27 - 11731: -32,-27 - 12357: -21,-46 - 12583: -20,-80 - 12584: -24,-80 - 12705: -38,29 - 14474: -21,24 - 14475: -8,24 - 14476: 6,24 - 15389: -40,6 - 15521: 58,-26 - 15522: 60,-26 - 15531: 58,-13 - 15532: 60,-13 - 15876: 80,-3 - 15880: 84,-3 - 15881: 88,-3 - 16812: -54,6 - 16813: -51,6 - 16870: -55,-10 - 16871: -55,-5 - 17166: -74,-6 - 17334: -50,-7 - 17402: -74,-6 - 17720: -79,7 - 17721: -76,7 - 17751: -76,11 - 17885: -56,24 - 18092: -57,34 - 18114: -55,22 - 18199: -55,-5 - 18467: -16,-13 - 18470: -14,-13 - 18471: -12,-13 - 18472: -10,-13 - 18487: -8,-16 - 19019: 57,9 - 19020: 59,9 - 19021: 63,9 - 19022: 61,9 - 20153: -21,6 - 21376: 19,15 - 21385: 21,15 - 21400: 24,15 + 2511: -9,43 + 2512: -9,43 + 2668: 4,54 + 2854: -24,48 + 2857: -24,51 + 3134: -16,65 + 3148: -8,65 + 3192: -22,65 + 3556: -22,58 + 3639: 9,81 + 3646: 9,76 + 3826: 16,71 + 4163: -14,15 + 4168: -17,15 + 4297: 12,15 + 4298: 15,15 + 4517: 12,36 + 4910: 14,53 + 4913: 14,50 + 5236: -32,82 + 5237: -28,82 + 5238: -28,92 + 5239: -32,92 + 5323: -14,92 + 5324: -10,92 + 5341: -10,82 + 5342: -14,82 + 5343: -14,82 + 5355: 4,82 + 5574: -29,28 + 5575: -29,28 + 5615: -17,-8 + 5616: 15,-8 + 5641: -17,-19 + 5660: -7,10 + 5664: 5,10 + 5978: -1,8 + 6168: -3,-19 + 6169: 1,-19 + 6170: -17,-19 + 6183: 15,-19 + 6556: -21,-2 + 6790: -21,12 + 6962: -22,-16 + 7051: 26,6 + 7058: 19,6 + 7088: 26,-10 + 7089: 19,-10 + 7398: 49,1 + 7555: 48,23 + 7643: 56,5 + 8201: 42,-14 + 8202: 42,-10 + 8203: 42,-10 + 8832: 1,-25 + 8833: -3,-25 + 9111: -2,-69 + 9112: -7,-69 + 9128: -1,-67 + 9129: -1,-67 + 9130: -8,-67 + 9131: -8,-72 + 9132: -1,-72 + 9133: -1,-72 + 9144: -6,-72 + 9145: -6,-72 + 9146: -3,-72 + 9147: -3,-72 + 9368: 1,-46 + 9369: 1,-55 + 9370: 1,-55 + 9373: -3,-55 + 9375: 1,-46 + 9545: 15,-25 + 9566: 19,-27 + 9684: 19,-34 + 9687: 19,-39 + 9688: 25,-39 + 9757: 15,-39 + 10297: 20,-51 + 10545: 3,-66 + 10546: 3,-75 + 10547: 3,-75 + 10786: 53,-50 + 11374: -12,-66 + 11375: -22,-66 + 11400: -3,-40 + 11544: -21,-34 + 11545: -21,-34 + 11728: -44,-27 + 11729: -32,-27 + 12355: -21,-46 + 12581: -20,-80 + 12582: -24,-80 + 12703: -38,29 + 14472: -21,24 + 14473: -8,24 + 14474: 6,24 + 15387: -40,6 + 15519: 58,-26 + 15520: 60,-26 + 15529: 58,-13 + 15530: 60,-13 + 15874: 80,-3 + 15878: 84,-3 + 15879: 88,-3 + 16810: -54,6 + 16811: -51,6 + 16868: -55,-10 + 16869: -55,-5 + 17164: -74,-6 + 17332: -50,-7 + 17400: -74,-6 + 17718: -79,7 + 17719: -76,7 + 17749: -76,11 + 17883: -56,24 + 18090: -57,34 + 18112: -55,22 + 18197: -55,-5 + 18465: -16,-13 + 18468: -14,-13 + 18469: -12,-13 + 18470: -10,-13 + 18485: -8,-16 + 19017: 57,9 + 19018: 59,9 + 19019: 63,9 + 19020: 61,9 + 20151: -21,6 + 21374: 19,15 + 21383: 21,15 + 21398: 24,15 - node: color: '#EFB341FF' id: BrickTileDarkEndS decals: - 17838: -59,5 - 17839: -56,5 + 17836: -59,5 + 17837: -56,5 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2330: -28,32 - 2516: -9,39 - 2671: 4,50 - 2857: -24,47 - 2858: -24,50 - 3141: -16,60 - 3151: -8,60 - 3195: -22,60 - 3559: -22,57 - 3642: 9,80 - 3649: 9,75 - 3829: 16,70 - 4166: -14,14 - 4171: -17,14 - 4301: 12,14 - 4302: 15,14 - 4520: 12,35 - 4913: 14,52 - 4914: 14,49 - 5242: -32,88 - 5243: -28,88 - 5244: -28,88 - 5245: -28,79 - 5246: -32,79 - 5327: -14,88 - 5328: -10,88 - 5346: -14,79 - 5347: -10,79 - 5361: 4,79 - 5578: -29,27 - 5579: -29,27 - 5644: -17,-21 - 5663: -7,8 - 5667: 5,8 - 6034: -8,-17 - 6035: -8,-13 - 6053: -16,-16 - 6054: -14,-16 - 6055: -12,-16 - 6056: -10,-16 - 6176: -3,-21 - 6177: 1,-21 - 6184: 15,-21 - 6559: -21,-3 - 6791: -21,11 - 6967: -22,-17 - 7054: 26,4 - 7061: 19,4 - 7092: 19,-12 - 7093: 26,-12 - 7401: 49,-1 - 7558: 48,22 - 7644: 56,4 - 8206: 42,-16 - 8207: 42,-12 - 8836: -3,-26 - 8837: 1,-26 - 9118: -7,-71 - 9119: -2,-71 - 9136: -8,-74 - 9137: -1,-74 - 9138: -1,-74 - 9139: -3,-73 - 9140: -3,-73 - 9141: -6,-73 - 9142: -6,-73 - 9143: -8,-68 - 9144: -1,-68 - 9145: -1,-68 - 9373: -3,-56 - 9374: 1,-56 - 9376: 1,-47 - 9548: 15,-26 - 9569: 19,-28 - 9691: 19,-40 - 9692: 25,-40 - 9699: 19,-36 - 9760: 15,-40 - 10300: 20,-53 - 10550: 3,-76 - 10551: 3,-67 - 10552: 5,-73 - 10780: 53,-56 - 11378: -22,-67 - 11379: -12,-67 - 11403: -3,-41 - 11545: -21,-36 - 11728: -44,-29 - 11729: -32,-29 - 12358: -21,-48 - 12582: -20,-82 - 12585: -24,-82 - 14477: 6,22 - 14478: -8,22 - 14479: -21,22 - 15408: -40,4 - 15523: 58,-28 - 15524: 60,-28 - 15533: 58,-15 - 15534: 60,-15 - 15877: 80,-4 - 15878: 84,-4 - 15879: 88,-4 - 16814: -54,4 - 16815: -51,4 - 16872: -55,-11 - 16873: -55,-6 - 17167: -74,-8 - 17335: -50,-9 - 17403: -74,-8 - 17728: -76,3 - 17729: -79,3 - 17884: -56,23 - 18097: -57,32 - 18105: -53,32 - 18115: -55,20 - 18120: -52,22 - 18490: -17,-10 - 18519: 15,-10 - 18557: 15,-10 - 19023: 57,7 - 19024: 59,7 - 19025: 61,7 - 19026: 63,7 - 20154: -21,4 - 21377: 19,14 - 21386: 21,14 - 21401: 24,14 + 2328: -28,32 + 2514: -9,39 + 2669: 4,50 + 2855: -24,47 + 2856: -24,50 + 3139: -16,60 + 3149: -8,60 + 3193: -22,60 + 3557: -22,57 + 3640: 9,80 + 3647: 9,75 + 3827: 16,70 + 4164: -14,14 + 4169: -17,14 + 4299: 12,14 + 4300: 15,14 + 4518: 12,35 + 4911: 14,52 + 4912: 14,49 + 5240: -32,88 + 5241: -28,88 + 5242: -28,88 + 5243: -28,79 + 5244: -32,79 + 5325: -14,88 + 5326: -10,88 + 5344: -14,79 + 5345: -10,79 + 5359: 4,79 + 5576: -29,27 + 5577: -29,27 + 5642: -17,-21 + 5661: -7,8 + 5665: 5,8 + 6032: -8,-17 + 6033: -8,-13 + 6051: -16,-16 + 6052: -14,-16 + 6053: -12,-16 + 6054: -10,-16 + 6174: -3,-21 + 6175: 1,-21 + 6182: 15,-21 + 6557: -21,-3 + 6789: -21,11 + 6965: -22,-17 + 7052: 26,4 + 7059: 19,4 + 7090: 19,-12 + 7091: 26,-12 + 7399: 49,-1 + 7556: 48,22 + 7642: 56,4 + 8204: 42,-16 + 8205: 42,-12 + 8834: -3,-26 + 8835: 1,-26 + 9116: -7,-71 + 9117: -2,-71 + 9134: -8,-74 + 9135: -1,-74 + 9136: -1,-74 + 9137: -3,-73 + 9138: -3,-73 + 9139: -6,-73 + 9140: -6,-73 + 9141: -8,-68 + 9142: -1,-68 + 9143: -1,-68 + 9371: -3,-56 + 9372: 1,-56 + 9374: 1,-47 + 9546: 15,-26 + 9567: 19,-28 + 9689: 19,-40 + 9690: 25,-40 + 9697: 19,-36 + 9758: 15,-40 + 10298: 20,-53 + 10548: 3,-76 + 10549: 3,-67 + 10550: 5,-73 + 10778: 53,-56 + 11376: -22,-67 + 11377: -12,-67 + 11401: -3,-41 + 11543: -21,-36 + 11726: -44,-29 + 11727: -32,-29 + 12356: -21,-48 + 12580: -20,-82 + 12583: -24,-82 + 14475: 6,22 + 14476: -8,22 + 14477: -21,22 + 15406: -40,4 + 15521: 58,-28 + 15522: 60,-28 + 15531: 58,-15 + 15532: 60,-15 + 15875: 80,-4 + 15876: 84,-4 + 15877: 88,-4 + 16812: -54,4 + 16813: -51,4 + 16870: -55,-11 + 16871: -55,-6 + 17165: -74,-8 + 17333: -50,-9 + 17401: -74,-8 + 17726: -76,3 + 17727: -79,3 + 17882: -56,23 + 18095: -57,32 + 18103: -53,32 + 18113: -55,20 + 18118: -52,22 + 18488: -17,-10 + 18517: 15,-10 + 18555: 15,-10 + 19021: 57,7 + 19022: 59,7 + 19023: 61,7 + 19024: 63,7 + 20152: -21,4 + 21375: 19,14 + 21384: 21,14 + 21399: 24,14 - node: color: '#CEDA8BFF' id: BrickTileDarkEndW decals: - 10873: 43,-61 - 10887: 38,-64 + 10871: 43,-61 + 10885: 38,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndW decals: - 19248: 74,25 + 19246: 74,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2218: -20,54 - 2329: -29,38 - 2665: 1,55 - 3850: 17,72 - 3863: 18,68 - 3864: 21,68 - 4323: -6,12 - 4324: 3,12 - 4454: 14,25 - 4603: 20,33 - 5532: -20,7 - 5548: -20,-7 - 5569: -34,30 - 5570: -34,25 - 5602: -14,59 - 5603: -14,66 - 5649: 10,-7 - 5985: -2,-5 - 5986: -2,-1 - 5987: -2,3 - 5988: -2,7 - 6092: -13,-18 - 6130: 16,-7 - 6142: 16,7 - 6187: -20,-22 - 6318: 16,-22 - 6390: 12,-18 - 6391: 12,-18 - 6560: -33,3 - 6563: -33,-10 - 6564: -17,-1 - 6790: -26,7 - 6834: -34,16 - 6835: -34,16 - 6836: -34,8 - 7477: 46,10 - 8196: 33,-17 - 8222: 34,-7 - 8237: 46,-18 - 8744: -2,-37 - 8745: -2,-29 - 8746: -2,-22 - 8747: -7,-22 - 8748: -14,-22 - 8749: 4,-22 - 8750: 11,-22 - 8751: -2,-57 - 8752: -2,-63 - 9116: -5,-74 - 9117: -2,-63 - 9127: -6,-66 - 9128: -6,-66 - 9129: -6,-68 - 9163: -2,-82 - 9164: -2,-82 - 9687: 16,-37 - 9688: 26,-37 - 11541: -20,-33 - 11550: -24,-33 - 11560: -15,-37 - 11715: -15,-45 - 12591: -24,-78 - 12768: -31,70 - 12769: -13,70 - 12770: -21,66 - 12771: -7,66 - 12772: 5,70 - 12808: -21,59 - 12815: -7,59 - 13582: -30,-80 - 14420: -61,20 - 14443: -66,13 - 14487: -20,21 - 14493: 16,21 - 15391: -43,3 - 15405: -43,7 - 15902: 79,-1 - 15903: 83,-1 - 15904: 87,-1 - 16039: 91,15 - 16045: 91,15 - 16794: -53,7 - 16795: -53,3 - 16956: -59,3 - 17123: -49,-12 - 17124: -49,-18 - 17165: -71,-9 - 17408: -71,-9 - 17711: -82,13 - 17712: -82,15 - 17713: -82,15 - 17883: -54,19 - 18093: -54,35 - 18094: -57,38 - 18096: -54,38 - 18119: -55,25 - 18565: 12,-11 - 19016: 68,10 - 19815: -9,-40 - 20115: 64,27 + 2216: -20,54 + 2327: -29,38 + 2663: 1,55 + 3848: 17,72 + 3861: 18,68 + 3862: 21,68 + 4321: -6,12 + 4322: 3,12 + 4452: 14,25 + 4601: 20,33 + 5530: -20,7 + 5546: -20,-7 + 5567: -34,30 + 5568: -34,25 + 5600: -14,59 + 5601: -14,66 + 5647: 10,-7 + 5983: -2,-5 + 5984: -2,-1 + 5985: -2,3 + 5986: -2,7 + 6090: -13,-18 + 6128: 16,-7 + 6140: 16,7 + 6185: -20,-22 + 6316: 16,-22 + 6388: 12,-18 + 6389: 12,-18 + 6558: -33,3 + 6561: -33,-10 + 6562: -17,-1 + 6788: -26,7 + 6832: -34,16 + 6833: -34,16 + 6834: -34,8 + 7475: 46,10 + 8194: 33,-17 + 8220: 34,-7 + 8235: 46,-18 + 8742: -2,-37 + 8743: -2,-29 + 8744: -2,-22 + 8745: -7,-22 + 8746: -14,-22 + 8747: 4,-22 + 8748: 11,-22 + 8749: -2,-57 + 8750: -2,-63 + 9114: -5,-74 + 9115: -2,-63 + 9125: -6,-66 + 9126: -6,-66 + 9127: -6,-68 + 9161: -2,-82 + 9162: -2,-82 + 9685: 16,-37 + 9686: 26,-37 + 11539: -20,-33 + 11548: -24,-33 + 11558: -15,-37 + 11713: -15,-45 + 12589: -24,-78 + 12766: -31,70 + 12767: -13,70 + 12768: -21,66 + 12769: -7,66 + 12770: 5,70 + 12806: -21,59 + 12813: -7,59 + 13580: -30,-80 + 14418: -61,20 + 14441: -66,13 + 14485: -20,21 + 14491: 16,21 + 15389: -43,3 + 15403: -43,7 + 15900: 79,-1 + 15901: 83,-1 + 15902: 87,-1 + 16037: 91,15 + 16043: 91,15 + 16792: -53,7 + 16793: -53,3 + 16954: -59,3 + 17121: -49,-12 + 17122: -49,-18 + 17163: -71,-9 + 17406: -71,-9 + 17709: -82,13 + 17710: -82,15 + 17711: -82,15 + 17881: -54,19 + 18091: -54,35 + 18092: -57,38 + 18094: -54,38 + 18117: -55,25 + 18563: 12,-11 + 19014: 68,10 + 19813: -9,-40 + 20113: 64,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 4046: -20,25 - 4114: 4,25 - 4115: 7,25 + 4044: -20,25 + 4112: 4,25 + 4113: 7,25 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNe decals: - 4194: -11,15 - 4281: 4,16 - 4284: 7,15 - 4298: 11,15 - 4310: 14,15 - 15257: -6,14 - 15258: -12,15 - 15259: 1,16 - 15260: 8,14 - 15261: 10,15 - 21348: -18,11 - 21359: -18,15 + 4192: -11,15 + 4279: 4,16 + 4282: 7,15 + 4296: 11,15 + 4308: 14,15 + 15255: -6,14 + 15256: -12,15 + 15257: 1,16 + 15258: 8,14 + 15259: 10,15 + 21346: -18,11 + 21357: -18,15 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNe decals: - 2984: -26,53 - 2985: -27,54 + 2982: -26,53 + 2983: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNe decals: - 11783: -7,-38 - 11784: -4,-40 - 11791: -7,-38 - 11792: -5,-39 - 12161: -30,-48 - 12666: -50,-28 - 12670: -51,-27 + 11781: -7,-38 + 11782: -4,-40 + 11789: -7,-38 + 11790: -5,-39 + 12159: -30,-48 + 12664: -50,-28 + 12668: -51,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNe decals: - 7437: 36,9 - 7439: 37,8 - 7442: 40,1 - 7447: 48,12 - 7451: 47,13 - 7461: 47,-3 - 7469: 73,19 - 7471: 53,9 - 7475: 73,3 - 7502: 51,13 - 7503: 51,13 - 7517: 47,23 - 7520: 48,16 - 7528: 52,19 - 7529: 54,17 - 7542: 57,19 - 7568: 59,25 - 7625: 52,-3 - 7653: 60,12 - 7672: 75,23 - 7681: 76,22 - 7686: 75,25 - 7691: 74,9 - 15593: 74,1 - 19075: 67,-1 - 19082: 44,0 - 19096: 36,6 - 19115: 37,4 - 19147: 44,8 - 19148: 44,12 - 19184: 47,19 - 19235: 71,-4 - 19238: 69,-3 - 19364: 55,5 - 19385: 70,-1 - 19670: 51,21 - 19671: 54,21 - 19672: 50,28 - 19673: 55,28 - 20057: 58,31 + 7435: 36,9 + 7437: 37,8 + 7440: 40,1 + 7445: 48,12 + 7449: 47,13 + 7459: 47,-3 + 7467: 73,19 + 7469: 53,9 + 7473: 73,3 + 7500: 51,13 + 7501: 51,13 + 7515: 47,23 + 7518: 48,16 + 7526: 52,19 + 7527: 54,17 + 7540: 57,19 + 7566: 59,25 + 7623: 52,-3 + 7651: 60,12 + 7670: 75,23 + 7679: 76,22 + 7684: 75,25 + 7689: 74,9 + 15591: 74,1 + 19073: 67,-1 + 19080: 44,0 + 19094: 36,6 + 19113: 37,4 + 19145: 44,8 + 19146: 44,12 + 19182: 47,19 + 19233: 71,-4 + 19236: 69,-3 + 19362: 55,5 + 19383: 70,-1 + 19668: 51,21 + 19669: 54,21 + 19670: 50,28 + 19671: 55,28 + 20055: 58,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNe decals: - 17587: -66,4 - 17613: -61,6 - 17614: -61,10 - 17667: -72,8 + 17585: -66,4 + 17611: -61,6 + 17612: -61,10 + 17665: -72,8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1977: -9,33 - 1983: -12,33 - 2032: -16,28 - 2405: -33,37 - 2407: -31,37 - 2408: -30,36 - 2419: -10,45 - 2422: -10,43 - 2423: -10,43 - 2550: -7,43 - 2551: -6,37 - 2622: -2,40 - 2627: -3,40 - 3217: -3,64 - 3218: -2,61 - 3449: -3,64 - 3882: 19,67 - 3885: 22,67 - 3886: 23,66 - 3947: 17,61 - 3952: 18,60 - 5734: 11,1 - 5740: 8,3 - 5824: -15,-5 - 5870: -10,-3 - 6588: -24,-5 - 6633: -24,-7 - 7255: 23,-8 - 7256: 23,-2 - 7259: 22,2 - 7306: 27,9 - 7413: 37,4 - 7719: 36,20 - 7720: 36,20 - 7726: 43,20 - 8523: 56,-24 - 8529: 56,-20 - 8530: 56,-20 - 8535: 52,-23 - 9032: -8,-28 - 9033: -8,-23 - 9039: -4,-23 - 9044: -4,-27 - 9045: -15,-23 - 9049: -16,-27 - 9071: 3,-23 - 9072: 10,-23 - 9073: 14,-23 - 9074: 14,-27 - 9075: 2,-27 - 9090: 10,-28 - 10457: 4,-49 - 10481: 13,-60 - 10482: 12,-59 - 10502: 10,-58 - 12434: -17,-74 - 12452: -17,-65 - 12565: -14,-78 - 12586: -20,-81 - 12621: -23,-66 - 12635: -24,-64 - 12714: -38,27 - 13577: -31,-79 - 13581: -37,-79 - 13585: -37,-80 - 15520: 60,-31 - 15661: 79,1 - 15662: 84,1 - 15663: 88,1 - 15680: 92,7 - 15759: 95,3 - 16810: -48,6 - 16876: -53,-1 - 16877: -56,1 - 16878: -53,-7 - 16879: -53,-12 - 16880: -55,-17 - 18374: -64,-7 - 18375: -69,-7 - 18376: -58,-8 - 18406: -50,-38 - 19467: -9,27 - 19468: -9,30 - 19526: -12,33 - 19536: -9,30 - 19540: -9,27 - 19544: -9,33 - 19942: 96,2 - 20080: -1,54 + 1975: -9,33 + 1981: -12,33 + 2030: -16,28 + 2403: -33,37 + 2405: -31,37 + 2406: -30,36 + 2417: -10,45 + 2420: -10,43 + 2421: -10,43 + 2548: -7,43 + 2549: -6,37 + 2620: -2,40 + 2625: -3,40 + 3215: -3,64 + 3216: -2,61 + 3447: -3,64 + 3880: 19,67 + 3883: 22,67 + 3884: 23,66 + 3945: 17,61 + 3950: 18,60 + 5732: 11,1 + 5738: 8,3 + 5822: -15,-5 + 5868: -10,-3 + 6586: -24,-5 + 6631: -24,-7 + 7253: 23,-8 + 7254: 23,-2 + 7257: 22,2 + 7304: 27,9 + 7411: 37,4 + 7717: 36,20 + 7718: 36,20 + 7724: 43,20 + 8521: 56,-24 + 8527: 56,-20 + 8528: 56,-20 + 8533: 52,-23 + 9030: -8,-28 + 9031: -8,-23 + 9037: -4,-23 + 9042: -4,-27 + 9043: -15,-23 + 9047: -16,-27 + 9069: 3,-23 + 9070: 10,-23 + 9071: 14,-23 + 9072: 14,-27 + 9073: 2,-27 + 9088: 10,-28 + 10455: 4,-49 + 10479: 13,-60 + 10480: 12,-59 + 10500: 10,-58 + 12432: -17,-74 + 12450: -17,-65 + 12563: -14,-78 + 12584: -20,-81 + 12619: -23,-66 + 12633: -24,-64 + 12712: -38,27 + 13575: -31,-79 + 13579: -37,-79 + 13583: -37,-80 + 15518: 60,-31 + 15659: 79,1 + 15660: 84,1 + 15661: 88,1 + 15678: 92,7 + 15757: 95,3 + 16808: -48,6 + 16874: -53,-1 + 16875: -56,1 + 16876: -53,-7 + 16877: -53,-12 + 16878: -55,-17 + 18372: -64,-7 + 18373: -69,-7 + 18374: -58,-8 + 18404: -50,-38 + 19465: -9,27 + 19466: -9,30 + 19524: -12,33 + 19534: -9,30 + 19538: -9,27 + 19542: -9,33 + 19940: 96,2 + 20078: -1,54 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNw decals: - 4178: -16,15 - 4184: -13,15 - 4195: -9,15 - 4283: 9,15 - 5528: -6,16 - 15254: -10,14 - 15256: -12,15 - 15262: 10,15 - 15273: 4,14 - 21338: -16,15 - 21351: 16,11 - 21356: 16,15 + 4176: -16,15 + 4182: -13,15 + 4193: -9,15 + 4281: 9,15 + 5526: -6,16 + 15252: -10,14 + 15254: -12,15 + 15260: 10,15 + 15271: 4,14 + 21336: -16,15 + 21349: 16,11 + 21354: 16,15 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw decals: - 15253: -10,14 - 19553: -3,16 + 15251: -10,14 + 19551: -3,16 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNw decals: - 2976: -27,53 + 2974: -27,53 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNw decals: - 11782: -7,-38 - 11787: -11,-41 - 11790: -7,-38 - 11793: -10,-39 - 12155: -30,-46 - 12160: -23,-48 + 11780: -7,-38 + 11785: -11,-41 + 11788: -7,-38 + 11791: -10,-39 + 12153: -30,-46 + 12158: -23,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNw decals: - 7399: 39,6 - 7410: 39,4 - 7430: 39,8 - 7432: 46,12 - 7435: 36,9 - 7436: 36,9 - 7441: 40,1 - 7444: 46,0 - 7450: 47,13 - 7460: 47,-3 - 7468: 73,19 - 7470: 53,9 - 7472: 72,1 - 7474: 73,3 - 7486: 50,8 - 7489: 50,4 - 7501: 51,13 - 7507: 50,12 - 7523: 45,20 - 7527: 52,19 - 7530: 50,16 - 7546: 57,19 - 7547: 56,17 - 7556: 49,23 - 7624: 52,-3 - 7657: 72,6 - 7658: 72,13 - 7660: 72,18 - 7671: 75,23 - 7687: 75,25 - 15584: 72,-1 - 19095: 36,6 - 19114: 34,4 - 19237: 69,-3 - 19387: 69,-1 - 19418: -20,-26 - 19666: 53,28 - 19667: 58,28 - 19668: 57,21 - 19669: 54,21 - 20054: 50,31 + 7397: 39,6 + 7408: 39,4 + 7428: 39,8 + 7430: 46,12 + 7433: 36,9 + 7434: 36,9 + 7439: 40,1 + 7442: 46,0 + 7448: 47,13 + 7458: 47,-3 + 7466: 73,19 + 7468: 53,9 + 7470: 72,1 + 7472: 73,3 + 7484: 50,8 + 7487: 50,4 + 7499: 51,13 + 7505: 50,12 + 7521: 45,20 + 7525: 52,19 + 7528: 50,16 + 7544: 57,19 + 7545: 56,17 + 7554: 49,23 + 7622: 52,-3 + 7655: 72,6 + 7656: 72,13 + 7658: 72,18 + 7669: 75,23 + 7685: 75,25 + 15582: 72,-1 + 19093: 36,6 + 19112: 34,4 + 19235: 69,-3 + 19385: 69,-1 + 19416: -20,-26 + 19664: 53,28 + 19665: 58,28 + 19666: 57,21 + 19667: 54,21 + 20052: 50,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNw decals: - 17586: -61,4 - 17666: -72,8 - 17844: -59,6 + 17584: -61,4 + 17664: -72,8 + 17842: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1984: -10,33 - 2034: -17,30 - 2039: -15,34 - 2386: -30,32 - 2387: -29,33 - 2406: -31,37 - 2536: -8,45 - 2538: -8,43 - 2625: -4,37 - 2626: -3,40 - 2692: -1,51 - 2728: -4,54 - 3225: -2,60 - 3883: 21,67 - 3953: 16,62 - 4672: 21,24 - 5741: 8,3 - 5834: -13,-5 - 5869: -10,-3 - 6586: -26,-6 - 6587: -24,-5 - 6632: -24,-7 - 7251: 20,-3 - 7258: 22,2 - 7382: 34,4 - 8524: 62,-24 - 8525: 62,-24 - 8534: 52,-23 - 9031: -12,-28 - 9035: -12,-23 - 9038: -5,-23 - 9043: -4,-27 - 9046: -16,-23 - 9050: -16,-27 - 9066: 2,-23 - 9067: 6,-23 - 9068: 13,-23 - 9069: 14,-27 - 9070: 14,-27 - 9076: 2,-27 - 9089: 6,-28 - 10458: 4,-49 - 10466: 2,-51 - 10479: 11,-60 - 10483: 12,-59 - 10707: 80,-47 - 10708: 80,-47 - 12433: -17,-74 - 12451: -17,-65 - 12564: -14,-78 - 12579: -17,-80 - 12592: -23,-78 - 12613: -23,-72 - 12636: -24,-64 - 12717: -38,26 - 12878: -18,-81 - 13593: -35,-79 - 15519: 58,-31 - 15658: 77,1 - 15659: 81,1 - 15660: 86,1 - 15679: 92,7 - 15757: 94,3 - 15758: 93,2 - 15867: 81,-2 - 15898: 85,-2 - 15899: 89,-2 - 15925: 95,13 - 16809: -48,6 - 16874: -53,-1 - 16875: -58,1 - 16881: -53,-12 - 16882: -57,-17 - 16883: -53,-7 - 17145: -46,-18 - 18112: -53,35 - 18371: -72,-7 - 18372: -67,-7 - 18373: -60,-8 - 19486: -14,31 - 19525: -10,33 - 21412: 22,15 + 1982: -10,33 + 2032: -17,30 + 2037: -15,34 + 2384: -30,32 + 2385: -29,33 + 2404: -31,37 + 2534: -8,45 + 2536: -8,43 + 2623: -4,37 + 2624: -3,40 + 2690: -1,51 + 2726: -4,54 + 3223: -2,60 + 3881: 21,67 + 3951: 16,62 + 4670: 21,24 + 5739: 8,3 + 5832: -13,-5 + 5867: -10,-3 + 6584: -26,-6 + 6585: -24,-5 + 6630: -24,-7 + 7249: 20,-3 + 7256: 22,2 + 7380: 34,4 + 8522: 62,-24 + 8523: 62,-24 + 8532: 52,-23 + 9029: -12,-28 + 9033: -12,-23 + 9036: -5,-23 + 9041: -4,-27 + 9044: -16,-23 + 9048: -16,-27 + 9064: 2,-23 + 9065: 6,-23 + 9066: 13,-23 + 9067: 14,-27 + 9068: 14,-27 + 9074: 2,-27 + 9087: 6,-28 + 10456: 4,-49 + 10464: 2,-51 + 10477: 11,-60 + 10481: 12,-59 + 10705: 80,-47 + 10706: 80,-47 + 12431: -17,-74 + 12449: -17,-65 + 12562: -14,-78 + 12577: -17,-80 + 12590: -23,-78 + 12611: -23,-72 + 12634: -24,-64 + 12715: -38,26 + 12876: -18,-81 + 13591: -35,-79 + 15517: 58,-31 + 15656: 77,1 + 15657: 81,1 + 15658: 86,1 + 15677: 92,7 + 15755: 94,3 + 15756: 93,2 + 15865: 81,-2 + 15896: 85,-2 + 15897: 89,-2 + 15923: 95,13 + 16807: -48,6 + 16872: -53,-1 + 16873: -58,1 + 16879: -53,-12 + 16880: -57,-17 + 16881: -53,-7 + 17143: -46,-18 + 18110: -53,35 + 18369: -72,-7 + 18370: -67,-7 + 18371: -60,-8 + 19484: -14,31 + 19523: -10,33 + 21410: 22,15 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSe decals: - 4198: -10,13 - 4286: 8,13 - 4296: -4,15 - 4297: 11,14 - 4309: 14,14 - 4319: -2,15 - 15263: -12,14 - 15264: -6,14 - 15265: 1,16 - 15266: 8,14 - 15267: 10,14 - 21349: -18,18 - 21358: -18,14 + 4196: -10,13 + 4284: 8,13 + 4294: -4,15 + 4295: 11,14 + 4307: 14,14 + 4317: -2,15 + 15261: -12,14 + 15262: -6,14 + 15263: 1,16 + 15264: 8,14 + 15265: 10,14 + 21347: -18,18 + 21356: -18,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSe decals: - 2983: -26,52 + 2981: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSe decals: - 11785: -4,-41 - 11788: -6,-44 - 11794: -5,-43 - 12158: -24,-48 - 12668: -50,-28 - 12669: -51,-29 + 11783: -4,-41 + 11786: -6,-44 + 11792: -5,-43 + 12156: -24,-48 + 12666: -50,-28 + 12667: -51,-29 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSe decals: - 7433: 36,11 - 7445: 47,-1 - 7448: 48,12 - 7449: 48,12 - 7465: 61,-1 - 7466: 52,-1 - 7467: 65,-1 - 7504: 53,11 - 7515: 47,15 - 7518: 47,22 - 7519: 48,16 - 7526: 51,15 - 7531: 54,17 - 7545: 57,19 - 7553: 52,21 - 7566: 57,21 - 7567: 59,25 - 7652: 60,12 - 7678: 73,21 - 7682: 76,22 - 7689: 75,25 - 7690: 74,9 - 7861: 73,5 - 15594: 74,1 - 19083: 44,0 - 19113: 35,4 - 19116: 37,6 - 19121: 36,8 - 19149: 44,8 - 19150: 44,12 - 19151: 40,11 - 19236: 71,-4 - 19365: 55,4 - 19374: 69,-1 - 19384: 70,1 - 19414: -18,-24 - 19659: 51,28 - 19660: 54,28 - 19661: 50,31 - 19662: 52,32 + 7431: 36,11 + 7443: 47,-1 + 7446: 48,12 + 7447: 48,12 + 7463: 61,-1 + 7464: 52,-1 + 7465: 65,-1 + 7502: 53,11 + 7513: 47,15 + 7516: 47,22 + 7517: 48,16 + 7524: 51,15 + 7529: 54,17 + 7543: 57,19 + 7551: 52,21 + 7564: 57,21 + 7565: 59,25 + 7650: 60,12 + 7676: 73,21 + 7680: 76,22 + 7687: 75,25 + 7688: 74,9 + 7859: 73,5 + 15592: 74,1 + 19081: 44,0 + 19111: 35,4 + 19114: 37,6 + 19119: 36,8 + 19147: 44,8 + 19148: 44,12 + 19149: 40,11 + 19234: 71,-4 + 19363: 55,4 + 19372: 69,-1 + 19382: 70,1 + 19412: -18,-24 + 19657: 51,28 + 19658: 54,28 + 19659: 50,31 + 19660: 52,32 - node: color: '#EFB341FF' id: BrickTileDarkInnerSe decals: - 17584: -66,11 - 17615: -61,10 - 17616: -61,6 - 17683: -73,4 + 17582: -66,11 + 17613: -61,10 + 17614: -61,6 + 17681: -73,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1982: -9,33 - 2031: -16,32 - 2050: -18,35 - 2403: -33,33 - 2409: -31,33 - 2410: -30,34 - 2420: -10,45 - 2426: -10,39 - 2552: -6,37 - 2553: -6,37 - 2621: -2,40 - 2683: 3,50 - 2722: -5,54 - 2729: -6,52 - 3216: -3,61 - 3219: -2,61 - 3450: -3,61 - 3887: 23,66 - 3944: 17,58 - 5717: 8,5 - 5735: 11,1 - 5778: 10,0 - 5825: -15,-5 - 5839: -10,-6 - 6590: -24,-9 - 6635: -24,-7 - 7254: 22,-8 - 7257: 23,-2 - 7307: 27,9 - 7346: 29,8 - 7385: 35,4 - 7414: 37,6 - 7721: 36,20 - 7722: 36,20 - 7727: 43,20 - 8527: 56,-17 - 8528: 56,-17 - 8531: 56,-21 - 9029: -8,-28 - 9036: -8,-23 - 9040: -4,-23 - 9041: -4,-28 - 9048: -15,-23 - 9052: -16,-28 - 9059: 10,-23 - 9060: 14,-23 - 9061: 14,-28 - 9078: 2,-28 - 9079: 3,-23 - 9091: 10,-28 - 10469: 10,-53 - 10478: 13,-60 - 10485: 12,-61 - 10723: 73,-40 - 12436: -17,-67 - 12566: -13,-78 - 12587: -20,-81 - 12620: -23,-67 - 12713: -38,27 - 13580: -37,-79 - 13595: -31,-79 - 13600: -34,-79 - 15394: -42,3 - 15518: 60,-10 - 15664: 79,1 - 15665: 84,1 - 15666: 88,1 - 15674: 92,9 - 15712: 92,6 - 15761: 95,1 - 15777: 96,2 - 15911: 93,10 - 15917: 97,14 - 15919: 96,14 - 16811: -49,4 - 16889: -55,-17 - 16890: -53,-15 - 16891: -53,-9 - 16892: -53,-4 - 16893: -56,1 - 18380: -64,-7 - 18381: -69,-7 - 19466: -9,27 - 19469: -9,30 - 19475: -12,27 - 19530: -12,27 - 19535: -9,30 - 19537: -9,27 - 19543: -9,33 - 19850: -29,-24 - 20139: 62,28 - 20140: 67,28 + 1980: -9,33 + 2029: -16,32 + 2048: -18,35 + 2401: -33,33 + 2407: -31,33 + 2408: -30,34 + 2418: -10,45 + 2424: -10,39 + 2550: -6,37 + 2551: -6,37 + 2619: -2,40 + 2681: 3,50 + 2720: -5,54 + 2727: -6,52 + 3214: -3,61 + 3217: -2,61 + 3448: -3,61 + 3885: 23,66 + 3942: 17,58 + 5715: 8,5 + 5733: 11,1 + 5776: 10,0 + 5823: -15,-5 + 5837: -10,-6 + 6588: -24,-9 + 6633: -24,-7 + 7252: 22,-8 + 7255: 23,-2 + 7305: 27,9 + 7344: 29,8 + 7383: 35,4 + 7412: 37,6 + 7719: 36,20 + 7720: 36,20 + 7725: 43,20 + 8525: 56,-17 + 8526: 56,-17 + 8529: 56,-21 + 9027: -8,-28 + 9034: -8,-23 + 9038: -4,-23 + 9039: -4,-28 + 9046: -15,-23 + 9050: -16,-28 + 9057: 10,-23 + 9058: 14,-23 + 9059: 14,-28 + 9076: 2,-28 + 9077: 3,-23 + 9089: 10,-28 + 10467: 10,-53 + 10476: 13,-60 + 10483: 12,-61 + 10721: 73,-40 + 12434: -17,-67 + 12564: -13,-78 + 12585: -20,-81 + 12618: -23,-67 + 12711: -38,27 + 13578: -37,-79 + 13593: -31,-79 + 13598: -34,-79 + 15392: -42,3 + 15516: 60,-10 + 15662: 79,1 + 15663: 84,1 + 15664: 88,1 + 15672: 92,9 + 15710: 92,6 + 15759: 95,1 + 15775: 96,2 + 15909: 93,10 + 15915: 97,14 + 15917: 96,14 + 16809: -49,4 + 16887: -55,-17 + 16888: -53,-15 + 16889: -53,-9 + 16890: -53,-4 + 16891: -56,1 + 18378: -64,-7 + 18379: -69,-7 + 19464: -9,27 + 19467: -9,30 + 19473: -12,27 + 19528: -12,27 + 19533: -9,30 + 19535: -9,27 + 19541: -9,33 + 19848: -29,-24 + 20137: 62,28 + 20138: 67,28 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSw decals: - 4179: -16,14 - 4185: -13,14 - 4197: -10,13 - 4285: 8,13 - 4295: 2,15 - 4318: -2,15 - 9963: 30,-44 - 15268: 4,14 - 15269: 10,14 - 15270: -3,16 - 15271: -10,14 - 15272: -12,14 - 21337: -16,14 - 21350: 16,18 - 21357: 16,14 + 4177: -16,14 + 4183: -13,14 + 4195: -10,13 + 4283: 8,13 + 4293: 2,15 + 4316: -2,15 + 9961: 30,-44 + 15266: 4,14 + 15267: 10,14 + 15268: -3,16 + 15269: -10,14 + 15270: -12,14 + 21335: -16,14 + 21348: 16,18 + 21355: 16,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSw decals: - 2977: -27,53 - 2982: -26,52 + 2975: -27,53 + 2980: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSw decals: - 11786: -11,-41 - 11789: -6,-44 - 12156: -30,-46 - 12157: -24,-48 + 11784: -11,-41 + 11787: -6,-44 + 12154: -30,-46 + 12155: -24,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSw decals: - 7398: 39,4 - 7411: 39,6 - 7429: 39,8 - 7431: 46,12 - 7434: 36,11 - 7443: 46,0 - 7446: 47,-1 - 7462: 52,-1 - 7463: 61,-1 - 7464: 65,-1 - 7473: 72,1 - 7487: 50,8 - 7488: 50,4 - 7505: 53,11 - 7506: 50,12 - 7516: 47,15 - 7524: 45,20 - 7525: 51,15 - 7532: 50,16 - 7548: 56,17 - 7549: 56,17 - 7554: 52,21 - 7555: 49,22 - 7565: 57,21 - 7656: 72,6 - 7659: 72,13 - 7661: 72,18 - 7677: 73,21 - 7688: 75,25 - 7862: 73,5 - 15583: 72,-1 - 19110: 34,6 - 19111: 35,4 - 19122: 36,8 - 19152: 40,11 - 19375: 69,-1 - 19386: 69,1 - 19417: -20,-26 - 19663: 56,32 - 19664: 58,31 - 19665: 57,28 - 19696: 54,28 + 7396: 39,4 + 7409: 39,6 + 7427: 39,8 + 7429: 46,12 + 7432: 36,11 + 7441: 46,0 + 7444: 47,-1 + 7460: 52,-1 + 7461: 61,-1 + 7462: 65,-1 + 7471: 72,1 + 7485: 50,8 + 7486: 50,4 + 7503: 53,11 + 7504: 50,12 + 7514: 47,15 + 7522: 45,20 + 7523: 51,15 + 7530: 50,16 + 7546: 56,17 + 7547: 56,17 + 7552: 52,21 + 7553: 49,22 + 7563: 57,21 + 7654: 72,6 + 7657: 72,13 + 7659: 72,18 + 7675: 73,21 + 7686: 75,25 + 7860: 73,5 + 15581: 72,-1 + 19108: 34,6 + 19109: 35,4 + 19120: 36,8 + 19150: 40,11 + 19373: 69,-1 + 19384: 69,1 + 19415: -20,-26 + 19661: 56,32 + 19662: 58,31 + 19663: 57,28 + 19694: 54,28 - node: color: '#EFB341FF' id: BrickTileDarkInnerSw decals: - 17585: -61,11 - 17682: -73,4 - 17843: -59,6 + 17583: -61,11 + 17680: -73,4 + 17841: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1994: -10,27 - 2033: -17,30 - 2343: -28,38 - 2388: -29,37 - 2389: -30,38 - 2404: -31,33 - 2537: -8,45 - 2539: -8,39 - 2624: -4,37 - 2682: 3,50 - 2691: -1,51 - 2730: -6,52 - 3943: 17,58 - 5718: 8,5 - 5777: 10,0 - 5835: -13,-5 - 5838: -10,-6 - 6585: -26,-6 - 6589: -24,-9 - 6634: -24,-7 - 7252: 20,-3 - 7253: 22,-8 - 7383: 34,6 - 7384: 35,4 - 8526: 62,-17 - 9030: -12,-28 - 9034: -12,-23 - 9037: -5,-23 - 9042: -4,-28 - 9047: -16,-23 - 9051: -16,-28 - 9062: 14,-28 - 9063: 2,-23 - 9064: 6,-23 - 9065: 13,-23 - 9077: 2,-28 - 9092: 6,-28 - 10464: 2,-51 - 10468: 10,-53 - 10480: 11,-60 - 10484: 12,-61 - 10722: 73,-40 - 12435: -17,-67 - 12578: -17,-78 - 12593: -23,-78 - 12619: -23,-76 - 12634: -23,-70 - 12877: -18,-81 - 13594: -35,-79 - 15395: -42,3 - 15517: 58,-10 - 15667: 81,1 - 15668: 77,1 - 15675: 92,9 - 15711: 92,6 - 15760: 94,1 - 15776: 93,2 - 15918: 97,14 - 15924: 95,13 - 16884: -58,1 - 16885: -53,-4 - 16886: -53,-9 - 16887: -53,-15 - 16888: -57,-17 - 17146: -46,-12 - 18110: -53,38 - 18111: -53,35 - 18126: -52,25 - 18377: -72,-7 - 18378: -67,-7 - 18379: -60,-8 - 19464: -9,26 - 19487: -14,34 - 19529: -10,27 - 19546: -14,29 - 19849: -29,-24 - 20019: 86,1 - 20141: 64,28 - 20142: 62,28 - 21413: 22,14 + 1992: -10,27 + 2031: -17,30 + 2341: -28,38 + 2386: -29,37 + 2387: -30,38 + 2402: -31,33 + 2535: -8,45 + 2537: -8,39 + 2622: -4,37 + 2680: 3,50 + 2689: -1,51 + 2728: -6,52 + 3941: 17,58 + 5716: 8,5 + 5775: 10,0 + 5833: -13,-5 + 5836: -10,-6 + 6583: -26,-6 + 6587: -24,-9 + 6632: -24,-7 + 7250: 20,-3 + 7251: 22,-8 + 7381: 34,6 + 7382: 35,4 + 8524: 62,-17 + 9028: -12,-28 + 9032: -12,-23 + 9035: -5,-23 + 9040: -4,-28 + 9045: -16,-23 + 9049: -16,-28 + 9060: 14,-28 + 9061: 2,-23 + 9062: 6,-23 + 9063: 13,-23 + 9075: 2,-28 + 9090: 6,-28 + 10462: 2,-51 + 10466: 10,-53 + 10478: 11,-60 + 10482: 12,-61 + 10720: 73,-40 + 12433: -17,-67 + 12576: -17,-78 + 12591: -23,-78 + 12617: -23,-76 + 12632: -23,-70 + 12875: -18,-81 + 13592: -35,-79 + 15393: -42,3 + 15515: 58,-10 + 15665: 81,1 + 15666: 77,1 + 15673: 92,9 + 15709: 92,6 + 15758: 94,1 + 15774: 93,2 + 15916: 97,14 + 15922: 95,13 + 16882: -58,1 + 16883: -53,-4 + 16884: -53,-9 + 16885: -53,-15 + 16886: -57,-17 + 17144: -46,-12 + 18108: -53,38 + 18109: -53,35 + 18124: -52,25 + 18375: -72,-7 + 18376: -67,-7 + 18377: -60,-8 + 19462: -9,26 + 19485: -14,34 + 19527: -10,27 + 19544: -14,29 + 19847: -29,-24 + 20017: 86,1 + 20139: 64,28 + 20140: 62,28 + 21411: 22,14 - node: color: '#8CB7E8FF' id: BrickTileDarkLineE decals: - 4176: -17,14 - 4177: -17,15 - 4182: -14,15 - 4183: -14,14 - 4253: -11,14 - 4254: -13,14 - 4255: -13,15 - 4256: -4,16 - 4257: 3,14 - 4258: 9,14 - 4259: 9,15 - 4278: 4,17 - 4289: -4,14 - 9955: 29,-44 - 21340: -18,16 - 21341: -18,17 - 21342: -18,13 - 21343: -18,12 + 4174: -17,14 + 4175: -17,15 + 4180: -14,15 + 4181: -14,14 + 4251: -11,14 + 4252: -13,14 + 4253: -13,15 + 4254: -4,16 + 4255: 3,14 + 4256: 9,14 + 4257: 9,15 + 4276: 4,17 + 4287: -4,14 + 9953: 29,-44 + 21338: -18,16 + 21339: -18,17 + 21340: -18,13 + 21341: -18,12 - node: color: '#96A4EBFF' id: BrickTileDarkLineE decals: - 21316: -18,13 - 21317: -18,12 - 21318: -18,16 - 21319: -18,17 + 21314: -18,13 + 21315: -18,12 + 21316: -18,16 + 21317: -18,17 - node: color: '#B18BDAFF' id: BrickTileDarkLineE decals: - 11775: -4,-42 - 11780: -12,-41 - 12131: -30,-45 - 12132: -30,-46 - 12133: -30,-47 - 12154: -31,-46 - 12279: -23,-47 - 12280: -23,-46 - 12281: -23,-45 - 12664: -51,-26 - 12665: -51,-30 + 11773: -4,-42 + 11778: -12,-41 + 12129: -30,-45 + 12130: -30,-46 + 12131: -30,-47 + 12152: -31,-46 + 12277: -23,-47 + 12278: -23,-46 + 12279: -23,-45 + 12662: -51,-26 + 12663: -51,-30 - node: color: '#DA8B8BFF' id: BrickTileDarkLineE decals: - 3699: -1,61 - 3702: -1,61 - 4599: 11,30 - 7396: 38,4 - 7397: 38,6 - 7407: 49,-1 - 7408: 49,0 - 7409: 49,1 - 7416: 45,8 - 7419: 45,12 - 7428: 45,0 - 7458: 48,-4 - 7492: 49,4 - 7495: 49,8 - 7533: 49,16 - 7550: 55,17 - 7561: 48,22 - 7562: 48,23 - 7563: 48,23 - 7572: 49,12 - 7573: 44,20 - 7616: 53,-4 - 7617: 58,-4 - 7655: 71,6 - 7664: 71,13 - 7665: 71,18 - 7794: 71,-1 - 7795: 71,1 - 10542: 2,-60 - 10563: 3,-67 - 10564: 3,-66 - 10565: 3,-66 - 10566: 3,-75 - 10567: 3,-75 - 10568: 3,-76 - 10572: 7,-75 - 10573: 7,-77 - 10575: 7,-65 - 10576: 7,-65 - 15380: -49,9 - 15588: 74,0 - 15592: 74,2 - 19046: 74,6 - 19047: 74,7 - 19048: 74,8 - 19049: 74,10 - 19050: 74,11 - 19051: 74,13 - 19052: 74,12 - 19053: 74,14 - 19054: 74,15 - 19055: 74,17 - 19056: 74,16 - 19057: 74,18 - 19076: 67,0 - 19102: 33,6 - 19103: 33,4 - 19108: 37,5 - 19119: 38,4 - 19120: 38,6 - 19129: 41,0 - 19153: 48,11 - 19182: 47,21 - 19183: 47,20 - 19186: 48,17 - 19187: 48,18 - 19188: 59,22 - 19189: 59,23 - 19190: 59,24 - 19196: 59,28 - 19197: 59,27 - 19198: 59,26 - 19217: 54,16 - 19218: 54,18 - 19221: 57,17 - 19224: 57,18 - 19225: 57,16 - 19348: 55,6 - 19349: 55,7 - 19350: 55,8 - 19377: 68,-1 - 19378: 68,1 - 19383: 70,0 - 19411: -18,-25 - 19412: -18,-26 - 19413: -18,-27 - 19416: -21,-26 - 19606: 51,27 - 19607: 51,26 - 19608: 51,26 - 19609: 51,25 - 19610: 51,24 - 19611: 51,23 - 19612: 51,22 - 19621: 54,27 - 19622: 54,26 - 19623: 54,26 - 19624: 54,25 - 19625: 54,24 - 19626: 54,23 - 19627: 54,22 - 19635: 59,31 - 19636: 59,30 - 19637: 59,30 - 19638: 59,29 - 19650: 50,29 - 19651: 50,30 + 3697: -1,61 + 3700: -1,61 + 4597: 11,30 + 7394: 38,4 + 7395: 38,6 + 7405: 49,-1 + 7406: 49,0 + 7407: 49,1 + 7414: 45,8 + 7417: 45,12 + 7426: 45,0 + 7456: 48,-4 + 7490: 49,4 + 7493: 49,8 + 7531: 49,16 + 7548: 55,17 + 7559: 48,22 + 7560: 48,23 + 7561: 48,23 + 7570: 49,12 + 7571: 44,20 + 7614: 53,-4 + 7615: 58,-4 + 7653: 71,6 + 7662: 71,13 + 7663: 71,18 + 7792: 71,-1 + 7793: 71,1 + 10540: 2,-60 + 10561: 3,-67 + 10562: 3,-66 + 10563: 3,-66 + 10564: 3,-75 + 10565: 3,-75 + 10566: 3,-76 + 10570: 7,-75 + 10571: 7,-77 + 10573: 7,-65 + 10574: 7,-65 + 15378: -49,9 + 15586: 74,0 + 15590: 74,2 + 19044: 74,6 + 19045: 74,7 + 19046: 74,8 + 19047: 74,10 + 19048: 74,11 + 19049: 74,13 + 19050: 74,12 + 19051: 74,14 + 19052: 74,15 + 19053: 74,17 + 19054: 74,16 + 19055: 74,18 + 19074: 67,0 + 19100: 33,6 + 19101: 33,4 + 19106: 37,5 + 19117: 38,4 + 19118: 38,6 + 19127: 41,0 + 19151: 48,11 + 19180: 47,21 + 19181: 47,20 + 19184: 48,17 + 19185: 48,18 + 19186: 59,22 + 19187: 59,23 + 19188: 59,24 + 19194: 59,28 + 19195: 59,27 + 19196: 59,26 + 19215: 54,16 + 19216: 54,18 + 19219: 57,17 + 19222: 57,18 + 19223: 57,16 + 19346: 55,6 + 19347: 55,7 + 19348: 55,8 + 19375: 68,-1 + 19376: 68,1 + 19381: 70,0 + 19409: -18,-25 + 19410: -18,-26 + 19411: -18,-27 + 19414: -21,-26 + 19604: 51,27 + 19605: 51,26 + 19606: 51,26 + 19607: 51,25 + 19608: 51,24 + 19609: 51,23 + 19610: 51,22 + 19619: 54,27 + 19620: 54,26 + 19621: 54,26 + 19622: 54,25 + 19623: 54,24 + 19624: 54,23 + 19625: 54,22 + 19633: 59,31 + 19634: 59,30 + 19635: 59,30 + 19636: 59,29 + 19648: 50,29 + 19649: 50,30 - node: color: '#EFB341FF' id: BrickTileDarkLineE decals: - 17578: -66,5 - 17579: -66,6 - 17580: -66,7 - 17581: -66,8 - 17582: -66,9 - 17583: -66,10 - 17592: -61,9 - 17593: -61,8 - 17594: -61,7 - 17595: -61,5 - 17676: -70,5 - 17677: -70,6 - 17678: -70,7 - 17841: -56,6 - 17842: -59,6 - 17845: -60,6 - 18273: -67,0 - 18274: -67,-1 - 18275: -67,-2 + 17576: -66,5 + 17577: -66,6 + 17578: -66,7 + 17579: -66,8 + 17580: -66,9 + 17581: -66,10 + 17590: -61,9 + 17591: -61,8 + 17592: -61,7 + 17593: -61,5 + 17674: -70,5 + 17675: -70,6 + 17676: -70,7 + 17839: -56,6 + 17840: -59,6 + 17843: -60,6 + 18271: -67,0 + 18272: -67,-1 + 18273: -67,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1978: -9,28 - 1979: -9,29 - 1980: -9,31 - 1981: -9,32 - 2022: -15,27 - 2025: -16,31 - 2026: -15,33 + 1976: -9,28 + 1977: -9,29 + 1978: -9,31 + 1979: -9,32 + 2020: -15,27 + 2023: -16,31 + 2024: -15,33 + 2025: -16,30 + 2026: -16,29 2027: -16,30 - 2028: -16,29 - 2029: -16,30 - 2030: -16,31 - 2035: -18,26 - 2038: -15,34 - 2042: -18,34 - 2043: -18,33 - 2044: -18,32 - 2045: -18,31 - 2046: -18,29 - 2047: -18,28 - 2048: -18,27 - 2049: -18,30 - 2337: -28,33 - 2338: -28,34 - 2339: -28,35 - 2340: -28,36 - 2341: -28,37 - 2421: -10,44 - 2424: -10,37 - 2425: -10,38 - 2520: -9,40 - 2521: -9,41 - 2522: -9,42 - 2540: -9,39 - 2541: -9,40 - 2542: -9,41 - 2543: -9,42 - 2544: -9,43 - 2547: -7,45 - 2548: -7,44 - 2549: -7,44 - 2554: -6,38 - 2555: -6,39 - 2556: -6,40 - 2557: -6,41 - 2558: -6,42 - 2559: -9,45 - 2611: -5,37 - 2618: -2,37 - 2619: -2,38 - 2620: -2,39 - 2676: 4,53 - 2677: 4,52 - 2678: 4,51 - 2693: -2,51 - 2717: -5,53 - 3142: -16,61 - 3143: -16,62 - 3144: -16,63 - 3145: -16,64 - 3146: -8,64 - 3147: -8,63 - 3148: -8,62 - 3149: -8,61 - 3200: -22,61 - 3201: -22,62 - 3202: -22,63 - 3203: -22,64 - 3204: -2,64 - 3205: -2,63 - 3206: -2,62 - 3208: -3,60 - 3209: -3,65 - 3437: -1,61 - 3945: 17,62 - 3948: 18,61 - 3987: -40,62 - 4668: 19,24 - 5253: -28,91 - 5254: -28,90 - 5255: -28,90 - 5256: -28,89 - 5257: -28,81 - 5258: -28,80 - 5259: -32,80 - 5260: -32,81 - 5261: -32,89 - 5262: -32,90 - 5263: -32,90 - 5264: -32,91 - 5332: -14,91 - 5333: -14,90 - 5334: -14,89 - 5340: -10,91 - 5341: -10,90 - 5342: -10,89 - 5351: -14,80 - 5352: -14,81 - 5355: -10,80 - 5356: -10,81 - 5362: 4,80 - 5363: 4,81 - 5364: 4,81 - 5365: 4,82 - 5646: -17,-20 - 5665: -7,9 - 5669: 5,9 - 5722: 11,6 - 5736: 11,2 - 5833: -14,-5 - 5840: -9,-4 - 5841: -9,-5 - 5950: 1,13 - 5989: -1,6 - 5990: -1,5 - 5991: -1,4 - 5992: -1,2 - 5993: -1,1 - 5994: -1,1 - 5995: -1,0 - 5996: -1,-2 - 5997: -1,-3 - 5998: -1,-4 - 5999: -1,-4 - 6000: -1,-6 - 6032: -8,-12 - 6033: -8,-16 - 6069: -12,-15 - 6070: -12,-14 - 6071: -12,-13 - 6072: -10,-15 - 6073: -10,-14 - 6074: -10,-13 - 6075: -14,-15 - 6076: -14,-14 - 6077: -14,-13 - 6180: -3,-20 - 6181: 1,-20 - 6182: 15,-20 - 6580: -22,-8 - 6581: -22,-7 - 6582: -22,-7 - 6583: -22,-6 - 6584: -22,-6 - 6621: -27,-6 - 6629: -25,-7 - 6630: -25,-7 - 6841: -33,9 - 6842: -33,10 - 6843: -33,11 - 6844: -33,11 - 6845: -33,12 - 6846: -33,12 + 2028: -16,31 + 2033: -18,26 + 2036: -15,34 + 2040: -18,34 + 2041: -18,33 + 2042: -18,32 + 2043: -18,31 + 2044: -18,29 + 2045: -18,28 + 2046: -18,27 + 2047: -18,30 + 2335: -28,33 + 2336: -28,34 + 2337: -28,35 + 2338: -28,36 + 2339: -28,37 + 2419: -10,44 + 2422: -10,37 + 2423: -10,38 + 2518: -9,40 + 2519: -9,41 + 2520: -9,42 + 2538: -9,39 + 2539: -9,40 + 2540: -9,41 + 2541: -9,42 + 2542: -9,43 + 2545: -7,45 + 2546: -7,44 + 2547: -7,44 + 2552: -6,38 + 2553: -6,39 + 2554: -6,40 + 2555: -6,41 + 2556: -6,42 + 2557: -9,45 + 2609: -5,37 + 2616: -2,37 + 2617: -2,38 + 2618: -2,39 + 2674: 4,53 + 2675: 4,52 + 2676: 4,51 + 2691: -2,51 + 2715: -5,53 + 3140: -16,61 + 3141: -16,62 + 3142: -16,63 + 3143: -16,64 + 3144: -8,64 + 3145: -8,63 + 3146: -8,62 + 3147: -8,61 + 3198: -22,61 + 3199: -22,62 + 3200: -22,63 + 3201: -22,64 + 3202: -2,64 + 3203: -2,63 + 3204: -2,62 + 3206: -3,60 + 3207: -3,65 + 3435: -1,61 + 3943: 17,62 + 3946: 18,61 + 3985: -40,62 + 4666: 19,24 + 5251: -28,91 + 5252: -28,90 + 5253: -28,90 + 5254: -28,89 + 5255: -28,81 + 5256: -28,80 + 5257: -32,80 + 5258: -32,81 + 5259: -32,89 + 5260: -32,90 + 5261: -32,90 + 5262: -32,91 + 5330: -14,91 + 5331: -14,90 + 5332: -14,89 + 5338: -10,91 + 5339: -10,90 + 5340: -10,89 + 5349: -14,80 + 5350: -14,81 + 5353: -10,80 + 5354: -10,81 + 5360: 4,80 + 5361: 4,81 + 5362: 4,81 + 5363: 4,82 + 5644: -17,-20 + 5663: -7,9 + 5667: 5,9 + 5720: 11,6 + 5734: 11,2 + 5831: -14,-5 + 5838: -9,-4 + 5839: -9,-5 + 5948: 1,13 + 5987: -1,6 + 5988: -1,5 + 5989: -1,4 + 5990: -1,2 + 5991: -1,1 + 5992: -1,1 + 5993: -1,0 + 5994: -1,-2 + 5995: -1,-3 + 5996: -1,-4 + 5997: -1,-4 + 5998: -1,-6 + 6030: -8,-12 + 6031: -8,-16 + 6067: -12,-15 + 6068: -12,-14 + 6069: -12,-13 + 6070: -10,-15 + 6071: -10,-14 + 6072: -10,-13 + 6073: -14,-15 + 6074: -14,-14 + 6075: -14,-13 + 6178: -3,-20 + 6179: 1,-20 + 6180: 15,-20 + 6578: -22,-8 + 6579: -22,-7 + 6580: -22,-7 + 6581: -22,-6 + 6582: -22,-6 + 6619: -27,-6 + 6627: -25,-7 + 6628: -25,-7 + 6839: -33,9 + 6840: -33,10 + 6841: -33,11 + 6842: -33,11 + 6843: -33,12 + 6844: -33,12 + 6845: -33,13 + 6846: -33,13 6847: -33,13 - 6848: -33,13 - 6849: -33,13 - 6850: -33,15 - 6851: -33,14 - 6852: -33,14 - 6860: -39,9 - 6861: -39,10 - 6862: -39,11 - 6863: -39,11 - 6864: -39,12 - 6865: -39,12 + 6848: -33,15 + 6849: -33,14 + 6850: -33,14 + 6858: -39,9 + 6859: -39,10 + 6860: -39,11 + 6861: -39,11 + 6862: -39,12 + 6863: -39,12 + 6864: -39,13 + 6865: -39,13 6866: -39,13 6867: -39,13 - 6868: -39,13 - 6869: -39,13 - 6870: -39,14 - 6871: -39,14 - 6872: -39,15 - 6873: -39,15 - 7042: 19,5 - 7056: 26,5 - 7096: 19,-11 - 7097: 26,-11 - 7233: 23,1 - 7234: 23,0 - 7235: 23,-1 - 7236: 23,-3 - 7237: 23,-4 - 7238: 23,-5 - 7239: 23,-6 - 7240: 23,-7 - 7261: 19,-3 - 7291: 36,0 - 7343: 33,9 - 7344: 33,10 - 7378: 33,4 - 7379: 33,6 - 7403: 49,0 - 7412: 37,5 - 7728: 43,19 - 7729: 43,21 - 8211: 42,-15 - 8212: 42,-15 - 8213: 42,-11 - 8517: 56,-18 - 8518: 56,-19 - 8519: 56,-22 - 8520: 56,-22 - 8521: 56,-23 - 8522: 56,-23 - 8539: 53,-24 - 8540: 53,-24 - 8541: 53,-25 - 8618: 65,-11 - 8619: 65,-30 - 8620: 60,-26 - 9011: 13,-28 - 9012: 13,-27 - 9013: 12,-23 - 9014: 5,-23 - 9015: -13,-23 - 9018: -6,-23 - 9019: -5,-27 - 9020: -5,-28 - 9028: -13,-28 - 9088: 5,-28 - 9122: -7,-70 - 9123: -7,-70 - 9124: -2,-70 - 9153: -8,-73 - 9154: -1,-73 - 9155: -1,-73 - 9701: 19,-35 - 10267: 37,-30 - 10301: 20,-52 - 10444: 12,-52 - 10445: 12,-51 - 10446: 12,-50 - 10465: 1,-51 - 10475: 10,-60 - 10499: 14,-59 - 10500: 14,-60 - 10501: 14,-61 - 10504: 12,-59 + 6868: -39,14 + 6869: -39,14 + 6870: -39,15 + 6871: -39,15 + 7040: 19,5 + 7054: 26,5 + 7094: 19,-11 + 7095: 26,-11 + 7231: 23,1 + 7232: 23,0 + 7233: 23,-1 + 7234: 23,-3 + 7235: 23,-4 + 7236: 23,-5 + 7237: 23,-6 + 7238: 23,-7 + 7259: 19,-3 + 7289: 36,0 + 7341: 33,9 + 7342: 33,10 + 7376: 33,4 + 7377: 33,6 + 7401: 49,0 + 7410: 37,5 + 7726: 43,19 + 7727: 43,21 + 8209: 42,-15 + 8210: 42,-15 + 8211: 42,-11 + 8515: 56,-18 + 8516: 56,-19 + 8517: 56,-22 + 8518: 56,-22 + 8519: 56,-23 + 8520: 56,-23 + 8537: 53,-24 + 8538: 53,-24 + 8539: 53,-25 + 8616: 65,-11 + 8617: 65,-30 + 8618: 60,-26 + 9009: 13,-28 + 9010: 13,-27 + 9011: 12,-23 + 9012: 5,-23 + 9013: -13,-23 + 9016: -6,-23 + 9017: -5,-27 + 9018: -5,-28 + 9026: -13,-28 + 9086: 5,-28 + 9120: -7,-70 + 9121: -7,-70 + 9122: -2,-70 + 9151: -8,-73 + 9152: -1,-73 + 9153: -1,-73 + 9699: 19,-35 + 10265: 37,-30 + 10299: 20,-52 + 10442: 12,-52 + 10443: 12,-51 + 10444: 12,-50 + 10463: 1,-51 + 10473: 10,-60 + 10497: 14,-59 + 10498: 14,-60 + 10499: 14,-61 + 10502: 12,-59 + 10503: 12,-60 + 10504: 12,-61 10505: 12,-60 10506: 12,-61 - 10507: 12,-60 - 10508: 12,-61 - 10605: 51,-55 - 10697: 82,-44 - 10698: 82,-45 - 10699: 82,-46 - 10709: 79,-47 - 10718: 74,-39 - 10719: 74,-38 - 10785: 53,-55 - 10786: 53,-54 - 10787: 53,-53 - 10793: 45,-52 - 10794: 45,-53 - 10795: 45,-54 - 10808: 43,-56 - 10809: 43,-56 - 10810: 43,-55 - 10811: 43,-50 - 10812: 43,-50 - 11320: -74,-35 - 11321: -74,-35 - 11552: -21,-35 - 11735: -44,-28 - 11736: -44,-28 - 11737: -32,-28 - 11738: -32,-28 - 12360: -21,-47 - 12391: -17,-68 - 12392: -17,-69 - 12393: -17,-70 - 12394: -17,-71 - 12395: -17,-72 - 12396: -17,-73 - 12426: -15,-75 - 12427: -15,-76 - 12460: -13,-80 - 12461: -13,-81 - 12472: -21,-81 - 12476: -22,-67 - 12477: -22,-66 - 12557: -18,-78 - 12571: -17,-79 - 12572: -17,-80 - 12573: -17,-81 - 12580: -19,-81 - 12589: -24,-81 - 12590: -23,-78 - 12599: -23,-76 - 12600: -23,-75 - 12601: -23,-74 - 12602: -23,-73 - 12603: -23,-73 - 12604: -23,-72 - 12605: -23,-70 - 12606: -23,-69 - 12607: -23,-68 - 12608: -23,-65 - 12711: -38,26 - 12712: -38,28 - 12879: -19,-81 - 13390: -38,-67 - 13559: -29,-74 - 13560: -29,-77 - 13561: -29,-78 - 13571: -36,-78 - 13574: -31,-78 - 13575: -31,-77 - 13576: -31,-80 - 14483: -21,23 - 14484: -8,23 - 14485: 6,23 - 15410: -40,5 - 15513: 57,-31 - 15516: 57,-10 - 15527: 58,-27 - 15528: 60,-27 - 15529: 60,-14 - 15530: 58,-14 - 15641: 76,1 - 15642: 80,1 - 15657: 85,1 - 15724: 100,-3 - 15751: 92,2 - 15868: 81,-2 - 15869: 81,-3 - 15870: 81,-4 - 15882: 85,-2 - 15883: 85,-3 - 15884: 85,-4 - 15885: 89,-2 - 15886: 89,-3 - 15887: 89,-4 - 15913: 94,13 - 15921: 96,13 - 16761: -58,-17 - 16762: -54,-12 - 16763: -54,-13 - 16764: -54,-14 - 16765: -54,-15 - 16766: -54,-9 - 16767: -54,-8 - 16768: -54,-7 - 16769: -59,1 - 16808: -45,5 - 16818: -51,5 - 16819: -54,5 - 17135: -46,-17 - 17136: -46,-16 - 17137: -46,-15 - 17138: -46,-14 - 17139: -46,-13 - 17169: -74,-7 - 17337: -50,-8 - 17404: -74,-7 - 17725: -76,6 - 17726: -76,5 - 17727: -76,4 - 17730: -79,4 - 17731: -79,5 - 17732: -79,6 - 17756: -78,10 - 17757: -76,10 - 18091: -44,47 - 18098: -57,33 - 18099: -53,33 - 18100: -53,34 - 18101: -53,35 - 18102: -53,36 - 18103: -53,37 - 18117: -55,21 - 18129: -52,24 - 18130: -52,23 - 18164: -57,6 - 18201: -54,-4 - 18202: -54,-3 - 18203: -54,-2 - 18204: -54,-1 - 18365: -73,-7 - 18366: -68,-7 - 18367: -61,-8 - 18401: -50,-37 - 18468: -16,-14 - 18469: -16,-15 - 18491: -17,-9 - 18520: 15,-9 - 19031: 57,8 - 19032: 59,8 - 19033: 63,8 - 19034: 61,8 - 19465: -9,26 - 19534: -9,26 - 19538: -9,28 - 19539: -9,29 - 19541: -9,31 - 19542: -9,32 - 19846: -27,-23 - 20155: -21,5 - 21391: 19,14 - 21392: 19,15 - 21396: 23,14 - 21397: 23,15 + 10603: 51,-55 + 10695: 82,-44 + 10696: 82,-45 + 10697: 82,-46 + 10707: 79,-47 + 10716: 74,-39 + 10717: 74,-38 + 10783: 53,-55 + 10784: 53,-54 + 10785: 53,-53 + 10791: 45,-52 + 10792: 45,-53 + 10793: 45,-54 + 10806: 43,-56 + 10807: 43,-56 + 10808: 43,-55 + 10809: 43,-50 + 10810: 43,-50 + 11318: -74,-35 + 11319: -74,-35 + 11550: -21,-35 + 11733: -44,-28 + 11734: -44,-28 + 11735: -32,-28 + 11736: -32,-28 + 12358: -21,-47 + 12389: -17,-68 + 12390: -17,-69 + 12391: -17,-70 + 12392: -17,-71 + 12393: -17,-72 + 12394: -17,-73 + 12424: -15,-75 + 12425: -15,-76 + 12458: -13,-80 + 12459: -13,-81 + 12470: -21,-81 + 12474: -22,-67 + 12475: -22,-66 + 12555: -18,-78 + 12569: -17,-79 + 12570: -17,-80 + 12571: -17,-81 + 12578: -19,-81 + 12587: -24,-81 + 12588: -23,-78 + 12597: -23,-76 + 12598: -23,-75 + 12599: -23,-74 + 12600: -23,-73 + 12601: -23,-73 + 12602: -23,-72 + 12603: -23,-70 + 12604: -23,-69 + 12605: -23,-68 + 12606: -23,-65 + 12709: -38,26 + 12710: -38,28 + 12877: -19,-81 + 13388: -38,-67 + 13557: -29,-74 + 13558: -29,-77 + 13559: -29,-78 + 13569: -36,-78 + 13572: -31,-78 + 13573: -31,-77 + 13574: -31,-80 + 14481: -21,23 + 14482: -8,23 + 14483: 6,23 + 15408: -40,5 + 15511: 57,-31 + 15514: 57,-10 + 15525: 58,-27 + 15526: 60,-27 + 15527: 60,-14 + 15528: 58,-14 + 15639: 76,1 + 15640: 80,1 + 15655: 85,1 + 15722: 100,-3 + 15749: 92,2 + 15866: 81,-2 + 15867: 81,-3 + 15868: 81,-4 + 15880: 85,-2 + 15881: 85,-3 + 15882: 85,-4 + 15883: 89,-2 + 15884: 89,-3 + 15885: 89,-4 + 15911: 94,13 + 15919: 96,13 + 16759: -58,-17 + 16760: -54,-12 + 16761: -54,-13 + 16762: -54,-14 + 16763: -54,-15 + 16764: -54,-9 + 16765: -54,-8 + 16766: -54,-7 + 16767: -59,1 + 16806: -45,5 + 16816: -51,5 + 16817: -54,5 + 17133: -46,-17 + 17134: -46,-16 + 17135: -46,-15 + 17136: -46,-14 + 17137: -46,-13 + 17167: -74,-7 + 17335: -50,-8 + 17402: -74,-7 + 17723: -76,6 + 17724: -76,5 + 17725: -76,4 + 17728: -79,4 + 17729: -79,5 + 17730: -79,6 + 17754: -78,10 + 17755: -76,10 + 18089: -44,47 + 18096: -57,33 + 18097: -53,33 + 18098: -53,34 + 18099: -53,35 + 18100: -53,36 + 18101: -53,37 + 18115: -55,21 + 18127: -52,24 + 18128: -52,23 + 18162: -57,6 + 18199: -54,-4 + 18200: -54,-3 + 18201: -54,-2 + 18202: -54,-1 + 18363: -73,-7 + 18364: -68,-7 + 18365: -61,-8 + 18399: -50,-37 + 18466: -16,-14 + 18467: -16,-15 + 18489: -17,-9 + 18518: 15,-9 + 19029: 57,8 + 19030: 59,8 + 19031: 63,8 + 19032: 61,8 + 19463: -9,26 + 19532: -9,26 + 19536: -9,28 + 19537: -9,29 + 19539: -9,31 + 19540: -9,32 + 19844: -27,-23 + 20153: -21,5 + 21389: 19,14 + 21390: 19,15 + 21394: 23,14 + 21395: 23,15 + 21415: 26,14 + 21416: 26,13 21417: 26,14 - 21418: 26,13 - 21419: 26,14 - 21420: 26,15 - 21421: 26,16 - 21446: 25,14 - 21447: 25,15 + 21418: 26,15 + 21419: 26,16 + 21444: 25,14 + 21445: 25,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4044: -15,27 + 4042: -15,27 - node: color: '#8CB7E8FF' id: BrickTileDarkLineN decals: - 4191: -12,16 - 4193: -10,15 - 4200: -10,12 - 4212: 10,16 - 4231: -12,13 - 4232: -10,13 - 4233: -9,13 - 4234: -8,13 - 4235: -7,13 - 4236: -6,13 - 4237: -3,15 - 4238: -2,15 - 4239: -1,15 - 4240: 0,15 - 4241: 1,15 - 4242: 4,13 - 4243: 5,13 - 4244: 6,13 - 4245: 7,13 - 4246: 8,13 - 4247: 10,13 - 4263: -8,16 - 4264: -7,16 - 4266: -5,18 - 4267: -4,18 - 4268: -3,18 - 4269: -2,18 - 4270: -1,18 - 4271: 0,18 - 4272: 1,18 - 4273: 2,18 - 4274: 3,18 - 4279: 5,16 - 4280: 6,16 - 4282: 8,15 - 4320: -2,14 - 5530: -10,12 - 5671: 8,12 - 9956: 30,-44 - 9957: 31,-44 - 9958: 32,-44 - 9959: 33,-44 - 15255: -12,13 + 4189: -12,16 + 4191: -10,15 + 4198: -10,12 + 4210: 10,16 + 4229: -12,13 + 4230: -10,13 + 4231: -9,13 + 4232: -8,13 + 4233: -7,13 + 4234: -6,13 + 4235: -3,15 + 4236: -2,15 + 4237: -1,15 + 4238: 0,15 + 4239: 1,15 + 4240: 4,13 + 4241: 5,13 + 4242: 6,13 + 4243: 7,13 + 4244: 8,13 + 4245: 10,13 + 4261: -8,16 + 4262: -7,16 + 4264: -5,18 + 4265: -4,18 + 4266: -3,18 + 4267: -2,18 + 4268: -1,18 + 4269: 0,18 + 4270: 1,18 + 4271: 2,18 + 4272: 3,18 + 4277: 5,16 + 4278: 6,16 + 4280: 8,15 + 4318: -2,14 + 5528: -10,12 + 5669: 8,12 + 9954: 30,-44 + 9955: 31,-44 + 9956: 32,-44 + 9957: 33,-44 + 15253: -12,13 - node: color: '#96A4EBFF' id: BrickTileDarkLineN decals: - 5526: -12,13 - 5527: -10,12 + 5524: -12,13 + 5525: -10,12 - node: color: '#B18BDAFF' id: BrickTileDarkLineN decals: - 11757: -9,-38 - 11758: -8,-38 - 11759: -6,-38 - 11781: -6,-45 - 12143: -24,-49 - 12144: -29,-48 - 12145: -28,-48 - 12146: -27,-48 - 12147: -26,-48 - 12148: -25,-48 - 12149: -24,-48 - 12663: -52,-25 + 11755: -9,-38 + 11756: -8,-38 + 11757: -6,-38 + 11779: -6,-45 + 12141: -24,-49 + 12142: -29,-48 + 12143: -28,-48 + 12144: -27,-48 + 12145: -26,-48 + 12146: -25,-48 + 12147: -24,-48 + 12661: -52,-25 - node: color: '#CEDA8BFF' id: BrickTileDarkLineN decals: - 10874: 44,-61 - 10875: 44,-64 - 10890: 39,-64 - 10891: 40,-64 + 10872: 44,-61 + 10873: 44,-64 + 10888: 39,-64 + 10889: 40,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineN decals: - 3697: 2,59 - 3700: 2,59 - 6713: -24,-1 - 7421: 40,10 - 7422: 36,7 - 7424: 36,10 - 7426: 40,2 - 7456: 36,12 - 7480: 46,10 - 7481: 47,10 - 7482: 48,10 - 7499: 53,10 - 7500: 53,10 - 7513: 47,14 - 7514: 51,14 - 7552: 52,20 - 7564: 57,20 - 7605: 47,-2 - 7606: 52,-2 - 7611: 51,-3 - 7627: 61,-2 - 7628: 65,-2 - 7670: 73,20 - 7676: 73,20 - 7683: 75,24 - 7684: 75,24 - 7864: 73,4 - 9745: 12,-33 - 10545: 5,-63 - 10562: 5,-73 - 10574: 5,-79 - 10583: 4,-83 - 15381: -48,7 - 19089: 50,1 - 19090: 51,1 - 19098: 36,7 - 19099: 37,6 - 19100: 35,6 - 19101: 34,6 - 19112: 35,3 - 19146: 40,13 - 19180: 46,24 - 19219: 51,19 - 19220: 53,19 - 19239: 70,-3 - 19249: 73,23 - 19250: 74,23 - 19303: 52,13 - 19304: 53,13 - 19305: 54,13 - 19306: 55,13 - 19307: 56,13 - 19308: 57,13 - 19309: 58,13 - 19310: 58,13 - 19311: 59,13 - 19342: 52,9 - 19343: 51,9 - 19344: 54,9 - 19376: 69,-2 - 19379: 69,1 - 19380: 70,1 - 19409: -19,-24 - 19410: -18,-24 - 19585: 50,32 - 19586: 51,32 - 19587: 52,32 - 19588: 52,32 - 19589: 56,32 - 19590: 53,32 - 19591: 54,32 - 19592: 55,32 - 19593: 55,32 - 19628: 52,21 - 19629: 53,21 - 19630: 55,21 - 19631: 56,21 - 19639: 57,32 - 19640: 58,32 - 19643: 54,29 - 19644: 56,28 - 19645: 57,28 - 19646: 52,28 - 19647: 51,28 + 3695: 2,59 + 3698: 2,59 + 6711: -24,-1 + 7419: 40,10 + 7420: 36,7 + 7422: 36,10 + 7424: 40,2 + 7454: 36,12 + 7478: 46,10 + 7479: 47,10 + 7480: 48,10 + 7497: 53,10 + 7498: 53,10 + 7511: 47,14 + 7512: 51,14 + 7550: 52,20 + 7562: 57,20 + 7603: 47,-2 + 7604: 52,-2 + 7609: 51,-3 + 7625: 61,-2 + 7626: 65,-2 + 7668: 73,20 + 7674: 73,20 + 7681: 75,24 + 7682: 75,24 + 7862: 73,4 + 9743: 12,-33 + 10543: 5,-63 + 10560: 5,-73 + 10572: 5,-79 + 10581: 4,-83 + 15379: -48,7 + 19087: 50,1 + 19088: 51,1 + 19096: 36,7 + 19097: 37,6 + 19098: 35,6 + 19099: 34,6 + 19110: 35,3 + 19144: 40,13 + 19178: 46,24 + 19217: 51,19 + 19218: 53,19 + 19237: 70,-3 + 19247: 73,23 + 19248: 74,23 + 19301: 52,13 + 19302: 53,13 + 19303: 54,13 + 19304: 55,13 + 19305: 56,13 + 19306: 57,13 + 19307: 58,13 + 19308: 58,13 + 19309: 59,13 + 19340: 52,9 + 19341: 51,9 + 19342: 54,9 + 19374: 69,-2 + 19377: 69,1 + 19378: 70,1 + 19407: -19,-24 + 19408: -18,-24 + 19583: 50,32 + 19584: 51,32 + 19585: 52,32 + 19586: 52,32 + 19587: 56,32 + 19588: 53,32 + 19589: 54,32 + 19590: 55,32 + 19591: 55,32 + 19626: 52,21 + 19627: 53,21 + 19628: 55,21 + 19629: 56,21 + 19637: 57,32 + 19638: 58,32 + 19641: 54,29 + 19642: 56,28 + 19643: 57,28 + 19644: 52,28 + 19645: 51,28 - node: color: '#DABC8BFF' id: BrickTileDarkLineN decals: - 3694: 6,86 + 3692: 6,86 - node: color: '#DE3A3AFF' id: BrickTileDarkLineN decals: - 20327: -24,-1 + 20325: -24,-1 - node: color: '#EFB341FF' id: BrickTileDarkLineN decals: - 17574: -65,4 - 17575: -64,4 - 17576: -63,4 - 17577: -62,4 - 17597: -65,11 - 17598: -64,11 - 17599: -63,11 - 17600: -62,11 - 17669: -73,8 - 17670: -71,8 - 17681: -73,3 - 18264: -72,1 - 18265: -71,1 - 18266: -69,1 - 18267: -70,1 - 18268: -68,1 + 17572: -65,4 + 17573: -64,4 + 17574: -63,4 + 17575: -62,4 + 17595: -65,11 + 17596: -64,11 + 17597: -63,11 + 17598: -62,11 + 17667: -73,8 + 17668: -71,8 + 17679: -73,3 + 18262: -72,1 + 18263: -71,1 + 18264: -69,1 + 18265: -70,1 + 18266: -68,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 1243: 69,4 - 1995: -9,25 - 1996: -8,34 - 2040: -16,34 - 2220: -19,54 - 2413: -14,46 - 2468: -14,46 - 2469: -13,46 - 2470: -12,46 - 2471: -11,46 - 2623: -2,40 - 2689: 0,54 - 2690: 3,54 - 2696: 3,49 - 2714: -6,51 - 2719: -6,54 - 2721: -5,54 - 3439: 2,59 - 3856: 18,72 - 3857: 19,72 - 3858: 20,72 - 3859: 21,72 - 3860: 22,72 - 3884: 20,67 - 3936: 13,62 - 3937: 14,62 - 3938: 15,62 - 3946: 18,61 - 3950: 19,60 - 3951: 20,60 - 4456: 15,25 - 4671: 20,24 - 5534: -19,7 - 5550: -19,-7 - 5574: -33,25 - 5575: -32,25 - 5611: -13,59 - 5612: -12,59 - 5613: -11,59 - 5614: -13,66 - 5615: -12,66 - 5616: -11,66 - 5724: 9,7 - 5738: 10,3 - 5739: 9,3 - 5762: 8,4 - 5763: 10,-1 - 5829: -12,-3 - 5842: -10,-7 - 5868: -11,-3 - 5944: -1,14 - 5945: 0,14 - 6001: -1,-7 - 6094: -12,-18 - 6133: 17,-7 - 6134: 17,-7 - 6144: 17,7 - 6189: -19,-22 - 6320: 17,-22 - 6393: 13,-18 - 6394: 13,-18 - 6576: -23,-5 - 6577: -23,-5 - 6578: -25,-5 - 6579: -25,-5 - 6591: -24,-10 - 6631: -24,-8 - 7231: 21,2 - 7262: 22,-9 - 7292: 35,1 - 7308: 27,9 - 7334: 30,11 - 7335: 31,11 - 7336: 32,11 - 7345: 29,7 - 7375: 34,6 - 7376: 35,6 - 7377: 37,6 - 7386: 35,3 - 7479: 47,10 - 7694: 40,22 - 7695: 40,22 - 7696: 41,22 - 7697: 42,22 - 7698: 42,22 - 7712: 35,21 - 8200: 34,-17 - 8201: 35,-17 - 8202: 35,-17 - 8225: 35,-7 - 8501: 57,-24 - 8502: 58,-24 - 8503: 58,-24 - 8504: 59,-24 - 8505: 59,-24 - 8506: 60,-24 - 8507: 60,-24 - 8508: 61,-24 - 8756: -1,-29 - 8757: -1,-22 - 8758: -1,-37 - 8759: -1,-57 - 8760: -1,-63 - 8990: -5,-24 - 8991: -4,-24 - 8992: 6,-24 - 8993: 7,-24 - 8994: 8,-24 - 8995: 9,-24 - 8996: 10,-24 - 8997: -8,-24 - 8998: -9,-24 - 8999: -10,-24 - 9000: -11,-24 - 9001: -12,-24 - 9016: -16,-24 - 9017: -15,-24 - 9053: 2,-24 - 9054: 3,-24 - 9055: 13,-24 - 9056: 14,-24 - 9107: 14,-24 - 9110: 2,-24 - 9159: -5,-66 - 9160: -4,-66 - 9161: -4,-66 - 9166: -1,-82 - 9447: -5,-68 - 9448: -4,-68 - 9697: 17,-37 - 9698: 27,-37 - 10268: 36,-29 - 10269: 36,-29 - 10447: 11,-49 - 10448: 10,-49 + 1993: -9,25 + 1994: -8,34 + 2038: -16,34 + 2218: -19,54 + 2411: -14,46 + 2466: -14,46 + 2467: -13,46 + 2468: -12,46 + 2469: -11,46 + 2621: -2,40 + 2687: 0,54 + 2688: 3,54 + 2694: 3,49 + 2712: -6,51 + 2717: -6,54 + 2719: -5,54 + 3437: 2,59 + 3854: 18,72 + 3855: 19,72 + 3856: 20,72 + 3857: 21,72 + 3858: 22,72 + 3882: 20,67 + 3934: 13,62 + 3935: 14,62 + 3936: 15,62 + 3944: 18,61 + 3948: 19,60 + 3949: 20,60 + 4454: 15,25 + 4669: 20,24 + 5532: -19,7 + 5548: -19,-7 + 5572: -33,25 + 5573: -32,25 + 5609: -13,59 + 5610: -12,59 + 5611: -11,59 + 5612: -13,66 + 5613: -12,66 + 5614: -11,66 + 5722: 9,7 + 5736: 10,3 + 5737: 9,3 + 5760: 8,4 + 5761: 10,-1 + 5827: -12,-3 + 5840: -10,-7 + 5866: -11,-3 + 5942: -1,14 + 5943: 0,14 + 5999: -1,-7 + 6092: -12,-18 + 6131: 17,-7 + 6132: 17,-7 + 6142: 17,7 + 6187: -19,-22 + 6318: 17,-22 + 6391: 13,-18 + 6392: 13,-18 + 6574: -23,-5 + 6575: -23,-5 + 6576: -25,-5 + 6577: -25,-5 + 6589: -24,-10 + 6629: -24,-8 + 7229: 21,2 + 7260: 22,-9 + 7290: 35,1 + 7306: 27,9 + 7332: 30,11 + 7333: 31,11 + 7334: 32,11 + 7343: 29,7 + 7373: 34,6 + 7374: 35,6 + 7375: 37,6 + 7384: 35,3 + 7477: 47,10 + 7692: 40,22 + 7693: 40,22 + 7694: 41,22 + 7695: 42,22 + 7696: 42,22 + 7710: 35,21 + 8198: 34,-17 + 8199: 35,-17 + 8200: 35,-17 + 8223: 35,-7 + 8499: 57,-24 + 8500: 58,-24 + 8501: 58,-24 + 8502: 59,-24 + 8503: 59,-24 + 8504: 60,-24 + 8505: 60,-24 + 8506: 61,-24 + 8754: -1,-29 + 8755: -1,-22 + 8756: -1,-37 + 8757: -1,-57 + 8758: -1,-63 + 8988: -5,-24 + 8989: -4,-24 + 8990: 6,-24 + 8991: 7,-24 + 8992: 8,-24 + 8993: 9,-24 + 8994: 10,-24 + 8995: -8,-24 + 8996: -9,-24 + 8997: -10,-24 + 8998: -11,-24 + 8999: -12,-24 + 9014: -16,-24 + 9015: -15,-24 + 9051: 2,-24 + 9052: 3,-24 + 9053: 13,-24 + 9054: 14,-24 + 9105: 14,-24 + 9108: 2,-24 + 9157: -5,-66 + 9158: -4,-66 + 9159: -4,-66 + 9164: -1,-82 + 9445: -5,-68 + 9446: -4,-68 + 9695: 17,-37 + 9696: 27,-37 + 10266: 36,-29 + 10267: 36,-29 + 10445: 11,-49 + 10446: 10,-49 + 10447: 9,-49 + 10448: 9,-49 10449: 9,-49 - 10450: 9,-49 - 10451: 9,-49 - 10452: 8,-49 + 10450: 8,-49 + 10451: 6,-49 + 10452: 7,-49 10453: 6,-49 - 10454: 7,-49 - 10455: 6,-49 - 10456: 5,-49 - 10460: 3,-49 - 10467: 10,-54 - 10487: 12,-62 - 10493: 11,-58 - 10494: 12,-58 - 10495: 12,-58 - 10496: 13,-58 - 10497: 13,-58 - 10603: 50,-54 - 10604: 50,-54 - 10700: 81,-43 - 10715: 73,-41 - 10716: 73,-41 - 10717: 73,-37 - 11544: -19,-33 - 11557: -23,-33 - 11561: -14,-37 - 11562: -14,-37 - 11717: -14,-45 - 12411: -20,-66 - 12412: -20,-66 - 12413: -19,-66 - 12414: -18,-66 - 12415: -16,-66 - 12416: -15,-66 - 12417: -14,-66 - 12418: -13,-66 - 12419: -17,-66 - 12420: -16,-74 - 12421: -18,-74 - 12437: -21,-76 - 12438: -21,-76 - 12439: -20,-76 - 12440: -14,-76 - 12441: -13,-76 - 12444: -20,-65 - 12445: -19,-65 - 12446: -18,-65 - 12447: -16,-65 - 12448: -15,-65 - 12449: -14,-65 - 12458: -15,-79 - 12459: -14,-79 - 12470: -22,-80 - 12475: -21,-66 - 12558: -21,-77 - 12559: -17,-78 - 12560: -16,-78 - 12561: -15,-78 - 12563: -13,-78 - 12594: -23,-79 - 12596: -23,-77 - 12615: -23,-71 - 12782: -30,70 - 12783: -12,70 - 12784: -20,66 - 12785: -19,66 - 12786: -18,66 - 12787: -6,66 - 12788: -5,66 - 12789: -4,66 - 12790: 6,70 - 12816: -6,59 - 12817: -5,59 - 12818: -4,59 - 12819: -18,59 - 12820: -19,59 - 12821: -20,59 - 12822: -20,66 - 12823: -19,66 - 13382: -40,-66 - 13383: -39,-66 - 13553: -36,-73 - 13554: -35,-73 - 13555: -34,-73 - 13556: -32,-73 - 13557: -31,-73 - 13587: -33,-77 - 13588: -34,-77 - 13591: -32,-77 - 14424: -60,20 - 14425: -59,20 - 14426: -58,20 - 14450: -65,13 - 14451: -64,13 - 14452: -64,13 - 14453: -63,13 - 14454: -62,13 - 14489: -19,21 - 14490: 17,21 - 15393: -42,2 - 15396: -42,3 - 15407: -42,7 - 15507: 58,-11 - 15508: 59,-11 - 15509: 60,-11 - 15632: 77,0 - 15633: 78,0 - 15634: 79,0 - 15635: 82,0 - 15636: 83,0 - 15637: 84,0 - 15638: 86,0 - 15639: 87,0 - 15640: 88,0 - 15656: 81,0 - 15670: 90,10 - 15671: 91,10 - 15672: 92,10 - 15673: 93,10 - 15676: 92,8 - 15678: 91,7 - 15710: 92,5 - 15755: 95,0 - 15756: 94,0 - 15866: 80,-2 - 15894: 88,-2 - 15895: 84,-2 - 15915: 97,14 - 15916: 97,13 - 15926: 96,14 - 15931: 97,13 - 16041: 92,15 - 16051: 89,9 - 16052: 90,9 - 16753: -58,0 - 16754: -56,0 - 16755: -53,-5 - 16756: -53,-10 - 16757: -53,-16 - 16758: -57,-18 - 16759: -56,-18 - 16760: -55,-18 - 16798: -47,6 - 16799: -46,6 - 16804: -49,3 - 16959: -58,3 - 16960: -57,3 - 17125: -48,-18 - 17126: -47,-18 - 17127: -48,-12 - 17128: -47,-12 - 17171: -70,-9 - 17407: -70,-9 - 17717: -81,15 - 17718: -81,13 - 18127: -54,25 - 18128: -53,25 - 18200: -57,0 - 18352: -60,-9 - 18353: -59,-9 - 18354: -58,-9 - 18355: -67,-8 - 18356: -66,-8 - 18357: -65,-8 - 18358: -65,-8 - 18359: -64,-8 - 18360: -69,-8 - 18361: -69,-8 - 18362: -70,-8 - 18363: -71,-8 - 18364: -72,-8 - 18403: -52,-36 - 18404: -52,-36 - 18405: -51,-36 - 18407: -49,-38 - 18567: 13,-11 - 18570: 13,-13 - 18586: 13,-13 - 19018: 69,10 - 19470: -11,33 - 19477: -14,34 - 19478: -13,34 - 19524: -11,33 - 19819: -8,-40 - 19820: -7,-40 - 19841: -30,-22 - 19842: -29,-22 - 19843: -28,-22 - 19851: -29,-25 - 20119: 65,27 - 20120: 66,27 - 20127: 62,30 - 20128: 63,30 - 20129: 64,30 - 20130: 65,30 - 20131: 65,30 - 20132: 67,30 - 20133: 67,30 - 20134: 66,30 - 20144: 62,27 - 20145: 64,27 - 20146: 65,27 - 20147: 66,27 - 20148: 67,27 - 21388: 20,15 - 21399: 24,13 - 21406: 23,17 - 21407: 25,17 - 21408: 25,17 - 21409: 24,17 - 21452: 24,16 + 10454: 5,-49 + 10458: 3,-49 + 10465: 10,-54 + 10485: 12,-62 + 10491: 11,-58 + 10492: 12,-58 + 10493: 12,-58 + 10494: 13,-58 + 10495: 13,-58 + 10601: 50,-54 + 10602: 50,-54 + 10698: 81,-43 + 10713: 73,-41 + 10714: 73,-41 + 10715: 73,-37 + 11542: -19,-33 + 11555: -23,-33 + 11559: -14,-37 + 11560: -14,-37 + 11715: -14,-45 + 12409: -20,-66 + 12410: -20,-66 + 12411: -19,-66 + 12412: -18,-66 + 12413: -16,-66 + 12414: -15,-66 + 12415: -14,-66 + 12416: -13,-66 + 12417: -17,-66 + 12418: -16,-74 + 12419: -18,-74 + 12435: -21,-76 + 12436: -21,-76 + 12437: -20,-76 + 12438: -14,-76 + 12439: -13,-76 + 12442: -20,-65 + 12443: -19,-65 + 12444: -18,-65 + 12445: -16,-65 + 12446: -15,-65 + 12447: -14,-65 + 12456: -15,-79 + 12457: -14,-79 + 12468: -22,-80 + 12473: -21,-66 + 12556: -21,-77 + 12557: -17,-78 + 12558: -16,-78 + 12559: -15,-78 + 12561: -13,-78 + 12592: -23,-79 + 12594: -23,-77 + 12613: -23,-71 + 12780: -30,70 + 12781: -12,70 + 12782: -20,66 + 12783: -19,66 + 12784: -18,66 + 12785: -6,66 + 12786: -5,66 + 12787: -4,66 + 12788: 6,70 + 12814: -6,59 + 12815: -5,59 + 12816: -4,59 + 12817: -18,59 + 12818: -19,59 + 12819: -20,59 + 12820: -20,66 + 12821: -19,66 + 13380: -40,-66 + 13381: -39,-66 + 13551: -36,-73 + 13552: -35,-73 + 13553: -34,-73 + 13554: -32,-73 + 13555: -31,-73 + 13585: -33,-77 + 13586: -34,-77 + 13589: -32,-77 + 14422: -60,20 + 14423: -59,20 + 14424: -58,20 + 14448: -65,13 + 14449: -64,13 + 14450: -64,13 + 14451: -63,13 + 14452: -62,13 + 14487: -19,21 + 14488: 17,21 + 15391: -42,2 + 15394: -42,3 + 15405: -42,7 + 15505: 58,-11 + 15506: 59,-11 + 15507: 60,-11 + 15630: 77,0 + 15631: 78,0 + 15632: 79,0 + 15633: 82,0 + 15634: 83,0 + 15635: 84,0 + 15636: 86,0 + 15637: 87,0 + 15638: 88,0 + 15654: 81,0 + 15668: 90,10 + 15669: 91,10 + 15670: 92,10 + 15671: 93,10 + 15674: 92,8 + 15676: 91,7 + 15708: 92,5 + 15753: 95,0 + 15754: 94,0 + 15864: 80,-2 + 15892: 88,-2 + 15893: 84,-2 + 15913: 97,14 + 15914: 97,13 + 15924: 96,14 + 15929: 97,13 + 16039: 92,15 + 16049: 89,9 + 16050: 90,9 + 16751: -58,0 + 16752: -56,0 + 16753: -53,-5 + 16754: -53,-10 + 16755: -53,-16 + 16756: -57,-18 + 16757: -56,-18 + 16758: -55,-18 + 16796: -47,6 + 16797: -46,6 + 16802: -49,3 + 16957: -58,3 + 16958: -57,3 + 17123: -48,-18 + 17124: -47,-18 + 17125: -48,-12 + 17126: -47,-12 + 17169: -70,-9 + 17405: -70,-9 + 17715: -81,15 + 17716: -81,13 + 18125: -54,25 + 18126: -53,25 + 18198: -57,0 + 18350: -60,-9 + 18351: -59,-9 + 18352: -58,-9 + 18353: -67,-8 + 18354: -66,-8 + 18355: -65,-8 + 18356: -65,-8 + 18357: -64,-8 + 18358: -69,-8 + 18359: -69,-8 + 18360: -70,-8 + 18361: -71,-8 + 18362: -72,-8 + 18401: -52,-36 + 18402: -52,-36 + 18403: -51,-36 + 18405: -49,-38 + 18565: 13,-11 + 18568: 13,-13 + 18584: 13,-13 + 19016: 69,10 + 19468: -11,33 + 19475: -14,34 + 19476: -13,34 + 19522: -11,33 + 19817: -8,-40 + 19818: -7,-40 + 19839: -30,-22 + 19840: -29,-22 + 19841: -28,-22 + 19849: -29,-25 + 20117: 65,27 + 20118: 66,27 + 20125: 62,30 + 20126: 63,30 + 20127: 64,30 + 20128: 65,30 + 20129: 65,30 + 20130: 67,30 + 20131: 67,30 + 20132: 66,30 + 20142: 62,27 + 20143: 64,27 + 20144: 65,27 + 20145: 66,27 + 20146: 67,27 + 21386: 20,15 + 21397: 24,13 + 21404: 23,17 + 21405: 25,17 + 21406: 25,17 + 21407: 24,17 + 21450: 24,16 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4048: -19,25 + 4046: -19,25 - node: color: '#8CB7E8FF' id: BrickTileDarkLineS decals: - 4186: -12,13 - 4187: -11,13 - 4188: -9,13 - 4189: -8,13 - 4190: -7,13 - 4201: -6,13 - 4202: -5,13 - 4203: 3,13 - 4204: 4,13 - 4205: 5,13 - 4206: 6,13 - 4207: 7,13 - 4208: 9,13 - 4209: 10,13 - 4214: -10,15 - 4215: -9,15 - 4216: -8,15 - 4217: -7,15 - 4218: -3,17 - 4219: -1,17 - 4220: -1,17 - 4221: -2,17 - 4222: 0,17 - 4223: 1,17 - 4224: 4,15 - 4225: 5,15 - 4226: 6,15 - 4227: 7,15 - 4228: 8,15 - 4229: 10,16 - 4230: -12,16 - 4290: -3,15 - 4291: -1,15 - 4292: 0,15 - 4293: 1,15 - 5529: -6,15 - 9964: 31,-45 - 9965: 32,-45 - 9966: 33,-45 - 21333: -12,13 - 21334: -11,13 + 4184: -12,13 + 4185: -11,13 + 4186: -9,13 + 4187: -8,13 + 4188: -7,13 + 4199: -6,13 + 4200: -5,13 + 4201: 3,13 + 4202: 4,13 + 4203: 5,13 + 4204: 6,13 + 4205: 7,13 + 4206: 9,13 + 4207: 10,13 + 4212: -10,15 + 4213: -9,15 + 4214: -8,15 + 4215: -7,15 + 4216: -3,17 + 4217: -1,17 + 4218: -1,17 + 4219: -2,17 + 4220: 0,17 + 4221: 1,17 + 4222: 4,15 + 4223: 5,15 + 4224: 6,15 + 4225: 7,15 + 4226: 8,15 + 4227: 10,16 + 4228: -12,16 + 4288: -3,15 + 4289: -1,15 + 4290: 0,15 + 4291: 1,15 + 5527: -6,15 + 9962: 31,-45 + 9963: 32,-45 + 9964: 33,-45 + 21331: -12,13 + 21332: -11,13 - node: color: '#B18BDAFF' id: BrickTileDarkLineS decals: - 11765: -10,-44 - 11766: -9,-44 - 11767: -8,-44 - 11768: -8,-44 - 11769: -7,-44 - 11778: -7,-37 - 11779: -7,-37 - 12137: -29,-48 - 12138: -28,-48 - 12139: -28,-48 - 12140: -27,-48 - 12141: -26,-48 - 12142: -25,-48 - 12662: -52,-31 + 11763: -10,-44 + 11764: -9,-44 + 11765: -8,-44 + 11766: -8,-44 + 11767: -7,-44 + 11776: -7,-37 + 11777: -7,-37 + 12135: -29,-48 + 12136: -28,-48 + 12137: -28,-48 + 12138: -27,-48 + 12139: -26,-48 + 12140: -25,-48 + 12660: -52,-31 - node: color: '#CEDA8BFF' id: BrickTileDarkLineS decals: - 10876: 44,-61 - 10877: 44,-64 - 10888: 40,-64 - 10889: 39,-64 + 10874: 44,-61 + 10875: 44,-64 + 10886: 40,-64 + 10887: 39,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineS decals: - 4598: 13,33 - 6712: -23,3 - 7415: 40,10 - 7420: 40,10 - 7423: 36,10 - 7425: 40,2 - 7440: 37,8 - 7483: 46,10 - 7484: 47,10 - 7485: 48,10 - 7497: 53,10 - 7498: 53,10 - 7510: 47,14 - 7511: 51,14 - 7512: 51,14 - 7540: 52,20 - 7541: 57,20 - 7604: 47,-2 - 7607: 52,-2 - 7608: 56,-5 - 7609: 57,-5 - 7610: 52,-5 - 7646: 58,2 - 7647: 62,2 - 7648: 66,2 - 7669: 73,20 - 7673: 75,24 - 7674: 75,24 - 7675: 73,20 - 7685: 75,26 - 7859: 69,-2 - 7863: 73,4 - 9742: 11,-29 - 9743: 13,-29 - 10537: 7,-57 - 10546: 5,-63 - 10569: 5,-73 - 10584: 5,-79 - 15585: 72,-1 - 15586: 73,-1 - 19062: 51,-1 - 19063: 50,-1 - 19064: 55,-1 - 19065: 54,-1 - 19066: 53,-1 - 19067: 60,-1 - 19068: 59,-1 - 19069: 58,-1 - 19070: 64,-1 - 19071: 63,-1 - 19072: 62,-1 - 19073: 66,-1 - 19074: 67,-1 - 19077: 48,-1 - 19097: 36,7 - 19104: 34,4 - 19105: 36,4 - 19106: 36,4 - 19107: 37,4 - 19130: 40,-1 - 19154: 52,11 - 19155: 51,11 - 19156: 54,11 - 19157: 55,11 - 19158: 56,11 - 19159: 57,11 - 19160: 58,11 - 19161: 58,11 - 19162: 59,11 - 19166: 47,14 - 19167: 46,15 - 19201: 50,21 - 19202: 51,21 - 19203: 56,21 - 19204: 55,21 - 19205: 54,21 - 19206: 54,21 - 19207: 53,21 - 19208: 58,21 - 19209: 53,15 - 19210: 52,15 - 19233: 69,-5 - 19234: 70,-5 - 19251: 74,21 - 19252: 75,21 - 19353: 51,3 - 19354: 52,3 - 19355: 53,3 - 19356: 54,3 - 19357: 54,3 - 19373: 70,-1 - 19406: -19,-28 - 19419: 13,-29 - 19420: 7,-57 - 19594: 52,28 - 19595: 53,28 - 19604: 55,28 - 19605: 56,28 - 19652: 51,31 - 19653: 57,31 - 19654: 54,32 - 19655: 53,32 - 19656: 55,32 + 4596: 13,33 + 6710: -23,3 + 7413: 40,10 + 7418: 40,10 + 7421: 36,10 + 7423: 40,2 + 7438: 37,8 + 7481: 46,10 + 7482: 47,10 + 7483: 48,10 + 7495: 53,10 + 7496: 53,10 + 7508: 47,14 + 7509: 51,14 + 7510: 51,14 + 7538: 52,20 + 7539: 57,20 + 7602: 47,-2 + 7605: 52,-2 + 7606: 56,-5 + 7607: 57,-5 + 7608: 52,-5 + 7644: 58,2 + 7645: 62,2 + 7646: 66,2 + 7667: 73,20 + 7671: 75,24 + 7672: 75,24 + 7673: 73,20 + 7683: 75,26 + 7857: 69,-2 + 7861: 73,4 + 9740: 11,-29 + 9741: 13,-29 + 10535: 7,-57 + 10544: 5,-63 + 10567: 5,-73 + 10582: 5,-79 + 15583: 72,-1 + 15584: 73,-1 + 19060: 51,-1 + 19061: 50,-1 + 19062: 55,-1 + 19063: 54,-1 + 19064: 53,-1 + 19065: 60,-1 + 19066: 59,-1 + 19067: 58,-1 + 19068: 64,-1 + 19069: 63,-1 + 19070: 62,-1 + 19071: 66,-1 + 19072: 67,-1 + 19075: 48,-1 + 19095: 36,7 + 19102: 34,4 + 19103: 36,4 + 19104: 36,4 + 19105: 37,4 + 19128: 40,-1 + 19152: 52,11 + 19153: 51,11 + 19154: 54,11 + 19155: 55,11 + 19156: 56,11 + 19157: 57,11 + 19158: 58,11 + 19159: 58,11 + 19160: 59,11 + 19164: 47,14 + 19165: 46,15 + 19199: 50,21 + 19200: 51,21 + 19201: 56,21 + 19202: 55,21 + 19203: 54,21 + 19204: 54,21 + 19205: 53,21 + 19206: 58,21 + 19207: 53,15 + 19208: 52,15 + 19231: 69,-5 + 19232: 70,-5 + 19249: 74,21 + 19250: 75,21 + 19351: 51,3 + 19352: 52,3 + 19353: 53,3 + 19354: 54,3 + 19355: 54,3 + 19371: 70,-1 + 19404: -19,-28 + 19417: 13,-29 + 19418: 7,-57 + 19592: 52,28 + 19593: 53,28 + 19602: 55,28 + 19603: 56,28 + 19650: 51,31 + 19651: 57,31 + 19652: 54,32 + 19653: 53,32 + 19654: 55,32 - node: color: '#DABC8BFF' id: BrickTileDarkLineS decals: - 3696: 5,91 + 3694: 5,91 - node: color: '#DE3A3AFF' id: BrickTileDarkLineS decals: - 20326: -23,3 + 20324: -23,3 - node: color: '#EFB341FF' id: BrickTileDarkLineS decals: - 17565: -65,11 - 17566: -64,11 - 17567: -63,11 - 17568: -62,11 - 17608: -65,4 - 17609: -64,4 - 17610: -63,4 - 17611: -62,4 - 17668: -72,9 - 17679: -72,4 - 17680: -71,4 - 17684: -72,9 + 17563: -65,11 + 17564: -64,11 + 17565: -63,11 + 17566: -62,11 + 17606: -65,4 + 17607: -64,4 + 17608: -63,4 + 17609: -62,4 + 17666: -72,9 + 17677: -72,4 + 17678: -71,4 + 17682: -72,9 + 18276: -72,-3 + 18277: -71,-3 18278: -72,-3 - 18279: -71,-3 - 18280: -72,-3 - 18281: -70,-3 - 18282: -69,-3 - 18283: -68,-3 + 18279: -70,-3 + 18280: -69,-3 + 18281: -68,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2021: -16,26 - 2036: -17,35 - 2037: -16,35 - 2041: -15,35 - 2219: -19,54 - 2291: -15,35 - 2416: -14,36 - 2474: -14,36 - 2475: -13,36 - 2476: -13,36 - 2477: -11,36 - 2478: -11,36 - 2479: -12,36 - 2534: -7,36 - 2616: -3,36 - 2629: -3,41 - 2666: 1,55 - 2667: 2,55 - 2679: 0,50 - 2680: 1,50 - 2681: 2,50 - 2694: -1,55 - 3685: 6,66 - 3851: 18,72 - 3852: 19,72 - 3853: 20,72 - 3854: 21,72 - 3855: 22,72 - 3879: 19,68 - 3880: 21,68 - 3881: 22,68 - 3889: 21,65 - 3890: 22,65 - 3891: 18,65 - 3939: 13,58 - 3940: 14,58 - 3941: 15,58 - 3942: 16,58 - 4455: 15,25 - 4669: 20,24 - 4670: 21,24 - 4673: 21,25 - 5533: -19,7 - 5549: -19,-7 - 5572: -33,25 - 5573: -32,25 - 5604: -13,66 - 5605: -12,66 - 5606: -11,66 - 5607: -13,59 - 5608: -12,59 - 5609: -11,59 - 5610: -11,59 - 5719: 9,5 - 5720: 10,5 - 5730: 8,0 - 5731: 9,0 - 5761: 8,4 - 5836: -12,-6 - 5837: -11,-6 - 5871: -10,-2 - 5911: -10,-2 - 5946: -2,12 - 5947: -1,12 - 5948: -1,12 - 5949: 0,12 - 6093: -12,-18 - 6132: 17,-7 - 6143: 17,7 - 6188: -19,-22 - 6319: 17,-22 - 6388: 19,-14 - 6392: 13,-18 - 6566: -25,-9 - 6567: -23,-9 - 6568: -23,-9 - 6622: -24,-4 - 6625: -24,-6 - 6626: -24,-6 - 7229: 21,-8 - 7230: 23,-8 - 7260: 22,3 - 7289: 35,-1 - 7339: 30,8 - 7340: 31,8 - 7341: 32,8 - 7372: 34,4 - 7373: 36,4 - 7374: 37,4 - 7389: 36,7 - 7478: 47,10 - 7702: 42,18 - 7703: 41,18 - 7704: 40,18 - 7711: 35,19 - 8197: 34,-17 - 8198: 35,-17 - 8199: 35,-17 - 8223: 35,-7 - 8224: 35,-7 - 8494: 57,-17 - 8495: 58,-17 - 8496: 58,-17 - 8497: 59,-17 - 8498: 59,-17 - 8499: 60,-17 - 8500: 61,-17 - 8544: 52,-26 - 8545: 52,-22 - 8753: -1,-37 - 8754: -1,-29 - 8755: -1,-22 - 8761: -1,-63 - 8762: -1,-57 - 9021: -16,-26 - 9022: -12,-27 - 9023: -11,-27 - 9024: -10,-27 - 9025: -9,-27 - 9026: -8,-27 - 9027: -4,-26 - 9057: 2,-26 - 9058: 14,-26 - 9080: 6,-27 - 9081: 6,-27 - 9082: 7,-27 - 9083: 8,-27 - 9084: 9,-27 - 9085: 10,-27 - 9086: 10,-27 - 9156: -5,-66 - 9157: -4,-66 - 9158: -4,-66 - 9165: -1,-82 - 9445: -5,-68 - 9446: -4,-68 - 9695: 17,-37 - 9696: 27,-37 - 10265: 36,-31 - 10266: 36,-31 - 10432: 3,-53 - 10433: 4,-53 - 10434: 5,-53 - 10435: 6,-53 - 10436: 6,-53 - 10437: 7,-53 - 10438: 7,-53 - 10439: 8,-53 - 10440: 8,-53 - 10441: 9,-53 - 10442: 9,-53 - 10443: 11,-53 - 10459: 4,-48 - 10486: 12,-58 - 10488: 11,-62 - 10489: 12,-62 - 10490: 13,-62 - 10503: 10,-57 - 10601: 50,-56 - 10602: 50,-56 - 10705: 80,-47 - 10706: 81,-47 - 11246: -64,-48 - 11542: -19,-33 - 11543: -19,-33 - 11553: -23,-33 - 11554: -23,-33 - 11555: -14,-37 - 11556: -14,-37 - 11716: -14,-45 - 12386: -13,-67 - 12387: -14,-67 - 12388: -15,-67 - 12406: -16,-67 + 2019: -16,26 + 2034: -17,35 + 2035: -16,35 + 2039: -15,35 + 2217: -19,54 + 2289: -15,35 + 2414: -14,36 + 2472: -14,36 + 2473: -13,36 + 2474: -13,36 + 2475: -11,36 + 2476: -11,36 + 2477: -12,36 + 2532: -7,36 + 2614: -3,36 + 2627: -3,41 + 2664: 1,55 + 2665: 2,55 + 2677: 0,50 + 2678: 1,50 + 2679: 2,50 + 2692: -1,55 + 3683: 6,66 + 3849: 18,72 + 3850: 19,72 + 3851: 20,72 + 3852: 21,72 + 3853: 22,72 + 3877: 19,68 + 3878: 21,68 + 3879: 22,68 + 3887: 21,65 + 3888: 22,65 + 3889: 18,65 + 3937: 13,58 + 3938: 14,58 + 3939: 15,58 + 3940: 16,58 + 4453: 15,25 + 4667: 20,24 + 4668: 21,24 + 4671: 21,25 + 5531: -19,7 + 5547: -19,-7 + 5570: -33,25 + 5571: -32,25 + 5602: -13,66 + 5603: -12,66 + 5604: -11,66 + 5605: -13,59 + 5606: -12,59 + 5607: -11,59 + 5608: -11,59 + 5717: 9,5 + 5718: 10,5 + 5728: 8,0 + 5729: 9,0 + 5759: 8,4 + 5834: -12,-6 + 5835: -11,-6 + 5869: -10,-2 + 5909: -10,-2 + 5944: -2,12 + 5945: -1,12 + 5946: -1,12 + 5947: 0,12 + 6091: -12,-18 + 6130: 17,-7 + 6141: 17,7 + 6186: -19,-22 + 6317: 17,-22 + 6386: 19,-14 + 6390: 13,-18 + 6564: -25,-9 + 6565: -23,-9 + 6566: -23,-9 + 6620: -24,-4 + 6623: -24,-6 + 6624: -24,-6 + 7227: 21,-8 + 7228: 23,-8 + 7258: 22,3 + 7287: 35,-1 + 7337: 30,8 + 7338: 31,8 + 7339: 32,8 + 7370: 34,4 + 7371: 36,4 + 7372: 37,4 + 7387: 36,7 + 7476: 47,10 + 7700: 42,18 + 7701: 41,18 + 7702: 40,18 + 7709: 35,19 + 8195: 34,-17 + 8196: 35,-17 + 8197: 35,-17 + 8221: 35,-7 + 8222: 35,-7 + 8492: 57,-17 + 8493: 58,-17 + 8494: 58,-17 + 8495: 59,-17 + 8496: 59,-17 + 8497: 60,-17 + 8498: 61,-17 + 8542: 52,-26 + 8543: 52,-22 + 8751: -1,-37 + 8752: -1,-29 + 8753: -1,-22 + 8759: -1,-63 + 8760: -1,-57 + 9019: -16,-26 + 9020: -12,-27 + 9021: -11,-27 + 9022: -10,-27 + 9023: -9,-27 + 9024: -8,-27 + 9025: -4,-26 + 9055: 2,-26 + 9056: 14,-26 + 9078: 6,-27 + 9079: 6,-27 + 9080: 7,-27 + 9081: 8,-27 + 9082: 9,-27 + 9083: 10,-27 + 9084: 10,-27 + 9154: -5,-66 + 9155: -4,-66 + 9156: -4,-66 + 9163: -1,-82 + 9443: -5,-68 + 9444: -4,-68 + 9693: 17,-37 + 9694: 27,-37 + 10263: 36,-31 + 10264: 36,-31 + 10430: 3,-53 + 10431: 4,-53 + 10432: 5,-53 + 10433: 6,-53 + 10434: 6,-53 + 10435: 7,-53 + 10436: 7,-53 + 10437: 8,-53 + 10438: 8,-53 + 10439: 9,-53 + 10440: 9,-53 + 10441: 11,-53 + 10457: 4,-48 + 10484: 12,-58 + 10486: 11,-62 + 10487: 12,-62 + 10488: 13,-62 + 10501: 10,-57 + 10599: 50,-56 + 10600: 50,-56 + 10703: 80,-47 + 10704: 81,-47 + 11244: -64,-48 + 11540: -19,-33 + 11541: -19,-33 + 11551: -23,-33 + 11552: -23,-33 + 11553: -14,-37 + 11554: -14,-37 + 11714: -14,-45 + 12384: -13,-67 + 12385: -14,-67 + 12386: -15,-67 + 12404: -16,-67 + 12405: -19,-67 + 12406: -20,-67 12407: -19,-67 - 12408: -20,-67 - 12409: -19,-67 - 12410: -18,-67 - 12430: -18,-76 - 12431: -17,-76 - 12432: -16,-76 - 12450: -17,-64 - 12464: -15,-82 - 12465: -14,-82 - 12471: -22,-82 - 12474: -21,-67 - 12562: -14,-77 - 12567: -13,-78 - 12568: -14,-78 - 12569: -15,-78 - 12570: -16,-78 - 12595: -23,-79 - 12597: -23,-77 - 12614: -23,-71 - 12624: -24,-63 - 12633: -24,-70 - 12773: 6,70 - 12774: -6,66 - 12775: -5,66 - 12776: -4,66 - 12777: -20,66 - 12778: -19,66 - 12779: -18,66 - 12780: -12,70 - 12781: -30,70 - 12809: -20,59 - 12810: -19,59 - 12811: -18,59 - 12812: -6,59 - 12813: -5,59 - 12814: -4,59 - 13387: -40,-68 - 13388: -39,-68 - 13565: -35,-76 - 13566: -34,-76 - 13567: -32,-76 - 13568: -32,-76 - 13569: -33,-76 - 13570: -31,-76 - 13599: -33,-79 - 14421: -60,20 - 14422: -59,20 - 14423: -58,20 - 14445: -65,13 - 14446: -64,13 - 14447: -64,13 - 14448: -62,13 - 14449: -63,13 - 14488: -19,21 - 14492: 17,21 - 15397: -42,3 - 15406: -42,7 - 15510: 58,-30 - 15511: 59,-30 - 15512: 60,-30 - 15620: 77,2 - 15621: 78,2 - 15622: 79,2 - 15623: 81,2 - 15624: 82,2 - 15625: 83,2 - 15626: 83,2 - 15627: 84,2 - 15628: 86,2 - 15629: 87,2 - 15630: 88,2 - 15631: 88,2 - 15677: 92,8 - 15748: 94,4 - 15749: 95,4 - 15873: 80,-5 - 15900: 88,-5 - 15901: 84,-5 - 16040: 92,15 - 16745: -57,-16 - 16746: -56,-16 - 16747: -55,-16 - 16748: -53,-11 - 16749: -53,-6 - 16750: -53,0 - 16751: -56,2 - 16752: -57,2 - 16797: -48,7 - 16805: -48,4 - 16806: -47,4 - 16807: -46,4 - 16957: -58,3 - 16958: -57,3 - 16961: -58,2 - 17130: -48,-12 - 17131: -47,-12 - 17132: -48,-18 - 17133: -47,-18 - 17170: -70,-9 - 17406: -70,-9 - 17715: -81,13 - 17716: -81,15 - 18123: -54,25 - 18124: -53,25 - 18340: -72,-6 - 18341: -71,-6 - 18342: -70,-6 - 18343: -69,-6 - 18344: -67,-6 - 18345: -66,-6 - 18346: -65,-6 - 18347: -64,-6 - 18348: -60,-7 - 18349: -59,-7 - 18350: -59,-7 - 18351: -58,-7 - 18395: -52,-38 - 18396: -51,-38 - 18397: -51,-38 - 18398: -50,-38 - 18399: -49,-38 - 18400: -49,-38 - 18566: 13,-11 - 18572: 13,-14 - 18582: 13,-14 - 19004: 69,3 - 19017: 69,10 - 19472: -13,26 - 19474: -11,27 - 19531: -11,27 - 19817: -8,-40 - 19818: -7,-40 - 19847: -30,-24 - 19848: -28,-24 - 20117: 65,27 - 20118: 66,27 - 20138: 63,28 - 21387: 20,14 - 21398: 24,16 - 21414: 23,12 - 21415: 24,12 - 21416: 25,12 - 21445: 24,13 + 12408: -18,-67 + 12428: -18,-76 + 12429: -17,-76 + 12430: -16,-76 + 12448: -17,-64 + 12462: -15,-82 + 12463: -14,-82 + 12469: -22,-82 + 12472: -21,-67 + 12560: -14,-77 + 12565: -13,-78 + 12566: -14,-78 + 12567: -15,-78 + 12568: -16,-78 + 12593: -23,-79 + 12595: -23,-77 + 12612: -23,-71 + 12622: -24,-63 + 12631: -24,-70 + 12771: 6,70 + 12772: -6,66 + 12773: -5,66 + 12774: -4,66 + 12775: -20,66 + 12776: -19,66 + 12777: -18,66 + 12778: -12,70 + 12779: -30,70 + 12807: -20,59 + 12808: -19,59 + 12809: -18,59 + 12810: -6,59 + 12811: -5,59 + 12812: -4,59 + 13385: -40,-68 + 13386: -39,-68 + 13563: -35,-76 + 13564: -34,-76 + 13565: -32,-76 + 13566: -32,-76 + 13567: -33,-76 + 13568: -31,-76 + 13597: -33,-79 + 14419: -60,20 + 14420: -59,20 + 14421: -58,20 + 14443: -65,13 + 14444: -64,13 + 14445: -64,13 + 14446: -62,13 + 14447: -63,13 + 14486: -19,21 + 14490: 17,21 + 15395: -42,3 + 15404: -42,7 + 15508: 58,-30 + 15509: 59,-30 + 15510: 60,-30 + 15618: 77,2 + 15619: 78,2 + 15620: 79,2 + 15621: 81,2 + 15622: 82,2 + 15623: 83,2 + 15624: 83,2 + 15625: 84,2 + 15626: 86,2 + 15627: 87,2 + 15628: 88,2 + 15629: 88,2 + 15675: 92,8 + 15746: 94,4 + 15747: 95,4 + 15871: 80,-5 + 15898: 88,-5 + 15899: 84,-5 + 16038: 92,15 + 16743: -57,-16 + 16744: -56,-16 + 16745: -55,-16 + 16746: -53,-11 + 16747: -53,-6 + 16748: -53,0 + 16749: -56,2 + 16750: -57,2 + 16795: -48,7 + 16803: -48,4 + 16804: -47,4 + 16805: -46,4 + 16955: -58,3 + 16956: -57,3 + 16959: -58,2 + 17128: -48,-12 + 17129: -47,-12 + 17130: -48,-18 + 17131: -47,-18 + 17168: -70,-9 + 17404: -70,-9 + 17713: -81,13 + 17714: -81,15 + 18121: -54,25 + 18122: -53,25 + 18338: -72,-6 + 18339: -71,-6 + 18340: -70,-6 + 18341: -69,-6 + 18342: -67,-6 + 18343: -66,-6 + 18344: -65,-6 + 18345: -64,-6 + 18346: -60,-7 + 18347: -59,-7 + 18348: -59,-7 + 18349: -58,-7 + 18393: -52,-38 + 18394: -51,-38 + 18395: -51,-38 + 18396: -50,-38 + 18397: -49,-38 + 18398: -49,-38 + 18564: 13,-11 + 18570: 13,-14 + 18580: 13,-14 + 19002: 69,3 + 19015: 69,10 + 19470: -13,26 + 19472: -11,27 + 19529: -11,27 + 19815: -8,-40 + 19816: -7,-40 + 19845: -30,-24 + 19846: -28,-24 + 20115: 65,27 + 20116: 66,27 + 20136: 63,28 + 21385: 20,14 + 21396: 24,16 + 21412: 23,12 + 21413: 24,12 + 21414: 25,12 + 21443: 24,13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4047: -19,25 + 4045: -19,25 - node: color: '#00C9DAFF' id: BrickTileDarkLineW decals: - 8127: 32,-16 + 8125: 32,-16 - node: color: '#8CB7E8FF' id: BrickTileDarkLineW decals: - 4196: -9,16 - 4248: 9,14 - 4249: 11,14 - 4250: 11,15 - 4251: 2,16 - 4252: -5,14 - 4260: -11,14 - 4261: -11,15 - 4277: -6,17 - 4294: 2,14 - 4303: 12,14 - 4304: 12,15 - 4305: 15,14 - 4306: 15,15 - 21344: 16,16 - 21345: 16,13 - 21346: 16,12 - 21347: 16,17 + 4194: -9,16 + 4246: 9,14 + 4247: 11,14 + 4248: 11,15 + 4249: 2,16 + 4250: -5,14 + 4258: -11,14 + 4259: -11,15 + 4275: -6,17 + 4292: 2,14 + 4301: 12,14 + 4302: 12,15 + 4303: 15,14 + 4304: 15,15 + 21342: 16,16 + 21343: 16,13 + 21344: 16,12 + 21345: 16,17 - node: color: '#A9DA8BFF' id: BrickTileDarkLineW decals: - 2986: -27,54 + 2984: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkLineW decals: - 11770: -11,-43 - 11771: -11,-42 - 11772: -11,-42 - 11773: -11,-40 - 11774: -11,-40 - 11776: -3,-41 - 11777: -3,-40 - 12134: -23,-45 - 12135: -23,-46 - 12136: -23,-47 - 12152: -30,-47 - 12153: -30,-45 - 12657: -53,-30 - 12658: -53,-29 - 12659: -53,-27 - 12660: -53,-27 - 12661: -53,-26 - 12667: -49,-28 - 13000: -53,-28 + 11768: -11,-43 + 11769: -11,-42 + 11770: -11,-42 + 11771: -11,-40 + 11772: -11,-40 + 11774: -3,-41 + 11775: -3,-40 + 12132: -23,-45 + 12133: -23,-46 + 12134: -23,-47 + 12150: -30,-47 + 12151: -30,-45 + 12655: -53,-30 + 12656: -53,-29 + 12657: -53,-27 + 12658: -53,-27 + 12659: -53,-26 + 12665: -49,-28 + 12998: -53,-28 - node: color: '#DA8B8BFF' id: BrickTileDarkLineW decals: - 3698: 4,60 - 3701: 4,60 - 3703: 4,64 - 7404: 49,1 - 7405: 49,0 - 7406: 49,-1 - 7417: 45,8 - 7418: 45,12 - 7427: 45,0 - 7491: 49,4 - 7494: 49,8 - 7522: 49,16 - 7543: 58,19 - 7544: 58,19 - 7551: 55,17 - 7559: 48,22 - 7560: 48,23 - 7569: 60,25 - 7571: 49,12 - 7618: 55,-4 - 7619: 50,-4 - 7649: 56,4 - 7650: 56,5 - 7651: 61,12 - 7654: 61,12 - 7679: 77,22 - 7680: 77,22 - 7692: 75,9 - 7792: 68,1 - 7793: 68,-1 - 7860: 72,-4 - 9744: 15,-31 - 10561: 7,-65 - 10570: 7,-77 - 10571: 7,-75 - 15379: -45,9 - 15581: 72,2 - 15582: 72,0 - 15591: 75,1 - 19035: 72,7 - 19036: 72,8 - 19037: 72,9 - 19038: 72,9 - 19039: 72,10 - 19040: 72,11 - 19041: 72,12 - 19042: 72,14 - 19043: 72,15 - 19044: 72,16 - 19045: 72,17 - 19086: 43,0 - 19087: 46,2 - 19088: 46,1 - 19091: 68,1 - 19092: 68,-1 - 19093: 46,11 - 19094: 39,7 - 19109: 34,5 - 19117: 38,4 - 19118: 38,6 - 19128: 39,0 - 19131: 39,12 - 19132: 43,12 - 19133: 43,8 - 19170: 45,16 - 19171: 45,17 - 19172: 45,18 - 19173: 45,18 - 19174: 45,19 - 19175: 45,23 - 19176: 45,22 - 19177: 45,22 - 19178: 45,21 - 19191: 49,25 - 19192: 49,24 - 19193: 49,26 - 19194: 49,27 - 19195: 49,28 - 19211: 50,18 - 19212: 50,17 - 19222: 56,16 - 19223: 56,18 - 19240: 68,-4 - 19253: 72,22 - 19358: 50,5 - 19359: 50,6 - 19360: 50,7 - 19366: 69,0 - 19381: 71,1 - 19382: 71,-1 - 19407: -20,-27 - 19408: -20,-25 - 19415: -17,-24 - 19596: 54,27 - 19597: 54,26 - 19598: 54,25 - 19599: 54,25 - 19600: 54,24 - 19601: 54,24 - 19602: 54,23 - 19603: 54,22 - 19613: 57,22 - 19614: 57,22 - 19615: 57,23 - 19616: 57,24 - 19617: 57,25 - 19618: 57,25 - 19619: 57,26 - 19620: 57,27 - 19632: 49,29 - 19633: 49,30 - 19634: 49,31 - 19648: 58,29 - 19649: 58,30 + 3696: 4,60 + 3699: 4,60 + 3701: 4,64 + 7402: 49,1 + 7403: 49,0 + 7404: 49,-1 + 7415: 45,8 + 7416: 45,12 + 7425: 45,0 + 7489: 49,4 + 7492: 49,8 + 7520: 49,16 + 7541: 58,19 + 7542: 58,19 + 7549: 55,17 + 7557: 48,22 + 7558: 48,23 + 7567: 60,25 + 7569: 49,12 + 7616: 55,-4 + 7617: 50,-4 + 7647: 56,4 + 7648: 56,5 + 7649: 61,12 + 7652: 61,12 + 7677: 77,22 + 7678: 77,22 + 7690: 75,9 + 7790: 68,1 + 7791: 68,-1 + 7858: 72,-4 + 9742: 15,-31 + 10559: 7,-65 + 10568: 7,-77 + 10569: 7,-75 + 15377: -45,9 + 15579: 72,2 + 15580: 72,0 + 15589: 75,1 + 19033: 72,7 + 19034: 72,8 + 19035: 72,9 + 19036: 72,9 + 19037: 72,10 + 19038: 72,11 + 19039: 72,12 + 19040: 72,14 + 19041: 72,15 + 19042: 72,16 + 19043: 72,17 + 19084: 43,0 + 19085: 46,2 + 19086: 46,1 + 19089: 68,1 + 19090: 68,-1 + 19091: 46,11 + 19092: 39,7 + 19107: 34,5 + 19115: 38,4 + 19116: 38,6 + 19126: 39,0 + 19129: 39,12 + 19130: 43,12 + 19131: 43,8 + 19168: 45,16 + 19169: 45,17 + 19170: 45,18 + 19171: 45,18 + 19172: 45,19 + 19173: 45,23 + 19174: 45,22 + 19175: 45,22 + 19176: 45,21 + 19189: 49,25 + 19190: 49,24 + 19191: 49,26 + 19192: 49,27 + 19193: 49,28 + 19209: 50,18 + 19210: 50,17 + 19220: 56,16 + 19221: 56,18 + 19238: 68,-4 + 19251: 72,22 + 19356: 50,5 + 19357: 50,6 + 19358: 50,7 + 19364: 69,0 + 19379: 71,1 + 19380: 71,-1 + 19405: -20,-27 + 19406: -20,-25 + 19413: -17,-24 + 19594: 54,27 + 19595: 54,26 + 19596: 54,25 + 19597: 54,25 + 19598: 54,24 + 19599: 54,24 + 19600: 54,23 + 19601: 54,22 + 19611: 57,22 + 19612: 57,22 + 19613: 57,23 + 19614: 57,24 + 19615: 57,25 + 19616: 57,25 + 19617: 57,26 + 19618: 57,27 + 19630: 49,29 + 19631: 49,30 + 19632: 49,31 + 19646: 58,29 + 19647: 58,30 - node: color: '#DE3A3AFF' id: BrickTileDarkLineW decals: - 20328: -24,0 - 20329: -24,1 + 20326: -24,0 + 20327: -24,1 - node: color: '#EFB341FF' id: BrickTileDarkLineW decals: - 17569: -61,9 - 17570: -61,8 - 17571: -61,7 - 17572: -61,6 - 17573: -61,5 - 17596: -61,10 - 17601: -66,10 - 17602: -66,9 - 17603: -66,8 - 17604: -66,8 - 17605: -66,7 - 17606: -66,6 - 17607: -66,5 - 17612: -60,6 - 17617: -60,10 - 17619: -60,6 - 17673: -74,7 - 17674: -74,6 - 17675: -74,5 - 17840: -56,6 - 17846: -60,6 - 17847: -60,10 - 18270: -73,0 - 18271: -73,-1 - 18272: -73,-2 + 17567: -61,9 + 17568: -61,8 + 17569: -61,7 + 17570: -61,6 + 17571: -61,5 + 17594: -61,10 + 17599: -66,10 + 17600: -66,9 + 17601: -66,8 + 17602: -66,8 + 17603: -66,7 + 17604: -66,6 + 17605: -66,5 + 17610: -60,6 + 17615: -60,10 + 17617: -60,6 + 17671: -74,7 + 17672: -74,6 + 17673: -74,5 + 17838: -56,6 + 17844: -60,6 + 17845: -60,10 + 18268: -73,0 + 18269: -73,-1 + 18270: -73,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1985: -8,30 - 1986: -8,33 - 1987: -8,27 - 2013: -17,33 - 2014: -17,32 - 2015: -17,31 - 2016: -17,29 - 2017: -17,28 - 2018: -17,27 - 2331: -28,33 - 2332: -28,34 - 2333: -28,34 - 2334: -28,35 - 2335: -28,36 - 2336: -28,37 - 2517: -9,40 - 2518: -9,41 - 2519: -9,42 - 2523: -9,43 - 2524: -9,42 - 2525: -9,41 - 2526: -9,40 - 2527: -9,39 - 2528: -9,45 - 2529: -8,44 - 2530: -8,38 - 2531: -8,37 - 2607: -5,37 - 2612: -4,38 - 2613: -4,39 - 2628: -1,40 - 2672: 4,51 - 2673: 4,52 - 2674: 4,53 - 2675: 4,53 - 2685: -1,52 - 2686: -1,53 - 2687: -1,54 - 2688: -1,54 - 2718: -7,53 - 2723: -4,54 - 3137: -16,64 - 3138: -16,63 - 3139: -16,62 - 3140: -16,61 - 3152: -8,61 - 3153: -8,62 - 3154: -8,63 - 3155: -8,63 - 3156: -8,64 - 3196: -22,61 - 3197: -22,62 - 3198: -22,63 - 3199: -22,64 - 3211: -2,64 - 3212: -2,63 - 3213: -2,62 - 3214: -2,62 - 3215: -2,61 - 3220: -1,61 - 3436: -1,61 - 3691: 4,64 - 3693: 4,60 - 3900: 24,66 - 3984: -42,61 - 3985: -42,60 - 5247: -32,80 - 5248: -32,81 - 5249: -32,89 - 5250: -32,89 - 5251: -32,90 - 5252: -32,91 - 5265: -28,91 - 5266: -28,90 - 5267: -28,89 - 5268: -28,89 - 5269: -28,81 - 5270: -28,80 - 5271: -28,80 - 5329: -14,89 - 5330: -14,90 - 5331: -14,91 - 5335: -10,89 - 5336: -10,90 - 5337: -10,90 - 5338: -10,91 - 5339: -10,91 - 5348: -14,80 - 5349: -14,80 - 5350: -14,81 - 5353: -10,80 - 5354: -10,81 - 5358: 4,81 - 5359: 4,80 - 5360: 4,79 - 5645: -17,-20 - 5664: -7,9 - 5668: 5,9 - 5714: 7,6 - 5726: 7,2 - 5727: 7,1 - 5733: 12,1 - 5823: -16,-5 - 5826: -14,-5 - 5827: -13,-4 - 5951: -3,13 - 5967: -1,-6 - 5968: -1,-4 - 5969: -1,-3 - 5970: -1,-2 - 5971: -1,-2 - 5972: -1,0 - 5973: -1,1 - 5974: -1,1 - 5975: -1,2 - 5976: -1,4 - 5977: -1,5 - 5978: -1,5 - 5979: -1,6 - 6030: -8,-16 - 6031: -8,-12 - 6057: -14,-15 - 6058: -14,-14 - 6059: -14,-13 - 6060: -12,-15 - 6061: -12,-14 - 6062: -12,-13 - 6063: -16,-15 - 6064: -16,-14 - 6065: -16,-13 - 6066: -10,-15 - 6067: -10,-14 - 6068: -10,-13 - 6178: -3,-20 - 6179: 1,-20 - 6183: 15,-20 - 6574: -26,-7 - 6575: -26,-8 - 6627: -23,-7 - 6628: -23,-7 - 6853: -33,15 - 6854: -33,14 - 6855: -33,13 - 6856: -33,12 - 6857: -33,11 - 6858: -33,10 - 6859: -33,9 - 6874: -39,10 - 6875: -39,9 - 6876: -39,11 - 6877: -39,11 - 6878: -39,12 - 6879: -39,13 + 1983: -8,30 + 1984: -8,33 + 1985: -8,27 + 2011: -17,33 + 2012: -17,32 + 2013: -17,31 + 2014: -17,29 + 2015: -17,28 + 2016: -17,27 + 2329: -28,33 + 2330: -28,34 + 2331: -28,34 + 2332: -28,35 + 2333: -28,36 + 2334: -28,37 + 2515: -9,40 + 2516: -9,41 + 2517: -9,42 + 2521: -9,43 + 2522: -9,42 + 2523: -9,41 + 2524: -9,40 + 2525: -9,39 + 2526: -9,45 + 2527: -8,44 + 2528: -8,38 + 2529: -8,37 + 2605: -5,37 + 2610: -4,38 + 2611: -4,39 + 2626: -1,40 + 2670: 4,51 + 2671: 4,52 + 2672: 4,53 + 2673: 4,53 + 2683: -1,52 + 2684: -1,53 + 2685: -1,54 + 2686: -1,54 + 2716: -7,53 + 2721: -4,54 + 3135: -16,64 + 3136: -16,63 + 3137: -16,62 + 3138: -16,61 + 3150: -8,61 + 3151: -8,62 + 3152: -8,63 + 3153: -8,63 + 3154: -8,64 + 3194: -22,61 + 3195: -22,62 + 3196: -22,63 + 3197: -22,64 + 3209: -2,64 + 3210: -2,63 + 3211: -2,62 + 3212: -2,62 + 3213: -2,61 + 3218: -1,61 + 3434: -1,61 + 3689: 4,64 + 3691: 4,60 + 3898: 24,66 + 3982: -42,61 + 3983: -42,60 + 5245: -32,80 + 5246: -32,81 + 5247: -32,89 + 5248: -32,89 + 5249: -32,90 + 5250: -32,91 + 5263: -28,91 + 5264: -28,90 + 5265: -28,89 + 5266: -28,89 + 5267: -28,81 + 5268: -28,80 + 5269: -28,80 + 5327: -14,89 + 5328: -14,90 + 5329: -14,91 + 5333: -10,89 + 5334: -10,90 + 5335: -10,90 + 5336: -10,91 + 5337: -10,91 + 5346: -14,80 + 5347: -14,80 + 5348: -14,81 + 5351: -10,80 + 5352: -10,81 + 5356: 4,81 + 5357: 4,80 + 5358: 4,79 + 5643: -17,-20 + 5662: -7,9 + 5666: 5,9 + 5712: 7,6 + 5724: 7,2 + 5725: 7,1 + 5731: 12,1 + 5821: -16,-5 + 5824: -14,-5 + 5825: -13,-4 + 5949: -3,13 + 5965: -1,-6 + 5966: -1,-4 + 5967: -1,-3 + 5968: -1,-2 + 5969: -1,-2 + 5970: -1,0 + 5971: -1,1 + 5972: -1,1 + 5973: -1,2 + 5974: -1,4 + 5975: -1,5 + 5976: -1,5 + 5977: -1,6 + 6028: -8,-16 + 6029: -8,-12 + 6055: -14,-15 + 6056: -14,-14 + 6057: -14,-13 + 6058: -12,-15 + 6059: -12,-14 + 6060: -12,-13 + 6061: -16,-15 + 6062: -16,-14 + 6063: -16,-13 + 6064: -10,-15 + 6065: -10,-14 + 6066: -10,-13 + 6176: -3,-20 + 6177: 1,-20 + 6181: 15,-20 + 6572: -26,-7 + 6573: -26,-8 + 6625: -23,-7 + 6626: -23,-7 + 6851: -33,15 + 6852: -33,14 + 6853: -33,13 + 6854: -33,12 + 6855: -33,11 + 6856: -33,10 + 6857: -33,9 + 6872: -39,10 + 6873: -39,9 + 6874: -39,11 + 6875: -39,11 + 6876: -39,12 + 6877: -39,13 + 6878: -39,14 + 6879: -39,14 6880: -39,14 - 6881: -39,14 - 6882: -39,14 - 6883: -39,15 - 6884: -39,16 - 7041: 19,5 - 7055: 26,5 - 7094: 19,-11 - 7095: 26,-11 - 7243: 20,1 - 7244: 20,0 - 7245: 20,-1 - 7246: 20,-2 - 7247: 20,-4 - 7248: 20,-5 - 7249: 20,-6 - 7250: 20,-7 - 7263: 24,-8 - 7264: 24,-2 - 7290: 34,0 - 7305: 28,9 - 7331: 29,8 - 7332: 29,9 - 7333: 29,10 - 7380: 34,5 - 7387: 38,6 - 7388: 38,4 - 7402: 49,0 - 7706: 39,19 - 7707: 39,20 - 7708: 39,21 - 7709: 39,21 - 7710: 34,20 - 7723: 37,20 - 7724: 37,20 - 7725: 44,20 - 8208: 42,-11 - 8209: 42,-15 - 8210: 42,-15 - 8492: 57,-20 - 8493: 57,-21 - 8509: 62,-23 - 8510: 62,-23 - 8511: 62,-22 - 8512: 62,-22 - 8513: 62,-20 - 8514: 62,-19 - 8515: 62,-18 - 8516: 62,-21 - 8536: 51,-24 - 8537: 51,-24 - 8538: 51,-25 - 8616: 64,-30 - 8617: 64,-11 - 9002: -7,-23 - 9003: -14,-23 - 9004: -15,-28 - 9005: -15,-27 - 9006: -7,-28 - 9007: 11,-23 - 9008: 4,-23 - 9009: 3,-28 - 9010: 3,-27 - 9087: 11,-28 - 9102: 3,-28 - 9120: -7,-70 - 9121: -2,-70 - 9150: -8,-73 - 9151: -1,-73 - 9152: -1,-73 - 9700: 19,-35 - 10270: 35,-30 - 10302: 20,-52 - 10461: 2,-50 - 10462: 2,-52 - 10470: 10,-58 - 10471: 10,-59 - 10472: 10,-60 - 10473: 10,-60 - 10474: 10,-61 - 10476: 14,-60 - 10477: 14,-60 - 10509: 12,-61 - 10510: 12,-60 - 10511: 12,-59 - 10606: 49,-55 - 10701: 80,-44 - 10702: 80,-45 - 10703: 80,-45 - 10704: 80,-46 - 10720: 72,-39 - 10721: 72,-38 - 10781: 53,-55 - 10782: 53,-55 - 10783: 53,-54 - 10784: 53,-53 - 10796: 44,-55 - 10797: 44,-54 - 10798: 43,-51 - 10799: 43,-51 - 10800: 43,-52 - 10801: 43,-53 - 10802: 43,-54 - 10803: 43,-54 - 10804: 43,-55 - 10805: 43,-56 - 10806: 43,-51 - 10807: 43,-50 - 11322: -75,-35 - 11551: -21,-35 - 11732: -44,-28 - 11733: -32,-28 - 11734: -32,-28 - 12359: -21,-47 - 12389: -12,-67 - 12390: -12,-66 - 12397: -17,-73 - 12398: -17,-72 - 12399: -17,-71 - 12400: -17,-71 - 12401: -17,-70 - 12402: -17,-70 - 12403: -17,-69 - 12404: -17,-69 - 12405: -17,-68 - 12424: -19,-75 - 12425: -19,-76 - 12453: -16,-82 - 12454: -16,-81 - 12455: -16,-80 - 12473: -23,-81 - 12478: -12,-66 - 12479: -12,-67 - 12577: -17,-79 - 12581: -19,-81 - 12588: -24,-81 - 12598: -12,-78 - 12616: -24,-73 - 12617: -24,-74 - 12618: -24,-75 - 12622: -22,-66 - 12623: -22,-67 - 12627: -25,-65 - 12628: -25,-66 - 12629: -25,-67 - 12630: -25,-67 - 12631: -25,-68 - 12632: -25,-69 - 12706: -38,28 - 12707: -38,27 - 12716: -37,27 - 13385: -41,-67 - 13551: -37,-79 - 13552: -37,-74 - 13563: -30,-78 - 13564: -30,-77 - 13572: -35,-78 - 13573: -35,-77 - 13592: -35,-80 - 14480: -21,23 - 14481: -8,23 - 14482: 6,23 - 15409: -40,5 - 15514: 61,-31 - 15515: 61,-10 - 15525: 58,-27 - 15526: 60,-27 - 15535: 58,-14 - 15536: 60,-14 - 15590: 75,1 - 15643: 80,1 - 15644: 89,1 - 15655: 85,1 - 15723: 99,-3 - 15750: 97,2 - 15874: 79,-4 - 15875: 79,-3 - 15896: 83,-3 - 15897: 83,-4 - 15910: 94,10 - 16111: 87,-4 - 16112: 87,-3 - 16770: -55,1 - 16771: -52,-1 - 16772: -52,-2 - 16773: -52,-2 - 16774: -52,-3 - 16775: -52,-4 - 16776: -52,-7 - 16777: -52,-8 - 16778: -52,-9 - 16779: -52,-12 - 16780: -52,-13 - 16781: -52,-14 - 16782: -52,-15 - 16783: -54,-17 - 16802: -49,4 - 16803: -49,5 - 16816: -54,5 - 16817: -51,5 - 17140: -46,-13 - 17141: -46,-14 - 17142: -46,-15 - 17143: -46,-16 - 17144: -46,-17 - 17168: -74,-7 - 17336: -50,-8 - 17405: -74,-7 - 17722: -79,6 - 17723: -79,5 - 17724: -79,4 - 17733: -76,6 - 17734: -76,5 - 17735: -76,4 - 17758: -76,10 - 17759: -79,10 - 18090: -45,47 - 18106: -53,33 - 18107: -53,34 - 18108: -53,36 - 18109: -53,37 - 18113: -57,33 - 18116: -55,21 - 18121: -52,23 - 18122: -52,24 - 18163: -58,6 - 18368: -63,-7 - 18369: -68,-7 - 18370: -57,-8 - 18393: -53,-37 - 18488: -17,-9 - 18489: -17,-10 - 18521: 15,-9 - 19027: 57,8 - 19028: 59,8 - 19029: 61,8 - 19030: 63,8 - 19479: -14,33 - 19480: -14,32 - 19481: -15,30 - 19482: -14,28 - 19483: -14,27 - 19845: -31,-23 - 20143: 61,29 - 20156: -21,5 - 21389: 21,14 - 21390: 21,15 - 21394: 25,14 - 21395: 25,15 - 21410: 22,16 - 21411: 22,13 - 21450: 23,15 - 21451: 23,14 + 6881: -39,15 + 6882: -39,16 + 7039: 19,5 + 7053: 26,5 + 7092: 19,-11 + 7093: 26,-11 + 7241: 20,1 + 7242: 20,0 + 7243: 20,-1 + 7244: 20,-2 + 7245: 20,-4 + 7246: 20,-5 + 7247: 20,-6 + 7248: 20,-7 + 7261: 24,-8 + 7262: 24,-2 + 7288: 34,0 + 7303: 28,9 + 7329: 29,8 + 7330: 29,9 + 7331: 29,10 + 7378: 34,5 + 7385: 38,6 + 7386: 38,4 + 7400: 49,0 + 7704: 39,19 + 7705: 39,20 + 7706: 39,21 + 7707: 39,21 + 7708: 34,20 + 7721: 37,20 + 7722: 37,20 + 7723: 44,20 + 8206: 42,-11 + 8207: 42,-15 + 8208: 42,-15 + 8490: 57,-20 + 8491: 57,-21 + 8507: 62,-23 + 8508: 62,-23 + 8509: 62,-22 + 8510: 62,-22 + 8511: 62,-20 + 8512: 62,-19 + 8513: 62,-18 + 8514: 62,-21 + 8534: 51,-24 + 8535: 51,-24 + 8536: 51,-25 + 8614: 64,-30 + 8615: 64,-11 + 9000: -7,-23 + 9001: -14,-23 + 9002: -15,-28 + 9003: -15,-27 + 9004: -7,-28 + 9005: 11,-23 + 9006: 4,-23 + 9007: 3,-28 + 9008: 3,-27 + 9085: 11,-28 + 9100: 3,-28 + 9118: -7,-70 + 9119: -2,-70 + 9148: -8,-73 + 9149: -1,-73 + 9150: -1,-73 + 9698: 19,-35 + 10268: 35,-30 + 10300: 20,-52 + 10459: 2,-50 + 10460: 2,-52 + 10468: 10,-58 + 10469: 10,-59 + 10470: 10,-60 + 10471: 10,-60 + 10472: 10,-61 + 10474: 14,-60 + 10475: 14,-60 + 10507: 12,-61 + 10508: 12,-60 + 10509: 12,-59 + 10604: 49,-55 + 10699: 80,-44 + 10700: 80,-45 + 10701: 80,-45 + 10702: 80,-46 + 10718: 72,-39 + 10719: 72,-38 + 10779: 53,-55 + 10780: 53,-55 + 10781: 53,-54 + 10782: 53,-53 + 10794: 44,-55 + 10795: 44,-54 + 10796: 43,-51 + 10797: 43,-51 + 10798: 43,-52 + 10799: 43,-53 + 10800: 43,-54 + 10801: 43,-54 + 10802: 43,-55 + 10803: 43,-56 + 10804: 43,-51 + 10805: 43,-50 + 11320: -75,-35 + 11549: -21,-35 + 11730: -44,-28 + 11731: -32,-28 + 11732: -32,-28 + 12357: -21,-47 + 12387: -12,-67 + 12388: -12,-66 + 12395: -17,-73 + 12396: -17,-72 + 12397: -17,-71 + 12398: -17,-71 + 12399: -17,-70 + 12400: -17,-70 + 12401: -17,-69 + 12402: -17,-69 + 12403: -17,-68 + 12422: -19,-75 + 12423: -19,-76 + 12451: -16,-82 + 12452: -16,-81 + 12453: -16,-80 + 12471: -23,-81 + 12476: -12,-66 + 12477: -12,-67 + 12575: -17,-79 + 12579: -19,-81 + 12586: -24,-81 + 12596: -12,-78 + 12614: -24,-73 + 12615: -24,-74 + 12616: -24,-75 + 12620: -22,-66 + 12621: -22,-67 + 12625: -25,-65 + 12626: -25,-66 + 12627: -25,-67 + 12628: -25,-67 + 12629: -25,-68 + 12630: -25,-69 + 12704: -38,28 + 12705: -38,27 + 12714: -37,27 + 13383: -41,-67 + 13549: -37,-79 + 13550: -37,-74 + 13561: -30,-78 + 13562: -30,-77 + 13570: -35,-78 + 13571: -35,-77 + 13590: -35,-80 + 14478: -21,23 + 14479: -8,23 + 14480: 6,23 + 15407: -40,5 + 15512: 61,-31 + 15513: 61,-10 + 15523: 58,-27 + 15524: 60,-27 + 15533: 58,-14 + 15534: 60,-14 + 15588: 75,1 + 15641: 80,1 + 15642: 89,1 + 15653: 85,1 + 15721: 99,-3 + 15748: 97,2 + 15872: 79,-4 + 15873: 79,-3 + 15894: 83,-3 + 15895: 83,-4 + 15908: 94,10 + 16109: 87,-4 + 16110: 87,-3 + 16768: -55,1 + 16769: -52,-1 + 16770: -52,-2 + 16771: -52,-2 + 16772: -52,-3 + 16773: -52,-4 + 16774: -52,-7 + 16775: -52,-8 + 16776: -52,-9 + 16777: -52,-12 + 16778: -52,-13 + 16779: -52,-14 + 16780: -52,-15 + 16781: -54,-17 + 16800: -49,4 + 16801: -49,5 + 16814: -54,5 + 16815: -51,5 + 17138: -46,-13 + 17139: -46,-14 + 17140: -46,-15 + 17141: -46,-16 + 17142: -46,-17 + 17166: -74,-7 + 17334: -50,-8 + 17403: -74,-7 + 17720: -79,6 + 17721: -79,5 + 17722: -79,4 + 17731: -76,6 + 17732: -76,5 + 17733: -76,4 + 17756: -76,10 + 17757: -79,10 + 18088: -45,47 + 18104: -53,33 + 18105: -53,34 + 18106: -53,36 + 18107: -53,37 + 18111: -57,33 + 18114: -55,21 + 18119: -52,23 + 18120: -52,24 + 18161: -58,6 + 18366: -63,-7 + 18367: -68,-7 + 18368: -57,-8 + 18391: -53,-37 + 18486: -17,-9 + 18487: -17,-10 + 18519: 15,-9 + 19025: 57,8 + 19026: 59,8 + 19027: 61,8 + 19028: 63,8 + 19477: -14,33 + 19478: -14,32 + 19479: -15,30 + 19480: -14,28 + 19481: -14,27 + 19843: -31,-23 + 20141: 61,29 + 20154: -21,5 + 21387: 21,14 + 21388: 21,15 + 21392: 25,14 + 21393: 25,15 + 21408: 22,16 + 21409: 22,13 + 21448: 23,15 + 21449: 23,14 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 20881: 55,9 + 20879: 55,9 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7667: 73,20 + 7665: 73,20 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNe decals: - 8117: 31,-14 - 8118: 22,-14 + 8115: 31,-14 + 8116: 22,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 15794: 79,6 + 15792: 79,6 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerNe decals: - 3925: 21,63 + 3923: 21,63 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNe decals: - 9802: 22,-31 - 10036: 32,-31 - 10037: 25,-31 - 10042: 26,-25 - 10066: 31,-23 - 10075: 32,-22 - 10154: 24,-46 - 10218: 34,-47 + 9800: 22,-31 + 10034: 32,-31 + 10035: 25,-31 + 10040: 26,-25 + 10064: 31,-23 + 10073: 32,-22 + 10152: 24,-46 + 10216: 34,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNe decals: - 11968: -26,-26 - 11986: -45,-25 - 11987: -41,-26 - 11988: -33,-26 - 11989: -37,-26 - 11990: -37,-26 - 12073: -45,-22 - 12175: -28,-38 - 12176: -23,-38 - 12349: -17,-38 - 16170: -62,-46 - 16171: -63,-45 + 11966: -26,-26 + 11984: -45,-25 + 11985: -41,-26 + 11986: -33,-26 + 11987: -37,-26 + 11988: -37,-26 + 12071: -45,-22 + 12173: -28,-38 + 12174: -23,-38 + 12347: -17,-38 + 16168: -62,-46 + 16169: -63,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNe decals: - 10957: 32,-66 + 10955: 32,-66 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 20330: -22,2 - 20382: 6,-80 - 20412: 6,-64 - 20413: 6,-74 - 20419: 10,-77 - 20420: 10,-74 - 20421: 9,-64 - 20449: 8,-58 - 20477: 14,-30 - 20520: 3,65 - 20530: 59,31 - 20531: 58,32 - 20538: 48,13 - 20550: 41,13 - 20570: 41,9 - 20582: 37,9 - 20585: 37,12 - 20625: 93,23 - 20626: 86,10 - 20627: 74,3 - 20633: 74,19 - 20660: 44,13 - 20804: 54,19 - 20805: 48,19 - 20806: 47,24 - 20862: 60,13 - 20950: 78,10 - 21025: 76,23 - 21067: 71,-3 - 21087: 48,-3 - 21097: 53,-3 - 21104: 58,-3 - 21125: 44,1 - 21135: 41,1 - 21178: 44,9 - 21206: 77,-2 - 21207: 74,-3 - 21422: 28,22 + 20328: -22,2 + 20380: 6,-80 + 20410: 6,-64 + 20411: 6,-74 + 20417: 10,-77 + 20418: 10,-74 + 20419: 9,-64 + 20447: 8,-58 + 20475: 14,-30 + 20518: 3,65 + 20528: 59,31 + 20529: 58,32 + 20536: 48,13 + 20548: 41,13 + 20568: 41,9 + 20580: 37,9 + 20583: 37,12 + 20623: 93,23 + 20624: 86,10 + 20625: 74,3 + 20631: 74,19 + 20658: 44,13 + 20802: 54,19 + 20803: 48,19 + 20804: 47,24 + 20860: 60,13 + 20948: 78,10 + 21023: 76,23 + 21065: 71,-3 + 21085: 48,-3 + 21095: 53,-3 + 21102: 58,-3 + 21123: 44,1 + 21133: 41,1 + 21176: 44,9 + 21204: 77,-2 + 21205: 74,-3 + 21420: 28,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2216: -17,53 - 2236: -15,52 - 2351: -28,38 - 2396: -33,38 - 2784: -2,46 - 2798: -5,28 - 2819: -26,43 - 3462: -28,92 - 3471: -29,96 - 3480: -28,82 - 3491: -11,96 - 3505: -10,92 - 3513: -10,82 - 3553: 8,69 - 3773: 3,58 - 4152: -23,23 - 5144: 36,32 - 6344: 4,-14 - 6412: 14,-15 - 6827: -35,16 - 6828: -34,15 - 6919: -35,19 - 6936: -22,15 - 7077: 24,10 - 7160: 31,2 - 7174: 31,-7 - 8657: 63,-10 - 8661: 57,-10 - 8884: 1,-34 - 8885: 1,-34 - 9173: 2,-64 - 9174: 2,-64 - 9313: 1,-58 - 9314: 1,-58 - 9453: -39,-14 - 10608: 56,-43 - 10609: 56,-43 - 10653: 49,-38 - 10654: 49,-38 - 11260: -58,-34 - 11306: -77,-19 - 11307: -77,-26 - 11833: -37,-51 - 11834: -37,-55 - 11869: -23,-50 - 11884: -33,-52 - 11885: -33,-52 - 13428: -36,-60 - 15366: -8,-69 - 15807: 89,2 - 16461: -39,-6 - 16725: -55,-12 - 16850: -49,-1 - 17530: 7,85 - 17536: 8,82 + 2214: -17,53 + 2234: -15,52 + 2349: -28,38 + 2394: -33,38 + 2782: -2,46 + 2796: -5,28 + 2817: -26,43 + 3460: -28,92 + 3469: -29,96 + 3478: -28,82 + 3489: -11,96 + 3503: -10,92 + 3511: -10,82 + 3551: 8,69 + 3771: 3,58 + 4150: -23,23 + 5142: 36,32 + 6342: 4,-14 + 6410: 14,-15 + 6825: -35,16 + 6826: -34,15 + 6917: -35,19 + 6934: -22,15 + 7075: 24,10 + 7158: 31,2 + 7172: 31,-7 + 8655: 63,-10 + 8659: 57,-10 + 8882: 1,-34 + 8883: 1,-34 + 9171: 2,-64 + 9172: 2,-64 + 9311: 1,-58 + 9312: 1,-58 + 9451: -39,-14 + 10606: 56,-43 + 10607: 56,-43 + 10651: 49,-38 + 10652: 49,-38 + 11258: -58,-34 + 11304: -77,-19 + 11305: -77,-26 + 11831: -37,-51 + 11832: -37,-55 + 11867: -23,-50 + 11882: -33,-52 + 11883: -33,-52 + 13426: -36,-60 + 15364: -8,-69 + 15805: 89,2 + 16459: -39,-6 + 16723: -55,-12 + 16848: -49,-1 + 17528: 7,85 + 17534: 8,82 + 18473: -9,-12 + 18474: -9,-12 18475: -9,-12 - 18476: -9,-12 - 18477: -9,-12 - 18550: 10,-12 + 18548: 10,-12 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw decals: - 8115: 20,-14 - 8116: 24,-14 + 8113: 20,-14 + 8114: 24,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNw decals: - 3742: -28,65 + 3740: -28,65 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNw decals: - 9803: 20,-31 - 10035: 31,-31 - 10039: 24,-31 - 10043: 24,-25 - 10067: 29,-23 - 10080: 28,-22 - 10153: 20,-46 - 10217: 32,-47 + 9801: 20,-31 + 10033: 31,-31 + 10037: 24,-31 + 10041: 24,-25 + 10065: 29,-23 + 10078: 28,-22 + 10151: 20,-46 + 10215: 32,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNw decals: - 11973: -31,-26 - 11998: -43,-26 - 11999: -43,-26 - 12000: -35,-26 - 12032: -39,-26 - 12074: -47,-22 - 12177: -30,-38 - 12178: -26,-38 - 12350: -21,-38 - 16172: -65,-45 + 11971: -31,-26 + 11996: -43,-26 + 11997: -43,-26 + 11998: -35,-26 + 12030: -39,-26 + 12072: -47,-22 + 12175: -30,-38 + 12176: -26,-38 + 12348: -21,-38 + 16170: -65,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNw decals: - 10956: 26,-66 + 10954: 26,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerNw decals: - 7841: 68,6 + 7839: 68,6 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerNw decals: - 3930: 18,63 + 3928: 18,63 - node: color: '#DAA58BFF' id: BrickTileSteelCornerNw decals: - 4563: 13,39 + 4561: 13,39 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 20337: -24,2 - 20381: 4,-80 - 20410: 4,-74 - 20411: 4,-64 - 20436: 8,-74 - 20457: 3,-58 - 20461: 8,-64 - 20480: 10,-30 - 20500: 12,32 - 20521: 0,65 - 20532: 50,32 - 20533: 49,31 - 20534: 45,24 - 20551: 39,13 - 20571: 39,9 - 20583: 35,9 - 20584: 35,12 - 20628: 72,3 - 20632: 72,19 - 20656: 46,13 - 20657: 43,13 - 20694: 91,23 - 20695: 81,14 - 20696: 80,10 - 20697: 76,10 - 20698: 72,23 - 20803: 50,19 - 20835: 56,19 - 20861: 50,13 - 20884: 50,9 - 21070: 68,-3 - 21102: 50,-3 - 21103: 55,-3 - 21126: 43,1 - 21127: 39,1 - 21177: 43,9 - 21208: 73,-3 - 21209: 76,-2 - 21239: -20,-24 - 21255: 45,-3 - 21273: 46,-7 - 21425: 20,22 + 20335: -24,2 + 20379: 4,-80 + 20408: 4,-74 + 20409: 4,-64 + 20434: 8,-74 + 20455: 3,-58 + 20459: 8,-64 + 20478: 10,-30 + 20498: 12,32 + 20519: 0,65 + 20530: 50,32 + 20531: 49,31 + 20532: 45,24 + 20549: 39,13 + 20569: 39,9 + 20581: 35,9 + 20582: 35,12 + 20626: 72,3 + 20630: 72,19 + 20654: 46,13 + 20655: 43,13 + 20692: 91,23 + 20693: 81,14 + 20694: 80,10 + 20695: 76,10 + 20696: 72,23 + 20801: 50,19 + 20833: 56,19 + 20859: 50,13 + 20882: 50,9 + 21068: 68,-3 + 21100: 50,-3 + 21101: 55,-3 + 21124: 43,1 + 21125: 39,1 + 21175: 43,9 + 21206: 73,-3 + 21207: 76,-2 + 21237: -20,-24 + 21253: 45,-3 + 21271: 46,-7 + 21423: 20,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2214: -23,52 - 2215: -21,53 - 2259: -24,45 - 2317: -28,39 - 2380: -30,33 - 2395: -34,38 - 2755: -3,51 - 2785: -5,46 - 2800: -7,28 - 3316: -32,69 - 3424: -32,92 - 3425: -32,82 - 3472: -31,96 - 3492: -13,96 - 3506: -14,92 - 3514: -14,82 - 3655: 4,82 - 5125: 29,32 - 5566: -21,-15 - 5803: 7,-4 - 6263: -6,-14 - 6413: 12,-15 - 6414: 12,-15 - 6815: -44,21 - 6829: -37,16 - 6830: -37,16 - 6831: -38,15 - 6907: -37,16 - 6920: -37,19 - 6944: -29,15 - 6945: -29,15 - 7078: 20,10 - 7155: 25,2 - 7166: 25,-7 - 7320: 28,12 - 8362: 38,-19 - 8660: 61,-10 - 8666: 55,-10 - 8886: -3,-34 - 9315: -3,-58 - 9316: -3,-58 - 9330: -3,-58 - 9645: -11,-64 - 10607: 54,-43 - 10651: 43,-38 - 10652: 43,-38 - 11305: -78,-19 - 11313: -78,-26 - 11314: -78,-23 - 11832: -42,-51 - 11839: -39,-55 - 11868: -26,-50 - 11886: -35,-52 - 11887: -35,-52 - 13429: -38,-60 - 14407: -45,15 - 15367: -1,-69 - 15602: 76,2 - 16463: -40,-6 - 16697: -61,-12 - 16824: -61,-1 - 16852: -51,-1 - 17531: 5,85 - 18547: 6,-12 - 20107: 61,26 + 2212: -23,52 + 2213: -21,53 + 2257: -24,45 + 2315: -28,39 + 2378: -30,33 + 2393: -34,38 + 2753: -3,51 + 2783: -5,46 + 2798: -7,28 + 3314: -32,69 + 3422: -32,92 + 3423: -32,82 + 3470: -31,96 + 3490: -13,96 + 3504: -14,92 + 3512: -14,82 + 3653: 4,82 + 5123: 29,32 + 5564: -21,-15 + 5801: 7,-4 + 6261: -6,-14 + 6411: 12,-15 + 6412: 12,-15 + 6813: -44,21 + 6827: -37,16 + 6828: -37,16 + 6829: -38,15 + 6905: -37,16 + 6918: -37,19 + 6942: -29,15 + 6943: -29,15 + 7076: 20,10 + 7153: 25,2 + 7164: 25,-7 + 7318: 28,12 + 8360: 38,-19 + 8658: 61,-10 + 8664: 55,-10 + 8884: -3,-34 + 9313: -3,-58 + 9314: -3,-58 + 9328: -3,-58 + 9643: -11,-64 + 10605: 54,-43 + 10649: 43,-38 + 10650: 43,-38 + 11303: -78,-19 + 11311: -78,-26 + 11312: -78,-23 + 11830: -42,-51 + 11837: -39,-55 + 11866: -26,-50 + 11884: -35,-52 + 11885: -35,-52 + 13427: -38,-60 + 14405: -45,15 + 15365: -1,-69 + 15600: 76,2 + 16461: -40,-6 + 16695: -61,-12 + 16822: -61,-1 + 16850: -51,-1 + 17529: 5,85 + 18545: 6,-12 + 20105: 61,26 - node: cleanable: True color: '#FFFFFFFF' @@ -5967,150 +5962,150 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSe decals: - 8119: 22,-16 + 8117: 22,-16 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 15781: 79,4 + 15779: 79,4 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSe decals: - 9805: 22,-32 - 10033: 32,-32 - 10034: 32,-32 - 10040: 25,-32 - 10054: 26,-26 - 10163: 24,-49 - 10220: 34,-53 + 9803: 22,-32 + 10031: 32,-32 + 10032: 32,-32 + 10038: 25,-32 + 10052: 26,-26 + 10161: 24,-49 + 10218: 34,-53 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSe decals: - 11960: -26,-32 - 11994: -33,-30 - 11995: -37,-30 - 11996: -41,-30 - 11997: -45,-31 - 12075: -45,-23 - 12110: -24,-47 - 12179: -28,-42 - 12180: -23,-42 + 11958: -26,-32 + 11992: -33,-30 + 11993: -37,-30 + 11994: -41,-30 + 11995: -45,-31 + 12073: -45,-23 + 12108: -24,-47 + 12177: -28,-42 + 12178: -23,-42 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSe decals: - 10955: 32,-70 + 10953: 32,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSe decals: - 7799: 59,3 - 7800: 63,3 - 7801: 67,3 - 7820: 70,5 - 19292: 67,4 + 7797: 59,3 + 7798: 63,3 + 7799: 67,3 + 7818: 70,5 + 19290: 67,4 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSe decals: - 3954: 21,61 + 3952: 21,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 20332: -22,0 - 20343: -46,8 - 20387: 6,-82 - 20388: 10,-78 - 20389: 10,-75 - 20390: 6,-72 - 20391: 9,-66 - 20392: 8,-62 - 20393: 6,-78 - 20479: 14,-32 - 20501: 13,30 - 20535: 48,15 - 20552: 41,11 - 20586: 37,11 - 20637: 76,21 - 20658: 44,11 - 20692: 86,9 - 20693: 93,12 - 20754: 59,21 - 20833: 57,15 - 20846: 54,15 - 20863: 60,11 - 20882: 55,3 - 20949: 78,8 - 20978: 74,-1 - 20979: 74,5 - 21076: 71,-5 - 21088: 48,-5 - 21106: 53,-5 - 21107: 58,-5 - 21121: 44,-1 - 21124: 41,-1 - 21176: 44,7 - 21214: 74,-5 - 21221: 77,-4 - 21241: -18,-28 - 21270: 51,-9 - 21424: 28,21 + 20330: -22,0 + 20341: -46,8 + 20385: 6,-82 + 20386: 10,-78 + 20387: 10,-75 + 20388: 6,-72 + 20389: 9,-66 + 20390: 8,-62 + 20391: 6,-78 + 20477: 14,-32 + 20499: 13,30 + 20533: 48,15 + 20550: 41,11 + 20584: 37,11 + 20635: 76,21 + 20656: 44,11 + 20690: 86,9 + 20691: 93,12 + 20752: 59,21 + 20831: 57,15 + 20844: 54,15 + 20861: 60,11 + 20880: 55,3 + 20947: 78,8 + 20976: 74,-1 + 20977: 74,5 + 21074: 71,-5 + 21086: 48,-5 + 21104: 53,-5 + 21105: 58,-5 + 21119: 44,-1 + 21122: 41,-1 + 21174: 44,7 + 21212: 74,-5 + 21219: 77,-4 + 21239: -18,-28 + 21268: 51,-9 + 21422: 28,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2235: -17,55 - 2319: -25,29 - 2393: -33,32 - 2788: -2,44 - 2799: -5,26 - 3476: -28,88 - 3484: -28,79 - 3501: -10,88 - 3518: -10,79 - 3777: 3,56 - 5797: 14,-6 - 6082: -9,-17 - 6323: 18,-21 - 6341: 4,-17 - 6377: 10,-17 - 6825: -35,8 - 6826: -34,9 - 6918: -35,18 - 6935: -22,8 - 7074: 24,8 - 7177: 31,-8 - 7179: 31,-6 - 8626: 57,-31 - 8635: 63,-31 - 8636: 63,-31 - 8881: 1,-36 - 9183: -8,-66 - 9247: -3,-82 - 9309: 1,-62 - 9310: 1,-62 - 10611: 56,-44 - 10648: 49,-45 - 11258: -58,-39 - 11259: -58,-39 - 11298: -77,-32 - 11315: -77,-24 - 11835: -37,-56 - 11836: -37,-56 - 11854: -41,-56 - 11878: -23,-54 - 11889: -33,-54 - 15364: -8,-71 - 16460: 8,67 - 16462: -39,-7 - 16721: -55,-15 - 16853: -49,-4 - 17547: 8,74 - 20044: -16,-1 - 20100: 70,21 + 2233: -17,55 + 2317: -25,29 + 2391: -33,32 + 2786: -2,44 + 2797: -5,26 + 3474: -28,88 + 3482: -28,79 + 3499: -10,88 + 3516: -10,79 + 3775: 3,56 + 5795: 14,-6 + 6080: -9,-17 + 6321: 18,-21 + 6339: 4,-17 + 6375: 10,-17 + 6823: -35,8 + 6824: -34,9 + 6916: -35,18 + 6933: -22,8 + 7072: 24,8 + 7175: 31,-8 + 7177: 31,-6 + 8624: 57,-31 + 8633: 63,-31 + 8634: 63,-31 + 8879: 1,-36 + 9181: -8,-66 + 9245: -3,-82 + 9307: 1,-62 + 9308: 1,-62 + 10609: 56,-44 + 10646: 49,-45 + 11256: -58,-39 + 11257: -58,-39 + 11296: -77,-32 + 11313: -77,-24 + 11833: -37,-56 + 11834: -37,-56 + 11852: -41,-56 + 11876: -23,-54 + 11887: -33,-54 + 15362: -8,-71 + 16458: 8,67 + 16460: -39,-7 + 16719: -55,-15 + 16851: -49,-4 + 17545: 8,74 + 20042: -16,-1 + 20098: 70,21 - node: cleanable: True color: '#FFFFFFFF' @@ -6121,233 +6116,233 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSw decals: - 8113: 20,-16 - 8114: 24,-18 + 8111: 20,-16 + 8112: 24,-18 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw decals: - 3751: -26,59 - 10675: 69,-50 - 10676: 69,-50 + 3749: -26,59 + 10673: 69,-50 + 10674: 69,-50 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerSw decals: - 3927: 18,62 + 3925: 18,62 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSw decals: - 9804: 20,-32 - 10032: 31,-32 - 10038: 24,-32 - 10053: 24,-26 - 10164: 20,-49 - 10219: 32,-53 - 19388: 5,62 + 9802: 20,-32 + 10030: 31,-32 + 10036: 24,-32 + 10051: 24,-26 + 10162: 20,-49 + 10217: 32,-53 + 19386: 5,62 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSw decals: - 11978: -31,-32 - 11991: -43,-30 - 11992: -39,-30 - 11993: -35,-30 - 12109: -29,-47 - 12181: -26,-42 - 12182: -30,-42 - 16165: -66,-48 + 11976: -31,-32 + 11989: -43,-30 + 11990: -39,-30 + 11991: -35,-30 + 12107: -29,-47 + 12179: -26,-42 + 12180: -30,-42 + 16163: -66,-48 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSw decals: - 10954: 26,-70 + 10952: 26,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSw decals: - 7796: 57,3 - 7797: 61,3 - 7798: 65,3 + 7794: 57,3 + 7795: 61,3 + 7796: 65,3 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSw decals: - 3929: 19,61 + 3927: 19,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 20414: 4,-78 - 20415: 4,-72 - 20416: 3,-62 - 20417: 8,-66 - 20418: 8,-78 - 20478: 10,-32 - 20522: 0,60 - 20536: 45,15 - 20537: 39,3 - 20553: 39,11 - 20587: 35,11 - 20588: 35,8 - 20659: 43,11 - 20745: 49,21 - 20834: 56,15 - 20847: 50,15 - 20848: 50,11 - 20883: 50,3 - 20937: 81,12 - 20948: 76,8 - 20977: 72,5 - 21016: 72,21 - 21066: 68,-5 - 21098: 50,-5 - 21099: 55,-5 - 21115: 46,-1 - 21122: 43,-1 - 21123: 39,-1 - 21175: 43,7 - 21213: 73,-5 - 21240: -20,-28 - 21254: 45,-5 - 21271: 46,-9 - 21423: 20,21 + 20412: 4,-78 + 20413: 4,-72 + 20414: 3,-62 + 20415: 8,-66 + 20416: 8,-78 + 20476: 10,-32 + 20520: 0,60 + 20534: 45,15 + 20535: 39,3 + 20551: 39,11 + 20585: 35,11 + 20586: 35,8 + 20657: 43,11 + 20743: 49,21 + 20832: 56,15 + 20845: 50,15 + 20846: 50,11 + 20881: 50,3 + 20935: 81,12 + 20946: 76,8 + 20975: 72,5 + 21014: 72,21 + 21064: 68,-5 + 21096: 50,-5 + 21097: 55,-5 + 21113: 46,-1 + 21120: 43,-1 + 21121: 39,-1 + 21173: 43,7 + 21211: 73,-5 + 21238: -20,-28 + 21252: 45,-5 + 21269: 46,-9 + 21421: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2263: -24,40 - 2292: -23,28 - 2320: -27,29 - 2381: -30,37 - 2394: -34,32 - 2786: -5,45 - 2787: -4,44 - 2801: -7,26 - 3315: -32,67 - 3477: -32,88 - 3483: -32,79 - 3508: -14,88 - 3515: -14,79 - 3658: 4,79 - 5132: 29,30 - 5567: -21,-18 - 5801: 7,-6 - 6267: -6,-17 - 6380: 6,-17 - 6381: 6,-17 - 6445: -20,-21 - 6819: -44,8 - 6823: -37,8 - 6824: -38,9 - 6921: -37,18 - 6956: -29,8 - 7073: 20,8 - 8375: 38,-21 - 8624: 55,-31 - 8625: 55,-31 - 8633: 61,-31 - 8882: -3,-36 - 8883: -3,-36 - 9182: -1,-66 - 9241: -9,-82 - 9248: 1,-82 - 9249: 1,-82 - 9305: -3,-62 - 9460: -42,-18 - 10649: 43,-45 - 10650: 43,-45 - 11248: -60,-39 - 11299: -78,-32 - 11300: -78,-28 - 11301: -78,-24 - 11302: -78,-21 - 11853: -42,-56 - 11867: -26,-54 - 11888: -35,-54 - 14415: -45,11 - 15365: -1,-71 - 15401: -43,4 - 15603: 76,0 - 16464: -40,-7 - 16708: -61,-15 - 16827: -61,-4 - 20099: 61,21 + 2261: -24,40 + 2290: -23,28 + 2318: -27,29 + 2379: -30,37 + 2392: -34,32 + 2784: -5,45 + 2785: -4,44 + 2799: -7,26 + 3313: -32,67 + 3475: -32,88 + 3481: -32,79 + 3506: -14,88 + 3513: -14,79 + 3656: 4,79 + 5130: 29,30 + 5565: -21,-18 + 5799: 7,-6 + 6265: -6,-17 + 6378: 6,-17 + 6379: 6,-17 + 6443: -20,-21 + 6817: -44,8 + 6821: -37,8 + 6822: -38,9 + 6919: -37,18 + 6954: -29,8 + 7071: 20,8 + 8373: 38,-21 + 8622: 55,-31 + 8623: 55,-31 + 8631: 61,-31 + 8880: -3,-36 + 8881: -3,-36 + 9180: -1,-66 + 9239: -9,-82 + 9246: 1,-82 + 9247: 1,-82 + 9303: -3,-62 + 9458: -42,-18 + 10647: 43,-45 + 10648: 43,-45 + 11246: -60,-39 + 11297: -78,-32 + 11298: -78,-28 + 11299: -78,-24 + 11300: -78,-21 + 11851: -42,-56 + 11865: -26,-54 + 11886: -35,-54 + 14413: -45,11 + 15363: -1,-71 + 15399: -43,4 + 15601: 76,0 + 16462: -40,-7 + 16706: -61,-15 + 16825: -61,-4 + 20097: 61,21 - node: color: '#00FFFFFF' id: BrickTileSteelEndE decals: - 3735: -24,65 - 3764: -24,59 - 3765: -24,61 - 3766: -24,63 - 10246: 38,-26 + 3733: -24,65 + 3762: -24,59 + 3763: -24,61 + 3764: -24,63 + 10244: 38,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelEndE decals: - 10870: 45,-64 - 10936: 42,-75 - 10937: 39,-75 + 10868: 45,-64 + 10934: 42,-75 + 10935: 39,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndE decals: - 19316: 70,9 + 19314: 70,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE decals: - 21032: 76,25 + 21030: 76,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 7326: 33,12 + 7324: 33,12 - node: color: '#00FFFFFF' id: BrickTileSteelEndN decals: - 10674: 69,-49 + 10672: 69,-49 - node: color: '#A9DA8BFF' id: BrickTileSteelEndN decals: - 2989: -39,50 - 3005: -39,46 + 2987: -39,50 + 3003: -39,46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndN decals: - 19314: 58,9 - 19315: 66,9 + 19312: 58,9 + 19313: 66,9 - node: color: '#00C9DAFF' id: BrickTileSteelEndS decals: - 8131: 27,-18 - 8132: 29,-18 - 8133: 31,-18 - 8134: 31,-18 + 8129: 27,-18 + 8130: 29,-18 + 8131: 31,-18 + 8132: 31,-18 - node: color: '#A9DA8BFF' id: BrickTileSteelEndS decals: - 2990: -39,48 - 3010: -39,45 + 2988: -39,48 + 3008: -39,45 - node: color: '#B18BDAFF' id: BrickTileSteelEndS decals: - 12319: -21,-44 - 12320: -17,-44 + 12317: -21,-44 + 12318: -17,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 7311: 28,8 - 12553: -21,-78 + 7309: 28,8 + 12551: -21,-78 - node: cleanable: True color: '#FFFFFFFF' @@ -6358,2123 +6353,2123 @@ entities: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 10254: 34,-26 - 10376: 12,-47 - 15782: 76,6 - 15783: 76,4 + 10252: 34,-26 + 10374: 12,-47 + 15780: 76,6 + 15781: 76,4 - node: color: '#B18BDAFF' id: BrickTileSteelEndW decals: - 16163: -67,-46 + 16161: -67,-46 - node: color: '#CEDA8BFF' id: BrickTileSteelEndW decals: - 10938: 38,-75 - 10939: 41,-75 + 10936: 38,-75 + 10937: 41,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndW decals: - 19317: 68,9 + 19315: 68,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndW decals: - 21033: 74,25 + 21031: 74,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 2352: -28,39 - 6078: -16,-17 - 6079: -16,-17 - 12554: -19,-78 - 18474: -16,-12 + 2350: -28,39 + 6076: -16,-17 + 6077: -16,-17 + 12552: -19,-78 + 18472: -16,-12 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe decals: - 8148: 25,-14 - 8151: 22,-15 - 8152: 22,-15 - 8164: 31,-16 + 8146: 25,-14 + 8149: 22,-15 + 8150: 22,-15 + 8162: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNe decals: - 3746: -25,65 - 3752: -26,59 - 3753: -26,61 - 3754: -26,63 - 10250: 37,-26 - 10677: 69,-50 + 3744: -25,65 + 3750: -26,59 + 3751: -26,61 + 3752: -26,63 + 10248: 37,-26 + 10675: 69,-50 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNe decals: - 10081: 32,-23 + 10079: 32,-23 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNe decals: - 12012: -42,-26 - 12013: -38,-26 - 12014: -38,-26 - 12015: -34,-26 - 12016: -34,-26 - 12031: -37,-27 - 12034: -41,-27 + 12010: -42,-26 + 12011: -38,-26 + 12012: -38,-26 + 12013: -34,-26 + 12014: -34,-26 + 12029: -37,-27 + 12032: -41,-27 + 12038: -37,-27 12040: -37,-27 - 12042: -37,-27 - 12043: -33,-27 - 12055: -45,-27 - 12058: -46,-25 - 12125: -29,-44 - 12194: -29,-38 - 12195: -24,-38 - 12355: -17,-40 - 16176: -63,-46 - 16177: -62,-48 - 19814: -6,-41 - 19829: -6,-40 - 19837: -29,-26 + 12041: -33,-27 + 12053: -45,-27 + 12056: -46,-25 + 12123: -29,-44 + 12192: -29,-38 + 12193: -24,-38 + 12353: -17,-40 + 16174: -63,-46 + 16175: -62,-48 + 19812: -6,-41 + 19827: -6,-40 + 19835: -29,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerNe decals: - 10973: 32,-68 + 10971: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNe decals: - 7844: 66,5 - 7845: 69,6 - 7854: 58,5 - 7855: 62,5 + 7842: 66,5 + 7843: 69,6 + 7852: 58,5 + 7853: 62,5 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNe decals: - 20336: -23,2 - 20384: 5,-80 - 20394: 6,-77 - 20395: 6,-75 - 20399: 6,-65 - 20400: 5,-64 - 20451: 7,-58 - 20470: 5,-74 - 20483: 11,-30 - 20490: 14,-31 - 20493: 13,-30 - 20515: 3,64 - 20527: 3,60 - 20574: 40,9 - 20643: 74,9 - 20652: 48,12 - 20653: 47,13 - 20654: 47,13 - 20663: 44,12 - 20677: 48,8 - 20724: 58,31 - 20725: 59,25 - 20770: 51,21 - 20771: 54,21 - 20772: 50,28 - 20773: 55,28 - 20821: 48,16 - 20822: 47,19 - 20826: 47,23 - 20838: 57,19 - 20842: 54,17 - 20858: 52,19 - 20866: 60,12 - 20870: 51,13 - 20879: 48,4 - 20911: 93,21 - 20919: 93,13 - 20942: 83,10 - 20954: 78,9 - 21015: 73,19 - 21024: 76,22 - 21027: 75,23 - 21028: 75,25 - 21037: 93,17 - 21041: 92,23 - 21044: 73,3 - 21045: 74,1 - 21060: 70,-1 - 21064: 67,-1 - 21073: 69,-3 - 21077: 71,-4 - 21086: 47,-3 - 21110: 52,-3 - 21130: 44,0 - 21131: 40,1 - 21157: 36,6 - 21159: 37,4 - 21166: 36,9 - 21168: 37,8 - 21172: 44,8 - 21180: 53,9 - 21182: 55,5 - 21216: 74,-4 - 21283: 56,-3 - 21286: 48,1 - 21312: 58,1 - 21313: 62,1 - 21314: 66,1 - 21428: 21,22 + 20334: -23,2 + 20382: 5,-80 + 20392: 6,-77 + 20393: 6,-75 + 20397: 6,-65 + 20398: 5,-64 + 20449: 7,-58 + 20468: 5,-74 + 20481: 11,-30 + 20488: 14,-31 + 20491: 13,-30 + 20513: 3,64 + 20525: 3,60 + 20572: 40,9 + 20641: 74,9 + 20650: 48,12 + 20651: 47,13 + 20652: 47,13 + 20661: 44,12 + 20675: 48,8 + 20722: 58,31 + 20723: 59,25 + 20768: 51,21 + 20769: 54,21 + 20770: 50,28 + 20771: 55,28 + 20819: 48,16 + 20820: 47,19 + 20824: 47,23 + 20836: 57,19 + 20840: 54,17 + 20856: 52,19 + 20864: 60,12 + 20868: 51,13 + 20877: 48,4 + 20909: 93,21 + 20917: 93,13 + 20940: 83,10 + 20952: 78,9 + 21013: 73,19 + 21022: 76,22 + 21025: 75,23 + 21026: 75,25 + 21035: 93,17 + 21039: 92,23 + 21042: 73,3 + 21043: 74,1 + 21058: 70,-1 + 21062: 67,-1 + 21071: 69,-3 + 21075: 71,-4 + 21084: 47,-3 + 21108: 52,-3 + 21128: 44,0 + 21129: 40,1 + 21155: 36,6 + 21157: 37,4 + 21164: 36,9 + 21166: 37,8 + 21170: 44,8 + 21178: 53,9 + 21180: 55,5 + 21214: 74,-4 + 21281: 56,-3 + 21284: 48,1 + 21310: 58,1 + 21311: 62,1 + 21312: 66,1 + 21426: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2221: -18,53 - 2222: -18,53 - 2242: -17,52 - 2245: -15,50 - 2246: -15,48 - 2250: -15,46 - 2354: -29,38 - 2759: -3,48 - 2760: -6,50 - 2761: -12,50 - 2796: -4,46 - 2824: -30,43 - 2830: -26,41 - 2835: -32,43 - 3064: -17,58 - 3413: -11,69 - 3442: -3,58 - 3458: -29,69 - 3459: -29,77 - 3460: -29,84 - 3463: -29,92 - 3474: -30,96 - 3479: -29,82 - 3494: -12,96 - 3495: -11,92 - 3496: -11,84 - 3497: -11,77 - 3512: -11,82 - 3555: 8,68 - 3637: 7,69 - 3772: 2,58 - 3779: 3,57 - 5122: 31,28 - 5146: 36,30 - 5438: 18,-3 - 5452: -25,6 - 5481: -31,6 - 5490: -42,23 - 5546: -18,-1 - 5621: 11,-8 - 5631: -18,-8 - 5654: 8,-8 - 5791: 12,-4 - 5814: -1,-8 - 5815: -10,-8 - 6102: -11,-19 - 6128: 18,-10 - 6175: -18,-19 - 6273: -4,-16 - 6280: -4,-19 - 6324: 18,-20 - 6347: 2,-14 - 6385: 10,-16 - 6403: 14,-19 - 6418: 8,-19 - 6806: -36,6 - 6807: -36,6 - 6909: -36,16 - 6911: -35,15 - 6939: -26,15 - 6943: -27,15 - 6963: -22,12 - 7036: 18,12 - 7037: 18,18 - 7040: 18,6 - 7082: 22,10 - 7083: 22,6 - 7134: 22,-10 - 7161: 31,1 - 7223: 29,6 - 7228: 32,4 - 8017: 81,-22 - 8267: 31,-12 - 8302: 41,-8 - 8303: 41,-8 - 8314: 33,-8 - 8357: 39,-19 - 8358: 41,-19 - 8359: 41,-19 - 8381: 41,-21 - 8416: 47,-19 - 8437: 52,-19 - 8438: 52,-19 - 8444: 53,-21 - 8490: 56,-20 - 8670: 60,-31 - 8671: 63,-22 - 8672: 63,-19 - 8845: 0,-25 - 8888: 0,-34 - 8951: -8,-28 - 8954: -4,-27 - 8963: -15,-23 - 8964: -15,-23 - 8965: -8,-23 - 8966: -8,-23 - 8985: -16,-27 - 9171: 0,-64 - 9172: 0,-64 - 9179: 2,-66 - 9180: 2,-66 - 9218: -10,-64 - 9290: -9,-69 - 9291: -9,-69 - 9292: -9,-75 - 9328: 0,-58 - 9461: -39,-16 - 9578: 1,-35 - 9638: 0,-39 - 10366: 0,-44 - 10396: 0,-51 - 10582: 2,-75 - 10595: 1,-60 - 10668: 49,-42 - 11261: -59,-34 - 11266: -59,-41 - 11267: -59,-41 - 11310: -77,-31 - 11434: -15,-30 - 11857: -37,-53 - 11871: -24,-50 - 11872: -24,-50 - 13421: -37,-60 - 14956: 16,24 - 14959: 8,24 - 14960: 5,24 - 14963: 0,24 - 14964: -9,24 - 14976: -18,24 - 15411: -41,6 - 15798: 78,2 - 16702: -58,-12 - 16789: -58,-6 - 16849: -52,2 - 16864: -57,-9 - 16865: -57,-7 - 17533: 6,85 - 17537: 7,82 - 17539: 8,81 - 17544: 8,76 - 18485: -14,-12 - 18486: -10,-12 - 18552: 8,-12 - 19925: -24,13 - 20112: 67,26 - 20113: 62,26 - 20320: -18,4 - 20323: -18,-1 - 21378: 18,15 + 2219: -18,53 + 2220: -18,53 + 2240: -17,52 + 2243: -15,50 + 2244: -15,48 + 2248: -15,46 + 2352: -29,38 + 2757: -3,48 + 2758: -6,50 + 2759: -12,50 + 2794: -4,46 + 2822: -30,43 + 2828: -26,41 + 2833: -32,43 + 3062: -17,58 + 3411: -11,69 + 3440: -3,58 + 3456: -29,69 + 3457: -29,77 + 3458: -29,84 + 3461: -29,92 + 3472: -30,96 + 3477: -29,82 + 3492: -12,96 + 3493: -11,92 + 3494: -11,84 + 3495: -11,77 + 3510: -11,82 + 3553: 8,68 + 3635: 7,69 + 3770: 2,58 + 3777: 3,57 + 5120: 31,28 + 5144: 36,30 + 5436: 18,-3 + 5450: -25,6 + 5479: -31,6 + 5488: -42,23 + 5544: -18,-1 + 5619: 11,-8 + 5629: -18,-8 + 5652: 8,-8 + 5789: 12,-4 + 5812: -1,-8 + 5813: -10,-8 + 6100: -11,-19 + 6126: 18,-10 + 6173: -18,-19 + 6271: -4,-16 + 6278: -4,-19 + 6322: 18,-20 + 6345: 2,-14 + 6383: 10,-16 + 6401: 14,-19 + 6416: 8,-19 + 6804: -36,6 + 6805: -36,6 + 6907: -36,16 + 6909: -35,15 + 6937: -26,15 + 6941: -27,15 + 6961: -22,12 + 7034: 18,12 + 7035: 18,18 + 7038: 18,6 + 7080: 22,10 + 7081: 22,6 + 7132: 22,-10 + 7159: 31,1 + 7221: 29,6 + 7226: 32,4 + 8015: 81,-22 + 8265: 31,-12 + 8300: 41,-8 + 8301: 41,-8 + 8312: 33,-8 + 8355: 39,-19 + 8356: 41,-19 + 8357: 41,-19 + 8379: 41,-21 + 8414: 47,-19 + 8435: 52,-19 + 8436: 52,-19 + 8442: 53,-21 + 8488: 56,-20 + 8668: 60,-31 + 8669: 63,-22 + 8670: 63,-19 + 8843: 0,-25 + 8886: 0,-34 + 8949: -8,-28 + 8952: -4,-27 + 8961: -15,-23 + 8962: -15,-23 + 8963: -8,-23 + 8964: -8,-23 + 8983: -16,-27 + 9169: 0,-64 + 9170: 0,-64 + 9177: 2,-66 + 9178: 2,-66 + 9216: -10,-64 + 9288: -9,-69 + 9289: -9,-69 + 9290: -9,-75 + 9326: 0,-58 + 9459: -39,-16 + 9576: 1,-35 + 9636: 0,-39 + 10364: 0,-44 + 10394: 0,-51 + 10580: 2,-75 + 10593: 1,-60 + 10666: 49,-42 + 11259: -59,-34 + 11264: -59,-41 + 11265: -59,-41 + 11308: -77,-31 + 11432: -15,-30 + 11855: -37,-53 + 11869: -24,-50 + 11870: -24,-50 + 13419: -37,-60 + 14954: 16,24 + 14957: 8,24 + 14958: 5,24 + 14961: 0,24 + 14962: -9,24 + 14974: -18,24 + 15409: -41,6 + 15796: 78,2 + 16700: -58,-12 + 16787: -58,-6 + 16847: -52,2 + 16862: -57,-9 + 16863: -57,-7 + 17531: 6,85 + 17535: 7,82 + 17537: 8,81 + 17542: 8,76 + 18483: -14,-12 + 18484: -10,-12 + 18550: 8,-12 + 19923: -24,13 + 20110: 67,26 + 20111: 62,26 + 20318: -18,4 + 20321: -18,-1 + 21376: 18,15 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw decals: - 8147: 25,-14 - 8150: 24,-15 + 8145: 25,-14 + 8148: 24,-15 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 3745: -25,65 - 10249: 37,-26 - 15789: 77,4 + 3743: -25,65 + 10247: 37,-26 + 15787: 77,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNw decals: - 10215: 32,-51 - 10216: 32,-49 - 18463: 17,-31 + 10213: 32,-51 + 10214: 32,-49 + 18461: 17,-31 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNw decals: - 11971: -29,-26 - 11972: -29,-26 - 11984: -31,-27 - 11985: -31,-27 - 12009: -42,-26 - 12010: -38,-26 - 12011: -38,-26 - 12029: -39,-27 - 12030: -35,-27 - 12039: -43,-27 - 12048: -34,-26 - 12057: -46,-25 - 12070: -48,-28 - 12072: -48,-31 - 12076: -47,-23 - 12126: -24,-44 - 12187: -30,-39 - 12192: -29,-38 - 12193: -24,-38 - 16175: -65,-46 - 19813: -9,-41 - 19828: -9,-40 + 11969: -29,-26 + 11970: -29,-26 + 11982: -31,-27 + 11983: -31,-27 + 12007: -42,-26 + 12008: -38,-26 + 12009: -38,-26 + 12027: -39,-27 + 12028: -35,-27 + 12037: -43,-27 + 12046: -34,-26 + 12055: -46,-25 + 12068: -48,-28 + 12070: -48,-31 + 12074: -47,-23 + 12124: -24,-44 + 12185: -30,-39 + 12190: -29,-38 + 12191: -24,-38 + 16173: -65,-46 + 19811: -9,-41 + 19826: -9,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNw decals: - 7842: 69,6 - 7843: 66,5 - 7852: 58,5 - 7853: 62,5 - 19341: 68,5 + 7840: 69,6 + 7841: 66,5 + 7850: 58,5 + 7851: 62,5 + 19339: 68,5 - node: color: '#DAA58BFF' id: BrickTileSteelInnerNw decals: - 4370: 7,31 - 4593: 13,36 + 4368: 7,31 + 4591: 13,36 - node: color: '#DABC8BFF' id: BrickTileSteelInnerNw decals: - 9624: 5,-32 + 9622: 5,-32 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw decals: - 20335: -23,2 - 20383: 5,-80 - 20401: 5,-64 - 20408: 4,-66 - 20409: 4,-75 - 20438: 8,-75 - 20450: 7,-58 - 20452: 3,-60 - 20463: 8,-65 - 20464: 8,-65 - 20469: 5,-74 - 20482: 11,-30 - 20492: 13,-30 - 20503: 12,30 - 20504: 13,32 - 20513: 0,61 - 20573: 40,9 - 20575: 39,8 - 20629: 73,3 - 20655: 47,13 - 20668: 46,12 - 20678: 46,8 - 20735: 50,31 - 20743: 49,23 - 20768: 54,21 - 20769: 57,21 - 20774: 53,28 - 20775: 58,28 - 20823: 45,20 - 20837: 57,19 - 20841: 56,17 - 20856: 50,16 - 20857: 52,19 - 20867: 50,12 - 20869: 51,13 - 20910: 91,21 - 20918: 91,14 - 20940: 83,10 - 20943: 80,9 - 20953: 76,9 - 20981: 72,-1 - 21005: 71,13 - 21006: 72,13 - 21013: 72,18 - 21014: 73,19 - 21026: 75,23 - 21029: 75,25 - 21039: 91,21 - 21040: 92,23 - 21042: 72,6 - 21048: 72,1 - 21063: 69,-1 - 21074: 69,-3 - 21085: 47,-3 - 21109: 52,-3 - 21118: 46,0 - 21132: 40,1 - 21154: 34,4 - 21155: 36,6 - 21160: 39,4 - 21163: 39,6 - 21165: 36,9 - 21179: 53,9 - 21192: 50,8 - 21197: 50,4 - 21211: 73,-4 - 21224: 76,-4 - 21243: -20,-26 - 21262: 51,-7 - 21274: 46,-8 - 21284: 56,-3 - 21285: 46,5 - 21309: 58,1 - 21310: 62,1 - 21311: 66,1 - 21427: 21,22 + 20333: -23,2 + 20381: 5,-80 + 20399: 5,-64 + 20406: 4,-66 + 20407: 4,-75 + 20436: 8,-75 + 20448: 7,-58 + 20450: 3,-60 + 20461: 8,-65 + 20462: 8,-65 + 20467: 5,-74 + 20480: 11,-30 + 20490: 13,-30 + 20501: 12,30 + 20502: 13,32 + 20511: 0,61 + 20571: 40,9 + 20573: 39,8 + 20627: 73,3 + 20653: 47,13 + 20666: 46,12 + 20676: 46,8 + 20733: 50,31 + 20741: 49,23 + 20766: 54,21 + 20767: 57,21 + 20772: 53,28 + 20773: 58,28 + 20821: 45,20 + 20835: 57,19 + 20839: 56,17 + 20854: 50,16 + 20855: 52,19 + 20865: 50,12 + 20867: 51,13 + 20908: 91,21 + 20916: 91,14 + 20938: 83,10 + 20941: 80,9 + 20951: 76,9 + 20979: 72,-1 + 21003: 71,13 + 21004: 72,13 + 21011: 72,18 + 21012: 73,19 + 21024: 75,23 + 21027: 75,25 + 21037: 91,21 + 21038: 92,23 + 21040: 72,6 + 21046: 72,1 + 21061: 69,-1 + 21072: 69,-3 + 21083: 47,-3 + 21107: 52,-3 + 21116: 46,0 + 21130: 40,1 + 21152: 34,4 + 21153: 36,6 + 21158: 39,4 + 21161: 39,6 + 21163: 36,9 + 21177: 53,9 + 21190: 50,8 + 21195: 50,4 + 21209: 73,-4 + 21222: 76,-4 + 21241: -20,-26 + 21260: 51,-7 + 21272: 46,-8 + 21282: 56,-3 + 21283: 46,5 + 21307: 58,1 + 21308: 62,1 + 21309: 66,1 + 21425: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2223: -20,53 - 2240: -21,52 - 2241: -21,52 - 2255: -23,51 - 2258: -23,48 - 2276: -24,41 - 2277: -23,45 - 2324: -27,30 - 2733: -13,48 - 2766: -6,50 - 2767: -12,50 - 2795: -4,46 - 2803: -7,27 - 2823: -30,43 - 3078: -7,58 - 3318: -31,69 - 3372: -13,69 - 3464: -31,92 - 3465: -31,84 - 3466: -31,77 - 3473: -30,96 - 3478: -31,82 - 3493: -12,96 - 3509: -13,92 - 3510: -13,84 - 3511: -13,82 - 3516: -13,77 - 3552: 5,69 - 3563: -21,55 - 3640: 5,84 - 3656: 5,82 - 3659: 5,77 - 3774: 2,58 - 5121: 31,28 - 5372: 16,-8 - 5436: 16,-4 - 5480: -31,6 - 5489: -42,23 - 5565: -20,-15 - 5620: 10,-8 - 5655: 8,-8 - 5790: 12,-4 - 5813: -1,-8 - 5816: -10,-8 - 6083: -15,-17 - 6101: -13,-19 - 6270: -4,-14 - 6279: -4,-19 - 6308: 16,-19 - 6402: 12,-19 - 6409: 12,-16 - 6419: 8,-19 - 6448: -20,-20 - 6794: -36,6 - 6795: -26,6 - 6796: -26,6 - 6797: -20,12 - 6818: -44,18 - 6908: -36,16 - 6910: -37,15 - 6938: -26,15 - 6942: -25,15 - 6946: -28,15 - 6971: -21,-16 - 6972: -21,-16 - 7081: 22,10 - 7084: 22,6 - 7133: 22,-10 - 7167: 25,-8 - 7222: 29,6 - 7327: 28,11 - 8018: 79,-22 - 8177: 33,-12 - 8178: 33,-10 - 8179: 33,-10 - 8190: 33,-16 - 8356: 39,-19 - 8360: 41,-19 - 8383: 43,-21 - 8422: 46,-19 - 8436: 52,-19 - 8476: 55,-19 - 8479: 55,-21 - 8588: 55,-29 - 8589: 55,-11 - 8669: 58,-31 - 8842: -2,-25 - 8887: -2,-34 - 8952: -12,-28 - 8953: -4,-27 - 8959: -16,-23 - 8960: -16,-23 - 8967: -12,-23 - 8968: -12,-23 - 8969: -5,-23 - 8970: -5,-23 - 8984: -16,-27 - 9170: -2,-64 - 9217: -10,-64 - 9232: -11,-78 - 9233: -11,-78 - 9293: 0,-69 - 9294: 0,-75 - 9295: -5,-75 - 9318: -3,-60 - 9329: -2,-58 - 9643: -11,-66 - 10667: 43,-42 - 11263: -59,-34 - 11264: -59,-41 - 11265: -59,-41 - 11269: -60,-36 - 11273: -60,-43 - 11311: -78,-27 - 11401: -2,-48 - 11405: -2,-40 - 11411: -3,-35 - 11435: -13,-30 - 11870: -24,-50 - 11882: -26,-52 - 12756: -23,39 - 12880: -3,50 - 13375: -44,9 - 13420: -37,-60 - 14406: -44,15 - 14411: -45,14 - 14414: -45,12 - 14957: 14,24 - 14958: 7,24 - 14961: 4,24 - 14962: 0,24 - 14965: -9,24 - 14969: -20,24 - 15797: 78,2 - 15834: 76,1 - 16701: -58,-12 - 16788: -58,-6 - 16848: -53,2 - 16866: -55,-7 - 16867: -61,-7 - 17532: 6,85 - 18483: -14,-12 - 18484: -10,-12 - 18551: 8,-12 - 19558: -43,21 - 19924: -27,13 - 20045: -16,-1 - 20105: 61,25 - 20106: 54,32 - 20108: 62,26 - 20109: 64,26 - 20228: -20,6 - 20237: -20,-2 - 20317: -20,17 - 20318: -20,20 + 2221: -20,53 + 2238: -21,52 + 2239: -21,52 + 2253: -23,51 + 2256: -23,48 + 2274: -24,41 + 2275: -23,45 + 2322: -27,30 + 2731: -13,48 + 2764: -6,50 + 2765: -12,50 + 2793: -4,46 + 2801: -7,27 + 2821: -30,43 + 3076: -7,58 + 3316: -31,69 + 3370: -13,69 + 3462: -31,92 + 3463: -31,84 + 3464: -31,77 + 3471: -30,96 + 3476: -31,82 + 3491: -12,96 + 3507: -13,92 + 3508: -13,84 + 3509: -13,82 + 3514: -13,77 + 3550: 5,69 + 3561: -21,55 + 3638: 5,84 + 3654: 5,82 + 3657: 5,77 + 3772: 2,58 + 5119: 31,28 + 5370: 16,-8 + 5434: 16,-4 + 5478: -31,6 + 5487: -42,23 + 5563: -20,-15 + 5618: 10,-8 + 5653: 8,-8 + 5788: 12,-4 + 5811: -1,-8 + 5814: -10,-8 + 6081: -15,-17 + 6099: -13,-19 + 6268: -4,-14 + 6277: -4,-19 + 6306: 16,-19 + 6400: 12,-19 + 6407: 12,-16 + 6417: 8,-19 + 6446: -20,-20 + 6792: -36,6 + 6793: -26,6 + 6794: -26,6 + 6795: -20,12 + 6816: -44,18 + 6906: -36,16 + 6908: -37,15 + 6936: -26,15 + 6940: -25,15 + 6944: -28,15 + 6969: -21,-16 + 6970: -21,-16 + 7079: 22,10 + 7082: 22,6 + 7131: 22,-10 + 7165: 25,-8 + 7220: 29,6 + 7325: 28,11 + 8016: 79,-22 + 8175: 33,-12 + 8176: 33,-10 + 8177: 33,-10 + 8188: 33,-16 + 8354: 39,-19 + 8358: 41,-19 + 8381: 43,-21 + 8420: 46,-19 + 8434: 52,-19 + 8474: 55,-19 + 8477: 55,-21 + 8586: 55,-29 + 8587: 55,-11 + 8667: 58,-31 + 8840: -2,-25 + 8885: -2,-34 + 8950: -12,-28 + 8951: -4,-27 + 8957: -16,-23 + 8958: -16,-23 + 8965: -12,-23 + 8966: -12,-23 + 8967: -5,-23 + 8968: -5,-23 + 8982: -16,-27 + 9168: -2,-64 + 9215: -10,-64 + 9230: -11,-78 + 9231: -11,-78 + 9291: 0,-69 + 9292: 0,-75 + 9293: -5,-75 + 9316: -3,-60 + 9327: -2,-58 + 9641: -11,-66 + 10665: 43,-42 + 11261: -59,-34 + 11262: -59,-41 + 11263: -59,-41 + 11267: -60,-36 + 11271: -60,-43 + 11309: -78,-27 + 11399: -2,-48 + 11403: -2,-40 + 11409: -3,-35 + 11433: -13,-30 + 11868: -24,-50 + 11880: -26,-52 + 12754: -23,39 + 12878: -3,50 + 13373: -44,9 + 13418: -37,-60 + 14404: -44,15 + 14409: -45,14 + 14412: -45,12 + 14955: 14,24 + 14956: 7,24 + 14959: 4,24 + 14960: 0,24 + 14963: -9,24 + 14967: -20,24 + 15795: 78,2 + 15832: 76,1 + 16699: -58,-12 + 16786: -58,-6 + 16846: -53,2 + 16864: -55,-7 + 16865: -61,-7 + 17530: 6,85 + 18481: -14,-12 + 18482: -10,-12 + 18549: 8,-12 + 19556: -43,21 + 19922: -27,13 + 20043: -16,-1 + 20103: 61,25 + 20104: 54,32 + 20106: 62,26 + 20107: 64,26 + 20226: -20,6 + 20235: -20,-2 + 20315: -20,17 + 20316: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 4108: -20,20 - 4111: -20,17 + 4106: -20,20 + 4109: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSe decals: - 8144: 25,-16 - 8145: 27,-16 - 8146: 29,-16 - 8153: 22,-15 - 8154: 22,-15 - 8162: 31,-16 + 8142: 25,-16 + 8143: 27,-16 + 8144: 29,-16 + 8151: 22,-15 + 8152: 22,-15 + 8160: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 3755: -26,65 - 3756: -26,63 - 3757: -26,61 - 3770: -28,60 - 10253: 37,-26 - 15787: 78,4 + 3753: -26,65 + 3754: -26,63 + 3755: -26,61 + 3768: -28,60 + 10251: 37,-26 + 15785: 78,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSe decals: - 9807: 21,-32 - 10056: 25,-26 - 10070: 28,-24 - 10082: 32,-23 - 10150: 22,-49 - 10160: 24,-45 - 10180: 24,-45 + 9805: 21,-32 + 10054: 25,-26 + 10068: 28,-24 + 10080: 32,-23 + 10148: 22,-49 + 10158: 24,-45 + 10178: 24,-45 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSe decals: - 11956: -29,-32 - 12020: -42,-30 - 12021: -38,-30 - 12022: -34,-30 - 12023: -37,-29 - 12024: -41,-29 - 12044: -33,-29 - 12054: -45,-29 - 12077: -46,-23 - 12184: -24,-42 - 12185: -29,-42 - 12378: -17,-40 - 19812: -6,-43 + 11954: -29,-32 + 12018: -42,-30 + 12019: -38,-30 + 12020: -34,-30 + 12021: -37,-29 + 12022: -41,-29 + 12042: -33,-29 + 12052: -45,-29 + 12075: -46,-23 + 12182: -24,-42 + 12183: -29,-42 + 12376: -17,-40 + 19810: -6,-43 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerSe decals: - 10972: 32,-68 + 10970: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSe decals: - 7808: 58,3 - 7809: 62,3 - 7810: 66,3 - 7811: 63,4 - 7812: 59,4 - 7821: 70,6 - 7822: 67,5 - 19300: 62,4 - 19301: 58,4 - 19302: 66,4 - 19322: 69,9 + 7806: 58,3 + 7807: 62,3 + 7808: 66,3 + 7809: 63,4 + 7810: 59,4 + 7819: 70,6 + 7820: 67,5 + 19298: 62,4 + 19299: 58,4 + 19300: 66,4 + 19320: 69,9 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSe decals: - 20340: -24,0 - 20350: -46,9 - 20351: -48,8 - 20357: 5,-62 - 20358: 5,-72 - 20359: 5,-78 - 20360: 4,-82 - 20396: 6,-77 - 20397: 6,-75 - 20398: 6,-65 - 20487: 12,-32 - 20489: 14,-31 - 20516: 3,64 - 20526: 2,60 - 20545: 40,3 - 20549: 40,11 - 20555: 40,11 - 20622: 93,21 - 20623: 93,17 - 20642: 74,9 - 20651: 48,12 - 20662: 44,12 - 20675: 48,8 - 20755: 59,25 - 20756: 57,21 - 20759: 52,21 - 20760: 51,28 - 20761: 50,31 - 20762: 52,32 - 20767: 54,28 - 20818: 47,15 - 20819: 48,16 - 20820: 54,17 - 20825: 47,22 - 20839: 57,19 - 20853: 51,15 - 20865: 60,12 - 20872: 53,11 - 20880: 48,4 - 20920: 93,13 - 20934: 83,12 - 20955: 78,9 - 20980: 73,5 - 20991: 70,1 - 21021: 73,21 - 21022: 76,22 - 21031: 75,25 - 21046: 74,1 - 21062: 69,-1 - 21078: 71,-4 - 21079: 65,-1 - 21080: 61,-1 - 21112: 52,-1 - 21113: 47,-1 - 21129: 44,0 - 21148: 35,4 - 21158: 37,6 - 21167: 36,8 - 21170: 36,11 - 21171: 44,8 - 21181: 55,4 - 21215: 74,-4 - 21245: -18,-24 - 21260: 51,-5 - 21281: 56,-1 + 20338: -24,0 + 20348: -46,9 + 20349: -48,8 + 20355: 5,-62 + 20356: 5,-72 + 20357: 5,-78 + 20358: 4,-82 + 20394: 6,-77 + 20395: 6,-75 + 20396: 6,-65 + 20485: 12,-32 + 20487: 14,-31 + 20514: 3,64 + 20524: 2,60 + 20543: 40,3 + 20547: 40,11 + 20553: 40,11 + 20620: 93,21 + 20621: 93,17 + 20640: 74,9 + 20649: 48,12 + 20660: 44,12 + 20673: 48,8 + 20753: 59,25 + 20754: 57,21 + 20757: 52,21 + 20758: 51,28 + 20759: 50,31 + 20760: 52,32 + 20765: 54,28 + 20816: 47,15 + 20817: 48,16 + 20818: 54,17 + 20823: 47,22 + 20837: 57,19 + 20851: 51,15 + 20863: 60,12 + 20870: 53,11 + 20878: 48,4 + 20918: 93,13 + 20932: 83,12 + 20953: 78,9 + 20978: 73,5 + 20989: 70,1 + 21019: 73,21 + 21020: 76,22 + 21029: 75,25 + 21044: 74,1 + 21060: 69,-1 + 21076: 71,-4 + 21077: 65,-1 + 21078: 61,-1 + 21110: 52,-1 + 21111: 47,-1 + 21127: 44,0 + 21146: 35,4 + 21156: 37,6 + 21165: 36,8 + 21168: 36,11 + 21169: 44,8 + 21179: 55,4 + 21213: 74,-4 + 21243: -18,-24 + 21258: 51,-5 + 21279: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2233: -18,55 - 2247: -15,48 - 2248: -15,50 - 2290: -15,36 - 2322: -25,30 - 2765: -3,51 - 2791: -4,48 - 2831: -30,41 - 2847: -32,44 - 3047: -17,56 - 3057: -1,56 - 3183: -17,67 - 3455: -25,67 - 3456: -30,67 - 3461: -29,84 - 3475: -29,88 - 3485: -29,79 - 3486: -29,77 - 3498: -11,77 - 3499: -11,84 - 3500: -11,88 - 3517: -11,79 - 3544: -3,67 - 3554: 8,68 - 3557: 6,67 - 3771: 2,56 - 3778: 3,57 - 5134: 31,30 - 5140: 35,30 - 5439: 18,-3 - 5462: -23,4 - 5471: -32,4 - 5486: -41,23 - 5545: -18,-1 - 5795: 14,-4 - 5807: 8,-6 - 5808: 11,-6 - 6090: -11,-17 - 6129: 18,-12 - 6274: -4,-16 - 6325: 18,-20 - 6383: 8,-17 - 6386: 10,-16 - 6903: -35,9 - 6904: -36,8 - 6917: -36,18 - 6957: -28,8 - 6958: -25,8 - 6962: -22,11 - 7035: 18,12 - 7038: 18,18 - 7039: 18,4 - 7070: 22,8 - 7140: 22,4 - 7162: 31,1 - 7197: 30,4 - 7227: 32,6 - 7330: 28,12 - 8016: 81,-19 - 8105: 25,-12 - 8266: 31,-10 - 8315: 41,-8 - 8345: 39,-16 - 8346: 39,-16 - 8380: 41,-19 - 8426: 48,-21 - 8427: 44,-21 - 8428: 52,-21 - 8445: 53,-19 - 8491: 56,-21 - 8668: 60,-10 - 8673: 63,-19 - 8674: 63,-22 - 8814: -13,-21 - 8815: -6,-21 - 8816: 0,-21 - 8817: 5,-21 - 8818: 12,-21 - 8844: 0,-26 - 8879: 0,-36 - 8880: 0,-36 - 8948: -15,-23 - 8949: -8,-23 - 8956: -8,-28 - 8957: -4,-28 - 8982: -16,-28 - 9181: 2,-67 - 9193: -8,-65 - 9194: -8,-65 - 9235: -11,-78 - 9296: -9,-71 - 9297: -9,-66 - 9307: 0,-62 - 9308: 0,-62 - 9462: -39,-16 - 9577: 1,-35 - 9639: 0,-39 - 9641: -3,-81 - 10365: 0,-44 - 10395: 0,-51 - 10581: 2,-76 - 10594: 1,-60 - 10655: 49,-42 - 10656: 47,-45 - 10657: 45,-45 - 10827: -4,-82 - 10828: -6,-82 - 10829: -6,-82 - 11308: -77,-31 - 11316: -77,-23 - 11433: -15,-32 - 11842: -39,-56 - 11866: -41,-53 - 13424: -37,-63 - 14473: -18,22 - 14955: 18,24 - 15830: 81,0 - 15831: 81,0 - 15832: 85,0 - 15833: 85,0 - 16732: -58,-10 - 16831: -58,-4 - 16841: -52,8 - 16862: -57,-7 - 16863: -57,-9 - 17540: 8,80 - 17545: 8,75 - 17548: 7,74 - 18441: -60,-43 - 18496: -18,-10 - 18514: -14,-10 - 18515: -10,-10 - 18544: 8,-10 - 19923: -24,10 - 20041: -16,4 - 20101: 70,26 - 20321: -18,4 - 20322: -18,-1 - 21379: 18,14 + 2231: -18,55 + 2245: -15,48 + 2246: -15,50 + 2288: -15,36 + 2320: -25,30 + 2763: -3,51 + 2789: -4,48 + 2829: -30,41 + 2845: -32,44 + 3045: -17,56 + 3055: -1,56 + 3181: -17,67 + 3453: -25,67 + 3454: -30,67 + 3459: -29,84 + 3473: -29,88 + 3483: -29,79 + 3484: -29,77 + 3496: -11,77 + 3497: -11,84 + 3498: -11,88 + 3515: -11,79 + 3542: -3,67 + 3552: 8,68 + 3555: 6,67 + 3769: 2,56 + 3776: 3,57 + 5132: 31,30 + 5138: 35,30 + 5437: 18,-3 + 5460: -23,4 + 5469: -32,4 + 5484: -41,23 + 5543: -18,-1 + 5793: 14,-4 + 5805: 8,-6 + 5806: 11,-6 + 6088: -11,-17 + 6127: 18,-12 + 6272: -4,-16 + 6323: 18,-20 + 6381: 8,-17 + 6384: 10,-16 + 6901: -35,9 + 6902: -36,8 + 6915: -36,18 + 6955: -28,8 + 6956: -25,8 + 6960: -22,11 + 7033: 18,12 + 7036: 18,18 + 7037: 18,4 + 7068: 22,8 + 7138: 22,4 + 7160: 31,1 + 7195: 30,4 + 7225: 32,6 + 7328: 28,12 + 8014: 81,-19 + 8103: 25,-12 + 8264: 31,-10 + 8313: 41,-8 + 8343: 39,-16 + 8344: 39,-16 + 8378: 41,-19 + 8424: 48,-21 + 8425: 44,-21 + 8426: 52,-21 + 8443: 53,-19 + 8489: 56,-21 + 8666: 60,-10 + 8671: 63,-19 + 8672: 63,-22 + 8812: -13,-21 + 8813: -6,-21 + 8814: 0,-21 + 8815: 5,-21 + 8816: 12,-21 + 8842: 0,-26 + 8877: 0,-36 + 8878: 0,-36 + 8946: -15,-23 + 8947: -8,-23 + 8954: -8,-28 + 8955: -4,-28 + 8980: -16,-28 + 9179: 2,-67 + 9191: -8,-65 + 9192: -8,-65 + 9233: -11,-78 + 9294: -9,-71 + 9295: -9,-66 + 9305: 0,-62 + 9306: 0,-62 + 9460: -39,-16 + 9575: 1,-35 + 9637: 0,-39 + 9639: -3,-81 + 10363: 0,-44 + 10393: 0,-51 + 10579: 2,-76 + 10592: 1,-60 + 10653: 49,-42 + 10654: 47,-45 + 10655: 45,-45 + 10825: -4,-82 + 10826: -6,-82 + 10827: -6,-82 + 11306: -77,-31 + 11314: -77,-23 + 11431: -15,-32 + 11840: -39,-56 + 11864: -41,-53 + 13422: -37,-63 + 14471: -18,22 + 14953: 18,24 + 15828: 81,0 + 15829: 81,0 + 15830: 85,0 + 15831: 85,0 + 16730: -58,-10 + 16829: -58,-4 + 16839: -52,8 + 16860: -57,-7 + 16861: -57,-9 + 17538: 8,80 + 17543: 8,75 + 17546: 7,74 + 18439: -60,-43 + 18494: -18,-10 + 18512: -14,-10 + 18513: -10,-10 + 18542: 8,-10 + 19921: -24,10 + 20039: -16,4 + 20099: 70,26 + 20319: -18,4 + 20320: -18,-1 + 21377: 18,14 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSw decals: - 8141: 27,-16 - 8142: 29,-16 - 8143: 31,-16 - 8155: 24,-15 - 8160: 25,-18 - 8161: 32,-11 + 8139: 27,-16 + 8140: 29,-16 + 8141: 31,-16 + 8153: 24,-15 + 8158: 25,-18 + 8159: 32,-11 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 3768: -26,60 - 10251: 37,-26 - 10252: 37,-26 - 15786: 78,4 - 15791: 77,6 + 3766: -26,60 + 10249: 37,-26 + 10250: 37,-26 + 15784: 78,4 + 15789: 77,6 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSw decals: - 9806: 21,-32 - 10055: 25,-26 - 10069: 32,-24 - 10149: 22,-49 - 10159: 20,-45 - 10179: 20,-45 - 10213: 32,-51 - 10214: 32,-49 + 9804: 21,-32 + 10053: 25,-26 + 10067: 32,-24 + 10147: 22,-49 + 10157: 20,-45 + 10177: 20,-45 + 10211: 32,-51 + 10212: 32,-49 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSw decals: - 11954: -29,-32 - 11955: -29,-32 - 11982: -31,-29 - 11983: -31,-29 - 12017: -42,-30 - 12018: -38,-30 - 12019: -34,-30 - 12025: -39,-29 - 12026: -35,-29 - 12038: -43,-29 - 12069: -48,-28 - 12071: -48,-25 - 12078: -46,-23 - 12183: -24,-42 - 12186: -29,-42 - 12188: -30,-39 - 16178: -66,-46 - 19811: -9,-43 + 11952: -29,-32 + 11953: -29,-32 + 11980: -31,-29 + 11981: -31,-29 + 12015: -42,-30 + 12016: -38,-30 + 12017: -34,-30 + 12023: -39,-29 + 12024: -35,-29 + 12036: -43,-29 + 12067: -48,-28 + 12069: -48,-25 + 12076: -46,-23 + 12181: -24,-42 + 12184: -29,-42 + 12186: -30,-39 + 16176: -66,-46 + 19809: -9,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSw decals: - 7805: 58,3 - 7806: 62,3 - 7807: 66,3 - 7813: 65,4 - 7814: 57,4 - 7815: 61,4 - 19297: 62,4 - 19298: 58,4 - 19299: 66,4 - 19321: 69,9 + 7803: 58,3 + 7804: 62,3 + 7805: 66,3 + 7811: 65,4 + 7812: 57,4 + 7813: 61,4 + 19295: 62,4 + 19296: 58,4 + 19297: 66,4 + 19319: 69,9 - node: color: '#DA8BC9FF' id: BrickTileSteelInnerSw decals: - 3934: 19,62 + 3932: 19,62 - node: color: '#DAA58BFF' id: BrickTileSteelInnerSw decals: - 4604: 20,34 + 4602: 20,34 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 20353: -48,9 - 20354: 5,-72 - 20355: 5,-78 - 20356: 5,-62 - 20406: 4,-76 - 20407: 4,-67 - 20453: 3,-60 - 20462: 8,-65 - 20471: 8,-77 - 20472: 8,-77 - 20473: 12,-32 - 20514: 0,61 - 20525: 2,60 - 20544: 40,3 - 20548: 40,11 - 20554: 40,11 - 20576: 39,8 - 20666: 46,12 - 20667: 46,12 - 20679: 46,8 - 20702: 46,3 - 20703: 39,4 - 20744: 49,22 - 20757: 57,21 - 20758: 52,21 - 20763: 56,32 - 20764: 58,31 - 20765: 57,28 - 20766: 54,28 - 20817: 47,15 - 20824: 45,20 - 20840: 56,17 - 20851: 50,16 - 20852: 51,15 - 20868: 50,12 - 20871: 53,11 - 20909: 91,21 - 20935: 83,12 - 20956: 76,9 - 20974: 72,18 - 20975: 72,13 - 20976: 73,5 - 21020: 73,21 - 21030: 75,25 - 21038: 91,21 - 21043: 72,6 - 21047: 72,1 - 21061: 69,-1 - 21065: 69,1 - 21111: 52,-1 - 21114: 47,-1 - 21119: 46,0 - 21147: 35,4 - 21156: 34,6 - 21161: 39,6 - 21164: 36,8 - 21169: 36,11 - 21190: 50,4 - 21191: 50,8 - 21198: 61,-1 - 21199: 65,-1 - 21212: 73,-4 - 21244: -20,-26 - 21259: 51,-5 - 21275: 46,-8 - 21280: 56,-1 + 20351: -48,9 + 20352: 5,-72 + 20353: 5,-78 + 20354: 5,-62 + 20404: 4,-76 + 20405: 4,-67 + 20451: 3,-60 + 20460: 8,-65 + 20469: 8,-77 + 20470: 8,-77 + 20471: 12,-32 + 20512: 0,61 + 20523: 2,60 + 20542: 40,3 + 20546: 40,11 + 20552: 40,11 + 20574: 39,8 + 20664: 46,12 + 20665: 46,12 + 20677: 46,8 + 20700: 46,3 + 20701: 39,4 + 20742: 49,22 + 20755: 57,21 + 20756: 52,21 + 20761: 56,32 + 20762: 58,31 + 20763: 57,28 + 20764: 54,28 + 20815: 47,15 + 20822: 45,20 + 20838: 56,17 + 20849: 50,16 + 20850: 51,15 + 20866: 50,12 + 20869: 53,11 + 20907: 91,21 + 20933: 83,12 + 20954: 76,9 + 20972: 72,18 + 20973: 72,13 + 20974: 73,5 + 21018: 73,21 + 21028: 75,25 + 21036: 91,21 + 21041: 72,6 + 21045: 72,1 + 21059: 69,-1 + 21063: 69,1 + 21109: 52,-1 + 21112: 47,-1 + 21117: 46,0 + 21145: 35,4 + 21154: 34,6 + 21159: 39,6 + 21162: 36,8 + 21167: 36,11 + 21188: 50,4 + 21189: 50,8 + 21196: 61,-1 + 21197: 65,-1 + 21210: 73,-4 + 21242: -20,-26 + 21257: 51,-5 + 21273: 46,-8 + 21278: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2257: -23,50 - 2261: -23,47 - 2262: -23,47 - 2264: -24,41 - 2298: -21,28 - 2300: -20,26 - 2311: -23,30 - 2312: -23,40 - 2323: -27,30 - 2326: -27,32 - 2353: -27,39 - 2480: -14,36 - 2732: -13,50 - 2792: -4,48 - 2797: -4,45 - 2802: -7,27 - 2840: -30,40 - 3048: -20,55 - 3055: -1,56 - 3058: 1,56 - 3182: -7,67 - 3434: -21,67 - 3454: -25,67 - 3457: -30,67 - 3467: -31,77 - 3468: -31,79 - 3469: -31,84 - 3470: -31,88 - 3487: -13,77 - 3488: -13,79 - 3489: -13,84 - 3490: -13,88 - 3556: 6,67 - 3639: 5,84 - 3657: 5,79 - 3660: 5,77 - 5133: 31,30 - 5139: 35,30 - 5437: 16,-4 - 5461: -23,4 - 5470: -33,4 - 5805: 10,-6 - 5806: 8,-6 - 6089: -13,-17 - 6276: -4,-17 - 6384: 8,-17 - 6407: 12,-16 - 6446: -20,-20 - 6447: -20,-20 - 6454: -20,-18 - 6798: -20,11 - 6816: -43,23 - 6817: -44,18 - 6902: -37,9 - 6905: -36,8 - 6916: -36,18 - 6955: -28,8 - 6959: -26,8 - 6973: -21,-17 - 7069: 22,8 - 7139: 22,4 - 7168: 25,-8 - 7196: 30,4 - 7328: 28,11 - 8015: 79,-19 - 8104: 25,-12 - 8173: 33,-12 - 8174: 33,-12 - 8175: 33,-10 - 8176: 33,-10 - 8344: 41,-16 - 8347: 39,-16 - 8348: 39,-16 - 8382: 43,-19 - 8423: 44,-21 - 8424: 48,-21 - 8425: 52,-21 - 8475: 55,-21 - 8477: 55,-19 - 8478: 55,-19 - 8587: 55,-29 - 8590: 55,-11 - 8591: 55,-11 - 8667: 58,-10 - 8809: 4,-21 - 8810: 11,-21 - 8811: -7,-21 - 8812: -2,-21 - 8813: -14,-21 - 8843: -2,-26 - 8878: -2,-36 - 8950: -12,-23 - 8955: -4,-28 - 8958: -12,-28 - 8961: -16,-23 - 8962: -16,-23 - 8971: -5,-23 - 8972: -5,-23 - 8983: -16,-28 - 9195: -1,-65 - 9234: -11,-78 - 9298: 0,-71 - 9299: 0,-66 - 9306: -2,-62 - 9319: -3,-60 - 9640: 1,-81 - 9642: -11,-67 - 10658: 43,-42 - 10659: 43,-42 - 10660: 45,-45 - 10661: 47,-45 - 10662: 47,-45 - 10824: 2,-82 - 10825: -4,-82 - 10826: -4,-82 - 10830: -6,-82 - 10831: -9,-78 - 11270: -60,-36 - 11271: -60,-36 - 11272: -60,-43 - 11312: -78,-27 - 11400: -2,-48 - 11404: -2,-41 - 11410: -3,-35 - 11432: -13,-32 - 11883: -26,-53 - 13374: -44,9 - 13423: -37,-63 - 14412: -45,14 - 14413: -45,12 - 14416: -44,11 - 15048: 16,22 - 15421: -43,8 - 15826: 76,1 - 15827: 81,0 - 15828: 85,0 - 15829: 89,0 - 16408: -60,-48 - 16731: -58,-10 - 16830: -58,-4 - 16840: -53,8 - 16868: -55,-7 - 16869: -55,-9 - 18473: -15,-12 - 18516: -14,-10 - 18517: -10,-10 - 18518: 16,-10 - 18543: 8,-10 - 19922: -27,10 - 20043: -16,4 - 20104: 61,25 - 20218: -20,17 - 20219: -20,11 - 20220: -20,4 - 20221: -20,-3 - 20316: -20,17 - 20319: -20,20 + 2255: -23,50 + 2259: -23,47 + 2260: -23,47 + 2262: -24,41 + 2296: -21,28 + 2298: -20,26 + 2309: -23,30 + 2310: -23,40 + 2321: -27,30 + 2324: -27,32 + 2351: -27,39 + 2478: -14,36 + 2730: -13,50 + 2790: -4,48 + 2795: -4,45 + 2800: -7,27 + 2838: -30,40 + 3046: -20,55 + 3053: -1,56 + 3056: 1,56 + 3180: -7,67 + 3432: -21,67 + 3452: -25,67 + 3455: -30,67 + 3465: -31,77 + 3466: -31,79 + 3467: -31,84 + 3468: -31,88 + 3485: -13,77 + 3486: -13,79 + 3487: -13,84 + 3488: -13,88 + 3554: 6,67 + 3637: 5,84 + 3655: 5,79 + 3658: 5,77 + 5131: 31,30 + 5137: 35,30 + 5435: 16,-4 + 5459: -23,4 + 5468: -33,4 + 5803: 10,-6 + 5804: 8,-6 + 6087: -13,-17 + 6274: -4,-17 + 6382: 8,-17 + 6405: 12,-16 + 6444: -20,-20 + 6445: -20,-20 + 6452: -20,-18 + 6796: -20,11 + 6814: -43,23 + 6815: -44,18 + 6900: -37,9 + 6903: -36,8 + 6914: -36,18 + 6953: -28,8 + 6957: -26,8 + 6971: -21,-17 + 7067: 22,8 + 7137: 22,4 + 7166: 25,-8 + 7194: 30,4 + 7326: 28,11 + 8013: 79,-19 + 8102: 25,-12 + 8171: 33,-12 + 8172: 33,-12 + 8173: 33,-10 + 8174: 33,-10 + 8342: 41,-16 + 8345: 39,-16 + 8346: 39,-16 + 8380: 43,-19 + 8421: 44,-21 + 8422: 48,-21 + 8423: 52,-21 + 8473: 55,-21 + 8475: 55,-19 + 8476: 55,-19 + 8585: 55,-29 + 8588: 55,-11 + 8589: 55,-11 + 8665: 58,-10 + 8807: 4,-21 + 8808: 11,-21 + 8809: -7,-21 + 8810: -2,-21 + 8811: -14,-21 + 8841: -2,-26 + 8876: -2,-36 + 8948: -12,-23 + 8953: -4,-28 + 8956: -12,-28 + 8959: -16,-23 + 8960: -16,-23 + 8969: -5,-23 + 8970: -5,-23 + 8981: -16,-28 + 9193: -1,-65 + 9232: -11,-78 + 9296: 0,-71 + 9297: 0,-66 + 9304: -2,-62 + 9317: -3,-60 + 9638: 1,-81 + 9640: -11,-67 + 10656: 43,-42 + 10657: 43,-42 + 10658: 45,-45 + 10659: 47,-45 + 10660: 47,-45 + 10822: 2,-82 + 10823: -4,-82 + 10824: -4,-82 + 10828: -6,-82 + 10829: -9,-78 + 11268: -60,-36 + 11269: -60,-36 + 11270: -60,-43 + 11310: -78,-27 + 11398: -2,-48 + 11402: -2,-41 + 11408: -3,-35 + 11430: -13,-32 + 11881: -26,-53 + 13372: -44,9 + 13421: -37,-63 + 14410: -45,14 + 14411: -45,12 + 14414: -44,11 + 15046: 16,22 + 15419: -43,8 + 15824: 76,1 + 15825: 81,0 + 15826: 85,0 + 15827: 89,0 + 16406: -60,-48 + 16729: -58,-10 + 16828: -58,-4 + 16838: -53,8 + 16866: -55,-7 + 16867: -55,-9 + 18471: -15,-12 + 18514: -14,-10 + 18515: -10,-10 + 18516: 16,-10 + 18541: 8,-10 + 19920: -27,10 + 20041: -16,4 + 20102: 61,25 + 20216: -20,17 + 20217: -20,11 + 20218: -20,4 + 20219: -20,-3 + 20314: -20,17 + 20317: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 4109: -20,20 - 4110: -20,17 + 4107: -20,20 + 4108: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelLineE decals: - 8125: 25,-18 - 8126: 25,-17 - 8157: 23,-15 - 8163: 31,-15 + 8123: 25,-18 + 8124: 25,-17 + 8155: 23,-15 + 8161: 31,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 3748: -26,64 - 3749: -26,62 - 3750: -26,60 - 3761: -25,63 - 3762: -25,61 - 3763: -25,59 - 10256: 35,-26 - 15795: 79,5 + 3746: -26,64 + 3747: -26,62 + 3748: -26,60 + 3759: -25,63 + 3760: -25,61 + 3761: -25,59 + 10254: 35,-26 + 15793: 79,5 - node: color: '#334E6DFF' id: BrickTileSteelLineE decals: + 21318: -18,13 + 21319: -18,12 21320: -18,13 - 21321: -18,12 - 21322: -18,13 - 21323: -18,13 + 21321: -18,13 - node: color: '#8BC9DAFF' id: BrickTileSteelLineE decals: + 3684: 4,64 3686: 4,64 3688: 4,64 - 3690: 4,64 - 3926: 21,61 - 3955: 21,61 + 3924: 21,61 + 3953: 21,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineE decals: - 9954: 29,-44 - 10064: 31,-24 - 10065: 31,-24 - 10074: 32,-24 - 10161: 24,-47 - 10162: 24,-48 - 10210: 31,-49 - 10211: 31,-51 - 10212: 31,-51 - 10222: 34,-52 - 10223: 34,-51 - 10224: 34,-50 - 10225: 34,-49 - 10226: 34,-48 + 9952: 29,-44 + 10062: 31,-24 + 10063: 31,-24 + 10072: 32,-24 + 10159: 24,-47 + 10160: 24,-48 + 10208: 31,-49 + 10209: 31,-51 + 10210: 31,-51 + 10220: 34,-52 + 10221: 34,-51 + 10222: 34,-50 + 10223: 34,-49 + 10224: 34,-48 - node: color: '#96A4EBFF' id: BrickTileSteelLineE decals: - 21315: -18,13 + 21313: -18,13 - node: color: '#A9DA8BFF' id: BrickTileSteelLineE decals: - 2991: -39,49 + 2989: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineE decals: - 11563: -21,-34 - 11564: -21,-35 - 11565: -21,-36 - 11961: -26,-31 - 11962: -26,-31 - 11963: -26,-30 - 11964: -26,-30 - 11965: -26,-29 - 11966: -26,-28 - 11967: -26,-27 - 11975: -32,-27 - 11976: -32,-28 - 11977: -32,-29 - 12035: -44,-27 - 12036: -44,-28 - 12037: -44,-29 - 12052: -45,-26 - 12053: -45,-30 - 12068: -49,-28 - 12081: -48,-23 - 12118: -24,-46 - 12119: -24,-45 - 12120: -24,-44 - 12167: -28,-41 - 12168: -28,-40 - 12169: -28,-39 - 12170: -23,-41 - 12171: -23,-40 - 12172: -23,-39 - 12189: -31,-39 - 12346: -17,-43 - 12347: -17,-42 - 12348: -17,-41 - 12354: -17,-39 - 16169: -62,-47 - 19807: -10,-43 - 19808: -10,-42 - 19809: -10,-41 - 19810: -10,-41 - 19821: -10,-40 + 11561: -21,-34 + 11562: -21,-35 + 11563: -21,-36 + 11959: -26,-31 + 11960: -26,-31 + 11961: -26,-30 + 11962: -26,-30 + 11963: -26,-29 + 11964: -26,-28 + 11965: -26,-27 + 11973: -32,-27 + 11974: -32,-28 + 11975: -32,-29 + 12033: -44,-27 + 12034: -44,-28 + 12035: -44,-29 + 12050: -45,-26 + 12051: -45,-30 + 12066: -49,-28 + 12079: -48,-23 + 12116: -24,-46 + 12117: -24,-45 + 12118: -24,-44 + 12165: -28,-41 + 12166: -28,-40 + 12167: -28,-39 + 12168: -23,-41 + 12169: -23,-40 + 12170: -23,-39 + 12187: -31,-39 + 12344: -17,-43 + 12345: -17,-42 + 12346: -17,-41 + 12352: -17,-39 + 16167: -62,-47 + 19805: -10,-43 + 19806: -10,-42 + 19807: -10,-41 + 19808: -10,-41 + 19819: -10,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineE decals: - 10969: 32,-69 - 10970: 32,-67 + 10967: 32,-69 + 10968: 32,-67 - node: color: '#DA8B8BFF' id: BrickTileSteelLineE decals: - 7816: 67,4 - 7823: 64,4 - 7824: 64,5 - 7829: 56,4 - 7830: 56,5 - 7831: 60,4 - 7832: 60,5 - 19286: 58,3 - 19293: 66,3 - 19294: 62,3 - 19319: 69,8 - 19324: 66,8 - 19325: 66,7 - 19330: 62,7 - 19331: 62,8 - 19332: 62,9 - 19338: 58,7 - 19339: 58,8 + 7814: 67,4 + 7821: 64,4 + 7822: 64,5 + 7827: 56,4 + 7828: 56,5 + 7829: 60,4 + 7830: 60,5 + 19284: 58,3 + 19291: 66,3 + 19292: 62,3 + 19317: 69,8 + 19322: 66,8 + 19323: 66,7 + 19328: 62,7 + 19329: 62,8 + 19330: 62,9 + 19336: 58,7 + 19337: 58,8 - node: color: '#DA8BC9FF' id: BrickTileSteelLineE decals: - 3824: 9,68 - 3933: 21,62 + 3822: 9,68 + 3931: 21,62 - node: color: '#DABC8BFF' id: BrickTileSteelLineE decals: - 3704: 9,75 - 3705: 9,76 - 3706: 9,80 - 3707: 9,81 + 3702: 9,75 + 3703: 9,76 + 3704: 9,80 + 3705: 9,81 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 20331: -22,1 - 20346: -49,9 - 20373: 4,-86 - 20374: 4,-85 - 20375: 4,-84 - 20386: 6,-81 - 20402: 3,-66 - 20403: 3,-67 - 20404: 3,-75 - 20405: 3,-76 - 20430: 7,-77 - 20431: 7,-75 - 20434: 6,-76 - 20439: 6,-71 - 20440: 6,-70 - 20441: 6,-69 - 20442: 6,-68 - 20443: 6,-67 - 20444: 6,-66 - 20445: 9,-65 - 20446: 8,-61 - 20447: 8,-60 - 20448: 8,-59 - 20454: 2,-60 - 20497: 11,30 - 20498: 13,31 - 20499: 13,32 - 20507: -1,61 - 20517: 3,63 - 20518: 3,62 - 20519: 3,61 - 20556: 41,12 - 20567: 41,6 - 20568: 41,7 - 20569: 41,8 - 20577: 38,8 - 20608: 74,10 - 20609: 74,11 - 20610: 74,12 - 20611: 74,13 - 20612: 74,14 - 20613: 74,15 - 20614: 74,16 - 20615: 74,17 - 20616: 74,18 - 20617: 93,14 - 20618: 93,19 - 20619: 93,19 - 20620: 93,20 - 20621: 93,18 - 20624: 93,16 - 20638: 75,9 - 20639: 79,9 - 20644: 48,2 - 20645: 48,3 - 20646: 48,5 - 20647: 48,6 - 20648: 48,6 - 20649: 48,7 - 20650: 48,11 - 20665: 45,12 - 20674: 48,9 - 20680: 45,8 - 20704: 38,4 - 20705: 38,6 - 20706: 48,17 - 20707: 48,18 - 20708: 54,18 - 20709: 59,22 - 20710: 59,23 - 20711: 59,24 - 20712: 59,27 - 20713: 59,28 - 20714: 59,29 - 20715: 59,30 - 20716: 59,26 - 20729: 48,23 - 20730: 48,22 - 20777: 49,16 - 20782: 49,12 - 20827: 47,21 - 20828: 47,20 - 20829: 57,18 - 20830: 57,17 - 20831: 57,16 - 20832: 57,16 - 20843: 54,16 - 20875: 49,8 - 20878: 49,4 - 20906: 93,22 - 20908: 90,21 - 20944: 79,9 - 20947: 75,9 - 20957: 74,8 - 20958: 74,7 - 20959: 74,6 - 20960: 74,6 - 20982: 71,-1 - 20987: 67,0 - 20990: 70,0 - 21000: 49,-1 - 21001: 49,0 - 21002: 49,1 - 21003: 71,6 - 21004: 71,13 - 21008: 71,13 - 21009: 71,18 - 21056: 68,1 - 21057: 68,-1 - 21058: 71,1 - 21059: 71,-1 - 21091: 48,-4 - 21092: 53,-4 - 21108: 58,-4 - 21120: 45,0 - 21136: 41,0 - 21137: 33,6 - 21138: 33,4 - 21139: 38,4 - 21140: 38,6 - 21150: 37,5 - 21183: 55,6 - 21184: 55,7 - 21185: 55,8 - 21200: 44,20 - 21201: 49,16 - 21202: 55,17 - 21210: 72,-4 - 21219: 75,-4 - 21222: 77,-3 - 21225: 75,-4 - 21227: 72,-4 - 21231: -21,-26 - 21235: -18,-25 - 21236: -18,-26 - 21237: -18,-26 - 21238: -18,-27 - 21263: 51,-7 - 21264: 51,-8 - 21272: 45,-8 - 21288: 74,2 - 21289: 74,0 + 20329: -22,1 + 20344: -49,9 + 20371: 4,-86 + 20372: 4,-85 + 20373: 4,-84 + 20384: 6,-81 + 20400: 3,-66 + 20401: 3,-67 + 20402: 3,-75 + 20403: 3,-76 + 20428: 7,-77 + 20429: 7,-75 + 20432: 6,-76 + 20437: 6,-71 + 20438: 6,-70 + 20439: 6,-69 + 20440: 6,-68 + 20441: 6,-67 + 20442: 6,-66 + 20443: 9,-65 + 20444: 8,-61 + 20445: 8,-60 + 20446: 8,-59 + 20452: 2,-60 + 20495: 11,30 + 20496: 13,31 + 20497: 13,32 + 20505: -1,61 + 20515: 3,63 + 20516: 3,62 + 20517: 3,61 + 20554: 41,12 + 20565: 41,6 + 20566: 41,7 + 20567: 41,8 + 20575: 38,8 + 20606: 74,10 + 20607: 74,11 + 20608: 74,12 + 20609: 74,13 + 20610: 74,14 + 20611: 74,15 + 20612: 74,16 + 20613: 74,17 + 20614: 74,18 + 20615: 93,14 + 20616: 93,19 + 20617: 93,19 + 20618: 93,20 + 20619: 93,18 + 20622: 93,16 + 20636: 75,9 + 20637: 79,9 + 20642: 48,2 + 20643: 48,3 + 20644: 48,5 + 20645: 48,6 + 20646: 48,6 + 20647: 48,7 + 20648: 48,11 + 20663: 45,12 + 20672: 48,9 + 20678: 45,8 + 20702: 38,4 + 20703: 38,6 + 20704: 48,17 + 20705: 48,18 + 20706: 54,18 + 20707: 59,22 + 20708: 59,23 + 20709: 59,24 + 20710: 59,27 + 20711: 59,28 + 20712: 59,29 + 20713: 59,30 + 20714: 59,26 + 20727: 48,23 + 20728: 48,22 + 20775: 49,16 + 20780: 49,12 + 20825: 47,21 + 20826: 47,20 + 20827: 57,18 + 20828: 57,17 + 20829: 57,16 + 20830: 57,16 + 20841: 54,16 + 20873: 49,8 + 20876: 49,4 + 20904: 93,22 + 20906: 90,21 + 20942: 79,9 + 20945: 75,9 + 20955: 74,8 + 20956: 74,7 + 20957: 74,6 + 20958: 74,6 + 20980: 71,-1 + 20985: 67,0 + 20988: 70,0 + 20998: 49,-1 + 20999: 49,0 + 21000: 49,1 + 21001: 71,6 + 21002: 71,13 + 21006: 71,13 + 21007: 71,18 + 21054: 68,1 + 21055: 68,-1 + 21056: 71,1 + 21057: 71,-1 + 21089: 48,-4 + 21090: 53,-4 + 21106: 58,-4 + 21118: 45,0 + 21134: 41,0 + 21135: 33,6 + 21136: 33,4 + 21137: 38,4 + 21138: 38,6 + 21148: 37,5 + 21181: 55,6 + 21182: 55,7 + 21183: 55,8 + 21198: 44,20 + 21199: 49,16 + 21200: 55,17 + 21208: 72,-4 + 21217: 75,-4 + 21220: 77,-3 + 21223: 75,-4 + 21225: 72,-4 + 21229: -21,-26 + 21233: -18,-25 + 21234: -18,-26 + 21235: -18,-26 + 21236: -18,-27 + 21261: 51,-7 + 21262: 51,-8 + 21270: 45,-8 + 21286: 74,2 + 21287: 74,0 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2243: -15,51 - 2244: -15,49 - 2249: -15,47 - 2275: -25,41 - 2289: -15,35 - 2301: -24,39 - 2302: -24,38 - 2303: -24,37 - 2304: -24,36 - 2305: -24,35 - 2306: -24,34 - 2307: -24,33 - 2308: -24,32 - 2309: -24,31 - 2310: -24,30 - 2328: -28,30 - 2344: -28,32 - 2345: -28,33 - 2346: -28,34 - 2347: -28,35 - 2348: -28,36 - 2349: -28,37 - 2350: -28,38 - 2734: -14,48 - 2735: -14,50 - 2756: -3,50 - 2757: -3,49 - 2783: -2,45 - 2804: -8,27 - 2806: -5,27 - 2818: -26,42 - 2839: -30,40 - 2860: -24,50 - 2861: -24,51 - 2862: -24,48 - 2863: -24,47 - 3163: -17,59 - 3164: -17,60 - 3165: -17,61 - 3166: -17,62 - 3167: -17,63 - 3168: -17,64 - 3169: -17,64 - 3170: -17,65 - 3171: -17,66 - 3336: -29,93 - 3337: -29,94 - 3338: -29,95 - 3339: -28,91 - 3340: -28,90 - 3341: -28,89 - 3342: -29,87 - 3343: -29,86 - 3344: -29,85 - 3345: -29,83 - 3346: -28,81 - 3347: -28,80 - 3348: -29,78 - 3349: -29,76 - 3350: -29,75 - 3351: -29,74 - 3352: -29,73 - 3353: -29,72 - 3354: -29,71 - 3355: -29,70 - 3393: -11,93 - 3394: -11,94 - 3395: -11,95 - 3396: -10,91 - 3397: -10,90 - 3398: -10,89 - 3399: -11,86 - 3400: -11,85 - 3401: -11,87 - 3402: -11,83 - 3403: -10,81 - 3404: -10,80 - 3405: -11,78 - 3406: -11,76 - 3407: -11,75 - 3408: -11,74 - 3409: -11,73 - 3410: -11,72 - 3411: -11,71 - 3412: -11,70 - 3443: -3,59 - 3444: -3,63 - 3445: -3,64 - 3446: -3,62 - 3447: -3,62 - 3448: -3,61 - 3451: -3,66 - 3502: -10,89 - 3503: -10,90 - 3504: -10,91 - 3568: -14,77 - 3570: -10,77 - 3572: -16,77 - 3578: -14,84 - 3579: -16,84 - 3580: -10,84 - 3591: -32,84 - 3592: -28,84 - 3594: -34,84 - 3599: -28,77 - 3600: -32,77 - 3601: -34,77 - 3609: 5,72 - 3610: 5,73 - 3611: 5,74 - 3612: 5,75 - 3634: 7,73 - 3635: 7,72 - 3636: 7,71 - 3638: 7,70 - 3662: 4,77 - 3663: 2,77 - 3664: 4,84 - 3666: 2,84 - 3726: -22,55 - 4169: -21,20 - 4311: 15,14 - 4312: 15,15 - 4342: 18,20 - 4343: 18,20 - 4344: 18,19 - 4345: 18,17 - 4346: 18,16 - 4347: 18,13 - 4348: 18,11 - 4349: 18,10 - 4350: 18,9 - 4351: 18,8 - 4352: 18,7 - 4353: 18,3 - 4354: 18,2 - 4355: 18,1 - 4356: 18,0 - 4357: 18,-1 - 4358: 18,-2 - 4359: 18,-4 - 4360: 18,-5 - 4361: 18,-6 - 4362: 18,-7 - 4363: 18,-8 - 4364: 18,-9 - 5110: 30,28 - 5111: 30,27 - 5112: 30,26 - 5117: 33,28 - 5118: 33,27 - 5119: 33,26 - 5124: 28,31 - 5143: 36,31 - 5226: 18,-6 - 5272: -29,82 - 5273: -29,81 - 5274: -29,81 - 5275: -29,79 - 5276: -29,80 - 5290: -29,92 - 5291: -29,91 - 5292: -29,90 - 5293: -29,90 - 5294: -29,89 - 5295: -29,89 - 5296: -29,88 - 5297: -29,88 - 5298: -11,79 - 5299: -11,80 - 5300: -11,81 - 5301: -11,82 - 5302: -11,82 - 5315: -11,92 - 5316: -11,91 - 5317: -11,91 - 5318: -11,90 - 5319: -11,90 - 5320: -11,89 - 5321: -11,88 - 5322: -11,87 - 5393: -18,-7 - 5483: -41,11 - 5484: -41,15 - 5485: -41,22 - 5619: 15,-8 - 5629: -17,-8 - 5632: -18,-11 - 5633: -18,-11 - 5634: -18,-12 - 5635: -18,-13 - 5636: -18,-13 - 5637: -18,-15 - 5638: -18,-14 - 5639: -18,-16 - 5640: -18,-16 - 5641: -18,-17 - 5642: -18,-18 - 5657: 15,-4 - 5796: 14,-5 - 6084: -9,-16 - 6085: -9,-15 - 6086: -9,-14 - 6087: -9,-13 - 6157: -17,-21 - 6158: -17,-20 - 6159: -17,-19 - 6173: -17,-19 - 6271: -4,-14 - 6272: -4,-15 - 6275: -4,-17 - 6284: -3,-21 - 6285: -3,-20 - 6286: -3,-19 - 6287: 1,-19 - 6288: 1,-20 - 6289: 1,-21 - 6302: 15,-21 - 6303: 15,-20 - 6304: 15,-19 - 6309: 18,-13 - 6310: 18,-14 - 6311: 18,-15 - 6312: 18,-16 - 6313: 18,-17 - 6314: 18,-18 - 6315: 18,-19 - 6316: 18,-21 - 6342: 4,-16 - 6343: 4,-15 - 6373: 10,-12 - 6374: 10,-13 - 6375: 10,-14 - 6376: 10,-15 - 6405: 14,-17 - 6406: 14,-16 - 6408: 11,-16 - 6411: 14,-15 - 6456: -21,-20 - 6646: -21,-3 - 6647: -21,-2 - 6799: -21,11 - 6800: -21,12 - 6801: -21,12 - 6892: -34,10 + 2241: -15,51 + 2242: -15,49 + 2247: -15,47 + 2273: -25,41 + 2287: -15,35 + 2299: -24,39 + 2300: -24,38 + 2301: -24,37 + 2302: -24,36 + 2303: -24,35 + 2304: -24,34 + 2305: -24,33 + 2306: -24,32 + 2307: -24,31 + 2308: -24,30 + 2326: -28,30 + 2342: -28,32 + 2343: -28,33 + 2344: -28,34 + 2345: -28,35 + 2346: -28,36 + 2347: -28,37 + 2348: -28,38 + 2732: -14,48 + 2733: -14,50 + 2754: -3,50 + 2755: -3,49 + 2781: -2,45 + 2802: -8,27 + 2804: -5,27 + 2816: -26,42 + 2837: -30,40 + 2858: -24,50 + 2859: -24,51 + 2860: -24,48 + 2861: -24,47 + 3161: -17,59 + 3162: -17,60 + 3163: -17,61 + 3164: -17,62 + 3165: -17,63 + 3166: -17,64 + 3167: -17,64 + 3168: -17,65 + 3169: -17,66 + 3334: -29,93 + 3335: -29,94 + 3336: -29,95 + 3337: -28,91 + 3338: -28,90 + 3339: -28,89 + 3340: -29,87 + 3341: -29,86 + 3342: -29,85 + 3343: -29,83 + 3344: -28,81 + 3345: -28,80 + 3346: -29,78 + 3347: -29,76 + 3348: -29,75 + 3349: -29,74 + 3350: -29,73 + 3351: -29,72 + 3352: -29,71 + 3353: -29,70 + 3391: -11,93 + 3392: -11,94 + 3393: -11,95 + 3394: -10,91 + 3395: -10,90 + 3396: -10,89 + 3397: -11,86 + 3398: -11,85 + 3399: -11,87 + 3400: -11,83 + 3401: -10,81 + 3402: -10,80 + 3403: -11,78 + 3404: -11,76 + 3405: -11,75 + 3406: -11,74 + 3407: -11,73 + 3408: -11,72 + 3409: -11,71 + 3410: -11,70 + 3441: -3,59 + 3442: -3,63 + 3443: -3,64 + 3444: -3,62 + 3445: -3,62 + 3446: -3,61 + 3449: -3,66 + 3500: -10,89 + 3501: -10,90 + 3502: -10,91 + 3566: -14,77 + 3568: -10,77 + 3570: -16,77 + 3576: -14,84 + 3577: -16,84 + 3578: -10,84 + 3589: -32,84 + 3590: -28,84 + 3592: -34,84 + 3597: -28,77 + 3598: -32,77 + 3599: -34,77 + 3607: 5,72 + 3608: 5,73 + 3609: 5,74 + 3610: 5,75 + 3632: 7,73 + 3633: 7,72 + 3634: 7,71 + 3636: 7,70 + 3660: 4,77 + 3661: 2,77 + 3662: 4,84 + 3664: 2,84 + 3724: -22,55 + 4167: -21,20 + 4309: 15,14 + 4310: 15,15 + 4340: 18,20 + 4341: 18,20 + 4342: 18,19 + 4343: 18,17 + 4344: 18,16 + 4345: 18,13 + 4346: 18,11 + 4347: 18,10 + 4348: 18,9 + 4349: 18,8 + 4350: 18,7 + 4351: 18,3 + 4352: 18,2 + 4353: 18,1 + 4354: 18,0 + 4355: 18,-1 + 4356: 18,-2 + 4357: 18,-4 + 4358: 18,-5 + 4359: 18,-6 + 4360: 18,-7 + 4361: 18,-8 + 4362: 18,-9 + 5108: 30,28 + 5109: 30,27 + 5110: 30,26 + 5115: 33,28 + 5116: 33,27 + 5117: 33,26 + 5122: 28,31 + 5141: 36,31 + 5224: 18,-6 + 5270: -29,82 + 5271: -29,81 + 5272: -29,81 + 5273: -29,79 + 5274: -29,80 + 5288: -29,92 + 5289: -29,91 + 5290: -29,90 + 5291: -29,90 + 5292: -29,89 + 5293: -29,89 + 5294: -29,88 + 5295: -29,88 + 5296: -11,79 + 5297: -11,80 + 5298: -11,81 + 5299: -11,82 + 5300: -11,82 + 5313: -11,92 + 5314: -11,91 + 5315: -11,91 + 5316: -11,90 + 5317: -11,90 + 5318: -11,89 + 5319: -11,88 + 5320: -11,87 + 5391: -18,-7 + 5481: -41,11 + 5482: -41,15 + 5483: -41,22 + 5617: 15,-8 + 5627: -17,-8 + 5630: -18,-11 + 5631: -18,-11 + 5632: -18,-12 + 5633: -18,-13 + 5634: -18,-13 + 5635: -18,-15 + 5636: -18,-14 + 5637: -18,-16 + 5638: -18,-16 + 5639: -18,-17 + 5640: -18,-18 + 5655: 15,-4 + 5794: 14,-5 + 6082: -9,-16 + 6083: -9,-15 + 6084: -9,-14 + 6085: -9,-13 + 6155: -17,-21 + 6156: -17,-20 + 6157: -17,-19 + 6171: -17,-19 + 6269: -4,-14 + 6270: -4,-15 + 6273: -4,-17 + 6282: -3,-21 + 6283: -3,-20 + 6284: -3,-19 + 6285: 1,-19 + 6286: 1,-20 + 6287: 1,-21 + 6300: 15,-21 + 6301: 15,-20 + 6302: 15,-19 + 6307: 18,-13 + 6308: 18,-14 + 6309: 18,-15 + 6310: 18,-16 + 6311: 18,-17 + 6312: 18,-18 + 6313: 18,-19 + 6314: 18,-21 + 6340: 4,-16 + 6341: 4,-15 + 6371: 10,-12 + 6372: 10,-13 + 6373: 10,-14 + 6374: 10,-15 + 6403: 14,-17 + 6404: 14,-16 + 6406: 11,-16 + 6409: 14,-15 + 6454: -21,-20 + 6644: -21,-3 + 6645: -21,-2 + 6797: -21,11 + 6798: -21,12 + 6799: -21,12 + 6890: -34,10 + 6891: -34,11 + 6892: -34,11 6893: -34,11 6894: -34,11 - 6895: -34,11 - 6896: -34,11 - 6897: -34,12 - 6898: -34,12 - 6899: -34,13 - 6900: -34,14 - 6901: -34,14 - 6930: -22,13 - 6931: -22,14 - 6932: -22,10 - 6933: -22,10 - 6934: -22,9 - 6968: -22,-16 - 6969: -22,-16 - 6970: -22,-17 - 7065: 19,4 - 7066: 19,5 - 7067: 19,6 - 7075: 24,9 - 7113: 19,-12 - 7114: 19,-11 - 7115: 19,-10 - 7116: 26,-12 - 7117: 26,-11 - 7118: 26,-10 - 7132: 31,-11 - 7178: 31,-5 - 7191: 24,-8 - 7192: 24,-2 - 7218: 26,4 - 7219: 26,5 - 7220: 26,6 + 6895: -34,12 + 6896: -34,12 + 6897: -34,13 + 6898: -34,14 + 6899: -34,14 + 6928: -22,13 + 6929: -22,14 + 6930: -22,10 + 6931: -22,10 + 6932: -22,9 + 6966: -22,-16 + 6967: -22,-16 + 6968: -22,-17 + 7063: 19,4 + 7064: 19,5 + 7065: 19,6 + 7073: 24,9 + 7111: 19,-12 + 7112: 19,-11 + 7113: 19,-10 + 7114: 26,-12 + 7115: 26,-11 + 7116: 26,-10 + 7130: 31,-11 + 7176: 31,-5 + 7189: 24,-8 + 7190: 24,-2 + 7216: 26,4 + 7217: 26,5 + 7218: 26,6 + 7222: 32,5 + 7223: 32,5 7224: 32,5 - 7225: 32,5 - 7226: 32,5 - 7312: 28,9 - 7313: 28,10 - 7314: 28,11 - 7381: 32,5 - 8003: 81,-21 - 8004: 81,-20 - 8009: 82,-19 - 8010: 82,-22 - 8011: 78,-22 - 8012: 76,-22 - 8013: 76,-19 - 8014: 78,-19 - 8028: 64,-19 - 8029: 64,-22 - 8171: 32,-10 - 8172: 32,-12 - 8184: 32,-16 - 8191: 32,-16 - 8229: 33,-7 - 8292: 41,-17 - 8293: 41,-16 - 8294: 41,-15 - 8295: 41,-14 - 8296: 41,-13 - 8297: 41,-11 - 8298: 41,-10 - 8299: 41,-9 - 8355: 39,-17 - 8379: 41,-20 - 8419: 42,-21 - 8420: 42,-19 - 8421: 42,-19 - 8443: 53,-20 - 8473: 54,-19 - 8474: 54,-21 - 8486: 56,-19 - 8487: 56,-19 - 8585: 54,-11 - 8586: 54,-29 - 8637: 63,-30 - 8638: 63,-30 - 8639: 63,-28 - 8640: 63,-28 - 8641: 63,-29 - 8642: 63,-26 - 8643: 63,-26 - 8644: 63,-27 - 8645: 63,-24 - 8646: 63,-25 - 8647: 63,-21 - 8648: 63,-18 - 8649: 63,-17 - 8650: 63,-16 - 8651: 63,-15 - 8652: 63,-15 - 8653: 63,-14 - 8654: 63,-13 - 8655: 63,-12 - 8656: 63,-11 - 8675: 63,-23 - 8676: 63,-23 - 8677: 63,-20 - 8830: 0,-23 - 8831: 0,-24 - 8832: 0,-27 - 8833: 0,-28 - 8840: -3,-25 - 8841: -3,-26 - 8857: 0,-30 - 8858: 0,-30 - 8859: 0,-31 - 8860: 0,-32 - 8861: 0,-33 - 8910: -13,-28 - 8918: -5,-28 - 8919: -5,-28 - 8920: -5,-27 - 8921: -5,-27 - 8936: -13,-23 - 8937: -6,-23 - 8938: -6,-23 - 8978: -5,-28 - 9177: 2,-65 - 9178: 2,-65 - 9254: 2,-82 - 9255: 2,-81 - 9256: 2,-80 - 9257: 2,-78 - 9258: 2,-79 - 9259: 2,-79 - 9260: 2,-74 - 9261: 2,-74 - 9262: 2,-73 - 9263: 2,-72 - 9264: 2,-71 - 9265: 2,-70 - 9266: 2,-69 - 9267: -9,-68 - 9268: -9,-67 - 9269: -9,-73 - 9270: -9,-74 - 9271: -9,-72 - 9283: -2,-71 - 9284: -2,-69 - 9285: -2,-70 - 9311: 1,-61 - 9312: 1,-59 - 9331: 0,-38 - 9332: 0,-40 - 9333: 0,-40 - 9334: 0,-41 - 9335: 0,-41 - 9336: 0,-42 - 9337: 0,-43 - 9338: 0,-45 - 9339: 0,-45 - 9340: 0,-48 - 9341: 0,-48 - 9342: 0,-49 - 9343: 0,-50 - 9344: 0,-52 - 9345: 0,-53 - 9346: 0,-54 - 9378: 0,-46 - 9379: 0,-46 - 9380: 0,-47 - 9381: 0,-55 - 9382: 0,-55 - 9383: 0,-56 - 9463: -39,-15 - 10425: 11,-52 - 10426: 11,-51 - 10427: 11,-50 - 10590: 4,-86 - 10591: 4,-86 - 10592: 4,-85 - 10593: 4,-84 - 10639: 49,-39 - 10640: 49,-40 - 10641: 49,-41 - 10642: 49,-43 - 10643: 49,-44 - 10666: 42,-42 - 11253: -58,-36 - 11254: -58,-36 - 11255: -58,-37 - 11256: -58,-37 - 11257: -58,-38 - 11274: -61,-43 - 11275: -58,-43 - 11276: -58,-43 - 11356: -6,-86 - 11357: -6,-86 - 11358: -6,-84 - 11359: -6,-85 - 11360: -6,-85 - 11361: -4,-86 - 11362: -4,-85 - 11363: -4,-85 - 11364: -4,-84 - 11365: 2,-86 - 11366: 2,-85 - 11367: 2,-84 - 11391: -12,-67 - 11392: -12,-66 - 11393: -12,-78 - 11399: -3,-48 - 11406: -3,-40 - 11407: -3,-41 - 11409: -4,-35 - 11420: -13,-30 - 11421: -13,-31 - 11422: -13,-32 - 11855: -37,-52 - 11863: -41,-55 - 11864: -41,-54 - 11865: -41,-54 - 11874: -23,-51 - 11875: -23,-51 - 11876: -23,-52 - 11877: -23,-53 - 12381: -4,-60 - 12758: -45,9 - 12760: -45,18 - 12874: -45,9 - 12876: -44,23 - 13425: -36,-62 - 14417: -46,14 - 14418: -46,12 - 14942: 6,22 - 14943: 6,23 - 14944: 6,24 - 14953: 18,23 - 14954: 18,22 - 14983: -8,22 - 14984: -8,23 - 14985: -8,24 - 15369: -8,-70 - 15418: -40,4 - 15419: -40,5 - 15420: -40,6 - 15425: -41,8 - 15426: -41,9 - 15427: -41,10 - 15428: -41,14 - 15429: -41,13 - 15430: -41,12 - 15431: -41,16 - 15432: -41,17 - 15433: -41,18 - 15434: -41,18 - 15435: -41,19 - 15436: -41,20 - 15437: -41,21 - 15814: 89,1 - 15815: 89,0 - 15825: 75,1 - 16722: -55,-13 - 16723: -55,-14 - 16724: -55,-14 - 16740: -62,-17 - 16741: -60,-17 - 16842: -52,4 - 16843: -52,5 - 16844: -52,6 - 16858: -56,-7 - 16859: -56,-9 - 17191: -46,12 - 17194: -46,14 - 17534: 7,84 - 17535: 7,83 - 17541: 8,79 - 17542: 8,78 - 17543: 8,77 - 17935: -44,23 - 18492: -17,-9 - 18493: -17,-10 - 18561: 15,-10 - 18562: 15,-9 - 18563: 15,-8 - 19900: -28,10 - 19901: -28,11 - 19902: -28,11 - 19903: -28,13 - 19904: -28,12 - 20024: -17,4 - 20025: -17,-1 - 20037: -16,0 - 20038: -16,1 - 20039: -16,2 - 20040: -16,3 - 20084: 70,25 - 20085: 70,24 - 20086: 70,23 - 20087: 70,22 - 20103: 60,25 - 20151: -21,-3 - 20152: -21,-2 - 20160: -21,4 - 20161: -21,5 - 20162: -21,6 - 20166: -18,5 - 20167: -18,3 - 20168: -18,2 - 20169: -18,2 - 20170: -18,1 - 20171: -18,0 - 20172: -18,-3 - 20173: -18,-2 - 20174: -18,-4 - 20175: -18,-4 - 20176: -18,-5 - 20177: -18,-6 - 20178: -18,-6 - 20185: -18,8 - 20186: -18,8 - 20187: -18,9 - 20188: -18,10 - 20189: -18,11 - 20190: -18,12 - 20191: -18,12 - 20192: -18,13 - 20193: -18,11 - 20194: -18,10 - 20195: -18,9 - 20196: -18,8 - 20197: -18,11 - 20198: -18,11 - 20199: -18,12 - 20200: -18,13 - 20201: -18,16 - 20202: -18,17 - 20203: -18,18 - 20204: -18,19 - 20205: -18,19 - 20206: -18,20 - 20222: -21,11 - 20223: -21,12 - 20224: -21,17 - 20225: -21,20 - 20226: -21,11 - 20227: -21,12 - 20229: -21,6 - 20230: -21,5 - 20231: -21,4 - 21382: 18,12 + 7310: 28,9 + 7311: 28,10 + 7312: 28,11 + 7379: 32,5 + 8001: 81,-21 + 8002: 81,-20 + 8007: 82,-19 + 8008: 82,-22 + 8009: 78,-22 + 8010: 76,-22 + 8011: 76,-19 + 8012: 78,-19 + 8026: 64,-19 + 8027: 64,-22 + 8169: 32,-10 + 8170: 32,-12 + 8182: 32,-16 + 8189: 32,-16 + 8227: 33,-7 + 8290: 41,-17 + 8291: 41,-16 + 8292: 41,-15 + 8293: 41,-14 + 8294: 41,-13 + 8295: 41,-11 + 8296: 41,-10 + 8297: 41,-9 + 8353: 39,-17 + 8377: 41,-20 + 8417: 42,-21 + 8418: 42,-19 + 8419: 42,-19 + 8441: 53,-20 + 8471: 54,-19 + 8472: 54,-21 + 8484: 56,-19 + 8485: 56,-19 + 8583: 54,-11 + 8584: 54,-29 + 8635: 63,-30 + 8636: 63,-30 + 8637: 63,-28 + 8638: 63,-28 + 8639: 63,-29 + 8640: 63,-26 + 8641: 63,-26 + 8642: 63,-27 + 8643: 63,-24 + 8644: 63,-25 + 8645: 63,-21 + 8646: 63,-18 + 8647: 63,-17 + 8648: 63,-16 + 8649: 63,-15 + 8650: 63,-15 + 8651: 63,-14 + 8652: 63,-13 + 8653: 63,-12 + 8654: 63,-11 + 8673: 63,-23 + 8674: 63,-23 + 8675: 63,-20 + 8828: 0,-23 + 8829: 0,-24 + 8830: 0,-27 + 8831: 0,-28 + 8838: -3,-25 + 8839: -3,-26 + 8855: 0,-30 + 8856: 0,-30 + 8857: 0,-31 + 8858: 0,-32 + 8859: 0,-33 + 8908: -13,-28 + 8916: -5,-28 + 8917: -5,-28 + 8918: -5,-27 + 8919: -5,-27 + 8934: -13,-23 + 8935: -6,-23 + 8936: -6,-23 + 8976: -5,-28 + 9175: 2,-65 + 9176: 2,-65 + 9252: 2,-82 + 9253: 2,-81 + 9254: 2,-80 + 9255: 2,-78 + 9256: 2,-79 + 9257: 2,-79 + 9258: 2,-74 + 9259: 2,-74 + 9260: 2,-73 + 9261: 2,-72 + 9262: 2,-71 + 9263: 2,-70 + 9264: 2,-69 + 9265: -9,-68 + 9266: -9,-67 + 9267: -9,-73 + 9268: -9,-74 + 9269: -9,-72 + 9281: -2,-71 + 9282: -2,-69 + 9283: -2,-70 + 9309: 1,-61 + 9310: 1,-59 + 9329: 0,-38 + 9330: 0,-40 + 9331: 0,-40 + 9332: 0,-41 + 9333: 0,-41 + 9334: 0,-42 + 9335: 0,-43 + 9336: 0,-45 + 9337: 0,-45 + 9338: 0,-48 + 9339: 0,-48 + 9340: 0,-49 + 9341: 0,-50 + 9342: 0,-52 + 9343: 0,-53 + 9344: 0,-54 + 9376: 0,-46 + 9377: 0,-46 + 9378: 0,-47 + 9379: 0,-55 + 9380: 0,-55 + 9381: 0,-56 + 9461: -39,-15 + 10423: 11,-52 + 10424: 11,-51 + 10425: 11,-50 + 10588: 4,-86 + 10589: 4,-86 + 10590: 4,-85 + 10591: 4,-84 + 10637: 49,-39 + 10638: 49,-40 + 10639: 49,-41 + 10640: 49,-43 + 10641: 49,-44 + 10664: 42,-42 + 11251: -58,-36 + 11252: -58,-36 + 11253: -58,-37 + 11254: -58,-37 + 11255: -58,-38 + 11272: -61,-43 + 11273: -58,-43 + 11274: -58,-43 + 11354: -6,-86 + 11355: -6,-86 + 11356: -6,-84 + 11357: -6,-85 + 11358: -6,-85 + 11359: -4,-86 + 11360: -4,-85 + 11361: -4,-85 + 11362: -4,-84 + 11363: 2,-86 + 11364: 2,-85 + 11365: 2,-84 + 11389: -12,-67 + 11390: -12,-66 + 11391: -12,-78 + 11397: -3,-48 + 11404: -3,-40 + 11405: -3,-41 + 11407: -4,-35 + 11418: -13,-30 + 11419: -13,-31 + 11420: -13,-32 + 11853: -37,-52 + 11861: -41,-55 + 11862: -41,-54 + 11863: -41,-54 + 11872: -23,-51 + 11873: -23,-51 + 11874: -23,-52 + 11875: -23,-53 + 12379: -4,-60 + 12756: -45,9 + 12758: -45,18 + 12872: -45,9 + 12874: -44,23 + 13423: -36,-62 + 14415: -46,14 + 14416: -46,12 + 14940: 6,22 + 14941: 6,23 + 14942: 6,24 + 14951: 18,23 + 14952: 18,22 + 14981: -8,22 + 14982: -8,23 + 14983: -8,24 + 15367: -8,-70 + 15416: -40,4 + 15417: -40,5 + 15418: -40,6 + 15423: -41,8 + 15424: -41,9 + 15425: -41,10 + 15426: -41,14 + 15427: -41,13 + 15428: -41,12 + 15429: -41,16 + 15430: -41,17 + 15431: -41,18 + 15432: -41,18 + 15433: -41,19 + 15434: -41,20 + 15435: -41,21 + 15812: 89,1 + 15813: 89,0 + 15823: 75,1 + 16720: -55,-13 + 16721: -55,-14 + 16722: -55,-14 + 16738: -62,-17 + 16739: -60,-17 + 16840: -52,4 + 16841: -52,5 + 16842: -52,6 + 16856: -56,-7 + 16857: -56,-9 + 17189: -46,12 + 17192: -46,14 + 17532: 7,84 + 17533: 7,83 + 17539: 8,79 + 17540: 8,78 + 17541: 8,77 + 17933: -44,23 + 18490: -17,-9 + 18491: -17,-10 + 18559: 15,-10 + 18560: 15,-9 + 18561: 15,-8 + 19898: -28,10 + 19899: -28,11 + 19900: -28,11 + 19901: -28,13 + 19902: -28,12 + 20022: -17,4 + 20023: -17,-1 + 20035: -16,0 + 20036: -16,1 + 20037: -16,2 + 20038: -16,3 + 20082: 70,25 + 20083: 70,24 + 20084: 70,23 + 20085: 70,22 + 20101: 60,25 + 20149: -21,-3 + 20150: -21,-2 + 20158: -21,4 + 20159: -21,5 + 20160: -21,6 + 20164: -18,5 + 20165: -18,3 + 20166: -18,2 + 20167: -18,2 + 20168: -18,1 + 20169: -18,0 + 20170: -18,-3 + 20171: -18,-2 + 20172: -18,-4 + 20173: -18,-4 + 20174: -18,-5 + 20175: -18,-6 + 20176: -18,-6 + 20183: -18,8 + 20184: -18,8 + 20185: -18,9 + 20186: -18,10 + 20187: -18,11 + 20188: -18,12 + 20189: -18,12 + 20190: -18,13 + 20191: -18,11 + 20192: -18,10 + 20193: -18,9 + 20194: -18,8 + 20195: -18,11 + 20196: -18,11 + 20197: -18,12 + 20198: -18,13 + 20199: -18,16 + 20200: -18,17 + 20201: -18,18 + 20202: -18,19 + 20203: -18,19 + 20204: -18,20 + 20220: -21,11 + 20221: -21,12 + 20222: -21,17 + 20223: -21,20 + 20224: -21,11 + 20225: -21,12 + 20227: -21,6 + 20228: -21,5 + 20229: -21,4 + 21380: 18,12 - node: cleanable: True color: '#FFFFFFFF' @@ -8489,850 +8484,850 @@ entities: 907: 28,0 919: 30,2 928: 28,-2 - 4055: -18,20 + 4053: -18,20 + 4054: -18,18 + 4055: -18,19 4056: -18,18 - 4057: -18,19 - 4058: -18,18 - 4059: -18,17 - 4060: -18,16 - 4061: -18,13 - 4062: -18,12 - 4063: -18,11 - 4064: -18,10 - 4065: -18,9 - 4066: -18,8 - 4079: -18,7 - 4080: -18,6 - 4081: -18,6 + 4057: -18,17 + 4058: -18,16 + 4059: -18,13 + 4060: -18,12 + 4061: -18,11 + 4062: -18,10 + 4063: -18,9 + 4064: -18,8 + 4077: -18,7 + 4078: -18,6 + 4079: -18,6 - node: color: '#00C9DAFF' id: BrickTileSteelLineN decals: - 8107: 26,-14 - 8108: 27,-14 - 8109: 29,-14 - 8110: 30,-14 - 8111: 28,-14 - 8112: 21,-14 - 8138: 27,-17 - 8139: 29,-17 - 8140: 31,-17 - 8159: 25,-19 + 8105: 26,-14 + 8106: 27,-14 + 8107: 29,-14 + 8108: 30,-14 + 8109: 28,-14 + 8110: 21,-14 + 8136: 27,-17 + 8137: 29,-17 + 8138: 31,-17 + 8157: 25,-19 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 3743: -27,65 - 3744: -26,65 - 3769: -28,59 - 10247: 37,-27 - 10258: 36,-26 - 10259: 36,-26 - 10680: 70,-50 - 10681: 70,-50 - 15788: 78,3 - 15792: 77,6 - 15793: 78,6 + 3741: -27,65 + 3742: -26,65 + 3767: -28,59 + 10245: 37,-27 + 10256: 36,-26 + 10257: 36,-26 + 10678: 70,-50 + 10679: 70,-50 + 15786: 78,3 + 15790: 77,6 + 15791: 78,6 - node: color: '#8BC9DAFF' id: BrickTileSteelLineN decals: - 3924: 19,63 + 3922: 19,63 - node: color: '#8CB7E8FF' id: BrickTileSteelLineN decals: - 9808: 21,-33 - 9809: 21,-31 - 10041: 25,-27 - 10052: 25,-25 - 10062: 28,-25 - 10063: 32,-25 - 10068: 30,-23 + 9806: 21,-33 + 9807: 21,-31 + 10039: 25,-27 + 10050: 25,-25 + 10060: 28,-25 + 10061: 32,-25 + 10066: 30,-23 + 10074: 30,-22 + 10075: 29,-22 10076: 30,-22 - 10077: 29,-22 - 10078: 30,-22 - 10079: 31,-22 - 10097: 28,-25 - 10098: 32,-25 - 10148: 22,-50 - 10155: 21,-46 - 10156: 21,-46 - 10157: 22,-46 - 10158: 23,-46 - 10227: 33,-47 + 10077: 31,-22 + 10095: 28,-25 + 10096: 32,-25 + 10146: 22,-50 + 10153: 21,-46 + 10154: 21,-46 + 10155: 22,-46 + 10156: 23,-46 + 10225: 33,-47 - node: color: '#B18BDAFF' id: BrickTileSteelLineN decals: - 11953: -29,-33 - 11969: -27,-26 - 11970: -28,-26 - 11974: -30,-26 - 12001: -42,-31 - 12002: -42,-31 - 12003: -38,-31 - 12004: -34,-31 - 12005: -34,-31 - 12033: -40,-27 - 12041: -36,-27 - 12059: -48,-25 - 12060: -47,-25 - 12080: -46,-24 - 12082: -46,-22 - 12121: -28,-44 - 12122: -27,-44 - 12123: -26,-44 - 12124: -25,-44 - 12174: -25,-38 - 12196: -29,-43 - 12197: -24,-43 - 12351: -20,-38 - 12352: -19,-38 - 12353: -18,-38 - 16173: -64,-45 - 16174: -66,-46 - 19793: -9,-44 - 19794: -8,-44 - 19795: -8,-44 - 19796: -7,-44 - 19797: -6,-44 + 11951: -29,-33 + 11967: -27,-26 + 11968: -28,-26 + 11972: -30,-26 + 11999: -42,-31 + 12000: -42,-31 + 12001: -38,-31 + 12002: -34,-31 + 12003: -34,-31 + 12031: -40,-27 + 12039: -36,-27 + 12057: -48,-25 + 12058: -47,-25 + 12078: -46,-24 + 12080: -46,-22 + 12119: -28,-44 + 12120: -27,-44 + 12121: -26,-44 + 12122: -25,-44 + 12172: -25,-38 + 12194: -29,-43 + 12195: -24,-43 + 12349: -20,-38 + 12350: -19,-38 + 12351: -18,-38 + 16171: -64,-45 + 16172: -66,-46 + 19791: -9,-44 + 19792: -8,-44 + 19793: -8,-44 + 19794: -7,-44 + 19795: -6,-44 - node: color: '#CEDA8BFF' id: BrickTileSteelLineN decals: - 10958: 27,-66 - 10959: 28,-66 - 10960: 29,-66 - 10961: 30,-66 - 10962: 31,-66 + 10956: 27,-66 + 10957: 28,-66 + 10958: 29,-66 + 10959: 30,-66 + 10960: 31,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelLineN decals: - 7802: 58,2 - 7803: 62,2 - 7804: 66,2 - 7835: 59,5 - 7836: 57,5 - 7837: 61,5 - 7838: 63,5 - 7839: 65,5 - 7840: 67,5 - 7846: 70,6 - 7856: 58,2 - 7857: 62,2 - 7858: 66,2 - 19318: 69,7 - 19323: 69,9 - 19328: 66,6 - 19329: 62,6 - 19340: 58,6 + 7800: 58,2 + 7801: 62,2 + 7802: 66,2 + 7833: 59,5 + 7834: 57,5 + 7835: 61,5 + 7836: 63,5 + 7837: 65,5 + 7838: 67,5 + 7844: 70,6 + 7854: 58,2 + 7855: 62,2 + 7856: 66,2 + 19316: 69,7 + 19321: 69,9 + 19326: 66,6 + 19327: 62,6 + 19338: 58,6 - node: color: '#DA8BC9FF' id: BrickTileSteelLineN decals: - 3931: 20,63 + 3929: 20,63 - node: color: '#DABC8BFF' id: BrickTileSteelLineN decals: - 3711: 12,73 - 3714: 10,83 - 3719: 10,89 - 3724: 5,91 + 3709: 12,73 + 3712: 10,83 + 3717: 10,89 + 3722: 5,91 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 20333: -24,-1 - 20345: -48,7 - 20347: -48,9 - 20348: -47,9 - 20349: -46,9 - 20362: 4,-83 - 20363: 5,-79 - 20364: 5,-73 - 20365: 5,-63 - 20376: 4,-87 - 20377: 4,-83 - 20428: 9,-77 - 20429: 8,-77 - 20437: 9,-74 - 20458: 4,-58 - 20459: 5,-58 - 20460: 6,-58 - 20474: 12,-33 - 20484: 12,-30 - 20488: 12,-33 - 20508: 2,59 - 20528: 1,65 - 20529: 2,65 - 20546: 40,2 - 20547: 40,10 - 20558: 40,13 - 20563: 42,5 - 20564: 43,5 - 20565: 44,5 - 20566: 45,5 - 20580: 36,10 - 20581: 36,12 - 20631: 73,4 - 20670: 46,10 - 20671: 47,10 - 20672: 47,10 - 20673: 48,10 - 20699: 50,1 - 20700: 51,1 - 20701: 51,1 - 20717: 52,32 - 20718: 51,32 - 20719: 53,32 - 20720: 54,32 - 20721: 55,32 - 20722: 56,32 - 20723: 57,32 - 20731: 52,20 - 20734: 57,20 - 20779: 51,14 - 20780: 47,14 - 20792: 52,13 - 20793: 53,13 - 20794: 54,13 - 20795: 55,13 - 20796: 56,13 - 20797: 57,13 - 20798: 57,13 - 20799: 58,13 - 20800: 59,13 - 20801: 51,19 - 20802: 53,19 - 20807: 46,24 - 20874: 53,10 - 20885: 51,9 - 20886: 52,9 - 20887: 54,9 - 20888: 81,10 - 20889: 84,10 - 20890: 85,10 - 20891: 82,14 - 20892: 83,14 - 20893: 85,14 - 20894: 86,14 - 20895: 88,14 - 20896: 89,14 - 20897: 90,14 - 20898: 87,14 - 20899: 84,14 - 20912: 91,15 - 20913: 92,15 - 20914: 93,15 - 20939: 82,10 - 20951: 77,10 - 21011: 73,20 - 21018: 73,23 - 21019: 74,23 - 21036: 75,24 - 21049: 69,1 - 21050: 70,1 - 21055: 65,-2 - 21069: 70,-3 - 21081: 52,-2 - 21082: 61,-2 - 21083: 47,-2 - 21089: 47,-2 - 21105: 51,-3 - 21143: 36,7 - 21144: 35,3 - 21151: 34,6 - 21152: 35,6 - 21153: 37,6 - 21233: -19,-24 - 21234: -18,-24 - 21248: 48,-7 - 21249: 49,-7 - 21250: 50,-7 - 21251: 46,-3 - 21258: 51,-6 - 21265: 47,-7 - 21277: 57,-3 - 21279: 56,-2 - 21290: 51,1 - 21291: 50,1 - 21292: 52,1 - 21293: 53,1 - 21294: 54,1 - 21295: 55,1 - 21296: 56,1 - 21297: 57,1 - 21298: 59,1 - 21299: 60,1 - 21300: 61,1 - 21301: 63,1 - 21302: 64,1 - 21303: 64,1 - 21304: 65,1 - 21305: 67,1 - 21429: 22,22 - 21430: 23,22 - 21431: 24,22 - 21432: 25,22 - 21433: 26,22 - 21434: 27,22 + 20331: -24,-1 + 20343: -48,7 + 20345: -48,9 + 20346: -47,9 + 20347: -46,9 + 20360: 4,-83 + 20361: 5,-79 + 20362: 5,-73 + 20363: 5,-63 + 20374: 4,-87 + 20375: 4,-83 + 20426: 9,-77 + 20427: 8,-77 + 20435: 9,-74 + 20456: 4,-58 + 20457: 5,-58 + 20458: 6,-58 + 20472: 12,-33 + 20482: 12,-30 + 20486: 12,-33 + 20506: 2,59 + 20526: 1,65 + 20527: 2,65 + 20544: 40,2 + 20545: 40,10 + 20556: 40,13 + 20561: 42,5 + 20562: 43,5 + 20563: 44,5 + 20564: 45,5 + 20578: 36,10 + 20579: 36,12 + 20629: 73,4 + 20668: 46,10 + 20669: 47,10 + 20670: 47,10 + 20671: 48,10 + 20697: 50,1 + 20698: 51,1 + 20699: 51,1 + 20715: 52,32 + 20716: 51,32 + 20717: 53,32 + 20718: 54,32 + 20719: 55,32 + 20720: 56,32 + 20721: 57,32 + 20729: 52,20 + 20732: 57,20 + 20777: 51,14 + 20778: 47,14 + 20790: 52,13 + 20791: 53,13 + 20792: 54,13 + 20793: 55,13 + 20794: 56,13 + 20795: 57,13 + 20796: 57,13 + 20797: 58,13 + 20798: 59,13 + 20799: 51,19 + 20800: 53,19 + 20805: 46,24 + 20872: 53,10 + 20883: 51,9 + 20884: 52,9 + 20885: 54,9 + 20886: 81,10 + 20887: 84,10 + 20888: 85,10 + 20889: 82,14 + 20890: 83,14 + 20891: 85,14 + 20892: 86,14 + 20893: 88,14 + 20894: 89,14 + 20895: 90,14 + 20896: 87,14 + 20897: 84,14 + 20910: 91,15 + 20911: 92,15 + 20912: 93,15 + 20937: 82,10 + 20949: 77,10 + 21009: 73,20 + 21016: 73,23 + 21017: 74,23 + 21034: 75,24 + 21047: 69,1 + 21048: 70,1 + 21053: 65,-2 + 21067: 70,-3 + 21079: 52,-2 + 21080: 61,-2 + 21081: 47,-2 + 21087: 47,-2 + 21103: 51,-3 + 21141: 36,7 + 21142: 35,3 + 21149: 34,6 + 21150: 35,6 + 21151: 37,6 + 21231: -19,-24 + 21232: -18,-24 + 21246: 48,-7 + 21247: 49,-7 + 21248: 50,-7 + 21249: 46,-3 + 21256: 51,-6 + 21263: 47,-7 + 21275: 57,-3 + 21277: 56,-2 + 21288: 51,1 + 21289: 50,1 + 21290: 52,1 + 21291: 53,1 + 21292: 54,1 + 21293: 55,1 + 21294: 56,1 + 21295: 57,1 + 21296: 59,1 + 21297: 60,1 + 21298: 61,1 + 21299: 63,1 + 21300: 64,1 + 21301: 64,1 + 21302: 65,1 + 21303: 67,1 + 21427: 22,22 + 21428: 23,22 + 21429: 24,22 + 21430: 25,22 + 21431: 26,22 + 21432: 27,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2230: -20,54 - 2231: -19,54 - 2232: -18,54 - 2237: -16,52 - 2238: -22,52 - 2239: -22,52 - 2313: -24,39 - 2314: -25,39 - 2315: -26,39 - 2316: -27,39 - 2379: -31,32 - 2397: -32,37 - 2736: -13,50 - 2737: -11,50 - 2738: -10,50 - 2739: -9,50 - 2740: -8,50 - 2741: -7,50 - 2742: -5,50 - 2743: -4,50 - 2758: -2,48 - 2789: -3,46 - 2793: -4,47 - 2807: -6,28 - 2820: -27,43 - 2821: -28,43 - 2822: -29,43 - 2834: -31,43 - 2841: -30,39 - 3049: -20,54 - 3050: -19,54 - 3051: -18,54 - 3052: 1,59 - 3056: -1,55 - 3059: 1,55 - 3060: 2,55 - 3061: 1,58 - 3062: 0,58 - 3063: -1,58 - 3069: -16,58 - 3070: -15,58 - 3071: -14,58 - 3072: -13,58 - 3073: -12,58 - 3074: -11,58 - 3075: -10,58 - 3076: -9,58 - 3077: -8,58 - 3356: -28,69 - 3357: -27,69 - 3358: -26,69 - 3359: -25,69 - 3360: -24,69 - 3361: -23,69 - 3362: -21,69 - 3363: -21,69 - 3364: -22,69 - 3365: -19,69 - 3366: -20,69 - 3367: -18,69 - 3368: -17,69 - 3369: -16,69 - 3370: -15,69 - 3371: -14,69 - 3414: -10,69 - 3415: -9,69 - 3416: -8,69 - 3417: -8,69 - 3418: -7,69 + 2228: -20,54 + 2229: -19,54 + 2230: -18,54 + 2235: -16,52 + 2236: -22,52 + 2237: -22,52 + 2311: -24,39 + 2312: -25,39 + 2313: -26,39 + 2314: -27,39 + 2377: -31,32 + 2395: -32,37 + 2734: -13,50 + 2735: -11,50 + 2736: -10,50 + 2737: -9,50 + 2738: -8,50 + 2739: -7,50 + 2740: -5,50 + 2741: -4,50 + 2756: -2,48 + 2787: -3,46 + 2791: -4,47 + 2805: -6,28 + 2818: -27,43 + 2819: -28,43 + 2820: -29,43 + 2832: -31,43 + 2839: -30,39 + 3047: -20,54 + 3048: -19,54 + 3049: -18,54 + 3050: 1,59 + 3054: -1,55 + 3057: 1,55 + 3058: 2,55 + 3059: 1,58 + 3060: 0,58 + 3061: -1,58 + 3067: -16,58 + 3068: -15,58 + 3069: -14,58 + 3070: -13,58 + 3071: -12,58 + 3072: -11,58 + 3073: -10,58 + 3074: -9,58 + 3075: -8,58 + 3354: -28,69 + 3355: -27,69 + 3356: -26,69 + 3357: -25,69 + 3358: -24,69 + 3359: -23,69 + 3360: -21,69 + 3361: -21,69 + 3362: -22,69 + 3363: -19,69 + 3364: -20,69 + 3365: -18,69 + 3366: -17,69 + 3367: -16,69 + 3368: -15,69 + 3369: -14,69 + 3412: -10,69 + 3413: -9,69 + 3414: -8,69 + 3415: -8,69 + 3416: -7,69 + 3417: -5,69 + 3418: -6,69 3419: -5,69 - 3420: -6,69 - 3421: -5,69 - 3422: -4,69 - 3423: -3,69 - 3441: -2,58 - 3453: 6,66 - 3545: -2,69 - 3546: -1,69 - 3547: 0,69 - 3548: 1,69 - 3549: 2,69 - 3550: 3,69 - 3551: 4,69 - 3574: -9,77 - 3576: -15,77 - 3586: -15,84 - 3587: -9,84 - 3596: -33,84 - 3597: -27,84 - 3607: -33,77 - 3608: -27,77 - 3613: 6,71 - 3668: 3,84 - 3671: 3,77 - 3684: 6,66 - 3728: -25,66 - 3734: -30,66 - 5123: 31,29 - 5126: 30,32 - 5127: 31,32 - 5128: 32,32 - 5129: 33,32 - 5130: 34,32 - 5138: 35,29 - 5374: 14,-8 - 5375: 13,-8 - 5376: 9,-8 - 5377: 7,-8 - 5378: 6,-8 - 5379: 2,-8 - 5380: 1,-8 - 5381: -2,-8 - 5382: -3,-8 - 5383: -3,-8 - 5384: -4,-8 - 5385: -5,-8 - 5386: -6,-8 - 5387: -11,-8 - 5388: -12,-8 - 5389: -14,-8 - 5390: -15,-8 - 5391: -16,-8 - 5392: -16,-8 - 5441: -29,6 - 5442: -28,6 - 5443: -28,6 - 5444: -27,6 - 5445: -27,6 - 5446: -24,6 - 5447: -24,6 - 5448: -23,6 - 5449: -23,6 - 5450: -22,6 - 5451: -22,6 - 5472: -39,6 - 5473: -38,6 - 5474: -37,6 - 5475: -35,6 - 5476: -34,6 - 5477: -34,6 - 5478: -33,6 - 5479: -32,6 - 5482: -30,6 - 5487: -41,23 - 5488: -43,23 - 5535: -20,7 - 5536: -19,7 - 5537: -18,7 - 5554: -20,-7 - 5555: -19,-7 - 5556: -18,-7 - 5622: 12,-8 - 5623: 5,-8 - 5624: 0,-8 - 5625: -7,-8 - 5626: -8,-8 - 5627: -9,-8 - 5628: -13,-8 - 5785: 9,-4 - 5786: 10,-4 - 5787: 11,-4 - 5792: 13,-4 - 5793: 14,-4 - 5804: 8,-4 - 5809: 10,-7 - 5810: 11,-7 - 5811: 8,-7 - 6095: -13,-18 - 6096: -12,-18 - 6097: -11,-18 - 6103: -10,-19 - 6104: -9,-19 - 6105: -7,-19 - 6106: -6,-19 - 6107: -5,-19 - 6108: -2,-19 - 6109: -1,-19 - 6110: 0,-19 - 6111: 2,-19 - 6112: 4,-19 - 6113: 5,-19 - 6114: 6,-19 - 6115: 3,-19 - 6116: 7,-19 - 6117: 9,-19 - 6118: 10,-19 - 6119: 11,-19 - 6135: 16,-7 - 6136: 17,-7 - 6137: 18,-7 - 6148: 16,7 - 6149: 17,7 - 6150: 18,7 - 6151: -14,-19 - 6152: -15,-19 - 6153: -16,-19 - 6264: -5,-14 - 6277: -4,-18 - 6345: 3,-14 - 6382: 8,-18 - 6399: 12,-18 - 6400: 13,-18 - 6401: 14,-18 - 6415: 13,-15 - 6416: 13,-15 - 6644: -33,3 - 6645: -32,3 - 6714: -23,3 - 6821: -42,2 - 6906: -36,7 - 6914: -36,17 - 6915: -36,17 - 6922: -36,19 - 6923: -36,19 - 6926: -26,7 - 6927: -25,7 - 6937: -23,15 - 7043: 20,6 - 7044: 21,6 - 7050: 23,6 - 7051: 24,6 - 7052: 25,6 - 7079: 21,10 - 7080: 23,10 - 7086: 22,7 - 7098: 20,-10 - 7099: 21,-10 - 7100: 23,-10 - 7101: 24,-10 - 7102: 25,-10 - 7127: 27,-10 - 7128: 28,-10 - 7129: 29,-10 - 7130: 31,-10 - 7131: 30,-10 - 7138: 22,3 - 7156: 26,2 - 7157: 27,2 - 7158: 28,2 - 7159: 29,2 - 7163: 25,-7 - 7164: 27,-7 - 7165: 26,-7 - 7175: 30,-7 - 7176: 29,-7 - 7195: 30,3 - 7203: 27,6 - 7204: 28,6 - 7205: 30,6 - 7206: 31,6 - 7207: 32,6 - 7321: 29,12 - 7322: 30,12 - 7323: 31,12 - 7324: 31,12 - 7325: 32,12 - 7997: 79,-19 - 7998: 81,-19 - 7999: 80,-19 - 8000: 80,-19 - 8001: 77,-19 - 8002: 77,-19 - 8007: 77,-22 - 8024: 65,-22 - 8026: 65,-19 - 8106: 25,-13 - 8304: 41,-8 - 8305: 41,-8 - 8306: 40,-8 - 8307: 39,-8 - 8308: 38,-8 - 8309: 34,-8 - 8310: 34,-8 - 8311: 35,-8 - 8312: 37,-8 - 8313: 36,-8 - 8352: 39,-18 - 8353: 41,-18 - 8361: 40,-19 - 8395: 43,-19 - 8396: 44,-19 - 8397: 45,-19 - 8398: 45,-19 - 8399: 48,-19 - 8400: 49,-19 - 8401: 49,-19 + 3420: -4,69 + 3421: -3,69 + 3439: -2,58 + 3451: 6,66 + 3543: -2,69 + 3544: -1,69 + 3545: 0,69 + 3546: 1,69 + 3547: 2,69 + 3548: 3,69 + 3549: 4,69 + 3572: -9,77 + 3574: -15,77 + 3584: -15,84 + 3585: -9,84 + 3594: -33,84 + 3595: -27,84 + 3605: -33,77 + 3606: -27,77 + 3611: 6,71 + 3666: 3,84 + 3669: 3,77 + 3682: 6,66 + 3726: -25,66 + 3732: -30,66 + 5121: 31,29 + 5124: 30,32 + 5125: 31,32 + 5126: 32,32 + 5127: 33,32 + 5128: 34,32 + 5136: 35,29 + 5372: 14,-8 + 5373: 13,-8 + 5374: 9,-8 + 5375: 7,-8 + 5376: 6,-8 + 5377: 2,-8 + 5378: 1,-8 + 5379: -2,-8 + 5380: -3,-8 + 5381: -3,-8 + 5382: -4,-8 + 5383: -5,-8 + 5384: -6,-8 + 5385: -11,-8 + 5386: -12,-8 + 5387: -14,-8 + 5388: -15,-8 + 5389: -16,-8 + 5390: -16,-8 + 5439: -29,6 + 5440: -28,6 + 5441: -28,6 + 5442: -27,6 + 5443: -27,6 + 5444: -24,6 + 5445: -24,6 + 5446: -23,6 + 5447: -23,6 + 5448: -22,6 + 5449: -22,6 + 5470: -39,6 + 5471: -38,6 + 5472: -37,6 + 5473: -35,6 + 5474: -34,6 + 5475: -34,6 + 5476: -33,6 + 5477: -32,6 + 5480: -30,6 + 5485: -41,23 + 5486: -43,23 + 5533: -20,7 + 5534: -19,7 + 5535: -18,7 + 5552: -20,-7 + 5553: -19,-7 + 5554: -18,-7 + 5620: 12,-8 + 5621: 5,-8 + 5622: 0,-8 + 5623: -7,-8 + 5624: -8,-8 + 5625: -9,-8 + 5626: -13,-8 + 5783: 9,-4 + 5784: 10,-4 + 5785: 11,-4 + 5790: 13,-4 + 5791: 14,-4 + 5802: 8,-4 + 5807: 10,-7 + 5808: 11,-7 + 5809: 8,-7 + 6093: -13,-18 + 6094: -12,-18 + 6095: -11,-18 + 6101: -10,-19 + 6102: -9,-19 + 6103: -7,-19 + 6104: -6,-19 + 6105: -5,-19 + 6106: -2,-19 + 6107: -1,-19 + 6108: 0,-19 + 6109: 2,-19 + 6110: 4,-19 + 6111: 5,-19 + 6112: 6,-19 + 6113: 3,-19 + 6114: 7,-19 + 6115: 9,-19 + 6116: 10,-19 + 6117: 11,-19 + 6133: 16,-7 + 6134: 17,-7 + 6135: 18,-7 + 6146: 16,7 + 6147: 17,7 + 6148: 18,7 + 6149: -14,-19 + 6150: -15,-19 + 6151: -16,-19 + 6262: -5,-14 + 6275: -4,-18 + 6343: 3,-14 + 6380: 8,-18 + 6397: 12,-18 + 6398: 13,-18 + 6399: 14,-18 + 6413: 13,-15 + 6414: 13,-15 + 6642: -33,3 + 6643: -32,3 + 6712: -23,3 + 6819: -42,2 + 6904: -36,7 + 6912: -36,17 + 6913: -36,17 + 6920: -36,19 + 6921: -36,19 + 6924: -26,7 + 6925: -25,7 + 6935: -23,15 + 7041: 20,6 + 7042: 21,6 + 7048: 23,6 + 7049: 24,6 + 7050: 25,6 + 7077: 21,10 + 7078: 23,10 + 7084: 22,7 + 7096: 20,-10 + 7097: 21,-10 + 7098: 23,-10 + 7099: 24,-10 + 7100: 25,-10 + 7125: 27,-10 + 7126: 28,-10 + 7127: 29,-10 + 7128: 31,-10 + 7129: 30,-10 + 7136: 22,3 + 7154: 26,2 + 7155: 27,2 + 7156: 28,2 + 7157: 29,2 + 7161: 25,-7 + 7162: 27,-7 + 7163: 26,-7 + 7173: 30,-7 + 7174: 29,-7 + 7193: 30,3 + 7201: 27,6 + 7202: 28,6 + 7203: 30,6 + 7204: 31,6 + 7205: 32,6 + 7319: 29,12 + 7320: 30,12 + 7321: 31,12 + 7322: 31,12 + 7323: 32,12 + 7995: 79,-19 + 7996: 81,-19 + 7997: 80,-19 + 7998: 80,-19 + 7999: 77,-19 + 8000: 77,-19 + 8005: 77,-22 + 8022: 65,-22 + 8024: 65,-19 + 8104: 25,-13 + 8302: 41,-8 + 8303: 41,-8 + 8304: 40,-8 + 8305: 39,-8 + 8306: 38,-8 + 8307: 34,-8 + 8308: 34,-8 + 8309: 35,-8 + 8310: 37,-8 + 8311: 36,-8 + 8350: 39,-18 + 8351: 41,-18 + 8359: 40,-19 + 8393: 43,-19 + 8394: 44,-19 + 8395: 45,-19 + 8396: 45,-19 + 8397: 48,-19 + 8398: 49,-19 + 8399: 49,-19 + 8400: 50,-19 + 8401: 50,-19 8402: 50,-19 8403: 50,-19 - 8404: 50,-19 - 8405: 50,-19 - 8406: 51,-19 - 8407: 51,-19 - 8408: 53,-19 - 8409: 53,-19 - 8429: 44,-22 - 8430: 44,-22 - 8431: 48,-22 - 8432: 48,-22 - 8433: 52,-22 - 8658: 62,-10 - 8659: 57,-10 - 8662: 58,-11 - 8663: 59,-11 - 8664: 60,-11 - 8665: 56,-10 - 8796: -14,-22 - 8797: -13,-22 - 8798: -7,-22 - 8799: -7,-22 - 8800: -6,-22 - 8801: -2,-22 - 8802: -2,-22 - 8803: -1,-22 - 8804: 0,-22 - 8805: 4,-22 - 8806: 5,-22 - 8807: 11,-22 - 8808: 12,-22 - 8827: -2,-29 - 8828: -1,-29 - 8829: 0,-29 - 8874: -2,-37 - 8875: -1,-37 - 8876: 0,-37 - 8877: 0,-37 - 8922: -12,-24 - 8923: -11,-24 - 8924: -11,-24 - 8925: -10,-24 - 8926: -10,-24 - 8927: -9,-24 - 8928: -8,-24 - 8929: -16,-24 - 8930: -15,-24 - 8931: -5,-24 - 8932: -4,-24 - 8974: -4,-24 - 9175: 1,-64 - 9176: 1,-64 - 9205: -8,-64 - 9206: -8,-64 - 9207: -7,-64 - 9208: -7,-64 - 9209: -6,-64 - 9210: -6,-64 - 9211: -5,-64 - 9212: -5,-64 - 9213: -4,-64 - 9214: -4,-64 - 9215: -3,-64 - 9216: -9,-64 - 9272: -8,-75 - 9273: -7,-75 - 9274: -6,-75 - 9275: -2,-75 - 9276: -1,-75 - 9277: -3,-75 - 9278: -8,-69 - 9279: -8,-69 - 9280: -1,-69 - 9302: -2,-63 - 9303: -1,-63 - 9304: 0,-63 - 9387: -2,-57 - 9388: -1,-57 - 9389: -1,-57 - 9390: 0,-57 - 9454: -40,-14 - 9455: -41,-14 - 9456: -41,-14 - 10397: 3,-50 - 10398: 4,-50 - 10399: 4,-50 - 10400: 8,-50 - 10401: 9,-50 - 10402: 9,-50 - 10403: 10,-50 - 10404: 11,-50 - 10585: 4,-87 - 10610: 55,-43 - 10634: 44,-38 - 10635: 45,-38 - 10636: 46,-38 - 10637: 47,-38 - 10638: 48,-38 - 10663: 45,-46 - 11317: -77,-23 - 11334: -11,-79 - 11335: -6,-83 - 11336: -4,-83 - 11338: 2,-83 - 11343: -6,-87 - 11344: -4,-87 - 11345: 2,-87 - 11346: 2,-87 - 11427: -14,-30 - 11430: -15,-33 - 11431: -13,-33 - 11659: -15,-33 - 11660: -13,-33 - 11843: -39,-57 - 11844: -41,-51 - 11845: -41,-51 - 11846: -40,-51 - 11847: -40,-51 - 11848: -38,-51 - 11849: -38,-51 - 11873: -25,-50 - 12794: 5,70 - 12795: 6,70 - 12796: 7,70 - 12797: -7,66 - 12798: -6,66 - 12799: -5,66 - 12800: -4,66 - 12801: -3,66 - 12829: -7,59 - 12830: -6,59 - 12831: -4,59 - 12832: -4,59 - 12833: -3,59 - 12834: -5,59 - 12835: -20,59 - 12836: -21,59 - 12837: -19,59 - 12838: -19,59 - 12839: -17,59 - 12840: -18,59 - 12860: -13,70 - 12861: -12,70 - 12862: -11,70 - 12863: -29,70 - 12864: -30,70 - 12865: -31,70 - 12866: -21,66 - 12867: -20,66 - 12868: -19,66 - 12869: -18,66 - 12870: -18,66 - 12871: -17,66 - 12872: -17,66 - 13422: -37,-64 - 14465: -17,24 - 14466: -16,24 - 14467: -15,24 - 14468: -14,24 - 14469: -13,24 - 14470: -12,24 - 14471: -11,24 - 14472: -10,24 - 14929: -7,24 - 14930: -6,24 - 14931: -5,24 - 14932: -4,24 - 14933: -3,24 - 14934: -2,24 - 14935: -1,24 - 14936: 1,24 - 14937: 2,24 - 14938: 3,24 - 14945: 9,24 - 14946: 10,24 - 14947: 11,24 - 14948: 12,24 - 14949: 12,24 - 14950: 13,24 - 14951: 17,24 - 14952: 18,24 - 14973: -20,21 - 14974: -19,21 - 14975: -18,21 - 15042: 16,21 - 15043: 17,21 - 15044: 18,21 - 15373: -5,-75 - 15374: -4,-75 - 15422: -43,7 - 15423: -42,7 - 15424: -41,7 - 15601: 77,2 - 15799: 79,2 - 15800: 80,2 - 15801: 81,2 - 15802: 82,2 - 15803: 83,2 - 15804: 87,2 - 15805: 88,2 - 15806: 89,2 - 15808: 81,-1 - 15809: 85,-1 - 15810: 89,-1 - 15811: 84,2 - 15812: 85,2 - 15813: 86,2 - 16407: -60,-48 - 16698: -60,-12 - 16699: -59,-12 - 16700: -57,-12 - 16726: -56,-12 - 16730: -58,-11 - 16733: -56,-19 - 16736: -56,-19 - 16737: -54,-19 - 16743: -61,-17 - 16787: -58,-5 - 16820: -53,3 - 16821: -52,3 - 16822: -53,7 - 16823: -52,7 - 16834: -53,3 - 16835: -52,3 - 16838: -53,7 - 16839: -52,7 - 16851: -50,-1 - 17937: -45,23 - 18440: -60,-44 - 18449: -60,-44 - 18478: -13,-12 - 18479: -13,-12 - 18480: -15,-12 - 18481: -11,-12 - 18482: -12,-12 - 18512: -14,-11 - 18513: -10,-11 - 18546: 8,-11 - 18548: 7,-12 - 18549: 9,-12 - 18809: 4,-8 - 18810: 3,-8 - 19916: -27,9 - 19917: -26,9 - 19918: -25,9 - 19919: -25,9 - 19920: -24,9 - 19921: -24,9 - 19926: -24,15 - 19927: -28,15 - 19928: -27,15 - 20042: -16,4 - 20082: 70,26 - 20083: 69,26 - 20110: 63,26 - 20111: 68,26 - 20179: -20,-7 - 20180: -19,-7 - 20181: -18,-7 - 20182: -20,7 - 20183: -19,7 - 20184: -18,7 - 21384: 22,10 + 8404: 51,-19 + 8405: 51,-19 + 8406: 53,-19 + 8407: 53,-19 + 8427: 44,-22 + 8428: 44,-22 + 8429: 48,-22 + 8430: 48,-22 + 8431: 52,-22 + 8656: 62,-10 + 8657: 57,-10 + 8660: 58,-11 + 8661: 59,-11 + 8662: 60,-11 + 8663: 56,-10 + 8794: -14,-22 + 8795: -13,-22 + 8796: -7,-22 + 8797: -7,-22 + 8798: -6,-22 + 8799: -2,-22 + 8800: -2,-22 + 8801: -1,-22 + 8802: 0,-22 + 8803: 4,-22 + 8804: 5,-22 + 8805: 11,-22 + 8806: 12,-22 + 8825: -2,-29 + 8826: -1,-29 + 8827: 0,-29 + 8872: -2,-37 + 8873: -1,-37 + 8874: 0,-37 + 8875: 0,-37 + 8920: -12,-24 + 8921: -11,-24 + 8922: -11,-24 + 8923: -10,-24 + 8924: -10,-24 + 8925: -9,-24 + 8926: -8,-24 + 8927: -16,-24 + 8928: -15,-24 + 8929: -5,-24 + 8930: -4,-24 + 8972: -4,-24 + 9173: 1,-64 + 9174: 1,-64 + 9203: -8,-64 + 9204: -8,-64 + 9205: -7,-64 + 9206: -7,-64 + 9207: -6,-64 + 9208: -6,-64 + 9209: -5,-64 + 9210: -5,-64 + 9211: -4,-64 + 9212: -4,-64 + 9213: -3,-64 + 9214: -9,-64 + 9270: -8,-75 + 9271: -7,-75 + 9272: -6,-75 + 9273: -2,-75 + 9274: -1,-75 + 9275: -3,-75 + 9276: -8,-69 + 9277: -8,-69 + 9278: -1,-69 + 9300: -2,-63 + 9301: -1,-63 + 9302: 0,-63 + 9385: -2,-57 + 9386: -1,-57 + 9387: -1,-57 + 9388: 0,-57 + 9452: -40,-14 + 9453: -41,-14 + 9454: -41,-14 + 10395: 3,-50 + 10396: 4,-50 + 10397: 4,-50 + 10398: 8,-50 + 10399: 9,-50 + 10400: 9,-50 + 10401: 10,-50 + 10402: 11,-50 + 10583: 4,-87 + 10608: 55,-43 + 10632: 44,-38 + 10633: 45,-38 + 10634: 46,-38 + 10635: 47,-38 + 10636: 48,-38 + 10661: 45,-46 + 11315: -77,-23 + 11332: -11,-79 + 11333: -6,-83 + 11334: -4,-83 + 11336: 2,-83 + 11341: -6,-87 + 11342: -4,-87 + 11343: 2,-87 + 11344: 2,-87 + 11425: -14,-30 + 11428: -15,-33 + 11429: -13,-33 + 11657: -15,-33 + 11658: -13,-33 + 11841: -39,-57 + 11842: -41,-51 + 11843: -41,-51 + 11844: -40,-51 + 11845: -40,-51 + 11846: -38,-51 + 11847: -38,-51 + 11871: -25,-50 + 12792: 5,70 + 12793: 6,70 + 12794: 7,70 + 12795: -7,66 + 12796: -6,66 + 12797: -5,66 + 12798: -4,66 + 12799: -3,66 + 12827: -7,59 + 12828: -6,59 + 12829: -4,59 + 12830: -4,59 + 12831: -3,59 + 12832: -5,59 + 12833: -20,59 + 12834: -21,59 + 12835: -19,59 + 12836: -19,59 + 12837: -17,59 + 12838: -18,59 + 12858: -13,70 + 12859: -12,70 + 12860: -11,70 + 12861: -29,70 + 12862: -30,70 + 12863: -31,70 + 12864: -21,66 + 12865: -20,66 + 12866: -19,66 + 12867: -18,66 + 12868: -18,66 + 12869: -17,66 + 12870: -17,66 + 13420: -37,-64 + 14463: -17,24 + 14464: -16,24 + 14465: -15,24 + 14466: -14,24 + 14467: -13,24 + 14468: -12,24 + 14469: -11,24 + 14470: -10,24 + 14927: -7,24 + 14928: -6,24 + 14929: -5,24 + 14930: -4,24 + 14931: -3,24 + 14932: -2,24 + 14933: -1,24 + 14934: 1,24 + 14935: 2,24 + 14936: 3,24 + 14943: 9,24 + 14944: 10,24 + 14945: 11,24 + 14946: 12,24 + 14947: 12,24 + 14948: 13,24 + 14949: 17,24 + 14950: 18,24 + 14971: -20,21 + 14972: -19,21 + 14973: -18,21 + 15040: 16,21 + 15041: 17,21 + 15042: 18,21 + 15371: -5,-75 + 15372: -4,-75 + 15420: -43,7 + 15421: -42,7 + 15422: -41,7 + 15599: 77,2 + 15797: 79,2 + 15798: 80,2 + 15799: 81,2 + 15800: 82,2 + 15801: 83,2 + 15802: 87,2 + 15803: 88,2 + 15804: 89,2 + 15806: 81,-1 + 15807: 85,-1 + 15808: 89,-1 + 15809: 84,2 + 15810: 85,2 + 15811: 86,2 + 16405: -60,-48 + 16696: -60,-12 + 16697: -59,-12 + 16698: -57,-12 + 16724: -56,-12 + 16728: -58,-11 + 16731: -56,-19 + 16734: -56,-19 + 16735: -54,-19 + 16741: -61,-17 + 16785: -58,-5 + 16818: -53,3 + 16819: -52,3 + 16820: -53,7 + 16821: -52,7 + 16832: -53,3 + 16833: -52,3 + 16836: -53,7 + 16837: -52,7 + 16849: -50,-1 + 17935: -45,23 + 18438: -60,-44 + 18447: -60,-44 + 18476: -13,-12 + 18477: -13,-12 + 18478: -15,-12 + 18479: -11,-12 + 18480: -12,-12 + 18510: -14,-11 + 18511: -10,-11 + 18544: 8,-11 + 18546: 7,-12 + 18547: 9,-12 + 18807: 4,-8 + 18808: 3,-8 + 19914: -27,9 + 19915: -26,9 + 19916: -25,9 + 19917: -25,9 + 19918: -24,9 + 19919: -24,9 + 19924: -24,15 + 19925: -28,15 + 19926: -27,15 + 20040: -16,4 + 20080: 70,26 + 20081: 69,26 + 20108: 63,26 + 20109: 68,26 + 20177: -20,-7 + 20178: -19,-7 + 20179: -18,-7 + 20180: -20,7 + 20181: -19,7 + 20182: -18,7 + 21382: 22,10 - node: cleanable: True color: '#FFFFFFFF' @@ -9342,870 +9337,870 @@ entities: 898: 26,-2 917: 29,1 926: 27,-2 - 4052: -20,25 - 4053: -19,25 - 4054: -18,25 - 4120: 4,25 - 4121: 5,25 - 4122: 7,25 - 4123: 8,25 + 4050: -20,25 + 4051: -19,25 + 4052: -18,25 + 4118: 4,25 + 4119: 5,25 + 4120: 7,25 + 4121: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineS decals: - 8120: 21,-16 - 8121: 26,-16 - 8122: 28,-16 - 8128: 25,-13 - 8130: 30,-16 - 8135: 27,-17 - 8136: 29,-17 - 8137: 31,-17 + 8118: 21,-16 + 8119: 26,-16 + 8120: 28,-16 + 8126: 25,-13 + 8128: 30,-16 + 8133: 27,-17 + 8134: 29,-17 + 8135: 31,-17 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 3736: -25,65 - 3747: -25,66 - 3767: -27,60 - 10248: 37,-25 - 10257: 36,-26 - 10679: 70,-50 - 15784: 77,4 - 15785: 77,4 + 3734: -25,65 + 3745: -25,66 + 3765: -27,60 + 10246: 37,-25 + 10255: 36,-26 + 10677: 70,-50 + 15782: 77,4 + 15783: 77,4 - node: color: '#8BC9DAFF' id: BrickTileSteelLineS decals: - 3687: 6,66 - 3928: 20,61 + 3685: 6,66 + 3926: 20,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineS decals: - 10146: 21,-49 - 10147: 23,-49 - 10221: 33,-53 + 10144: 21,-49 + 10145: 23,-49 + 10219: 33,-53 - node: color: '#A9DA8BFF' id: BrickTileSteelLineS decals: - 2864: -25,47 + 2862: -25,47 - node: color: '#B18BDAFF' id: BrickTileSteelLineS decals: - 11957: -30,-32 - 11958: -28,-32 - 11959: -27,-32 - 12006: -42,-25 - 12007: -38,-25 - 12008: -34,-25 - 12027: -36,-29 - 12028: -40,-29 - 12056: -46,-24 - 12065: -48,-31 - 12066: -47,-31 - 12067: -46,-31 - 12079: -47,-23 - 12111: -28,-47 - 12112: -27,-47 - 12113: -26,-47 - 12114: -25,-47 - 12127: -29,-43 - 12128: -24,-43 - 12173: -25,-42 - 12190: -29,-37 - 12191: -24,-37 - 16166: -65,-48 - 16167: -64,-48 - 16168: -62,-48 - 19798: -9,-40 - 19799: -8,-40 - 19800: -7,-40 - 19801: -7,-40 - 19802: -6,-40 - 19823: -9,-39 - 19824: -8,-39 - 19825: -8,-39 - 19826: -7,-39 - 19827: -6,-39 - 19830: -9,-40 - 19831: -8,-40 - 19832: -7,-40 - 19833: -7,-40 - 19834: -6,-40 - 19836: -29,-25 + 11955: -30,-32 + 11956: -28,-32 + 11957: -27,-32 + 12004: -42,-25 + 12005: -38,-25 + 12006: -34,-25 + 12025: -36,-29 + 12026: -40,-29 + 12054: -46,-24 + 12063: -48,-31 + 12064: -47,-31 + 12065: -46,-31 + 12077: -47,-23 + 12109: -28,-47 + 12110: -27,-47 + 12111: -26,-47 + 12112: -25,-47 + 12125: -29,-43 + 12126: -24,-43 + 12171: -25,-42 + 12188: -29,-37 + 12189: -24,-37 + 16164: -65,-48 + 16165: -64,-48 + 16166: -62,-48 + 19796: -9,-40 + 19797: -8,-40 + 19798: -7,-40 + 19799: -7,-40 + 19800: -6,-40 + 19821: -9,-39 + 19822: -8,-39 + 19823: -8,-39 + 19824: -7,-39 + 19825: -6,-39 + 19828: -9,-40 + 19829: -8,-40 + 19830: -7,-40 + 19831: -7,-40 + 19832: -6,-40 + 19834: -29,-25 - node: color: '#CEDA8BFF' id: BrickTileSteelLineS decals: - 10963: 27,-70 - 10964: 28,-70 - 10965: 29,-70 - 10966: 30,-70 - 10967: 31,-70 + 10961: 27,-70 + 10962: 28,-70 + 10963: 29,-70 + 10964: 30,-70 + 10965: 31,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelLineS decals: - 7817: 68,5 - 7818: 69,5 - 7819: 70,5 - 7848: 66,6 - 7849: 69,7 - 7850: 62,6 - 7851: 58,6 - 19287: 57,4 - 19288: 59,4 - 19289: 61,4 - 19290: 63,4 - 19291: 65,4 + 7815: 68,5 + 7816: 69,5 + 7817: 70,5 + 7846: 66,6 + 7847: 69,7 + 7848: 62,6 + 7849: 58,6 + 19285: 57,4 + 19286: 59,4 + 19287: 61,4 + 19288: 63,4 + 19289: 65,4 - node: color: '#DA8BC9FF' id: BrickTileSteelLineS decals: - 3932: 21,61 + 3930: 21,61 - node: color: '#DAA58BFF' id: BrickTileSteelLineS decals: - 4526: 10,38 - 4527: 5,38 + 4524: 10,38 + 4525: 5,38 - node: color: '#DABC8BFF' id: BrickTileSteelLineS decals: - 3654: 6,86 - 3713: 10,83 - 3717: 10,89 - 3722: 10,91 - 3723: 5,93 + 3652: 6,86 + 3711: 10,83 + 3715: 10,89 + 3720: 10,91 + 3721: 5,93 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 20334: -23,3 - 20341: -23,0 - 20342: -47,8 - 20361: 5,-82 - 20366: 7,-57 - 20367: 5,-63 - 20368: 5,-73 - 20369: 5,-79 - 20378: 4,-83 - 20385: 5,-79 - 20422: 4,-62 - 20423: 6,-62 - 20424: 7,-62 - 20425: 9,-75 - 20426: 8,-75 - 20427: 9,-78 - 20476: 13,-29 - 20481: 11,-29 - 20485: 11,-32 - 20486: 13,-32 - 20494: 11,-29 - 20495: 13,-29 - 20496: 13,33 - 20502: 12,30 - 20523: 3,60 - 20524: 1,60 - 20539: 41,3 - 20540: 42,3 - 20541: 43,3 - 20542: 44,3 - 20543: 45,3 - 20572: 40,10 - 20579: 36,10 - 20589: 37,8 - 20590: 36,4 - 20591: 37,4 - 20592: 48,-1 - 20593: 50,-1 - 20594: 51,-1 - 20595: 53,-1 - 20596: 54,-1 - 20597: 55,-1 - 20598: 58,-1 - 20599: 59,-1 - 20600: 60,-1 - 20601: 62,-1 - 20602: 63,-1 - 20603: 64,-1 - 20604: 66,-1 - 20605: 67,-1 - 20606: 72,-1 - 20607: 73,-1 - 20630: 73,4 - 20634: 74,21 - 20635: 75,21 - 20636: 76,21 - 20681: 46,10 - 20682: 47,10 - 20683: 48,10 - 20684: 80,9 - 20685: 82,9 - 20686: 82,9 - 20687: 83,9 - 20688: 84,9 - 20689: 81,9 - 20690: 85,9 - 20691: 86,9 - 20732: 52,20 - 20733: 57,20 - 20746: 51,21 - 20747: 50,21 + 20332: -23,3 + 20339: -23,0 + 20340: -47,8 + 20359: 5,-82 + 20364: 7,-57 + 20365: 5,-63 + 20366: 5,-73 + 20367: 5,-79 + 20376: 4,-83 + 20383: 5,-79 + 20420: 4,-62 + 20421: 6,-62 + 20422: 7,-62 + 20423: 9,-75 + 20424: 8,-75 + 20425: 9,-78 + 20474: 13,-29 + 20479: 11,-29 + 20483: 11,-32 + 20484: 13,-32 + 20492: 11,-29 + 20493: 13,-29 + 20494: 13,33 + 20500: 12,30 + 20521: 3,60 + 20522: 1,60 + 20537: 41,3 + 20538: 42,3 + 20539: 43,3 + 20540: 44,3 + 20541: 45,3 + 20570: 40,10 + 20577: 36,10 + 20587: 37,8 + 20588: 36,4 + 20589: 37,4 + 20590: 48,-1 + 20591: 50,-1 + 20592: 51,-1 + 20593: 53,-1 + 20594: 54,-1 + 20595: 55,-1 + 20596: 58,-1 + 20597: 59,-1 + 20598: 60,-1 + 20599: 62,-1 + 20600: 63,-1 + 20601: 64,-1 + 20602: 66,-1 + 20603: 67,-1 + 20604: 72,-1 + 20605: 73,-1 + 20628: 73,4 + 20632: 74,21 + 20633: 75,21 + 20634: 76,21 + 20679: 46,10 + 20680: 47,10 + 20681: 48,10 + 20682: 80,9 + 20683: 82,9 + 20684: 82,9 + 20685: 83,9 + 20686: 84,9 + 20687: 81,9 + 20688: 85,9 + 20689: 86,9 + 20730: 52,20 + 20731: 57,20 + 20744: 51,21 + 20745: 50,21 + 20746: 54,21 + 20747: 53,21 20748: 54,21 - 20749: 53,21 - 20750: 54,21 - 20751: 55,21 - 20752: 56,21 - 20753: 58,21 - 20778: 51,14 - 20781: 47,14 - 20784: 51,11 - 20785: 52,11 - 20786: 54,11 - 20787: 55,11 - 20788: 56,11 - 20789: 57,11 - 20790: 58,11 - 20791: 59,11 - 20816: 46,15 - 20854: 52,15 - 20855: 53,15 - 20859: 52,20 - 20860: 51,14 - 20873: 53,10 - 20915: 91,15 - 20916: 92,15 - 20917: 93,15 - 20922: 84,12 + 20749: 55,21 + 20750: 56,21 + 20751: 58,21 + 20776: 51,14 + 20779: 47,14 + 20782: 51,11 + 20783: 52,11 + 20784: 54,11 + 20785: 55,11 + 20786: 56,11 + 20787: 57,11 + 20788: 58,11 + 20789: 59,11 + 20814: 46,15 + 20852: 52,15 + 20853: 53,15 + 20857: 52,20 + 20858: 51,14 + 20871: 53,10 + 20913: 91,15 + 20914: 92,15 + 20915: 93,15 + 20920: 84,12 + 20921: 85,12 + 20922: 85,12 20923: 85,12 - 20924: 85,12 - 20925: 85,12 - 20926: 87,12 - 20927: 88,12 - 20928: 90,12 - 20929: 91,12 - 20930: 91,12 - 20931: 92,12 - 20932: 89,12 - 20933: 86,12 - 20936: 82,12 - 20941: 83,11 - 20952: 77,8 - 20984: 70,-1 - 20985: 69,-5 - 20986: 70,-5 - 20992: 66,2 - 20993: 62,2 - 20994: 58,2 + 20924: 87,12 + 20925: 88,12 + 20926: 90,12 + 20927: 91,12 + 20928: 91,12 + 20929: 92,12 + 20930: 89,12 + 20931: 86,12 + 20934: 82,12 + 20939: 83,11 + 20950: 77,8 + 20982: 70,-1 + 20983: 69,-5 + 20984: 70,-5 + 20990: 66,2 + 20991: 62,2 + 20992: 58,2 + 21008: 73,20 21010: 73,20 - 21012: 73,20 - 21034: 75,24 - 21035: 75,26 - 21075: 69,-2 - 21084: 47,-2 - 21090: 47,-2 - 21093: 52,-2 - 21094: 52,-5 - 21095: 56,-5 - 21096: 57,-5 - 21133: 40,2 - 21134: 40,-1 - 21145: 36,7 - 21146: 34,4 - 21186: 51,3 - 21187: 52,3 - 21188: 53,3 - 21189: 54,3 - 21203: 58,2 - 21204: 62,2 - 21205: 66,2 - 21220: 76,-4 - 21242: -19,-28 - 21252: 46,-5 - 21253: 47,-5 - 21261: 51,-6 - 21266: 47,-9 - 21267: 48,-9 - 21268: 49,-9 - 21269: 50,-9 - 21278: 56,-2 - 21282: 57,-1 - 21426: 21,23 - 21435: 21,21 - 21436: 22,21 - 21437: 23,21 - 21438: 24,21 - 21439: 25,21 - 21440: 26,21 - 21441: 26,21 - 21442: 27,21 + 21032: 75,24 + 21033: 75,26 + 21073: 69,-2 + 21082: 47,-2 + 21088: 47,-2 + 21091: 52,-2 + 21092: 52,-5 + 21093: 56,-5 + 21094: 57,-5 + 21131: 40,2 + 21132: 40,-1 + 21143: 36,7 + 21144: 34,4 + 21184: 51,3 + 21185: 52,3 + 21186: 53,3 + 21187: 54,3 + 21201: 58,2 + 21202: 62,2 + 21203: 66,2 + 21218: 76,-4 + 21240: -19,-28 + 21250: 46,-5 + 21251: 47,-5 + 21259: 51,-6 + 21264: 47,-9 + 21265: 48,-9 + 21266: 49,-9 + 21267: 50,-9 + 21276: 56,-2 + 21280: 57,-1 + 21424: 21,23 + 21433: 21,21 + 21434: 22,21 + 21435: 23,21 + 21436: 24,21 + 21437: 25,21 + 21438: 26,21 + 21439: 26,21 + 21440: 27,21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2224: -20,54 + 2222: -20,54 + 2223: -19,54 + 2224: -19,54 2225: -19,54 - 2226: -19,54 - 2227: -19,54 - 2228: -18,54 - 2229: -18,54 - 2234: -21,55 - 2294: -22,28 - 2295: -22,28 - 2299: -21,26 - 2318: -24,30 - 2321: -26,29 - 2382: -31,38 - 2392: -32,33 - 2744: -13,48 - 2745: -12,48 - 2746: -11,48 - 2747: -10,48 - 2748: -9,48 - 2749: -8,48 - 2750: -7,48 - 2751: -6,48 - 2752: -5,48 - 2753: -3,48 - 2754: -2,48 - 2762: -12,51 - 2763: -6,51 - 2782: -3,44 - 2794: -4,47 - 2805: -6,26 - 2825: -30,44 - 2826: -29,41 - 2827: -28,41 - 2828: -27,41 - 2829: -26,41 - 2832: -31,40 - 2833: -32,40 - 2838: -30,44 - 3033: -16,56 - 3034: -15,56 - 3035: -14,56 - 3036: -13,56 - 3037: -12,56 - 3038: -11,56 - 3039: -10,56 - 3040: -9,56 - 3041: -8,56 - 3042: -7,56 - 3043: -6,56 - 3044: -5,56 - 3045: -4,56 - 3046: -3,56 - 3053: 0,56 - 3054: -2,56 - 3172: -16,67 - 3173: -15,67 - 3174: -14,67 - 3175: -13,67 - 3176: -12,67 - 3177: -11,67 - 3178: -10,67 - 3179: -9,67 - 3180: -8,67 - 3426: -31,67 - 3427: -29,67 - 3428: -28,67 - 3429: -27,67 - 3430: -26,67 - 3431: -24,67 - 3432: -23,67 - 3433: -22,67 - 3440: 2,59 - 3452: -2,67 - 3536: -1,67 - 3537: 1,67 - 3538: 0,67 - 3539: 2,67 - 3540: 3,67 - 3541: 4,67 - 3542: 5,67 - 3543: 7,67 - 3575: -15,77 - 3577: -9,77 - 3584: -15,84 - 3585: -9,84 - 3588: -12,97 - 3595: -27,84 - 3598: -33,84 - 3605: -33,77 - 3606: -27,77 - 3669: 3,84 - 3670: 3,77 - 4457: 14,25 - 4458: 15,25 - 4459: 16,25 - 5120: 31,29 - 5131: 30,30 - 5135: 32,30 - 5136: 33,30 - 5137: 34,30 - 5141: 36,30 - 5145: 35,33 - 5149: 35,29 - 5440: -24,4 - 5453: -31,4 - 5454: -30,4 - 5455: -30,4 - 5456: -29,4 - 5457: -28,4 - 5458: -26,4 - 5459: -25,4 - 5460: -27,4 - 5463: -22,4 - 5464: -35,4 - 5465: -36,4 - 5466: -38,4 - 5467: -39,4 - 5468: -37,4 - 5469: -34,4 - 5538: -20,7 - 5539: -19,7 - 5540: -18,7 - 5551: -20,-7 - 5552: -19,-7 - 5553: -18,-7 - 5651: 10,-7 - 5652: 11,-7 - 5653: 8,-7 - 5789: 12,-3 - 5798: 13,-6 - 5799: 12,-6 - 5800: 9,-6 - 5812: -1,-7 - 5818: -10,-7 - 6080: -15,-17 - 6081: -14,-17 - 6088: -10,-17 - 6098: -13,-18 - 6099: -12,-18 - 6100: -11,-18 - 6138: 16,-7 - 6139: 17,-7 - 6140: 18,-7 - 6145: 16,7 - 6146: 17,7 - 6147: 18,7 - 6160: -16,-21 - 6161: -15,-21 - 6162: -12,-21 - 6163: -11,-21 - 6164: -10,-21 - 6165: -9,-21 - 6166: -9,-21 - 6167: -8,-21 - 6168: -5,-21 - 6169: -4,-21 - 6268: -5,-17 - 6269: -4,-13 - 6278: -4,-18 - 6293: 2,-21 - 6294: 3,-21 - 6295: 6,-21 - 6296: 7,-21 - 6297: 8,-21 - 6298: 9,-21 - 6299: 10,-21 - 6300: 13,-21 - 6301: 14,-21 - 6321: 16,-21 - 6322: 17,-21 - 6346: 2,-13 - 6348: 3,-17 - 6349: 2,-17 - 6378: 9,-17 - 6379: 7,-17 - 6395: 12,-18 - 6396: 13,-18 - 6397: 13,-18 - 6398: 14,-18 - 6417: 8,-18 - 6442: -18,-21 - 6443: -19,-21 - 6444: -19,-21 - 6802: -26,7 - 6803: -25,7 - 6804: -31,7 - 6805: -36,7 - 6822: -37,8 - 6913: -36,17 - 6928: -24,8 - 6929: -23,8 - 6940: -26,16 - 6941: -26,16 - 6960: -27,8 - 6961: -27,8 - 7045: 20,4 - 7046: 21,4 - 7047: 23,4 - 7048: 24,4 - 7049: 25,4 - 7071: 21,8 - 7072: 23,8 - 7085: 22,7 - 7103: 20,-12 - 7104: 21,-12 + 2226: -18,54 + 2227: -18,54 + 2232: -21,55 + 2292: -22,28 + 2293: -22,28 + 2297: -21,26 + 2316: -24,30 + 2319: -26,29 + 2380: -31,38 + 2390: -32,33 + 2742: -13,48 + 2743: -12,48 + 2744: -11,48 + 2745: -10,48 + 2746: -9,48 + 2747: -8,48 + 2748: -7,48 + 2749: -6,48 + 2750: -5,48 + 2751: -3,48 + 2752: -2,48 + 2760: -12,51 + 2761: -6,51 + 2780: -3,44 + 2792: -4,47 + 2803: -6,26 + 2823: -30,44 + 2824: -29,41 + 2825: -28,41 + 2826: -27,41 + 2827: -26,41 + 2830: -31,40 + 2831: -32,40 + 2836: -30,44 + 3031: -16,56 + 3032: -15,56 + 3033: -14,56 + 3034: -13,56 + 3035: -12,56 + 3036: -11,56 + 3037: -10,56 + 3038: -9,56 + 3039: -8,56 + 3040: -7,56 + 3041: -6,56 + 3042: -5,56 + 3043: -4,56 + 3044: -3,56 + 3051: 0,56 + 3052: -2,56 + 3170: -16,67 + 3171: -15,67 + 3172: -14,67 + 3173: -13,67 + 3174: -12,67 + 3175: -11,67 + 3176: -10,67 + 3177: -9,67 + 3178: -8,67 + 3424: -31,67 + 3425: -29,67 + 3426: -28,67 + 3427: -27,67 + 3428: -26,67 + 3429: -24,67 + 3430: -23,67 + 3431: -22,67 + 3438: 2,59 + 3450: -2,67 + 3534: -1,67 + 3535: 1,67 + 3536: 0,67 + 3537: 2,67 + 3538: 3,67 + 3539: 4,67 + 3540: 5,67 + 3541: 7,67 + 3573: -15,77 + 3575: -9,77 + 3582: -15,84 + 3583: -9,84 + 3586: -12,97 + 3593: -27,84 + 3596: -33,84 + 3603: -33,77 + 3604: -27,77 + 3667: 3,84 + 3668: 3,77 + 4455: 14,25 + 4456: 15,25 + 4457: 16,25 + 5118: 31,29 + 5129: 30,30 + 5133: 32,30 + 5134: 33,30 + 5135: 34,30 + 5139: 36,30 + 5143: 35,33 + 5147: 35,29 + 5438: -24,4 + 5451: -31,4 + 5452: -30,4 + 5453: -30,4 + 5454: -29,4 + 5455: -28,4 + 5456: -26,4 + 5457: -25,4 + 5458: -27,4 + 5461: -22,4 + 5462: -35,4 + 5463: -36,4 + 5464: -38,4 + 5465: -39,4 + 5466: -37,4 + 5467: -34,4 + 5536: -20,7 + 5537: -19,7 + 5538: -18,7 + 5549: -20,-7 + 5550: -19,-7 + 5551: -18,-7 + 5649: 10,-7 + 5650: 11,-7 + 5651: 8,-7 + 5787: 12,-3 + 5796: 13,-6 + 5797: 12,-6 + 5798: 9,-6 + 5810: -1,-7 + 5816: -10,-7 + 6078: -15,-17 + 6079: -14,-17 + 6086: -10,-17 + 6096: -13,-18 + 6097: -12,-18 + 6098: -11,-18 + 6136: 16,-7 + 6137: 17,-7 + 6138: 18,-7 + 6143: 16,7 + 6144: 17,7 + 6145: 18,7 + 6158: -16,-21 + 6159: -15,-21 + 6160: -12,-21 + 6161: -11,-21 + 6162: -10,-21 + 6163: -9,-21 + 6164: -9,-21 + 6165: -8,-21 + 6166: -5,-21 + 6167: -4,-21 + 6266: -5,-17 + 6267: -4,-13 + 6276: -4,-18 + 6291: 2,-21 + 6292: 3,-21 + 6293: 6,-21 + 6294: 7,-21 + 6295: 8,-21 + 6296: 9,-21 + 6297: 10,-21 + 6298: 13,-21 + 6299: 14,-21 + 6319: 16,-21 + 6320: 17,-21 + 6344: 2,-13 + 6346: 3,-17 + 6347: 2,-17 + 6376: 9,-17 + 6377: 7,-17 + 6393: 12,-18 + 6394: 13,-18 + 6395: 13,-18 + 6396: 14,-18 + 6415: 8,-18 + 6440: -18,-21 + 6441: -19,-21 + 6442: -19,-21 + 6800: -26,7 + 6801: -25,7 + 6802: -31,7 + 6803: -36,7 + 6820: -37,8 + 6911: -36,17 + 6926: -24,8 + 6927: -23,8 + 6938: -26,16 + 6939: -26,16 + 6958: -27,8 + 6959: -27,8 + 7043: 20,4 + 7044: 21,4 + 7045: 23,4 + 7046: 24,4 + 7047: 25,4 + 7069: 21,8 + 7070: 23,8 + 7083: 22,7 + 7101: 20,-12 + 7102: 21,-12 + 7103: 23,-12 + 7104: 24,-12 7105: 23,-12 7106: 24,-12 - 7107: 23,-12 - 7108: 24,-12 - 7109: 22,-12 - 7122: 27,-12 - 7123: 28,-12 - 7124: 29,-12 - 7125: 30,-12 - 7126: 31,-12 - 7135: 22,-9 - 7169: 26,-8 - 7170: 25,-8 - 7171: 27,-8 - 7172: 29,-8 - 7173: 30,-8 - 7180: 30,-6 - 7181: 29,-6 - 7194: 30,3 - 7198: 29,4 - 7199: 28,4 - 7200: 27,4 - 7201: 31,4 - 7202: 32,4 - 7221: 22,7 - 7315: 29,12 - 7316: 30,12 - 7317: 30,12 - 7318: 31,12 - 7319: 32,12 - 7347: 29,7 - 7993: 77,-22 - 7994: 79,-22 - 7995: 80,-22 - 7996: 81,-22 - 8008: 77,-19 - 8023: 65,-22 - 8025: 65,-19 - 8185: 33,-16 - 8186: 34,-16 - 8187: 35,-16 - 8188: 36,-16 - 8189: 37,-16 - 8228: 33,-6 - 8289: 38,-16 - 8290: 40,-16 - 8351: 39,-18 - 8354: 41,-18 - 8376: 39,-21 - 8377: 40,-21 - 8378: 41,-21 - 8384: 43,-21 - 8385: 45,-21 - 8386: 46,-21 - 8387: 46,-21 - 8388: 47,-21 - 8389: 49,-21 - 8390: 50,-21 - 8391: 50,-21 - 8392: 51,-21 - 8393: 53,-21 - 8394: 53,-21 - 8413: 46,-18 - 8414: 46,-18 - 8415: 47,-18 - 8434: 52,-18 - 8435: 52,-18 - 8622: 56,-31 - 8623: 57,-31 - 8627: 58,-30 - 8628: 58,-30 - 8629: 59,-30 - 8630: 59,-30 - 8631: 60,-30 - 8632: 60,-30 - 8634: 62,-31 - 8819: -2,-22 - 8820: -1,-22 - 8821: 0,-22 - 8866: -2,-29 - 8867: -1,-29 - 8868: 0,-29 - 8869: -2,-37 - 8870: -2,-37 - 8871: -1,-37 - 8872: 0,-37 - 8873: 0,-37 - 8904: -12,-27 - 8905: -11,-27 - 8906: -10,-27 - 8907: -10,-27 - 8908: -9,-27 - 8909: -8,-27 - 8915: -16,-26 - 8916: -4,-26 - 8917: -4,-26 - 8981: -16,-26 - 9167: -2,-63 - 9168: -1,-63 - 9169: 0,-63 - 9184: -7,-65 - 9185: -7,-65 - 9186: -2,-65 - 9187: -6,-65 - 9188: -5,-65 - 9189: -4,-65 - 9190: -4,-65 - 9191: -3,-65 - 9192: -3,-65 - 9236: -10,-78 - 9242: -8,-82 - 9243: -7,-82 - 9244: -5,-82 - 9245: -3,-82 - 9246: -3,-82 - 9250: -2,-81 - 9251: -1,-81 - 9252: 0,-81 - 9253: 0,-81 - 9281: -8,-71 - 9282: -1,-71 - 9300: -5,-74 - 9301: -4,-74 - 9322: -2,-57 - 9323: -2,-57 - 9324: -1,-57 - 9325: -1,-57 - 9326: 0,-57 - 9327: 0,-57 - 9459: -41,-18 - 10405: 3,-52 - 10406: 4,-52 - 10407: 6,-52 - 10408: 6,-52 - 10409: 7,-52 - 10410: 7,-52 - 10411: 8,-52 - 10412: 8,-52 - 10413: 9,-52 - 10414: 9,-52 - 10415: 10,-52 - 10416: 10,-52 + 7107: 22,-12 + 7120: 27,-12 + 7121: 28,-12 + 7122: 29,-12 + 7123: 30,-12 + 7124: 31,-12 + 7133: 22,-9 + 7167: 26,-8 + 7168: 25,-8 + 7169: 27,-8 + 7170: 29,-8 + 7171: 30,-8 + 7178: 30,-6 + 7179: 29,-6 + 7192: 30,3 + 7196: 29,4 + 7197: 28,4 + 7198: 27,4 + 7199: 31,4 + 7200: 32,4 + 7219: 22,7 + 7313: 29,12 + 7314: 30,12 + 7315: 30,12 + 7316: 31,12 + 7317: 32,12 + 7345: 29,7 + 7991: 77,-22 + 7992: 79,-22 + 7993: 80,-22 + 7994: 81,-22 + 8006: 77,-19 + 8021: 65,-22 + 8023: 65,-19 + 8183: 33,-16 + 8184: 34,-16 + 8185: 35,-16 + 8186: 36,-16 + 8187: 37,-16 + 8226: 33,-6 + 8287: 38,-16 + 8288: 40,-16 + 8349: 39,-18 + 8352: 41,-18 + 8374: 39,-21 + 8375: 40,-21 + 8376: 41,-21 + 8382: 43,-21 + 8383: 45,-21 + 8384: 46,-21 + 8385: 46,-21 + 8386: 47,-21 + 8387: 49,-21 + 8388: 50,-21 + 8389: 50,-21 + 8390: 51,-21 + 8391: 53,-21 + 8392: 53,-21 + 8411: 46,-18 + 8412: 46,-18 + 8413: 47,-18 + 8432: 52,-18 + 8433: 52,-18 + 8620: 56,-31 + 8621: 57,-31 + 8625: 58,-30 + 8626: 58,-30 + 8627: 59,-30 + 8628: 59,-30 + 8629: 60,-30 + 8630: 60,-30 + 8632: 62,-31 + 8817: -2,-22 + 8818: -1,-22 + 8819: 0,-22 + 8864: -2,-29 + 8865: -1,-29 + 8866: 0,-29 + 8867: -2,-37 + 8868: -2,-37 + 8869: -1,-37 + 8870: 0,-37 + 8871: 0,-37 + 8902: -12,-27 + 8903: -11,-27 + 8904: -10,-27 + 8905: -10,-27 + 8906: -9,-27 + 8907: -8,-27 + 8913: -16,-26 + 8914: -4,-26 + 8915: -4,-26 + 8979: -16,-26 + 9165: -2,-63 + 9166: -1,-63 + 9167: 0,-63 + 9182: -7,-65 + 9183: -7,-65 + 9184: -2,-65 + 9185: -6,-65 + 9186: -5,-65 + 9187: -4,-65 + 9188: -4,-65 + 9189: -3,-65 + 9190: -3,-65 + 9234: -10,-78 + 9240: -8,-82 + 9241: -7,-82 + 9242: -5,-82 + 9243: -3,-82 + 9244: -3,-82 + 9248: -2,-81 + 9249: -1,-81 + 9250: 0,-81 + 9251: 0,-81 + 9279: -8,-71 + 9280: -1,-71 + 9298: -5,-74 + 9299: -4,-74 + 9320: -2,-57 + 9321: -2,-57 + 9322: -1,-57 + 9323: -1,-57 + 9324: 0,-57 + 9325: 0,-57 + 9457: -41,-18 + 10403: 3,-52 + 10404: 4,-52 + 10405: 6,-52 + 10406: 6,-52 + 10407: 7,-52 + 10408: 7,-52 + 10409: 8,-52 + 10410: 8,-52 + 10411: 9,-52 + 10412: 9,-52 + 10413: 10,-52 + 10414: 10,-52 + 10415: 11,-52 + 10416: 11,-52 10417: 11,-52 - 10418: 11,-52 - 10419: 11,-52 - 10420: 5,-52 - 10586: 4,-83 - 10612: 55,-44 - 10644: 46,-45 - 10645: 44,-45 - 10646: 44,-45 - 10647: 48,-45 - 11262: -59,-33 - 11268: -59,-40 - 11339: -6,-83 - 11340: -4,-83 - 11341: 2,-83 - 11342: 2,-83 - 11390: -10,-63 - 11426: -14,-32 - 11428: -15,-29 - 11429: -13,-29 - 11837: -38,-56 - 11838: -38,-56 - 11858: -37,-53 - 11859: -38,-53 - 11860: -39,-53 - 11861: -40,-53 - 11862: -40,-53 - 11879: -24,-54 - 11880: -25,-54 - 12159: -24,-49 - 12556: -21,-77 - 12791: 5,70 - 12792: 6,70 - 12793: 7,70 - 12802: -7,66 - 12803: -6,66 - 12804: -5,66 - 12805: -4,66 - 12806: -3,66 - 12807: -7,59 - 12824: -7,59 - 12825: -6,59 - 12826: -5,59 - 12827: -4,59 - 12828: -3,59 - 12841: -21,59 - 12842: -20,59 - 12843: -19,59 - 12844: -18,59 - 12845: -18,59 - 12846: -17,59 - 12847: -19,59 - 12848: -21,66 - 12849: -20,66 - 12850: -19,66 - 12851: -18,66 - 12852: -18,66 - 12853: -17,66 - 12854: -31,70 - 12855: -30,70 - 12856: -29,70 - 12857: -13,70 - 12858: -12,70 - 12859: -11,70 - 13419: -37,-59 - 14455: -17,22 - 14456: -16,22 - 14457: -15,22 - 14458: -15,22 - 14459: -14,22 - 14460: -12,22 - 14461: -11,22 - 14462: -13,22 - 14463: -10,22 - 14464: -9,22 - 14906: -7,22 - 14907: -6,22 - 14908: -5,22 - 14909: -4,22 - 14910: -2,22 - 14911: -2,22 - 14912: -3,22 - 14913: -1,22 - 14914: 0,22 - 14915: 1,22 - 14916: 2,22 - 14917: 3,22 - 14918: 4,22 - 14919: 5,22 - 14920: 7,22 - 14921: 8,22 - 14922: 9,22 - 14923: 10,22 - 14924: 11,22 - 14925: 12,22 - 14926: 13,22 - 14927: 14,22 - 14928: 15,22 - 14977: -20,25 - 14978: -19,25 - 14979: -18,25 - 14980: -20,21 - 14981: -19,21 - 14982: -18,21 - 15045: 16,21 - 15046: 17,21 - 15047: 18,21 - 15398: -43,4 - 15399: -42,4 - 15400: -41,4 - 15412: -43,7 - 15413: -42,7 - 15414: -41,7 - 15604: 77,0 - 15796: 78,3 - 15816: 86,0 - 15817: 87,0 - 15818: 88,0 - 15819: 84,0 - 15820: 83,0 - 15821: 82,0 - 15822: 80,0 - 15823: 79,0 - 15824: 78,0 - 16706: -58,-11 - 16707: -60,-15 - 16709: -59,-15 - 16710: -58,-15 - 16713: -60,-15 - 16714: -59,-15 - 16715: -57,-15 - 16716: -56,-15 - 16717: -58,-15 - 16718: -58,-15 - 16719: -57,-15 - 16720: -59,-15 + 10418: 5,-52 + 10584: 4,-83 + 10610: 55,-44 + 10642: 46,-45 + 10643: 44,-45 + 10644: 44,-45 + 10645: 48,-45 + 11260: -59,-33 + 11266: -59,-40 + 11337: -6,-83 + 11338: -4,-83 + 11339: 2,-83 + 11340: 2,-83 + 11388: -10,-63 + 11424: -14,-32 + 11426: -15,-29 + 11427: -13,-29 + 11835: -38,-56 + 11836: -38,-56 + 11856: -37,-53 + 11857: -38,-53 + 11858: -39,-53 + 11859: -40,-53 + 11860: -40,-53 + 11877: -24,-54 + 11878: -25,-54 + 12157: -24,-49 + 12554: -21,-77 + 12789: 5,70 + 12790: 6,70 + 12791: 7,70 + 12800: -7,66 + 12801: -6,66 + 12802: -5,66 + 12803: -4,66 + 12804: -3,66 + 12805: -7,59 + 12822: -7,59 + 12823: -6,59 + 12824: -5,59 + 12825: -4,59 + 12826: -3,59 + 12839: -21,59 + 12840: -20,59 + 12841: -19,59 + 12842: -18,59 + 12843: -18,59 + 12844: -17,59 + 12845: -19,59 + 12846: -21,66 + 12847: -20,66 + 12848: -19,66 + 12849: -18,66 + 12850: -18,66 + 12851: -17,66 + 12852: -31,70 + 12853: -30,70 + 12854: -29,70 + 12855: -13,70 + 12856: -12,70 + 12857: -11,70 + 13417: -37,-59 + 14453: -17,22 + 14454: -16,22 + 14455: -15,22 + 14456: -15,22 + 14457: -14,22 + 14458: -12,22 + 14459: -11,22 + 14460: -13,22 + 14461: -10,22 + 14462: -9,22 + 14904: -7,22 + 14905: -6,22 + 14906: -5,22 + 14907: -4,22 + 14908: -2,22 + 14909: -2,22 + 14910: -3,22 + 14911: -1,22 + 14912: 0,22 + 14913: 1,22 + 14914: 2,22 + 14915: 3,22 + 14916: 4,22 + 14917: 5,22 + 14918: 7,22 + 14919: 8,22 + 14920: 9,22 + 14921: 10,22 + 14922: 11,22 + 14923: 12,22 + 14924: 13,22 + 14925: 14,22 + 14926: 15,22 + 14975: -20,25 + 14976: -19,25 + 14977: -18,25 + 14978: -20,21 + 14979: -19,21 + 14980: -18,21 + 15043: 16,21 + 15044: 17,21 + 15045: 18,21 + 15396: -43,4 + 15397: -42,4 + 15398: -41,4 + 15410: -43,7 + 15411: -42,7 + 15412: -41,7 + 15602: 77,0 + 15794: 78,3 + 15814: 86,0 + 15815: 87,0 + 15816: 88,0 + 15817: 84,0 + 15818: 83,0 + 15819: 82,0 + 15820: 80,0 + 15821: 79,0 + 15822: 78,0 + 16704: -58,-11 + 16705: -60,-15 + 16707: -59,-15 + 16708: -58,-15 + 16711: -60,-15 + 16712: -59,-15 + 16713: -57,-15 + 16714: -56,-15 + 16715: -58,-15 + 16716: -58,-15 + 16717: -57,-15 + 16718: -59,-15 + 16725: -58,-11 16727: -58,-11 - 16729: -58,-11 - 16744: -61,-17 - 16784: -57,-4 - 16786: -58,-5 - 16828: -60,-4 - 16829: -59,-4 - 16832: -53,3 - 16833: -52,3 - 16836: -53,7 - 16837: -52,7 - 16854: -50,-4 - 17529: 6,86 - 17936: -45,23 - 18497: -15,-10 - 18498: -16,-10 - 18499: -13,-10 - 18500: -12,-10 - 18501: -11,-10 - 18502: -9,-10 - 18503: -8,-10 - 18504: -8,-10 - 18505: -7,-10 - 18506: -6,-10 - 18507: -5,-10 - 18510: -14,-11 - 18511: -10,-11 - 18522: 15,-10 - 18523: 14,-10 - 18524: 13,-10 - 18525: 12,-10 - 18526: 11,-10 - 18527: 10,-10 - 18528: 9,-10 - 18529: 5,-10 - 18530: 6,-10 - 18531: 7,-10 - 18532: 5,-10 - 18533: 4,-10 - 18534: 3,-10 - 18535: 2,-10 - 18536: 1,-10 - 18537: 0,-10 - 18538: -1,-10 - 18539: -2,-10 - 18540: -3,-10 - 18541: -4,-10 - 18542: -4,-10 - 18553: 8,-11 - 19905: -27,14 - 19906: -26,14 - 19907: -25,14 - 19908: -25,14 - 19909: -24,14 - 19910: -24,14 - 19929: -28,8 - 20088: 62,21 - 20089: 63,21 - 20090: 64,21 - 20091: 65,21 - 20092: 66,21 - 20093: 68,21 - 20094: 69,21 - 20095: 67,21 - 20121: 62,27 - 20122: 64,27 - 20123: 65,27 - 20124: 66,27 - 20125: 67,27 - 20163: -20,7 - 20164: -19,7 - 20165: -18,7 - 20207: -20,21 - 20208: -19,21 - 20209: -18,21 + 16742: -61,-17 + 16782: -57,-4 + 16784: -58,-5 + 16826: -60,-4 + 16827: -59,-4 + 16830: -53,3 + 16831: -52,3 + 16834: -53,7 + 16835: -52,7 + 16852: -50,-4 + 17527: 6,86 + 17934: -45,23 + 18495: -15,-10 + 18496: -16,-10 + 18497: -13,-10 + 18498: -12,-10 + 18499: -11,-10 + 18500: -9,-10 + 18501: -8,-10 + 18502: -8,-10 + 18503: -7,-10 + 18504: -6,-10 + 18505: -5,-10 + 18508: -14,-11 + 18509: -10,-11 + 18520: 15,-10 + 18521: 14,-10 + 18522: 13,-10 + 18523: 12,-10 + 18524: 11,-10 + 18525: 10,-10 + 18526: 9,-10 + 18527: 5,-10 + 18528: 6,-10 + 18529: 7,-10 + 18530: 5,-10 + 18531: 4,-10 + 18532: 3,-10 + 18533: 2,-10 + 18534: 1,-10 + 18535: 0,-10 + 18536: -1,-10 + 18537: -2,-10 + 18538: -3,-10 + 18539: -4,-10 + 18540: -4,-10 + 18551: 8,-11 + 19903: -27,14 + 19904: -26,14 + 19905: -25,14 + 19906: -25,14 + 19907: -24,14 + 19908: -24,14 + 19927: -28,8 + 20086: 62,21 + 20087: 63,21 + 20088: 64,21 + 20089: 65,21 + 20090: 66,21 + 20091: 68,21 + 20092: 69,21 + 20093: 67,21 + 20119: 62,27 + 20120: 64,27 + 20121: 65,27 + 20122: 66,27 + 20123: 67,27 + 20161: -20,7 + 20162: -19,7 + 20163: -18,7 + 20205: -20,21 + 20206: -19,21 + 20207: -18,21 - node: cleanable: True color: '#FFFFFFFF' @@ -10215,876 +10210,876 @@ entities: 900: 26,-2 921: 29,1 927: 27,-2 - 4049: -20,25 - 4050: -19,25 - 4051: -18,25 + 4047: -20,25 + 4048: -19,25 + 4049: -18,25 + 4100: 0,25 4102: 0,25 - 4104: 0,25 - 4105: 0,25 - 4106: -9,25 - 4107: -9,25 - 4116: 4,25 - 4117: 5,25 - 4118: 7,25 - 4119: 8,25 + 4103: 0,25 + 4104: -9,25 + 4105: -9,25 + 4114: 4,25 + 4115: 5,25 + 4116: 7,25 + 4117: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineW decals: - 8123: 24,-17 - 8124: 24,-16 - 8129: 32,-16 - 8149: 20,-15 - 8156: 23,-15 + 8121: 24,-17 + 8122: 24,-16 + 8127: 32,-16 + 8147: 20,-15 + 8154: 23,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 3737: -28,60 - 3738: -28,61 - 3739: -28,62 - 3740: -28,63 - 3741: -28,64 - 3758: -25,59 - 3759: -25,61 - 3760: -25,63 - 10255: 35,-26 - 10377: 13,-47 - 10678: 71,-50 - 15790: 77,5 + 3735: -28,60 + 3736: -28,61 + 3737: -28,62 + 3738: -28,63 + 3739: -28,64 + 3756: -25,59 + 3757: -25,61 + 3758: -25,63 + 10253: 35,-26 + 10375: 13,-47 + 10676: 71,-50 + 15788: 77,5 - node: color: '#8CB7E8FF' id: BrickTileSteelLineW decals: - 10061: 29,-24 - 10071: 28,-24 - 10072: 28,-23 - 10073: 28,-23 - 10083: 33,-23 - 10084: 33,-23 - 10151: 20,-48 - 10152: 20,-47 - 10207: 32,-52 - 10208: 32,-48 - 10209: 32,-50 + 10059: 29,-24 + 10069: 28,-24 + 10070: 28,-23 + 10071: 28,-23 + 10081: 33,-23 + 10082: 33,-23 + 10149: 20,-48 + 10150: 20,-47 + 10205: 32,-52 + 10206: 32,-48 + 10207: 32,-50 - node: color: '#A9DA8BFF' id: BrickTileSteelLineW decals: - 2865: -24,47 - 2866: -24,48 + 2863: -24,47 + 2864: -24,48 + 2865: -24,48 + 2866: -24,47 2867: -24,48 2868: -24,47 - 2869: -24,48 - 2870: -24,47 - 2992: -39,49 + 2990: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineW decals: - 11979: -31,-31 - 11980: -31,-30 - 11981: -31,-30 - 12045: -32,-29 - 12046: -32,-28 - 12047: -32,-27 - 12049: -44,-29 - 12050: -44,-28 - 12051: -44,-27 - 12061: -48,-27 - 12062: -48,-26 - 12063: -48,-30 - 12064: -48,-29 - 12115: -29,-46 - 12116: -29,-45 - 12117: -29,-44 - 12162: -30,-41 - 12163: -30,-40 - 12164: -26,-41 - 12165: -26,-40 - 12166: -26,-39 - 12341: -21,-43 - 12342: -21,-42 - 12343: -21,-41 - 12344: -21,-40 - 12345: -21,-39 - 12356: -16,-40 - 16164: -66,-47 - 16180: -61,-48 - 19803: -5,-43 - 19804: -5,-42 - 19805: -5,-42 - 19806: -5,-41 - 19822: -5,-40 + 11977: -31,-31 + 11978: -31,-30 + 11979: -31,-30 + 12043: -32,-29 + 12044: -32,-28 + 12045: -32,-27 + 12047: -44,-29 + 12048: -44,-28 + 12049: -44,-27 + 12059: -48,-27 + 12060: -48,-26 + 12061: -48,-30 + 12062: -48,-29 + 12113: -29,-46 + 12114: -29,-45 + 12115: -29,-44 + 12160: -30,-41 + 12161: -30,-40 + 12162: -26,-41 + 12163: -26,-40 + 12164: -26,-39 + 12339: -21,-43 + 12340: -21,-42 + 12341: -21,-41 + 12342: -21,-40 + 12343: -21,-39 + 12354: -16,-40 + 16162: -66,-47 + 16178: -61,-48 + 19801: -5,-43 + 19802: -5,-42 + 19803: -5,-42 + 19804: -5,-41 + 19820: -5,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineW decals: - 10968: 26,-69 - 10971: 33,-68 + 10966: 26,-69 + 10969: 33,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelLineW decals: - 7825: 64,4 - 7826: 64,5 - 7827: 60,4 - 7828: 60,5 - 7833: 60,4 - 7834: 60,5 - 7847: 71,6 - 19285: 58,3 - 19295: 62,3 - 19296: 66,3 - 19320: 69,8 - 19326: 66,8 - 19327: 66,7 - 19333: 62,7 - 19334: 62,8 - 19335: 62,9 - 19336: 58,7 - 19337: 58,8 + 7823: 64,4 + 7824: 64,5 + 7825: 60,4 + 7826: 60,5 + 7831: 60,4 + 7832: 60,5 + 7845: 71,6 + 19283: 58,3 + 19293: 62,3 + 19294: 66,3 + 19318: 69,8 + 19324: 66,8 + 19325: 66,7 + 19331: 62,7 + 19332: 62,8 + 19333: 62,9 + 19334: 58,7 + 19335: 58,8 - node: color: '#DAA58BFF' id: BrickTileSteelLineW decals: - 4524: 12,35 - 4525: 12,36 + 4522: 12,35 + 4523: 12,36 - node: color: '#DABC8BFF' id: BrickTileSteelLineW decals: - 3650: 9,75 - 3651: 9,76 - 3652: 9,80 - 3653: 9,81 - 3712: 13,78 - 3718: 12,87 - 15377: -49,9 + 3648: 9,75 + 3649: 9,76 + 3650: 9,80 + 3651: 9,81 + 3710: 13,78 + 3716: 12,87 + 15375: -49,9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 20338: -24,1 - 20339: -24,0 - 20344: -45,9 - 20352: -48,8 - 20370: 4,-84 - 20371: 4,-85 - 20372: 4,-86 - 20379: 4,-82 - 20380: 4,-81 - 20432: 7,-77 - 20433: 7,-75 - 20435: 4,-77 - 20455: 3,-61 - 20456: 3,-59 - 20465: 4,-71 - 20466: 4,-70 - 20467: 4,-69 - 20468: 4,-68 - 20475: 15,-31 - 20491: 10,-31 - 20505: 12,31 - 20506: 4,64 - 20509: 4,60 - 20510: 0,63 - 20511: 0,62 - 20512: 0,64 - 20557: 39,12 - 20559: 39,5 - 20560: 46,7 - 20561: 46,6 - 20562: 46,9 - 20578: 38,8 - 20640: 79,9 - 20641: 75,9 - 20661: 43,12 - 20664: 45,12 - 20669: 46,11 - 20676: 49,8 - 20726: 60,25 - 20727: 48,23 - 20728: 48,22 - 20736: 49,30 - 20737: 49,29 - 20738: 49,28 - 20739: 49,27 - 20740: 49,26 - 20741: 49,24 - 20742: 49,25 - 20776: 49,16 - 20783: 49,12 - 20808: 45,23 - 20809: 45,22 - 20810: 45,21 - 20811: 45,19 - 20812: 45,18 - 20813: 45,18 - 20814: 45,17 - 20815: 45,16 - 20836: 58,19 - 20844: 56,18 - 20845: 56,16 - 20849: 50,17 - 20850: 50,18 - 20864: 61,12 - 20876: 49,8 - 20877: 49,4 - 20900: 91,16 - 20901: 91,17 - 20902: 91,18 - 20903: 91,19 - 20904: 91,20 - 20905: 91,22 - 20907: 94,21 - 20921: 94,13 - 20938: 81,13 - 20945: 79,9 - 20946: 75,9 - 20961: 72,7 - 20962: 72,8 - 20963: 72,8 - 20964: 72,9 - 20965: 72,10 - 20966: 72,11 - 20967: 72,12 - 20968: 72,14 - 20969: 72,14 - 20970: 72,15 - 20971: 72,16 - 20972: 72,16 - 20973: 72,17 - 20983: 71,-1 - 20988: 69,0 - 20989: 72,0 - 20995: 43,0 - 20996: 39,0 - 20997: 49,-1 - 20998: 49,0 - 20999: 49,1 - 21017: 72,22 - 21023: 77,22 - 21051: 68,1 - 21052: 68,-1 - 21053: 71,-1 - 21054: 71,1 - 21068: 72,-4 - 21071: 68,-4 - 21072: 72,-4 - 21100: 55,-4 - 21101: 50,-4 - 21116: 46,1 - 21117: 46,2 - 21128: 45,0 - 21141: 38,4 - 21142: 38,6 - 21149: 34,5 - 21162: 39,7 - 21173: 45,8 - 21174: 43,8 - 21193: 50,7 - 21194: 50,6 - 21195: 50,6 - 21196: 50,5 - 21218: 75,-4 - 21223: 76,-3 - 21226: 75,-4 - 21228: 72,-4 - 21229: -20,-25 - 21230: -20,-27 - 21232: -17,-24 - 21246: 4,-65 - 21256: 45,-4 - 21287: 72,2 + 20336: -24,1 + 20337: -24,0 + 20342: -45,9 + 20350: -48,8 + 20368: 4,-84 + 20369: 4,-85 + 20370: 4,-86 + 20377: 4,-82 + 20378: 4,-81 + 20430: 7,-77 + 20431: 7,-75 + 20433: 4,-77 + 20453: 3,-61 + 20454: 3,-59 + 20463: 4,-71 + 20464: 4,-70 + 20465: 4,-69 + 20466: 4,-68 + 20473: 15,-31 + 20489: 10,-31 + 20503: 12,31 + 20504: 4,64 + 20507: 4,60 + 20508: 0,63 + 20509: 0,62 + 20510: 0,64 + 20555: 39,12 + 20557: 39,5 + 20558: 46,7 + 20559: 46,6 + 20560: 46,9 + 20576: 38,8 + 20638: 79,9 + 20639: 75,9 + 20659: 43,12 + 20662: 45,12 + 20667: 46,11 + 20674: 49,8 + 20724: 60,25 + 20725: 48,23 + 20726: 48,22 + 20734: 49,30 + 20735: 49,29 + 20736: 49,28 + 20737: 49,27 + 20738: 49,26 + 20739: 49,24 + 20740: 49,25 + 20774: 49,16 + 20781: 49,12 + 20806: 45,23 + 20807: 45,22 + 20808: 45,21 + 20809: 45,19 + 20810: 45,18 + 20811: 45,18 + 20812: 45,17 + 20813: 45,16 + 20834: 58,19 + 20842: 56,18 + 20843: 56,16 + 20847: 50,17 + 20848: 50,18 + 20862: 61,12 + 20874: 49,8 + 20875: 49,4 + 20898: 91,16 + 20899: 91,17 + 20900: 91,18 + 20901: 91,19 + 20902: 91,20 + 20903: 91,22 + 20905: 94,21 + 20919: 94,13 + 20936: 81,13 + 20943: 79,9 + 20944: 75,9 + 20959: 72,7 + 20960: 72,8 + 20961: 72,8 + 20962: 72,9 + 20963: 72,10 + 20964: 72,11 + 20965: 72,12 + 20966: 72,14 + 20967: 72,14 + 20968: 72,15 + 20969: 72,16 + 20970: 72,16 + 20971: 72,17 + 20981: 71,-1 + 20986: 69,0 + 20987: 72,0 + 20993: 43,0 + 20994: 39,0 + 20995: 49,-1 + 20996: 49,0 + 20997: 49,1 + 21015: 72,22 + 21021: 77,22 + 21049: 68,1 + 21050: 68,-1 + 21051: 71,-1 + 21052: 71,1 + 21066: 72,-4 + 21069: 68,-4 + 21070: 72,-4 + 21098: 55,-4 + 21099: 50,-4 + 21114: 46,1 + 21115: 46,2 + 21126: 45,0 + 21139: 38,4 + 21140: 38,6 + 21147: 34,5 + 21160: 39,7 + 21171: 45,8 + 21172: 43,8 + 21191: 50,7 + 21192: 50,6 + 21193: 50,6 + 21194: 50,5 + 21216: 75,-4 + 21221: 76,-3 + 21224: 75,-4 + 21226: 72,-4 + 21227: -20,-25 + 21228: -20,-27 + 21230: -17,-24 + 21244: 4,-65 + 21254: 45,-4 + 21285: 72,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2253: -14,48 - 2254: -14,50 - 2256: -23,49 - 2260: -23,46 - 2268: -24,43 - 2269: -24,44 - 2273: -24,42 - 2278: -14,46 - 2279: -14,45 - 2280: -14,43 - 2281: -14,44 - 2282: -14,42 - 2283: -14,41 - 2284: -14,40 - 2285: -14,39 - 2286: -14,38 - 2287: -14,37 - 2288: -14,36 - 2293: -23,29 - 2296: -21,27 - 2297: -21,27 - 2325: -27,31 - 2383: -29,36 - 2384: -29,35 - 2385: -29,34 - 2398: -34,37 - 2399: -34,36 - 2400: -34,35 - 2401: -34,34 - 2402: -34,33 - 2415: -14,46 - 2417: -14,36 - 2473: -14,46 - 2585: -14,46 - 2586: -14,36 - 2731: -13,49 - 2764: -2,51 - 2769: -1,48 - 3079: -7,59 - 3157: -7,60 - 3158: -7,61 - 3159: -7,62 - 3160: -7,63 - 3161: -7,64 - 3162: -7,65 - 3181: -7,66 - 3184: -21,59 - 3185: -21,60 - 3186: -21,61 - 3187: -21,61 - 3188: -21,62 - 3189: -21,63 - 3190: -21,64 - 3191: -21,65 - 3192: -21,65 - 3193: -21,66 - 3317: -32,68 - 3319: -31,70 - 3320: -31,71 - 3321: -31,72 - 3322: -31,73 - 3323: -31,74 - 3324: -31,75 - 3325: -31,76 - 3326: -31,78 - 3327: -31,83 - 3328: -31,85 - 3329: -31,86 - 3330: -32,90 - 3331: -32,89 - 3332: -32,91 - 3333: -31,93 - 3334: -31,94 - 3335: -31,95 - 3373: -13,70 - 3374: -13,71 - 3375: -13,72 - 3376: -13,73 - 3377: -13,74 - 3378: -13,75 - 3379: -13,76 - 3380: -13,78 - 3381: -14,80 - 3382: -14,81 - 3383: -13,83 - 3384: -13,85 - 3385: -13,86 - 3386: -13,87 - 3387: -14,89 - 3388: -14,90 - 3389: -14,91 - 3390: -13,93 - 3391: -13,94 - 3392: -13,95 - 3481: -32,81 - 3482: -32,80 - 3507: -14,90 - 3560: -21,58 - 3561: -21,57 - 3562: -21,56 - 3569: -10,77 - 3571: -8,77 - 3573: -14,77 - 3581: -8,84 - 3582: -10,84 - 3583: -14,84 - 3589: -32,84 - 3590: -28,84 - 3593: -26,84 - 3602: -32,77 - 3603: -28,77 - 3604: -26,77 - 3622: 5,70 - 3623: 5,71 - 3624: 5,72 - 3625: 5,73 - 3626: 5,74 - 3627: 5,75 - 3628: 5,75 - 3629: 5,76 - 3630: 5,78 - 3631: 4,80 - 3632: 4,81 - 3633: 5,83 - 3661: 4,77 + 2251: -14,48 + 2252: -14,50 + 2254: -23,49 + 2258: -23,46 + 2266: -24,43 + 2267: -24,44 + 2271: -24,42 + 2276: -14,46 + 2277: -14,45 + 2278: -14,43 + 2279: -14,44 + 2280: -14,42 + 2281: -14,41 + 2282: -14,40 + 2283: -14,39 + 2284: -14,38 + 2285: -14,37 + 2286: -14,36 + 2291: -23,29 + 2294: -21,27 + 2295: -21,27 + 2323: -27,31 + 2381: -29,36 + 2382: -29,35 + 2383: -29,34 + 2396: -34,37 + 2397: -34,36 + 2398: -34,35 + 2399: -34,34 + 2400: -34,33 + 2413: -14,46 + 2415: -14,36 + 2471: -14,46 + 2583: -14,46 + 2584: -14,36 + 2729: -13,49 + 2762: -2,51 + 2767: -1,48 + 3077: -7,59 + 3155: -7,60 + 3156: -7,61 + 3157: -7,62 + 3158: -7,63 + 3159: -7,64 + 3160: -7,65 + 3179: -7,66 + 3182: -21,59 + 3183: -21,60 + 3184: -21,61 + 3185: -21,61 + 3186: -21,62 + 3187: -21,63 + 3188: -21,64 + 3189: -21,65 + 3190: -21,65 + 3191: -21,66 + 3315: -32,68 + 3317: -31,70 + 3318: -31,71 + 3319: -31,72 + 3320: -31,73 + 3321: -31,74 + 3322: -31,75 + 3323: -31,76 + 3324: -31,78 + 3325: -31,83 + 3326: -31,85 + 3327: -31,86 + 3328: -32,90 + 3329: -32,89 + 3330: -32,91 + 3331: -31,93 + 3332: -31,94 + 3333: -31,95 + 3371: -13,70 + 3372: -13,71 + 3373: -13,72 + 3374: -13,73 + 3375: -13,74 + 3376: -13,75 + 3377: -13,76 + 3378: -13,78 + 3379: -14,80 + 3380: -14,81 + 3381: -13,83 + 3382: -13,85 + 3383: -13,86 + 3384: -13,87 + 3385: -14,89 + 3386: -14,90 + 3387: -14,91 + 3388: -13,93 + 3389: -13,94 + 3390: -13,95 + 3479: -32,81 + 3480: -32,80 + 3505: -14,90 + 3558: -21,58 + 3559: -21,57 + 3560: -21,56 + 3567: -10,77 + 3569: -8,77 + 3571: -14,77 + 3579: -8,84 + 3580: -10,84 + 3581: -14,84 + 3587: -32,84 + 3588: -28,84 + 3591: -26,84 + 3600: -32,77 + 3601: -28,77 + 3602: -26,77 + 3620: 5,70 + 3621: 5,71 + 3622: 5,72 + 3623: 5,73 + 3624: 5,74 + 3625: 5,75 + 3626: 5,75 + 3627: 5,76 + 3628: 5,78 + 3629: 4,80 + 3630: 4,81 + 3631: 5,83 + 3659: 4,77 + 3663: 4,84 3665: 4,84 - 3667: 4,84 - 3776: 4,57 - 3823: 9,68 - 4172: -17,14 - 4173: -17,15 - 4313: 16,16 - 4314: 16,17 - 4315: 16,18 - 4316: 16,19 - 4317: 16,20 - 4325: 16,13 - 4326: 16,12 - 4327: 16,11 + 3774: 4,57 + 3821: 9,68 + 4170: -17,14 + 4171: -17,15 + 4311: 16,16 + 4312: 16,17 + 4313: 16,18 + 4314: 16,19 + 4315: 16,20 + 4323: 16,13 + 4324: 16,12 + 4325: 16,11 + 4326: 16,10 + 4327: 16,8 4328: 16,10 - 4329: 16,8 - 4330: 16,10 - 4331: 16,9 - 4332: 16,7 - 4333: 16,6 - 4334: 16,4 - 4335: 16,5 - 4336: 16,3 - 4337: 16,2 - 4338: 16,0 - 4339: 16,-1 - 4340: 16,1 - 4341: 16,-2 - 4674: 19,24 - 5113: 32,28 - 5114: 32,27 - 5115: 32,26 - 5116: 32,26 - 5142: 37,30 - 5147: 36,28 - 5148: 36,27 - 5227: 16,-6 - 5228: 16,-5 - 5229: 16,-3 - 5277: -31,79 - 5278: -31,80 - 5279: -31,81 - 5280: -31,81 - 5281: -31,82 - 5282: -31,82 - 5283: -31,88 - 5284: -31,89 - 5285: -31,89 - 5286: -31,90 - 5287: -31,91 - 5288: -31,92 - 5289: -31,92 - 5303: -13,79 - 5304: -13,80 - 5305: -13,81 - 5306: -13,81 - 5307: -13,82 - 5308: -13,82 - 5309: -13,88 - 5310: -13,88 - 5311: -13,89 - 5312: -13,90 - 5313: -13,91 - 5314: -13,91 - 5323: -13,92 - 5324: -13,92 - 5366: 5,79 - 5367: 5,80 + 4329: 16,9 + 4330: 16,7 + 4331: 16,6 + 4332: 16,4 + 4333: 16,5 + 4334: 16,3 + 4335: 16,2 + 4336: 16,0 + 4337: 16,-1 + 4338: 16,1 + 4339: 16,-2 + 4672: 19,24 + 5111: 32,28 + 5112: 32,27 + 5113: 32,26 + 5114: 32,26 + 5140: 37,30 + 5145: 36,28 + 5146: 36,27 + 5225: 16,-6 + 5226: 16,-5 + 5227: 16,-3 + 5275: -31,79 + 5276: -31,80 + 5277: -31,81 + 5278: -31,81 + 5279: -31,82 + 5280: -31,82 + 5281: -31,88 + 5282: -31,89 + 5283: -31,89 + 5284: -31,90 + 5285: -31,91 + 5286: -31,92 + 5287: -31,92 + 5301: -13,79 + 5302: -13,80 + 5303: -13,81 + 5304: -13,81 + 5305: -13,82 + 5306: -13,82 + 5307: -13,88 + 5308: -13,88 + 5309: -13,89 + 5310: -13,90 + 5311: -13,91 + 5312: -13,91 + 5321: -13,92 + 5322: -13,92 + 5364: 5,79 + 5365: 5,80 + 5366: 5,81 + 5367: 5,81 5368: 5,81 - 5369: 5,81 - 5370: 5,81 - 5371: 5,82 - 5373: 16,-7 - 5543: -17,4 - 5544: -17,-1 - 5557: -20,-8 - 5558: -20,-9 - 5559: -20,-10 - 5560: -20,-10 - 5561: -20,-11 - 5562: -20,-12 - 5563: -20,-13 - 5564: -20,-14 - 5630: -17,-8 - 5658: 15,-8 - 5794: 15,-4 - 5802: 7,-5 - 6120: 16,-18 - 6121: 16,-17 - 6122: 16,-16 - 6123: 16,-15 - 6124: 16,-14 - 6125: 16,-13 - 6126: 16,-12 - 6127: 16,-11 - 6154: -17,-19 - 6155: -17,-20 - 6156: -17,-21 - 6174: -17,-19 - 6265: -6,-15 - 6266: -6,-16 - 6281: -3,-19 - 6282: -3,-20 - 6283: -3,-21 - 6290: 1,-21 - 6291: 1,-20 - 6292: 1,-19 - 6305: 15,-21 - 6306: 15,-20 - 6307: 15,-19 - 6340: -3,-16 - 6367: 6,-12 - 6368: 6,-13 - 6369: 6,-14 - 6370: 6,-15 - 6371: 6,-15 - 6372: 6,-16 - 6387: 11,-16 - 6404: 12,-17 - 6410: 12,-15 + 5369: 5,82 + 5371: 16,-7 + 5541: -17,4 + 5542: -17,-1 + 5555: -20,-8 + 5556: -20,-9 + 5557: -20,-10 + 5558: -20,-10 + 5559: -20,-11 + 5560: -20,-12 + 5561: -20,-13 + 5562: -20,-14 + 5628: -17,-8 + 5656: 15,-8 + 5792: 15,-4 + 5800: 7,-5 + 6118: 16,-18 + 6119: 16,-17 + 6120: 16,-16 + 6121: 16,-15 + 6122: 16,-14 + 6123: 16,-13 + 6124: 16,-12 + 6125: 16,-11 + 6152: -17,-19 + 6153: -17,-20 + 6154: -17,-21 + 6172: -17,-19 + 6263: -6,-15 + 6264: -6,-16 + 6279: -3,-19 + 6280: -3,-20 + 6281: -3,-21 + 6288: 1,-21 + 6289: 1,-20 + 6290: 1,-19 + 6303: 15,-21 + 6304: 15,-20 + 6305: 15,-19 + 6338: -3,-16 + 6365: 6,-12 + 6366: 6,-13 + 6367: 6,-14 + 6368: 6,-15 + 6369: 6,-15 + 6370: 6,-16 + 6385: 11,-16 + 6402: 12,-17 + 6408: 12,-15 + 6447: -20,-19 + 6448: -20,-19 6449: -20,-19 6450: -20,-19 6451: -20,-19 - 6452: -20,-19 - 6453: -20,-19 - 6786: -17,-1 - 6808: -43,22 - 6809: -44,20 - 6810: -44,20 - 6811: -44,19 - 6812: -44,19 - 6813: -44,17 - 6814: -44,16 - 6885: -38,14 - 6886: -38,13 - 6887: -38,12 - 6888: -38,12 - 6889: -38,11 - 6890: -38,10 - 6891: -38,10 - 6924: -21,11 - 6925: -21,12 - 6947: -29,14 - 6948: -29,14 - 6949: -29,13 - 6950: -29,12 - 6951: -29,11 - 6952: -29,11 - 6953: -29,10 - 6954: -29,9 - 7057: 26,6 - 7058: 26,5 - 7059: 26,4 - 7062: 19,4 - 7063: 19,5 - 7064: 19,6 - 7076: 20,9 - 7110: 19,-12 - 7111: 19,-11 - 7112: 19,-10 - 7119: 26,-12 - 7120: 26,-11 - 7121: 26,-10 - 7137: 19,-3 - 7151: 25,-1 - 7152: 25,0 - 7153: 25,1 - 7154: 25,2 - 7182: 25,-3 - 7183: 25,-4 - 7184: 25,-5 - 7185: 25,-5 - 7186: 25,-6 - 7329: 28,10 - 7370: 33,4 - 7371: 33,6 - 8005: 79,-21 - 8006: 79,-20 - 8019: 78,-22 - 8020: 78,-19 - 8021: 82,-19 - 8022: 82,-22 - 8027: 66,-19 - 8030: 66,-22 - 8168: 32,-12 - 8169: 32,-10 - 8170: 32,-10 - 8180: 33,-11 - 8181: 33,-13 - 8182: 33,-13 - 8183: 33,-15 - 8192: 33,-9 - 8193: 33,-8 - 8227: 33,-7 - 8300: 42,-8 - 8301: 42,-8 - 8343: 41,-17 - 8349: 39,-17 - 8350: 39,-17 - 8363: 38,-20 - 8364: 38,-20 - 8417: 42,-19 - 8418: 42,-21 - 8439: 54,-21 - 8440: 54,-21 - 8441: 54,-19 - 8442: 54,-19 - 8480: 55,-20 - 8481: 55,-22 - 8482: 55,-23 - 8483: 55,-23 - 8484: 55,-24 - 8485: 55,-24 - 8488: 57,-20 - 8489: 57,-21 - 8592: 55,-28 - 8593: 55,-27 - 8594: 55,-27 - 8595: 55,-26 - 8596: 55,-25 - 8597: 55,-30 - 8598: 55,-17 - 8599: 55,-18 - 8600: 55,-16 - 8601: 55,-15 - 8602: 55,-15 - 8603: 55,-14 - 8604: 55,-13 - 8605: 55,-13 - 8606: 55,-12 - 8678: 64,-19 - 8679: 64,-22 - 8680: 64,-22 - 8822: -2,-23 - 8823: -2,-24 - 8824: -2,-24 - 8825: -2,-27 - 8826: -2,-28 - 8838: 1,-26 - 8839: 1,-25 - 8862: -2,-30 - 8863: -2,-31 - 8864: -2,-32 - 8865: -2,-33 - 8911: -7,-28 - 8912: -15,-28 - 8913: -15,-27 - 8914: -15,-27 - 8933: -14,-23 - 8934: -14,-23 - 8935: -7,-23 - 8977: -7,-28 - 9196: 0,-74 - 9197: 0,-73 - 9198: 0,-73 - 9199: 0,-72 - 9200: 0,-72 - 9201: 0,-68 - 9202: 0,-68 - 9203: 0,-67 - 9204: 0,-67 - 9219: -11,-65 - 9220: -11,-65 - 9221: -11,-68 - 9222: -11,-69 - 9223: -11,-70 - 9224: -11,-71 - 9225: -11,-72 - 9226: -11,-72 - 9227: -11,-73 - 9228: -11,-74 - 9229: -11,-75 - 9230: -11,-76 - 9231: -11,-77 - 9237: -9,-79 - 9238: -9,-80 - 9239: -9,-81 - 9240: -9,-81 - 9286: -7,-71 - 9287: -7,-70 - 9288: -7,-69 - 9289: -7,-69 - 9317: -3,-59 - 9320: -3,-61 - 9321: -3,-61 - 9347: -2,-53 - 9348: -2,-52 - 9349: -2,-52 - 9350: -2,-54 - 9351: -2,-54 - 9352: -2,-51 - 9353: -2,-50 - 9354: -2,-49 - 9355: -2,-49 - 9356: -2,-47 - 9357: -2,-47 - 9358: -2,-46 - 9359: -2,-46 - 9360: -2,-45 - 9361: -2,-45 - 9362: -2,-44 - 9363: -2,-44 - 9364: -2,-43 - 9365: -2,-42 - 9366: -2,-39 - 9367: -2,-38 - 9368: -2,-38 - 9369: 1,-45 - 9384: -2,-56 - 9385: -2,-55 - 9386: -2,-55 - 9457: -42,-15 - 9458: -42,-16 - 9576: 2,-35 - 9637: 1,-39 - 9644: -11,-65 - 10363: 1,-44 - 10394: 1,-51 - 10421: 3,-52 - 10422: 3,-52 - 10423: 3,-51 - 10424: 3,-50 - 10543: 2,-60 - 10544: 2,-60 - 10577: 3,-67 - 10578: 3,-66 - 10579: 3,-75 - 10580: 3,-76 - 10587: 4,-84 - 10588: 4,-85 - 10589: 4,-86 - 10596: 2,-60 - 10630: 43,-41 - 10631: 43,-41 - 10632: 43,-40 - 10633: 43,-39 - 10664: 50,-42 - 10665: 50,-42 - 11249: -60,-42 - 11250: -60,-37 - 11251: -60,-35 - 11252: -60,-35 - 11303: -78,-31 - 11304: -78,-20 - 11309: -78,-31 - 11347: -6,-86 - 11348: -6,-84 - 11349: -6,-85 - 11350: -4,-86 - 11351: -4,-85 - 11352: -4,-84 - 11353: 2,-86 - 11354: 2,-85 - 11355: 2,-84 - 11423: -15,-32 - 11424: -15,-31 - 11425: -15,-30 - 11840: -39,-56 - 11841: -39,-56 - 11850: -42,-53 - 11851: -42,-54 - 11852: -42,-55 - 11856: -36,-53 - 11881: -26,-51 - 12555: -18,-78 - 13376: -44,10 - 13426: -38,-62 - 13427: -38,-61 - 14408: -45,13 - 14939: 6,22 - 14940: 6,23 - 14941: 6,24 - 14966: -8,24 - 14967: -8,23 - 14968: -8,22 - 14970: -20,24 - 14971: -20,23 - 14972: -20,22 - 15240: 43,-20 - 15368: -1,-70 - 15402: -43,5 - 15403: -43,6 - 15415: -40,6 - 15416: -40,5 - 15417: -40,4 - 16406: -60,-49 - 16711: -61,-13 - 16712: -61,-14 - 16742: -60,-17 - 16825: -61,-2 - 16826: -61,-3 - 16845: -53,4 - 16846: -53,5 - 16847: -53,6 - 16860: -56,-9 - 16861: -56,-7 - 17525: 9,75 - 17526: 9,76 - 17527: 9,80 - 17528: 9,81 - 17938: -44,23 - 18494: -17,-10 - 18495: -17,-9 - 18558: 15,-10 - 18559: 15,-9 - 18560: 15,-8 - 19911: -23,13 - 19912: -23,12 - 19913: -23,12 - 19914: -23,11 - 19915: -23,10 - 20026: -15,4 - 20033: -16,0 - 20034: -16,1 - 20035: -16,2 - 20036: -16,3 - 20096: 61,22 - 20097: 61,23 - 20098: 61,24 - 20102: 71,26 - 20157: -21,4 - 20158: -21,5 - 20159: -21,6 - 20210: -20,19 - 20211: -20,18 - 20212: -20,16 - 20213: -20,15 - 20214: -20,15 - 20215: -20,14 - 20216: -20,14 - 20217: -20,13 - 20232: -20,2 - 20233: -20,2 - 20234: -20,1 - 20235: -20,0 - 20236: -20,-1 - 20238: -20,-4 - 20239: -20,-5 - 20240: -20,-6 - 20298: -20,3 - 20300: -17,-1 - 20301: -17,4 - 20302: -17,15 - 20303: -17,14 - 20304: -20,14 - 20305: -20,2 - 20306: -20,3 - 20307: -20,1 - 20308: -20,1 - 20309: -20,8 - 20310: -20,9 + 6784: -17,-1 + 6806: -43,22 + 6807: -44,20 + 6808: -44,20 + 6809: -44,19 + 6810: -44,19 + 6811: -44,17 + 6812: -44,16 + 6883: -38,14 + 6884: -38,13 + 6885: -38,12 + 6886: -38,12 + 6887: -38,11 + 6888: -38,10 + 6889: -38,10 + 6922: -21,11 + 6923: -21,12 + 6945: -29,14 + 6946: -29,14 + 6947: -29,13 + 6948: -29,12 + 6949: -29,11 + 6950: -29,11 + 6951: -29,10 + 6952: -29,9 + 7055: 26,6 + 7056: 26,5 + 7057: 26,4 + 7060: 19,4 + 7061: 19,5 + 7062: 19,6 + 7074: 20,9 + 7108: 19,-12 + 7109: 19,-11 + 7110: 19,-10 + 7117: 26,-12 + 7118: 26,-11 + 7119: 26,-10 + 7135: 19,-3 + 7149: 25,-1 + 7150: 25,0 + 7151: 25,1 + 7152: 25,2 + 7180: 25,-3 + 7181: 25,-4 + 7182: 25,-5 + 7183: 25,-5 + 7184: 25,-6 + 7327: 28,10 + 7368: 33,4 + 7369: 33,6 + 8003: 79,-21 + 8004: 79,-20 + 8017: 78,-22 + 8018: 78,-19 + 8019: 82,-19 + 8020: 82,-22 + 8025: 66,-19 + 8028: 66,-22 + 8166: 32,-12 + 8167: 32,-10 + 8168: 32,-10 + 8178: 33,-11 + 8179: 33,-13 + 8180: 33,-13 + 8181: 33,-15 + 8190: 33,-9 + 8191: 33,-8 + 8225: 33,-7 + 8298: 42,-8 + 8299: 42,-8 + 8341: 41,-17 + 8347: 39,-17 + 8348: 39,-17 + 8361: 38,-20 + 8362: 38,-20 + 8415: 42,-19 + 8416: 42,-21 + 8437: 54,-21 + 8438: 54,-21 + 8439: 54,-19 + 8440: 54,-19 + 8478: 55,-20 + 8479: 55,-22 + 8480: 55,-23 + 8481: 55,-23 + 8482: 55,-24 + 8483: 55,-24 + 8486: 57,-20 + 8487: 57,-21 + 8590: 55,-28 + 8591: 55,-27 + 8592: 55,-27 + 8593: 55,-26 + 8594: 55,-25 + 8595: 55,-30 + 8596: 55,-17 + 8597: 55,-18 + 8598: 55,-16 + 8599: 55,-15 + 8600: 55,-15 + 8601: 55,-14 + 8602: 55,-13 + 8603: 55,-13 + 8604: 55,-12 + 8676: 64,-19 + 8677: 64,-22 + 8678: 64,-22 + 8820: -2,-23 + 8821: -2,-24 + 8822: -2,-24 + 8823: -2,-27 + 8824: -2,-28 + 8836: 1,-26 + 8837: 1,-25 + 8860: -2,-30 + 8861: -2,-31 + 8862: -2,-32 + 8863: -2,-33 + 8909: -7,-28 + 8910: -15,-28 + 8911: -15,-27 + 8912: -15,-27 + 8931: -14,-23 + 8932: -14,-23 + 8933: -7,-23 + 8975: -7,-28 + 9194: 0,-74 + 9195: 0,-73 + 9196: 0,-73 + 9197: 0,-72 + 9198: 0,-72 + 9199: 0,-68 + 9200: 0,-68 + 9201: 0,-67 + 9202: 0,-67 + 9217: -11,-65 + 9218: -11,-65 + 9219: -11,-68 + 9220: -11,-69 + 9221: -11,-70 + 9222: -11,-71 + 9223: -11,-72 + 9224: -11,-72 + 9225: -11,-73 + 9226: -11,-74 + 9227: -11,-75 + 9228: -11,-76 + 9229: -11,-77 + 9235: -9,-79 + 9236: -9,-80 + 9237: -9,-81 + 9238: -9,-81 + 9284: -7,-71 + 9285: -7,-70 + 9286: -7,-69 + 9287: -7,-69 + 9315: -3,-59 + 9318: -3,-61 + 9319: -3,-61 + 9345: -2,-53 + 9346: -2,-52 + 9347: -2,-52 + 9348: -2,-54 + 9349: -2,-54 + 9350: -2,-51 + 9351: -2,-50 + 9352: -2,-49 + 9353: -2,-49 + 9354: -2,-47 + 9355: -2,-47 + 9356: -2,-46 + 9357: -2,-46 + 9358: -2,-45 + 9359: -2,-45 + 9360: -2,-44 + 9361: -2,-44 + 9362: -2,-43 + 9363: -2,-42 + 9364: -2,-39 + 9365: -2,-38 + 9366: -2,-38 + 9367: 1,-45 + 9382: -2,-56 + 9383: -2,-55 + 9384: -2,-55 + 9455: -42,-15 + 9456: -42,-16 + 9574: 2,-35 + 9635: 1,-39 + 9642: -11,-65 + 10361: 1,-44 + 10392: 1,-51 + 10419: 3,-52 + 10420: 3,-52 + 10421: 3,-51 + 10422: 3,-50 + 10541: 2,-60 + 10542: 2,-60 + 10575: 3,-67 + 10576: 3,-66 + 10577: 3,-75 + 10578: 3,-76 + 10585: 4,-84 + 10586: 4,-85 + 10587: 4,-86 + 10594: 2,-60 + 10628: 43,-41 + 10629: 43,-41 + 10630: 43,-40 + 10631: 43,-39 + 10662: 50,-42 + 10663: 50,-42 + 11247: -60,-42 + 11248: -60,-37 + 11249: -60,-35 + 11250: -60,-35 + 11301: -78,-31 + 11302: -78,-20 + 11307: -78,-31 + 11345: -6,-86 + 11346: -6,-84 + 11347: -6,-85 + 11348: -4,-86 + 11349: -4,-85 + 11350: -4,-84 + 11351: 2,-86 + 11352: 2,-85 + 11353: 2,-84 + 11421: -15,-32 + 11422: -15,-31 + 11423: -15,-30 + 11838: -39,-56 + 11839: -39,-56 + 11848: -42,-53 + 11849: -42,-54 + 11850: -42,-55 + 11854: -36,-53 + 11879: -26,-51 + 12553: -18,-78 + 13374: -44,10 + 13424: -38,-62 + 13425: -38,-61 + 14406: -45,13 + 14937: 6,22 + 14938: 6,23 + 14939: 6,24 + 14964: -8,24 + 14965: -8,23 + 14966: -8,22 + 14968: -20,24 + 14969: -20,23 + 14970: -20,22 + 15238: 43,-20 + 15366: -1,-70 + 15400: -43,5 + 15401: -43,6 + 15413: -40,6 + 15414: -40,5 + 15415: -40,4 + 16404: -60,-49 + 16709: -61,-13 + 16710: -61,-14 + 16740: -60,-17 + 16823: -61,-2 + 16824: -61,-3 + 16843: -53,4 + 16844: -53,5 + 16845: -53,6 + 16858: -56,-9 + 16859: -56,-7 + 17523: 9,75 + 17524: 9,76 + 17525: 9,80 + 17526: 9,81 + 17936: -44,23 + 18492: -17,-10 + 18493: -17,-9 + 18556: 15,-10 + 18557: 15,-9 + 18558: 15,-8 + 19909: -23,13 + 19910: -23,12 + 19911: -23,12 + 19912: -23,11 + 19913: -23,10 + 20024: -15,4 + 20031: -16,0 + 20032: -16,1 + 20033: -16,2 + 20034: -16,3 + 20094: 61,22 + 20095: 61,23 + 20096: 61,24 + 20100: 71,26 + 20155: -21,4 + 20156: -21,5 + 20157: -21,6 + 20208: -20,19 + 20209: -20,18 + 20210: -20,16 + 20211: -20,15 + 20212: -20,15 + 20213: -20,14 + 20214: -20,14 + 20215: -20,13 + 20230: -20,2 + 20231: -20,2 + 20232: -20,1 + 20233: -20,0 + 20234: -20,-1 + 20236: -20,-4 + 20237: -20,-5 + 20238: -20,-6 + 20296: -20,3 + 20298: -17,-1 + 20299: -17,4 + 20300: -17,15 + 20301: -17,14 + 20302: -20,14 + 20303: -20,2 + 20304: -20,3 + 20305: -20,1 + 20306: -20,1 + 20307: -20,8 + 20308: -20,9 + 20309: -20,9 + 20310: -20,10 20311: -20,9 - 20312: -20,10 - 20313: -20,9 - 20314: -20,8 - 20315: -20,8 - 21380: 19,14 - 21381: 19,15 - 21383: 28,11 + 20312: -20,8 + 20313: -20,8 + 21378: 19,14 + 21379: 19,15 + 21381: 28,11 - node: cleanable: True color: '#FFFFFFFF' @@ -11098,70 +11093,70 @@ entities: 914: 28,-1 915: 28,0 918: 30,2 - 4067: -20,19 - 4068: -20,18 - 4069: -20,16 - 4070: -20,15 - 4071: -20,14 - 4072: -20,14 - 4073: -20,13 - 4074: -20,10 - 4075: -20,9 - 4076: -20,8 - 4077: -20,8 - 4078: -20,7 + 4065: -20,19 + 4066: -20,18 + 4067: -20,16 + 4068: -20,15 + 4069: -20,14 + 4070: -20,14 + 4071: -20,13 + 4072: -20,10 + 4073: -20,9 + 4074: -20,8 + 4075: -20,8 + 4076: -20,7 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNe decals: - 3895: 27,67 - 9450: -37,2 - 17913: -54,34 - 17915: -54,37 - 17944: -47,42 - 18010: -44,45 - 18033: -58,54 - 18045: -58,58 - 18133: -53,24 + 3893: 27,67 + 9448: -37,2 + 17911: -54,34 + 17913: -54,37 + 17942: -47,42 + 18008: -44,45 + 18031: -58,54 + 18043: -58,58 + 18131: -53,24 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNe decals: - 9546: 38,-34 - 9554: 18,-24 - 9731: 14,-34 - 9941: 24,-38 - 9976: 38,-38 - 9977: 38,-44 - 10108: 14,-38 - 10132: 24,-46 - 10170: 24,-43 - 10194: 34,-47 - 10235: 31,-47 - 10333: 10,-43 - 10337: 6,-43 - 10379: 14,-43 - 19390: 7,65 - 19421: -5,-58 - 19771: 22,-25 - 19779: 26,-27 - 19785: 32,-29 + 9544: 38,-34 + 9552: 18,-24 + 9729: 14,-34 + 9939: 24,-38 + 9974: 38,-38 + 9975: 38,-44 + 10106: 14,-38 + 10130: 24,-46 + 10168: 24,-43 + 10192: 34,-47 + 10233: 31,-47 + 10331: 10,-43 + 10335: 6,-43 + 10377: 14,-43 + 19388: 7,65 + 19419: -5,-58 + 19769: 22,-25 + 19777: 26,-27 + 19783: 32,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNe decals: - 2910: -28,55 - 2994: -37,50 + 2908: -28,55 + 2992: -37,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNe decals: - 5154: 43,30 - 11695: -4,-30 - 11909: -33,-40 - 12090: -22,-24 - 12252: -13,-56 - 12282: -4,-46 + 5152: 43,30 + 11693: -4,-30 + 11907: -33,-40 + 12088: -22,-24 + 12250: -13,-56 + 12280: -4,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNe @@ -11171,68 +11166,68 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNe decals: - 10832: 28,-55 - 10850: 36,-60 - 10878: 41,-60 - 10927: 42,-70 - 10945: 42,-73 + 10830: 28,-55 + 10848: 36,-60 + 10876: 41,-60 + 10925: 42,-70 + 10943: 42,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNe decals: - 19255: 70,16 - 19269: 63,-3 - 19279: 66,-3 + 19253: 70,16 + 19267: 63,-3 + 19277: 66,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNe decals: - 2704: -9,54 - 2812: -5,34 - 3806: 12,70 + 2702: -9,54 + 2810: -5,34 + 3804: 12,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNe decals: - 4380: 10,31 - 4405: 11,37 - 4469: 17,32 - 4558: 11,40 - 4564: 11,46 - 4579: 21,39 - 4610: 22,38 - 4637: 27,32 - 4752: 29,38 - 4772: 15,35 - 4797: 29,44 - 4922: 13,54 - 5170: 43,30 + 4378: 10,31 + 4403: 11,37 + 4467: 17,32 + 4556: 11,40 + 4562: 11,46 + 4577: 21,39 + 4608: 22,38 + 4635: 27,32 + 4750: 29,38 + 4770: 15,35 + 4795: 29,44 + 4920: 13,54 + 5168: 43,30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 16927: -49,-1 - 16997: -63,2 - 17014: -57,-6 - 17050: -51,-6 - 17078: -55,-12 - 17114: -47,-13 - 17148: -47,15 - 17150: -61,15 - 17233: -68,16 - 17329: -57,19 - 17365: -45,-6 - 17386: -63,-6 - 17465: 11,88 - 17472: 7,90 - 17503: 12,82 - 17549: -62,10 - 17621: -66,2 - 17688: -70,12 - 17770: -76,1 - 17816: -67,-10 - 17851: -52,18 - 18196: -55,-1 + 16925: -49,-1 + 16995: -63,2 + 17012: -57,-6 + 17048: -51,-6 + 17076: -55,-12 + 17112: -47,-13 + 17146: -47,15 + 17148: -61,15 + 17231: -68,16 + 17327: -57,19 + 17363: -45,-6 + 17384: -63,-6 + 17463: 11,88 + 17470: 7,90 + 17501: 12,82 + 17547: -62,10 + 17619: -66,2 + 17686: -70,12 + 17768: -76,1 + 17814: -67,-10 + 17849: -52,18 + 18194: -55,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -11240,27 +11235,27 @@ entities: 856: 70,-41 971: 0,-15 1176: 49,-14 - 2063: -22,47 - 2144: -22,29 - 3847: 23,71 - 4155: -23,23 - 4156: -23,23 - 5581: -33,29 - 5583: -30,28 - 6725: -28,-11 - 6744: -28,-11 - 6979: -23,-15 - 8066: 57,-29 - 8067: 57,-16 - 8701: -6,-77 - 8706: -4,-80 - 9484: 74,-49 - 10990: 42,-67 - 10991: 41,-66 - 15359: -3,-69 - 15617: 95,-2 - 15702: 97,7 - 19736: 34,-15 + 2061: -22,47 + 2142: -22,29 + 3845: 23,71 + 4153: -23,23 + 4154: -23,23 + 5579: -33,29 + 5581: -30,28 + 6723: -28,-11 + 6742: -28,-11 + 6977: -23,-15 + 8064: 57,-29 + 8065: 57,-16 + 8699: -6,-77 + 8704: -4,-80 + 9482: 74,-49 + 10988: 42,-67 + 10989: 41,-66 + 15357: -3,-69 + 15615: 95,-2 + 15700: 97,7 + 19734: 34,-15 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw @@ -11270,60 +11265,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 21326: -16,16 + 21324: -16,16 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNw decals: - 3898: 25,67 - 17893: -50,23 - 17923: -57,37 - 17943: -50,42 - 17954: -51,38 - 17955: -60,54 - 17956: -47,55 - 18046: -60,58 + 3896: 25,67 + 17891: -50,23 + 17921: -57,37 + 17941: -50,42 + 17952: -51,38 + 17953: -60,54 + 17954: -47,55 + 18044: -60,58 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNw decals: - 9553: 16,-24 - 9942: 20,-38 - 9978: 30,-38 - 9979: 36,-44 - 10109: 8,-38 - 10133: 20,-46 - 10168: 20,-43 - 10169: 20,-43 - 10195: 32,-47 - 10236: 30,-47 - 10334: 2,-43 - 10349: 8,-43 - 10378: 12,-43 - 19389: 5,65 - 19422: -8,-58 - 19772: 20,-25 - 19778: 24,-27 + 9551: 16,-24 + 9940: 20,-38 + 9976: 30,-38 + 9977: 36,-44 + 10107: 8,-38 + 10131: 20,-46 + 10166: 20,-43 + 10167: 20,-43 + 10193: 32,-47 + 10234: 30,-47 + 10332: 2,-43 + 10347: 8,-43 + 10376: 12,-43 + 19387: 5,65 + 19420: -8,-58 + 19770: 20,-25 + 19776: 24,-27 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNw decals: - 2899: -35,50 - 2904: -34,54 - 2909: -29,55 - 18387: -38,50 + 2897: -35,50 + 2902: -34,54 + 2907: -29,55 + 18385: -38,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNw decals: - 11614: -31,-34 - 11685: -10,-30 - 11910: -34,-40 - 12089: -24,-24 - 12237: -17,-50 - 12251: -20,-56 - 12283: -11,-49 - 12284: -7,-46 + 11612: -31,-34 + 11683: -10,-30 + 11908: -34,-40 + 12087: -24,-24 + 12235: -17,-50 + 12249: -20,-56 + 12281: -11,-49 + 12282: -7,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNw @@ -11333,97 +11328,97 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNw decals: - 10839: 26,-55 - 10849: 34,-60 - 10884: 38,-60 - 10944: 41,-73 + 10837: 26,-55 + 10847: 34,-60 + 10882: 38,-60 + 10942: 41,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNw decals: - 19254: 68,16 - 19268: 60,-3 + 19252: 68,16 + 19266: 60,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNw decals: - 2708: -13,54 - 2811: -7,34 - 3807: 10,70 + 2706: -13,54 + 2809: -7,34 + 3805: 10,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNw decals: - 4372: 2,31 - 4401: 2,37 - 4543: 4,43 - 4557: 9,40 - 4565: 9,46 - 4580: 13,39 - 4620: 13,46 - 4636: 19,32 - 4743: 24,38 - 4773: 19,35 - 4798: 27,44 - 4921: 9,54 - 4946: 15,54 - 20060: 33,39 + 4370: 2,31 + 4399: 2,37 + 4541: 4,43 + 4555: 9,40 + 4563: 9,46 + 4578: 13,39 + 4618: 13,46 + 4634: 19,32 + 4741: 24,38 + 4771: 19,35 + 4796: 27,44 + 4919: 9,54 + 4944: 15,54 + 20058: 33,39 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 4008: -40,54 - 9586: 2,-30 + 4006: -40,54 + 9584: 2,-30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 16929: -51,-1 - 16935: -61,-1 - 16945: -61,2 - 16987: -59,15 - 16996: -64,2 - 17013: -61,-6 - 17075: -61,-12 - 17243: -78,16 - 17328: -61,19 - 17361: -49,-6 - 17429: -77,-6 - 17464: 9,88 - 17555: -65,10 - 17622: -74,2 - 17685: -74,12 - 17736: -78,7 - 17774: -79,1 - 17813: -73,-10 - 17850: -55,18 + 16927: -51,-1 + 16933: -61,-1 + 16943: -61,2 + 16985: -59,15 + 16994: -64,2 + 17011: -61,-6 + 17073: -61,-12 + 17241: -78,16 + 17326: -61,19 + 17359: -49,-6 + 17427: -77,-6 + 17462: 9,88 + 17553: -65,10 + 17620: -74,2 + 17683: -74,12 + 17734: -78,7 + 17772: -79,1 + 17811: -73,-10 + 17848: -55,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 972: -1,-15 1173: 44,-14 - 2064: -16,47 - 2377: -31,32 - 2378: -30,33 - 4158: -25,23 - 5580: -34,29 - 6356: -2,-14 - 6724: -35,-11 - 6743: -35,-11 - 6978: -26,-15 - 8068: 61,-16 - 8069: 61,-29 - 8319: 40,-15 - 8702: -3,-77 - 8705: -5,-80 - 9483: 72,-49 - 10992: 39,-66 - 10993: 38,-67 - 13493: -41,-62 - 15361: -6,-69 - 15686: 91,-3 - 15704: 95,7 + 2062: -16,47 + 2375: -31,32 + 2376: -30,33 + 4156: -25,23 + 5578: -34,29 + 6354: -2,-14 + 6722: -35,-11 + 6741: -35,-11 + 6976: -26,-15 + 8066: 61,-16 + 8067: 61,-29 + 8317: 40,-15 + 8700: -3,-77 + 8703: -5,-80 + 9481: 72,-49 + 10990: 39,-66 + 10991: 38,-67 + 13491: -41,-62 + 15359: -6,-69 + 15684: 91,-3 + 15702: 95,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11434,56 +11429,56 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteCornerSe decals: - 3896: 27,65 - 9451: -37,0 - 17909: -54,32 - 17914: -54,36 - 17946: -47,36 - 18012: -44,44 - 18044: -58,56 + 3894: 27,65 + 9449: -37,0 + 17907: -54,32 + 17912: -54,36 + 17944: -47,36 + 18010: -44,44 + 18042: -58,56 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSe decals: - 9661: 38,-36 - 9730: 14,-36 - 9790: 28,-53 - 9910: 18,-47 - 9940: 24,-41 - 9982: 38,-45 - 9991: 38,-42 - 10092: 32,-27 - 10121: 14,-41 - 10135: 24,-49 - 10191: 34,-53 - 10345: 10,-47 - 10382: 14,-47 - 19392: 7,62 - 19424: -5,-62 - 19786: 32,-30 - 19787: 30,-32 + 9659: 38,-36 + 9728: 14,-36 + 9788: 28,-53 + 9908: 18,-47 + 9938: 24,-41 + 9980: 38,-45 + 9989: 38,-42 + 10090: 32,-27 + 10119: 14,-41 + 10133: 24,-49 + 10189: 34,-53 + 10343: 10,-47 + 10380: 14,-47 + 19390: 7,62 + 19422: -5,-62 + 19784: 32,-30 + 19785: 30,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSe decals: - 2882: -27,46 - 3002: -37,47 + 2880: -27,46 + 3000: -37,47 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSe decals: - 5092: 27,26 - 5156: 43,28 - 11579: -12,-36 - 11580: -12,-36 - 11672: -5,-36 - 11696: -4,-32 - 11697: -4,-32 - 11907: -33,-46 - 11908: -33,-46 - 12235: -13,-54 - 12273: -13,-60 - 12286: -4,-53 + 5090: 27,26 + 5154: 43,28 + 11577: -12,-36 + 11578: -12,-36 + 11670: -5,-36 + 11694: -4,-32 + 11695: -4,-32 + 11905: -33,-46 + 11906: -33,-46 + 12233: -13,-54 + 12271: -13,-60 + 12284: -4,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSe @@ -11493,83 +11488,83 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSe decals: - 10845: 28,-58 - 10858: 36,-72 - 10895: 41,-63 - 10896: 45,-63 - 10928: 42,-71 - 10940: 39,-74 - 10941: 39,-74 - 10942: 42,-74 - 10943: 42,-74 - 10985: 31,-69 + 10843: 28,-58 + 10856: 36,-72 + 10893: 41,-63 + 10894: 45,-63 + 10926: 42,-71 + 10938: 39,-74 + 10939: 39,-74 + 10940: 42,-74 + 10941: 42,-74 + 10983: 31,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSe decals: - 19258: 70,12 - 19273: 63,-6 - 19281: 66,-5 + 19256: 70,12 + 19271: 63,-6 + 19279: 66,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSe decals: - 2702: -9,52 - 2814: -5,32 - 3813: 12,66 + 2700: -9,52 + 2812: -5,32 + 3811: 12,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSe decals: - 4406: 11,34 - 4407: 10,33 - 4460: 10,26 - 4475: 17,26 - 4502: 15,28 - 4533: 7,39 - 4555: 11,39 - 4573: 11,42 - 4607: 22,34 - 4650: 22,26 - 4659: 27,26 - 4748: 29,34 - 4770: 15,37 - 4800: 29,40 - 4935: 13,48 - 5171: 43,28 - 5178: 36,34 + 4404: 11,34 + 4405: 10,33 + 4458: 10,26 + 4473: 17,26 + 4500: 15,28 + 4531: 7,39 + 4553: 11,39 + 4571: 11,42 + 4605: 22,34 + 4648: 22,26 + 4657: 27,26 + 4746: 29,34 + 4768: 15,37 + 4798: 29,40 + 4933: 13,48 + 5169: 43,28 + 5176: 36,34 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 4015: -37,52 + 4013: -37,52 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 16930: -49,-4 - 16965: -51,8 - 16999: -63,0 - 17016: -57,-10 - 17051: -51,-10 - 17059: -52,-18 - 17081: -55,-15 - 17110: -47,-17 - 17199: -47,11 - 17246: -76,13 - 17253: -68,14 - 17320: -57,17 - 17369: -45,-10 - 17387: -63,-8 - 17435: -75,-10 - 17475: 7,87 - 17485: 11,84 - 17554: -62,5 - 17690: -70,10 - 17835: -67,-13 - 18205: -55,-4 - 18259: -52,17 - 18339: -66,-4 + 16928: -49,-4 + 16963: -51,8 + 16997: -63,0 + 17014: -57,-10 + 17049: -51,-10 + 17057: -52,-18 + 17079: -55,-15 + 17108: -47,-17 + 17197: -47,11 + 17244: -76,13 + 17251: -68,14 + 17318: -57,17 + 17367: -45,-10 + 17385: -63,-8 + 17433: -75,-10 + 17473: 7,87 + 17483: 11,84 + 17552: -62,5 + 17688: -70,10 + 17833: -67,-13 + 18203: -55,-4 + 18257: -52,17 + 18337: -66,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -11577,25 +11572,25 @@ entities: 865: 75,-47 974: 0,-16 1182: 49,-17 - 2065: -22,51 - 2143: -22,34 - 3840: 23,69 - 4161: -23,21 - 5584: -30,27 - 5585: -31,26 - 6976: -23,-18 - 8064: 57,-12 - 8065: 57,-25 - 8316: 34,-9 - 8703: -6,-79 - 8708: -4,-76 - 9487: 74,-52 - 10995: 42,-68 - 13494: -40,-63 - 15360: -3,-71 - 15372: -4,-73 - 15610: 95,-5 - 15706: 97,6 + 2063: -22,51 + 2141: -22,34 + 3838: 23,69 + 4159: -23,21 + 5582: -30,27 + 5583: -31,26 + 6974: -23,-18 + 8062: 57,-12 + 8063: 57,-25 + 8314: 34,-9 + 8701: -6,-79 + 8706: -4,-76 + 9485: 74,-52 + 10993: 42,-68 + 13492: -40,-63 + 15358: -3,-71 + 15370: -4,-73 + 15608: 95,-5 + 15704: 97,6 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11611,60 +11606,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 21329: -16,13 - 21330: -13,13 + 21327: -16,13 + 21328: -13,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSw decals: - 9452: -39,0 - 17900: -49,18 - 17910: -56,32 - 17921: -57,35 - 17945: -51,36 - 18043: -60,56 - 18066: -60,44 + 9450: -39,0 + 17898: -49,18 + 17908: -56,32 + 17919: -57,35 + 17943: -51,36 + 18041: -60,56 + 18064: -60,44 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSw decals: - 9789: 26,-53 - 9911: 16,-47 - 9939: 20,-41 - 9980: 30,-42 - 9981: 36,-45 - 10093: 28,-27 - 10124: 8,-41 - 10134: 20,-49 - 10192: 32,-53 - 10193: 32,-53 - 10237: 30,-53 - 10361: 3,-47 - 10380: 12,-45 - 19391: 5,62 - 19423: -8,-62 - 19760: 20,-29 - 19761: 24,-30 - 19762: 26,-32 + 9787: 26,-53 + 9909: 16,-47 + 9937: 20,-41 + 9978: 30,-42 + 9979: 36,-45 + 10091: 28,-27 + 10122: 8,-41 + 10132: 20,-49 + 10190: 32,-53 + 10191: 32,-53 + 10235: 30,-53 + 10359: 3,-47 + 10378: 12,-45 + 19389: 5,62 + 19421: -8,-62 + 19758: 20,-29 + 19759: 24,-30 + 19760: 26,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSw decals: - 2893: -34,46 - 2895: -35,48 + 2891: -34,46 + 2893: -35,48 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSw decals: - 5155: 38,28 - 11615: -31,-36 - 11666: -10,-36 - 11667: -10,-36 - 11906: -34,-46 - 12236: -17,-54 - 12254: -20,-59 - 12260: -19,-60 - 12285: -11,-53 + 5153: 38,28 + 11613: -31,-36 + 11664: -10,-36 + 11665: -10,-36 + 11904: -34,-46 + 12234: -17,-54 + 12252: -20,-59 + 12258: -19,-60 + 12283: -11,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSw @@ -11674,106 +11669,106 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSw decals: - 10844: 26,-58 - 10860: 34,-72 - 10893: 38,-63 - 10894: 43,-63 - 10930: 38,-71 - 10946: 41,-74 - 10947: 41,-74 - 10978: 27,-69 + 10842: 26,-58 + 10858: 34,-72 + 10891: 38,-63 + 10892: 43,-63 + 10928: 38,-71 + 10944: 41,-74 + 10945: 41,-74 + 10976: 27,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSw decals: - 19257: 68,12 - 19272: 60,-6 - 19280: 65,-5 + 19255: 68,12 + 19270: 60,-6 + 19278: 65,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSw decals: - 2710: -13,52 - 2813: -7,32 - 3811: 10,66 + 2708: -13,52 + 2811: -7,32 + 3809: 10,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSw decals: - 4376: 2,26 - 4397: 2,33 - 4462: 12,26 - 4538: 4,39 - 4556: 9,39 - 4569: 9,42 - 4648: 19,26 - 4651: 24,26 - 4742: 24,34 - 4771: 19,37 - 4799: 27,40 - 4930: 9,48 - 14438: -59,9 + 4374: 2,26 + 4395: 2,33 + 4460: 12,26 + 4536: 4,39 + 4554: 9,39 + 4567: 9,42 + 4646: 19,26 + 4649: 24,26 + 4740: 24,34 + 4769: 19,37 + 4797: 27,40 + 4928: 9,48 + 14436: -59,9 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 4012: -40,52 - 9588: 2,-32 - 9589: 3,-36 + 4010: -40,52 + 9586: 2,-32 + 9587: 3,-36 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 16938: -61,-4 - 16966: -54,8 - 16983: -59,9 - 16998: -64,0 - 17015: -61,-10 - 17064: -59,-18 - 17065: -61,-15 - 17106: -50,-18 - 17218: -66,14 - 17245: -78,13 - 17325: -61,17 - 17372: -49,-10 - 17433: -77,-10 - 17476: 5,87 - 17484: 9,84 - 17512: 10,74 - 17556: -65,5 - 17623: -74,-4 - 17689: -74,10 - 17740: -78,3 - 17778: -79,-1 - 17779: -78,-2 - 17834: -73,-13 - 18207: -51,-4 - 18258: -55,17 + 16936: -61,-4 + 16964: -54,8 + 16981: -59,9 + 16996: -64,0 + 17013: -61,-10 + 17062: -59,-18 + 17063: -61,-15 + 17104: -50,-18 + 17216: -66,14 + 17243: -78,13 + 17323: -61,17 + 17370: -49,-10 + 17431: -77,-10 + 17474: 5,87 + 17482: 9,84 + 17510: 10,74 + 17554: -65,5 + 17621: -74,-4 + 17687: -74,10 + 17738: -78,3 + 17776: -79,-1 + 17777: -78,-2 + 17832: -73,-13 + 18205: -51,-4 + 18256: -55,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 973: -1,-16 1179: 44,-17 - 2062: -16,51 - 2358: -29,38 - 3834: 17,69 - 4160: -25,21 - 6360: -2,-17 - 6737: -35,-16 - 6977: -26,-18 - 8062: 61,-12 - 8063: 61,-25 - 8317: 40,-9 - 8318: 40,-9 - 8704: -3,-79 - 8707: -5,-76 - 9488: 72,-52 - 10994: 38,-68 - 15370: -6,-71 - 15371: -5,-73 - 15609: 91,-5 - 15705: 95,6 + 2060: -16,51 + 2356: -29,38 + 3832: 17,69 + 4158: -25,21 + 6358: -2,-17 + 6735: -35,-16 + 6975: -26,-18 + 8060: 61,-12 + 8061: 61,-25 + 8315: 40,-9 + 8316: 40,-9 + 8702: -3,-79 + 8705: -5,-76 + 9486: 72,-52 + 10992: 38,-68 + 15368: -6,-71 + 15369: -5,-73 + 15607: 91,-5 + 15703: 95,6 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE @@ -11784,1500 +11779,1500 @@ entities: color: '#DA8B8BFF' id: BrickTileWhiteEndE decals: - 19242: 70,-4 + 19240: 70,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 8215: 41,-7 + 8213: 41,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndN decals: - 15715: 97,-2 + 15713: 97,-2 - node: color: '#DAA58BFF' id: BrickTileWhiteEndN decals: - 4685: 21,28 - 4686: 25,28 + 4683: 21,28 + 4684: 25,28 - node: color: '#EFB341FF' id: BrickTileWhiteEndN decals: - 17111: -50,-12 + 17109: -50,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 8037: 60,-13 - 8038: 58,-13 - 8039: 60,-26 - 8040: 58,-26 - 8621: 60,-26 - 15685: 95,-2 + 8035: 60,-13 + 8036: 58,-13 + 8037: 60,-26 + 8038: 58,-26 + 8619: 60,-26 + 15683: 95,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndS decals: - 15714: 97,-4 + 15712: 97,-4 - node: color: '#A9DA8BFF' id: BrickTileWhiteEndS decals: - 2886: -31,45 + 2884: -31,45 - node: color: '#DAA58BFF' id: BrickTileWhiteEndS decals: - 4683: 21,30 - 4684: 25,30 + 4681: 21,30 + 4682: 25,30 - node: color: '#EFB341FF' id: BrickTileWhiteEndS decals: - 17107: -50,-18 + 17105: -50,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 8057: 58,-15 - 8058: 60,-15 - 8059: 58,-28 - 8060: 60,-28 + 8055: 58,-15 + 8056: 60,-15 + 8057: 58,-28 + 8058: 60,-28 - node: color: '#B18BDAFF' id: BrickTileWhiteEndW decals: - 11922: -29,-28 - 11923: -29,-30 + 11920: -29,-28 + 11921: -29,-30 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndW decals: - 19241: 69,-4 + 19239: 69,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 2355: -31,38 - 8214: 38,-7 + 2353: -31,38 + 8212: 38,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNe decals: - 17904: -46,18 - 17926: -55,37 - 17933: -55,34 - 17963: -46,51 - 18004: -48,42 - 18005: -47,41 - 18014: -46,45 - 18055: -59,58 - 18056: -58,57 - 18057: -59,54 - 18082: -58,45 - 18150: -53,21 + 17902: -46,18 + 17924: -55,37 + 17931: -55,34 + 17961: -46,51 + 18002: -48,42 + 18003: -47,41 + 18012: -46,45 + 18053: -59,58 + 18054: -58,57 + 18055: -59,54 + 18080: -58,45 + 18148: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNe decals: - 9558: 18,-27 - 9573: 18,-34 - 9574: 21,-34 - 9719: 14,-35 - 9725: 12,-34 - 9799: 29,-34 - 9800: 36,-34 - 9931: 18,-39 - 9932: 18,-44 - 9935: 28,-44 - 9936: 28,-50 - 9952: 24,-39 - 9953: 28,-40 - 9969: 38,-35 - 10009: 37,-44 - 10029: 36,-40 - 10060: 29,-29 - 10123: 14,-39 - 10176: 24,-44 - 10370: 4,-43 - 10371: 9,-43 - 10374: 6,-45 - 10389: 14,-44 - 10618: 49,-33 - 12383: -7,-58 - 15327: 10,-25 - 15341: 17,-40 - 15346: 27,-47 - 15347: 27,-40 - 15351: 27,-35 - 15352: 36,-35 - 15357: 13,-35 - 18465: 17,-31 - 19398: 6,65 - 19425: -5,-60 - 19776: 22,-29 - 19792: 26,-29 + 9556: 18,-27 + 9571: 18,-34 + 9572: 21,-34 + 9717: 14,-35 + 9723: 12,-34 + 9797: 29,-34 + 9798: 36,-34 + 9929: 18,-39 + 9930: 18,-44 + 9933: 28,-44 + 9934: 28,-50 + 9950: 24,-39 + 9951: 28,-40 + 9967: 38,-35 + 10007: 37,-44 + 10027: 36,-40 + 10058: 29,-29 + 10121: 14,-39 + 10174: 24,-44 + 10368: 4,-43 + 10369: 9,-43 + 10372: 6,-45 + 10387: 14,-44 + 10616: 49,-33 + 12381: -7,-58 + 15325: 10,-25 + 15339: 17,-40 + 15344: 27,-47 + 15345: 27,-40 + 15349: 27,-35 + 15350: 36,-35 + 15355: 13,-35 + 18463: 17,-31 + 19396: 6,65 + 19423: -5,-60 + 19774: 22,-29 + 19790: 26,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNe decals: - 2877: -26,48 - 2913: -28,53 - 2916: -28,51 - 2972: -32,53 - 2973: -30,53 - 2974: -28,50 - 2997: -37,49 + 2875: -26,48 + 2911: -28,53 + 2914: -28,51 + 2970: -32,53 + 2971: -30,53 + 2972: -28,50 + 2995: -37,49 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNe decals: - 5098: 21,32 - 5103: 27,31 - 5181: 36,37 - 11531: -15,-34 - 11532: -13,-34 - 11608: -22,-34 - 11609: -22,-34 - 11651: -12,-35 - 11652: -12,-35 - 11676: -5,-35 - 11677: -6,-30 - 11678: -6,-30 - 11828: -13,-41 - 11919: -29,-34 - 11950: -28,-27 - 11951: -28,-31 - 11952: -29,-29 - 12104: -23,-24 - 12105: -22,-26 - 12106: -22,-31 - 12212: -24,-39 - 12248: -13,-50 - 12274: -16,-56 - 12277: -13,-59 - 12304: -10,-49 - 12311: -4,-48 - 12312: -6,-46 - 12338: -18,-40 - 12650: -7,-32 - 12751: -7,-32 - 12752: -7,-32 - 15275: -8,-25 - 15285: -24,-35 - 15288: -23,-26 - 15289: -14,-35 - 15294: -14,-47 - 15297: -14,-39 - 15298: -29,-39 - 20065: 34,39 + 5096: 21,32 + 5101: 27,31 + 5179: 36,37 + 11529: -15,-34 + 11530: -13,-34 + 11606: -22,-34 + 11607: -22,-34 + 11649: -12,-35 + 11650: -12,-35 + 11674: -5,-35 + 11675: -6,-30 + 11676: -6,-30 + 11826: -13,-41 + 11917: -29,-34 + 11948: -28,-27 + 11949: -28,-31 + 11950: -29,-29 + 12102: -23,-24 + 12103: -22,-26 + 12104: -22,-31 + 12210: -24,-39 + 12246: -13,-50 + 12272: -16,-56 + 12275: -13,-59 + 12302: -10,-49 + 12309: -4,-48 + 12310: -6,-46 + 12336: -18,-40 + 12648: -7,-32 + 12749: -7,-32 + 12750: -7,-32 + 15273: -8,-25 + 15283: -24,-35 + 15286: -23,-26 + 15287: -14,-35 + 15292: -14,-47 + 15295: -14,-39 + 15296: -29,-39 + 20063: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNe decals: - 10843: 28,-56 - 10880: 41,-62 - 10907: 36,-62 - 10912: 36,-70 - 10983: 28,-69 + 10841: 28,-56 + 10878: 41,-62 + 10905: 36,-62 + 10910: 36,-70 + 10981: 28,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNe decals: - 7633: 61,-3 - 7634: 65,-3 - 19260: 70,13 - 19270: 63,-4 + 7631: 61,-3 + 7632: 65,-3 + 19258: 70,13 + 19268: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNe decals: - 3817: 12,67 + 3815: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNe decals: - 4383: 10,30 - 4384: 10,28 - 4389: 9,31 - 4416: 10,37 - 4417: 11,36 - 4424: 4,31 - 4446: 8,29 - 4483: 15,32 - 4507: 16,31 - 4560: 10,40 - 4575: 11,43 - 4578: 11,45 - 4611: 21,38 - 4631: 22,36 - 4635: 21,32 - 4664: 27,31 - 4720: 20,30 - 4721: 26,30 - 4722: 26,29 - 4727: 22,29 - 4735: 21,29 - 4769: 27,37 - 4788: 18,37 - 4789: 19,36 - 4790: 28,38 - 4829: 9,35 - 4834: 5,37 - 4869: 32,49 - 4870: 38,49 - 4907: 25,41 - 4911: 25,52 - 4920: 10,54 - 4939: 13,50 - 4942: 13,53 - 4949: 17,54 - 5068: 17,45 - 5069: 17,43 - 5070: 17,41 - 5071: 22,41 - 5072: 22,43 - 5073: 22,45 - 5074: 22,47 - 5075: 22,49 - 5076: 22,51 - 7008: 8,29 - 19931: 25,29 - 19935: 24,30 + 4381: 10,30 + 4382: 10,28 + 4387: 9,31 + 4414: 10,37 + 4415: 11,36 + 4422: 4,31 + 4444: 8,29 + 4481: 15,32 + 4505: 16,31 + 4558: 10,40 + 4573: 11,43 + 4576: 11,45 + 4609: 21,38 + 4629: 22,36 + 4633: 21,32 + 4662: 27,31 + 4718: 20,30 + 4719: 26,30 + 4720: 26,29 + 4725: 22,29 + 4733: 21,29 + 4767: 27,37 + 4786: 18,37 + 4787: 19,36 + 4788: 28,38 + 4827: 9,35 + 4832: 5,37 + 4867: 32,49 + 4868: 38,49 + 4905: 25,41 + 4909: 25,52 + 4918: 10,54 + 4937: 13,50 + 4940: 13,53 + 4947: 17,54 + 5066: 17,45 + 5067: 17,43 + 5068: 17,41 + 5069: 22,41 + 5070: 22,43 + 5071: 22,45 + 5072: 22,47 + 5073: 22,49 + 5074: 22,51 + 7006: 8,29 + 19929: 25,29 + 19933: 24,30 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNe decals: - 4010: -39,54 - 9600: 8,-36 - 9603: 5,-30 - 9626: 6,-32 - 9635: 8,-34 + 4008: -39,54 + 9598: 8,-36 + 9601: 5,-30 + 9624: 6,-32 + 9633: 8,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 16921: -49,1 - 16922: -52,2 - 16995: -63,1 - 17022: -58,-6 - 17023: -57,-7 - 17024: -57,-9 - 17037: -58,-12 - 17090: -52,-15 - 17118: -50,-13 - 17149: -52,15 - 17195: -47,14 - 17198: -47,12 - 17202: -50,9 - 17207: -58,15 - 17229: -61,14 - 17232: -68,15 - 17342: -51,-7 - 17383: -52,-6 - 17384: -63,-7 - 17417: -71,-6 - 17418: -69,-6 - 17467: 10,88 - 17471: 5,90 - 17492: 11,87 - 17515: 10,82 - 17516: 12,78 - 17645: -73,2 - 17646: -66,1 - 17701: -72,12 - 17772: -77,1 - 17788: -76,0 - 17818: -69,-10 - 17853: -53,18 - 19940: -49,-3 + 16919: -49,1 + 16920: -52,2 + 16993: -63,1 + 17020: -58,-6 + 17021: -57,-7 + 17022: -57,-9 + 17035: -58,-12 + 17088: -52,-15 + 17116: -50,-13 + 17147: -52,15 + 17193: -47,14 + 17196: -47,12 + 17200: -50,9 + 17205: -58,15 + 17227: -61,14 + 17230: -68,15 + 17340: -51,-7 + 17381: -52,-6 + 17382: -63,-7 + 17415: -71,-6 + 17416: -69,-6 + 17465: 10,88 + 17469: 5,90 + 17490: 11,87 + 17513: 10,82 + 17514: 12,78 + 17643: -73,2 + 17644: -66,1 + 17699: -72,12 + 17770: -77,1 + 17786: -76,0 + 17816: -69,-10 + 17851: -53,18 + 19938: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2357: -30,38 - 2369: -29,30 - 5591: -33,28 - 5592: -33,28 - 5596: -31,28 - 6700: -32,1 - 6703: -32,-2 - 6718: -24,-2 - 6748: -32,-11 - 6770: -35,-16 - 6983: -23,-16 - 8094: 60,-12 - 8095: 60,-25 - 8096: 61,-26 - 8097: 61,-13 - 8333: 39,-10 - 8335: 39,-13 - 8336: 39,-13 - 8370: 46,-14 - 8724: -4,-77 - 8725: -1,-76 - 8726: -6,-76 - 8727: -6,-80 - 8728: -1,-80 - 8947: -4,-25 - 9108: 14,-25 - 9494: 73,-49 - 9500: 73,-42 - 10364: 0,-44 - 10693: 75,-45 - 11001: 41,-67 - 15035: -19,19 - 15036: -13,23 - 15037: -3,23 - 15038: 4,23 - 15039: 14,23 - 15040: 17,19 - 15053: -21,34 - 15054: -19,36 - 15055: -19,32 - 15056: -19,29 - 15064: -19,48 - 15065: -16,50 - 15066: -17,51 - 15067: -21,51 - 15068: -19,52 - 15071: -23,41 - 15072: -10,49 - 15073: -5,49 - 15110: -30,95 - 15111: -30,88 - 15120: -30,82 - 15121: -30,75 - 15152: -29,68 - 15153: -24,68 - 15154: -18,68 - 15155: -11,68 - 15156: -12,75 - 15157: -12,82 - 15158: -12,88 - 15159: -12,95 - 15160: -4,68 - 15161: 2,68 - 15162: -5,64 - 15163: 7,68 - 15164: 6,75 - 15165: 6,82 - 15167: -4,57 - 15168: 2,57 - 15169: -11,57 - 15170: -18,57 - 15171: -19,64 - 15181: 17,12 - 15182: 24,5 - 15183: 31,5 - 15194: 24,-11 - 15195: 30,-11 - 15198: 17,-12 - 15199: 13,-20 - 15200: 6,-20 - 15201: -5,-20 - 15202: -12,-20 - 15203: -19,-12 - 15204: -19,-2 - 15205: -19,5 - 15206: -23,5 - 15207: -19,12 - 15208: -31,5 - 15209: -36,5 - 15248: 47,-20 - 15249: 52,-20 - 15250: 17,5 - 15319: -1,-31 - 15320: -1,-24 - 15321: -1,-39 - 15322: -1,-44 - 15323: -1,-52 - 15326: -1,-59 - 15475: -42,17 - 15476: -42,22 - 15477: -42,11 - 15618: 95,-3 - 18845: 7,-9 - 18846: 13,-9 - 18852: -12,-9 - 18853: -6,-9 - 18860: 1,-9 - 19750: 40,-10 - 19755: 39,-9 - 20021: 17,-2 - 20285: -19,19 - 20286: -19,12 - 20287: -19,5 - 20288: -19,-2 + 2355: -30,38 + 2367: -29,30 + 5589: -33,28 + 5590: -33,28 + 5594: -31,28 + 6698: -32,1 + 6701: -32,-2 + 6716: -24,-2 + 6746: -32,-11 + 6768: -35,-16 + 6981: -23,-16 + 8092: 60,-12 + 8093: 60,-25 + 8094: 61,-26 + 8095: 61,-13 + 8331: 39,-10 + 8333: 39,-13 + 8334: 39,-13 + 8368: 46,-14 + 8722: -4,-77 + 8723: -1,-76 + 8724: -6,-76 + 8725: -6,-80 + 8726: -1,-80 + 8945: -4,-25 + 9106: 14,-25 + 9492: 73,-49 + 9498: 73,-42 + 10362: 0,-44 + 10691: 75,-45 + 10999: 41,-67 + 15033: -19,19 + 15034: -13,23 + 15035: -3,23 + 15036: 4,23 + 15037: 14,23 + 15038: 17,19 + 15051: -21,34 + 15052: -19,36 + 15053: -19,32 + 15054: -19,29 + 15062: -19,48 + 15063: -16,50 + 15064: -17,51 + 15065: -21,51 + 15066: -19,52 + 15069: -23,41 + 15070: -10,49 + 15071: -5,49 + 15108: -30,95 + 15109: -30,88 + 15118: -30,82 + 15119: -30,75 + 15150: -29,68 + 15151: -24,68 + 15152: -18,68 + 15153: -11,68 + 15154: -12,75 + 15155: -12,82 + 15156: -12,88 + 15157: -12,95 + 15158: -4,68 + 15159: 2,68 + 15160: -5,64 + 15161: 7,68 + 15162: 6,75 + 15163: 6,82 + 15165: -4,57 + 15166: 2,57 + 15167: -11,57 + 15168: -18,57 + 15169: -19,64 + 15179: 17,12 + 15180: 24,5 + 15181: 31,5 + 15192: 24,-11 + 15193: 30,-11 + 15196: 17,-12 + 15197: 13,-20 + 15198: 6,-20 + 15199: -5,-20 + 15200: -12,-20 + 15201: -19,-12 + 15202: -19,-2 + 15203: -19,5 + 15204: -23,5 + 15205: -19,12 + 15206: -31,5 + 15207: -36,5 + 15246: 47,-20 + 15247: 52,-20 + 15248: 17,5 + 15317: -1,-31 + 15318: -1,-24 + 15319: -1,-39 + 15320: -1,-44 + 15321: -1,-52 + 15324: -1,-59 + 15473: -42,17 + 15474: -42,22 + 15475: -42,11 + 15616: 95,-3 + 18843: 7,-9 + 18844: 13,-9 + 18850: -12,-9 + 18851: -6,-9 + 18858: 1,-9 + 19748: 40,-10 + 19753: 39,-9 + 20019: 17,-2 + 20283: -19,19 + 20284: -19,12 + 20285: -19,5 + 20286: -19,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNw decals: - 15717: 97,-3 - 17897: -50,21 - 17925: -55,37 - 17969: -46,55 - 18001: -50,41 - 18003: -48,42 - 18007: -50,38 - 18050: -59,54 - 18051: -60,57 - 18054: -59,58 - 18064: -60,48 - 18065: -60,50 - 18083: -47,45 + 15715: 97,-3 + 17895: -50,21 + 17923: -55,37 + 17967: -46,55 + 17999: -50,41 + 18001: -48,42 + 18005: -50,38 + 18048: -59,54 + 18049: -60,57 + 18052: -59,58 + 18062: -60,48 + 18063: -60,50 + 18081: -47,45 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNw decals: - 9557: 16,-25 - 9575: 21,-34 - 9714: 16,-35 - 9722: 16,-31 - 9724: 12,-34 - 9737: 10,-36 - 9798: 29,-34 - 9801: 36,-34 - 9927: 16,-44 - 9928: 16,-39 - 9933: 26,-44 - 9937: 26,-39 - 9951: 20,-39 - 10008: 37,-44 - 10010: 30,-40 - 10028: 32,-40 - 10058: 29,-29 - 10059: 29,-29 - 10175: 20,-44 - 10204: 32,-51 - 10205: 32,-49 - 10244: 30,-50 - 10368: 4,-43 - 10369: 9,-43 - 10373: 8,-45 - 10375: 2,-44 - 10392: 14,-47 - 10629: 43,-33 - 12382: -7,-58 - 15328: 6,-25 - 15340: 17,-40 - 15345: 27,-47 - 15348: 27,-40 - 15349: 22,-35 - 15350: 31,-35 - 15356: 11,-35 - 18464: 17,-31 - 19396: 5,64 - 19397: 6,65 - 19774: 20,-27 - 19775: 24,-29 + 9555: 16,-25 + 9573: 21,-34 + 9712: 16,-35 + 9720: 16,-31 + 9722: 12,-34 + 9735: 10,-36 + 9796: 29,-34 + 9799: 36,-34 + 9925: 16,-44 + 9926: 16,-39 + 9931: 26,-44 + 9935: 26,-39 + 9949: 20,-39 + 10006: 37,-44 + 10008: 30,-40 + 10026: 32,-40 + 10056: 29,-29 + 10057: 29,-29 + 10173: 20,-44 + 10202: 32,-51 + 10203: 32,-49 + 10242: 30,-50 + 10366: 4,-43 + 10367: 9,-43 + 10371: 8,-45 + 10373: 2,-44 + 10390: 14,-47 + 10627: 43,-33 + 12380: -7,-58 + 15326: 6,-25 + 15338: 17,-40 + 15343: 27,-47 + 15346: 27,-40 + 15347: 22,-35 + 15348: 31,-35 + 15354: 11,-35 + 18462: 17,-31 + 19394: 5,64 + 19395: 6,65 + 19772: 20,-27 + 19773: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNw decals: - 2898: -35,49 - 2900: -34,50 - 2911: -29,54 - 2919: -26,51 - 2969: -28,50 - 2970: -30,53 - 2971: -32,53 - 3008: -38,46 + 2896: -35,49 + 2898: -34,50 + 2909: -29,54 + 2917: -26,51 + 2967: -28,50 + 2968: -30,53 + 2969: -32,53 + 3006: -38,46 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNw decals: - 5096: 20,32 - 11529: -15,-34 - 11530: -13,-34 - 11607: -24,-34 - 11679: -6,-30 - 11680: -6,-30 - 11704: -10,-34 - 11705: -10,-35 - 11825: -15,-40 - 11918: -29,-34 - 11949: -30,-27 - 12103: -23,-24 - 12211: -25,-39 - 12246: -17,-51 - 12263: -20,-58 - 12275: -16,-56 - 12303: -10,-49 - 12307: -11,-50 - 12313: -6,-46 - 12337: -20,-40 - 12649: -8,-32 - 12750: -8,-32 - 15274: -12,-25 - 15283: -23,-26 - 15284: -29,-35 - 15290: -18,-35 - 15295: -14,-47 - 15296: -14,-39 - 15299: -29,-39 - 20064: 34,39 + 5094: 20,32 + 11527: -15,-34 + 11528: -13,-34 + 11605: -24,-34 + 11677: -6,-30 + 11678: -6,-30 + 11702: -10,-34 + 11703: -10,-35 + 11823: -15,-40 + 11916: -29,-34 + 11947: -30,-27 + 12101: -23,-24 + 12209: -25,-39 + 12244: -17,-51 + 12261: -20,-58 + 12273: -16,-56 + 12301: -10,-49 + 12305: -11,-50 + 12311: -6,-46 + 12335: -20,-40 + 12647: -8,-32 + 12748: -8,-32 + 15272: -12,-25 + 15281: -23,-26 + 15282: -29,-35 + 15288: -18,-35 + 15293: -14,-47 + 15294: -14,-39 + 15297: -29,-39 + 20062: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNw decals: - 10842: 26,-56 - 10882: 38,-62 - 10899: 43,-62 - 10911: 34,-61 - 10915: 34,-68 - 10988: 30,-69 + 10840: 26,-56 + 10880: 38,-62 + 10897: 43,-62 + 10909: 34,-61 + 10913: 34,-68 + 10986: 30,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNw decals: - 7631: 61,-3 - 7632: 65,-3 - 19284: 65,-4 + 7629: 61,-3 + 7630: 65,-3 + 19282: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNw decals: - 3816: 10,68 + 3814: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNw decals: - 4371: 7,31 - 4382: 2,29 - 4415: 10,37 - 4423: 4,31 - 4447: 4,29 - 4467: 15,28 - 4505: 13,27 - 4506: 16,31 - 4540: 4,40 - 4551: 7,43 - 4559: 10,40 - 4596: 13,36 - 4623: 15,46 - 4624: 13,45 - 4625: 13,43 - 4634: 20,32 - 4718: 20,29 - 4719: 20,30 - 4723: 26,30 - 4728: 24,29 - 4733: 21,29 - 4734: 22,30 - 4739: 24,36 - 4768: 26,37 - 4786: 16,37 - 4787: 15,36 - 4791: 28,38 - 4828: 4,35 - 4833: 5,37 - 4874: 34,49 - 4919: 10,54 - 4948: 17,54 - 4953: 15,53 - 4961: 24,54 - 5059: 19,51 - 5060: 19,49 - 5061: 19,47 - 5062: 19,45 - 5063: 19,43 - 5064: 19,41 - 5065: 16,41 - 5066: 16,43 - 5067: 16,45 - 7007: 4,29 - 19930: 25,29 + 4369: 7,31 + 4380: 2,29 + 4413: 10,37 + 4421: 4,31 + 4445: 4,29 + 4465: 15,28 + 4503: 13,27 + 4504: 16,31 + 4538: 4,40 + 4549: 7,43 + 4557: 10,40 + 4594: 13,36 + 4621: 15,46 + 4622: 13,45 + 4623: 13,43 + 4632: 20,32 + 4716: 20,29 + 4717: 20,30 + 4721: 26,30 + 4726: 24,29 + 4731: 21,29 + 4732: 22,30 + 4737: 24,36 + 4766: 26,37 + 4784: 16,37 + 4785: 15,36 + 4789: 28,38 + 4826: 4,35 + 4831: 5,37 + 4872: 34,49 + 4917: 10,54 + 4946: 17,54 + 4951: 15,53 + 4959: 24,54 + 5057: 19,51 + 5058: 19,49 + 5059: 19,47 + 5060: 19,45 + 5061: 19,43 + 5062: 19,41 + 5063: 16,41 + 5064: 16,43 + 5065: 16,45 + 7005: 4,29 + 19928: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNw decals: - 4009: -39,54 - 9595: 3,-35 - 9602: 5,-30 - 9625: 5,-32 + 4007: -39,54 + 9593: 3,-35 + 9600: 5,-30 + 9623: 5,-32 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNw decals: - 16923: -53,2 - 16925: -49,2 - 16946: -61,1 - 16994: -64,1 - 17025: -58,-6 - 17028: -61,-7 - 17036: -58,-12 - 17087: -54,-12 - 17095: -50,-15 - 17102: -59,-17 - 17203: -55,15 - 17206: -58,15 - 17208: -59,14 - 17211: -59,10 - 17256: -78,14 - 17343: -49,-7 - 17382: -55,-9 - 17415: -71,-6 - 17416: -69,-6 - 17457: 5,90 - 17466: 10,88 - 17499: 10,81 - 17514: 10,76 - 17644: -73,2 - 17649: -74,0 - 17700: -72,12 - 17748: -77,7 - 17771: -77,1 - 17777: -79,0 - 17817: -71,-10 - 17852: -54,18 + 16921: -53,2 + 16923: -49,2 + 16944: -61,1 + 16992: -64,1 + 17023: -58,-6 + 17026: -61,-7 + 17034: -58,-12 + 17085: -54,-12 + 17093: -50,-15 + 17100: -59,-17 + 17201: -55,15 + 17204: -58,15 + 17206: -59,14 + 17209: -59,10 + 17254: -78,14 + 17341: -49,-7 + 17380: -55,-9 + 17413: -71,-6 + 17414: -69,-6 + 17455: 5,90 + 17464: 10,88 + 17497: 10,81 + 17512: 10,76 + 17642: -73,2 + 17647: -74,0 + 17698: -72,12 + 17746: -77,7 + 17769: -77,1 + 17775: -79,0 + 17815: -71,-10 + 17850: -54,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2356: -30,38 - 2810: -7,33 - 5593: -31,28 - 5594: -31,28 - 5595: -34,26 - 6357: -2,-16 - 6716: -24,-2 - 6717: -24,-2 - 6747: -33,-11 - 6769: -30,-16 - 8090: 58,-25 - 8091: 57,-26 - 8092: 57,-13 - 8093: 58,-12 - 8331: 35,-10 - 8332: 35,-10 - 8334: 35,-13 - 8371: 46,-14 - 8719: -8,-76 - 8720: -5,-77 - 8721: -3,-76 - 8722: -8,-80 - 8723: -3,-80 - 9111: 2,-25 - 9492: 72,-50 - 9493: 73,-49 - 9499: 73,-42 - 10685: 72,-50 - 10999: 39,-67 - 11000: 39,-67 - 15030: 11,23 - 15031: 1,23 - 15032: -6,23 - 15033: -16,23 - 15034: -19,19 - 15041: 17,19 - 15049: -21,34 - 15050: -19,36 - 15051: -19,32 - 15052: -19,29 - 15057: -22,33 - 15060: -22,50 - 15061: -21,51 - 15062: -19,52 - 15063: -17,51 - 15069: -19,48 - 15070: -23,41 - 15074: -11,49 - 15075: -6,49 - 15088: -20,57 - 15089: -13,57 - 15090: -6,57 - 15091: 0,57 - 15092: -5,64 - 15093: -6,68 - 15094: 0,68 - 15095: 5,68 - 15096: 6,75 - 15097: 6,82 - 15098: -13,68 - 15099: -12,75 - 15100: -12,82 - 15101: -12,88 - 15102: -12,95 - 15103: -26,68 - 15104: -20,68 - 15105: -31,68 - 15106: -30,75 - 15107: -30,82 - 15108: -30,88 - 15109: -30,95 - 15172: -19,64 - 15178: 17,12 - 15179: 21,5 - 15180: 28,5 - 15193: 21,-11 - 15196: 28,-11 - 15197: 17,-12 - 15210: -38,5 - 15211: -38,5 - 15212: -33,5 - 15213: -27,5 - 15224: -19,-12 - 15225: -19,-2 - 15226: -19,5 - 15236: 3,-20 - 15237: -8,-20 - 15238: -15,-20 - 15246: 44,-20 - 15247: 49,-20 - 15251: 17,5 - 15252: -10,14 - 15315: -1,-39 - 15316: -1,-44 - 15317: -1,-31 - 15318: -1,-24 - 15324: -1,-52 - 15325: -1,-59 - 15478: -42,11 - 15479: -42,17 - 15480: -42,22 - 15690: 95,-3 - 18841: -9,-9 - 18842: -3,-9 - 18843: 4,-9 - 18844: 10,-9 - 18851: -15,-9 - 19554: -19,12 - 19557: 10,-20 - 19748: 35,-9 - 19749: 34,-10 - 20020: 17,-2 - 20281: -19,-2 - 20282: -19,5 - 20283: -19,12 - 20284: -19,19 + 2354: -30,38 + 2808: -7,33 + 5591: -31,28 + 5592: -31,28 + 5593: -34,26 + 6355: -2,-16 + 6714: -24,-2 + 6715: -24,-2 + 6745: -33,-11 + 6767: -30,-16 + 8088: 58,-25 + 8089: 57,-26 + 8090: 57,-13 + 8091: 58,-12 + 8329: 35,-10 + 8330: 35,-10 + 8332: 35,-13 + 8369: 46,-14 + 8717: -8,-76 + 8718: -5,-77 + 8719: -3,-76 + 8720: -8,-80 + 8721: -3,-80 + 9109: 2,-25 + 9490: 72,-50 + 9491: 73,-49 + 9497: 73,-42 + 10683: 72,-50 + 10997: 39,-67 + 10998: 39,-67 + 15028: 11,23 + 15029: 1,23 + 15030: -6,23 + 15031: -16,23 + 15032: -19,19 + 15039: 17,19 + 15047: -21,34 + 15048: -19,36 + 15049: -19,32 + 15050: -19,29 + 15055: -22,33 + 15058: -22,50 + 15059: -21,51 + 15060: -19,52 + 15061: -17,51 + 15067: -19,48 + 15068: -23,41 + 15072: -11,49 + 15073: -6,49 + 15086: -20,57 + 15087: -13,57 + 15088: -6,57 + 15089: 0,57 + 15090: -5,64 + 15091: -6,68 + 15092: 0,68 + 15093: 5,68 + 15094: 6,75 + 15095: 6,82 + 15096: -13,68 + 15097: -12,75 + 15098: -12,82 + 15099: -12,88 + 15100: -12,95 + 15101: -26,68 + 15102: -20,68 + 15103: -31,68 + 15104: -30,75 + 15105: -30,82 + 15106: -30,88 + 15107: -30,95 + 15170: -19,64 + 15176: 17,12 + 15177: 21,5 + 15178: 28,5 + 15191: 21,-11 + 15194: 28,-11 + 15195: 17,-12 + 15208: -38,5 + 15209: -38,5 + 15210: -33,5 + 15211: -27,5 + 15222: -19,-12 + 15223: -19,-2 + 15224: -19,5 + 15234: 3,-20 + 15235: -8,-20 + 15236: -15,-20 + 15244: 44,-20 + 15245: 49,-20 + 15249: 17,5 + 15250: -10,14 + 15313: -1,-39 + 15314: -1,-44 + 15315: -1,-31 + 15316: -1,-24 + 15322: -1,-52 + 15323: -1,-59 + 15476: -42,11 + 15477: -42,17 + 15478: -42,22 + 15688: 95,-3 + 18839: -9,-9 + 18840: -3,-9 + 18841: 4,-9 + 18842: 10,-9 + 18849: -15,-9 + 19552: -19,12 + 19555: 10,-20 + 19746: 35,-9 + 19747: 34,-10 + 20018: 17,-2 + 20279: -19,-2 + 20280: -19,5 + 20281: -19,12 + 20282: -19,19 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe decals: - 17887: -46,23 - 17931: -55,32 - 17932: -55,36 - 17964: -46,51 - 17999: -48,44 - 18006: -47,41 - 18049: -59,56 - 18053: -58,57 - 18076: -56,44 - 18077: -54,44 - 18148: -53,21 + 17885: -46,23 + 17929: -55,32 + 17930: -55,36 + 17962: -46,51 + 17997: -48,44 + 18004: -47,41 + 18047: -59,56 + 18051: -58,57 + 18074: -56,44 + 18075: -54,44 + 18146: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSe decals: - 9572: 18,-28 - 9705: 18,-36 - 9718: 14,-35 - 9792: 27,-53 - 9793: 28,-50 - 9794: 28,-44 - 9795: 28,-40 - 9796: 28,-36 - 9913: 17,-47 - 9920: 18,-40 - 9921: 18,-44 - 9950: 24,-40 - 9970: 38,-35 - 9971: 38,-35 - 10007: 37,-42 - 10031: 36,-40 - 10046: 30,-30 - 10096: 29,-27 - 10100: 29,-32 - 10122: 14,-40 - 10126: 24,-45 - 10144: 22,-49 - 10145: 25,-43 - 10174: 24,-44 - 10230: 31,-53 - 10359: 9,-41 - 10360: 4,-47 - 10390: 14,-44 - 10619: 49,-33 - 15330: 10,-26 - 15331: 13,-35 - 15332: 17,-34 - 15333: 27,-35 - 15334: 36,-35 - 15335: 27,-44 - 15336: 27,-51 - 15337: 17,-45 - 19426: -5,-60 + 9570: 18,-28 + 9703: 18,-36 + 9716: 14,-35 + 9790: 27,-53 + 9791: 28,-50 + 9792: 28,-44 + 9793: 28,-40 + 9794: 28,-36 + 9911: 17,-47 + 9918: 18,-40 + 9919: 18,-44 + 9948: 24,-40 + 9968: 38,-35 + 9969: 38,-35 + 10005: 37,-42 + 10029: 36,-40 + 10044: 30,-30 + 10094: 29,-27 + 10098: 29,-32 + 10120: 14,-40 + 10124: 24,-45 + 10142: 22,-49 + 10143: 25,-43 + 10172: 24,-44 + 10228: 31,-53 + 10357: 9,-41 + 10358: 4,-47 + 10388: 14,-44 + 10617: 49,-33 + 15328: 10,-26 + 15329: 13,-35 + 15330: 17,-34 + 15331: 27,-35 + 15332: 36,-35 + 15333: 27,-44 + 15334: 27,-51 + 15335: 17,-45 + 19424: -5,-60 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSe decals: - 2883: -27,47 - 2884: -31,46 - 2890: -32,46 - 2914: -28,53 - 2967: -30,47 - 2968: -28,47 - 2998: -37,49 - 3001: -38,47 + 2881: -27,47 + 2882: -31,46 + 2888: -32,46 + 2912: -28,53 + 2965: -30,47 + 2966: -28,47 + 2996: -37,49 + 2999: -38,47 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSe decals: - 5102: 27,31 - 5105: 22,27 - 5179: 35,34 - 5182: 36,37 - 11650: -12,-35 - 11675: -5,-35 - 11694: -5,-32 - 11699: -7,-36 - 11702: -12,-34 - 11803: -13,-36 - 11827: -13,-41 - 11913: -29,-36 - 11914: -24,-36 - 11944: -28,-31 - 11945: -29,-29 - 11946: -29,-29 - 11947: -28,-27 - 12107: -22,-31 - 12108: -22,-26 - 12210: -24,-41 - 12247: -13,-50 - 12250: -16,-54 - 12278: -13,-59 - 12310: -4,-48 - 12318: -6,-53 - 12340: -19,-44 - 12647: -7,-34 - 12748: -7,-34 - 12749: -7,-34 - 15277: -8,-26 - 15278: -14,-35 - 15279: -14,-43 - 15280: -14,-53 - 15281: -24,-35 - 15282: -23,-30 - 15301: -29,-41 - 20068: 36,39 + 5100: 27,31 + 5103: 22,27 + 5177: 35,34 + 5180: 36,37 + 11648: -12,-35 + 11673: -5,-35 + 11692: -5,-32 + 11697: -7,-36 + 11700: -12,-34 + 11801: -13,-36 + 11825: -13,-41 + 11911: -29,-36 + 11912: -24,-36 + 11942: -28,-31 + 11943: -29,-29 + 11944: -29,-29 + 11945: -28,-27 + 12105: -22,-31 + 12106: -22,-26 + 12208: -24,-41 + 12245: -13,-50 + 12248: -16,-54 + 12276: -13,-59 + 12308: -4,-48 + 12316: -6,-53 + 12338: -19,-44 + 12645: -7,-34 + 12746: -7,-34 + 12747: -7,-34 + 15275: -8,-26 + 15276: -14,-35 + 15277: -14,-43 + 15278: -14,-53 + 15279: -24,-35 + 15280: -23,-30 + 15299: -29,-41 + 20066: 36,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSe decals: - 10841: 28,-56 - 10847: 27,-58 - 10879: 41,-62 - 10908: 36,-62 - 10913: 36,-70 - 10948: 41,-71 - 10949: 39,-71 - 10950: 39,-71 - 10987: 28,-67 + 10839: 28,-56 + 10845: 27,-58 + 10877: 41,-62 + 10906: 36,-62 + 10911: 36,-70 + 10946: 41,-71 + 10947: 39,-71 + 10948: 39,-71 + 10985: 28,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSe decals: - 19259: 70,13 - 19271: 63,-4 + 19257: 70,13 + 19269: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSe decals: - 3818: 12,67 + 3816: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSe decals: - 4385: 10,28 - 4386: 10,30 - 4410: 4,33 - 4411: 9,33 - 4418: 11,35 - 4426: 5,26 - 4427: 8,26 - 4445: 8,28 - 4477: 16,26 - 4503: 16,27 - 4532: 10,34 - 4535: 5,39 - 4554: 10,39 - 4571: 10,42 - 4574: 11,43 - 4577: 11,45 - 4589: 13,34 - 4590: 15,34 - 4606: 21,34 - 4630: 22,36 - 4654: 22,27 - 4655: 21,26 - 4665: 27,31 - 4700: 20,28 - 4701: 26,28 - 4702: 24,28 - 4724: 26,29 - 4725: 22,29 - 4731: 21,29 - 4767: 27,35 - 4784: 18,35 - 4785: 19,36 - 4793: 28,40 - 4826: 9,35 - 4838: 21,40 - 4871: 32,51 - 4875: 38,51 - 4898: 25,48 - 4936: 13,49 - 4941: 13,52 - 4962: 25,54 - 5039: 22,43 - 5051: 17,45 - 5052: 17,43 - 5053: 17,41 - 5054: 22,41 - 5055: 22,45 - 5056: 22,47 - 5057: 22,49 - 5058: 22,51 - 7005: 8,28 - 19934: 25,29 + 4383: 10,28 + 4384: 10,30 + 4408: 4,33 + 4409: 9,33 + 4416: 11,35 + 4424: 5,26 + 4425: 8,26 + 4443: 8,28 + 4475: 16,26 + 4501: 16,27 + 4530: 10,34 + 4533: 5,39 + 4552: 10,39 + 4569: 10,42 + 4572: 11,43 + 4575: 11,45 + 4587: 13,34 + 4588: 15,34 + 4604: 21,34 + 4628: 22,36 + 4652: 22,27 + 4653: 21,26 + 4663: 27,31 + 4698: 20,28 + 4699: 26,28 + 4700: 24,28 + 4722: 26,29 + 4723: 22,29 + 4729: 21,29 + 4765: 27,35 + 4782: 18,35 + 4783: 19,36 + 4791: 28,40 + 4824: 9,35 + 4836: 21,40 + 4869: 32,51 + 4873: 38,51 + 4896: 25,48 + 4934: 13,49 + 4939: 13,52 + 4960: 25,54 + 5037: 22,43 + 5049: 17,45 + 5050: 17,43 + 5051: 17,41 + 5052: 22,41 + 5053: 22,45 + 5054: 22,47 + 5055: 22,49 + 5056: 22,51 + 7003: 8,28 + 19932: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSe decals: - 9599: 5,-36 - 9601: 8,-34 - 9628: 6,-34 + 9597: 5,-36 + 9599: 8,-34 + 9626: 6,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 16920: -49,1 - 16943: -58,-4 - 16964: -52,8 - 16974: -51,9 - 16993: -63,1 - 17012: -63,-7 - 17020: -57,-9 - 17021: -57,-7 - 17034: -58,-10 - 17074: -52,-4 - 17088: -52,-10 - 17089: -52,-15 - 17097: -56,-18 - 17098: -54,-18 - 17119: -50,-17 - 17196: -47,14 - 17201: -50,11 - 17231: -68,15 - 17257: -76,14 - 17258: -77,13 - 17262: -72,14 - 17322: -58,17 - 17341: -51,-9 - 17411: -69,-8 - 17437: -75,-8 - 17481: 6,87 - 17482: 10,84 - 17491: 11,87 - 17517: 12,78 - 17647: -66,1 - 17652: -71,-4 - 17653: -69,-4 - 17696: -72,10 - 17742: -77,3 - 17783: -76,-2 - 17787: -76,0 - 19939: -49,-3 + 16918: -49,1 + 16941: -58,-4 + 16962: -52,8 + 16972: -51,9 + 16991: -63,1 + 17010: -63,-7 + 17018: -57,-9 + 17019: -57,-7 + 17032: -58,-10 + 17072: -52,-4 + 17086: -52,-10 + 17087: -52,-15 + 17095: -56,-18 + 17096: -54,-18 + 17117: -50,-17 + 17194: -47,14 + 17199: -50,11 + 17229: -68,15 + 17255: -76,14 + 17256: -77,13 + 17260: -72,14 + 17320: -58,17 + 17339: -51,-9 + 17409: -69,-8 + 17435: -75,-8 + 17479: 6,87 + 17480: 10,84 + 17489: 11,87 + 17515: 12,78 + 17645: -66,1 + 17650: -71,-4 + 17651: -69,-4 + 17694: -72,10 + 17740: -77,3 + 17781: -76,-2 + 17785: -76,0 + 19937: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2366: -29,32 - 2367: -29,32 - 2370: -29,30 - 2373: -31,30 - 2699: -12,52 - 3836: 19,69 - 3839: 22,69 - 6681: -32,-3 - 6682: -32,-3 - 6699: -32,1 - 6704: -29,-3 - 6708: -24,-3 - 6709: -24,-3 - 6772: -35,-11 - 6982: -23,-17 - 6986: -24,-18 - 8086: 60,-16 - 8087: 61,-15 - 8088: 61,-28 - 8089: 60,-29 - 8340: 39,-11 - 8341: 39,-14 - 8342: 39,-14 - 8366: 47,-17 - 8729: -4,-79 - 8730: -1,-80 - 8731: -6,-80 - 8733: -6,-76 - 8734: -1,-76 - 8987: -15,-28 - 8988: -6,-28 - 9105: 11,-28 - 9481: -4,-71 - 9496: 73,-47 - 10692: 75,-45 - 13495: -41,-63 - 14893: -21,47 - 14894: -17,47 - 14895: -16,48 - 14896: -19,46 - 14897: -19,50 - 14898: -23,41 - 14899: -19,34 - 14900: -19,31 - 14901: -19,27 - 14902: -19,16 - 14903: -13,23 - 14904: -3,23 - 14905: 4,23 - 14990: 17,16 - 14991: 14,23 - 15058: -21,29 - 15078: -10,49 - 15079: -5,49 - 15080: -11,57 - 15081: -4,57 - 15082: 2,57 - 15083: -18,57 - 15116: -30,85 - 15117: -30,92 - 15118: -30,79 - 15123: -30,72 - 15124: -29,68 - 15125: -24,68 - 15126: -18,68 - 15127: -11,68 - 15128: -4,68 - 15129: -12,72 - 15130: -12,79 - 15131: -12,85 - 15132: -12,92 - 15148: 6,79 - 15149: 6,72 - 15150: 7,68 - 15151: 2,68 - 15166: -5,61 - 15173: -19,61 - 15175: 17,9 - 15176: 24,5 - 15177: 31,5 - 15186: 17,2 - 15187: 17,-5 - 15188: 17,-17 - 15189: 24,-11 - 15190: 30,-11 - 15214: -31,5 - 15215: -23,5 - 15216: -36,5 - 15223: -19,-17 - 15227: -19,2 - 15228: -19,-5 - 15229: -12,-20 - 15230: -5,-20 - 15234: 6,-20 - 15235: 13,-20 - 15244: 47,-20 - 15245: 52,-20 - 15302: -1,-35 - 15303: -1,-42 - 15304: -1,-50 - 15305: -1,-55 - 15306: -1,-61 - 15313: -1,-27 - 15481: -42,20 - 15482: -42,9 - 15483: -42,14 - 15616: 95,-3 - 15707: 96,6 - 18848: -6,-9 - 18849: -12,-9 - 18858: 7,-9 - 18859: 13,-9 - 18861: 1,-9 - 19556: -19,9 - 19752: 40,-14 - 19753: 39,-15 - 20293: -19,2 - 20294: -19,9 - 20295: -19,16 - 20296: -19,-5 + 2364: -29,32 + 2365: -29,32 + 2368: -29,30 + 2371: -31,30 + 2697: -12,52 + 3834: 19,69 + 3837: 22,69 + 6679: -32,-3 + 6680: -32,-3 + 6697: -32,1 + 6702: -29,-3 + 6706: -24,-3 + 6707: -24,-3 + 6770: -35,-11 + 6980: -23,-17 + 6984: -24,-18 + 8084: 60,-16 + 8085: 61,-15 + 8086: 61,-28 + 8087: 60,-29 + 8338: 39,-11 + 8339: 39,-14 + 8340: 39,-14 + 8364: 47,-17 + 8727: -4,-79 + 8728: -1,-80 + 8729: -6,-80 + 8731: -6,-76 + 8732: -1,-76 + 8985: -15,-28 + 8986: -6,-28 + 9103: 11,-28 + 9479: -4,-71 + 9494: 73,-47 + 10690: 75,-45 + 13493: -41,-63 + 14891: -21,47 + 14892: -17,47 + 14893: -16,48 + 14894: -19,46 + 14895: -19,50 + 14896: -23,41 + 14897: -19,34 + 14898: -19,31 + 14899: -19,27 + 14900: -19,16 + 14901: -13,23 + 14902: -3,23 + 14903: 4,23 + 14988: 17,16 + 14989: 14,23 + 15056: -21,29 + 15076: -10,49 + 15077: -5,49 + 15078: -11,57 + 15079: -4,57 + 15080: 2,57 + 15081: -18,57 + 15114: -30,85 + 15115: -30,92 + 15116: -30,79 + 15121: -30,72 + 15122: -29,68 + 15123: -24,68 + 15124: -18,68 + 15125: -11,68 + 15126: -4,68 + 15127: -12,72 + 15128: -12,79 + 15129: -12,85 + 15130: -12,92 + 15146: 6,79 + 15147: 6,72 + 15148: 7,68 + 15149: 2,68 + 15164: -5,61 + 15171: -19,61 + 15173: 17,9 + 15174: 24,5 + 15175: 31,5 + 15184: 17,2 + 15185: 17,-5 + 15186: 17,-17 + 15187: 24,-11 + 15188: 30,-11 + 15212: -31,5 + 15213: -23,5 + 15214: -36,5 + 15221: -19,-17 + 15225: -19,2 + 15226: -19,-5 + 15227: -12,-20 + 15228: -5,-20 + 15232: 6,-20 + 15233: 13,-20 + 15242: 47,-20 + 15243: 52,-20 + 15300: -1,-35 + 15301: -1,-42 + 15302: -1,-50 + 15303: -1,-55 + 15304: -1,-61 + 15311: -1,-27 + 15479: -42,20 + 15480: -42,9 + 15481: -42,14 + 15614: 95,-3 + 15705: 96,6 + 18846: -6,-9 + 18847: -12,-9 + 18856: 7,-9 + 18857: 13,-9 + 18859: 1,-9 + 19554: -19,9 + 19750: 40,-14 + 19751: 39,-15 + 20291: -19,2 + 20292: -19,9 + 20293: -19,16 + 20294: -19,-5 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 21327: -16,14 - 21328: -16,14 + 21325: -16,14 + 21326: -16,14 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSw decals: - 15716: 97,-3 - 17908: -49,21 - 17929: -55,32 - 17930: -56,35 - 17998: -48,44 - 18000: -50,41 - 18048: -59,56 - 18052: -60,57 - 18060: -60,48 - 18063: -60,50 - 18075: -56,44 - 18078: -54,44 - 18149: -54,23 + 15714: 97,-3 + 17906: -49,21 + 17927: -55,32 + 17928: -56,35 + 17996: -48,44 + 17998: -50,41 + 18046: -59,56 + 18050: -60,57 + 18058: -60,48 + 18061: -60,50 + 18073: -56,44 + 18076: -54,44 + 18147: -54,23 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSw decals: - 9556: 16,-26 - 9713: 16,-35 - 9723: 16,-31 - 9736: 10,-34 - 9791: 27,-53 - 9797: 26,-36 - 9912: 17,-47 - 9922: 16,-44 - 9923: 16,-40 - 9934: 26,-44 - 9938: 26,-40 - 9949: 20,-40 - 10005: 37,-42 - 10006: 30,-40 - 10030: 32,-40 - 10045: 26,-30 - 10095: 29,-27 - 10099: 29,-32 - 10125: 20,-45 - 10143: 22,-49 - 10173: 20,-44 - 10203: 32,-51 - 10206: 32,-49 - 10229: 31,-53 - 10243: 30,-50 - 10357: 9,-41 - 10358: 4,-47 - 10367: 3,-44 - 10391: 14,-45 - 10628: 43,-33 - 15329: 6,-26 - 15342: 17,-45 - 15343: 27,-44 - 15344: 27,-51 - 15353: 22,-35 - 15354: 31,-35 - 15355: 11,-35 - 18466: 17,-34 - 19395: 5,64 - 19764: 20,-28 - 19765: 24,-29 + 9554: 16,-26 + 9711: 16,-35 + 9721: 16,-31 + 9734: 10,-34 + 9789: 27,-53 + 9795: 26,-36 + 9910: 17,-47 + 9920: 16,-44 + 9921: 16,-40 + 9932: 26,-44 + 9936: 26,-40 + 9947: 20,-40 + 10003: 37,-42 + 10004: 30,-40 + 10028: 32,-40 + 10043: 26,-30 + 10093: 29,-27 + 10097: 29,-32 + 10123: 20,-45 + 10141: 22,-49 + 10171: 20,-44 + 10201: 32,-51 + 10204: 32,-49 + 10227: 31,-53 + 10241: 30,-50 + 10355: 9,-41 + 10356: 4,-47 + 10365: 3,-44 + 10389: 14,-45 + 10626: 43,-33 + 15327: 6,-26 + 15340: 17,-45 + 15341: 27,-44 + 15342: 27,-51 + 15351: 22,-35 + 15352: 31,-35 + 15353: 11,-35 + 18464: 17,-34 + 19393: 5,64 + 19762: 20,-28 + 19763: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSw decals: - 2885: -31,46 - 2891: -32,46 - 2896: -34,48 - 2897: -35,49 - 2964: -30,47 - 2965: -32,47 - 2966: -28,47 - 3007: -38,48 - 3009: -38,45 + 2883: -31,46 + 2889: -32,46 + 2894: -34,48 + 2895: -35,49 + 2962: -30,47 + 2963: -32,47 + 2964: -28,47 + 3005: -38,48 + 3007: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSw decals: - 5104: 24,27 - 5165: 38,30 - 5175: 38,30 - 11698: -7,-36 - 11700: -10,-35 - 11701: -10,-35 - 11703: -10,-34 - 11802: -15,-36 - 11824: -15,-40 - 11911: -29,-36 - 11912: -24,-36 - 11948: -30,-31 - 12209: -25,-41 - 12245: -17,-51 - 12249: -16,-54 - 12261: -19,-59 - 12262: -20,-58 - 12306: -11,-50 - 12317: -6,-53 - 12339: -19,-44 - 12648: -8,-34 - 12746: -8,-34 - 12747: -8,-34 - 15276: -12,-26 - 15286: -29,-35 - 15287: -23,-30 - 15291: -18,-35 - 15292: -14,-43 - 15293: -14,-53 - 15300: -29,-41 + 5102: 24,27 + 5163: 38,30 + 5173: 38,30 + 11696: -7,-36 + 11698: -10,-35 + 11699: -10,-35 + 11701: -10,-34 + 11800: -15,-36 + 11822: -15,-40 + 11909: -29,-36 + 11910: -24,-36 + 11946: -30,-31 + 12207: -25,-41 + 12243: -17,-51 + 12247: -16,-54 + 12259: -19,-59 + 12260: -20,-58 + 12304: -11,-50 + 12315: -6,-53 + 12337: -19,-44 + 12646: -8,-34 + 12744: -8,-34 + 12745: -8,-34 + 15274: -12,-26 + 15284: -29,-35 + 15285: -23,-30 + 15289: -18,-35 + 15290: -14,-43 + 15291: -14,-53 + 15298: -29,-41 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSw decals: - 10840: 26,-56 - 10846: 27,-58 - 10881: 38,-62 - 10898: 43,-62 - 10910: 34,-61 - 10914: 34,-68 - 10923: 38,-70 - 10931: 39,-71 - 10951: 41,-71 - 10952: 41,-71 - 10989: 30,-67 + 10838: 26,-56 + 10844: 27,-58 + 10879: 38,-62 + 10896: 43,-62 + 10908: 34,-61 + 10912: 34,-68 + 10921: 38,-70 + 10929: 39,-71 + 10949: 41,-71 + 10950: 41,-71 + 10987: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSw decals: - 19283: 65,-4 + 19281: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSw decals: - 3815: 10,68 + 3813: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSw decals: - 4381: 2,29 - 4409: 4,33 - 4412: 9,33 - 4428: 7,26 - 4429: 4,26 - 4444: 4,28 - 4464: 12,28 - 4476: 14,26 - 4504: 13,27 - 4536: 5,39 - 4539: 4,40 - 4553: 10,39 - 4570: 10,42 - 4591: 15,34 - 4597: 13,35 - 4605: 20,34 - 4626: 13,45 - 4627: 13,43 - 4653: 24,27 - 4656: 21,26 - 4698: 20,28 - 4699: 26,28 - 4703: 22,28 - 4717: 20,29 - 4726: 24,29 - 4732: 21,29 - 4738: 24,36 - 4766: 26,35 - 4782: 16,35 - 4783: 15,36 - 4792: 28,40 - 4827: 4,35 - 4839: 24,40 - 4873: 34,51 - 4952: 15,52 - 5040: 19,43 - 5041: 19,45 - 5042: 19,47 - 5043: 19,49 - 5044: 19,51 - 5047: 19,41 - 5048: 16,41 - 5049: 16,43 - 5050: 16,45 - 5169: 38,30 - 7006: 4,28 - 19933: 25,29 + 4379: 2,29 + 4407: 4,33 + 4410: 9,33 + 4426: 7,26 + 4427: 4,26 + 4442: 4,28 + 4462: 12,28 + 4474: 14,26 + 4502: 13,27 + 4534: 5,39 + 4537: 4,40 + 4551: 10,39 + 4568: 10,42 + 4589: 15,34 + 4595: 13,35 + 4603: 20,34 + 4624: 13,45 + 4625: 13,43 + 4651: 24,27 + 4654: 21,26 + 4696: 20,28 + 4697: 26,28 + 4701: 22,28 + 4715: 20,29 + 4724: 24,29 + 4730: 21,29 + 4736: 24,36 + 4764: 26,35 + 4780: 16,35 + 4781: 15,36 + 4790: 28,40 + 4825: 4,35 + 4837: 24,40 + 4871: 34,51 + 4950: 15,52 + 5038: 19,43 + 5039: 19,45 + 5040: 19,47 + 5041: 19,49 + 5042: 19,51 + 5045: 19,41 + 5046: 16,41 + 5047: 16,43 + 5048: 16,45 + 5167: 38,30 + 7004: 4,28 + 19931: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSw decals: - 9597: 3,-35 - 9598: 5,-36 - 9609: 3,-32 - 9627: 5,-34 + 9595: 3,-35 + 9596: 5,-36 + 9607: 3,-32 + 9625: 5,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSw decals: - 16942: -58,-4 - 16962: -59,1 - 16963: -53,8 - 16975: -54,9 - 16992: -64,1 - 17011: -61,-7 - 17033: -58,-10 - 17071: -59,-17 - 17072: -55,-7 - 17073: -54,-9 - 17094: -50,-15 - 17096: -54,-18 - 17101: -56,-18 - 17209: -59,14 - 17210: -59,10 - 17219: -66,15 - 17254: -72,14 - 17259: -77,13 - 17321: -58,17 - 17344: -49,-9 - 17410: -71,-8 - 17480: 6,87 - 17483: 10,84 - 17498: 10,80 - 17513: 10,75 - 17520: 12,74 - 17648: -74,0 - 17650: -71,-4 - 17651: -69,-4 - 17695: -72,10 - 17741: -77,3 - 17775: -79,0 - 17780: -78,-1 - 17782: -76,-2 - 18208: -54,-4 + 16940: -58,-4 + 16960: -59,1 + 16961: -53,8 + 16973: -54,9 + 16990: -64,1 + 17009: -61,-7 + 17031: -58,-10 + 17069: -59,-17 + 17070: -55,-7 + 17071: -54,-9 + 17092: -50,-15 + 17094: -54,-18 + 17099: -56,-18 + 17207: -59,14 + 17208: -59,10 + 17217: -66,15 + 17252: -72,14 + 17257: -77,13 + 17319: -58,17 + 17342: -49,-9 + 17408: -71,-8 + 17478: 6,87 + 17481: 10,84 + 17496: 10,80 + 17511: 10,75 + 17518: 12,74 + 17646: -74,0 + 17648: -71,-4 + 17649: -69,-4 + 17693: -72,10 + 17739: -77,3 + 17773: -79,0 + 17778: -78,-1 + 17780: -76,-2 + 18206: -54,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2359: -28,38 - 2374: -31,30 - 2711: -12,52 - 2809: -7,33 - 3833: 17,70 - 3835: 18,69 - 3838: 21,69 - 6358: -2,-16 - 6705: -29,-3 - 6706: -24,-3 - 6707: -24,-3 - 6749: -28,-16 - 6771: -30,-11 - 6985: -24,-18 - 8082: 58,-29 - 8083: 57,-28 - 8084: 57,-15 - 8085: 58,-16 - 8337: 35,-14 - 8338: 35,-14 - 8339: 35,-11 - 8365: 46,-17 - 8715: -8,-80 - 8716: -3,-80 - 8717: -8,-76 - 8718: -3,-76 - 8732: -5,-79 - 8986: -13,-28 - 8989: -6,-28 - 9103: 5,-28 - 9104: 13,-28 - 9112: -16,-24 - 9482: -5,-71 - 9491: 72,-50 - 9495: 73,-47 - 9497: 69,-41 - 10684: 72,-50 - 14870: 10,-20 - 14871: 17,-17 - 14872: 17,-5 - 14873: 17,2 - 14874: 17,9 - 14875: 17,16 - 14876: 11,23 - 14877: 1,23 - 14878: -6,23 - 14879: -16,23 - 14880: -19,16 - 14881: -19,27 - 14882: -21,29 - 14883: -22,30 - 14884: -19,31 - 14885: -19,34 - 14886: -23,41 - 14887: -19,46 - 14888: -21,47 - 14889: -17,47 - 14890: -19,50 - 15059: -22,48 - 15076: -11,49 - 15077: -6,49 - 15084: -20,57 - 15085: -13,57 - 15086: -6,57 - 15087: 0,57 - 15114: -30,85 - 15115: -30,92 - 15119: -30,79 - 15122: -30,72 - 15133: -12,92 - 15134: -12,85 - 15135: -12,79 - 15136: -12,72 - 15137: -13,68 - 15138: -20,68 - 15139: -26,68 - 15140: -31,68 - 15141: -19,61 - 15142: -5,61 - 15143: -6,68 - 15144: 0,68 - 15145: 5,68 - 15146: 6,72 - 15147: 6,79 - 15184: 21,5 - 15185: 28,5 - 15191: 28,-11 - 15192: 21,-11 - 15217: -38,5 - 15218: -33,5 - 15219: -27,5 - 15220: -19,2 - 15221: -19,-5 - 15222: -19,-17 - 15232: -8,-20 - 15233: 3,-20 - 15239: -15,-20 - 15242: 44,-20 - 15243: 49,-20 - 15307: -1,-61 - 15308: -1,-55 - 15309: -1,-50 - 15310: -1,-42 - 15311: -1,-35 - 15312: -1,-27 - 15472: -42,9 - 15473: -42,14 - 15474: -42,20 - 15708: 96,6 - 18850: -15,-9 - 18854: -9,-9 - 18855: -3,-9 - 18856: 4,-9 - 18857: 10,-9 - 19555: -19,9 - 19751: 34,-14 - 19754: 35,-15 - 20289: -19,-5 - 20290: -19,2 - 20291: -19,9 - 20292: -19,16 + 2357: -28,38 + 2372: -31,30 + 2709: -12,52 + 2807: -7,33 + 3831: 17,70 + 3833: 18,69 + 3836: 21,69 + 6356: -2,-16 + 6703: -29,-3 + 6704: -24,-3 + 6705: -24,-3 + 6747: -28,-16 + 6769: -30,-11 + 6983: -24,-18 + 8080: 58,-29 + 8081: 57,-28 + 8082: 57,-15 + 8083: 58,-16 + 8335: 35,-14 + 8336: 35,-14 + 8337: 35,-11 + 8363: 46,-17 + 8713: -8,-80 + 8714: -3,-80 + 8715: -8,-76 + 8716: -3,-76 + 8730: -5,-79 + 8984: -13,-28 + 8987: -6,-28 + 9101: 5,-28 + 9102: 13,-28 + 9110: -16,-24 + 9480: -5,-71 + 9489: 72,-50 + 9493: 73,-47 + 9495: 69,-41 + 10682: 72,-50 + 14868: 10,-20 + 14869: 17,-17 + 14870: 17,-5 + 14871: 17,2 + 14872: 17,9 + 14873: 17,16 + 14874: 11,23 + 14875: 1,23 + 14876: -6,23 + 14877: -16,23 + 14878: -19,16 + 14879: -19,27 + 14880: -21,29 + 14881: -22,30 + 14882: -19,31 + 14883: -19,34 + 14884: -23,41 + 14885: -19,46 + 14886: -21,47 + 14887: -17,47 + 14888: -19,50 + 15057: -22,48 + 15074: -11,49 + 15075: -6,49 + 15082: -20,57 + 15083: -13,57 + 15084: -6,57 + 15085: 0,57 + 15112: -30,85 + 15113: -30,92 + 15117: -30,79 + 15120: -30,72 + 15131: -12,92 + 15132: -12,85 + 15133: -12,79 + 15134: -12,72 + 15135: -13,68 + 15136: -20,68 + 15137: -26,68 + 15138: -31,68 + 15139: -19,61 + 15140: -5,61 + 15141: -6,68 + 15142: 0,68 + 15143: 5,68 + 15144: 6,72 + 15145: 6,79 + 15182: 21,5 + 15183: 28,5 + 15189: 28,-11 + 15190: 21,-11 + 15215: -38,5 + 15216: -33,5 + 15217: -27,5 + 15218: -19,2 + 15219: -19,-5 + 15220: -19,-17 + 15230: -8,-20 + 15231: 3,-20 + 15237: -15,-20 + 15240: 44,-20 + 15241: 49,-20 + 15305: -1,-61 + 15306: -1,-55 + 15307: -1,-50 + 15308: -1,-42 + 15309: -1,-35 + 15310: -1,-27 + 15470: -42,9 + 15471: -42,14 + 15472: -42,20 + 15706: 96,6 + 18848: -15,-9 + 18852: -9,-9 + 18853: -3,-9 + 18854: 4,-9 + 18855: 10,-9 + 19553: -19,9 + 19749: 34,-14 + 19752: 35,-15 + 20287: -19,-5 + 20288: -19,2 + 20289: -19,9 + 20290: -19,16 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE @@ -13287,8 +13282,8 @@ entities: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 21324: -18,12 - 21325: -18,13 + 21322: -18,12 + 21323: -18,13 - node: color: '#80C71FFF' id: BrickTileWhiteLineE @@ -13299,329 +13294,329 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineE decals: - 3897: 27,66 - 3899: 24,66 - 15713: 97,-3 - 15718: 96,-3 - 17886: -46,22 - 17895: -51,21 - 17905: -46,19 - 17906: -46,20 - 17907: -46,21 - 17911: -54,33 - 17912: -54,34 - 17916: -55,38 - 17918: -55,35 - 17950: -47,37 - 17951: -47,38 - 17952: -47,39 - 17953: -47,40 - 17960: -45,51 - 17965: -46,52 - 17966: -46,53 - 17967: -46,54 - 17968: -46,55 - 17973: -46,57 - 17987: -46,50 - 17988: -46,49 - 17989: -46,48 - 17990: -46,47 - 17991: -46,47 - 17992: -46,46 - 17993: -46,43 - 17996: -51,41 - 18026: -58,46 - 18027: -58,47 - 18028: -58,48 - 18029: -58,49 - 18030: -58,50 - 18031: -58,51 - 18032: -58,52 - 18034: -58,53 - 18047: -61,57 - 18061: -61,48 - 18062: -61,50 - 18131: -53,22 - 18132: -53,23 - 18136: -56,24 - 18137: -56,23 - 18144: -53,20 + 3895: 27,66 + 3897: 24,66 + 15711: 97,-3 + 15716: 96,-3 + 17884: -46,22 + 17893: -51,21 + 17903: -46,19 + 17904: -46,20 + 17905: -46,21 + 17909: -54,33 + 17910: -54,34 + 17914: -55,38 + 17916: -55,35 + 17948: -47,37 + 17949: -47,38 + 17950: -47,39 + 17951: -47,40 + 17958: -45,51 + 17963: -46,52 + 17964: -46,53 + 17965: -46,54 + 17966: -46,55 + 17971: -46,57 + 17985: -46,50 + 17986: -46,49 + 17987: -46,48 + 17988: -46,47 + 17989: -46,47 + 17990: -46,46 + 17991: -46,43 + 17994: -51,41 + 18024: -58,46 + 18025: -58,47 + 18026: -58,48 + 18027: -58,49 + 18028: -58,50 + 18029: -58,51 + 18030: -58,52 + 18032: -58,53 + 18045: -61,57 + 18059: -61,48 + 18060: -61,50 + 18129: -53,22 + 18130: -53,23 + 18134: -56,24 + 18135: -56,23 + 18142: -53,20 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineE decals: - 9512: 5,-26 - 9513: 5,-26 - 9516: 5,-25 - 9517: 18,-25 - 9518: 18,-26 - 9519: 18,-29 - 9520: 18,-30 - 9521: 18,-31 - 9522: 18,-32 - 9523: 18,-33 - 9551: 15,-26 - 9552: 15,-25 - 9662: 28,-38 - 9663: 28,-39 - 9664: 28,-42 - 9665: 28,-43 - 9666: 28,-45 - 9667: 28,-46 - 9668: 28,-47 - 9669: 28,-48 - 9670: 28,-48 - 9671: 28,-49 - 9672: 28,-51 - 9673: 28,-52 - 9706: 19,-36 - 9707: 19,-35 - 9708: 19,-34 - 9716: 15,-35 - 9721: 15,-31 - 9738: 9,-36 - 9739: 9,-34 - 9741: 15,-35 - 9779: 25,-39 - 9780: 25,-40 - 9781: 19,-39 - 9782: 19,-40 - 9788: 25,-44 - 9850: 10,-35 - 9851: 21,-35 - 9852: 30,-35 - 9853: 26,-40 - 9854: 26,-41 - 9855: 26,-43 - 9856: 26,-44 - 9857: 26,-42 - 9858: 26,-47 - 9859: 26,-48 - 9860: 26,-49 - 9861: 26,-50 - 9862: 26,-50 - 9863: 26,-51 - 9864: 16,-40 - 9865: 16,-41 - 9866: 16,-43 - 9867: 16,-43 - 9868: 16,-45 - 9869: 16,-34 - 9870: 16,-34 - 9871: 16,-32 - 9872: 16,-32 - 9873: 16,-31 - 9874: 16,-31 - 9875: 16,-33 - 9914: 18,-46 - 9915: 18,-45 - 9916: 18,-43 - 9917: 18,-42 - 9918: 18,-41 - 9919: 18,-38 - 9924: 16,-44 - 9926: 15,-44 - 9929: 15,-39 - 9930: 15,-40 - 9973: 38,-41 - 9974: 38,-40 - 9975: 38,-39 - 10002: 29,-40 - 10022: 31,-40 - 10048: 23,-29 - 10050: 19,-28 - 10051: 19,-27 - 10090: 32,-26 - 10091: 32,-25 - 10105: 28,-41 - 10136: 24,-48 - 10137: 24,-47 - 10172: 19,-44 - 10177: 24,-45 - 10182: 34,-51 - 10183: 34,-51 - 10184: 34,-50 + 9510: 5,-26 + 9511: 5,-26 + 9514: 5,-25 + 9515: 18,-25 + 9516: 18,-26 + 9517: 18,-29 + 9518: 18,-30 + 9519: 18,-31 + 9520: 18,-32 + 9521: 18,-33 + 9549: 15,-26 + 9550: 15,-25 + 9660: 28,-38 + 9661: 28,-39 + 9662: 28,-42 + 9663: 28,-43 + 9664: 28,-45 + 9665: 28,-46 + 9666: 28,-47 + 9667: 28,-48 + 9668: 28,-48 + 9669: 28,-49 + 9670: 28,-51 + 9671: 28,-52 + 9704: 19,-36 + 9705: 19,-35 + 9706: 19,-34 + 9714: 15,-35 + 9719: 15,-31 + 9736: 9,-36 + 9737: 9,-34 + 9739: 15,-35 + 9777: 25,-39 + 9778: 25,-40 + 9779: 19,-39 + 9780: 19,-40 + 9786: 25,-44 + 9848: 10,-35 + 9849: 21,-35 + 9850: 30,-35 + 9851: 26,-40 + 9852: 26,-41 + 9853: 26,-43 + 9854: 26,-44 + 9855: 26,-42 + 9856: 26,-47 + 9857: 26,-48 + 9858: 26,-49 + 9859: 26,-50 + 9860: 26,-50 + 9861: 26,-51 + 9862: 16,-40 + 9863: 16,-41 + 9864: 16,-43 + 9865: 16,-43 + 9866: 16,-45 + 9867: 16,-34 + 9868: 16,-34 + 9869: 16,-32 + 9870: 16,-32 + 9871: 16,-31 + 9872: 16,-31 + 9873: 16,-33 + 9912: 18,-46 + 9913: 18,-45 + 9914: 18,-43 + 9915: 18,-42 + 9916: 18,-41 + 9917: 18,-38 + 9922: 16,-44 + 9924: 15,-44 + 9927: 15,-39 + 9928: 15,-40 + 9971: 38,-41 + 9972: 38,-40 + 9973: 38,-39 + 10000: 29,-40 + 10020: 31,-40 + 10046: 23,-29 + 10048: 19,-28 + 10049: 19,-27 + 10088: 32,-26 + 10089: 32,-25 + 10103: 28,-41 + 10134: 24,-48 + 10135: 24,-47 + 10170: 19,-44 + 10175: 24,-45 + 10180: 34,-51 + 10181: 34,-51 + 10182: 34,-50 + 10183: 34,-48 + 10184: 34,-48 10185: 34,-48 - 10186: 34,-48 - 10187: 34,-48 - 10188: 34,-49 - 10189: 34,-49 - 10190: 34,-52 - 10199: 31,-51 - 10200: 31,-49 - 10201: 31,-49 - 10231: 31,-53 - 10232: 31,-52 - 10233: 31,-50 - 10234: 31,-48 - 10242: 29,-50 - 10338: 6,-44 - 10346: 10,-46 - 10347: 10,-45 - 10348: 10,-44 - 10362: 1,-44 - 10381: 13,-47 - 10383: 14,-46 - 10384: 14,-45 - 10622: 49,-34 - 10623: 49,-35 - 10625: 42,-33 - 10626: 42,-33 - 15338: 16,-42 - 19394: 4,64 - 19401: 7,63 - 19402: 7,64 - 19768: 22,-28 - 19769: 22,-27 - 19770: 22,-26 - 19780: 26,-28 - 19790: 30,-31 + 10186: 34,-49 + 10187: 34,-49 + 10188: 34,-52 + 10197: 31,-51 + 10198: 31,-49 + 10199: 31,-49 + 10229: 31,-53 + 10230: 31,-52 + 10231: 31,-50 + 10232: 31,-48 + 10240: 29,-50 + 10336: 6,-44 + 10344: 10,-46 + 10345: 10,-45 + 10346: 10,-44 + 10360: 1,-44 + 10379: 13,-47 + 10381: 14,-46 + 10382: 14,-45 + 10620: 49,-34 + 10621: 49,-35 + 10623: 42,-33 + 10624: 42,-33 + 15336: 16,-42 + 19392: 4,64 + 19399: 7,63 + 19400: 7,64 + 19766: 22,-28 + 19767: 22,-27 + 19768: 22,-26 + 19778: 26,-28 + 19788: 30,-31 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineE decals: - 2875: -26,49 - 2876: -26,50 - 2889: -32,45 - 2912: -28,54 - 2915: -28,52 - 2918: -26,51 - 2925: -31,53 - 2926: -31,52 - 2927: -31,51 - 2928: -31,50 - 2929: -31,49 - 2930: -31,47 - 2931: -31,48 - 2932: -33,53 - 2933: -33,52 - 2934: -33,51 - 2935: -33,50 - 2936: -33,49 - 2937: -33,47 - 2938: -33,48 - 2957: -29,50 - 2958: -29,49 - 2959: -29,48 - 2960: -29,47 - 2995: -36,49 - 2999: -37,48 - 3000: -37,47 - 3003: -38,46 - 3004: -38,45 + 2873: -26,49 + 2874: -26,50 + 2887: -32,45 + 2910: -28,54 + 2913: -28,52 + 2916: -26,51 + 2923: -31,53 + 2924: -31,52 + 2925: -31,51 + 2926: -31,50 + 2927: -31,49 + 2928: -31,47 + 2929: -31,48 + 2930: -33,53 + 2931: -33,52 + 2932: -33,51 + 2933: -33,50 + 2934: -33,49 + 2935: -33,47 + 2936: -33,48 + 2955: -29,50 + 2956: -29,49 + 2957: -29,48 + 2958: -29,47 + 2993: -36,49 + 2997: -37,48 + 2998: -37,47 + 3001: -38,46 + 3002: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteLineE decals: - 5093: 27,28 - 5094: 27,30 - 5157: 43,29 - 5163: 37,30 - 5183: 36,35 - 11436: -24,-30 - 11437: -24,-30 - 11438: -24,-29 - 11439: -24,-29 - 11440: -24,-28 - 11441: -24,-27 - 11442: -24,-27 - 11443: -24,-26 - 11478: -30,-35 - 11479: -30,-35 - 11480: -19,-35 - 11483: -15,-53 - 11484: -15,-53 - 11485: -15,-52 - 11486: -15,-52 - 11487: -15,-51 - 11488: -15,-51 - 11489: -15,-50 - 11490: -15,-50 - 11491: -15,-49 - 11492: -15,-49 - 11493: -15,-48 - 11494: -15,-48 - 11495: -15,-47 - 11496: -15,-47 - 11497: -15,-43 - 11498: -15,-42 - 11499: -15,-41 - 11500: -15,-41 - 11501: -15,-40 - 11502: -15,-39 - 11503: -15,-39 - 11566: -21,-34 - 11567: -21,-35 - 11568: -21,-36 - 11647: -13,-26 - 11648: -13,-25 - 11649: -13,-25 - 11663: -11,-35 - 11664: -11,-35 - 11665: -11,-34 - 11691: -4,-31 - 11692: -5,-33 - 11693: -5,-34 - 11808: -13,-38 - 11809: -13,-38 - 11810: -13,-39 - 11811: -13,-40 - 11812: -13,-42 - 11813: -13,-43 - 11814: -13,-44 - 11826: -16,-40 - 11892: -33,-45 - 11893: -33,-44 - 11894: -33,-44 - 11895: -33,-43 - 11896: -33,-42 - 11897: -33,-41 - 11924: -31,-31 - 11925: -31,-30 - 11926: -31,-29 - 11927: -31,-29 - 11928: -31,-28 - 11929: -31,-28 - 11930: -31,-27 - 11931: -31,-27 - 12091: -22,-25 - 12092: -22,-27 - 12093: -22,-28 - 12094: -22,-29 - 12095: -22,-30 - 12096: -22,-32 - 12198: -26,-41 - 12199: -26,-40 - 12200: -26,-39 - 12213: -30,-41 - 12214: -30,-40 - 12215: -30,-39 - 12226: -13,-46 - 12227: -13,-47 - 12228: -13,-48 - 12229: -13,-49 - 12230: -13,-51 - 12231: -13,-52 - 12232: -13,-53 - 12244: -18,-51 - 12264: -21,-58 - 12271: -13,-57 - 12272: -13,-58 - 12292: -4,-52 - 12293: -4,-51 - 12294: -4,-50 - 12295: -4,-49 - 12296: -4,-47 - 12305: -12,-50 - 12329: -21,-44 - 12330: -21,-43 - 12331: -21,-42 - 12332: -21,-41 - 12333: -21,-40 - 12637: -9,-34 - 12638: -9,-33 - 12639: -9,-32 - 20062: 36,37 + 5091: 27,28 + 5092: 27,30 + 5155: 43,29 + 5161: 37,30 + 5181: 36,35 + 11434: -24,-30 + 11435: -24,-30 + 11436: -24,-29 + 11437: -24,-29 + 11438: -24,-28 + 11439: -24,-27 + 11440: -24,-27 + 11441: -24,-26 + 11476: -30,-35 + 11477: -30,-35 + 11478: -19,-35 + 11481: -15,-53 + 11482: -15,-53 + 11483: -15,-52 + 11484: -15,-52 + 11485: -15,-51 + 11486: -15,-51 + 11487: -15,-50 + 11488: -15,-50 + 11489: -15,-49 + 11490: -15,-49 + 11491: -15,-48 + 11492: -15,-48 + 11493: -15,-47 + 11494: -15,-47 + 11495: -15,-43 + 11496: -15,-42 + 11497: -15,-41 + 11498: -15,-41 + 11499: -15,-40 + 11500: -15,-39 + 11501: -15,-39 + 11564: -21,-34 + 11565: -21,-35 + 11566: -21,-36 + 11645: -13,-26 + 11646: -13,-25 + 11647: -13,-25 + 11661: -11,-35 + 11662: -11,-35 + 11663: -11,-34 + 11689: -4,-31 + 11690: -5,-33 + 11691: -5,-34 + 11806: -13,-38 + 11807: -13,-38 + 11808: -13,-39 + 11809: -13,-40 + 11810: -13,-42 + 11811: -13,-43 + 11812: -13,-44 + 11824: -16,-40 + 11890: -33,-45 + 11891: -33,-44 + 11892: -33,-44 + 11893: -33,-43 + 11894: -33,-42 + 11895: -33,-41 + 11922: -31,-31 + 11923: -31,-30 + 11924: -31,-29 + 11925: -31,-29 + 11926: -31,-28 + 11927: -31,-28 + 11928: -31,-27 + 11929: -31,-27 + 12089: -22,-25 + 12090: -22,-27 + 12091: -22,-28 + 12092: -22,-29 + 12093: -22,-30 + 12094: -22,-32 + 12196: -26,-41 + 12197: -26,-40 + 12198: -26,-39 + 12211: -30,-41 + 12212: -30,-40 + 12213: -30,-39 + 12224: -13,-46 + 12225: -13,-47 + 12226: -13,-48 + 12227: -13,-49 + 12228: -13,-51 + 12229: -13,-52 + 12230: -13,-53 + 12242: -18,-51 + 12262: -21,-58 + 12269: -13,-57 + 12270: -13,-58 + 12290: -4,-52 + 12291: -4,-51 + 12292: -4,-50 + 12293: -4,-49 + 12294: -4,-47 + 12303: -12,-50 + 12327: -21,-44 + 12328: -21,-43 + 12329: -21,-42 + 12330: -21,-41 + 12331: -21,-40 + 12635: -9,-34 + 12636: -9,-33 + 12637: -9,-32 + 20060: 36,37 - node: color: '#B240B4FF' id: BrickTileWhiteLineE @@ -13631,246 +13626,246 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineE decals: - 10834: 25,-56 - 10838: 28,-57 - 10852: 36,-61 - 10853: 36,-64 - 10854: 36,-66 - 10855: 36,-67 - 10856: 36,-68 - 10857: 36,-69 - 10892: 41,-63 - 10903: 42,-62 - 10905: 37,-62 - 10909: 33,-61 - 10922: 37,-70 - 10934: 39,-73 - 10935: 39,-74 - 10953: 33,-68 - 10979: 31,-68 - 10980: 28,-68 + 10832: 25,-56 + 10836: 28,-57 + 10850: 36,-61 + 10851: 36,-64 + 10852: 36,-66 + 10853: 36,-67 + 10854: 36,-68 + 10855: 36,-69 + 10890: 41,-63 + 10901: 42,-62 + 10903: 37,-62 + 10907: 33,-61 + 10920: 37,-70 + 10932: 39,-73 + 10933: 39,-74 + 10951: 33,-68 + 10977: 31,-68 + 10978: 28,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineE decals: - 7629: 64,-4 - 19261: 70,14 - 19262: 70,15 - 19276: 63,-5 - 19282: 66,-4 + 7627: 64,-4 + 19259: 70,14 + 19260: 70,15 + 19274: 63,-5 + 19280: 66,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineE decals: - 3819: 12,68 - 3820: 12,69 - 3825: 9,68 + 3817: 12,68 + 3818: 12,69 + 3823: 9,68 - node: color: '#DAA58BFF' id: BrickTileWhiteLineE decals: - 4379: 10,29 - 4388: 1,29 - 4437: 3,29 - 4438: 3,28 - 4448: 11,28 - 4461: 10,27 - 4470: 17,31 - 4471: 17,30 - 4472: 17,29 - 4473: 17,28 - 4474: 17,27 - 4487: 12,27 - 4497: 15,31 - 4498: 15,30 - 4499: 15,29 - 4546: 7,43 - 4547: 7,42 - 4548: 7,42 - 4549: 7,41 - 4550: 7,40 - 4576: 11,44 - 4594: 12,36 - 4595: 12,35 - 4608: 22,35 - 4609: 22,37 - 4628: 12,43 - 4629: 12,45 - 4660: 27,27 - 4661: 27,28 - 4662: 27,29 - 4663: 27,30 - 4687: 19,28 - 4688: 19,29 - 4689: 19,30 - 4706: 20,29 - 4712: 24,29 - 4737: 23,36 - 4749: 29,35 - 4750: 29,36 - 4751: 29,37 - 4756: 25,36 - 4757: 25,37 - 4758: 25,35 - 4777: 14,36 - 4794: 29,41 - 4795: 29,42 - 4796: 29,43 - 4819: 3,35 - 4867: 32,50 - 4868: 38,50 - 4879: 33,49 - 4882: 33,51 - 4899: 25,47 - 4900: 25,46 - 4901: 25,45 - 4902: 25,45 - 4903: 25,44 - 4904: 25,44 - 4905: 25,43 - 4906: 25,42 - 4910: 25,53 - 4940: 13,51 - 4950: 14,53 - 4951: 14,52 - 4997: 18,51 - 4998: 18,49 - 4999: 18,47 - 5000: 18,45 - 5001: 15,45 - 5002: 15,43 - 5003: 15,41 - 5004: 18,41 - 5005: 18,43 - 5168: 37,30 - 5177: 36,36 - 11368: -11,-82 - 11369: -11,-81 - 11370: -11,-80 - 20059: 36,38 + 4377: 10,29 + 4386: 1,29 + 4435: 3,29 + 4436: 3,28 + 4446: 11,28 + 4459: 10,27 + 4468: 17,31 + 4469: 17,30 + 4470: 17,29 + 4471: 17,28 + 4472: 17,27 + 4485: 12,27 + 4495: 15,31 + 4496: 15,30 + 4497: 15,29 + 4544: 7,43 + 4545: 7,42 + 4546: 7,42 + 4547: 7,41 + 4548: 7,40 + 4574: 11,44 + 4592: 12,36 + 4593: 12,35 + 4606: 22,35 + 4607: 22,37 + 4626: 12,43 + 4627: 12,45 + 4658: 27,27 + 4659: 27,28 + 4660: 27,29 + 4661: 27,30 + 4685: 19,28 + 4686: 19,29 + 4687: 19,30 + 4704: 20,29 + 4710: 24,29 + 4735: 23,36 + 4747: 29,35 + 4748: 29,36 + 4749: 29,37 + 4754: 25,36 + 4755: 25,37 + 4756: 25,35 + 4775: 14,36 + 4792: 29,41 + 4793: 29,42 + 4794: 29,43 + 4817: 3,35 + 4865: 32,50 + 4866: 38,50 + 4877: 33,49 + 4880: 33,51 + 4897: 25,47 + 4898: 25,46 + 4899: 25,45 + 4900: 25,45 + 4901: 25,44 + 4902: 25,44 + 4903: 25,43 + 4904: 25,42 + 4908: 25,53 + 4938: 13,51 + 4948: 14,53 + 4949: 14,52 + 4995: 18,51 + 4996: 18,49 + 4997: 18,47 + 4998: 18,45 + 4999: 15,45 + 5000: 15,43 + 5001: 15,41 + 5002: 18,41 + 5003: 18,43 + 5166: 37,30 + 5175: 36,36 + 11366: -11,-82 + 11367: -11,-81 + 11368: -11,-80 + 20057: 36,38 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 4016: -37,53 - 9579: 8,-33 - 9580: 8,-32 - 9581: 8,-31 - 9594: 8,-35 - 9596: 2,-35 - 9610: 4,-32 - 9611: 4,-33 - 9612: 4,-34 + 4014: -37,53 + 9577: 8,-33 + 9578: 8,-32 + 9579: 8,-31 + 9592: 8,-35 + 9594: 2,-35 + 9608: 4,-32 + 9609: 4,-33 + 9610: 4,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 16902: -52,4 - 16903: -52,5 - 16904: -52,6 - 16924: -49,2 - 16926: -49,0 - 16949: -62,1 - 16991: -52,16 - 17001: -65,1 - 17002: -62,1 - 17004: -56,-7 - 17005: -56,-9 - 17009: -62,-7 - 17017: -56,-9 - 17019: -57,-8 - 17049: -52,-5 - 17052: -52,-11 - 17053: -52,-13 - 17054: -52,-13 - 17055: -52,-12 - 17056: -52,-14 - 17057: -52,-16 - 17058: -52,-17 - 17068: -62,-17 - 17069: -60,-17 - 17079: -55,-13 - 17080: -55,-14 - 17093: -51,-15 - 17115: -47,-14 - 17116: -47,-15 - 17117: -47,-16 - 17147: -51,-15 - 17197: -47,13 - 17200: -50,10 - 17212: -60,10 - 17220: -67,15 - 17255: -79,14 - 17330: -57,18 - 17366: -45,-7 - 17367: -45,-8 - 17368: -45,-9 - 17373: -50,-9 - 17374: -50,-8 - 17375: -50,-7 - 17380: -56,-7 - 17381: -56,-9 - 17421: -74,-8 - 17422: -74,-7 - 17423: -74,-6 - 17436: -75,-9 - 17441: -11,-80 - 17442: -11,-81 - 17443: -11,-82 - 17458: 5,92 - 17461: 10,90 - 17473: 7,89 - 17474: 7,88 - 17486: 11,85 - 17487: 11,86 - 17500: 9,80 - 17501: 9,81 - 17504: 12,81 - 17505: 12,80 - 17506: 12,79 - 17507: 12,77 - 17508: 12,76 - 17509: 12,75 - 17510: 12,74 - 17521: 9,75 - 17522: 9,76 - 17523: 9,80 - 17524: 9,81 - 17550: -62,9 - 17551: -62,8 - 17552: -62,7 - 17553: -62,6 - 17618: -60,10 - 17624: -66,-3 - 17625: -66,-2 - 17626: -66,-1 - 17627: -66,0 - 17658: -65,1 - 17659: -65,1 + 16900: -52,4 + 16901: -52,5 + 16902: -52,6 + 16922: -49,2 + 16924: -49,0 + 16947: -62,1 + 16989: -52,16 + 16999: -65,1 + 17000: -62,1 + 17002: -56,-7 + 17003: -56,-9 + 17007: -62,-7 + 17015: -56,-9 + 17017: -57,-8 + 17047: -52,-5 + 17050: -52,-11 + 17051: -52,-13 + 17052: -52,-13 + 17053: -52,-12 + 17054: -52,-14 + 17055: -52,-16 + 17056: -52,-17 + 17066: -62,-17 + 17067: -60,-17 + 17077: -55,-13 + 17078: -55,-14 + 17091: -51,-15 + 17113: -47,-14 + 17114: -47,-15 + 17115: -47,-16 + 17145: -51,-15 + 17195: -47,13 + 17198: -50,10 + 17210: -60,10 + 17218: -67,15 + 17253: -79,14 + 17328: -57,18 + 17364: -45,-7 + 17365: -45,-8 + 17366: -45,-9 + 17371: -50,-9 + 17372: -50,-8 + 17373: -50,-7 + 17378: -56,-7 + 17379: -56,-9 + 17419: -74,-8 + 17420: -74,-7 + 17421: -74,-6 + 17434: -75,-9 + 17439: -11,-80 + 17440: -11,-81 + 17441: -11,-82 + 17456: 5,92 + 17459: 10,90 + 17471: 7,89 + 17472: 7,88 + 17484: 11,85 + 17485: 11,86 + 17498: 9,80 + 17499: 9,81 + 17502: 12,81 + 17503: 12,80 + 17504: 12,79 + 17505: 12,77 + 17506: 12,76 + 17507: 12,75 + 17508: 12,74 + 17519: 9,75 + 17520: 9,76 + 17521: 9,80 + 17522: 9,81 + 17548: -62,9 + 17549: -62,8 + 17550: -62,7 + 17551: -62,6 + 17616: -60,10 + 17622: -66,-3 + 17623: -66,-2 + 17624: -66,-1 + 17625: -66,0 + 17656: -65,1 + 17657: -65,1 + 17659: -75,0 17661: -75,0 - 17663: -75,0 - 17693: -70,11 - 17694: -74,11 - 17702: -79,14 - 17706: -83,14 - 17743: -77,3 - 17744: -77,4 - 17745: -77,5 - 17746: -77,6 - 17747: -77,7 - 17760: -77,9 - 17761: -77,10 - 17762: -77,11 - 17776: -80,0 - 17785: -76,-2 - 17786: -76,-1 - 17790: -75,0 - 17830: -67,-11 - 17831: -67,-12 - 17848: -52,17 - 18197: -55,-2 - 18198: -55,-3 - 19941: -49,-2 + 17691: -70,11 + 17692: -74,11 + 17700: -79,14 + 17704: -83,14 + 17741: -77,3 + 17742: -77,4 + 17743: -77,5 + 17744: -77,6 + 17745: -77,7 + 17758: -77,9 + 17759: -77,10 + 17760: -77,11 + 17774: -80,0 + 17783: -76,-2 + 17784: -76,-1 + 17788: -75,0 + 17828: -67,-11 + 17829: -67,-12 + 17846: -52,17 + 18195: -55,-2 + 18196: -55,-3 + 19939: -49,-2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -13879,301 +13874,301 @@ entities: 867: 75,-43 1183: 49,-16 1184: 49,-15 - 2051: -20,48 - 2052: -20,47 - 2053: -20,46 - 2054: -20,51 - 2055: -20,52 - 2056: -23,50 - 2057: -23,49 - 2058: -23,48 - 2084: -18,47 - 2085: -18,48 - 2086: -18,49 - 2087: -18,50 - 2088: -18,51 - 2111: -20,27 - 2112: -20,28 - 2113: -20,29 - 2114: -20,31 - 2115: -20,32 - 2116: -23,31 - 2117: -23,33 - 2118: -23,32 - 2119: -23,30 - 2120: -20,34 - 2121: -20,35 - 2122: -20,36 - 2265: -24,41 - 2368: -29,31 - 2703: -9,53 - 2774: -7,49 - 2775: -12,49 - 2808: -8,33 - 2817: -5,33 - 3019: -14,57 - 3024: -20,61 - 3025: -20,62 - 3026: -20,63 - 3089: -14,68 - 3090: -21,68 - 3091: -21,57 - 3092: -7,57 - 3093: -6,61 - 3094: -6,62 - 3095: -6,63 - 3096: -6,64 - 3112: -7,68 - 3232: -13,75 - 3233: -13,74 - 3234: -13,73 - 3235: -13,72 - 3247: -13,79 - 3248: -13,80 - 3249: -13,81 - 3250: -13,82 - 3251: -13,92 - 3252: -13,93 - 3253: -13,94 - 3254: -13,95 - 3258: -13,88 - 3259: -13,87 - 3260: -13,86 - 3261: -13,86 - 3262: -13,85 - 3268: -31,79 - 3269: -31,80 - 3270: -31,81 - 3271: -31,82 - 3272: -31,85 - 3273: -31,86 - 3274: -31,88 - 3275: -31,92 - 3276: -31,93 - 3277: -31,94 - 3278: -31,95 - 3279: -31,75 - 3280: -31,74 - 3281: -31,73 - 3282: -31,72 - 3313: -32,68 - 3526: -1,68 - 3527: 4,68 - 3615: 5,72 - 3616: 5,73 - 3617: 5,74 - 3618: 5,75 - 3677: 5,82 - 3678: 5,81 - 3679: 5,80 - 3680: 5,79 - 3784: -1,57 - 3831: 16,70 - 3832: 16,71 - 3841: 23,70 - 4153: -23,22 - 4154: -23,22 - 5185: 16,16 - 5186: 16,17 - 5187: 16,18 - 5188: 16,19 - 5198: 16,9 - 5199: 16,10 - 5200: 16,11 - 5201: 16,12 - 5206: 16,2 - 5207: 16,3 - 5208: 16,5 - 5209: 16,4 - 5210: 16,-2 - 5211: 16,-3 - 5212: 16,-4 - 5213: 16,-5 - 5237: -27,68 - 5520: -39,5 - 5521: -34,5 - 5522: -28,5 - 5599: -35,26 - 6234: -20,-17 - 6235: -20,-16 - 6236: -20,-15 - 6237: -20,-14 - 6238: -20,-13 - 6239: -20,-12 - 6334: 16,-17 - 6335: 16,-15 - 6336: 16,-14 - 6337: 16,-12 - 6338: 16,-13 - 6339: 16,-16 - 6359: -3,-16 - 6675: -32,-9 - 6676: -32,-8 - 6677: -32,-7 - 6678: -32,-6 - 6679: -32,-5 - 6680: -32,-4 - 6694: -32,-1 - 6695: -32,0 - 6696: -32,0 - 6697: -32,2 - 6726: -28,-12 - 6727: -28,-13 - 6728: -28,-14 - 6729: -28,-15 - 6730: -28,-16 - 6756: -35,-15 - 6757: -35,-14 - 6758: -35,-13 - 6759: -35,-12 - 7029: -16,-20 - 7030: -9,-20 - 7031: 2,-20 - 7032: 9,-20 - 7146: 20,5 - 7213: 27,5 - 8034: 56,-15 - 8035: 56,-14 - 8036: 56,-13 - 8041: 56,-28 - 8042: 56,-27 - 8043: 56,-26 - 8053: 58,-27 - 8054: 60,-27 - 8055: 60,-14 - 8056: 58,-14 - 8262: 27,-11 - 8268: 20,-11 - 8269: 33,-13 - 8270: 33,-12 - 8271: 33,-12 - 8272: 33,-11 - 8273: 33,-10 - 8460: 48,-20 - 8461: 48,-20 - 8711: -9,-76 - 8712: -9,-80 - 8713: -6,-78 - 8768: 5,-25 - 8769: 5,-26 - 8792: -13,-25 - 8793: -13,-25 - 8794: -13,-26 - 8795: -13,-26 - 8846: -2,-27 - 8847: -2,-26 - 8848: -2,-26 - 8849: -2,-24 - 8850: -2,-25 - 8889: -2,-31 - 8890: -2,-32 - 8891: -2,-33 - 8892: -2,-34 - 8893: -2,-35 - 8973: -4,-24 - 9093: 1,-26 - 9094: 1,-25 - 9106: 14,-24 - 9391: -2,-42 - 9392: -2,-41 - 9393: -2,-41 - 9394: -2,-40 - 9395: -2,-40 - 9396: -2,-39 - 9397: -2,-45 - 9398: -2,-45 - 9399: -2,-46 - 9400: -2,-47 - 9401: -2,-48 - 9402: -2,-49 - 9403: -2,-50 - 9404: -2,-44 - 9405: -2,-44 - 9406: -2,-52 - 9407: -2,-53 + 2049: -20,48 + 2050: -20,47 + 2051: -20,46 + 2052: -20,51 + 2053: -20,52 + 2054: -23,50 + 2055: -23,49 + 2056: -23,48 + 2082: -18,47 + 2083: -18,48 + 2084: -18,49 + 2085: -18,50 + 2086: -18,51 + 2109: -20,27 + 2110: -20,28 + 2111: -20,29 + 2112: -20,31 + 2113: -20,32 + 2114: -23,31 + 2115: -23,33 + 2116: -23,32 + 2117: -23,30 + 2118: -20,34 + 2119: -20,35 + 2120: -20,36 + 2263: -24,41 + 2366: -29,31 + 2701: -9,53 + 2772: -7,49 + 2773: -12,49 + 2806: -8,33 + 2815: -5,33 + 3017: -14,57 + 3022: -20,61 + 3023: -20,62 + 3024: -20,63 + 3087: -14,68 + 3088: -21,68 + 3089: -21,57 + 3090: -7,57 + 3091: -6,61 + 3092: -6,62 + 3093: -6,63 + 3094: -6,64 + 3110: -7,68 + 3230: -13,75 + 3231: -13,74 + 3232: -13,73 + 3233: -13,72 + 3245: -13,79 + 3246: -13,80 + 3247: -13,81 + 3248: -13,82 + 3249: -13,92 + 3250: -13,93 + 3251: -13,94 + 3252: -13,95 + 3256: -13,88 + 3257: -13,87 + 3258: -13,86 + 3259: -13,86 + 3260: -13,85 + 3266: -31,79 + 3267: -31,80 + 3268: -31,81 + 3269: -31,82 + 3270: -31,85 + 3271: -31,86 + 3272: -31,88 + 3273: -31,92 + 3274: -31,93 + 3275: -31,94 + 3276: -31,95 + 3277: -31,75 + 3278: -31,74 + 3279: -31,73 + 3280: -31,72 + 3311: -32,68 + 3524: -1,68 + 3525: 4,68 + 3613: 5,72 + 3614: 5,73 + 3615: 5,74 + 3616: 5,75 + 3675: 5,82 + 3676: 5,81 + 3677: 5,80 + 3678: 5,79 + 3782: -1,57 + 3829: 16,70 + 3830: 16,71 + 3839: 23,70 + 4151: -23,22 + 4152: -23,22 + 5183: 16,16 + 5184: 16,17 + 5185: 16,18 + 5186: 16,19 + 5196: 16,9 + 5197: 16,10 + 5198: 16,11 + 5199: 16,12 + 5204: 16,2 + 5205: 16,3 + 5206: 16,5 + 5207: 16,4 + 5208: 16,-2 + 5209: 16,-3 + 5210: 16,-4 + 5211: 16,-5 + 5235: -27,68 + 5518: -39,5 + 5519: -34,5 + 5520: -28,5 + 5597: -35,26 + 6232: -20,-17 + 6233: -20,-16 + 6234: -20,-15 + 6235: -20,-14 + 6236: -20,-13 + 6237: -20,-12 + 6332: 16,-17 + 6333: 16,-15 + 6334: 16,-14 + 6335: 16,-12 + 6336: 16,-13 + 6337: 16,-16 + 6357: -3,-16 + 6673: -32,-9 + 6674: -32,-8 + 6675: -32,-7 + 6676: -32,-6 + 6677: -32,-5 + 6678: -32,-4 + 6692: -32,-1 + 6693: -32,0 + 6694: -32,0 + 6695: -32,2 + 6724: -28,-12 + 6725: -28,-13 + 6726: -28,-14 + 6727: -28,-15 + 6728: -28,-16 + 6754: -35,-15 + 6755: -35,-14 + 6756: -35,-13 + 6757: -35,-12 + 7027: -16,-20 + 7028: -9,-20 + 7029: 2,-20 + 7030: 9,-20 + 7144: 20,5 + 7211: 27,5 + 8032: 56,-15 + 8033: 56,-14 + 8034: 56,-13 + 8039: 56,-28 + 8040: 56,-27 + 8041: 56,-26 + 8051: 58,-27 + 8052: 60,-27 + 8053: 60,-14 + 8054: 58,-14 + 8260: 27,-11 + 8266: 20,-11 + 8267: 33,-13 + 8268: 33,-12 + 8269: 33,-12 + 8270: 33,-11 + 8271: 33,-10 + 8458: 48,-20 + 8459: 48,-20 + 8709: -9,-76 + 8710: -9,-80 + 8711: -6,-78 + 8766: 5,-25 + 8767: 5,-26 + 8790: -13,-25 + 8791: -13,-25 + 8792: -13,-26 + 8793: -13,-26 + 8844: -2,-27 + 8845: -2,-26 + 8846: -2,-26 + 8847: -2,-24 + 8848: -2,-25 + 8887: -2,-31 + 8888: -2,-32 + 8889: -2,-33 + 8890: -2,-34 + 8891: -2,-35 + 8971: -4,-24 + 9091: 1,-26 + 9092: 1,-25 + 9104: 14,-24 + 9389: -2,-42 + 9390: -2,-41 + 9391: -2,-41 + 9392: -2,-40 + 9393: -2,-40 + 9394: -2,-39 + 9395: -2,-45 + 9396: -2,-45 + 9397: -2,-46 + 9398: -2,-47 + 9399: -2,-48 + 9400: -2,-49 + 9401: -2,-50 + 9402: -2,-44 + 9403: -2,-44 + 9404: -2,-52 + 9405: -2,-53 + 9406: -2,-54 + 9407: -2,-54 9408: -2,-54 - 9409: -2,-54 - 9410: -2,-54 - 9411: -2,-55 - 9437: -2,-61 - 9438: -2,-60 - 9439: -2,-59 - 9473: -7,-71 - 9474: -7,-70 - 9475: -7,-69 - 9476: -4,-73 - 9477: -4,-72 - 9485: 74,-50 - 9486: 74,-51 - 10682: 71,-50 - 10683: 71,-50 - 10690: 75,-44 - 10712: 68,-41 - 12753: -43,22 - 14891: -20,50 - 14986: -17,23 - 14987: -7,23 - 14988: 0,23 - 14989: 10,23 - 15113: -31,87 - 15174: -20,64 - 15241: 43,-20 - 15358: -3,-71 - 15362: -3,-70 - 15447: -43,9 - 15448: -43,10 - 15449: -43,11 - 15450: -43,14 - 15451: -43,15 - 15452: -43,15 - 15453: -43,16 - 15454: -43,17 - 15455: -43,20 - 15456: -43,21 - 15485: -9,-79 - 15486: -9,-78 - 15487: -9,-77 - 15615: 95,-4 - 18811: 3,-9 - 18812: 9,-9 - 18813: -4,-9 - 18814: -10,-9 - 18815: -16,-9 - 19732: 34,-11 - 19733: 34,-10 - 19734: 34,-13 - 19735: 34,-14 - 19737: 33,-14 - 20245: -20,9 - 20246: -20,10 - 20247: -20,11 - 20248: -20,12 - 20249: -20,16 - 20250: -20,17 - 20251: -20,18 - 20252: -20,19 - 20253: -20,5 - 20254: -20,4 - 20255: -20,4 - 20256: -20,2 - 20257: -20,-2 - 20258: -20,-3 - 20259: -20,-4 - 20260: -20,-5 - 20297: -20,3 + 9409: -2,-55 + 9435: -2,-61 + 9436: -2,-60 + 9437: -2,-59 + 9471: -7,-71 + 9472: -7,-70 + 9473: -7,-69 + 9474: -4,-73 + 9475: -4,-72 + 9483: 74,-50 + 9484: 74,-51 + 10680: 71,-50 + 10681: 71,-50 + 10688: 75,-44 + 10710: 68,-41 + 12751: -43,22 + 14889: -20,50 + 14984: -17,23 + 14985: -7,23 + 14986: 0,23 + 14987: 10,23 + 15111: -31,87 + 15172: -20,64 + 15239: 43,-20 + 15356: -3,-71 + 15360: -3,-70 + 15445: -43,9 + 15446: -43,10 + 15447: -43,11 + 15448: -43,14 + 15449: -43,15 + 15450: -43,15 + 15451: -43,16 + 15452: -43,17 + 15453: -43,20 + 15454: -43,21 + 15483: -9,-79 + 15484: -9,-78 + 15485: -9,-77 + 15613: 95,-4 + 18809: 3,-9 + 18810: 9,-9 + 18811: -4,-9 + 18812: -10,-9 + 18813: -16,-9 + 19730: 34,-11 + 19731: 34,-10 + 19732: 34,-13 + 19733: 34,-14 + 19735: 33,-14 + 20243: -20,9 + 20244: -20,10 + 20245: -20,11 + 20246: -20,12 + 20247: -20,16 + 20248: -20,17 + 20249: -20,18 + 20250: -20,19 + 20251: -20,5 + 20252: -20,4 + 20253: -20,4 + 20254: -20,2 + 20255: -20,-2 + 20256: -20,-3 + 20257: -20,-4 + 20258: -20,-5 + 20295: -20,3 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4083: -20,16 - 4084: -20,17 - 4085: -20,18 - 4086: -20,19 - 4087: -20,12 - 4088: -20,11 - 4089: -20,10 - 4090: -20,9 + 4081: -20,16 + 4082: -20,17 + 4083: -20,18 + 4084: -20,19 + 4085: -20,12 + 4086: -20,11 + 4087: -20,10 + 4088: -20,9 - node: color: '#52E5FFFF' id: BrickTileWhiteLineN @@ -14183,252 +14178,252 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineN decals: - 17888: -46,23 - 17889: -47,23 - 17890: -47,23 - 17891: -48,23 - 17892: -49,23 - 17924: -56,37 - 17928: -55,31 - 17959: -44,51 - 17970: -46,56 - 17997: -48,43 - 18002: -49,42 - 18011: -45,45 - 18015: -48,45 - 18016: -49,45 - 18017: -49,45 - 18018: -50,45 - 18019: -51,45 - 18020: -52,45 - 18021: -53,45 - 18022: -54,45 - 18023: -55,45 - 18024: -57,45 - 18025: -56,45 - 18059: -59,55 - 18080: -56,43 - 18081: -54,43 - 18134: -55,24 - 18135: -54,24 - 18142: -54,19 - 18143: -53,19 - 18146: -52,21 + 17886: -46,23 + 17887: -47,23 + 17888: -47,23 + 17889: -48,23 + 17890: -49,23 + 17922: -56,37 + 17926: -55,31 + 17957: -44,51 + 17968: -46,56 + 17995: -48,43 + 18000: -49,42 + 18009: -45,45 + 18013: -48,45 + 18014: -49,45 + 18015: -49,45 + 18016: -50,45 + 18017: -51,45 + 18018: -52,45 + 18019: -53,45 + 18020: -54,45 + 18021: -55,45 + 18022: -57,45 + 18023: -56,45 + 18057: -59,55 + 18078: -56,43 + 18079: -54,43 + 18132: -55,24 + 18133: -54,24 + 18140: -54,19 + 18141: -53,19 + 18144: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineN decals: - 9501: 6,-27 - 9502: 7,-27 - 9503: 8,-27 - 9504: 9,-27 - 9505: 10,-27 - 9531: 20,-34 - 9532: 22,-34 - 9533: 23,-34 - 9534: 24,-34 - 9535: 25,-34 - 9536: 26,-34 - 9537: 27,-34 - 9538: 28,-34 - 9539: 30,-34 - 9540: 31,-34 - 9541: 32,-34 - 9542: 33,-34 - 9543: 34,-34 - 9544: 35,-34 - 9545: 37,-34 - 9555: 17,-24 - 9709: 16,-37 - 9710: 17,-37 - 9711: 18,-37 - 9732: 13,-34 - 9733: 11,-34 - 9734: 10,-34 - 9771: 26,-37 - 9772: 27,-37 - 9773: 28,-37 - 9774: 17,-48 - 9775: 27,-54 - 9810: 22,-36 - 9811: 23,-36 - 9812: 24,-36 - 9813: 25,-36 - 9814: 26,-36 - 9815: 27,-36 - 9816: 31,-36 - 9817: 32,-36 - 9818: 33,-36 - 9819: 34,-36 - 9820: 34,-36 - 9821: 35,-36 - 9822: 36,-36 - 9823: 27,-45 - 9824: 27,-52 - 9825: 17,-46 - 9826: 17,-35 - 9827: 11,-36 - 9828: 12,-36 - 9829: 13,-36 - 9943: 21,-38 - 9944: 22,-38 - 9945: 23,-38 - 9994: 31,-38 - 9995: 32,-38 - 9996: 33,-38 - 9997: 33,-38 - 9998: 34,-38 - 9999: 35,-38 - 10000: 36,-38 - 10001: 37,-38 - 10003: 37,-43 - 10017: 32,-41 - 10018: 33,-41 - 10019: 34,-41 - 10020: 35,-41 - 10021: 36,-41 - 10094: 29,-28 - 10110: 9,-38 - 10111: 10,-38 - 10112: 11,-38 - 10113: 12,-38 - 10114: 13,-38 - 10127: 20,-46 - 10128: 21,-46 - 10129: 22,-46 - 10130: 23,-46 - 10131: 24,-46 - 10142: 22,-50 - 10165: 21,-43 - 10166: 22,-43 - 10167: 23,-43 - 10228: 31,-47 - 10245: 31,-54 - 10335: 3,-43 - 10336: 5,-43 - 10339: 7,-45 - 10356: 9,-42 - 10372: 4,-48 - 10388: 13,-43 - 10613: 44,-31 - 10614: 47,-31 - 10615: 46,-31 - 10616: 48,-31 - 10617: 48,-31 - 19431: -6,-58 - 19781: 27,-29 - 19782: 28,-29 - 19783: 30,-29 - 19784: 31,-29 + 9499: 6,-27 + 9500: 7,-27 + 9501: 8,-27 + 9502: 9,-27 + 9503: 10,-27 + 9529: 20,-34 + 9530: 22,-34 + 9531: 23,-34 + 9532: 24,-34 + 9533: 25,-34 + 9534: 26,-34 + 9535: 27,-34 + 9536: 28,-34 + 9537: 30,-34 + 9538: 31,-34 + 9539: 32,-34 + 9540: 33,-34 + 9541: 34,-34 + 9542: 35,-34 + 9543: 37,-34 + 9553: 17,-24 + 9707: 16,-37 + 9708: 17,-37 + 9709: 18,-37 + 9730: 13,-34 + 9731: 11,-34 + 9732: 10,-34 + 9769: 26,-37 + 9770: 27,-37 + 9771: 28,-37 + 9772: 17,-48 + 9773: 27,-54 + 9808: 22,-36 + 9809: 23,-36 + 9810: 24,-36 + 9811: 25,-36 + 9812: 26,-36 + 9813: 27,-36 + 9814: 31,-36 + 9815: 32,-36 + 9816: 33,-36 + 9817: 34,-36 + 9818: 34,-36 + 9819: 35,-36 + 9820: 36,-36 + 9821: 27,-45 + 9822: 27,-52 + 9823: 17,-46 + 9824: 17,-35 + 9825: 11,-36 + 9826: 12,-36 + 9827: 13,-36 + 9941: 21,-38 + 9942: 22,-38 + 9943: 23,-38 + 9992: 31,-38 + 9993: 32,-38 + 9994: 33,-38 + 9995: 33,-38 + 9996: 34,-38 + 9997: 35,-38 + 9998: 36,-38 + 9999: 37,-38 + 10001: 37,-43 + 10015: 32,-41 + 10016: 33,-41 + 10017: 34,-41 + 10018: 35,-41 + 10019: 36,-41 + 10092: 29,-28 + 10108: 9,-38 + 10109: 10,-38 + 10110: 11,-38 + 10111: 12,-38 + 10112: 13,-38 + 10125: 20,-46 + 10126: 21,-46 + 10127: 22,-46 + 10128: 23,-46 + 10129: 24,-46 + 10140: 22,-50 + 10163: 21,-43 + 10164: 22,-43 + 10165: 23,-43 + 10226: 31,-47 + 10243: 31,-54 + 10333: 3,-43 + 10334: 5,-43 + 10337: 7,-45 + 10354: 9,-42 + 10370: 4,-48 + 10386: 13,-43 + 10611: 44,-31 + 10612: 47,-31 + 10613: 46,-31 + 10614: 48,-31 + 10615: 48,-31 + 19429: -6,-58 + 19779: 27,-29 + 19780: 28,-29 + 19781: 30,-29 + 19782: 31,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineN decals: - 2874: -25,48 - 2887: -32,44 - 2905: -33,54 - 2906: -32,54 - 2907: -31,54 - 2908: -30,54 - 2917: -27,51 - 2961: -32,46 - 2962: -30,46 - 2963: -28,46 - 2993: -38,50 - 3011: -38,44 - 3012: -30,44 + 2872: -25,48 + 2885: -32,44 + 2903: -33,54 + 2904: -32,54 + 2905: -31,54 + 2906: -30,54 + 2915: -27,51 + 2959: -32,46 + 2960: -30,46 + 2961: -28,46 + 2991: -38,50 + 3009: -38,44 + 3010: -30,44 - node: color: '#B18BDAFF' id: BrickTileWhiteLineN decals: - 5097: 22,32 - 5099: 24,32 - 5100: 26,32 - 5150: 39,30 - 5151: 40,30 - 5152: 41,30 - 5153: 42,30 - 5162: 38,30 - 5180: 35,33 - 11451: -23,-31 - 11452: -18,-36 - 11453: -17,-36 - 11454: -17,-36 - 11455: -16,-36 - 11456: -15,-36 - 11457: -14,-36 - 11458: -29,-36 - 11459: -27,-36 - 11460: -28,-36 - 11461: -26,-36 - 11462: -26,-36 - 11463: -24,-36 - 11464: -25,-36 - 11524: -14,-54 - 11525: -14,-44 - 11533: -14,-34 - 11534: -16,-34 - 11535: -17,-34 - 11536: -17,-34 - 11537: -18,-34 - 11538: -19,-34 - 11539: -20,-34 - 11581: -12,-34 - 11582: -31,-34 - 11583: -30,-34 - 11584: -27,-34 - 11585: -27,-34 - 11586: -28,-34 - 11587: -26,-34 - 11588: -25,-34 - 11589: -25,-34 - 11631: -12,-27 - 11632: -11,-27 - 11633: -10,-27 - 11634: -9,-27 - 11635: -9,-27 - 11636: -8,-27 - 11681: -7,-30 - 11682: -8,-30 - 11683: -9,-30 - 11684: -5,-30 - 11795: -7,-37 - 11798: -15,-37 - 11799: -14,-37 - 11800: -13,-37 - 11801: -13,-37 - 11821: -15,-45 - 11822: -14,-45 - 11823: -13,-45 - 11915: -29,-37 - 11916: -24,-37 - 11917: -24,-37 - 11921: -28,-28 - 11940: -30,-32 - 11941: -29,-32 - 11942: -29,-32 - 11943: -28,-32 - 12097: -24,-33 - 12098: -23,-33 - 12099: -22,-33 - 12206: -25,-42 - 12207: -24,-42 - 12208: -29,-42 - 12242: -16,-55 - 12243: -16,-50 - 12266: -19,-56 - 12267: -18,-56 - 12268: -17,-56 - 12269: -15,-56 - 12270: -14,-56 - 12297: -9,-49 - 12298: -8,-49 - 12299: -5,-46 - 12316: -6,-54 - 12326: -19,-45 - 12645: -8,-35 - 12646: -7,-35 - 20069: 36,39 + 5095: 22,32 + 5097: 24,32 + 5098: 26,32 + 5148: 39,30 + 5149: 40,30 + 5150: 41,30 + 5151: 42,30 + 5160: 38,30 + 5178: 35,33 + 11449: -23,-31 + 11450: -18,-36 + 11451: -17,-36 + 11452: -17,-36 + 11453: -16,-36 + 11454: -15,-36 + 11455: -14,-36 + 11456: -29,-36 + 11457: -27,-36 + 11458: -28,-36 + 11459: -26,-36 + 11460: -26,-36 + 11461: -24,-36 + 11462: -25,-36 + 11522: -14,-54 + 11523: -14,-44 + 11531: -14,-34 + 11532: -16,-34 + 11533: -17,-34 + 11534: -17,-34 + 11535: -18,-34 + 11536: -19,-34 + 11537: -20,-34 + 11579: -12,-34 + 11580: -31,-34 + 11581: -30,-34 + 11582: -27,-34 + 11583: -27,-34 + 11584: -28,-34 + 11585: -26,-34 + 11586: -25,-34 + 11587: -25,-34 + 11629: -12,-27 + 11630: -11,-27 + 11631: -10,-27 + 11632: -9,-27 + 11633: -9,-27 + 11634: -8,-27 + 11679: -7,-30 + 11680: -8,-30 + 11681: -9,-30 + 11682: -5,-30 + 11793: -7,-37 + 11796: -15,-37 + 11797: -14,-37 + 11798: -13,-37 + 11799: -13,-37 + 11819: -15,-45 + 11820: -14,-45 + 11821: -13,-45 + 11913: -29,-37 + 11914: -24,-37 + 11915: -24,-37 + 11919: -28,-28 + 11938: -30,-32 + 11939: -29,-32 + 11940: -29,-32 + 11941: -28,-32 + 12095: -24,-33 + 12096: -23,-33 + 12097: -22,-33 + 12204: -25,-42 + 12205: -24,-42 + 12206: -29,-42 + 12240: -16,-55 + 12241: -16,-50 + 12264: -19,-56 + 12265: -18,-56 + 12266: -17,-56 + 12267: -15,-56 + 12268: -14,-56 + 12295: -9,-49 + 12296: -8,-49 + 12297: -5,-46 + 12314: -6,-54 + 12324: -19,-45 + 12643: -8,-35 + 12644: -7,-35 + 20067: 36,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineN @@ -14440,318 +14435,318 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineN decals: - 10836: 27,-59 - 10851: 35,-60 - 10868: 39,-60 - 10869: 40,-60 - 10924: 38,-70 - 10925: 39,-70 - 10926: 41,-70 - 10932: 39,-72 - 10974: 28,-67 - 10975: 28,-67 - 10976: 29,-67 - 10977: 30,-67 + 10834: 27,-59 + 10849: 35,-60 + 10866: 39,-60 + 10867: 40,-60 + 10922: 38,-70 + 10923: 39,-70 + 10924: 41,-70 + 10930: 39,-72 + 10972: 28,-67 + 10973: 28,-67 + 10974: 29,-67 + 10975: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineN decals: - 19263: 69,16 - 19267: 62,-3 + 19261: 69,16 + 19265: 62,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineN decals: - 2706: -11,54 - 2712: -12,51 - 3805: 11,70 - 9449: -38,2 + 2704: -11,54 + 2710: -12,51 + 3803: 11,70 + 9447: -38,2 - node: color: '#DAA58BFF' id: BrickTileWhiteLineN decals: - 4365: 4,25 - 4366: 5,25 - 4367: 7,25 - 4368: 8,25 - 4369: 6,31 - 4396: 4,32 - 4402: 3,37 - 4403: 4,37 - 4404: 9,37 - 4414: 9,32 - 4421: 5,31 - 4422: 3,31 - 4439: 4,27 - 4440: 5,27 - 4441: 6,27 - 4442: 7,27 - 4443: 8,27 - 4449: 14,28 - 4465: 12,28 - 4466: 13,28 - 4478: 14,25 - 4479: 15,25 - 4480: 16,25 - 4482: 16,32 - 4488: 13,26 - 4489: 14,26 - 4490: 15,26 - 4491: 16,26 - 4508: 13,39 - 4509: 14,39 - 4510: 15,39 - 4511: 15,39 - 4512: 16,39 - 4513: 17,39 - 4514: 17,39 - 4515: 19,39 - 4516: 20,39 - 4517: 17,39 - 4518: 18,39 - 4537: 5,38 - 4544: 5,43 - 4545: 6,43 - 4552: 10,38 - 4562: 13,33 - 4572: 10,41 - 4592: 15,33 - 4612: 20,33 - 4613: 21,33 - 4621: 14,46 - 4638: 22,32 - 4639: 23,32 - 4640: 24,32 - 4641: 25,32 - 4642: 26,32 - 4675: 21,25 - 4679: 22,27 - 4680: 23,27 - 4681: 23,27 - 4682: 24,27 - 4696: 26,27 - 4697: 20,27 - 4708: 22,28 - 4709: 24,28 - 4715: 26,28 - 4716: 20,28 - 4730: 23,29 - 4753: 25,38 - 4754: 26,38 - 4755: 27,38 - 4759: 26,34 - 4760: 27,34 - 4779: 16,34 - 4780: 17,34 - 4781: 18,34 - 4804: 28,44 - 4806: 28,39 - 4820: 4,34 - 4821: 5,34 - 4822: 6,34 - 4823: 7,34 - 4824: 8,34 - 4825: 9,34 - 4830: 6,37 - 4831: 7,37 - 4832: 8,37 - 4840: 27,52 - 4841: 28,52 - 4842: 29,52 - 4843: 30,52 - 4844: 31,52 - 4845: 32,52 - 4846: 33,52 - 4847: 34,52 - 4848: 36,52 - 4849: 37,52 - 4850: 37,52 - 4851: 38,52 - 4908: 35,52 - 4909: 26,52 - 4923: 11,54 - 4924: 12,54 - 4947: 16,54 - 4954: 18,54 - 4955: 19,54 - 4956: 20,54 - 4957: 20,54 - 4958: 22,54 - 4959: 23,54 - 4960: 21,54 - 5009: 16,40 - 5010: 17,40 - 5011: 19,40 - 5012: 20,40 - 5013: 21,40 - 5014: 22,40 - 5015: 22,42 - 5016: 21,42 - 5017: 19,42 - 5018: 20,42 - 5019: 17,42 - 5020: 16,42 - 5021: 16,44 - 5022: 17,44 - 5023: 19,44 - 5024: 20,44 - 5025: 21,44 - 5026: 22,44 - 5027: 22,46 - 5028: 21,46 - 5029: 20,46 - 5030: 19,46 - 5031: 19,48 - 5032: 20,48 - 5033: 21,48 - 5034: 22,48 - 5035: 22,50 - 5036: 21,50 - 5037: 20,50 - 5046: 19,50 - 5166: 39,30 - 5167: 41,30 - 11372: -11,-83 - 20061: 35,39 + 4363: 4,25 + 4364: 5,25 + 4365: 7,25 + 4366: 8,25 + 4367: 6,31 + 4394: 4,32 + 4400: 3,37 + 4401: 4,37 + 4402: 9,37 + 4412: 9,32 + 4419: 5,31 + 4420: 3,31 + 4437: 4,27 + 4438: 5,27 + 4439: 6,27 + 4440: 7,27 + 4441: 8,27 + 4447: 14,28 + 4463: 12,28 + 4464: 13,28 + 4476: 14,25 + 4477: 15,25 + 4478: 16,25 + 4480: 16,32 + 4486: 13,26 + 4487: 14,26 + 4488: 15,26 + 4489: 16,26 + 4506: 13,39 + 4507: 14,39 + 4508: 15,39 + 4509: 15,39 + 4510: 16,39 + 4511: 17,39 + 4512: 17,39 + 4513: 19,39 + 4514: 20,39 + 4515: 17,39 + 4516: 18,39 + 4535: 5,38 + 4542: 5,43 + 4543: 6,43 + 4550: 10,38 + 4560: 13,33 + 4570: 10,41 + 4590: 15,33 + 4610: 20,33 + 4611: 21,33 + 4619: 14,46 + 4636: 22,32 + 4637: 23,32 + 4638: 24,32 + 4639: 25,32 + 4640: 26,32 + 4673: 21,25 + 4677: 22,27 + 4678: 23,27 + 4679: 23,27 + 4680: 24,27 + 4694: 26,27 + 4695: 20,27 + 4706: 22,28 + 4707: 24,28 + 4713: 26,28 + 4714: 20,28 + 4728: 23,29 + 4751: 25,38 + 4752: 26,38 + 4753: 27,38 + 4757: 26,34 + 4758: 27,34 + 4777: 16,34 + 4778: 17,34 + 4779: 18,34 + 4802: 28,44 + 4804: 28,39 + 4818: 4,34 + 4819: 5,34 + 4820: 6,34 + 4821: 7,34 + 4822: 8,34 + 4823: 9,34 + 4828: 6,37 + 4829: 7,37 + 4830: 8,37 + 4838: 27,52 + 4839: 28,52 + 4840: 29,52 + 4841: 30,52 + 4842: 31,52 + 4843: 32,52 + 4844: 33,52 + 4845: 34,52 + 4846: 36,52 + 4847: 37,52 + 4848: 37,52 + 4849: 38,52 + 4906: 35,52 + 4907: 26,52 + 4921: 11,54 + 4922: 12,54 + 4945: 16,54 + 4952: 18,54 + 4953: 19,54 + 4954: 20,54 + 4955: 20,54 + 4956: 22,54 + 4957: 23,54 + 4958: 21,54 + 5007: 16,40 + 5008: 17,40 + 5009: 19,40 + 5010: 20,40 + 5011: 21,40 + 5012: 22,40 + 5013: 22,42 + 5014: 21,42 + 5015: 19,42 + 5016: 20,42 + 5017: 17,42 + 5018: 16,42 + 5019: 16,44 + 5020: 17,44 + 5021: 19,44 + 5022: 20,44 + 5023: 21,44 + 5024: 22,44 + 5025: 22,46 + 5026: 21,46 + 5027: 20,46 + 5028: 19,46 + 5029: 19,48 + 5030: 20,48 + 5031: 21,48 + 5032: 22,48 + 5033: 22,50 + 5034: 21,50 + 5035: 20,50 + 5044: 19,50 + 5164: 39,30 + 5165: 41,30 + 11370: -11,-83 + 20059: 35,39 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 4007: -38,54 - 9582: 7,-30 - 9583: 6,-30 - 9584: 4,-30 - 9585: 3,-30 - 9613: 5,-35 - 9614: 6,-35 - 9632: 5,-37 + 4005: -38,54 + 9580: 7,-30 + 9581: 6,-30 + 9582: 4,-30 + 9583: 3,-30 + 9611: 5,-35 + 9612: 6,-35 + 9630: 5,-37 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 16894: -55,2 - 16895: -54,2 - 16896: -53,3 - 16897: -52,3 - 16898: -53,7 - 16899: -52,7 - 16910: -53,7 - 16911: -52,7 - 16912: -53,3 - 16913: -52,3 - 16916: -51,2 - 16917: -50,2 - 16928: -50,-1 - 16944: -58,-5 - 16950: -60,2 - 16951: -59,2 - 16952: -58,2 - 16953: -57,2 - 16954: -56,2 - 16970: -48,15 - 16971: -49,15 - 16972: -50,15 - 16973: -51,15 - 16988: -57,15 - 16989: -56,15 - 17007: -58,-11 - 17026: -60,-6 - 17027: -59,-6 - 17038: -60,-12 - 17039: -59,-12 - 17040: -57,-12 - 17041: -56,-12 - 17042: -55,-7 - 17066: -61,-17 - 17099: -56,-19 - 17100: -54,-19 - 17112: -49,-13 - 17113: -48,-13 - 17204: -58,16 - 17213: -62,15 - 17214: -63,15 - 17215: -64,15 - 17216: -65,15 - 17217: -66,15 - 17234: -77,16 - 17235: -76,16 - 17236: -75,16 - 17237: -74,16 - 17238: -73,16 - 17239: -71,16 - 17240: -70,16 - 17241: -69,16 - 17242: -72,16 - 17260: -77,12 - 17261: -72,13 - 17263: -77,12 - 17331: -60,19 - 17332: -59,19 - 17333: -58,19 - 17362: -48,-6 - 17363: -47,-6 - 17364: -46,-6 - 17395: -66,-6 - 17396: -65,-6 - 17397: -64,-6 - 17398: -72,-6 - 17399: -70,-6 - 17400: -68,-6 - 17401: -73,-6 - 17412: -71,-9 - 17413: -70,-9 - 17414: -69,-9 - 17427: -75,-6 - 17428: -76,-6 - 17438: -71,-9 - 17439: -70,-9 - 17440: -69,-9 - 17448: -11,-83 - 17453: 10,89 - 17454: 5,91 - 17456: 6,86 - 17469: 10,89 - 17470: 6,90 - 17502: 11,82 - 17519: 12,73 - 17561: -63,10 - 17562: -64,10 - 17628: -72,2 - 17629: -71,2 - 17630: -70,2 - 17631: -69,2 - 17632: -68,2 - 17633: -67,2 - 17634: -67,2 - 17654: -71,-5 - 17655: -69,-5 - 17686: -73,12 - 17687: -71,12 - 17697: -72,9 - 17699: -72,13 - 17703: -82,14 - 17704: -81,14 - 17705: -80,14 - 17719: -77,12 - 17750: -77,2 - 17767: -77,8 - 17768: -77,12 - 17769: -78,1 - 17784: -76,-3 - 17814: -72,-10 - 17815: -68,-10 - 17819: -71,-9 - 17820: -70,-9 - 17821: -69,-9 - 18191: -60,-1 - 18192: -59,-1 - 18193: -58,-1 - 18194: -57,-1 - 18195: -56,-1 - 18249: -55,15 - 18250: -54,15 - 18251: -53,15 - 18252: -52,15 + 16892: -55,2 + 16893: -54,2 + 16894: -53,3 + 16895: -52,3 + 16896: -53,7 + 16897: -52,7 + 16908: -53,7 + 16909: -52,7 + 16910: -53,3 + 16911: -52,3 + 16914: -51,2 + 16915: -50,2 + 16926: -50,-1 + 16942: -58,-5 + 16948: -60,2 + 16949: -59,2 + 16950: -58,2 + 16951: -57,2 + 16952: -56,2 + 16968: -48,15 + 16969: -49,15 + 16970: -50,15 + 16971: -51,15 + 16986: -57,15 + 16987: -56,15 + 17005: -58,-11 + 17024: -60,-6 + 17025: -59,-6 + 17036: -60,-12 + 17037: -59,-12 + 17038: -57,-12 + 17039: -56,-12 + 17040: -55,-7 + 17064: -61,-17 + 17097: -56,-19 + 17098: -54,-19 + 17110: -49,-13 + 17111: -48,-13 + 17202: -58,16 + 17211: -62,15 + 17212: -63,15 + 17213: -64,15 + 17214: -65,15 + 17215: -66,15 + 17232: -77,16 + 17233: -76,16 + 17234: -75,16 + 17235: -74,16 + 17236: -73,16 + 17237: -71,16 + 17238: -70,16 + 17239: -69,16 + 17240: -72,16 + 17258: -77,12 + 17259: -72,13 + 17261: -77,12 + 17329: -60,19 + 17330: -59,19 + 17331: -58,19 + 17360: -48,-6 + 17361: -47,-6 + 17362: -46,-6 + 17393: -66,-6 + 17394: -65,-6 + 17395: -64,-6 + 17396: -72,-6 + 17397: -70,-6 + 17398: -68,-6 + 17399: -73,-6 + 17410: -71,-9 + 17411: -70,-9 + 17412: -69,-9 + 17425: -75,-6 + 17426: -76,-6 + 17436: -71,-9 + 17437: -70,-9 + 17438: -69,-9 + 17446: -11,-83 + 17451: 10,89 + 17452: 5,91 + 17454: 6,86 + 17467: 10,89 + 17468: 6,90 + 17500: 11,82 + 17517: 12,73 + 17559: -63,10 + 17560: -64,10 + 17626: -72,2 + 17627: -71,2 + 17628: -70,2 + 17629: -69,2 + 17630: -68,2 + 17631: -67,2 + 17632: -67,2 + 17652: -71,-5 + 17653: -69,-5 + 17684: -73,12 + 17685: -71,12 + 17695: -72,9 + 17697: -72,13 + 17701: -82,14 + 17702: -81,14 + 17703: -80,14 + 17717: -77,12 + 17748: -77,2 + 17765: -77,8 + 17766: -77,12 + 17767: -78,1 + 17782: -76,-3 + 17812: -72,-10 + 17813: -68,-10 + 17817: -71,-9 + 17818: -70,-9 + 17819: -69,-9 + 18189: -60,-1 + 18190: -59,-1 + 18191: -58,-1 + 18192: -57,-1 + 18193: -56,-1 + 18247: -55,15 + 18248: -54,15 + 18249: -53,15 + 18250: -52,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -14761,604 +14756,604 @@ entities: 870: 71,-42 1174: 45,-14 1175: 48,-14 - 2072: -19,49 - 2073: -19,45 - 2082: -21,46 - 2083: -17,46 - 2140: -19,33 - 2141: -19,26 - 2145: -19,30 - 2213: -21,28 - 2266: -23,40 - 2391: -31,29 - 2698: -12,51 - 2705: -10,54 - 2707: -12,54 - 2770: -11,48 - 2771: -10,48 - 2772: -6,48 - 2773: -5,48 - 2816: -6,34 - 3016: -13,56 - 3017: -12,56 - 3018: -11,56 - 3032: -19,60 - 3065: -16,58 - 3066: -15,58 - 3067: -14,58 - 3068: -13,58 - 3080: -20,67 - 3081: -19,67 - 3082: -18,67 - 3083: -12,67 - 3084: -13,67 - 3085: -11,67 - 3098: -5,60 - 3104: -6,67 - 3105: -5,67 - 3106: -4,67 - 3117: -6,56 - 3118: -5,56 - 3119: -4,56 - 3120: -20,56 - 3121: -19,56 - 3122: -18,56 - 3230: -12,71 - 3236: -12,78 - 3255: -12,91 - 3256: -12,84 - 3303: -30,71 - 3304: -30,78 - 3305: -30,84 - 3306: -30,91 - 3310: -31,67 - 3311: -30,67 - 3312: -29,67 - 3519: 0,67 - 3520: 1,67 - 3521: 1,67 - 3522: 2,67 - 3523: 5,67 - 3524: 6,67 - 3525: 7,67 - 3614: 6,71 - 3682: 6,78 - 3780: 0,56 - 3781: 1,56 - 3782: 2,56 - 3842: 17,71 - 3843: 18,71 - 3844: 19,71 - 3845: 20,71 - 3846: 21,71 - 3848: 22,71 - 3865: 18,68 - 3866: 19,68 - 3867: 21,68 - 3868: 22,68 - 4157: -24,23 - 5202: 17,15 - 5203: 17,8 - 5223: -19,1 - 5224: 17,-6 - 5225: 17,1 - 5234: -26,67 - 5235: -25,67 - 5236: -24,67 - 5491: -38,4 - 5492: -38,4 - 5493: -37,4 - 5494: -36,4 - 5495: -33,4 - 5496: -32,4 - 5497: -31,4 - 5498: -27,4 - 5499: -26,4 - 5500: -25,4 - 5501: -23,4 - 5502: -24,4 - 5503: -24,4 - 5582: -32,28 - 6247: -19,-18 - 6327: 17,-18 - 6350: -2,-14 - 6351: -1,-14 - 6352: 0,-14 - 6353: 1,-14 - 6420: 3,-21 - 6421: 4,-21 - 6422: 5,-21 - 6423: 6,-21 - 6424: 10,-21 - 6425: 12,-21 - 6426: 11,-21 - 6427: 13,-21 - 6428: -5,-21 - 6429: -6,-21 - 6430: -6,-21 - 6431: -7,-21 - 6432: -7,-21 - 6433: -8,-21 - 6434: -8,-21 - 6435: -12,-21 - 6436: -12,-21 - 6437: -13,-21 - 6438: -14,-21 - 6439: -14,-21 - 6440: -15,-21 - 6441: -15,-21 - 6673: -33,-10 - 6674: -32,-10 - 6683: -31,-2 - 6684: -30,-2 - 6685: -29,-2 - 6686: -28,-2 - 6687: -27,-2 - 6688: -26,-2 - 6689: -26,-2 - 6690: -23,-2 - 6691: -22,-2 - 6692: -22,-2 - 6693: -25,-2 - 6720: -31,-11 - 6721: -30,-11 - 6722: -29,-11 - 6723: -34,-11 - 6751: -28,-17 - 6752: -34,-16 - 6753: -33,-16 - 6754: -32,-16 - 6755: -31,-16 - 6974: -25,-15 - 6975: -24,-15 - 6980: -25,-15 - 6981: -24,-15 - 6987: -24,-19 - 7141: 21,4 - 7142: 22,4 - 7143: 23,4 - 7144: 24,4 - 7208: 28,4 - 7209: 29,4 - 7210: 30,4 - 7211: 31,4 - 8076: 58,-17 - 8077: 59,-17 - 8078: 60,-17 - 8079: 58,-30 - 8080: 59,-30 - 8081: 60,-30 - 8219: 39,-7 - 8220: 40,-7 - 8250: 22,-12 - 8251: 23,-12 - 8252: 23,-12 - 8253: 24,-12 - 8254: 24,-12 - 8255: 21,-12 - 8256: 28,-12 - 8257: 28,-12 - 8258: 29,-12 - 8259: 29,-12 - 8260: 30,-12 - 8261: 30,-12 - 8280: 35,-16 - 8281: 36,-16 - 8282: 36,-16 - 8283: 37,-16 - 8284: 37,-16 - 8285: 39,-16 - 8286: 39,-16 - 8287: 38,-16 - 8288: 38,-16 - 8367: 46,-18 - 8368: 47,-18 - 8372: 48,-14 - 8373: 48,-14 - 8374: 47,-14 + 2070: -19,49 + 2071: -19,45 + 2080: -21,46 + 2081: -17,46 + 2138: -19,33 + 2139: -19,26 + 2143: -19,30 + 2211: -21,28 + 2264: -23,40 + 2389: -31,29 + 2696: -12,51 + 2703: -10,54 + 2705: -12,54 + 2768: -11,48 + 2769: -10,48 + 2770: -6,48 + 2771: -5,48 + 2814: -6,34 + 3014: -13,56 + 3015: -12,56 + 3016: -11,56 + 3030: -19,60 + 3063: -16,58 + 3064: -15,58 + 3065: -14,58 + 3066: -13,58 + 3078: -20,67 + 3079: -19,67 + 3080: -18,67 + 3081: -12,67 + 3082: -13,67 + 3083: -11,67 + 3096: -5,60 + 3102: -6,67 + 3103: -5,67 + 3104: -4,67 + 3115: -6,56 + 3116: -5,56 + 3117: -4,56 + 3118: -20,56 + 3119: -19,56 + 3120: -18,56 + 3228: -12,71 + 3234: -12,78 + 3253: -12,91 + 3254: -12,84 + 3301: -30,71 + 3302: -30,78 + 3303: -30,84 + 3304: -30,91 + 3308: -31,67 + 3309: -30,67 + 3310: -29,67 + 3517: 0,67 + 3518: 1,67 + 3519: 1,67 + 3520: 2,67 + 3521: 5,67 + 3522: 6,67 + 3523: 7,67 + 3612: 6,71 + 3680: 6,78 + 3778: 0,56 + 3779: 1,56 + 3780: 2,56 + 3840: 17,71 + 3841: 18,71 + 3842: 19,71 + 3843: 20,71 + 3844: 21,71 + 3846: 22,71 + 3863: 18,68 + 3864: 19,68 + 3865: 21,68 + 3866: 22,68 + 4155: -24,23 + 5200: 17,15 + 5201: 17,8 + 5221: -19,1 + 5222: 17,-6 + 5223: 17,1 + 5232: -26,67 + 5233: -25,67 + 5234: -24,67 + 5489: -38,4 + 5490: -38,4 + 5491: -37,4 + 5492: -36,4 + 5493: -33,4 + 5494: -32,4 + 5495: -31,4 + 5496: -27,4 + 5497: -26,4 + 5498: -25,4 + 5499: -23,4 + 5500: -24,4 + 5501: -24,4 + 5580: -32,28 + 6245: -19,-18 + 6325: 17,-18 + 6348: -2,-14 + 6349: -1,-14 + 6350: 0,-14 + 6351: 1,-14 + 6418: 3,-21 + 6419: 4,-21 + 6420: 5,-21 + 6421: 6,-21 + 6422: 10,-21 + 6423: 12,-21 + 6424: 11,-21 + 6425: 13,-21 + 6426: -5,-21 + 6427: -6,-21 + 6428: -6,-21 + 6429: -7,-21 + 6430: -7,-21 + 6431: -8,-21 + 6432: -8,-21 + 6433: -12,-21 + 6434: -12,-21 + 6435: -13,-21 + 6436: -14,-21 + 6437: -14,-21 + 6438: -15,-21 + 6439: -15,-21 + 6671: -33,-10 + 6672: -32,-10 + 6681: -31,-2 + 6682: -30,-2 + 6683: -29,-2 + 6684: -28,-2 + 6685: -27,-2 + 6686: -26,-2 + 6687: -26,-2 + 6688: -23,-2 + 6689: -22,-2 + 6690: -22,-2 + 6691: -25,-2 + 6718: -31,-11 + 6719: -30,-11 + 6720: -29,-11 + 6721: -34,-11 + 6749: -28,-17 + 6750: -34,-16 + 6751: -33,-16 + 6752: -32,-16 + 6753: -31,-16 + 6972: -25,-15 + 6973: -24,-15 + 6978: -25,-15 + 6979: -24,-15 + 6985: -24,-19 + 7139: 21,4 + 7140: 22,4 + 7141: 23,4 + 7142: 24,4 + 7206: 28,4 + 7207: 29,4 + 7208: 30,4 + 7209: 31,4 + 8074: 58,-17 + 8075: 59,-17 + 8076: 60,-17 + 8077: 58,-30 + 8078: 59,-30 + 8079: 60,-30 + 8217: 39,-7 + 8218: 40,-7 + 8248: 22,-12 + 8249: 23,-12 + 8250: 23,-12 + 8251: 24,-12 + 8252: 24,-12 + 8253: 21,-12 + 8254: 28,-12 + 8255: 28,-12 + 8256: 29,-12 + 8257: 29,-12 + 8258: 30,-12 + 8259: 30,-12 + 8278: 35,-16 + 8279: 36,-16 + 8280: 36,-16 + 8281: 37,-16 + 8282: 37,-16 + 8283: 39,-16 + 8284: 39,-16 + 8285: 38,-16 + 8286: 38,-16 + 8365: 46,-18 + 8366: 47,-18 + 8370: 48,-14 + 8371: 48,-14 + 8372: 47,-14 + 8444: 44,-21 + 8445: 44,-21 8446: 44,-21 - 8447: 44,-21 - 8448: 44,-21 - 8449: 45,-21 - 8450: 46,-21 - 8451: 46,-21 - 8452: 47,-21 - 8453: 49,-21 - 8454: 50,-21 + 8447: 45,-21 + 8448: 46,-21 + 8449: 46,-21 + 8450: 47,-21 + 8451: 49,-21 + 8452: 50,-21 + 8453: 51,-21 + 8454: 51,-21 8455: 51,-21 - 8456: 51,-21 - 8457: 51,-21 - 8458: 52,-21 - 8459: 52,-21 - 8681: -2,-77 - 8682: -1,-77 - 8683: -7,-77 - 8684: -8,-77 - 8685: -8,-81 - 8686: -7,-81 - 8687: -6,-81 - 8688: -3,-81 - 8689: -2,-81 - 8690: -1,-81 - 8772: 6,-27 - 8773: 6,-27 - 8774: 7,-27 - 8775: 9,-27 - 8776: 9,-27 - 8777: 10,-27 - 8778: 10,-27 - 8779: 8,-27 - 8780: -12,-27 - 8781: -11,-27 - 8782: -10,-27 - 8783: -9,-27 - 8784: -8,-27 - 8855: -1,-28 - 8895: -1,-36 - 9433: -1,-43 - 9434: -1,-51 - 9435: -1,-56 - 9436: -1,-62 - 9464: -5,-69 - 9465: -4,-69 - 9471: -5,-74 - 9472: -4,-74 - 9479: -6,-69 - 9480: -3,-69 - 9498: 69,-41 - 9565: 5,-29 - 9566: 11,-29 - 9567: 13,-29 - 10686: 73,-48 - 10687: 73,-48 - 10998: 40,-66 - 11413: -6,-29 - 11414: -13,-29 - 11415: -15,-29 - 11418: -15,-29 - 11419: -13,-29 - 13491: -41,-64 - 14996: 11,22 - 14997: 12,22 - 14998: 13,22 - 14999: 14,22 - 15000: 4,22 - 15001: 3,22 - 15002: 2,22 - 15003: 1,22 - 15004: -3,22 - 15005: -4,22 - 15006: -5,22 - 15007: -6,22 - 15008: -13,22 - 15009: -14,22 - 15010: -15,22 - 15011: -15,22 - 15012: -16,22 - 15457: -42,19 - 15458: -42,13 - 15459: -42,8 - 15605: 95,-2 - 15687: 92,-3 - 15688: 93,-3 - 15689: 94,-3 - 15703: 96,7 - 15709: 96,5 - 18764: -3,-10 - 18765: -2,-10 - 18766: -2,-10 - 18767: 0,-10 - 18768: 0,-10 - 18769: -1,-10 - 18770: 1,-10 - 18771: 4,-10 - 18772: 5,-10 - 18773: 6,-10 - 18774: 7,-10 - 18775: 10,-10 - 18776: 11,-10 - 18777: 12,-10 - 18778: 13,-10 - 18779: -9,-10 - 18780: -8,-10 - 18781: -7,-10 - 18782: -7,-10 - 18783: -6,-10 - 18784: -12,-10 - 18785: -13,-10 - 18786: -14,-10 - 18787: -15,-10 - 19722: 35,-15 - 19723: 36,-15 - 19724: 37,-15 - 19725: 38,-15 - 19726: 39,-15 - 19727: 35,-12 - 19728: 36,-12 - 19729: 37,-12 - 19730: 38,-12 - 19731: 39,-12 - 20241: -19,-6 - 20242: -19,1 - 20243: -19,8 - 20244: -19,15 + 8456: 52,-21 + 8457: 52,-21 + 8679: -2,-77 + 8680: -1,-77 + 8681: -7,-77 + 8682: -8,-77 + 8683: -8,-81 + 8684: -7,-81 + 8685: -6,-81 + 8686: -3,-81 + 8687: -2,-81 + 8688: -1,-81 + 8770: 6,-27 + 8771: 6,-27 + 8772: 7,-27 + 8773: 9,-27 + 8774: 9,-27 + 8775: 10,-27 + 8776: 10,-27 + 8777: 8,-27 + 8778: -12,-27 + 8779: -11,-27 + 8780: -10,-27 + 8781: -9,-27 + 8782: -8,-27 + 8853: -1,-28 + 8893: -1,-36 + 9431: -1,-43 + 9432: -1,-51 + 9433: -1,-56 + 9434: -1,-62 + 9462: -5,-69 + 9463: -4,-69 + 9469: -5,-74 + 9470: -4,-74 + 9477: -6,-69 + 9478: -3,-69 + 9496: 69,-41 + 9563: 5,-29 + 9564: 11,-29 + 9565: 13,-29 + 10684: 73,-48 + 10685: 73,-48 + 10996: 40,-66 + 11411: -6,-29 + 11412: -13,-29 + 11413: -15,-29 + 11416: -15,-29 + 11417: -13,-29 + 13489: -41,-64 + 14994: 11,22 + 14995: 12,22 + 14996: 13,22 + 14997: 14,22 + 14998: 4,22 + 14999: 3,22 + 15000: 2,22 + 15001: 1,22 + 15002: -3,22 + 15003: -4,22 + 15004: -5,22 + 15005: -6,22 + 15006: -13,22 + 15007: -14,22 + 15008: -15,22 + 15009: -15,22 + 15010: -16,22 + 15455: -42,19 + 15456: -42,13 + 15457: -42,8 + 15603: 95,-2 + 15685: 92,-3 + 15686: 93,-3 + 15687: 94,-3 + 15701: 96,7 + 15707: 96,5 + 18762: -3,-10 + 18763: -2,-10 + 18764: -2,-10 + 18765: 0,-10 + 18766: 0,-10 + 18767: -1,-10 + 18768: 1,-10 + 18769: 4,-10 + 18770: 5,-10 + 18771: 6,-10 + 18772: 7,-10 + 18773: 10,-10 + 18774: 11,-10 + 18775: 12,-10 + 18776: 13,-10 + 18777: -9,-10 + 18778: -8,-10 + 18779: -7,-10 + 18780: -7,-10 + 18781: -6,-10 + 18782: -12,-10 + 18783: -13,-10 + 18784: -14,-10 + 18785: -15,-10 + 19720: 35,-15 + 19721: 36,-15 + 19722: 37,-15 + 19723: 38,-15 + 19724: 39,-15 + 19725: 35,-12 + 19726: 36,-12 + 19727: 37,-12 + 19728: 38,-12 + 19729: 39,-12 + 20239: -19,-6 + 20240: -19,1 + 20241: -19,8 + 20242: -19,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4082: -19,15 - 4091: -19,8 + 4080: -19,15 + 4089: -19,8 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 21331: -12,13 - 21332: -11,13 + 21329: -12,13 + 21330: -11,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS decals: - 17894: -50,21 - 17901: -48,18 - 17902: -47,18 - 17903: -46,18 - 17927: -55,39 - 17947: -50,36 - 17948: -49,36 - 17949: -48,36 - 17957: -44,51 - 17958: -44,51 - 17971: -46,56 - 17972: -46,58 - 17995: -48,43 - 18008: -47,44 - 18009: -46,44 - 18013: -45,44 - 18058: -59,55 - 18067: -59,44 - 18068: -58,44 - 18069: -57,44 - 18070: -55,44 - 18071: -52,44 - 18072: -51,44 - 18073: -50,44 - 18074: -49,44 - 18079: -53,44 - 18138: -55,23 - 18145: -52,21 + 17892: -50,21 + 17899: -48,18 + 17900: -47,18 + 17901: -46,18 + 17925: -55,39 + 17945: -50,36 + 17946: -49,36 + 17947: -48,36 + 17955: -44,51 + 17956: -44,51 + 17969: -46,56 + 17970: -46,58 + 17993: -48,43 + 18006: -47,44 + 18007: -46,44 + 18011: -45,44 + 18056: -59,55 + 18065: -59,44 + 18066: -58,44 + 18067: -57,44 + 18068: -55,44 + 18069: -52,44 + 18070: -51,44 + 18071: -50,44 + 18072: -49,44 + 18077: -53,44 + 18136: -55,23 + 18143: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineS decals: - 9506: 6,-24 - 9507: 7,-24 - 9508: 8,-24 - 9509: 9,-24 - 9510: 9,-24 - 9511: 10,-24 - 9646: 20,-36 - 9647: 21,-36 - 9648: 22,-36 - 9649: 23,-36 - 9650: 24,-36 - 9651: 25,-36 - 9652: 29,-36 - 9653: 30,-36 - 9654: 31,-36 - 9655: 33,-36 - 9656: 32,-36 - 9657: 34,-36 - 9658: 35,-36 - 9659: 36,-36 - 9660: 37,-36 - 9720: 12,-33 - 9726: 10,-36 - 9727: 11,-36 - 9728: 12,-36 - 9729: 13,-36 - 9762: 29,-33 - 9763: 36,-33 - 9764: 21,-33 - 9765: 16,-37 - 9766: 17,-37 - 9767: 18,-37 - 9768: 26,-37 - 9769: 27,-37 - 9770: 28,-37 - 9830: 22,-34 - 9831: 23,-34 - 9832: 24,-34 - 9833: 26,-34 - 9834: 27,-34 - 9835: 25,-34 - 9836: 31,-34 - 9837: 33,-34 + 9504: 6,-24 + 9505: 7,-24 + 9506: 8,-24 + 9507: 9,-24 + 9508: 9,-24 + 9509: 10,-24 + 9644: 20,-36 + 9645: 21,-36 + 9646: 22,-36 + 9647: 23,-36 + 9648: 24,-36 + 9649: 25,-36 + 9650: 29,-36 + 9651: 30,-36 + 9652: 31,-36 + 9653: 33,-36 + 9654: 32,-36 + 9655: 34,-36 + 9656: 35,-36 + 9657: 36,-36 + 9658: 37,-36 + 9718: 12,-33 + 9724: 10,-36 + 9725: 11,-36 + 9726: 12,-36 + 9727: 13,-36 + 9760: 29,-33 + 9761: 36,-33 + 9762: 21,-33 + 9763: 16,-37 + 9764: 17,-37 + 9765: 18,-37 + 9766: 26,-37 + 9767: 27,-37 + 9768: 28,-37 + 9828: 22,-34 + 9829: 23,-34 + 9830: 24,-34 + 9831: 26,-34 + 9832: 27,-34 + 9833: 25,-34 + 9834: 31,-34 + 9835: 33,-34 + 9836: 34,-34 + 9837: 36,-34 9838: 34,-34 - 9839: 36,-34 - 9840: 34,-34 - 9841: 35,-34 - 9842: 32,-34 - 9843: 27,-39 - 9844: 17,-39 - 9845: 17,-30 - 9846: 11,-34 - 9847: 12,-34 - 9848: 12,-34 - 9849: 13,-34 - 9896: 27,-46 - 9946: 21,-41 - 9947: 22,-41 - 9948: 23,-41 - 9983: 37,-45 - 9984: 31,-42 - 9985: 32,-42 - 9986: 33,-42 - 9987: 33,-42 - 9988: 34,-42 - 9989: 35,-42 - 9990: 36,-42 - 10004: 37,-43 - 10011: 32,-39 - 10012: 33,-39 - 10013: 34,-39 - 10014: 35,-39 - 10015: 36,-39 - 10044: 25,-30 - 10047: 31,-30 - 10057: 29,-28 - 10087: 30,-27 - 10088: 30,-27 - 10089: 31,-27 - 10117: 10,-41 - 10118: 11,-41 - 10119: 12,-41 - 10120: 13,-41 - 10140: 21,-49 - 10141: 23,-49 - 10340: 5,-47 - 10341: 6,-47 - 10342: 7,-47 - 10343: 8,-47 - 10344: 9,-47 - 10351: 2,-44 - 10354: 4,-42 - 10355: 9,-42 - 10386: 13,-45 - 12384: -7,-62 - 19393: 6,66 - 19399: 6,62 - 19427: -6,-62 - 19766: 22,-29 - 19767: 21,-29 - 19788: 27,-32 - 19789: 28,-32 - 19791: 29,-28 + 9839: 35,-34 + 9840: 32,-34 + 9841: 27,-39 + 9842: 17,-39 + 9843: 17,-30 + 9844: 11,-34 + 9845: 12,-34 + 9846: 12,-34 + 9847: 13,-34 + 9894: 27,-46 + 9944: 21,-41 + 9945: 22,-41 + 9946: 23,-41 + 9981: 37,-45 + 9982: 31,-42 + 9983: 32,-42 + 9984: 33,-42 + 9985: 33,-42 + 9986: 34,-42 + 9987: 35,-42 + 9988: 36,-42 + 10002: 37,-43 + 10009: 32,-39 + 10010: 33,-39 + 10011: 34,-39 + 10012: 35,-39 + 10013: 36,-39 + 10042: 25,-30 + 10045: 31,-30 + 10055: 29,-28 + 10085: 30,-27 + 10086: 30,-27 + 10087: 31,-27 + 10115: 10,-41 + 10116: 11,-41 + 10117: 12,-41 + 10118: 13,-41 + 10138: 21,-49 + 10139: 23,-49 + 10338: 5,-47 + 10339: 6,-47 + 10340: 7,-47 + 10341: 8,-47 + 10342: 9,-47 + 10349: 2,-44 + 10352: 4,-42 + 10353: 9,-42 + 10384: 13,-45 + 12382: -7,-62 + 19391: 6,66 + 19397: 6,62 + 19425: -6,-62 + 19764: 22,-29 + 19765: 21,-29 + 19786: 27,-32 + 19787: 28,-32 + 19789: 29,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineS decals: - 2873: -25,47 - 2878: -26,47 - 2879: -30,46 - 2880: -29,46 - 2881: -28,46 - 2892: -33,46 - 2922: -32,54 - 2923: -30,54 - 2924: -28,51 - 18390: -26,52 + 2871: -25,47 + 2876: -26,47 + 2877: -30,46 + 2878: -29,46 + 2879: -28,46 + 2890: -33,46 + 2920: -32,54 + 2921: -30,54 + 2922: -28,51 + 18388: -26,52 - node: color: '#B18BDAFF' id: BrickTileWhiteLineS decals: - 5089: 20,26 - 5090: 23,27 - 5091: 25,26 - 5095: 20,33 - 5158: 39,28 - 5159: 40,28 - 5160: 41,28 - 5161: 42,28 - 11465: -23,-25 - 11466: -29,-34 - 11467: -28,-34 - 11468: -27,-34 - 11469: -26,-34 - 11470: -25,-34 - 11471: -24,-34 - 11472: -18,-34 - 11473: -17,-34 - 11474: -16,-34 - 11475: -15,-34 - 11476: -14,-34 - 11504: -14,-38 - 11505: -14,-38 - 11522: -14,-46 - 11523: -14,-46 - 11526: -15,-33 - 11527: -13,-33 - 11528: -13,-33 - 11569: -20,-36 - 11570: -20,-36 - 11571: -19,-36 - 11572: -19,-36 - 11573: -18,-36 - 11574: -18,-36 - 11575: -17,-36 - 11576: -17,-36 - 11577: -16,-36 - 11578: -16,-36 - 11590: -31,-36 - 11591: -30,-36 - 11592: -28,-36 - 11593: -28,-36 - 11594: -27,-36 - 11595: -26,-36 - 11596: -26,-36 - 11597: -25,-36 - 11598: -25,-36 - 11599: -23,-36 - 11600: -22,-36 - 11601: -22,-36 - 11610: -24,-33 - 11611: -23,-33 - 11612: -22,-33 - 11613: -22,-33 - 11637: -12,-24 - 11638: -11,-24 - 11639: -11,-24 - 11640: -9,-24 - 11641: -9,-24 - 11642: -8,-24 - 11643: -10,-24 - 11657: -15,-33 - 11658: -13,-33 - 11668: -9,-36 - 11669: -9,-36 - 11670: -8,-36 - 11671: -6,-36 - 11674: -6,-29 - 11804: -15,-37 - 11805: -14,-37 - 11806: -14,-37 - 11807: -13,-37 - 11920: -29,-33 - 11932: -30,-26 - 11933: -29,-26 - 11934: -28,-26 - 11935: -28,-30 - 11936: -28,-30 - 12102: -23,-23 - 12201: -25,-38 - 12202: -24,-38 - 12216: -29,-38 - 12233: -15,-54 - 12234: -14,-54 - 12238: -15,-45 - 12239: -14,-45 - 12240: -13,-45 - 12255: -18,-60 - 12256: -17,-60 - 12257: -16,-60 - 12258: -15,-60 - 12259: -14,-60 - 12276: -16,-55 - 12287: -10,-53 - 12288: -9,-53 - 12289: -8,-53 - 12290: -7,-53 - 12291: -5,-53 - 12302: -10,-48 - 12314: -6,-45 - 12327: -20,-44 - 12328: -18,-44 - 12334: -20,-39 - 12335: -19,-39 - 12336: -18,-39 - 12640: -8,-31 - 12641: -7,-31 - 20066: 34,40 + 5087: 20,26 + 5088: 23,27 + 5089: 25,26 + 5093: 20,33 + 5156: 39,28 + 5157: 40,28 + 5158: 41,28 + 5159: 42,28 + 11463: -23,-25 + 11464: -29,-34 + 11465: -28,-34 + 11466: -27,-34 + 11467: -26,-34 + 11468: -25,-34 + 11469: -24,-34 + 11470: -18,-34 + 11471: -17,-34 + 11472: -16,-34 + 11473: -15,-34 + 11474: -14,-34 + 11502: -14,-38 + 11503: -14,-38 + 11520: -14,-46 + 11521: -14,-46 + 11524: -15,-33 + 11525: -13,-33 + 11526: -13,-33 + 11567: -20,-36 + 11568: -20,-36 + 11569: -19,-36 + 11570: -19,-36 + 11571: -18,-36 + 11572: -18,-36 + 11573: -17,-36 + 11574: -17,-36 + 11575: -16,-36 + 11576: -16,-36 + 11588: -31,-36 + 11589: -30,-36 + 11590: -28,-36 + 11591: -28,-36 + 11592: -27,-36 + 11593: -26,-36 + 11594: -26,-36 + 11595: -25,-36 + 11596: -25,-36 + 11597: -23,-36 + 11598: -22,-36 + 11599: -22,-36 + 11608: -24,-33 + 11609: -23,-33 + 11610: -22,-33 + 11611: -22,-33 + 11635: -12,-24 + 11636: -11,-24 + 11637: -11,-24 + 11638: -9,-24 + 11639: -9,-24 + 11640: -8,-24 + 11641: -10,-24 + 11655: -15,-33 + 11656: -13,-33 + 11666: -9,-36 + 11667: -9,-36 + 11668: -8,-36 + 11669: -6,-36 + 11672: -6,-29 + 11802: -15,-37 + 11803: -14,-37 + 11804: -14,-37 + 11805: -13,-37 + 11918: -29,-33 + 11930: -30,-26 + 11931: -29,-26 + 11932: -28,-26 + 11933: -28,-30 + 11934: -28,-30 + 12100: -23,-23 + 12199: -25,-38 + 12200: -24,-38 + 12214: -29,-38 + 12231: -15,-54 + 12232: -14,-54 + 12236: -15,-45 + 12237: -14,-45 + 12238: -13,-45 + 12253: -18,-60 + 12254: -17,-60 + 12255: -16,-60 + 12256: -15,-60 + 12257: -14,-60 + 12274: -16,-55 + 12285: -10,-53 + 12286: -9,-53 + 12287: -8,-53 + 12288: -7,-53 + 12289: -5,-53 + 12300: -10,-48 + 12312: -6,-45 + 12325: -20,-44 + 12326: -18,-44 + 12332: -20,-39 + 12333: -19,-39 + 12334: -18,-39 + 12638: -8,-31 + 12639: -7,-31 + 20064: 34,40 - node: color: '#B240B4FF' id: BrickTileWhiteLineS @@ -15370,297 +15365,297 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineS decals: - 10833: 27,-54 - 10859: 35,-72 - 10897: 44,-63 - 10902: 40,-63 - 10929: 38,-71 - 10933: 39,-72 - 10981: 28,-69 - 10982: 30,-69 - 10984: 29,-67 + 10831: 27,-54 + 10857: 35,-72 + 10895: 44,-63 + 10900: 40,-63 + 10927: 38,-71 + 10931: 39,-72 + 10979: 28,-69 + 10980: 30,-69 + 10982: 29,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineS decals: - 7636: 61,-2 - 7637: 65,-2 - 19256: 69,12 - 19274: 61,-6 - 19275: 62,-6 + 7634: 61,-2 + 7635: 65,-2 + 19254: 69,12 + 19272: 61,-6 + 19273: 62,-6 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineS decals: - 2700: -11,52 - 3812: 11,66 + 2698: -11,52 + 3810: 11,66 - node: color: '#DAA58BFF' id: BrickTileWhiteLineS decals: - 4377: 3,26 - 4378: 9,26 - 4395: 4,32 - 4408: 3,33 - 4413: 9,32 - 4425: 6,26 - 4432: 4,30 - 4433: 6,30 - 4434: 5,30 - 4435: 7,30 - 4436: 8,30 - 4481: 13,26 - 4485: 15,33 - 4486: 16,32 - 4500: 13,28 - 4501: 14,28 - 4528: 5,38 - 4529: 10,38 - 4534: 6,39 - 4561: 10,41 - 4583: 16,34 - 4584: 17,34 - 4585: 18,34 - 4586: 19,34 - 4587: 14,34 - 4632: 20,33 - 4633: 21,33 - 4649: 20,26 - 4652: 23,27 - 4657: 25,26 - 4658: 26,26 - 4694: 20,31 - 4695: 26,31 - 4704: 22,31 - 4705: 23,31 - 4710: 22,30 - 4713: 20,30 - 4714: 26,30 - 4729: 23,29 - 4744: 25,34 - 4745: 26,34 - 4746: 27,34 - 4747: 28,34 - 4764: 26,38 - 4765: 27,38 - 4774: 16,38 - 4775: 17,38 - 4776: 18,38 - 4807: 28,39 - 4808: 5,33 - 4809: 6,33 - 4810: 7,33 - 4811: 8,33 - 4812: 5,36 - 4813: 6,36 - 4814: 7,36 - 4815: 8,36 - 4816: 4,36 - 4817: 9,36 - 4835: 5,38 - 4836: 22,40 - 4837: 23,40 - 4852: 26,48 + 4375: 3,26 + 4376: 9,26 + 4393: 4,32 + 4406: 3,33 + 4411: 9,32 + 4423: 6,26 + 4430: 4,30 + 4431: 6,30 + 4432: 5,30 + 4433: 7,30 + 4434: 8,30 + 4479: 13,26 + 4483: 15,33 + 4484: 16,32 + 4498: 13,28 + 4499: 14,28 + 4526: 5,38 + 4527: 10,38 + 4532: 6,39 + 4559: 10,41 + 4581: 16,34 + 4582: 17,34 + 4583: 18,34 + 4584: 19,34 + 4585: 14,34 + 4630: 20,33 + 4631: 21,33 + 4647: 20,26 + 4650: 23,27 + 4655: 25,26 + 4656: 26,26 + 4692: 20,31 + 4693: 26,31 + 4702: 22,31 + 4703: 23,31 + 4708: 22,30 + 4711: 20,30 + 4712: 26,30 + 4727: 23,29 + 4742: 25,34 + 4743: 26,34 + 4744: 27,34 + 4745: 28,34 + 4762: 26,38 + 4763: 27,38 + 4772: 16,38 + 4773: 17,38 + 4774: 18,38 + 4805: 28,39 + 4806: 5,33 + 4807: 6,33 + 4808: 7,33 + 4809: 8,33 + 4810: 5,36 + 4811: 6,36 + 4812: 7,36 + 4813: 8,36 + 4814: 4,36 + 4815: 9,36 + 4833: 5,38 + 4834: 22,40 + 4835: 23,40 + 4850: 26,48 + 4851: 28,48 + 4852: 27,48 4853: 28,48 - 4854: 27,48 - 4855: 28,48 - 4856: 29,48 - 4857: 30,48 - 4858: 31,48 - 4859: 32,48 - 4860: 33,48 - 4861: 34,48 - 4862: 35,48 - 4863: 36,48 - 4864: 37,48 - 4865: 39,48 - 4866: 38,48 - 4884: 34,48 - 4885: 35,48 - 4886: 36,48 - 4887: 37,48 - 4888: 38,48 - 4889: 33,48 - 4890: 32,48 - 4891: 31,48 - 4892: 30,48 - 4893: 29,48 - 4894: 28,48 - 4895: 27,48 - 4896: 27,48 - 4897: 26,48 - 4918: 10,55 - 4931: 10,48 - 4932: 11,48 - 4933: 11,48 - 4934: 12,48 - 4945: 17,55 - 4963: 19,52 - 4964: 20,52 - 4965: 21,52 - 4966: 22,52 - 4967: 20,50 - 4968: 21,50 - 4969: 22,50 - 4970: 19,48 - 4971: 20,48 - 4972: 21,48 - 4973: 22,48 - 4974: 19,46 - 4975: 20,46 - 4976: 21,46 - 4977: 22,46 - 4978: 16,46 - 4979: 17,46 - 4980: 16,44 - 4981: 17,44 - 4982: 16,42 - 4983: 17,42 - 4984: 19,42 - 4985: 20,42 - 4986: 21,42 - 4987: 22,42 - 4988: 22,44 - 4989: 21,44 - 4990: 19,44 - 4991: 20,44 - 5045: 19,50 - 5172: 41,28 - 5173: 39,28 - 11371: -11,-79 - 14439: -58,9 - 14440: -57,9 - 14441: -56,9 - 14442: -55,9 - 19932: 24,30 - 19936: 24,31 + 4854: 29,48 + 4855: 30,48 + 4856: 31,48 + 4857: 32,48 + 4858: 33,48 + 4859: 34,48 + 4860: 35,48 + 4861: 36,48 + 4862: 37,48 + 4863: 39,48 + 4864: 38,48 + 4882: 34,48 + 4883: 35,48 + 4884: 36,48 + 4885: 37,48 + 4886: 38,48 + 4887: 33,48 + 4888: 32,48 + 4889: 31,48 + 4890: 30,48 + 4891: 29,48 + 4892: 28,48 + 4893: 27,48 + 4894: 27,48 + 4895: 26,48 + 4916: 10,55 + 4929: 10,48 + 4930: 11,48 + 4931: 11,48 + 4932: 12,48 + 4943: 17,55 + 4961: 19,52 + 4962: 20,52 + 4963: 21,52 + 4964: 22,52 + 4965: 20,50 + 4966: 21,50 + 4967: 22,50 + 4968: 19,48 + 4969: 20,48 + 4970: 21,48 + 4971: 22,48 + 4972: 19,46 + 4973: 20,46 + 4974: 21,46 + 4975: 22,46 + 4976: 16,46 + 4977: 17,46 + 4978: 16,44 + 4979: 17,44 + 4980: 16,42 + 4981: 17,42 + 4982: 19,42 + 4983: 20,42 + 4984: 21,42 + 4985: 22,42 + 4986: 22,44 + 4987: 21,44 + 4988: 19,44 + 4989: 20,44 + 5043: 19,50 + 5170: 41,28 + 5171: 39,28 + 11369: -11,-79 + 14437: -58,9 + 14438: -57,9 + 14439: -56,9 + 14440: -55,9 + 19930: 24,30 + 19934: 24,31 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 4013: -39,52 - 4014: -38,52 - 4017: -39,55 - 9590: 4,-36 - 9591: 6,-36 - 9592: 7,-36 - 9593: 8,-36 - 9604: 5,-29 - 9605: 5,-31 - 9606: 6,-31 + 4011: -39,52 + 4012: -38,52 + 4015: -39,55 + 9588: 4,-36 + 9589: 6,-36 + 9590: 7,-36 + 9591: 8,-36 + 9602: 5,-29 + 9603: 5,-31 + 9604: 6,-31 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 16900: -53,3 - 16901: -52,3 - 16908: -53,7 - 16909: -52,7 - 16914: -53,3 - 16915: -52,3 - 16918: -49,3 - 16931: -50,-4 - 16932: -61,1 - 16933: -60,1 - 16939: -60,-4 - 16940: -59,-4 - 16941: -57,-4 - 16967: -50,9 - 16968: -49,11 - 16969: -48,11 + 16898: -53,3 + 16899: -52,3 + 16906: -53,7 + 16907: -52,7 + 16912: -53,3 + 16913: -52,3 + 16916: -49,3 + 16929: -50,-4 + 16930: -61,1 + 16931: -60,1 + 16937: -60,-4 + 16938: -59,-4 + 16939: -57,-4 + 16965: -50,9 + 16966: -49,11 + 16967: -48,11 + 16974: -56,9 + 16975: -56,9 16976: -56,9 - 16977: -56,9 - 16978: -56,9 - 16979: -57,9 - 16980: -58,9 - 16981: -58,9 - 16982: -59,9 - 17003: -58,-5 - 17006: -58,-11 - 17031: -60,-10 - 17032: -59,-10 - 17035: -58,-11 - 17044: -55,-9 - 17060: -53,-18 - 17061: -55,-18 - 17062: -57,-18 - 17063: -58,-18 - 17067: -61,-17 - 17082: -60,-15 - 17083: -59,-15 - 17084: -58,-15 - 17085: -57,-15 - 17086: -56,-15 - 17108: -49,-17 - 17109: -48,-17 - 17205: -58,16 - 17221: -65,14 - 17222: -64,14 - 17223: -63,14 + 16977: -57,9 + 16978: -58,9 + 16979: -58,9 + 16980: -59,9 + 17001: -58,-5 + 17004: -58,-11 + 17029: -60,-10 + 17030: -59,-10 + 17033: -58,-11 + 17042: -55,-9 + 17058: -53,-18 + 17059: -55,-18 + 17060: -57,-18 + 17061: -58,-18 + 17065: -61,-17 + 17080: -60,-15 + 17081: -59,-15 + 17082: -58,-15 + 17083: -57,-15 + 17084: -56,-15 + 17106: -49,-17 + 17107: -48,-17 + 17203: -58,16 + 17219: -65,14 + 17220: -64,14 + 17221: -63,14 + 17222: -62,14 + 17223: -62,14 17224: -62,14 - 17225: -62,14 - 17226: -62,14 - 17227: -61,14 - 17247: -75,14 - 17248: -74,14 - 17249: -73,14 - 17250: -71,14 - 17251: -70,14 - 17252: -69,14 - 17323: -59,17 - 17324: -60,17 - 17370: -48,-10 - 17371: -47,-10 - 17388: -64,-8 - 17389: -66,-8 - 17390: -67,-8 - 17391: -65,-8 - 17392: -68,-8 - 17393: -73,-8 - 17394: -72,-8 - 17419: -71,-5 - 17420: -69,-5 - 17434: -76,-10 - 17447: -11,-79 - 17451: 10,89 - 17452: 10,91 - 17455: 5,91 - 17468: 10,89 - 17511: 11,74 - 17563: -64,5 - 17564: -63,5 - 17635: -67,-4 - 17636: -68,-4 - 17637: -70,-4 - 17638: -72,-4 - 17639: -73,-4 - 17656: -71,-5 - 17657: -69,-5 - 17662: -73,3 - 17691: -73,10 - 17692: -71,10 - 17698: -72,13 - 17707: -82,14 - 17708: -81,14 - 17709: -80,14 - 17749: -77,8 - 17766: -77,12 - 17773: -77,2 - 17781: -77,-2 - 17822: -71,-9 - 17823: -70,-9 - 17824: -69,-9 - 17825: -72,-13 - 17826: -71,-13 - 17827: -70,-13 - 17828: -69,-13 - 17829: -68,-13 - 18206: -56,-4 - 18253: -55,17 - 18254: -54,17 - 18255: -54,17 - 18256: -52,17 - 18257: -53,17 + 17225: -61,14 + 17245: -75,14 + 17246: -74,14 + 17247: -73,14 + 17248: -71,14 + 17249: -70,14 + 17250: -69,14 + 17321: -59,17 + 17322: -60,17 + 17368: -48,-10 + 17369: -47,-10 + 17386: -64,-8 + 17387: -66,-8 + 17388: -67,-8 + 17389: -65,-8 + 17390: -68,-8 + 17391: -73,-8 + 17392: -72,-8 + 17417: -71,-5 + 17418: -69,-5 + 17432: -76,-10 + 17445: -11,-79 + 17449: 10,89 + 17450: 10,91 + 17453: 5,91 + 17466: 10,89 + 17509: 11,74 + 17561: -64,5 + 17562: -63,5 + 17633: -67,-4 + 17634: -68,-4 + 17635: -70,-4 + 17636: -72,-4 + 17637: -73,-4 + 17654: -71,-5 + 17655: -69,-5 + 17660: -73,3 + 17689: -73,10 + 17690: -71,10 + 17696: -72,13 + 17705: -82,14 + 17706: -81,14 + 17707: -80,14 + 17747: -77,8 + 17764: -77,12 + 17771: -77,2 + 17779: -77,-2 + 17820: -71,-9 + 17821: -70,-9 + 17822: -69,-9 + 17823: -72,-13 + 17824: -71,-13 + 17825: -70,-13 + 17826: -69,-13 + 17827: -68,-13 + 18204: -56,-4 + 18251: -55,17 + 18252: -54,17 + 18253: -54,17 + 18254: -52,17 + 18255: -53,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -15671,303 +15666,303 @@ entities: 864: 74,-47 1180: 45,-17 1181: 48,-17 - 2066: -21,52 - 2067: -17,52 - 2068: -19,53 - 2074: -19,49 - 2137: -19,33 - 2138: -19,30 - 2139: -19,37 - 2142: -21,35 - 2272: -23,42 - 2371: -29,30 - 2372: -30,30 - 2412: -30,39 - 2701: -10,52 - 2776: -11,50 - 2777: -10,50 - 2778: -6,50 - 2779: -5,50 - 2815: -6,32 - 3021: -13,58 - 3022: -12,58 - 3023: -11,58 - 3031: -19,65 - 3086: -13,69 - 3087: -12,69 - 3088: -11,69 - 3097: -5,65 - 3107: -6,69 - 3108: -6,69 - 3109: -4,69 - 3110: -5,69 - 3114: -6,58 - 3115: -5,58 - 3116: -4,58 - 3123: -20,58 - 3124: -19,58 - 3125: -18,58 - 3132: -20,69 - 3133: -19,69 - 3134: -18,69 - 3231: -12,76 - 3245: -12,96 - 3246: -12,83 - 3257: -12,89 - 3283: -30,76 - 3284: -30,83 - 3285: -30,89 - 3286: -30,96 - 3307: -31,69 - 3308: -30,69 - 3309: -29,69 - 3529: 0,69 - 3530: 1,69 - 3531: 2,69 - 3532: 5,69 - 3533: 6,69 - 3534: 7,69 - 3619: 6,76 - 3620: 6,76 - 3681: 6,83 - 3785: 0,58 - 3786: 1,58 - 3787: 2,58 - 3837: 20,69 - 5204: 17,13 - 5205: 17,20 - 5214: 17,-1 - 5215: 17,6 - 5230: -26,69 - 5231: -25,69 - 5232: -24,69 - 5504: -27,6 - 5505: -25,6 - 5506: -24,6 - 5507: -23,6 - 5508: -33,6 - 5509: -32,6 - 5510: -32,6 - 5511: -33,6 - 5512: -31,6 - 5513: -38,6 - 5514: -37,6 - 5515: -37,6 - 5516: -27,6 - 5517: -26,6 - 5518: -36,6 - 5519: -36,6 - 5586: -33,26 - 5587: -32,26 - 5588: -34,26 - 5597: -31,29 - 6240: -19,-11 - 6326: 17,-11 - 6361: -1,-17 - 6362: 0,-17 - 6363: 1,-17 - 6648: -31,-3 - 6649: -30,-3 - 6650: -28,-3 - 6651: -27,-3 - 6652: -26,-3 - 6653: -25,-3 - 6654: -23,-3 - 6655: -22,-3 - 6659: -33,3 - 6660: -32,3 - 6715: -24,-1 - 6731: -34,-16 - 6732: -33,-16 - 6733: -32,-16 - 6734: -31,-16 - 6735: -31,-16 - 6736: -30,-16 - 6745: -33,-10 - 6746: -32,-10 - 6750: -29,-16 - 6760: -34,-11 - 6761: -33,-11 - 6762: -32,-11 - 6763: -31,-11 - 6984: -25,-18 - 7009: -7,-19 - 7010: -6,-19 - 7011: -5,-19 - 7012: -12,-19 - 7013: -13,-19 - 7014: -13,-19 - 7015: -15,-19 - 7016: -14,-19 - 7017: 3,-19 - 7018: 4,-19 - 7019: 5,-19 - 7020: 5,-19 - 7021: 6,-19 - 7022: 10,-19 - 7023: 11,-19 - 7024: 12,-19 - 7025: 13,-19 - 7147: 21,6 - 7148: 23,6 - 7149: 24,6 - 7150: 22,6 - 7214: 28,6 - 7215: 29,6 - 7216: 30,6 - 7217: 31,6 - 8070: 58,-24 - 8071: 59,-24 - 8072: 60,-24 - 8073: 58,-11 - 8074: 59,-11 - 8075: 60,-11 - 8216: 39,-7 - 8217: 40,-7 - 8218: 40,-7 - 8241: 21,-10 - 8242: 22,-10 - 8243: 23,-10 - 8244: 24,-10 - 8245: 28,-10 - 8246: 29,-10 - 8247: 29,-10 - 8248: 30,-10 - 8249: 30,-10 - 8320: 36,-8 - 8321: 36,-8 - 8322: 37,-8 - 8323: 37,-8 - 8324: 38,-8 - 8325: 39,-8 - 8326: 39,-8 - 8327: 35,-8 - 8328: 35,-8 - 8411: 46,-13 - 8412: 46,-13 - 8462: 44,-19 - 8463: 45,-19 - 8464: 46,-19 - 8465: 47,-19 - 8466: 49,-19 - 8467: 50,-19 - 8468: 52,-19 - 8469: 51,-19 - 8691: -8,-75 - 8692: -7,-75 - 8693: -6,-75 - 8694: -3,-75 - 8695: -2,-75 - 8696: -1,-75 - 8697: -2,-79 - 8698: -1,-79 - 8699: -7,-79 - 8700: -8,-79 - 8763: 6,-24 - 8764: 7,-24 - 8765: 8,-24 - 8766: 9,-24 - 8767: 10,-24 - 8788: -11,-24 - 8789: -10,-24 - 8790: -9,-24 - 8791: -8,-24 - 8856: -1,-23 - 8894: -1,-30 - 8903: -12,-24 - 8939: -14,-28 - 8940: -14,-22 - 8941: -13,-22 - 8942: -7,-22 - 8943: -6,-22 - 8975: -7,-28 - 8976: -5,-28 - 9095: 4,-22 - 9096: 5,-22 - 9097: 11,-22 - 9098: 12,-22 - 9099: 12,-28 - 9100: 4,-28 - 9101: 3,-28 - 9429: -1,-51 - 9430: -1,-43 - 9431: -1,-38 - 9443: -1,-58 - 9444: -1,-58 - 9478: -3,-71 - 9489: 73,-52 - 10688: 73,-48 - 10689: 73,-41 - 10996: 41,-68 - 10997: 40,-68 - 12754: -42,23 - 15013: -16,24 - 15014: -15,24 - 15015: -14,24 - 15016: -14,24 - 15017: -13,24 - 15018: -6,24 - 15019: -5,24 - 15020: -4,24 - 15021: -3,24 - 15022: 1,24 - 15023: 2,24 - 15024: 3,24 - 15025: 4,24 - 15026: 11,24 - 15027: 12,24 - 15028: 13,24 - 15029: 14,24 - 15231: -8,-19 - 15460: -42,12 - 15461: -42,18 - 15462: -42,23 - 15611: 92,-5 - 15612: 93,-5 - 15613: 93,-5 - 15614: 94,-5 - 18788: -15,-8 - 18789: -14,-8 - 18790: -13,-8 - 18791: -12,-8 - 18792: -9,-8 - 18793: -8,-8 - 18794: -7,-8 - 18795: -6,-8 - 18796: -3,-8 - 18797: -2,-8 - 18798: -1,-8 - 18799: 1,-8 - 18800: 0,-8 - 18801: 4,-8 - 18802: 5,-8 - 18803: 6,-8 - 18804: 7,-8 - 18805: 10,-8 - 18806: 11,-8 - 18807: 12,-8 - 18808: 13,-8 - 19738: 35,-12 - 19739: 36,-12 - 19740: 37,-12 - 19741: 38,-12 - 19742: 39,-12 - 19743: 35,-9 - 19744: 36,-9 - 19745: 37,-9 - 19746: 38,-9 - 19747: 39,-9 - 20277: -19,20 - 20278: -19,13 - 20279: -19,6 - 20280: -19,-1 + 2064: -21,52 + 2065: -17,52 + 2066: -19,53 + 2072: -19,49 + 2135: -19,33 + 2136: -19,30 + 2137: -19,37 + 2140: -21,35 + 2270: -23,42 + 2369: -29,30 + 2370: -30,30 + 2410: -30,39 + 2699: -10,52 + 2774: -11,50 + 2775: -10,50 + 2776: -6,50 + 2777: -5,50 + 2813: -6,32 + 3019: -13,58 + 3020: -12,58 + 3021: -11,58 + 3029: -19,65 + 3084: -13,69 + 3085: -12,69 + 3086: -11,69 + 3095: -5,65 + 3105: -6,69 + 3106: -6,69 + 3107: -4,69 + 3108: -5,69 + 3112: -6,58 + 3113: -5,58 + 3114: -4,58 + 3121: -20,58 + 3122: -19,58 + 3123: -18,58 + 3130: -20,69 + 3131: -19,69 + 3132: -18,69 + 3229: -12,76 + 3243: -12,96 + 3244: -12,83 + 3255: -12,89 + 3281: -30,76 + 3282: -30,83 + 3283: -30,89 + 3284: -30,96 + 3305: -31,69 + 3306: -30,69 + 3307: -29,69 + 3527: 0,69 + 3528: 1,69 + 3529: 2,69 + 3530: 5,69 + 3531: 6,69 + 3532: 7,69 + 3617: 6,76 + 3618: 6,76 + 3679: 6,83 + 3783: 0,58 + 3784: 1,58 + 3785: 2,58 + 3835: 20,69 + 5202: 17,13 + 5203: 17,20 + 5212: 17,-1 + 5213: 17,6 + 5228: -26,69 + 5229: -25,69 + 5230: -24,69 + 5502: -27,6 + 5503: -25,6 + 5504: -24,6 + 5505: -23,6 + 5506: -33,6 + 5507: -32,6 + 5508: -32,6 + 5509: -33,6 + 5510: -31,6 + 5511: -38,6 + 5512: -37,6 + 5513: -37,6 + 5514: -27,6 + 5515: -26,6 + 5516: -36,6 + 5517: -36,6 + 5584: -33,26 + 5585: -32,26 + 5586: -34,26 + 5595: -31,29 + 6238: -19,-11 + 6324: 17,-11 + 6359: -1,-17 + 6360: 0,-17 + 6361: 1,-17 + 6646: -31,-3 + 6647: -30,-3 + 6648: -28,-3 + 6649: -27,-3 + 6650: -26,-3 + 6651: -25,-3 + 6652: -23,-3 + 6653: -22,-3 + 6657: -33,3 + 6658: -32,3 + 6713: -24,-1 + 6729: -34,-16 + 6730: -33,-16 + 6731: -32,-16 + 6732: -31,-16 + 6733: -31,-16 + 6734: -30,-16 + 6743: -33,-10 + 6744: -32,-10 + 6748: -29,-16 + 6758: -34,-11 + 6759: -33,-11 + 6760: -32,-11 + 6761: -31,-11 + 6982: -25,-18 + 7007: -7,-19 + 7008: -6,-19 + 7009: -5,-19 + 7010: -12,-19 + 7011: -13,-19 + 7012: -13,-19 + 7013: -15,-19 + 7014: -14,-19 + 7015: 3,-19 + 7016: 4,-19 + 7017: 5,-19 + 7018: 5,-19 + 7019: 6,-19 + 7020: 10,-19 + 7021: 11,-19 + 7022: 12,-19 + 7023: 13,-19 + 7145: 21,6 + 7146: 23,6 + 7147: 24,6 + 7148: 22,6 + 7212: 28,6 + 7213: 29,6 + 7214: 30,6 + 7215: 31,6 + 8068: 58,-24 + 8069: 59,-24 + 8070: 60,-24 + 8071: 58,-11 + 8072: 59,-11 + 8073: 60,-11 + 8214: 39,-7 + 8215: 40,-7 + 8216: 40,-7 + 8239: 21,-10 + 8240: 22,-10 + 8241: 23,-10 + 8242: 24,-10 + 8243: 28,-10 + 8244: 29,-10 + 8245: 29,-10 + 8246: 30,-10 + 8247: 30,-10 + 8318: 36,-8 + 8319: 36,-8 + 8320: 37,-8 + 8321: 37,-8 + 8322: 38,-8 + 8323: 39,-8 + 8324: 39,-8 + 8325: 35,-8 + 8326: 35,-8 + 8409: 46,-13 + 8410: 46,-13 + 8460: 44,-19 + 8461: 45,-19 + 8462: 46,-19 + 8463: 47,-19 + 8464: 49,-19 + 8465: 50,-19 + 8466: 52,-19 + 8467: 51,-19 + 8689: -8,-75 + 8690: -7,-75 + 8691: -6,-75 + 8692: -3,-75 + 8693: -2,-75 + 8694: -1,-75 + 8695: -2,-79 + 8696: -1,-79 + 8697: -7,-79 + 8698: -8,-79 + 8761: 6,-24 + 8762: 7,-24 + 8763: 8,-24 + 8764: 9,-24 + 8765: 10,-24 + 8786: -11,-24 + 8787: -10,-24 + 8788: -9,-24 + 8789: -8,-24 + 8854: -1,-23 + 8892: -1,-30 + 8901: -12,-24 + 8937: -14,-28 + 8938: -14,-22 + 8939: -13,-22 + 8940: -7,-22 + 8941: -6,-22 + 8973: -7,-28 + 8974: -5,-28 + 9093: 4,-22 + 9094: 5,-22 + 9095: 11,-22 + 9096: 12,-22 + 9097: 12,-28 + 9098: 4,-28 + 9099: 3,-28 + 9427: -1,-51 + 9428: -1,-43 + 9429: -1,-38 + 9441: -1,-58 + 9442: -1,-58 + 9476: -3,-71 + 9487: 73,-52 + 10686: 73,-48 + 10687: 73,-41 + 10994: 41,-68 + 10995: 40,-68 + 12752: -42,23 + 15011: -16,24 + 15012: -15,24 + 15013: -14,24 + 15014: -14,24 + 15015: -13,24 + 15016: -6,24 + 15017: -5,24 + 15018: -4,24 + 15019: -3,24 + 15020: 1,24 + 15021: 2,24 + 15022: 3,24 + 15023: 4,24 + 15024: 11,24 + 15025: 12,24 + 15026: 13,24 + 15027: 14,24 + 15229: -8,-19 + 15458: -42,12 + 15459: -42,18 + 15460: -42,23 + 15609: 92,-5 + 15610: 93,-5 + 15611: 93,-5 + 15612: 94,-5 + 18786: -15,-8 + 18787: -14,-8 + 18788: -13,-8 + 18789: -12,-8 + 18790: -9,-8 + 18791: -8,-8 + 18792: -7,-8 + 18793: -6,-8 + 18794: -3,-8 + 18795: -2,-8 + 18796: -1,-8 + 18797: 1,-8 + 18798: 0,-8 + 18799: 4,-8 + 18800: 5,-8 + 18801: 6,-8 + 18802: 7,-8 + 18803: 10,-8 + 18804: 11,-8 + 18805: 12,-8 + 18806: 13,-8 + 19736: 35,-12 + 19737: 36,-12 + 19738: 37,-12 + 19739: 38,-12 + 19740: 39,-12 + 19741: 35,-9 + 19742: 36,-9 + 19743: 37,-9 + 19744: 38,-9 + 19745: 39,-9 + 20275: -19,20 + 20276: -19,13 + 20277: -19,6 + 20278: -19,-1 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4100: -19,13 - 4101: -19,20 + 4098: -19,13 + 4099: -19,20 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW @@ -15977,328 +15972,328 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineW decals: - 17896: -50,22 - 17898: -49,20 - 17899: -49,19 - 17917: -55,38 - 17919: -56,33 - 17920: -56,34 - 17922: -57,36 - 17934: -45,23 - 17939: -45,23 - 17940: -51,37 - 17941: -50,39 - 17942: -50,40 - 17961: -43,51 - 17962: -45,51 - 17974: -46,57 - 17975: -47,54 - 17976: -47,53 - 17977: -47,52 - 17978: -47,51 - 17979: -47,51 - 17980: -47,50 - 17981: -47,49 - 17982: -47,49 - 17983: -47,47 - 17984: -47,47 - 17985: -47,48 - 17986: -47,46 - 17994: -46,41 - 18035: -60,47 - 18036: -60,46 - 18037: -60,46 - 18038: -60,45 - 18039: -60,49 - 18040: -60,51 - 18041: -60,52 - 18042: -60,53 - 18139: -54,22 - 18140: -54,21 - 18141: -54,20 - 18147: -51,21 + 17894: -50,22 + 17896: -49,20 + 17897: -49,19 + 17915: -55,38 + 17917: -56,33 + 17918: -56,34 + 17920: -57,36 + 17932: -45,23 + 17937: -45,23 + 17938: -51,37 + 17939: -50,39 + 17940: -50,40 + 17959: -43,51 + 17960: -45,51 + 17972: -46,57 + 17973: -47,54 + 17974: -47,53 + 17975: -47,52 + 17976: -47,51 + 17977: -47,51 + 17978: -47,50 + 17979: -47,49 + 17980: -47,49 + 17981: -47,47 + 17982: -47,47 + 17983: -47,48 + 17984: -47,46 + 17992: -46,41 + 18033: -60,47 + 18034: -60,46 + 18035: -60,46 + 18036: -60,45 + 18037: -60,49 + 18038: -60,51 + 18039: -60,52 + 18040: -60,53 + 18137: -54,22 + 18138: -54,21 + 18139: -54,20 + 18145: -51,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 18382: -38,48 - 18383: -38,48 + 18380: -38,48 + 18381: -38,48 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineW decals: - 9514: 11,-26 - 9515: 11,-25 - 9524: 16,-34 - 9525: 16,-33 - 9526: 16,-32 - 9527: 16,-30 - 9528: 16,-29 - 9529: 16,-28 - 9530: 16,-27 - 9570: 19,-27 - 9571: 19,-28 - 9674: 26,-52 - 9675: 26,-51 - 9676: 26,-50 - 9677: 26,-49 - 9678: 26,-48 - 9679: 26,-47 - 9680: 26,-46 - 9681: 26,-45 - 9682: 26,-43 - 9683: 26,-42 - 9684: 26,-41 - 9685: 26,-38 - 9702: 19,-36 - 9703: 19,-35 - 9704: 19,-34 - 9712: 16,-36 - 9717: 15,-35 - 9735: 10,-35 - 9740: 15,-35 - 9776: 29,-50 - 9777: 29,-44 - 9778: 29,-40 - 9783: 19,-40 - 9784: 19,-39 - 9785: 25,-39 - 9786: 25,-40 - 9787: 19,-44 - 9876: 18,-34 - 9877: 18,-33 - 9878: 18,-32 - 9879: 18,-32 - 9880: 18,-31 - 9881: 14,-35 - 9882: 28,-35 - 9883: 37,-35 - 9884: 28,-40 - 9885: 28,-42 - 9886: 28,-43 - 9887: 28,-43 - 9888: 28,-44 - 9889: 28,-47 - 9890: 28,-48 - 9891: 28,-49 - 9892: 28,-50 - 9893: 28,-50 - 9894: 28,-51 - 9895: 28,-51 - 9897: 18,-40 - 9898: 18,-41 - 9899: 18,-42 - 9900: 18,-43 - 9901: 18,-43 - 9902: 18,-44 - 9903: 18,-45 - 9904: 18,-45 - 9905: 16,-38 - 9906: 16,-41 - 9907: 16,-43 - 9908: 16,-45 - 9909: 16,-46 - 9968: 39,-35 - 9992: 30,-41 - 9993: 30,-39 - 10016: 37,-40 - 10049: 23,-29 - 10085: 28,-25 - 10086: 28,-26 - 10104: 28,-41 - 10106: 15,-39 - 10107: 15,-40 - 10115: 8,-39 - 10116: 8,-40 - 10138: 20,-48 - 10139: 20,-47 - 10171: 25,-44 - 10178: 20,-45 - 10196: 32,-48 - 10197: 32,-48 - 10198: 32,-50 - 10202: 32,-52 - 10238: 30,-52 - 10239: 30,-51 - 10240: 30,-49 - 10241: 30,-48 - 10350: 8,-44 - 10352: 3,-45 - 10353: 3,-46 - 10385: 14,-46 - 10387: 12,-44 - 10393: 15,-44 - 10620: 50,-33 - 10621: 50,-33 - 10624: 43,-34 - 10627: 43,-32 - 12385: -4,-60 - 15339: 16,-42 - 19400: 5,63 - 19428: -8,-61 - 19429: -8,-60 - 19430: -8,-59 - 19432: -4,-60 - 19763: 26,-31 - 19773: 20,-26 - 19777: 24,-28 + 9512: 11,-26 + 9513: 11,-25 + 9522: 16,-34 + 9523: 16,-33 + 9524: 16,-32 + 9525: 16,-30 + 9526: 16,-29 + 9527: 16,-28 + 9528: 16,-27 + 9568: 19,-27 + 9569: 19,-28 + 9672: 26,-52 + 9673: 26,-51 + 9674: 26,-50 + 9675: 26,-49 + 9676: 26,-48 + 9677: 26,-47 + 9678: 26,-46 + 9679: 26,-45 + 9680: 26,-43 + 9681: 26,-42 + 9682: 26,-41 + 9683: 26,-38 + 9700: 19,-36 + 9701: 19,-35 + 9702: 19,-34 + 9710: 16,-36 + 9715: 15,-35 + 9733: 10,-35 + 9738: 15,-35 + 9774: 29,-50 + 9775: 29,-44 + 9776: 29,-40 + 9781: 19,-40 + 9782: 19,-39 + 9783: 25,-39 + 9784: 25,-40 + 9785: 19,-44 + 9874: 18,-34 + 9875: 18,-33 + 9876: 18,-32 + 9877: 18,-32 + 9878: 18,-31 + 9879: 14,-35 + 9880: 28,-35 + 9881: 37,-35 + 9882: 28,-40 + 9883: 28,-42 + 9884: 28,-43 + 9885: 28,-43 + 9886: 28,-44 + 9887: 28,-47 + 9888: 28,-48 + 9889: 28,-49 + 9890: 28,-50 + 9891: 28,-50 + 9892: 28,-51 + 9893: 28,-51 + 9895: 18,-40 + 9896: 18,-41 + 9897: 18,-42 + 9898: 18,-43 + 9899: 18,-43 + 9900: 18,-44 + 9901: 18,-45 + 9902: 18,-45 + 9903: 16,-38 + 9904: 16,-41 + 9905: 16,-43 + 9906: 16,-45 + 9907: 16,-46 + 9966: 39,-35 + 9990: 30,-41 + 9991: 30,-39 + 10014: 37,-40 + 10047: 23,-29 + 10083: 28,-25 + 10084: 28,-26 + 10102: 28,-41 + 10104: 15,-39 + 10105: 15,-40 + 10113: 8,-39 + 10114: 8,-40 + 10136: 20,-48 + 10137: 20,-47 + 10169: 25,-44 + 10176: 20,-45 + 10194: 32,-48 + 10195: 32,-48 + 10196: 32,-50 + 10200: 32,-52 + 10236: 30,-52 + 10237: 30,-51 + 10238: 30,-49 + 10239: 30,-48 + 10348: 8,-44 + 10350: 3,-45 + 10351: 3,-46 + 10383: 14,-46 + 10385: 12,-44 + 10391: 15,-44 + 10618: 50,-33 + 10619: 50,-33 + 10622: 43,-34 + 10625: 43,-32 + 12383: -4,-60 + 15337: 16,-42 + 19398: 5,63 + 19426: -8,-61 + 19427: -8,-60 + 19428: -8,-59 + 19430: -4,-60 + 19761: 26,-31 + 19771: 20,-26 + 19775: 24,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineW decals: - 2871: -24,48 - 2872: -24,47 - 2888: -32,45 - 2894: -34,47 - 2901: -34,51 - 2902: -34,52 - 2903: -34,53 - 2920: -24,50 - 2921: -24,51 - 2939: -31,47 - 2940: -31,48 - 2941: -31,49 - 2942: -31,50 - 2943: -31,51 - 2944: -31,52 - 2945: -31,53 - 2946: -29,53 - 2947: -29,52 - 2948: -29,51 - 2949: -29,50 - 2950: -29,49 - 2951: -29,47 - 2952: -29,48 - 2953: -27,47 - 2954: -27,48 - 2955: -27,49 - 2956: -27,50 - 2996: -36,49 - 3006: -38,47 - 18384: -38,48 - 18385: -38,49 - 18386: -38,50 - 18388: -38,45 - 18389: -38,46 - 18391: -27,53 + 2869: -24,48 + 2870: -24,47 + 2886: -32,45 + 2892: -34,47 + 2899: -34,51 + 2900: -34,52 + 2901: -34,53 + 2918: -24,50 + 2919: -24,51 + 2937: -31,47 + 2938: -31,48 + 2939: -31,49 + 2940: -31,50 + 2941: -31,51 + 2942: -31,52 + 2943: -31,53 + 2944: -29,53 + 2945: -29,52 + 2946: -29,51 + 2947: -29,50 + 2948: -29,49 + 2949: -29,47 + 2950: -29,48 + 2951: -27,47 + 2952: -27,48 + 2953: -27,49 + 2954: -27,50 + 2994: -36,49 + 3004: -38,47 + 18382: -38,48 + 18383: -38,49 + 18384: -38,50 + 18386: -38,45 + 18387: -38,46 + 18389: -27,53 - node: color: '#B18BDAFF' id: BrickTileWhiteLineW decals: - 5086: 19,31 - 5087: 19,29 - 5088: 19,27 - 5101: 28,31 - 5164: 38,29 - 11444: -22,-30 - 11445: -22,-29 - 11446: -22,-29 - 11447: -22,-28 - 11448: -22,-27 - 11449: -22,-27 - 11450: -22,-26 - 11477: -23,-35 - 11481: -13,-35 - 11482: -13,-35 - 11506: -13,-39 - 11507: -13,-40 - 11508: -13,-41 - 11509: -13,-42 - 11510: -13,-43 - 11511: -13,-47 - 11512: -13,-49 - 11513: -13,-49 - 11514: -13,-51 - 11515: -13,-52 - 11516: -13,-52 - 11517: -13,-53 - 11518: -13,-50 - 11519: -13,-50 - 11520: -13,-48 - 11521: -13,-48 - 11602: -21,-36 - 11603: -21,-35 - 11604: -21,-35 - 11605: -21,-34 - 11606: -21,-34 - 11616: -31,-35 - 11617: -24,-32 - 11618: -24,-31 - 11619: -24,-30 - 11620: -24,-30 - 11621: -24,-29 - 11622: -24,-28 - 11623: -24,-28 + 5084: 19,31 + 5085: 19,29 + 5086: 19,27 + 5099: 28,31 + 5162: 38,29 + 11442: -22,-30 + 11443: -22,-29 + 11444: -22,-29 + 11445: -22,-28 + 11446: -22,-27 + 11447: -22,-27 + 11448: -22,-26 + 11475: -23,-35 + 11479: -13,-35 + 11480: -13,-35 + 11504: -13,-39 + 11505: -13,-40 + 11506: -13,-41 + 11507: -13,-42 + 11508: -13,-43 + 11509: -13,-47 + 11510: -13,-49 + 11511: -13,-49 + 11512: -13,-51 + 11513: -13,-52 + 11514: -13,-52 + 11515: -13,-53 + 11516: -13,-50 + 11517: -13,-50 + 11518: -13,-48 + 11519: -13,-48 + 11600: -21,-36 + 11601: -21,-35 + 11602: -21,-35 + 11603: -21,-34 + 11604: -21,-34 + 11614: -31,-35 + 11615: -24,-32 + 11616: -24,-31 + 11617: -24,-30 + 11618: -24,-30 + 11619: -24,-29 + 11620: -24,-28 + 11621: -24,-28 + 11622: -24,-27 + 11623: -24,-27 11624: -24,-27 11625: -24,-27 - 11626: -24,-27 - 11627: -24,-27 - 11628: -24,-26 - 11629: -24,-25 - 11630: -24,-25 - 11644: -7,-26 - 11645: -7,-25 - 11646: -7,-25 - 11661: -11,-34 - 11662: -11,-35 - 11673: -4,-35 - 11686: -10,-31 - 11687: -10,-32 - 11688: -10,-32 - 11689: -10,-33 - 11690: -10,-33 - 11796: -12,-41 - 11797: -12,-41 - 11815: -15,-38 - 11816: -15,-39 - 11817: -15,-41 - 11818: -15,-42 - 11819: -15,-43 - 11820: -15,-44 - 11898: -34,-45 - 11899: -34,-44 - 11900: -34,-44 - 11901: -34,-43 - 11902: -34,-43 - 11903: -34,-42 - 11904: -34,-42 - 11905: -34,-41 - 11937: -27,-27 - 11938: -28,-29 - 11939: -27,-31 - 12083: -24,-24 - 12100: -21,-31 - 12101: -21,-26 - 12203: -23,-39 - 12204: -23,-40 - 12205: -23,-41 - 12217: -28,-39 - 12218: -28,-40 - 12219: -28,-41 - 12220: -15,-46 - 12221: -15,-47 - 12222: -15,-48 - 12223: -15,-49 - 12224: -17,-52 - 12225: -17,-53 - 12241: -12,-50 - 12253: -12,-59 - 12265: -20,-57 - 12300: -7,-48 - 12301: -7,-47 - 12308: -11,-51 - 12309: -11,-52 - 12315: -3,-48 - 12321: -17,-44 - 12322: -17,-43 - 12323: -17,-42 - 12324: -17,-41 - 12325: -17,-40 - 12642: -6,-32 - 12643: -6,-33 - 12644: -6,-34 - 20063: 33,38 - 20067: 37,39 + 11626: -24,-26 + 11627: -24,-25 + 11628: -24,-25 + 11642: -7,-26 + 11643: -7,-25 + 11644: -7,-25 + 11659: -11,-34 + 11660: -11,-35 + 11671: -4,-35 + 11684: -10,-31 + 11685: -10,-32 + 11686: -10,-32 + 11687: -10,-33 + 11688: -10,-33 + 11794: -12,-41 + 11795: -12,-41 + 11813: -15,-38 + 11814: -15,-39 + 11815: -15,-41 + 11816: -15,-42 + 11817: -15,-43 + 11818: -15,-44 + 11896: -34,-45 + 11897: -34,-44 + 11898: -34,-44 + 11899: -34,-43 + 11900: -34,-43 + 11901: -34,-42 + 11902: -34,-42 + 11903: -34,-41 + 11935: -27,-27 + 11936: -28,-29 + 11937: -27,-31 + 12081: -24,-24 + 12098: -21,-31 + 12099: -21,-26 + 12201: -23,-39 + 12202: -23,-40 + 12203: -23,-41 + 12215: -28,-39 + 12216: -28,-40 + 12217: -28,-41 + 12218: -15,-46 + 12219: -15,-47 + 12220: -15,-48 + 12221: -15,-49 + 12222: -17,-52 + 12223: -17,-53 + 12239: -12,-50 + 12251: -12,-59 + 12263: -20,-57 + 12298: -7,-48 + 12299: -7,-47 + 12306: -11,-51 + 12307: -11,-52 + 12313: -3,-48 + 12319: -17,-44 + 12320: -17,-43 + 12321: -17,-42 + 12322: -17,-41 + 12323: -17,-40 + 12640: -6,-32 + 12641: -6,-33 + 12642: -6,-34 + 20061: 33,38 + 20065: 37,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineW @@ -16308,252 +16303,252 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineW decals: - 10835: 29,-56 - 10837: 26,-57 - 10861: 34,-71 - 10862: 34,-70 - 10863: 34,-69 - 10864: 34,-67 - 10865: 34,-64 - 10866: 34,-63 - 10867: 34,-62 - 10883: 38,-61 - 10885: 38,-63 - 10904: 42,-62 - 10906: 37,-62 - 10921: 37,-70 - 10986: 30,-68 + 10833: 29,-56 + 10835: 26,-57 + 10859: 34,-71 + 10860: 34,-70 + 10861: 34,-69 + 10862: 34,-67 + 10863: 34,-64 + 10864: 34,-63 + 10865: 34,-62 + 10881: 38,-61 + 10883: 38,-63 + 10902: 42,-62 + 10904: 37,-62 + 10919: 37,-70 + 10984: 30,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineW decals: - 7630: 64,-4 - 7635: 65,-3 - 7666: 71,13 - 19264: 68,15 - 19265: 68,14 - 19266: 68,13 - 19277: 60,-5 - 19278: 60,-4 - 21007: 71,13 + 7628: 64,-4 + 7633: 65,-3 + 7664: 71,13 + 19262: 68,15 + 19263: 68,14 + 19264: 68,13 + 19275: 60,-5 + 19276: 60,-4 + 21005: 71,13 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineW decals: - 3808: 10,69 - 3809: 10,67 - 3810: 10,66 - 3814: 13,67 - 3821: 13,67 - 3827: 13,67 + 3806: 10,69 + 3807: 10,67 + 3808: 10,66 + 3812: 13,67 + 3819: 13,67 + 3825: 13,67 - node: color: '#DAA58BFF' id: BrickTileWhiteLineW decals: - 4373: 2,30 - 4374: 2,28 - 4375: 2,27 - 4398: 2,34 - 4399: 2,35 - 4400: 2,36 - 4419: 11,30 - 4420: 11,28 - 4430: 9,28 - 4431: 9,29 - 4450: 15,29 - 4451: 15,30 - 4452: 15,31 - 4463: 12,27 - 4468: 15,32 - 4492: 17,27 - 4493: 17,28 - 4494: 17,29 - 4495: 17,30 - 4496: 17,31 - 4530: 12,36 - 4531: 12,35 - 4541: 4,41 - 4542: 4,42 - 4566: 9,45 - 4567: 9,44 - 4568: 9,43 - 4581: 13,38 - 4582: 13,37 - 4588: 13,34 - 4614: 12,43 - 4615: 12,45 - 4616: 13,40 - 4617: 13,41 - 4618: 13,42 - 4619: 13,44 - 4622: 15,47 - 4643: 19,31 - 4644: 19,30 - 4645: 19,29 - 4646: 19,28 - 4647: 19,27 - 4678: 28,31 - 4690: 27,29 - 4691: 27,29 - 4692: 27,30 - 4693: 27,28 - 4707: 26,29 - 4711: 22,29 - 4736: 23,36 - 4740: 24,37 - 4741: 24,35 - 4761: 28,35 - 4762: 28,36 - 4763: 28,37 - 4778: 20,36 - 4801: 27,41 - 4802: 27,42 - 4803: 27,43 - 4818: 10,35 - 4872: 34,50 - 4880: 33,49 - 4881: 33,51 - 4883: 39,51 - 4925: 9,53 - 4926: 9,52 - 4927: 9,51 - 4928: 9,50 - 4929: 9,49 - 4937: 14,49 - 4938: 14,50 - 4943: 14,53 - 4944: 14,52 - 4992: 23,43 - 4993: 23,45 - 4994: 23,47 - 4995: 23,49 - 4996: 23,51 - 5006: 18,41 - 5007: 18,43 - 5008: 18,45 - 5038: 23,41 - 5082: 39,49 - 5083: 39,51 - 5084: 39,48 - 5085: 39,52 - 5174: 38,29 - 5176: 33,37 - 11373: -11,-82 - 11374: -11,-81 - 11375: -11,-80 - 14427: -46,14 - 14428: -46,12 - 15378: -49,9 + 4371: 2,30 + 4372: 2,28 + 4373: 2,27 + 4396: 2,34 + 4397: 2,35 + 4398: 2,36 + 4417: 11,30 + 4418: 11,28 + 4428: 9,28 + 4429: 9,29 + 4448: 15,29 + 4449: 15,30 + 4450: 15,31 + 4461: 12,27 + 4466: 15,32 + 4490: 17,27 + 4491: 17,28 + 4492: 17,29 + 4493: 17,30 + 4494: 17,31 + 4528: 12,36 + 4529: 12,35 + 4539: 4,41 + 4540: 4,42 + 4564: 9,45 + 4565: 9,44 + 4566: 9,43 + 4579: 13,38 + 4580: 13,37 + 4586: 13,34 + 4612: 12,43 + 4613: 12,45 + 4614: 13,40 + 4615: 13,41 + 4616: 13,42 + 4617: 13,44 + 4620: 15,47 + 4641: 19,31 + 4642: 19,30 + 4643: 19,29 + 4644: 19,28 + 4645: 19,27 + 4676: 28,31 + 4688: 27,29 + 4689: 27,29 + 4690: 27,30 + 4691: 27,28 + 4705: 26,29 + 4709: 22,29 + 4734: 23,36 + 4738: 24,37 + 4739: 24,35 + 4759: 28,35 + 4760: 28,36 + 4761: 28,37 + 4776: 20,36 + 4799: 27,41 + 4800: 27,42 + 4801: 27,43 + 4816: 10,35 + 4870: 34,50 + 4878: 33,49 + 4879: 33,51 + 4881: 39,51 + 4923: 9,53 + 4924: 9,52 + 4925: 9,51 + 4926: 9,50 + 4927: 9,49 + 4935: 14,49 + 4936: 14,50 + 4941: 14,53 + 4942: 14,52 + 4990: 23,43 + 4991: 23,45 + 4992: 23,47 + 4993: 23,49 + 4994: 23,51 + 5004: 18,41 + 5005: 18,43 + 5006: 18,45 + 5036: 23,41 + 5080: 39,49 + 5081: 39,51 + 5082: 39,48 + 5083: 39,52 + 5172: 38,29 + 5174: 33,37 + 11371: -11,-82 + 11372: -11,-81 + 11373: -11,-80 + 14425: -46,14 + 14426: -46,12 + 15376: -49,9 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 4011: -40,53 - 9587: 2,-31 - 9607: 3,-34 - 9608: 3,-33 - 9615: 7,-34 - 9616: 7,-33 - 9617: 7,-32 - 9633: 9,-36 - 9634: 9,-34 + 4009: -40,53 + 9585: 2,-31 + 9605: 3,-34 + 9606: 3,-33 + 9613: 7,-34 + 9614: 7,-33 + 9615: 7,-32 + 9631: 9,-36 + 9632: 9,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 16905: -53,4 - 16906: -53,5 - 16907: -53,6 - 16919: -48,1 - 16934: -59,0 - 16936: -61,-2 - 16937: -61,-3 - 16984: -59,11 - 16985: -59,12 - 16986: -59,13 - 16990: -55,16 - 17000: -62,1 - 17010: -62,-7 - 17018: -56,-9 - 17029: -61,-8 - 17030: -61,-9 - 17043: -55,-8 - 17045: -54,-10 - 17046: -54,-11 - 17047: -54,-6 - 17048: -54,-5 - 17070: -60,-17 - 17076: -61,-13 - 17077: -61,-14 - 17092: -51,-15 - 17103: -59,-16 - 17104: -50,-16 - 17105: -50,-17 - 17120: -50,-14 - 17121: -50,-13 - 17192: -46,12 - 17193: -46,14 - 17228: -60,14 - 17230: -67,15 - 17244: -78,15 - 17326: -61,18 - 17327: -61,19 - 17338: -50,-9 - 17339: -50,-8 - 17340: -50,-7 - 17376: -50,-9 - 17377: -50,-8 - 17378: -50,-7 - 17379: -56,-7 - 17385: -62,-7 - 17424: -74,-6 - 17425: -74,-7 - 17426: -74,-8 - 17430: -77,-7 - 17431: -77,-8 - 17432: -77,-9 - 17444: -11,-82 - 17445: -11,-81 - 17446: -11,-80 - 17449: 13,78 - 17450: 12,87 - 17459: 5,92 - 17460: 10,90 - 17477: 5,88 - 17478: 5,89 - 17479: 5,90 - 17488: 9,85 - 17489: 9,86 - 17490: 9,87 - 17493: 12,87 - 17494: 10,82 - 17495: 10,79 - 17496: 10,78 - 17497: 10,77 - 17518: 13,78 - 17557: -65,6 - 17558: -65,7 - 17559: -65,8 - 17560: -65,9 - 17620: -65,1 - 17640: -74,-3 - 17641: -74,-2 - 17642: -74,-1 - 17643: -74,1 - 17660: -65,1 - 17737: -78,6 - 17738: -78,5 - 17739: -78,4 - 17763: -77,9 - 17764: -77,10 - 17765: -77,11 - 17789: -75,0 - 17832: -73,-11 - 17833: -73,-12 - 17849: -55,17 - 18209: -51,-3 - 18210: -51,-2 - 19938: -48,-3 + 16903: -53,4 + 16904: -53,5 + 16905: -53,6 + 16917: -48,1 + 16932: -59,0 + 16934: -61,-2 + 16935: -61,-3 + 16982: -59,11 + 16983: -59,12 + 16984: -59,13 + 16988: -55,16 + 16998: -62,1 + 17008: -62,-7 + 17016: -56,-9 + 17027: -61,-8 + 17028: -61,-9 + 17041: -55,-8 + 17043: -54,-10 + 17044: -54,-11 + 17045: -54,-6 + 17046: -54,-5 + 17068: -60,-17 + 17074: -61,-13 + 17075: -61,-14 + 17090: -51,-15 + 17101: -59,-16 + 17102: -50,-16 + 17103: -50,-17 + 17118: -50,-14 + 17119: -50,-13 + 17190: -46,12 + 17191: -46,14 + 17226: -60,14 + 17228: -67,15 + 17242: -78,15 + 17324: -61,18 + 17325: -61,19 + 17336: -50,-9 + 17337: -50,-8 + 17338: -50,-7 + 17374: -50,-9 + 17375: -50,-8 + 17376: -50,-7 + 17377: -56,-7 + 17383: -62,-7 + 17422: -74,-6 + 17423: -74,-7 + 17424: -74,-8 + 17428: -77,-7 + 17429: -77,-8 + 17430: -77,-9 + 17442: -11,-82 + 17443: -11,-81 + 17444: -11,-80 + 17447: 13,78 + 17448: 12,87 + 17457: 5,92 + 17458: 10,90 + 17475: 5,88 + 17476: 5,89 + 17477: 5,90 + 17486: 9,85 + 17487: 9,86 + 17488: 9,87 + 17491: 12,87 + 17492: 10,82 + 17493: 10,79 + 17494: 10,78 + 17495: 10,77 + 17516: 13,78 + 17555: -65,6 + 17556: -65,7 + 17557: -65,8 + 17558: -65,9 + 17618: -65,1 + 17638: -74,-3 + 17639: -74,-2 + 17640: -74,-1 + 17641: -74,1 + 17658: -65,1 + 17735: -78,6 + 17736: -78,5 + 17737: -78,4 + 17761: -77,9 + 17762: -77,10 + 17763: -77,11 + 17787: -75,0 + 17830: -73,-11 + 17831: -73,-12 + 17847: -55,17 + 18207: -51,-3 + 18208: -51,-2 + 19936: -48,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -16569,322 +16564,322 @@ entities: 978: 2,-14 1177: 44,-15 1178: 44,-16 - 2059: -15,50 - 2060: -15,49 - 2061: -15,48 - 2069: -18,52 - 2070: -18,51 - 2071: -18,50 - 2075: -18,48 - 2076: -18,47 - 2077: -18,46 - 2078: -20,47 - 2079: -20,48 - 2080: -20,49 - 2081: -20,51 - 2123: -18,36 - 2124: -18,35 - 2125: -18,34 - 2126: -18,32 - 2127: -18,31 - 2128: -18,29 - 2129: -18,28 - 2130: -18,27 - 2131: -20,29 - 2132: -20,30 - 2133: -20,31 - 2134: -20,32 - 2135: -20,33 - 2136: -20,34 - 2267: -22,41 - 2360: -28,37 - 2361: -28,36 - 2362: -28,34 - 2363: -28,35 - 2364: -28,33 - 2365: -28,32 - 2375: -31,30 - 2376: -31,31 - 2709: -13,53 - 2780: -9,49 - 2781: -4,49 - 3020: -10,57 - 3027: -18,61 - 3028: -18,62 - 3029: -18,63 - 3030: -18,64 - 3099: -4,61 - 3100: -4,62 - 3101: -4,63 - 3102: -4,64 - 3103: -3,57 - 3111: -3,68 - 3113: -10,68 - 3126: -17,57 - 3135: -17,68 - 3226: -11,72 - 3227: -11,73 - 3228: -11,74 - 3229: -11,75 - 3237: -11,79 - 3238: -11,80 - 3239: -11,81 - 3240: -11,82 - 3241: -11,92 - 3242: -11,93 - 3243: -11,94 - 3244: -11,95 - 3263: -11,88 - 3264: -11,88 - 3265: -11,87 - 3266: -11,86 - 3267: -11,85 - 3287: -29,95 - 3288: -29,94 - 3289: -29,93 - 3290: -29,92 - 3291: -29,88 - 3292: -29,87 - 3293: -29,86 - 3294: -29,85 - 3295: -29,82 - 3296: -29,81 - 3297: -29,80 - 3298: -29,79 - 3299: -29,75 - 3300: -29,74 - 3301: -29,73 - 3302: -29,72 - 3314: -28,68 - 3528: 3,68 - 3535: 8,68 - 3621: 7,75 - 3672: 7,72 - 3673: 7,73 - 3674: 7,79 - 3675: 7,80 - 3676: 7,81 - 3783: 3,57 - 3830: 17,69 - 4159: -25,22 - 5189: 18,16 - 5190: 18,17 - 5191: 18,18 - 5192: 18,19 - 5193: 18,12 - 5194: 18,12 - 5195: 18,11 - 5196: 18,10 - 5197: 18,9 - 5216: 18,3 - 5217: 18,4 - 5218: 18,2 - 5219: 18,-2 - 5220: 18,-3 - 5221: 18,-4 - 5222: 18,-5 - 5233: -23,68 - 5523: -35,5 - 5524: -30,5 - 5525: -22,5 - 5589: -34,27 - 5590: -34,28 - 6241: -18,-12 - 6242: -18,-13 - 6243: -18,-14 - 6244: -18,-15 - 6245: -18,-16 - 6246: -18,-17 - 6328: 18,-17 - 6329: 18,-16 - 6330: 18,-15 - 6331: 18,-14 - 6332: 18,-13 - 6333: 18,-12 - 6354: -2,-14 - 6355: -2,-15 - 6364: 2,-17 - 6656: -21,-3 - 6657: -21,-2 - 6658: -21,-2 - 6661: -33,2 - 6662: -33,1 - 6663: -33,0 - 6664: -33,-1 - 6665: -33,-2 - 6666: -33,-3 - 6667: -33,-4 - 6668: -33,-5 - 6669: -33,-6 - 6670: -33,-7 - 6671: -33,-8 - 6672: -33,-9 - 6701: -31,1 - 6738: -35,-15 - 6739: -35,-14 - 6740: -35,-14 - 6741: -35,-13 - 6742: -35,-12 - 6764: -30,-12 - 6765: -30,-13 - 6766: -30,-14 - 6767: -30,-14 - 6768: -30,-15 - 6988: -26,-17 - 6989: -26,-16 - 6990: -26,-16 - 6991: -22,-17 - 6992: -22,-17 - 6993: -22,-16 - 7026: 7,-20 - 7027: -4,-20 - 7028: -11,-20 - 7033: 14,-20 - 7034: 18,5 - 7145: 25,5 - 7212: 32,5 - 8044: 62,-15 - 8045: 62,-14 - 8046: 62,-13 - 8047: 58,-14 - 8048: 58,-27 - 8049: 60,-27 - 8050: 62,-28 - 8051: 62,-27 - 8052: 62,-26 - 8061: 60,-14 - 8263: 31,-11 - 8264: 25,-11 - 8265: 25,-11 - 8274: 41,-14 + 2057: -15,50 + 2058: -15,49 + 2059: -15,48 + 2067: -18,52 + 2068: -18,51 + 2069: -18,50 + 2073: -18,48 + 2074: -18,47 + 2075: -18,46 + 2076: -20,47 + 2077: -20,48 + 2078: -20,49 + 2079: -20,51 + 2121: -18,36 + 2122: -18,35 + 2123: -18,34 + 2124: -18,32 + 2125: -18,31 + 2126: -18,29 + 2127: -18,28 + 2128: -18,27 + 2129: -20,29 + 2130: -20,30 + 2131: -20,31 + 2132: -20,32 + 2133: -20,33 + 2134: -20,34 + 2265: -22,41 + 2358: -28,37 + 2359: -28,36 + 2360: -28,34 + 2361: -28,35 + 2362: -28,33 + 2363: -28,32 + 2373: -31,30 + 2374: -31,31 + 2707: -13,53 + 2778: -9,49 + 2779: -4,49 + 3018: -10,57 + 3025: -18,61 + 3026: -18,62 + 3027: -18,63 + 3028: -18,64 + 3097: -4,61 + 3098: -4,62 + 3099: -4,63 + 3100: -4,64 + 3101: -3,57 + 3109: -3,68 + 3111: -10,68 + 3124: -17,57 + 3133: -17,68 + 3224: -11,72 + 3225: -11,73 + 3226: -11,74 + 3227: -11,75 + 3235: -11,79 + 3236: -11,80 + 3237: -11,81 + 3238: -11,82 + 3239: -11,92 + 3240: -11,93 + 3241: -11,94 + 3242: -11,95 + 3261: -11,88 + 3262: -11,88 + 3263: -11,87 + 3264: -11,86 + 3265: -11,85 + 3285: -29,95 + 3286: -29,94 + 3287: -29,93 + 3288: -29,92 + 3289: -29,88 + 3290: -29,87 + 3291: -29,86 + 3292: -29,85 + 3293: -29,82 + 3294: -29,81 + 3295: -29,80 + 3296: -29,79 + 3297: -29,75 + 3298: -29,74 + 3299: -29,73 + 3300: -29,72 + 3312: -28,68 + 3526: 3,68 + 3533: 8,68 + 3619: 7,75 + 3670: 7,72 + 3671: 7,73 + 3672: 7,79 + 3673: 7,80 + 3674: 7,81 + 3781: 3,57 + 3828: 17,69 + 4157: -25,22 + 5187: 18,16 + 5188: 18,17 + 5189: 18,18 + 5190: 18,19 + 5191: 18,12 + 5192: 18,12 + 5193: 18,11 + 5194: 18,10 + 5195: 18,9 + 5214: 18,3 + 5215: 18,4 + 5216: 18,2 + 5217: 18,-2 + 5218: 18,-3 + 5219: 18,-4 + 5220: 18,-5 + 5231: -23,68 + 5521: -35,5 + 5522: -30,5 + 5523: -22,5 + 5587: -34,27 + 5588: -34,28 + 6239: -18,-12 + 6240: -18,-13 + 6241: -18,-14 + 6242: -18,-15 + 6243: -18,-16 + 6244: -18,-17 + 6326: 18,-17 + 6327: 18,-16 + 6328: 18,-15 + 6329: 18,-14 + 6330: 18,-13 + 6331: 18,-12 + 6352: -2,-14 + 6353: -2,-15 + 6362: 2,-17 + 6654: -21,-3 + 6655: -21,-2 + 6656: -21,-2 + 6659: -33,2 + 6660: -33,1 + 6661: -33,0 + 6662: -33,-1 + 6663: -33,-2 + 6664: -33,-3 + 6665: -33,-4 + 6666: -33,-5 + 6667: -33,-6 + 6668: -33,-7 + 6669: -33,-8 + 6670: -33,-9 + 6699: -31,1 + 6736: -35,-15 + 6737: -35,-14 + 6738: -35,-14 + 6739: -35,-13 + 6740: -35,-12 + 6762: -30,-12 + 6763: -30,-13 + 6764: -30,-14 + 6765: -30,-14 + 6766: -30,-15 + 6986: -26,-17 + 6987: -26,-16 + 6988: -26,-16 + 6989: -22,-17 + 6990: -22,-17 + 6991: -22,-16 + 7024: 7,-20 + 7025: -4,-20 + 7026: -11,-20 + 7031: 14,-20 + 7032: 18,5 + 7143: 25,5 + 7210: 32,5 + 8042: 62,-15 + 8043: 62,-14 + 8044: 62,-13 + 8045: 58,-14 + 8046: 58,-27 + 8047: 60,-27 + 8048: 62,-28 + 8049: 62,-27 + 8050: 62,-26 + 8059: 60,-14 + 8261: 31,-11 + 8262: 25,-11 + 8263: 25,-11 + 8272: 41,-14 + 8273: 41,-12 + 8274: 41,-12 8275: 41,-12 - 8276: 41,-12 - 8277: 41,-12 - 8278: 41,-10 - 8279: 41,-11 - 8329: 41,-13 - 8330: 41,-13 - 8470: 48,-20 - 8471: 53,-20 - 8472: 53,-20 - 8709: 0,-76 - 8710: 0,-80 - 8714: -3,-78 - 8770: 11,-25 - 8771: 11,-26 - 8785: -7,-26 - 8786: -7,-25 - 8787: -7,-25 - 8851: 0,-27 - 8852: 0,-26 - 8853: 0,-25 - 8854: 0,-24 - 8896: 0,-35 - 8897: 0,-34 - 8898: 0,-34 - 8899: 0,-33 - 8900: 0,-32 - 8901: 0,-31 - 8902: 0,-31 - 8944: -3,-25 - 8945: -3,-25 - 8946: -3,-26 - 8979: -16,-26 - 8980: -16,-25 - 9109: 2,-24 - 9412: 0,-50 - 9413: 0,-49 - 9414: 0,-49 - 9415: 0,-45 - 9416: 0,-46 - 9417: 0,-48 - 9418: 0,-48 - 9419: 0,-47 - 9420: 0,-42 - 9421: 0,-41 - 9422: 0,-40 - 9423: 0,-40 - 9424: 0,-39 - 9425: 0,-52 - 9426: 0,-53 - 9427: 0,-54 - 9428: 0,-55 - 9432: 0,-44 - 9440: 0,-61 - 9441: 0,-60 - 9442: 0,-59 - 9466: -5,-73 - 9467: -5,-72 - 9468: -2,-69 - 9469: -2,-70 - 9470: -2,-71 - 9490: 72,-51 - 9549: 15,-26 - 9550: 15,-25 - 10691: 76,-45 - 12755: -41,22 - 13492: -41,-63 - 14892: -20,50 - 14992: -12,23 - 14993: -2,23 - 14994: 5,23 - 14995: 15,23 - 15363: -6,-70 - 15438: -41,21 - 15439: -41,20 - 15440: -41,17 - 15441: -41,16 - 15442: -41,15 - 15443: -41,14 - 15444: -41,11 - 15445: -41,10 - 15446: -41,9 - 15488: 0,-79 - 15489: 0,-78 - 15490: 0,-77 - 15607: 91,-4 - 15608: 91,-3 - 15619: 96,-3 - 17538: 7,82 - 17546: 7,74 - 18816: -11,-9 - 18817: -5,-9 - 18818: 2,-9 - 18819: 8,-9 - 18847: 14,-9 - 19756: 40,-10 - 19757: 40,-11 - 19758: 40,-13 - 19759: 40,-14 - 20261: -18,-5 - 20262: -18,-4 - 20263: -18,-3 - 20264: -18,-2 - 20265: -18,2 - 20266: -18,3 - 20267: -18,4 - 20268: -18,5 - 20269: -18,9 - 20270: -18,10 - 20271: -18,11 - 20272: -18,12 - 20273: -18,16 - 20274: -18,17 - 20275: -18,18 - 20276: -18,19 + 8276: 41,-10 + 8277: 41,-11 + 8327: 41,-13 + 8328: 41,-13 + 8468: 48,-20 + 8469: 53,-20 + 8470: 53,-20 + 8707: 0,-76 + 8708: 0,-80 + 8712: -3,-78 + 8768: 11,-25 + 8769: 11,-26 + 8783: -7,-26 + 8784: -7,-25 + 8785: -7,-25 + 8849: 0,-27 + 8850: 0,-26 + 8851: 0,-25 + 8852: 0,-24 + 8894: 0,-35 + 8895: 0,-34 + 8896: 0,-34 + 8897: 0,-33 + 8898: 0,-32 + 8899: 0,-31 + 8900: 0,-31 + 8942: -3,-25 + 8943: -3,-25 + 8944: -3,-26 + 8977: -16,-26 + 8978: -16,-25 + 9107: 2,-24 + 9410: 0,-50 + 9411: 0,-49 + 9412: 0,-49 + 9413: 0,-45 + 9414: 0,-46 + 9415: 0,-48 + 9416: 0,-48 + 9417: 0,-47 + 9418: 0,-42 + 9419: 0,-41 + 9420: 0,-40 + 9421: 0,-40 + 9422: 0,-39 + 9423: 0,-52 + 9424: 0,-53 + 9425: 0,-54 + 9426: 0,-55 + 9430: 0,-44 + 9438: 0,-61 + 9439: 0,-60 + 9440: 0,-59 + 9464: -5,-73 + 9465: -5,-72 + 9466: -2,-69 + 9467: -2,-70 + 9468: -2,-71 + 9488: 72,-51 + 9547: 15,-26 + 9548: 15,-25 + 10689: 76,-45 + 12753: -41,22 + 13490: -41,-63 + 14890: -20,50 + 14990: -12,23 + 14991: -2,23 + 14992: 5,23 + 14993: 15,23 + 15361: -6,-70 + 15436: -41,21 + 15437: -41,20 + 15438: -41,17 + 15439: -41,16 + 15440: -41,15 + 15441: -41,14 + 15442: -41,11 + 15443: -41,10 + 15444: -41,9 + 15486: 0,-79 + 15487: 0,-78 + 15488: 0,-77 + 15605: 91,-4 + 15606: 91,-3 + 15617: 96,-3 + 17536: 7,82 + 17544: 7,74 + 18814: -11,-9 + 18815: -5,-9 + 18816: 2,-9 + 18817: 8,-9 + 18845: 14,-9 + 19754: 40,-10 + 19755: 40,-11 + 19756: 40,-13 + 19757: 40,-14 + 20259: -18,-5 + 20260: -18,-4 + 20261: -18,-3 + 20262: -18,-2 + 20263: -18,2 + 20264: -18,3 + 20265: -18,4 + 20266: -18,5 + 20267: -18,9 + 20268: -18,10 + 20269: -18,11 + 20270: -18,12 + 20271: -18,16 + 20272: -18,17 + 20273: -18,18 + 20274: -18,19 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 4092: -18,19 - 4093: -18,18 - 4094: -18,17 - 4095: -18,16 - 4096: -18,11 - 4097: -18,10 - 4098: -18,9 - 4099: -18,12 + 4090: -18,19 + 4091: -18,18 + 4092: -18,17 + 4093: -18,16 + 4094: -18,11 + 4095: -18,10 + 4096: -18,9 + 4097: -18,12 - node: color: '#FFFFFFFF' id: BushAThree @@ -16895,7 +16890,7 @@ entities: color: '#FFFFFFFF' id: BushCThree decals: - 2848: -33,41 + 2846: -33,41 - node: color: '#FFFFFFFF' id: Busha1 @@ -16921,7 +16916,7 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 15537: 73,-20 + 15535: 73,-20 - node: color: '#FFFFFFFF' id: Bushb3 @@ -16977,7 +16972,7 @@ entities: id: Caution decals: 846: 92,26 - 13299: -58,22 + 13297: -58,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -16991,51 +16986,51 @@ entities: color: '#FFFFFFFF' id: Caution decals: + 13294: -58,25 + 13295: -58,25 13296: -58,25 - 13297: -58,25 - 13298: -58,25 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 19363: 54.897575,4.5646844 + 19361: 54.897575,4.5646844 - node: color: '#3EB38896' id: CheckerNESW decals: - 14009: -68,56 - 14010: -67,56 - 14011: -68,55 - 14012: -68,54 - 14013: -67,54 - 14014: -67,55 - 14015: -66,56 - 14016: -66,55 - 14017: -66,54 - 14018: -65,54 - 14019: -65,55 - 14020: -65,56 - 14021: -64,54 - 14022: -64,55 - 14023: -64,56 - 14024: -63,56 - 14025: -63,55 - 14026: -63,54 - 14027: -62,54 - 14028: -62,55 - 14029: -62,56 - 14030: -62,57 - 14031: -63,57 - 14032: -63,58 - 14033: -62,58 - 14034: -62,59 - 14035: -63,59 - 14036: -63,60 - 14037: -62,60 - 14038: -62,61 - 14039: -63,61 - 14040: -70,55 + 14007: -68,56 + 14008: -67,56 + 14009: -68,55 + 14010: -68,54 + 14011: -67,54 + 14012: -67,55 + 14013: -66,56 + 14014: -66,55 + 14015: -66,54 + 14016: -65,54 + 14017: -65,55 + 14018: -65,56 + 14019: -64,54 + 14020: -64,55 + 14021: -64,56 + 14022: -63,56 + 14023: -63,55 + 14024: -63,54 + 14025: -62,54 + 14026: -62,55 + 14027: -62,56 + 14028: -62,57 + 14029: -63,57 + 14030: -63,58 + 14031: -62,58 + 14032: -62,59 + 14033: -63,59 + 14034: -63,60 + 14035: -62,60 + 14036: -62,61 + 14037: -63,61 + 14038: -70,55 - node: color: '#808080FF' id: CheckerNESW @@ -17052,499 +17047,499 @@ entities: color: '#9D9D97FF' id: CheckerNWSE decals: - 2640: 2,52 - 2641: 2,50 - 2642: 2,51 - 2643: 2,51 - 2644: 1,51 - 2645: 1,50 - 2646: 0,50 - 2647: -1,50 - 2648: -1,51 - 2649: 0,51 - 2650: 0,52 - 2651: -1,54 - 2652: 0,53 - 2653: -1,53 - 2654: 0,54 - 2655: 1,53 - 2656: 2,53 - 2657: 3,54 - 2658: 3,50 - 2659: 3,51 - 2660: 3,52 - 2661: 3,53 - 2662: 1,52 - 2663: -1,52 + 2638: 2,52 + 2639: 2,50 + 2640: 2,51 + 2641: 2,51 + 2642: 1,51 + 2643: 1,50 + 2644: 0,50 + 2645: -1,50 + 2646: -1,51 + 2647: 0,51 + 2648: 0,52 + 2649: -1,54 + 2650: 0,53 + 2651: -1,53 + 2652: 0,54 + 2653: 1,53 + 2654: 2,53 + 2655: 3,54 + 2656: 3,50 + 2657: 3,51 + 2658: 3,52 + 2659: 3,53 + 2660: 1,52 + 2661: -1,52 - node: color: '#DA8BC9FF' id: CheckerNWSE decals: - 16146: -67,-46 - 16147: -66,-46 - 16148: -66,-47 - 16149: -66,-48 - 16150: -65,-47 - 16151: -65,-48 - 16152: -64,-48 - 16153: -64,-47 - 16154: -64,-46 - 16155: -65,-46 - 16156: -63,-46 - 16157: -62,-46 - 16158: -62,-47 - 16159: -62,-48 - 16160: -63,-45 - 16161: -64,-45 - 16162: -65,-45 + 16144: -67,-46 + 16145: -66,-46 + 16146: -66,-47 + 16147: -66,-48 + 16148: -65,-47 + 16149: -65,-48 + 16150: -64,-48 + 16151: -64,-47 + 16152: -64,-46 + 16153: -65,-46 + 16154: -63,-46 + 16155: -62,-46 + 16156: -62,-47 + 16157: -62,-48 + 16158: -63,-45 + 16159: -64,-45 + 16160: -65,-45 - node: color: '#FFFF00D8' id: ConcreteTrimCornerNe decals: - 14041: -62,61 + 14039: -62,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNe decals: - 14054: -62,61 + 14052: -62,61 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 2093: -21,39 - 2189: -20,40 - 7865: 75,-16 - 7911: 68,-24 - 12691: -40,34 - 12704: -38,33 - 15701: 97,7 + 2091: -21,39 + 2187: -20,40 + 7863: 75,-16 + 7909: 68,-24 + 12689: -40,34 + 12702: -38,33 + 15699: 97,7 - node: color: '#FFFF00D9' id: ConcreteTrimCornerNw decals: - 14042: -63,61 + 14040: -63,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNw decals: - 14055: -63,61 - 14068: -68,56 + 14053: -63,61 + 14066: -68,56 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 2092: -17,39 - 2188: -18,40 - 7910: 74,-24 - 7917: 67,-16 + 2090: -17,39 + 2186: -18,40 + 7908: 74,-24 + 7915: 67,-16 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSe decals: - 14057: -62,54 + 14055: -62,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 2094: -21,43 - 2187: -20,42 - 7946: 68,-17 - 7971: 75,-25 + 2092: -21,43 + 2185: -20,42 + 7944: 68,-17 + 7969: 75,-25 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSw decals: - 14064: -68,54 + 14062: -68,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 2095: -17,43 - 2191: -18,42 - 7945: 74,-17 - 7972: 67,-25 - 12695: -38,32 + 2093: -17,43 + 2189: -18,42 + 7943: 74,-17 + 7970: 67,-25 + 12693: -38,32 - node: color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 2176: -18,41 + 2174: -18,41 - node: color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 2174: -19,42 + 2172: -19,42 - node: color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 2175: -19,40 - 12692: -40,32 + 2173: -19,40 + 12690: -40,32 - node: color: '#FFFF00FF' id: ConcreteTrimEndW decals: - 14066: -70,55 + 14064: -70,55 - node: color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 2173: -20,41 + 2171: -20,41 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNe decals: - 14070: -67,56 + 14068: -67,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 2100: -21,38 - 2102: -22,39 - 2177: -19,41 - 2195: -21,40 - 2196: -20,39 - 2209: -18,43 - 2210: -17,42 - 2855: -33,43 - 5965: -3,9 - 6010: -1,-5 - 6023: -1,7 - 6024: -1,3 - 6025: -1,-1 - 7927: 67,-24 - 7928: 68,-25 - 7929: 67,-22 - 7930: 67,-19 - 7991: 75,-22 - 7992: 75,-19 - 12702: -40,33 - 12703: -38,32 + 2098: -21,38 + 2100: -22,39 + 2175: -19,41 + 2193: -21,40 + 2194: -20,39 + 2207: -18,43 + 2208: -17,42 + 2853: -33,43 + 5963: -3,9 + 6008: -1,-5 + 6021: -1,7 + 6022: -1,3 + 6023: -1,-1 + 7925: 67,-24 + 7926: 68,-25 + 7927: 67,-22 + 7928: 67,-19 + 7989: 75,-22 + 7990: 75,-19 + 12700: -40,33 + 12701: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNw decals: - 14067: -68,55 - 14069: -67,56 - 14075: -63,56 + 14065: -68,55 + 14067: -67,56 + 14073: -63,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 2099: -16,39 - 2101: -17,38 - 2178: -19,41 - 2206: -21,42 - 2207: -21,42 - 2208: -20,43 - 2211: -17,40 - 2212: -18,39 - 5966: 1,9 - 6011: -1,-5 - 6020: -1,-1 - 6021: -1,3 - 6022: -1,7 - 7948: 74,-25 - 7949: 75,-24 - 7950: 75,-22 - 7951: 75,-19 - 7952: 67,-22 - 7953: 67,-19 + 2097: -16,39 + 2099: -17,38 + 2176: -19,41 + 2204: -21,42 + 2205: -21,42 + 2206: -20,43 + 2209: -17,40 + 2210: -18,39 + 5964: 1,9 + 6009: -1,-5 + 6018: -1,-1 + 6019: -1,3 + 6020: -1,7 + 7946: 74,-25 + 7947: 75,-24 + 7948: 75,-22 + 7949: 75,-19 + 7950: 67,-22 + 7951: 67,-19 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSe decals: - 14058: -63,54 + 14056: -63,54 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 2103: -21,44 - 2179: -19,41 - 2197: -21,42 - 2198: -20,43 - 2199: -17,40 - 2200: -17,40 - 2201: -18,39 - 2270: -22,43 - 2854: -33,40 - 5963: -3,-6 - 6013: -1,-5 - 6014: -1,-1 - 6015: -1,3 - 6016: -1,7 - 7932: 67,-22 - 7933: 67,-19 - 7934: 67,-17 - 7935: 68,-16 - 7989: 75,-19 - 7990: 75,-22 - 12701: -40,33 + 2101: -21,44 + 2177: -19,41 + 2195: -21,42 + 2196: -20,43 + 2197: -17,40 + 2198: -17,40 + 2199: -18,39 + 2268: -22,43 + 2852: -33,40 + 5961: -3,-6 + 6011: -1,-5 + 6012: -1,-1 + 6013: -1,3 + 6014: -1,7 + 7930: 67,-22 + 7931: 67,-19 + 7932: 67,-17 + 7933: 68,-16 + 7987: 75,-19 + 7988: 75,-22 + 12699: -40,33 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSw decals: - 14059: -63,54 - 14065: -68,55 + 14057: -63,54 + 14063: -68,55 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 2104: -17,44 - 2105: -16,43 - 2180: -19,41 - 2202: -17,42 - 2203: -18,43 - 2204: -20,39 - 2205: -21,40 - 2846: -32,44 - 5964: 1,-6 - 6012: -1,-5 - 6017: -1,7 - 6018: -1,3 - 6019: -1,-1 - 7924: 75,-22 - 7925: 75,-19 - 7926: 75,-17 - 7987: 67,-22 - 7988: 67,-19 - 12699: -40,34 - 12700: -38,33 + 2102: -17,44 + 2103: -16,43 + 2178: -19,41 + 2200: -17,42 + 2201: -18,43 + 2202: -20,39 + 2203: -21,40 + 2844: -32,44 + 5962: 1,-6 + 6010: -1,-5 + 6015: -1,7 + 6016: -1,3 + 6017: -1,-1 + 7922: 75,-22 + 7923: 75,-19 + 7924: 75,-17 + 7985: 67,-22 + 7986: 67,-19 + 12697: -40,34 + 12698: -38,33 - node: color: '#FFFF00D9' id: ConcreteTrimLineE decals: - 14043: -62,60 - 14044: -62,59 - 14045: -62,59 - 14046: -62,58 - 14047: -62,57 - 14048: -62,56 + 14041: -62,60 + 14042: -62,59 + 14043: -62,59 + 14044: -62,58 + 14045: -62,57 + 14046: -62,56 - node: color: '#FFFF00FF' id: ConcreteTrimLineE decals: - 14049: -62,56 - 14050: -62,57 - 14051: -62,58 - 14052: -62,59 - 14053: -62,60 - 14056: -62,55 + 14047: -62,56 + 14048: -62,57 + 14049: -62,58 + 14050: -62,59 + 14051: -62,60 + 14054: -62,55 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 2106: -22,40 - 2107: -22,41 - 2192: -21,41 - 2271: -22,42 - 5394: 0,-6 - 5395: 0,-6 - 5396: 0,-5 - 5397: 0,-4 - 5398: 0,-3 - 5399: 0,-2 - 5400: 0,-1 - 5401: 0,0 - 5402: 0,1 - 5403: 0,1 - 5404: 0,2 - 5405: 0,2 - 5406: 0,3 - 5407: 0,3 - 5408: 0,4 - 5409: 0,5 - 5410: 0,5 - 5411: 0,6 - 5412: 0,7 - 5413: 0,8 - 5414: 0,8 - 5415: 0,9 - 6006: 0,7 - 6007: 0,3 - 6008: 0,-1 - 6009: 0,-5 - 7897: 67,-21 - 7898: 67,-20 - 7899: 67,-23 - 7947: 67,-18 - 7954: 75,-17 - 7955: 75,-18 - 7956: 75,-20 - 7957: 75,-21 - 7958: 75,-23 - 7959: 75,-24 - 7983: 66,-22 - 7984: 66,-19 + 2104: -22,40 + 2105: -22,41 + 2190: -21,41 + 2269: -22,42 + 5392: 0,-6 + 5393: 0,-6 + 5394: 0,-5 + 5395: 0,-4 + 5396: 0,-3 + 5397: 0,-2 + 5398: 0,-1 + 5399: 0,0 + 5400: 0,1 + 5401: 0,1 + 5402: 0,2 + 5403: 0,2 + 5404: 0,3 + 5405: 0,3 + 5406: 0,4 + 5407: 0,5 + 5408: 0,5 + 5409: 0,6 + 5410: 0,7 + 5411: 0,8 + 5412: 0,8 + 5413: 0,9 + 6004: 0,7 + 6005: 0,3 + 6006: 0,-1 + 6007: 0,-5 + 7895: 67,-21 + 7896: 67,-20 + 7897: 67,-23 + 7945: 67,-18 + 7952: 75,-17 + 7953: 75,-18 + 7954: 75,-20 + 7955: 75,-21 + 7956: 75,-23 + 7957: 75,-24 + 7981: 66,-22 + 7982: 66,-19 - node: color: '#FFFF00FF' id: ConcreteTrimLineN decals: - 14071: -66,56 - 14072: -65,56 - 14073: -65,56 - 14074: -64,56 + 14069: -66,56 + 14070: -65,56 + 14071: -65,56 + 14072: -64,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 2089: -20,38 - 2090: -19,38 - 2091: -18,38 - 2194: -19,39 - 7866: 74,-16 - 7867: 73,-16 - 7868: 72,-16 - 7869: 71,-16 - 7870: 70,-16 - 7871: 69,-16 - 7872: 68,-16 - 7873: 68,-19 - 7874: 69,-19 - 7875: 70,-19 - 7876: 71,-19 - 7877: 72,-19 - 7878: 73,-19 - 7879: 74,-19 - 7880: 68,-22 - 7881: 70,-22 - 7882: 71,-22 - 7883: 72,-22 + 2087: -20,38 + 2088: -19,38 + 2089: -18,38 + 2192: -19,39 + 7864: 74,-16 + 7865: 73,-16 + 7866: 72,-16 + 7867: 71,-16 + 7868: 70,-16 + 7869: 69,-16 + 7870: 68,-16 + 7871: 68,-19 + 7872: 69,-19 + 7873: 70,-19 + 7874: 71,-19 + 7875: 72,-19 + 7876: 73,-19 + 7877: 74,-19 + 7878: 68,-22 + 7879: 70,-22 + 7880: 71,-22 + 7881: 72,-22 + 7882: 73,-22 + 7883: 69,-22 7884: 73,-22 - 7885: 69,-22 - 7886: 73,-22 - 7887: 74,-22 - 7912: 69,-25 - 7913: 70,-25 - 7914: 71,-25 - 7915: 72,-25 - 7916: 73,-25 - 12690: -41,34 - 12696: -39,33 - 12697: -38,33 + 7885: 74,-22 + 7910: 69,-25 + 7911: 70,-25 + 7912: 71,-25 + 7913: 72,-25 + 7914: 73,-25 + 12688: -41,34 + 12694: -39,33 + 12695: -38,33 - node: color: '#FFFF00FF' id: ConcreteTrimLineS decals: - 14060: -64,54 - 14061: -65,54 - 14062: -66,54 - 14063: -67,54 + 14058: -64,54 + 14059: -65,54 + 14060: -66,54 + 14061: -67,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 2108: -20,44 - 2109: -19,44 - 2110: -18,44 - 2190: -19,43 - 7890: 68,-19 - 7891: 69,-19 - 7892: 70,-19 - 7893: 71,-19 - 7894: 72,-19 - 7895: 73,-19 - 7896: 74,-19 - 7900: 68,-22 - 7901: 69,-22 - 7902: 70,-22 - 7903: 71,-22 - 7904: 73,-22 - 7905: 73,-22 - 7906: 72,-22 - 7907: 74,-22 - 7908: 73,-22 - 7936: 69,-16 - 7937: 70,-16 - 7938: 71,-16 - 7939: 71,-16 + 2106: -20,44 + 2107: -19,44 + 2108: -18,44 + 2188: -19,43 + 7888: 68,-19 + 7889: 69,-19 + 7890: 70,-19 + 7891: 71,-19 + 7892: 72,-19 + 7893: 73,-19 + 7894: 74,-19 + 7898: 68,-22 + 7899: 69,-22 + 7900: 70,-22 + 7901: 71,-22 + 7902: 73,-22 + 7903: 73,-22 + 7904: 72,-22 + 7905: 74,-22 + 7906: 73,-22 + 7934: 69,-16 + 7935: 70,-16 + 7936: 71,-16 + 7937: 71,-16 + 7938: 72,-16 + 7939: 72,-16 7940: 72,-16 7941: 72,-16 - 7942: 72,-16 - 7943: 72,-16 - 7944: 73,-16 + 7942: 73,-16 + 7958: 68,-25 + 7959: 68,-25 7960: 68,-25 - 7961: 68,-25 - 7962: 68,-25 - 7963: 69,-25 - 7964: 70,-25 - 7965: 71,-25 - 7966: 71,-25 - 7967: 72,-25 - 7968: 72,-25 - 7969: 74,-25 - 7970: 74,-25 - 12689: -41,34 - 12693: -39,33 - 12694: -38,32 + 7961: 69,-25 + 7962: 70,-25 + 7963: 71,-25 + 7964: 71,-25 + 7965: 72,-25 + 7966: 72,-25 + 7967: 74,-25 + 7968: 74,-25 + 12687: -41,34 + 12691: -39,33 + 12692: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimLineW decals: - 14076: -63,57 - 14077: -63,58 - 14078: -63,59 - 14079: -63,59 - 14080: -63,60 + 14074: -63,57 + 14075: -63,58 + 14076: -63,59 + 14077: -63,59 + 14078: -63,60 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 2096: -16,42 - 2097: -16,41 - 2098: -16,40 - 2193: -17,41 - 2842: -32,40 - 2843: -32,41 - 2844: -32,42 - 2845: -32,43 - 5416: -2,8 - 5417: -2,7 - 5418: -2,6 - 5419: -2,5 - 5420: -2,5 - 5421: -2,4 - 5422: -2,3 - 5423: -2,2 - 5424: -2,1 - 5425: -2,1 - 5426: -2,0 - 5427: -2,-1 - 5428: -2,-2 - 5429: -2,-2 - 5430: -2,-3 - 5431: -2,-4 - 5432: -2,-4 - 5433: -2,-5 - 5434: -2,-5 - 5435: -2,-6 - 6002: -2,-5 - 6003: -2,-1 - 6004: -2,3 - 6005: -2,7 - 7888: 75,-21 - 7889: 75,-20 - 7909: 75,-23 - 7918: 67,-17 - 7919: 67,-18 - 7920: 67,-20 - 7921: 67,-21 - 7922: 67,-23 - 7923: 67,-24 - 7931: 75,-18 - 7985: 76,-19 - 7986: 76,-22 - 12698: -40,33 - 18713: -2,9 + 2094: -16,42 + 2095: -16,41 + 2096: -16,40 + 2191: -17,41 + 2840: -32,40 + 2841: -32,41 + 2842: -32,42 + 2843: -32,43 + 5414: -2,8 + 5415: -2,7 + 5416: -2,6 + 5417: -2,5 + 5418: -2,5 + 5419: -2,4 + 5420: -2,3 + 5421: -2,2 + 5422: -2,1 + 5423: -2,1 + 5424: -2,0 + 5425: -2,-1 + 5426: -2,-2 + 5427: -2,-2 + 5428: -2,-3 + 5429: -2,-4 + 5430: -2,-4 + 5431: -2,-5 + 5432: -2,-5 + 5433: -2,-6 + 6000: -2,-5 + 6001: -2,-1 + 6002: -2,3 + 6003: -2,7 + 7886: 75,-21 + 7887: 75,-20 + 7907: 75,-23 + 7916: 67,-17 + 7917: 67,-18 + 7918: 67,-20 + 7919: 67,-21 + 7920: 67,-23 + 7921: 67,-24 + 7929: 75,-18 + 7983: 76,-19 + 7984: 76,-22 + 12696: -40,33 + 18711: -2,9 - node: color: '#FFFFFF25' id: Damaged decals: - 18714: 63,-40 - 18715: 64,-40 - 18716: 59,-42 - 18717: 60,-42 - 18718: 58,-42 + 18712: 63,-40 + 18713: 64,-40 + 18714: 59,-42 + 18715: 60,-42 + 18716: 58,-42 - node: color: '#FFFFFFFF' id: Delivery @@ -17594,79 +17589,79 @@ entities: 1216: 61,6 1217: 63,6 1244: 63,3 - 3127: -2,64 - 3128: -2,63 - 3129: -2,62 - 3130: -2,61 - 3221: -2,64 - 3222: -2,63 - 3223: -2,62 - 3224: -2,61 - 6026: -8,-16 - 6027: -8,-17 - 6028: -8,-13 - 6029: -8,-12 - 6036: -16,-16 - 6037: -16,-15 - 6038: -16,-14 - 6039: -16,-13 - 6040: -14,-16 - 6041: -14,-15 - 6042: -14,-14 - 6043: -14,-13 - 6044: -12,-13 - 6045: -12,-14 - 6046: -12,-15 - 6047: -12,-16 - 6048: -10,-16 - 6049: -10,-15 - 6050: -10,-14 - 6051: -10,-13 - 6052: -10,-13 - 6227: -13,-18 - 6228: -12,-18 - 6229: -11,-18 - 17345: -46,-9 - 17346: -46,-10 - 17347: -45,-10 - 17348: -45,-9 - 17349: -45,-6 - 17350: -47,-6 - 17351: -46,-6 - 17352: -45,-7 - 17353: -46,-7 - 17354: -48,-6 - 17355: -49,-6 - 17356: -49,-10 - 17357: -48,-10 - 17358: -47,-10 - 17359: -47,-9 - 17360: -47,-7 - 17791: -67,-13 - 17792: -68,-13 - 17793: -68,-12 - 17794: -67,-12 - 17795: -67,-11 - 17796: -68,-11 - 17797: -68,-10 - 17798: -67,-10 - 17799: -69,-13 - 17800: -69,-12 - 17801: -70,-12 - 17802: -70,-13 - 17803: -71,-13 - 17804: -71,-12 - 17805: -72,-12 - 17806: -72,-13 - 17807: -73,-13 - 17808: -73,-11 - 17809: -72,-11 - 17810: -72,-10 - 17811: -73,-10 - 17812: -73,-12 - 19368: 70,1 - 19369: 70,0 - 19370: 70,-1 + 3125: -2,64 + 3126: -2,63 + 3127: -2,62 + 3128: -2,61 + 3219: -2,64 + 3220: -2,63 + 3221: -2,62 + 3222: -2,61 + 6024: -8,-16 + 6025: -8,-17 + 6026: -8,-13 + 6027: -8,-12 + 6034: -16,-16 + 6035: -16,-15 + 6036: -16,-14 + 6037: -16,-13 + 6038: -14,-16 + 6039: -14,-15 + 6040: -14,-14 + 6041: -14,-13 + 6042: -12,-13 + 6043: -12,-14 + 6044: -12,-15 + 6045: -12,-16 + 6046: -10,-16 + 6047: -10,-15 + 6048: -10,-14 + 6049: -10,-13 + 6050: -10,-13 + 6225: -13,-18 + 6226: -12,-18 + 6227: -11,-18 + 17343: -46,-9 + 17344: -46,-10 + 17345: -45,-10 + 17346: -45,-9 + 17347: -45,-6 + 17348: -47,-6 + 17349: -46,-6 + 17350: -45,-7 + 17351: -46,-7 + 17352: -48,-6 + 17353: -49,-6 + 17354: -49,-10 + 17355: -48,-10 + 17356: -47,-10 + 17357: -47,-9 + 17358: -47,-7 + 17789: -67,-13 + 17790: -68,-13 + 17791: -68,-12 + 17792: -67,-12 + 17793: -67,-11 + 17794: -68,-11 + 17795: -68,-10 + 17796: -67,-10 + 17797: -69,-13 + 17798: -69,-12 + 17799: -70,-12 + 17800: -70,-13 + 17801: -71,-13 + 17802: -71,-12 + 17803: -72,-12 + 17804: -72,-13 + 17805: -73,-13 + 17806: -73,-11 + 17807: -72,-11 + 17808: -72,-10 + 17809: -73,-10 + 17810: -73,-12 + 19366: 70,1 + 19367: 70,0 + 19368: 70,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -17736,16 +17731,16 @@ entities: color: '#DA8B8BFF' id: DiagonalCheckerAOverlay decals: - 15645: 78,1 - 15646: 82,1 - 15647: 83,1 - 15648: 81,1 - 15649: 84,1 - 15650: 86,1 - 15651: 88,1 - 15652: 87,1 - 15653: 77,1 - 15654: 79,1 + 15643: 78,1 + 15644: 82,1 + 15645: 83,1 + 15646: 81,1 + 15647: 84,1 + 15648: 86,1 + 15649: 88,1 + 15650: 87,1 + 15651: 77,1 + 15652: 79,1 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay @@ -17758,902 +17753,902 @@ entities: color: '#B18BDAFF' id: DiagonalCheckerBOverlay decals: - 12739: -8,-34 - 12740: -7,-34 - 12741: -7,-33 - 12742: -8,-33 - 12743: -8,-32 - 12744: -7,-32 - 12745: -7,-32 + 12737: -8,-34 + 12738: -7,-34 + 12739: -7,-33 + 12740: -8,-33 + 12741: -8,-32 + 12742: -7,-32 + 12743: -7,-32 - node: color: '#DABC8BFF' id: DiagonalCheckerBOverlay decals: - 9618: 5,-32 - 9619: 5,-33 - 9620: 5,-34 - 9621: 6,-34 - 9622: 6,-33 - 9623: 6,-32 + 9616: 5,-32 + 9617: 5,-33 + 9618: 5,-34 + 9619: 6,-34 + 9620: 6,-33 + 9621: 6,-32 - node: color: '#FFFFFF02' id: DiagonalOverlay decals: - 14494: -16,23 - 14495: -15,23 - 14496: -14,23 - 14497: -13,23 - 14498: -6,23 - 14499: -5,23 - 14500: -4,23 - 14501: -3,23 - 14502: -19,16 - 14503: -19,17 - 14504: -19,18 - 14505: -19,19 - 14506: -19,9 - 14507: -19,10 - 14508: -19,11 - 14509: -19,12 - 14510: -22,30 - 14511: -22,31 - 14512: -22,32 - 14513: -22,33 - 14514: -21,34 - 14515: -21,33 - 14516: -21,32 - 14517: -21,30 - 14518: -21,29 - 14519: -21,31 - 14520: -19,27 - 14521: -19,28 - 14522: -19,29 - 14523: -19,32 - 14524: -19,31 - 14525: -19,36 - 14526: -19,35 - 14527: -19,34 - 14528: -23,41 - 14529: -19,48 - 14530: -19,47 - 14531: -19,46 - 14532: -17,47 - 14533: -17,48 - 14534: -16,48 - 14535: -16,49 - 14536: -17,49 - 14537: -17,50 - 14538: -16,50 - 14539: -17,51 - 14540: -19,52 - 14541: -19,51 - 14542: -19,50 - 14543: -22,49 - 14544: -22,50 - 14545: -21,50 - 14546: -21,51 - 14547: -21,49 - 14548: -22,48 - 14549: -21,47 - 14550: -21,48 - 14551: -18,57 - 14552: -19,57 - 14553: -20,57 - 14554: -11,57 - 14555: -12,57 - 14556: -13,57 - 14557: -4,57 - 14558: -5,57 - 14559: -6,57 - 14560: 2,57 - 14561: 1,57 - 14562: 0,57 - 14563: -5,64 - 14564: -5,63 - 14565: -5,62 - 14566: -5,61 - 14567: -6,68 - 14568: -5,68 - 14569: -4,68 - 14570: -13,68 - 14571: -11,68 - 14572: -12,68 - 14573: -20,68 - 14574: -19,68 - 14575: -18,68 - 14576: -25,68 - 14577: -26,68 - 14578: -24,68 - 14579: -29,68 - 14580: -30,68 - 14581: -31,68 - 14582: -30,75 - 14583: -30,74 - 14584: -30,73 - 14585: -30,72 - 14586: -30,82 - 14587: -30,81 - 14588: -30,80 - 14589: -30,79 - 14590: -30,86 - 14591: -30,85 - 14592: -30,88 - 14593: -30,95 - 14594: -30,94 - 14595: -30,92 - 14596: -30,93 - 14597: -12,94 - 14598: -12,93 - 14599: -12,92 - 14600: -12,95 - 14601: -12,85 - 14602: -12,86 - 14603: -12,87 - 14604: -12,88 - 14605: -12,79 - 14606: -12,80 - 14607: -12,81 - 14608: -12,82 - 14609: -12,72 - 14610: -12,73 - 14611: -12,74 - 14612: -12,75 - 14613: 2,68 - 14614: 1,68 - 14615: 0,68 - 14616: 7,68 - 14617: 6,68 - 14618: 5,68 - 14619: 6,74 - 14620: 6,72 - 14621: 6,73 - 14622: 6,75 - 14623: 6,81 - 14624: 6,82 - 14625: 6,80 - 14626: 6,79 - 14627: -11,49 - 14628: -10,49 - 14629: -6,49 - 14630: -5,49 - 14631: -19,2 - 14632: -19,4 - 14633: -19,5 - 14634: -12,14 - 14635: -12,15 - 14636: -6,14 - 14637: -7,14 - 14638: -8,14 - 14639: -9,14 - 14640: -10,14 - 14641: 1,16 - 14642: 0,16 - 14643: -2,16 - 14644: -3,16 - 14645: -1,16 - 14646: 8,14 - 14647: 7,14 - 14648: 6,14 - 14649: 4,14 - 14650: 5,14 - 14651: 10,15 - 14652: 10,14 - 14653: 17,18 - 14654: 17,19 - 14655: 17,17 - 14656: 17,16 - 14657: 14,23 - 14658: 13,23 - 14659: 12,23 - 14660: 11,23 - 14661: 1,23 - 14662: 2,23 - 14663: 3,23 - 14664: 4,23 - 14665: 17,9 - 14666: 17,10 - 14667: 17,11 - 14668: 17,12 - 14669: 17,3 - 14670: 17,2 - 14671: 17,4 - 14672: 17,5 - 14673: 24,5 - 14674: 23,5 - 14675: 22,5 - 14676: 21,5 - 14677: 31,5 - 14678: 30,5 - 14679: 29,5 - 14680: 28,5 - 14681: 17,-5 - 14682: 17,-4 - 14683: 17,-3 - 14684: 17,-2 - 14685: 17,-17 - 14686: 17,-16 - 14687: 17,-15 - 14688: 17,-14 - 14689: 17,-13 - 14690: 17,-12 - 14691: 21,-11 - 14692: 22,-11 - 14693: 23,-11 - 14694: 24,-11 - 14695: 28,-11 - 14696: 29,-11 - 14697: 30,-11 - 14698: 47,-20 - 14699: 46,-20 - 14700: 45,-20 - 14701: 44,-20 - 14702: 49,-20 - 14703: 50,-20 - 14704: 51,-20 - 14705: 52,-20 - 14706: 10,-20 - 14707: 11,-20 - 14708: 12,-20 - 14709: 13,-20 - 14710: 3,-20 - 14711: 4,-20 - 14712: 5,-20 - 14713: 6,-20 - 14714: -8,-20 - 14715: -7,-20 - 14716: -6,-20 - 14717: -5,-20 - 14718: -14,-20 - 14719: -13,-20 - 14720: -12,-20 - 14721: -15,-20 - 14722: -12,-26 - 14723: -12,-25 - 14724: -11,-25 - 14725: -11,-26 - 14726: -10,-26 - 14727: -10,-25 - 14728: -9,-25 - 14729: -9,-26 - 14730: -8,-26 - 14731: -8,-25 - 14732: 6,-25 - 14733: 7,-25 - 14734: 8,-25 - 14735: 9,-25 - 14736: 10,-25 - 14737: 10,-26 - 14738: 9,-26 - 14739: 8,-26 - 14740: 7,-26 - 14741: 6,-26 - 14742: -1,-27 - 14743: -1,-24 - 14744: -1,-25 - 14745: -1,-26 - 14746: -1,-34 - 14747: -1,-33 - 14748: -1,-32 - 14749: -1,-31 - 14750: -1,-35 - 14751: -1,-42 - 14752: -1,-40 - 14753: -1,-39 - 14754: -1,-50 - 14755: -1,-49 - 14756: -1,-48 - 14757: -1,-47 - 14758: -1,-46 - 14759: -1,-45 - 14760: -1,-44 - 14761: -1,-55 - 14762: -1,-54 - 14763: -1,-53 - 14764: -1,-52 - 14765: -1,-59 - 14766: -1,-60 - 14767: -1,-61 - 14768: -19,-12 - 14769: -19,-13 - 14770: -19,-14 - 14771: -19,-15 - 14772: -19,-16 - 14773: -19,-17 - 14774: -19,-2 - 14775: -19,-3 - 14776: -19,-4 - 14777: -19,-5 - 14778: -27,5 - 14779: -26,5 - 14780: -25,5 - 14781: -24,5 - 14782: -23,5 - 14783: -31,5 - 14784: -32,5 - 14785: -33,5 - 14786: -38,5 - 14787: -37,5 - 14788: -36,5 - 14789: -19,61 - 14790: -19,62 - 14791: -19,63 - 14792: -19,64 - 14793: 17,-40 - 14794: 17,-41 - 14795: 17,-42 - 14796: 17,-43 - 14797: 17,-45 - 14798: 17,-44 - 14799: 11,-35 - 14800: 12,-35 - 14801: 13,-35 - 14802: 17,-31 - 14803: 17,-32 - 14804: 17,-34 - 14805: 17,-33 - 14806: 27,-35 - 14807: 26,-35 - 14808: 25,-35 - 14809: 23,-35 - 14810: 22,-35 - 14811: 24,-35 - 14812: 32,-35 - 14813: 36,-35 - 14814: 35,-35 - 14815: 34,-35 - 14816: 33,-35 - 14817: 31,-35 - 14818: 27,-43 - 14819: 27,-44 - 14820: 27,-42 - 14821: 27,-41 - 14822: 27,-40 - 14823: 27,-51 - 14824: 27,-50 - 14825: 27,-49 - 14826: 27,-48 - 14827: 27,-47 - 14828: -18,-35 - 14829: -14,-35 - 14830: -15,-35 - 14831: -16,-35 - 14832: -17,-35 - 14833: -29,-35 - 14834: -28,-35 - 14835: -27,-35 - 14836: -26,-35 - 14837: -25,-35 - 14838: -24,-35 - 14839: -23,-26 - 14840: -23,-27 - 14841: -23,-28 - 14842: -23,-29 - 14843: -23,-30 - 14844: -29,-41 - 14845: -29,-40 - 14846: -29,-39 - 14847: -14,-43 - 14848: -14,-42 - 14849: -14,-41 - 14850: -14,-40 - 14851: -14,-39 - 14852: -14,-53 - 14853: -14,-52 - 14854: -14,-51 - 14855: -14,-50 - 14856: -14,-49 - 14857: -14,-48 - 14858: -14,-47 - 14859: 29,-49 - 14860: 29,-48 - 14861: 29,-47 - 14862: 29,-51 - 14863: 29,-52 - 14864: 29,-53 - 14865: 30,-46 - 14866: 31,-46 - 14867: 32,-46 - 14868: 33,-46 - 14869: 34,-46 - 15112: -30,87 - 15314: -1,-41 - 15463: -42,14 - 15464: -42,16 - 15465: -42,17 - 15466: -42,20 - 15467: -42,21 - 15468: -42,22 - 15469: -42,11 - 15470: -42,10 - 15471: -42,9 - 15484: -42,15 - 18820: -15,-9 - 18821: -14,-9 - 18822: -13,-9 - 18823: -12,-9 - 18824: -9,-9 - 18825: -8,-9 - 18826: -7,-9 - 18827: -6,-9 - 18828: -3,-9 - 18829: -2,-9 - 18830: -1,-9 - 18831: 0,-9 - 18832: 1,-9 - 18833: 4,-9 - 18834: 5,-9 - 18835: 6,-9 - 18836: 7,-9 - 18837: 10,-9 - 18838: 11,-9 - 18839: 12,-9 - 18840: 13,-9 - 19433: -14,28 - 19434: -14,27 - 19435: -14,26 - 19436: -13,26 - 19437: -12,26 - 19438: -11,27 - 19439: -11,28 - 19440: -11,29 - 19441: -11,30 - 19442: -12,30 - 19443: -11,31 - 19444: -11,32 - 19445: -11,33 - 19446: -12,34 - 19447: -13,34 - 19448: -14,34 - 19449: -14,33 - 19450: -14,32 - 19451: -14,31 - 19452: -15,31 - 19453: -15,30 - 19454: -15,29 - 19455: -10,30 - 19456: -9,30 - 19457: -9,34 - 19458: -10,34 - 19459: -9,26 - 19460: -10,26 - 19523: -14,29 - 19697: 34,-14 - 19698: 34,-13 - 19699: 34,-12 - 19700: 34,-11 - 19701: 34,-10 - 19702: 35,-9 - 19703: 36,-9 - 19704: 37,-9 - 19705: 39,-9 - 19706: 38,-9 - 19707: 40,-10 - 19708: 40,-11 - 19709: 40,-12 - 19710: 39,-12 - 19711: 38,-12 - 19712: 36,-12 - 19713: 35,-12 - 19714: 37,-12 - 19715: 35,-15 - 19716: 36,-15 - 19717: 37,-15 - 19718: 38,-15 - 19719: 39,-15 - 19720: 40,-14 - 19721: 40,-13 - 20299: -19,3 + 14492: -16,23 + 14493: -15,23 + 14494: -14,23 + 14495: -13,23 + 14496: -6,23 + 14497: -5,23 + 14498: -4,23 + 14499: -3,23 + 14500: -19,16 + 14501: -19,17 + 14502: -19,18 + 14503: -19,19 + 14504: -19,9 + 14505: -19,10 + 14506: -19,11 + 14507: -19,12 + 14508: -22,30 + 14509: -22,31 + 14510: -22,32 + 14511: -22,33 + 14512: -21,34 + 14513: -21,33 + 14514: -21,32 + 14515: -21,30 + 14516: -21,29 + 14517: -21,31 + 14518: -19,27 + 14519: -19,28 + 14520: -19,29 + 14521: -19,32 + 14522: -19,31 + 14523: -19,36 + 14524: -19,35 + 14525: -19,34 + 14526: -23,41 + 14527: -19,48 + 14528: -19,47 + 14529: -19,46 + 14530: -17,47 + 14531: -17,48 + 14532: -16,48 + 14533: -16,49 + 14534: -17,49 + 14535: -17,50 + 14536: -16,50 + 14537: -17,51 + 14538: -19,52 + 14539: -19,51 + 14540: -19,50 + 14541: -22,49 + 14542: -22,50 + 14543: -21,50 + 14544: -21,51 + 14545: -21,49 + 14546: -22,48 + 14547: -21,47 + 14548: -21,48 + 14549: -18,57 + 14550: -19,57 + 14551: -20,57 + 14552: -11,57 + 14553: -12,57 + 14554: -13,57 + 14555: -4,57 + 14556: -5,57 + 14557: -6,57 + 14558: 2,57 + 14559: 1,57 + 14560: 0,57 + 14561: -5,64 + 14562: -5,63 + 14563: -5,62 + 14564: -5,61 + 14565: -6,68 + 14566: -5,68 + 14567: -4,68 + 14568: -13,68 + 14569: -11,68 + 14570: -12,68 + 14571: -20,68 + 14572: -19,68 + 14573: -18,68 + 14574: -25,68 + 14575: -26,68 + 14576: -24,68 + 14577: -29,68 + 14578: -30,68 + 14579: -31,68 + 14580: -30,75 + 14581: -30,74 + 14582: -30,73 + 14583: -30,72 + 14584: -30,82 + 14585: -30,81 + 14586: -30,80 + 14587: -30,79 + 14588: -30,86 + 14589: -30,85 + 14590: -30,88 + 14591: -30,95 + 14592: -30,94 + 14593: -30,92 + 14594: -30,93 + 14595: -12,94 + 14596: -12,93 + 14597: -12,92 + 14598: -12,95 + 14599: -12,85 + 14600: -12,86 + 14601: -12,87 + 14602: -12,88 + 14603: -12,79 + 14604: -12,80 + 14605: -12,81 + 14606: -12,82 + 14607: -12,72 + 14608: -12,73 + 14609: -12,74 + 14610: -12,75 + 14611: 2,68 + 14612: 1,68 + 14613: 0,68 + 14614: 7,68 + 14615: 6,68 + 14616: 5,68 + 14617: 6,74 + 14618: 6,72 + 14619: 6,73 + 14620: 6,75 + 14621: 6,81 + 14622: 6,82 + 14623: 6,80 + 14624: 6,79 + 14625: -11,49 + 14626: -10,49 + 14627: -6,49 + 14628: -5,49 + 14629: -19,2 + 14630: -19,4 + 14631: -19,5 + 14632: -12,14 + 14633: -12,15 + 14634: -6,14 + 14635: -7,14 + 14636: -8,14 + 14637: -9,14 + 14638: -10,14 + 14639: 1,16 + 14640: 0,16 + 14641: -2,16 + 14642: -3,16 + 14643: -1,16 + 14644: 8,14 + 14645: 7,14 + 14646: 6,14 + 14647: 4,14 + 14648: 5,14 + 14649: 10,15 + 14650: 10,14 + 14651: 17,18 + 14652: 17,19 + 14653: 17,17 + 14654: 17,16 + 14655: 14,23 + 14656: 13,23 + 14657: 12,23 + 14658: 11,23 + 14659: 1,23 + 14660: 2,23 + 14661: 3,23 + 14662: 4,23 + 14663: 17,9 + 14664: 17,10 + 14665: 17,11 + 14666: 17,12 + 14667: 17,3 + 14668: 17,2 + 14669: 17,4 + 14670: 17,5 + 14671: 24,5 + 14672: 23,5 + 14673: 22,5 + 14674: 21,5 + 14675: 31,5 + 14676: 30,5 + 14677: 29,5 + 14678: 28,5 + 14679: 17,-5 + 14680: 17,-4 + 14681: 17,-3 + 14682: 17,-2 + 14683: 17,-17 + 14684: 17,-16 + 14685: 17,-15 + 14686: 17,-14 + 14687: 17,-13 + 14688: 17,-12 + 14689: 21,-11 + 14690: 22,-11 + 14691: 23,-11 + 14692: 24,-11 + 14693: 28,-11 + 14694: 29,-11 + 14695: 30,-11 + 14696: 47,-20 + 14697: 46,-20 + 14698: 45,-20 + 14699: 44,-20 + 14700: 49,-20 + 14701: 50,-20 + 14702: 51,-20 + 14703: 52,-20 + 14704: 10,-20 + 14705: 11,-20 + 14706: 12,-20 + 14707: 13,-20 + 14708: 3,-20 + 14709: 4,-20 + 14710: 5,-20 + 14711: 6,-20 + 14712: -8,-20 + 14713: -7,-20 + 14714: -6,-20 + 14715: -5,-20 + 14716: -14,-20 + 14717: -13,-20 + 14718: -12,-20 + 14719: -15,-20 + 14720: -12,-26 + 14721: -12,-25 + 14722: -11,-25 + 14723: -11,-26 + 14724: -10,-26 + 14725: -10,-25 + 14726: -9,-25 + 14727: -9,-26 + 14728: -8,-26 + 14729: -8,-25 + 14730: 6,-25 + 14731: 7,-25 + 14732: 8,-25 + 14733: 9,-25 + 14734: 10,-25 + 14735: 10,-26 + 14736: 9,-26 + 14737: 8,-26 + 14738: 7,-26 + 14739: 6,-26 + 14740: -1,-27 + 14741: -1,-24 + 14742: -1,-25 + 14743: -1,-26 + 14744: -1,-34 + 14745: -1,-33 + 14746: -1,-32 + 14747: -1,-31 + 14748: -1,-35 + 14749: -1,-42 + 14750: -1,-40 + 14751: -1,-39 + 14752: -1,-50 + 14753: -1,-49 + 14754: -1,-48 + 14755: -1,-47 + 14756: -1,-46 + 14757: -1,-45 + 14758: -1,-44 + 14759: -1,-55 + 14760: -1,-54 + 14761: -1,-53 + 14762: -1,-52 + 14763: -1,-59 + 14764: -1,-60 + 14765: -1,-61 + 14766: -19,-12 + 14767: -19,-13 + 14768: -19,-14 + 14769: -19,-15 + 14770: -19,-16 + 14771: -19,-17 + 14772: -19,-2 + 14773: -19,-3 + 14774: -19,-4 + 14775: -19,-5 + 14776: -27,5 + 14777: -26,5 + 14778: -25,5 + 14779: -24,5 + 14780: -23,5 + 14781: -31,5 + 14782: -32,5 + 14783: -33,5 + 14784: -38,5 + 14785: -37,5 + 14786: -36,5 + 14787: -19,61 + 14788: -19,62 + 14789: -19,63 + 14790: -19,64 + 14791: 17,-40 + 14792: 17,-41 + 14793: 17,-42 + 14794: 17,-43 + 14795: 17,-45 + 14796: 17,-44 + 14797: 11,-35 + 14798: 12,-35 + 14799: 13,-35 + 14800: 17,-31 + 14801: 17,-32 + 14802: 17,-34 + 14803: 17,-33 + 14804: 27,-35 + 14805: 26,-35 + 14806: 25,-35 + 14807: 23,-35 + 14808: 22,-35 + 14809: 24,-35 + 14810: 32,-35 + 14811: 36,-35 + 14812: 35,-35 + 14813: 34,-35 + 14814: 33,-35 + 14815: 31,-35 + 14816: 27,-43 + 14817: 27,-44 + 14818: 27,-42 + 14819: 27,-41 + 14820: 27,-40 + 14821: 27,-51 + 14822: 27,-50 + 14823: 27,-49 + 14824: 27,-48 + 14825: 27,-47 + 14826: -18,-35 + 14827: -14,-35 + 14828: -15,-35 + 14829: -16,-35 + 14830: -17,-35 + 14831: -29,-35 + 14832: -28,-35 + 14833: -27,-35 + 14834: -26,-35 + 14835: -25,-35 + 14836: -24,-35 + 14837: -23,-26 + 14838: -23,-27 + 14839: -23,-28 + 14840: -23,-29 + 14841: -23,-30 + 14842: -29,-41 + 14843: -29,-40 + 14844: -29,-39 + 14845: -14,-43 + 14846: -14,-42 + 14847: -14,-41 + 14848: -14,-40 + 14849: -14,-39 + 14850: -14,-53 + 14851: -14,-52 + 14852: -14,-51 + 14853: -14,-50 + 14854: -14,-49 + 14855: -14,-48 + 14856: -14,-47 + 14857: 29,-49 + 14858: 29,-48 + 14859: 29,-47 + 14860: 29,-51 + 14861: 29,-52 + 14862: 29,-53 + 14863: 30,-46 + 14864: 31,-46 + 14865: 32,-46 + 14866: 33,-46 + 14867: 34,-46 + 15110: -30,87 + 15312: -1,-41 + 15461: -42,14 + 15462: -42,16 + 15463: -42,17 + 15464: -42,20 + 15465: -42,21 + 15466: -42,22 + 15467: -42,11 + 15468: -42,10 + 15469: -42,9 + 15482: -42,15 + 18818: -15,-9 + 18819: -14,-9 + 18820: -13,-9 + 18821: -12,-9 + 18822: -9,-9 + 18823: -8,-9 + 18824: -7,-9 + 18825: -6,-9 + 18826: -3,-9 + 18827: -2,-9 + 18828: -1,-9 + 18829: 0,-9 + 18830: 1,-9 + 18831: 4,-9 + 18832: 5,-9 + 18833: 6,-9 + 18834: 7,-9 + 18835: 10,-9 + 18836: 11,-9 + 18837: 12,-9 + 18838: 13,-9 + 19431: -14,28 + 19432: -14,27 + 19433: -14,26 + 19434: -13,26 + 19435: -12,26 + 19436: -11,27 + 19437: -11,28 + 19438: -11,29 + 19439: -11,30 + 19440: -12,30 + 19441: -11,31 + 19442: -11,32 + 19443: -11,33 + 19444: -12,34 + 19445: -13,34 + 19446: -14,34 + 19447: -14,33 + 19448: -14,32 + 19449: -14,31 + 19450: -15,31 + 19451: -15,30 + 19452: -15,29 + 19453: -10,30 + 19454: -9,30 + 19455: -9,34 + 19456: -10,34 + 19457: -9,26 + 19458: -10,26 + 19521: -14,29 + 19695: 34,-14 + 19696: 34,-13 + 19697: 34,-12 + 19698: 34,-11 + 19699: 34,-10 + 19700: 35,-9 + 19701: 36,-9 + 19702: 37,-9 + 19703: 39,-9 + 19704: 38,-9 + 19705: 40,-10 + 19706: 40,-11 + 19707: 40,-12 + 19708: 39,-12 + 19709: 38,-12 + 19710: 36,-12 + 19711: 35,-12 + 19712: 37,-12 + 19713: 35,-15 + 19714: 36,-15 + 19715: 37,-15 + 19716: 38,-15 + 19717: 39,-15 + 19718: 40,-14 + 19719: 40,-13 + 20297: -19,3 - node: angle: 3.141592653589793 rad color: '#4A0000C0' id: Dirt decals: - 13744: -34,-79 - 13745: -35,-79 - 13746: -35,-78 - 13747: -35,-77 - 13748: -34,-77 - 13749: -33,-77 - 13750: -32,-77 - 13751: -31,-77 - 13752: -31,-78 - 13753: -31,-79 - 13754: -32,-80 - 13755: -30,-79 - 13756: -36,-79 - 13757: -36,-78 - 13758: -33,-76 - 13759: -34,-76 - 13760: -35,-76 - 13761: -32,-76 - 13762: -33,-79 - 13763: -34,-80 - 13764: -35,-80 - 13765: -37,-80 - 13766: -37,-77 - 13767: -37,-76 - 13768: -37,-73 - 13769: -29,-73 - 13770: -29,-74 - 13771: -29,-75 - 13772: -33,-73 - 13773: -32,-73 - 13774: -30,-75 + 13742: -34,-79 + 13743: -35,-79 + 13744: -35,-78 + 13745: -35,-77 + 13746: -34,-77 + 13747: -33,-77 + 13748: -32,-77 + 13749: -31,-77 + 13750: -31,-78 + 13751: -31,-79 + 13752: -32,-80 + 13753: -30,-79 + 13754: -36,-79 + 13755: -36,-78 + 13756: -33,-76 + 13757: -34,-76 + 13758: -35,-76 + 13759: -32,-76 + 13760: -33,-79 + 13761: -34,-80 + 13762: -35,-80 + 13763: -37,-80 + 13764: -37,-77 + 13765: -37,-76 + 13766: -37,-73 + 13767: -29,-73 + 13768: -29,-74 + 13769: -29,-75 + 13770: -33,-73 + 13771: -32,-73 + 13772: -30,-75 - node: angle: 3.141592653589793 rad color: '#4A0000FF' id: Dirt decals: - 13741: -34,-78 - 13742: -32,-78 - 13743: -32,-79 + 13739: -34,-78 + 13740: -32,-78 + 13741: -32,-79 - node: color: '#DABC8B7F' id: Dirt decals: - 13512: -40,-68 - 13513: -38,-66 - 13514: -39,-66 - 13515: -41,-66 - 13516: -41,-67 - 13517: -40,-66 - 13518: -41,-65 - 13519: -41,-63 + 13510: -40,-68 + 13511: -38,-66 + 13512: -39,-66 + 13513: -41,-66 + 13514: -41,-67 + 13515: -40,-66 + 13516: -41,-65 + 13517: -41,-63 - node: color: '#DABC8B95' id: Dirt decals: - 13510: -37,-66 - 13511: -37,-67 + 13508: -37,-66 + 13509: -37,-67 - node: color: '#DABC8BA7' id: Dirt decals: - 13520: -39,-65 - 13521: -40,-65 - 13522: -37,-65 - 13523: -38,-65 - 13524: -38,-67 - 13525: -34,-66 - 13526: -34,-65 - 13527: -33,-66 - 13528: -34,-67 - 13529: -34,-68 - 13530: -30,-66 - 13531: -31,-66 - 13532: -30,-65 - 13533: -31,-65 - 13534: -32,-66 - 13535: -32,-66 - 13536: -32,-65 - 13537: -33,-68 - 13538: -33,-67 - 13539: -32,-67 - 13540: -32,-68 - 13541: -31,-68 - 13542: -31,-67 + 13518: -39,-65 + 13519: -40,-65 + 13520: -37,-65 + 13521: -38,-65 + 13522: -38,-67 + 13523: -34,-66 + 13524: -34,-65 + 13525: -33,-66 + 13526: -34,-67 + 13527: -34,-68 + 13528: -30,-66 + 13529: -31,-66 + 13530: -30,-65 + 13531: -31,-65 + 13532: -32,-66 + 13533: -32,-66 + 13534: -32,-65 + 13535: -33,-68 + 13536: -33,-67 + 13537: -32,-67 + 13538: -32,-68 + 13539: -31,-68 + 13540: -31,-67 - node: color: '#DABC8BAE' id: Dirt decals: - 13509: -37,-65 + 13507: -37,-65 - node: color: '#DABC8BD0' id: Dirt decals: - 13505: -37,-68 - 13506: -36,-67 - 13507: -36,-68 - 13508: -36,-66 + 13503: -37,-68 + 13504: -36,-67 + 13505: -36,-68 + 13506: -36,-66 - node: color: '#DC5F31FF' id: Dirt decals: - 18734: 60,-40 - 18735: 59,-40 - 18736: 59,-41 - 18737: 58,-41 - 18738: 60,-41 - 18739: 61,-41 - 18740: 62,-40 - 18741: 62,-41 - 18742: 58,-42 - 18743: 59,-42 - 18744: 60,-42 - 18745: 63,-40 - 18746: 25,-66 - 18747: 26,-67 - 18748: 25,-69 - 18749: 27,-68 - 18750: 27,-67 - 18751: -44,-66 - 18752: -43,-65 - 18753: -44,-64 - 18754: -45,-64 - 18755: -45,-63 - 18756: -46,-63 - 18757: -44,-66 - 18758: -46,-68 - 18759: -46,-69 - 18760: -45,-68 - 18761: -46,-67 - 18762: -44,-65 + 18732: 60,-40 + 18733: 59,-40 + 18734: 59,-41 + 18735: 58,-41 + 18736: 60,-41 + 18737: 61,-41 + 18738: 62,-40 + 18739: 62,-41 + 18740: 58,-42 + 18741: 59,-42 + 18742: 60,-42 + 18743: 63,-40 + 18744: 25,-66 + 18745: 26,-67 + 18746: 25,-69 + 18747: 27,-68 + 18748: 27,-67 + 18749: -44,-66 + 18750: -43,-65 + 18751: -44,-64 + 18752: -45,-64 + 18753: -45,-63 + 18754: -46,-63 + 18755: -44,-66 + 18756: -46,-68 + 18757: -46,-69 + 18758: -45,-68 + 18759: -46,-67 + 18760: -44,-65 - node: color: '#FFFFFF2B' id: Dirt decals: - 16340: -67,-40 - 16341: -68,-40 - 16342: -68,-41 - 16343: -69,-40 - 16344: -66,-40 - 16345: -65,-40 - 16346: -65,-41 - 16347: -64,-41 - 16348: -63,-41 - 16349: -63,-41 - 16350: -63,-42 - 16351: -63,-44 - 16352: -64,-44 - 16353: -65,-44 - 16354: -66,-44 - 16355: -67,-44 - 16356: -68,-46 - 16357: -69,-44 + 16338: -67,-40 + 16339: -68,-40 + 16340: -68,-41 + 16341: -69,-40 + 16342: -66,-40 + 16343: -65,-40 + 16344: -65,-41 + 16345: -64,-41 + 16346: -63,-41 + 16347: -63,-41 + 16348: -63,-42 + 16349: -63,-44 + 16350: -64,-44 + 16351: -65,-44 + 16352: -66,-44 + 16353: -67,-44 + 16354: -68,-46 + 16355: -69,-44 - node: color: '#FFFFFF4D' id: Dirt decals: - 18453: -59,-46 - 18454: -60,-46 - 18455: -60,-45 - 18456: -60,-44 - 18457: -59,-44 - 18458: -59,-45 - 18459: -58,-45 - 18460: -58,-44 - 18461: -60,-43 - 18462: -60,-43 + 18451: -59,-46 + 18452: -60,-46 + 18453: -60,-45 + 18454: -60,-44 + 18455: -59,-44 + 18456: -59,-45 + 18457: -58,-45 + 18458: -58,-44 + 18459: -60,-43 + 18460: -60,-43 - node: color: '#FFFFFF50' id: Dirt decals: - 16055: 91,-1 - 16056: 92,-1 - 16057: 93,-1 - 16058: 92,0 - 16059: 91,7 - 16060: 91,6 - 16061: 92,7 - 16062: 96,5 - 16063: 97,5 - 16064: 97,4 - 16065: 97,3 - 16066: 96,4 - 16113: 83,4 - 16114: 84,4 - 16115: 85,5 - 16116: 85,4 - 16117: 86,4 - 16118: 86,5 - 16119: 87,6 - 16120: 87,5 - 16121: 89,9 - 16122: 90,9 + 16053: 91,-1 + 16054: 92,-1 + 16055: 93,-1 + 16056: 92,0 + 16057: 91,7 + 16058: 91,6 + 16059: 92,7 + 16060: 96,5 + 16061: 97,5 + 16062: 97,4 + 16063: 97,3 + 16064: 96,4 + 16111: 83,4 + 16112: 84,4 + 16113: 85,5 + 16114: 85,4 + 16115: 86,4 + 16116: 86,5 + 16117: 87,6 + 16118: 87,5 + 16119: 89,9 + 16120: 90,9 + 16121: 91,9 + 16122: 92,10 16123: 91,9 - 16124: 92,10 - 16125: 91,9 - node: color: '#FFFFFF60' id: Dirt decals: - 16686: -41,-11 - 16687: -40,-11 - 16688: -39,-10 - 16689: -39,-10 - 16690: -40,-10 - 16691: -40,-9 - 16692: -41,-9 - 16693: -41,-10 - 16694: -39,-9 - 16695: -39,-11 - 16696: -38,-11 + 16684: -41,-11 + 16685: -40,-11 + 16686: -39,-10 + 16687: -39,-10 + 16688: -40,-10 + 16689: -40,-9 + 16690: -41,-9 + 16691: -41,-10 + 16692: -39,-9 + 16693: -39,-11 + 16694: -38,-11 - node: color: '#FFFFFF66' id: Dirt decals: - 16205: -62,-43 - 16206: -62,-42 - 16207: -62,-44 - 16208: -63,-43 - 16209: -72,-42 - 16210: -71,-42 - 16211: -70,-42 - 16212: -71,-41 - 16213: -72,-41 - 16214: -72,-40 - 16215: -71,-40 - 16216: -70,-40 - 16217: -70,-43 - 16218: -70,-44 - 16219: -70,-45 - 16220: -69,-45 - 16221: -68,-45 - 16222: -68,-46 - 16223: -69,-46 - 16224: -66,-42 - 16225: -66,-43 - 16226: -65,-43 - 16227: -66,-41 - 16228: -65,-42 - 16229: -68,-43 - 16230: -67,-43 - 16231: -68,-42 - 16232: -67,-41 - 16233: -68,-44 - 16234: -64,-42 - 16235: -64,-43 - 16236: -63,-43 + 16203: -62,-43 + 16204: -62,-42 + 16205: -62,-44 + 16206: -63,-43 + 16207: -72,-42 + 16208: -71,-42 + 16209: -70,-42 + 16210: -71,-41 + 16211: -72,-41 + 16212: -72,-40 + 16213: -71,-40 + 16214: -70,-40 + 16215: -70,-43 + 16216: -70,-44 + 16217: -70,-45 + 16218: -69,-45 + 16219: -68,-45 + 16220: -68,-46 + 16221: -69,-46 + 16222: -66,-42 + 16223: -66,-43 + 16224: -65,-43 + 16225: -66,-41 + 16226: -65,-42 + 16227: -68,-43 + 16228: -67,-43 + 16229: -68,-42 + 16230: -67,-41 + 16231: -68,-44 + 16232: -64,-42 + 16233: -64,-43 + 16234: -63,-43 - node: color: '#FFFFFF6C' id: Dirt decals: - 18872: 39,-53 - 18873: 40,-53 - 18874: 39,-52 - 18875: 40,-52 - 18876: 40,-52 - 18877: 40,-51 - 18878: 39,-51 - 18879: 39,-50 - 18880: 41,-50 - 18881: 42,-50 - 18882: 42,-51 - 18883: 41,-51 - 18884: 41,-52 - 18885: 41,-53 - 18886: 42,-53 - 18887: 42,-54 - 18888: 42,-54 - 18889: 41,-55 - 18890: 41,-56 - 18891: 42,-56 - 18892: 39,-55 - 18893: 39,-54 - 18894: 41,-54 - 18895: 41,-54 - 18896: 44,-50 - 18897: 45,-50 - 18898: 45,-51 - 18899: 44,-51 - 18900: 44,-53 - 18901: 45,-54 - 18902: 45,-55 - 18903: 45,-55 - 18904: 44,-54 - 18905: 44,-53 - 18906: 45,-53 - 18907: 43,-50 - 18908: 43,-51 - 18909: 43,-52 - 18910: 43,-54 - 18911: 43,-54 - 18912: 43,-56 - 18913: 46,-55 - 18914: 46,-56 - 18915: 46,-52 - 18916: 50,-50 - 18917: 50,-51 - 18918: 50,-52 - 18919: 49,-53 - 18920: 49,-53 - 18921: 51,-53 - 18922: 51,-52 - 18923: 50,-53 - 18924: 50,-55 - 18925: 49,-55 - 18926: 49,-56 - 18927: 50,-56 - 18928: 51,-56 - 18929: 51,-54 - 18930: 49,-54 - 18931: 52,-56 - 18932: 52,-55 - 18933: 52,-54 - 18934: 52,-53 - 18935: 52,-52 - 18936: 52,-51 - 18937: 52,-51 - 18938: 52,-50 - 18939: 53,-51 - 18940: 53,-53 - 18941: 53,-54 - 18942: 53,-55 - 18943: 53,-56 + 18870: 39,-53 + 18871: 40,-53 + 18872: 39,-52 + 18873: 40,-52 + 18874: 40,-52 + 18875: 40,-51 + 18876: 39,-51 + 18877: 39,-50 + 18878: 41,-50 + 18879: 42,-50 + 18880: 42,-51 + 18881: 41,-51 + 18882: 41,-52 + 18883: 41,-53 + 18884: 42,-53 + 18885: 42,-54 + 18886: 42,-54 + 18887: 41,-55 + 18888: 41,-56 + 18889: 42,-56 + 18890: 39,-55 + 18891: 39,-54 + 18892: 41,-54 + 18893: 41,-54 + 18894: 44,-50 + 18895: 45,-50 + 18896: 45,-51 + 18897: 44,-51 + 18898: 44,-53 + 18899: 45,-54 + 18900: 45,-55 + 18901: 45,-55 + 18902: 44,-54 + 18903: 44,-53 + 18904: 45,-53 + 18905: 43,-50 + 18906: 43,-51 + 18907: 43,-52 + 18908: 43,-54 + 18909: 43,-54 + 18910: 43,-56 + 18911: 46,-55 + 18912: 46,-56 + 18913: 46,-52 + 18914: 50,-50 + 18915: 50,-51 + 18916: 50,-52 + 18917: 49,-53 + 18918: 49,-53 + 18919: 51,-53 + 18920: 51,-52 + 18921: 50,-53 + 18922: 50,-55 + 18923: 49,-55 + 18924: 49,-56 + 18925: 50,-56 + 18926: 51,-56 + 18927: 51,-54 + 18928: 49,-54 + 18929: 52,-56 + 18930: 52,-55 + 18931: 52,-54 + 18932: 52,-53 + 18933: 52,-52 + 18934: 52,-51 + 18935: 52,-51 + 18936: 52,-50 + 18937: 53,-51 + 18938: 53,-53 + 18939: 53,-54 + 18940: 53,-55 + 18941: 53,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: Dirt decals: - 13837: -34,-63 - 13838: -32,-63 - 13839: -33,-62 - 13840: -33,-61 - 13841: -33,-60 - 13842: -34,-61 - 13843: -31,-61 - 13844: -31,-60 + 13835: -34,-63 + 13836: -32,-63 + 13837: -33,-62 + 13838: -33,-61 + 13839: -33,-60 + 13840: -34,-61 + 13841: -31,-61 + 13842: -31,-60 - node: color: '#FFFFFFFF' id: Dirt decals: 649: 38,-21 880: -32,49 - 3920: 18,70 - 3921: 23,66 - 3961: 15,60 - 3964: 20,61 - 3991: -34,59 - 3992: -35,59 - 3993: -34,60 - 3994: -38,60 - 3995: -38,59 - 4020: -32,62 - 4023: -24,65 - 11136: 32,-68 - 11137: 41,-67 - 11138: 40,-67 - 11139: 43,-64 - 11140: 45,-62 - 11141: 41,-60 - 11142: 41,-61 - 11143: 42,-75 - 11144: 35,-71 - 11145: 36,-71 - 11146: 35,-70 - 11147: 34,-65 - 11148: 31,-61 - 11149: 32,-61 - 11150: 32,-61 - 11172: 27,-55 - 13145: 43,-33 - 13203: 39,-53 - 13312: 52,-37 - 13321: 52,-37 - 13356: 56,-36 - 13446: -33,-65 - 13543: -37,-64 - 13546: -41,-64 - 19870: -30,-23 - 19871: -29,-23 - 19872: -28,-23 - 19873: -29,-24 - 19874: -30,-24 - 20008: -71,-38 - 20009: -72,-37 - 20010: -72,-35 - 20011: -72,-34 - 20012: -71,-34 - 20013: -67,-34 - 20014: -65,-34 - 20015: -68,-34 - 20016: -62,-37 - 20017: -68,-38 - 20018: -69,-38 - 20076: 33,39 - 20077: 34,39 - 20078: 34,38 - 20079: 36,39 - 21546: -60,-25 - 21547: -60,-25 - 21548: -63,-23 - 21549: -64,-23 - 21550: -64,-23 - 21551: -63,-23 - 21552: -62,-27 - 21553: -62,-27 - 21554: -62,-27 - 21555: -62,-30 + 3918: 18,70 + 3919: 23,66 + 3959: 15,60 + 3962: 20,61 + 3989: -34,59 + 3990: -35,59 + 3991: -34,60 + 3992: -38,60 + 3993: -38,59 + 4018: -32,62 + 4021: -24,65 + 11134: 32,-68 + 11135: 41,-67 + 11136: 40,-67 + 11137: 43,-64 + 11138: 45,-62 + 11139: 41,-60 + 11140: 41,-61 + 11141: 42,-75 + 11142: 35,-71 + 11143: 36,-71 + 11144: 35,-70 + 11145: 34,-65 + 11146: 31,-61 + 11147: 32,-61 + 11148: 32,-61 + 11170: 27,-55 + 13143: 43,-33 + 13201: 39,-53 + 13310: 52,-37 + 13319: 52,-37 + 13354: 56,-36 + 13444: -33,-65 + 13541: -37,-64 + 13544: -41,-64 + 19868: -30,-23 + 19869: -29,-23 + 19870: -28,-23 + 19871: -29,-24 + 19872: -30,-24 + 20006: -71,-38 + 20007: -72,-37 + 20008: -72,-35 + 20009: -72,-34 + 20010: -71,-34 + 20011: -67,-34 + 20012: -65,-34 + 20013: -68,-34 + 20014: -62,-37 + 20015: -68,-38 + 20016: -69,-38 + 20074: 33,39 + 20075: 34,39 + 20076: 34,38 + 20077: 36,39 + 21515: -60,-25 + 21516: -60,-25 + 21517: -63,-23 + 21518: -64,-23 + 21519: -64,-23 + 21520: -63,-23 + 21521: -62,-27 + 21522: -62,-27 + 21523: -62,-27 + 21524: -62,-30 - node: cleanable: True color: '#FFFFFFFF' @@ -18694,703 +18689,703 @@ entities: 1658: -58,-42 1659: -58,-41 1660: -60,-42 - 1841: -72,-28 - 1842: -69,-25 - 1843: -70,-28 - 1844: -70,-29 - 1845: -70,-25 - 1846: -69,-23 - 1847: -69,-24 - 1933: 34,-20 - 1934: 33,-20 - 1935: 33,-19 - 1936: 36,-21 - 1937: 35,-23 - 1938: 37,-23 - 1939: 37,-24 - 1940: 41,-24 - 1941: 40,-24 - 1942: 40,-27 - 1943: 41,-28 - 1944: 43,-29 - 1945: 26,-20 - 1946: 24,-21 + 1839: -72,-28 + 1840: -69,-25 + 1841: -70,-28 + 1842: -70,-29 + 1843: -70,-25 + 1844: -69,-23 + 1845: -69,-24 + 1931: 34,-20 + 1932: 33,-20 + 1933: 33,-19 + 1934: 36,-21 + 1935: 35,-23 + 1936: 37,-23 + 1937: 37,-24 + 1938: 41,-24 + 1939: 40,-24 + 1940: 40,-27 + 1941: 41,-28 + 1942: 43,-29 + 1943: 26,-20 + 1944: 24,-21 + 1945: 23,-23 + 1946: 24,-23 1947: 23,-23 - 1948: 24,-23 - 1949: 23,-23 - 1950: 22,-21 - 1951: 21,-22 - 1952: 20,-21 - 1953: 21,-21 - 1954: 22,-18 - 1955: 52,-29 - 1956: 52,-29 - 1957: 52,-31 - 1958: 52,-34 - 1959: 51,-39 - 1960: 52,-42 - 1961: 52,-45 - 1962: 51,-48 - 1963: 51,-48 - 1964: 47,-48 - 1965: 44,-48 - 1966: 41,-48 - 1967: 37,-47 - 1968: 36,-49 - 1969: 37,-56 - 1970: 34,-56 - 1971: 32,-55 - 1972: 30,-55 - 4040: 11,79 - 16380: -71,-35 - 16381: -67,-36 - 16382: -71,-37 - 16383: -66,-35 - 16384: -63,-37 - 16385: -63,-34 - 16386: -63,-34 - 16387: -69,-37 - 16388: -69,-35 - 16389: -70,-36 - 16390: -66,-37 - 16391: -65,-37 - 16392: -65,-36 - 16393: -65,-35 - 16394: -69,-36 - 16395: -69,-36 - 16397: -63,-36 - 16403: -68,-35 - 16404: -65,-37 - 16405: -63,-36 + 1948: 22,-21 + 1949: 21,-22 + 1950: 20,-21 + 1951: 21,-21 + 1952: 22,-18 + 1953: 52,-29 + 1954: 52,-29 + 1955: 52,-31 + 1956: 52,-34 + 1957: 51,-39 + 1958: 52,-42 + 1959: 52,-45 + 1960: 51,-48 + 1961: 51,-48 + 1962: 47,-48 + 1963: 44,-48 + 1964: 41,-48 + 1965: 37,-47 + 1966: 36,-49 + 1967: 37,-56 + 1968: 34,-56 + 1969: 32,-55 + 1970: 30,-55 + 4038: 11,79 + 16378: -71,-35 + 16379: -67,-36 + 16380: -71,-37 + 16381: -66,-35 + 16382: -63,-37 + 16383: -63,-34 + 16384: -63,-34 + 16385: -69,-37 + 16386: -69,-35 + 16387: -70,-36 + 16388: -66,-37 + 16389: -65,-37 + 16390: -65,-36 + 16391: -65,-35 + 16392: -69,-36 + 16393: -69,-36 + 16395: -63,-36 + 16401: -68,-35 + 16402: -65,-37 + 16403: -63,-36 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 13696: -33,-72 - 13834: -30,-61 + 13694: -33,-72 + 13832: -30,-61 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavy decals: - 13845: -32,-60 - 13846: -32,-61 - 13847: -34,-60 - 13848: -32,-62 - 13849: -31,-62 - 13875: -39,-56 - 13876: -39,-55 - 13878: -38,-56 - 13879: -38,-55 - 13880: -38,-55 - 13882: -37,-55 - 13883: -37,-56 + 13843: -32,-60 + 13844: -32,-61 + 13845: -34,-60 + 13846: -32,-62 + 13847: -31,-62 + 13873: -39,-56 + 13874: -39,-55 + 13876: -38,-56 + 13877: -38,-55 + 13878: -38,-55 + 13880: -37,-55 + 13881: -37,-56 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3869: 23,71 - 3871: 17,69 - 3901: 18,67 - 3902: 20,66 - 3903: 19,66 - 3904: 23,67 - 3915: 23,67 - 3916: 22,67 - 3956: 21,61 - 3957: 19,63 - 3962: 12,59 - 3963: 18,62 - 3996: -38,62 - 3997: -39,62 - 3998: -42,61 - 4002: -37,60 - 4003: -36,59 - 4004: -36,60 - 4021: -30,62 - 4022: -28,60 - 4024: -24,63 - 11002: 35,-61 - 11003: 34,-60 - 11004: 31,-68 - 11005: 30,-70 - 11006: 29,-70 - 11007: 27,-67 - 11008: 27,-66 - 11009: 29,-66 - 11010: 33,-66 - 11011: 33,-66 - 11012: 40,-71 - 11013: 40,-71 - 11014: 38,-72 - 11015: 38,-71 - 11016: 39,-70 - 11017: 40,-70 - 11018: 41,-73 - 11019: 41,-68 - 11020: 41,-68 - 11021: 41,-66 - 11022: 39,-66 - 11023: 38,-67 - 11024: 35,-72 - 11025: 34,-71 - 11026: 35,-67 - 11027: 37,-66 - 11028: 35,-65 - 11029: 34,-63 - 11030: 35,-61 - 11031: 38,-62 - 11032: 40,-63 - 11033: 40,-61 - 11034: 40,-60 - 11035: 42,-62 - 11036: 43,-63 - 11170: 27,-56 - 11171: 27,-56 - 11176: 26,-55 - 11177: 26,-55 - 11178: 28,-55 - 11179: 28,-58 - 11180: 40,-68 - 11181: 38,-68 - 11277: -60,-39 - 11278: -60,-42 - 11279: -60,-41 - 11280: -60,-41 - 12881: -46,-23 - 12882: -47,-23 - 12883: -47,-22 - 12884: -46,-22 - 12885: -45,-22 - 12886: -45,-23 - 12963: -47,-25 - 12964: -46,-25 - 12965: -45,-26 - 12966: -45,-27 - 12967: -46,-29 - 12968: -45,-29 - 12969: -46,-30 - 12970: -46,-30 - 12971: -45,-31 - 12972: -46,-31 - 12973: -46,-28 - 12974: -46,-28 - 12975: -42,-29 - 12976: -42,-29 - 12977: -41,-27 - 12978: -41,-27 - 12979: -40,-28 - 12980: -41,-29 - 12981: -42,-27 - 12982: -42,-26 - 12983: -41,-28 - 12984: -41,-29 - 12985: -40,-27 - 12986: -39,-27 - 12987: -38,-26 - 12988: -37,-27 - 12989: -37,-28 - 12990: -39,-29 - 12991: -39,-29 - 12992: -36,-29 - 12993: -36,-28 - 12994: -37,-27 - 12995: -38,-27 - 12996: -35,-29 - 12997: -34,-29 - 12998: -35,-27 - 12999: -35,-27 - 13027: -40,-24 - 13028: -39,-23 - 13029: -39,-22 - 13030: -38,-23 - 13031: -38,-24 - 13032: -37,-23 - 13033: -37,-22 - 13034: -34,-22 - 13035: -34,-24 - 13036: -33,-24 - 13037: -33,-23 - 13038: -43,-23 - 13039: -43,-22 - 13040: -42,-22 - 13041: -41,-23 - 13042: -43,-27 - 13043: -42,-28 - 13044: -42,-29 - 13045: -43,-28 - 13046: -40,-27 - 13047: -39,-29 - 13048: -37,-29 - 13049: -36,-27 - 13050: -35,-28 - 13051: -38,-30 - 13052: -38,-30 - 13053: -34,-28 - 13054: -34,-28 - 13055: -34,-30 - 13056: -35,-29 - 13057: -37,-27 - 13058: -38,-26 - 13059: -40,-29 - 13060: -42,-30 - 13061: -42,-31 - 13062: -42,-32 - 13063: -43,-33 - 13064: -40,-33 - 13065: -42,-34 - 13066: -37,-32 - 13067: -37,-32 - 13068: -39,-34 - 13069: -39,-32 - 13070: -38,-34 - 13071: -37,-34 - 13072: -34,-33 - 13073: -34,-32 - 13074: -33,-33 - 13075: -35,-34 - 13076: -33,-34 - 13077: -35,-32 - 13078: -34,-33 - 13102: -29,-27 - 13103: -30,-27 - 13104: -30,-26 - 13105: -27,-26 - 13106: -27,-27 - 13107: -27,-30 - 13108: -26,-31 - 13109: -28,-31 - 13110: -30,-31 - 13111: -30,-29 - 13112: -31,-28 - 13113: -31,-29 - 13114: -31,-31 - 13115: -28,-31 - 13116: -27,-31 - 13117: -27,-32 - 13118: -30,-32 - 13119: -30,-32 - 13120: -30,-31 - 13121: -29,-31 - 13122: -29,-31 - 13123: -30,-30 - 13124: -30,-29 - 13125: -30,-27 - 13146: 43,-34 - 13147: 44,-33 - 13148: 42,-31 - 13149: 44,-32 - 13150: 44,-31 - 13151: 45,-32 - 13152: 45,-33 - 13153: 46,-32 - 13154: 47,-31 + 3867: 23,71 + 3869: 17,69 + 3899: 18,67 + 3900: 20,66 + 3901: 19,66 + 3902: 23,67 + 3913: 23,67 + 3914: 22,67 + 3954: 21,61 + 3955: 19,63 + 3960: 12,59 + 3961: 18,62 + 3994: -38,62 + 3995: -39,62 + 3996: -42,61 + 4000: -37,60 + 4001: -36,59 + 4002: -36,60 + 4019: -30,62 + 4020: -28,60 + 4022: -24,63 + 11000: 35,-61 + 11001: 34,-60 + 11002: 31,-68 + 11003: 30,-70 + 11004: 29,-70 + 11005: 27,-67 + 11006: 27,-66 + 11007: 29,-66 + 11008: 33,-66 + 11009: 33,-66 + 11010: 40,-71 + 11011: 40,-71 + 11012: 38,-72 + 11013: 38,-71 + 11014: 39,-70 + 11015: 40,-70 + 11016: 41,-73 + 11017: 41,-68 + 11018: 41,-68 + 11019: 41,-66 + 11020: 39,-66 + 11021: 38,-67 + 11022: 35,-72 + 11023: 34,-71 + 11024: 35,-67 + 11025: 37,-66 + 11026: 35,-65 + 11027: 34,-63 + 11028: 35,-61 + 11029: 38,-62 + 11030: 40,-63 + 11031: 40,-61 + 11032: 40,-60 + 11033: 42,-62 + 11034: 43,-63 + 11168: 27,-56 + 11169: 27,-56 + 11174: 26,-55 + 11175: 26,-55 + 11176: 28,-55 + 11177: 28,-58 + 11178: 40,-68 + 11179: 38,-68 + 11275: -60,-39 + 11276: -60,-42 + 11277: -60,-41 + 11278: -60,-41 + 12879: -46,-23 + 12880: -47,-23 + 12881: -47,-22 + 12882: -46,-22 + 12883: -45,-22 + 12884: -45,-23 + 12961: -47,-25 + 12962: -46,-25 + 12963: -45,-26 + 12964: -45,-27 + 12965: -46,-29 + 12966: -45,-29 + 12967: -46,-30 + 12968: -46,-30 + 12969: -45,-31 + 12970: -46,-31 + 12971: -46,-28 + 12972: -46,-28 + 12973: -42,-29 + 12974: -42,-29 + 12975: -41,-27 + 12976: -41,-27 + 12977: -40,-28 + 12978: -41,-29 + 12979: -42,-27 + 12980: -42,-26 + 12981: -41,-28 + 12982: -41,-29 + 12983: -40,-27 + 12984: -39,-27 + 12985: -38,-26 + 12986: -37,-27 + 12987: -37,-28 + 12988: -39,-29 + 12989: -39,-29 + 12990: -36,-29 + 12991: -36,-28 + 12992: -37,-27 + 12993: -38,-27 + 12994: -35,-29 + 12995: -34,-29 + 12996: -35,-27 + 12997: -35,-27 + 13025: -40,-24 + 13026: -39,-23 + 13027: -39,-22 + 13028: -38,-23 + 13029: -38,-24 + 13030: -37,-23 + 13031: -37,-22 + 13032: -34,-22 + 13033: -34,-24 + 13034: -33,-24 + 13035: -33,-23 + 13036: -43,-23 + 13037: -43,-22 + 13038: -42,-22 + 13039: -41,-23 + 13040: -43,-27 + 13041: -42,-28 + 13042: -42,-29 + 13043: -43,-28 + 13044: -40,-27 + 13045: -39,-29 + 13046: -37,-29 + 13047: -36,-27 + 13048: -35,-28 + 13049: -38,-30 + 13050: -38,-30 + 13051: -34,-28 + 13052: -34,-28 + 13053: -34,-30 + 13054: -35,-29 + 13055: -37,-27 + 13056: -38,-26 + 13057: -40,-29 + 13058: -42,-30 + 13059: -42,-31 + 13060: -42,-32 + 13061: -43,-33 + 13062: -40,-33 + 13063: -42,-34 + 13064: -37,-32 + 13065: -37,-32 + 13066: -39,-34 + 13067: -39,-32 + 13068: -38,-34 + 13069: -37,-34 + 13070: -34,-33 + 13071: -34,-32 + 13072: -33,-33 + 13073: -35,-34 + 13074: -33,-34 + 13075: -35,-32 + 13076: -34,-33 + 13100: -29,-27 + 13101: -30,-27 + 13102: -30,-26 + 13103: -27,-26 + 13104: -27,-27 + 13105: -27,-30 + 13106: -26,-31 + 13107: -28,-31 + 13108: -30,-31 + 13109: -30,-29 + 13110: -31,-28 + 13111: -31,-29 + 13112: -31,-31 + 13113: -28,-31 + 13114: -27,-31 + 13115: -27,-32 + 13116: -30,-32 + 13117: -30,-32 + 13118: -30,-31 + 13119: -29,-31 + 13120: -29,-31 + 13121: -30,-30 + 13122: -30,-29 + 13123: -30,-27 + 13144: 43,-34 + 13145: 44,-33 + 13146: 42,-31 + 13147: 44,-32 + 13148: 44,-31 + 13149: 45,-32 + 13150: 45,-33 + 13151: 46,-32 + 13152: 47,-31 + 13153: 48,-32 + 13154: 48,-33 13155: 48,-32 - 13156: 48,-33 - 13157: 48,-32 - 13158: 47,-34 - 13159: 46,-35 - 13160: 46,-35 - 13161: 48,-35 - 13162: 48,-36 - 13163: 48,-36 - 13164: 47,-36 - 13165: 47,-36 - 13166: 44,-35 - 13167: 45,-33 - 13168: 46,-33 - 13169: 48,-33 - 13170: 48,-34 + 13156: 47,-34 + 13157: 46,-35 + 13158: 46,-35 + 13159: 48,-35 + 13160: 48,-36 + 13161: 48,-36 + 13162: 47,-36 + 13163: 47,-36 + 13164: 44,-35 + 13165: 45,-33 + 13166: 46,-33 + 13167: 48,-33 + 13168: 48,-34 + 13169: 49,-34 + 13170: 49,-33 13171: 49,-34 - 13172: 49,-33 - 13173: 49,-34 - 13174: 49,-35 - 13175: 47,-33 - 13176: 47,-32 - 13202: 48,-31 - 13276: 39,-51 - 13277: 41,-52 - 13278: 41,-53 - 13279: 46,-53 - 13280: 47,-53 - 13281: 46,-54 - 13282: 46,-51 - 13283: 46,-52 - 13311: 52,-37 - 13322: 52,-37 - 13323: 53,-36 - 13325: 55,-39 - 13326: 56,-39 - 13327: 55,-38 - 13328: 56,-36 - 13329: 53,-35 - 13344: 55,-36 - 13345: 54,-36 - 13346: 53,-37 - 13347: 53,-38 - 13348: 54,-38 - 13349: 54,-37 - 13350: 54,-35 - 13447: -37,-63 - 13448: -36,-62 - 13465: -38,-63 - 13466: -38,-63 - 13467: -37,-63 - 13468: -38,-62 - 13469: -38,-62 - 13470: -38,-61 - 13471: -37,-60 - 13472: -36,-60 - 13473: -38,-60 - 13474: -38,-61 - 13475: -37,-62 - 13476: -37,-62 - 13477: -36,-61 - 13478: -36,-63 - 13479: -36,-63 - 13480: -37,-61 - 13496: -41,-62 - 13497: -40,-63 - 13544: -37,-64 - 13545: -41,-64 - 13550: -37,-59 - 16067: 76,0 - 16068: 77,0 - 16069: 78,0 - 16082: 99,-2 - 16083: 99,-3 - 16084: 99,-4 - 16085: 100,-4 - 16086: 100,-4 - 16087: 100,-2 - 16100: 91,-3 - 16101: 84,2 - 16106: 83,-3 - 16107: 83,-4 - 16108: 84,-4 - 16109: 88,-3 - 16110: 87,-4 - 16126: 89,9 - 16127: 89,10 - 16128: 91,10 - 16129: 93,10 - 16130: 93,9 - 16131: 92,9 - 16135: 76,4 - 16136: 76,6 - 16137: 93,6 - 16143: 95,7 - 16144: 97,7 - 16145: 97,6 - 16248: -71,-40 - 16249: -70,-40 - 16250: -70,-41 - 16251: -69,-41 - 16252: -69,-42 + 13172: 49,-35 + 13173: 47,-33 + 13174: 47,-32 + 13200: 48,-31 + 13274: 39,-51 + 13275: 41,-52 + 13276: 41,-53 + 13277: 46,-53 + 13278: 47,-53 + 13279: 46,-54 + 13280: 46,-51 + 13281: 46,-52 + 13309: 52,-37 + 13320: 52,-37 + 13321: 53,-36 + 13323: 55,-39 + 13324: 56,-39 + 13325: 55,-38 + 13326: 56,-36 + 13327: 53,-35 + 13342: 55,-36 + 13343: 54,-36 + 13344: 53,-37 + 13345: 53,-38 + 13346: 54,-38 + 13347: 54,-37 + 13348: 54,-35 + 13445: -37,-63 + 13446: -36,-62 + 13463: -38,-63 + 13464: -38,-63 + 13465: -37,-63 + 13466: -38,-62 + 13467: -38,-62 + 13468: -38,-61 + 13469: -37,-60 + 13470: -36,-60 + 13471: -38,-60 + 13472: -38,-61 + 13473: -37,-62 + 13474: -37,-62 + 13475: -36,-61 + 13476: -36,-63 + 13477: -36,-63 + 13478: -37,-61 + 13494: -41,-62 + 13495: -40,-63 + 13542: -37,-64 + 13543: -41,-64 + 13548: -37,-59 + 16065: 76,0 + 16066: 77,0 + 16067: 78,0 + 16080: 99,-2 + 16081: 99,-3 + 16082: 99,-4 + 16083: 100,-4 + 16084: 100,-4 + 16085: 100,-2 + 16098: 91,-3 + 16099: 84,2 + 16104: 83,-3 + 16105: 83,-4 + 16106: 84,-4 + 16107: 88,-3 + 16108: 87,-4 + 16124: 89,9 + 16125: 89,10 + 16126: 91,10 + 16127: 93,10 + 16128: 93,9 + 16129: 92,9 + 16133: 76,4 + 16134: 76,6 + 16135: 93,6 + 16141: 95,7 + 16142: 97,7 + 16143: 97,6 + 16246: -71,-40 + 16247: -70,-40 + 16248: -70,-41 + 16249: -69,-41 + 16250: -69,-42 + 16251: -70,-43 + 16252: -70,-43 16253: -70,-43 - 16254: -70,-43 - 16255: -70,-43 - 16256: -66,-41 - 16257: -64,-40 - 16258: -62,-40 - 16259: -62,-41 - 16260: -63,-43 - 16261: -65,-43 - 16262: -66,-43 - 16263: -68,-45 - 16264: -69,-46 - 16265: -70,-46 - 16280: -67,-46 - 16281: -66,-46 - 16282: -66,-47 - 16283: -65,-48 - 16284: -65,-47 - 16285: -64,-46 - 16286: -63,-47 - 16287: -62,-47 - 16288: -62,-48 - 16409: -60,-49 - 16410: -60,-48 - 16411: -59,-50 - 16421: 10,69 - 16422: 10,70 - 16423: 11,70 - 16424: 11,69 - 16425: 10,67 - 16426: 11,66 - 16427: 12,66 - 16428: 12,68 - 16465: -39,-7 - 16466: -39,-6 - 16467: -40,-6 - 16468: -40,-7 - 16479: -39,1 - 16480: -39,1 - 16481: -38,0 - 16482: -38,0 - 16483: -37,2 - 16484: -37,2 - 16485: -39,0 - 16486: -37,1 - 16487: -37,2 - 16494: -43,-12 - 16495: -43,-11 - 16496: -43,-10 - 16497: -43,-10 - 16498: -44,-12 - 16499: -44,-12 - 16500: -43,-10 - 16501: -42,-9 - 16502: -42,-10 - 16503: -43,-12 - 16504: -44,-13 - 16505: -44,-13 - 16506: -44,-14 - 16507: -44,-16 - 16508: -44,-17 - 16509: -44,-18 - 16510: -44,-20 - 16511: -42,-20 - 16512: -42,-20 - 16513: -39,-20 - 16514: -37,-20 - 16515: -36,-20 - 16516: -36,-20 - 16517: -38,-20 - 16518: -38,-20 - 16519: -41,-20 - 16520: -42,-20 - 16521: -43,-20 - 16522: -44,-20 - 16523: -36,-20 - 16524: -31,-20 - 16525: -30,-20 - 16526: -30,-20 - 16527: -32,-20 - 16528: -32,-20 - 16529: -32,-18 - 16530: -31,-18 - 16531: -30,-18 - 16532: -29,-18 - 16533: -28,-18 - 16534: -28,-19 - 16535: -28,-20 - 16536: -29,-20 - 16537: -24,-22 - 16538: -24,-22 - 16539: -25,-22 - 16540: -25,-22 - 16541: -24,-21 - 16542: -23,-21 - 16543: -23,-22 - 16544: -22,-22 - 16545: -22,-21 - 16546: -23,-21 - 16547: -25,-21 - 16548: -25,-20 - 16549: -22,-20 - 16550: -22,-20 - 16551: -29,-18 - 17274: -2,32 - 17275: -1,32 - 17276: -1,32 - 17277: -2,27 - 17278: -2,27 + 16254: -66,-41 + 16255: -64,-40 + 16256: -62,-40 + 16257: -62,-41 + 16258: -63,-43 + 16259: -65,-43 + 16260: -66,-43 + 16261: -68,-45 + 16262: -69,-46 + 16263: -70,-46 + 16278: -67,-46 + 16279: -66,-46 + 16280: -66,-47 + 16281: -65,-48 + 16282: -65,-47 + 16283: -64,-46 + 16284: -63,-47 + 16285: -62,-47 + 16286: -62,-48 + 16407: -60,-49 + 16408: -60,-48 + 16409: -59,-50 + 16419: 10,69 + 16420: 10,70 + 16421: 11,70 + 16422: 11,69 + 16423: 10,67 + 16424: 11,66 + 16425: 12,66 + 16426: 12,68 + 16463: -39,-7 + 16464: -39,-6 + 16465: -40,-6 + 16466: -40,-7 + 16477: -39,1 + 16478: -39,1 + 16479: -38,0 + 16480: -38,0 + 16481: -37,2 + 16482: -37,2 + 16483: -39,0 + 16484: -37,1 + 16485: -37,2 + 16492: -43,-12 + 16493: -43,-11 + 16494: -43,-10 + 16495: -43,-10 + 16496: -44,-12 + 16497: -44,-12 + 16498: -43,-10 + 16499: -42,-9 + 16500: -42,-10 + 16501: -43,-12 + 16502: -44,-13 + 16503: -44,-13 + 16504: -44,-14 + 16505: -44,-16 + 16506: -44,-17 + 16507: -44,-18 + 16508: -44,-20 + 16509: -42,-20 + 16510: -42,-20 + 16511: -39,-20 + 16512: -37,-20 + 16513: -36,-20 + 16514: -36,-20 + 16515: -38,-20 + 16516: -38,-20 + 16517: -41,-20 + 16518: -42,-20 + 16519: -43,-20 + 16520: -44,-20 + 16521: -36,-20 + 16522: -31,-20 + 16523: -30,-20 + 16524: -30,-20 + 16525: -32,-20 + 16526: -32,-20 + 16527: -32,-18 + 16528: -31,-18 + 16529: -30,-18 + 16530: -29,-18 + 16531: -28,-18 + 16532: -28,-19 + 16533: -28,-20 + 16534: -29,-20 + 16535: -24,-22 + 16536: -24,-22 + 16537: -25,-22 + 16538: -25,-22 + 16539: -24,-21 + 16540: -23,-21 + 16541: -23,-22 + 16542: -22,-22 + 16543: -22,-21 + 16544: -23,-21 + 16545: -25,-21 + 16546: -25,-20 + 16547: -22,-20 + 16548: -22,-20 + 16549: -29,-18 + 17272: -2,32 + 17273: -1,32 + 17274: -1,32 + 17275: -2,27 + 17276: -2,27 + 17277: -1,27 + 17278: 0,27 17279: -1,27 - 17280: 0,27 - 17281: -1,27 - 17282: -2,27 - 17292: 0,39 - 17293: 0,40 - 17294: 0,40 - 17295: 2,40 - 17296: 2,40 - 17297: 0,38 - 17298: -1,36 - 17299: -1,35 - 17300: 0,34 - 17301: 0,34 - 17302: 0,42 - 17303: 1,42 - 17304: 1,42 - 17305: 0,42 + 17280: -2,27 + 17290: 0,39 + 17291: 0,40 + 17292: 0,40 + 17293: 2,40 + 17294: 2,40 + 17295: 0,38 + 17296: -1,36 + 17297: -1,35 + 17298: 0,34 + 17299: 0,34 + 17300: 0,42 + 17301: 1,42 + 17302: 1,42 + 17303: 0,42 + 17304: 0,48 + 17305: 0,48 17306: 0,48 - 17307: 0,48 - 17308: 0,48 - 17309: 0,47 - 17317: 6,52 - 17318: 7,52 - 17319: 6,50 - 18409: -53,-38 - 18410: -53,-37 - 18411: -52,-36 - 18412: -51,-36 - 18413: -52,-38 - 18414: -51,-38 - 18415: -51,-37 - 18416: -50,-37 - 18417: -50,-38 - 18418: -52,-37 - 18419: -52,-37 - 18420: -51,-37 - 18421: -50,-38 - 18422: -49,-38 - 18423: -48,-38 - 18424: -50,-37 - 18433: -52,-40 - 18434: -50,-40 - 18435: -51,-41 - 18451: -58,-46 - 18719: 61,-41 - 18720: 60,-41 - 18721: 59,-41 - 18722: 60,-40 + 17307: 0,47 + 17315: 6,52 + 17316: 7,52 + 17317: 6,50 + 18407: -53,-38 + 18408: -53,-37 + 18409: -52,-36 + 18410: -51,-36 + 18411: -52,-38 + 18412: -51,-38 + 18413: -51,-37 + 18414: -50,-37 + 18415: -50,-38 + 18416: -52,-37 + 18417: -52,-37 + 18418: -51,-37 + 18419: -50,-38 + 18420: -49,-38 + 18421: -48,-38 + 18422: -50,-37 + 18431: -52,-40 + 18432: -50,-40 + 18433: -51,-41 + 18449: -58,-46 + 18717: 61,-41 + 18718: 60,-41 + 18719: 59,-41 + 18720: 60,-40 + 18721: 59,-40 + 18722: 59,-40 18723: 59,-40 18724: 59,-40 - 18725: 59,-40 - 18726: 59,-40 - 18727: 60,-40 - 18728: 62,-40 - 18729: 61,-41 - 18730: 61,-41 - 18944: 43,-42 - 18945: 43,-41 - 18946: 43,-39 - 18947: 43,-38 - 18948: 45,-38 - 18949: 47,-38 - 18950: 49,-38 - 18951: 49,-39 - 18952: 48,-41 - 18953: 48,-43 - 18954: 46,-43 - 18955: 45,-43 - 18956: 44,-41 - 18957: 46,-40 - 18958: 47,-40 - 18984: 44,-48 - 18985: 45,-48 - 18986: 46,-48 - 18987: 43,-52 - 18988: 43,-53 - 18989: 43,-53 - 18990: 56,-41 - 19852: -31,-22 - 19853: -27,-23 + 18725: 60,-40 + 18726: 62,-40 + 18727: 61,-41 + 18728: 61,-41 + 18942: 43,-42 + 18943: 43,-41 + 18944: 43,-39 + 18945: 43,-38 + 18946: 45,-38 + 18947: 47,-38 + 18948: 49,-38 + 18949: 49,-39 + 18950: 48,-41 + 18951: 48,-43 + 18952: 46,-43 + 18953: 45,-43 + 18954: 44,-41 + 18955: 46,-40 + 18956: 47,-40 + 18982: 44,-48 + 18983: 45,-48 + 18984: 46,-48 + 18985: 43,-52 + 18986: 43,-53 + 18987: 43,-53 + 18988: 56,-41 + 19850: -31,-22 + 19851: -27,-23 + 19942: -72,-34 + 19943: -71,-34 19944: -72,-34 - 19945: -71,-34 - 19946: -72,-34 - 19947: -72,-36 - 19948: -72,-36 - 19949: -72,-37 - 19950: -72,-38 - 19951: -66,-38 - 19952: -66,-38 - 19953: -64,-38 - 19954: -64,-38 - 19955: -66,-38 - 19956: -67,-38 - 19957: -69,-38 - 19958: -71,-38 - 19959: -70,-38 - 19960: -68,-38 - 19961: -68,-38 - 19962: -65,-38 - 19963: -65,-38 - 19964: -64,-38 - 19965: -63,-38 - 19966: -62,-38 - 19967: -62,-36 - 19968: -62,-36 - 19969: -62,-38 - 19970: -62,-37 - 19971: -65,-34 - 19972: -66,-34 - 19973: -67,-34 - 19974: -69,-34 + 19945: -72,-36 + 19946: -72,-36 + 19947: -72,-37 + 19948: -72,-38 + 19949: -66,-38 + 19950: -66,-38 + 19951: -64,-38 + 19952: -64,-38 + 19953: -66,-38 + 19954: -67,-38 + 19955: -69,-38 + 19956: -71,-38 + 19957: -70,-38 + 19958: -68,-38 + 19959: -68,-38 + 19960: -65,-38 + 19961: -65,-38 + 19962: -64,-38 + 19963: -63,-38 + 19964: -62,-38 + 19965: -62,-36 + 19966: -62,-36 + 19967: -62,-38 + 19968: -62,-37 + 19969: -65,-34 + 19970: -66,-34 + 19971: -67,-34 + 19972: -69,-34 + 19973: -69,-34 + 19974: -67,-34 19975: -69,-34 - 19976: -67,-34 - 19977: -69,-34 - 19978: -69,-34 - 19979: -67,-34 - 19980: -67,-34 - 19981: -66,-34 - 19982: -65,-34 - 19983: -69,-34 - 19984: -66,-34 - 19985: -65,-34 - 19986: -63,-37 - 19987: -65,-38 - 19988: -67,-38 - 19989: -69,-38 - 19990: -70,-38 - 19991: -72,-38 - 19992: -72,-37 - 19993: -72,-36 - 19994: -72,-35 - 19995: -72,-35 + 19976: -69,-34 + 19977: -67,-34 + 19978: -67,-34 + 19979: -66,-34 + 19980: -65,-34 + 19981: -69,-34 + 19982: -66,-34 + 19983: -65,-34 + 19984: -63,-37 + 19985: -65,-38 + 19986: -67,-38 + 19987: -69,-38 + 19988: -70,-38 + 19989: -72,-38 + 19990: -72,-37 + 19991: -72,-36 + 19992: -72,-35 + 19993: -72,-35 + 19994: -70,-35 + 19995: -70,-35 19996: -70,-35 - 19997: -70,-35 - 19998: -70,-35 - 19999: -68,-35 - 20000: -67,-35 - 20001: -67,-36 - 20002: -64,-37 - 20003: -63,-37 - 20004: -62,-37 - 20005: -62,-37 - 20006: -62,-38 - 20007: -62,-36 - 20070: 35,39 - 20071: 34,39 - 20072: 34,38 - 20073: 33,39 - 20074: 36,39 - 20075: 35,37 - 21483: -71,-29 - 21484: -72,-26 - 21485: -70,-27 - 21486: -70,-26 - 21487: -69,-26 - 21488: -69,-27 - 21489: -68,-26 - 21490: -68,-26 - 21491: -67,-25 - 21492: -67,-26 - 21493: -68,-27 - 21494: -68,-27 - 21495: -67,-27 - 21496: -68,-25 - 21497: -67,-24 - 21520: -62,-29 - 21521: -63,-29 - 21522: -63,-30 - 21523: -62,-29 - 21543: -60,-29 - 21544: -60,-29 - 21545: -59,-30 - 21556: -63,-27 - 21557: -64,-27 - 21558: -64,-26 - 21559: -65,-25 - 21560: -66,-24 - 21561: -65,-23 - 21562: -63,-23 - 21563: -62,-23 - 21564: -60,-23 - 21565: -59,-23 - 21566: -61,-25 - 21567: -59,-24 - 21568: -59,-25 - 21569: -59,-26 - 21598: -64,-26 - 21599: -64,-25 - 21600: -63,-24 - 21601: -62,-24 - 21602: -62,-25 - 21603: -60,-26 - 21604: -60,-24 + 19997: -68,-35 + 19998: -67,-35 + 19999: -67,-36 + 20000: -64,-37 + 20001: -63,-37 + 20002: -62,-37 + 20003: -62,-37 + 20004: -62,-38 + 20005: -62,-36 + 20068: 35,39 + 20069: 34,39 + 20070: 34,38 + 20071: 33,39 + 20072: 36,39 + 20073: 35,37 + 21452: -71,-29 + 21453: -72,-26 + 21454: -70,-27 + 21455: -70,-26 + 21456: -69,-26 + 21457: -69,-27 + 21458: -68,-26 + 21459: -68,-26 + 21460: -67,-25 + 21461: -67,-26 + 21462: -68,-27 + 21463: -68,-27 + 21464: -67,-27 + 21465: -68,-25 + 21466: -67,-24 + 21489: -62,-29 + 21490: -63,-29 + 21491: -63,-30 + 21492: -62,-29 + 21512: -60,-29 + 21513: -60,-29 + 21514: -59,-30 + 21525: -63,-27 + 21526: -64,-27 + 21527: -64,-26 + 21528: -65,-25 + 21529: -66,-24 + 21530: -65,-23 + 21531: -63,-23 + 21532: -62,-23 + 21533: -60,-23 + 21534: -59,-23 + 21535: -61,-25 + 21536: -59,-24 + 21537: -59,-25 + 21538: -59,-26 + 21567: -64,-26 + 21568: -64,-25 + 21569: -63,-24 + 21570: -62,-24 + 21571: -62,-25 + 21572: -60,-26 + 21573: -60,-24 - node: cleanable: True color: '#FFFFFFFF' @@ -19712,846 +19707,846 @@ entities: 1777: -47,-48 1778: -46,-47 1779: -58,-23 - 1781: -66,-23 - 1807: -70,-29 - 1808: -70,-28 - 1809: -71,-28 - 1810: -72,-29 - 1811: -72,-28 - 1812: -71,-27 - 1813: -70,-27 - 1814: -70,-24 - 1815: -71,-25 - 1816: -72,-23 - 1817: -70,-23 - 1818: -68,-23 - 1819: -70,-26 - 1820: -69,-27 - 1821: -69,-29 - 1822: -68,-23 - 1823: -69,-23 - 1848: -55,-31 - 1849: -55,-23 - 1850: -52,-21 - 1851: -51,-21 - 1852: -64,-21 - 1853: -69,-20 - 1854: -75,-22 - 1855: -77,-20 - 1856: -77,-19 - 1857: -78,-20 - 1858: -78,-21 - 1859: -78,-24 - 1860: -78,-27 - 1861: -78,-28 - 1862: -78,-28 - 1863: -78,-26 - 1864: -77,-31 - 1865: -77,-32 - 1866: -78,-32 - 1867: -59,-32 - 1868: 41,-48 - 1869: 41,-48 - 1870: 37,-48 - 1871: 36,-47 - 1872: 36,-48 - 1873: 47,-48 - 1874: 45,-48 - 1875: 41,-45 - 1876: 41,-45 - 1877: 41,-39 - 1878: 41,-38 - 1879: 40,-37 - 1880: 40,-36 - 1881: 41,-33 - 1882: 42,-28 - 1883: 43,-28 - 1884: 51,-28 - 1885: 52,-28 - 1886: 52,-29 - 1887: 51,-30 - 1888: 52,-31 - 1889: 52,-32 - 1890: 51,-34 - 1891: 51,-35 - 1892: 51,-37 - 1893: 51,-39 - 1894: 52,-38 - 1895: 52,-43 - 1896: 52,-45 - 1897: 49,-42 - 1898: 49,-44 - 1899: 47,-45 - 1900: 45,-45 - 1901: 43,-41 - 1902: 46,-45 - 1903: 45,-44 - 1904: 45,-41 - 1905: 48,-42 - 1906: 49,-40 - 1907: 47,-40 - 1908: 45,-39 - 1909: 48,-38 - 1910: 47,-38 - 1911: 45,-38 - 1912: 44,-38 - 1913: 52,-47 - 1914: 55,-43 - 1915: 55,-44 - 1916: 55,-44 - 1917: 35,-55 - 1918: 34,-56 - 1919: 32,-55 - 1920: 30,-55 - 1921: 41,-42 - 1922: 43,-28 - 1923: 39,-23 - 1924: 38,-23 - 1925: 36,-23 - 1926: 36,-22 - 1927: 35,-21 - 1928: 36,-20 - 1929: 34,-21 - 1930: 35,-22 - 1931: 35,-23 - 1932: 34,-20 - 4026: -22,45 - 4033: -21,64 - 4041: 11,81 - 16358: -70,-36 - 16359: -67,-37 - 16360: -64,-36 - 16361: -63,-35 - 16362: -63,-35 - 16370: -69,-37 - 16371: -63,-34 - 16372: -63,-37 + 1780: -66,-23 + 1805: -70,-29 + 1806: -70,-28 + 1807: -71,-28 + 1808: -72,-29 + 1809: -72,-28 + 1810: -71,-27 + 1811: -70,-27 + 1812: -70,-24 + 1813: -71,-25 + 1814: -72,-23 + 1815: -70,-23 + 1816: -68,-23 + 1817: -70,-26 + 1818: -69,-27 + 1819: -69,-29 + 1820: -68,-23 + 1821: -69,-23 + 1846: -55,-31 + 1847: -55,-23 + 1848: -52,-21 + 1849: -51,-21 + 1850: -64,-21 + 1851: -69,-20 + 1852: -75,-22 + 1853: -77,-20 + 1854: -77,-19 + 1855: -78,-20 + 1856: -78,-21 + 1857: -78,-24 + 1858: -78,-27 + 1859: -78,-28 + 1860: -78,-28 + 1861: -78,-26 + 1862: -77,-31 + 1863: -77,-32 + 1864: -78,-32 + 1865: -59,-32 + 1866: 41,-48 + 1867: 41,-48 + 1868: 37,-48 + 1869: 36,-47 + 1870: 36,-48 + 1871: 47,-48 + 1872: 45,-48 + 1873: 41,-45 + 1874: 41,-45 + 1875: 41,-39 + 1876: 41,-38 + 1877: 40,-37 + 1878: 40,-36 + 1879: 41,-33 + 1880: 42,-28 + 1881: 43,-28 + 1882: 51,-28 + 1883: 52,-28 + 1884: 52,-29 + 1885: 51,-30 + 1886: 52,-31 + 1887: 52,-32 + 1888: 51,-34 + 1889: 51,-35 + 1890: 51,-37 + 1891: 51,-39 + 1892: 52,-38 + 1893: 52,-43 + 1894: 52,-45 + 1895: 49,-42 + 1896: 49,-44 + 1897: 47,-45 + 1898: 45,-45 + 1899: 43,-41 + 1900: 46,-45 + 1901: 45,-44 + 1902: 45,-41 + 1903: 48,-42 + 1904: 49,-40 + 1905: 47,-40 + 1906: 45,-39 + 1907: 48,-38 + 1908: 47,-38 + 1909: 45,-38 + 1910: 44,-38 + 1911: 52,-47 + 1912: 55,-43 + 1913: 55,-44 + 1914: 55,-44 + 1915: 35,-55 + 1916: 34,-56 + 1917: 32,-55 + 1918: 30,-55 + 1919: 41,-42 + 1920: 43,-28 + 1921: 39,-23 + 1922: 38,-23 + 1923: 36,-23 + 1924: 36,-22 + 1925: 35,-21 + 1926: 36,-20 + 1927: 34,-21 + 1928: 35,-22 + 1929: 35,-23 + 1930: 34,-20 + 4024: -22,45 + 4031: -21,64 + 4039: 11,81 + 16356: -70,-36 + 16357: -67,-37 + 16358: -64,-36 + 16359: -63,-35 + 16360: -63,-35 + 16368: -69,-37 + 16369: -63,-34 + 16370: -63,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 13631: -36,-75 - 13632: -37,-73 - 13633: -36,-73 - 13634: -35,-73 - 13635: -34,-73 + 13629: -36,-75 + 13630: -37,-73 + 13631: -36,-73 + 13632: -35,-73 + 13633: -34,-73 + 13634: -33,-73 + 13635: -33,-73 13636: -33,-73 - 13637: -33,-73 - 13638: -33,-73 - 13639: -32,-73 - 13640: -33,-72 - 13641: -33,-72 - 13642: -31,-74 - 13643: -30,-73 - 13644: -30,-74 - 13645: -30,-75 - 13646: -31,-74 - 13647: -29,-75 - 13648: -29,-75 - 13649: -29,-76 - 13650: -29,-77 - 13651: -29,-78 - 13652: -29,-79 - 13653: -29,-80 - 13654: -30,-80 - 13655: -30,-79 - 13656: -30,-78 - 13657: -30,-77 - 13658: -30,-76 - 13659: -30,-75 - 13660: -32,-78 - 13661: -32,-79 - 13662: -33,-78 - 13663: -34,-78 - 13664: -34,-79 - 13665: -33,-80 - 13666: -35,-80 - 13667: -35,-79 - 13668: -35,-78 - 13669: -34,-77 - 13670: -33,-77 - 13671: -32,-78 - 13672: -31,-79 - 13673: -32,-80 - 13674: -37,-80 - 13675: -37,-79 - 13676: -37,-79 - 13677: -36,-78 - 13678: -37,-78 - 13679: -37,-77 - 13680: -36,-77 - 13681: -37,-76 - 13682: -37,-76 - 13683: -36,-76 - 13684: -36,-75 - 13685: -37,-74 - 13686: -36,-73 - 13687: -36,-74 - 13688: -36,-75 - 13689: -35,-74 - 13690: -35,-74 - 13691: -35,-75 - 13692: -35,-76 - 13693: -33,-76 - 13694: -33,-76 - 13695: -33,-75 - 13697: -37,-73 - 13698: -37,-74 - 13699: -36,-75 - 13700: -37,-76 - 13701: -37,-77 - 13702: -36,-78 + 13637: -32,-73 + 13638: -33,-72 + 13639: -33,-72 + 13640: -31,-74 + 13641: -30,-73 + 13642: -30,-74 + 13643: -30,-75 + 13644: -31,-74 + 13645: -29,-75 + 13646: -29,-75 + 13647: -29,-76 + 13648: -29,-77 + 13649: -29,-78 + 13650: -29,-79 + 13651: -29,-80 + 13652: -30,-80 + 13653: -30,-79 + 13654: -30,-78 + 13655: -30,-77 + 13656: -30,-76 + 13657: -30,-75 + 13658: -32,-78 + 13659: -32,-79 + 13660: -33,-78 + 13661: -34,-78 + 13662: -34,-79 + 13663: -33,-80 + 13664: -35,-80 + 13665: -35,-79 + 13666: -35,-78 + 13667: -34,-77 + 13668: -33,-77 + 13669: -32,-78 + 13670: -31,-79 + 13671: -32,-80 + 13672: -37,-80 + 13673: -37,-79 + 13674: -37,-79 + 13675: -36,-78 + 13676: -37,-78 + 13677: -37,-77 + 13678: -36,-77 + 13679: -37,-76 + 13680: -37,-76 + 13681: -36,-76 + 13682: -36,-75 + 13683: -37,-74 + 13684: -36,-73 + 13685: -36,-74 + 13686: -36,-75 + 13687: -35,-74 + 13688: -35,-74 + 13689: -35,-75 + 13690: -35,-76 + 13691: -33,-76 + 13692: -33,-76 + 13693: -33,-75 + 13695: -37,-73 + 13696: -37,-74 + 13697: -36,-75 + 13698: -37,-76 + 13699: -37,-77 + 13700: -36,-78 + 13701: -37,-79 + 13702: -37,-79 13703: -37,-79 - 13704: -37,-79 - 13705: -37,-79 - 13706: -36,-77 - 13707: -35,-76 - 13708: -32,-76 - 13709: -31,-76 - 13710: -30,-76 - 13711: -30,-77 - 13712: -30,-78 - 13713: -29,-78 - 13714: -29,-77 - 13715: -33,-75 - 13716: -33,-75 - 13717: -32,-75 - 13718: -29,-74 - 13719: -29,-73 - 13720: -29,-73 - 13721: -32,-74 + 13704: -36,-77 + 13705: -35,-76 + 13706: -32,-76 + 13707: -31,-76 + 13708: -30,-76 + 13709: -30,-77 + 13710: -30,-78 + 13711: -29,-78 + 13712: -29,-77 + 13713: -33,-75 + 13714: -33,-75 + 13715: -32,-75 + 13716: -29,-74 + 13717: -29,-73 + 13718: -29,-73 + 13719: -32,-74 + 13720: -33,-74 + 13721: -31,-73 13722: -33,-74 - 13723: -31,-73 - 13724: -33,-74 - 13725: -34,-75 - 13726: -34,-74 - 13739: -31,-75 - 13740: -36,-74 - 13775: -39,-74 - 13776: -39,-71 - 13777: -36,-71 - 13778: -35,-71 - 13779: -34,-71 - 13780: -33,-71 - 13781: -32,-71 - 13782: -31,-71 - 13799: -27,-75 - 13800: -27,-74 - 13801: -27,-73 - 13802: -27,-73 - 13803: -27,-68 - 13804: -27,-67 - 13805: -27,-67 - 13806: -27,-69 - 13807: -28,-66 - 13808: -28,-65 - 13809: -28,-62 - 13810: -28,-63 - 13811: -28,-65 - 13824: -34,-60 - 13825: -34,-62 - 13826: -32,-60 - 13827: -32,-61 - 13828: -32,-62 - 13829: -31,-62 - 13830: -31,-63 - 13831: -33,-63 - 13832: -30,-61 - 13835: -34,-63 - 13836: -31,-60 - 13931: -15,-62 - 13932: -10,-62 - 13933: -9,-57 - 13934: -10,-57 - 13935: -7,-56 - 13936: -7,-56 - 13937: -6,-55 - 13938: -5,-55 - 13939: -5,-56 - 13940: -6,-55 - 13941: -6,-56 + 13723: -34,-75 + 13724: -34,-74 + 13737: -31,-75 + 13738: -36,-74 + 13773: -39,-74 + 13774: -39,-71 + 13775: -36,-71 + 13776: -35,-71 + 13777: -34,-71 + 13778: -33,-71 + 13779: -32,-71 + 13780: -31,-71 + 13797: -27,-75 + 13798: -27,-74 + 13799: -27,-73 + 13800: -27,-73 + 13801: -27,-68 + 13802: -27,-67 + 13803: -27,-67 + 13804: -27,-69 + 13805: -28,-66 + 13806: -28,-65 + 13807: -28,-62 + 13808: -28,-63 + 13809: -28,-65 + 13822: -34,-60 + 13823: -34,-62 + 13824: -32,-60 + 13825: -32,-61 + 13826: -32,-62 + 13827: -31,-62 + 13828: -31,-63 + 13829: -33,-63 + 13830: -30,-61 + 13833: -34,-63 + 13834: -31,-60 + 13929: -15,-62 + 13930: -10,-62 + 13931: -9,-57 + 13932: -10,-57 + 13933: -7,-56 + 13934: -7,-56 + 13935: -6,-55 + 13936: -5,-55 + 13937: -5,-56 + 13938: -6,-55 + 13939: -6,-56 + 14244: -69,-21 + 14245: -70,-21 14246: -69,-21 - 14247: -70,-21 - 14248: -69,-21 - 14249: -68,-21 - 14250: -67,-21 - 14251: -63,-21 - 14252: -63,-21 - 14253: -61,-21 - 14254: -60,-21 - 14255: -59,-21 - 14256: -58,-21 - 14257: -58,-21 - 14258: -75,-21 - 14259: -75,-23 - 14260: -75,-24 - 14261: -75,-25 - 14262: -75,-26 - 14263: -75,-27 - 14264: -75,-28 - 14265: -75,-26 - 14266: -75,-25 - 14267: -75,-22 - 14268: -75,-21 - 14269: -75,-21 - 14270: -74,-32 - 14271: -75,-31 - 14272: -73,-32 - 14273: -77,-26 - 14274: -78,-26 - 14275: -78,-27 - 14276: -78,-28 - 14277: -78,-23 - 14278: -77,-23 - 14279: -77,-24 - 14280: -78,-24 - 14281: -77,-19 - 14282: -78,-19 - 14283: -78,-19 - 14284: -78,-21 + 14247: -68,-21 + 14248: -67,-21 + 14249: -63,-21 + 14250: -63,-21 + 14251: -61,-21 + 14252: -60,-21 + 14253: -59,-21 + 14254: -58,-21 + 14255: -58,-21 + 14256: -75,-21 + 14257: -75,-23 + 14258: -75,-24 + 14259: -75,-25 + 14260: -75,-26 + 14261: -75,-27 + 14262: -75,-28 + 14263: -75,-26 + 14264: -75,-25 + 14265: -75,-22 + 14266: -75,-21 + 14267: -75,-21 + 14268: -74,-32 + 14269: -75,-31 + 14270: -73,-32 + 14271: -77,-26 + 14272: -78,-26 + 14273: -78,-27 + 14274: -78,-28 + 14275: -78,-23 + 14276: -77,-23 + 14277: -77,-24 + 14278: -78,-24 + 14279: -77,-19 + 14280: -78,-19 + 14281: -78,-19 + 14282: -78,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavyMonotile decals: - 13850: -32,-60 - 13851: -32,-61 - 13852: -31,-62 - 13853: -31,-62 - 13854: -32,-62 - 13855: -33,-63 - 13856: -34,-62 - 13857: -31,-63 - 13858: -30,-61 + 13848: -32,-60 + 13849: -32,-61 + 13850: -31,-62 + 13851: -31,-62 + 13852: -32,-62 + 13853: -33,-63 + 13854: -34,-62 + 13855: -31,-63 + 13856: -30,-61 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: 1042: -12,-50 - 3870: 23,72 - 3878: 18,69 - 3905: 20,67 - 3906: 26,66 - 3907: 27,67 - 3917: 21,68 - 3918: 18,66 - 3919: 17,65 - 3922: 22,66 - 3958: 18,63 - 3959: 21,60 - 3960: 21,58 - 3965: 20,60 - 3966: 18,60 - 3990: -35,61 - 3999: -42,59 - 4005: -36,62 - 4018: -36,55 - 4019: -32,60 - 11037: 34,-64 - 11038: 34,-64 - 11039: 35,-64 - 11040: 35,-62 - 11041: 35,-62 - 11042: 36,-61 - 11043: 36,-60 - 11044: 35,-60 - 11045: 34,-62 - 11046: 29,-69 - 11047: 31,-68 - 11048: 31,-67 - 11049: 27,-69 - 11050: 27,-70 - 11051: 29,-70 - 11052: 31,-70 - 11053: 32,-69 - 11054: 32,-68 - 11055: 31,-67 - 11056: 30,-66 - 11057: 29,-67 - 11058: 28,-68 - 11059: 26,-69 - 11060: 34,-60 - 11061: 41,-70 - 11062: 41,-71 - 11063: 39,-71 - 11064: 39,-71 - 11065: 42,-73 - 11066: 41,-75 - 11067: 38,-74 - 11068: 42,-74 - 11069: 42,-74 - 11070: 36,-68 - 11071: 35,-68 - 11072: 34,-68 - 11073: 39,-67 - 11074: 39,-67 - 11075: 40,-66 - 11076: 40,-66 - 11077: 41,-66 - 11078: 41,-68 - 11079: 45,-63 - 11080: 44,-63 - 11081: 43,-63 - 11082: 44,-62 - 11083: 45,-61 - 11084: 45,-61 - 11085: 39,-62 - 11086: 40,-62 - 11087: 40,-62 - 11088: 41,-62 - 11089: 41,-62 - 11173: 26,-57 - 11174: 26,-57 - 11175: 26,-58 - 11182: 38,-68 - 11183: 41,-68 - 11184: 40,-68 - 11281: -65,-37 - 11282: -59,-37 - 11283: -59,-37 - 11284: -59,-38 - 11285: -58,-38 - 11286: -58,-38 - 11287: -59,-42 - 11288: -60,-41 - 11289: -60,-41 + 3868: 23,72 + 3876: 18,69 + 3903: 20,67 + 3904: 26,66 + 3905: 27,67 + 3915: 21,68 + 3916: 18,66 + 3917: 17,65 + 3920: 22,66 + 3956: 18,63 + 3957: 21,60 + 3958: 21,58 + 3963: 20,60 + 3964: 18,60 + 3988: -35,61 + 3997: -42,59 + 4003: -36,62 + 4016: -36,55 + 4017: -32,60 + 11035: 34,-64 + 11036: 34,-64 + 11037: 35,-64 + 11038: 35,-62 + 11039: 35,-62 + 11040: 36,-61 + 11041: 36,-60 + 11042: 35,-60 + 11043: 34,-62 + 11044: 29,-69 + 11045: 31,-68 + 11046: 31,-67 + 11047: 27,-69 + 11048: 27,-70 + 11049: 29,-70 + 11050: 31,-70 + 11051: 32,-69 + 11052: 32,-68 + 11053: 31,-67 + 11054: 30,-66 + 11055: 29,-67 + 11056: 28,-68 + 11057: 26,-69 + 11058: 34,-60 + 11059: 41,-70 + 11060: 41,-71 + 11061: 39,-71 + 11062: 39,-71 + 11063: 42,-73 + 11064: 41,-75 + 11065: 38,-74 + 11066: 42,-74 + 11067: 42,-74 + 11068: 36,-68 + 11069: 35,-68 + 11070: 34,-68 + 11071: 39,-67 + 11072: 39,-67 + 11073: 40,-66 + 11074: 40,-66 + 11075: 41,-66 + 11076: 41,-68 + 11077: 45,-63 + 11078: 44,-63 + 11079: 43,-63 + 11080: 44,-62 + 11081: 45,-61 + 11082: 45,-61 + 11083: 39,-62 + 11084: 40,-62 + 11085: 40,-62 + 11086: 41,-62 + 11087: 41,-62 + 11171: 26,-57 + 11172: 26,-57 + 11173: 26,-58 + 11180: 38,-68 + 11181: 41,-68 + 11182: 40,-68 + 11279: -65,-37 + 11280: -59,-37 + 11281: -59,-37 + 11282: -59,-38 + 11283: -58,-38 + 11284: -58,-38 + 11285: -59,-42 + 11286: -60,-41 + 11287: -60,-41 + 11288: -59,-41 + 11289: -59,-40 11290: -59,-41 - 11291: -59,-40 - 11292: -59,-41 - 11293: -58,-41 - 11294: -58,-41 + 11291: -58,-41 + 11292: -58,-41 + 11293: -65,-41 + 11294: -65,-41 11295: -65,-41 - 11296: -65,-41 - 11297: -65,-41 - 12887: -45,-23 - 12888: -47,-22 - 12889: -46,-23 - 12893: -53,-28 - 12894: -53,-26 - 12895: -52,-25 - 12896: -51,-25 - 12897: -51,-26 - 12898: -51,-27 - 12899: -51,-27 - 12900: -51,-28 - 12901: -50,-28 - 12902: -50,-29 - 12903: -51,-29 - 12904: -51,-31 - 12905: -53,-31 - 12906: -53,-30 - 12907: -52,-28 - 12908: -52,-30 - 12909: -52,-27 - 13001: -53,-28 - 13002: -52,-29 - 13003: -43,-29 - 13004: -42,-30 - 13005: -42,-33 - 13006: -43,-32 - 13007: -43,-34 - 13008: -42,-34 - 13009: -41,-33 - 13010: -42,-32 - 13011: -43,-23 - 13012: -43,-24 - 13013: -43,-22 - 13014: -41,-23 - 13015: -42,-24 - 13016: -39,-24 - 13017: -39,-23 - 13018: -37,-22 - 13019: -37,-23 - 13020: -38,-24 - 13021: -35,-23 - 13022: -35,-22 - 13023: -34,-23 - 13024: -34,-24 - 13025: -34,-24 - 13026: -33,-24 - 13079: -35,-33 - 13080: -34,-33 - 13081: -34,-34 - 13082: -33,-32 - 13083: -34,-29 - 13084: -31,-27 - 13085: -31,-29 - 13086: -30,-28 - 13087: -30,-27 - 13088: -28,-27 - 13089: -28,-26 - 13090: -26,-27 - 13091: -29,-28 - 13092: -29,-29 - 13093: -28,-31 - 13094: -27,-31 - 13095: -30,-31 - 13096: -30,-30 - 13097: -28,-29 - 13098: -26,-31 - 13099: -26,-32 - 13100: -26,-30 - 13101: -29,-22 - 13143: 28,-57 - 13144: 48,-31 - 13177: 46,-32 - 13178: 47,-33 - 13179: 47,-32 - 13180: 48,-31 - 13181: 48,-32 - 13182: 47,-34 - 13183: 49,-34 - 13184: 49,-34 - 13185: 49,-35 - 13186: 47,-35 - 13187: 47,-35 - 13188: 46,-34 - 13189: 44,-34 - 13190: 44,-34 - 13191: 43,-33 - 13192: 45,-33 - 13193: 45,-32 - 13194: 47,-32 - 13195: 46,-34 - 13196: 46,-35 - 13197: 47,-33 - 13198: 48,-33 - 13199: 49,-33 - 13200: 49,-33 - 13201: 48,-32 - 13204: 39,-52 - 13205: 40,-51 - 13206: 40,-52 - 13207: 40,-53 - 13208: 40,-53 - 13209: 39,-54 - 13210: 39,-55 - 13211: 40,-55 - 13212: 41,-52 - 13213: 41,-54 - 13214: 41,-55 - 13215: 42,-53 - 13216: 42,-53 - 13217: 41,-56 - 13218: 42,-56 - 13219: 42,-50 - 13220: 44,-50 - 13221: 44,-50 - 13222: 45,-50 - 13223: 45,-52 - 13224: 44,-52 - 13225: 44,-51 - 13226: 45,-52 - 13227: 44,-54 - 13228: 44,-55 - 13229: 46,-55 - 13230: 45,-54 - 13231: 45,-55 - 13232: 46,-55 - 13233: 46,-52 - 13234: 47,-52 - 13310: 52,-37 - 13324: 54,-35 - 13330: 54,-39 - 13351: 54,-36 - 13352: 55,-35 - 13353: 53,-36 - 13354: 53,-38 - 13355: 54,-37 - 13449: -37,-63 - 13450: -37,-62 - 13451: -38,-62 - 13452: -38,-61 + 12885: -45,-23 + 12886: -47,-22 + 12887: -46,-23 + 12891: -53,-28 + 12892: -53,-26 + 12893: -52,-25 + 12894: -51,-25 + 12895: -51,-26 + 12896: -51,-27 + 12897: -51,-27 + 12898: -51,-28 + 12899: -50,-28 + 12900: -50,-29 + 12901: -51,-29 + 12902: -51,-31 + 12903: -53,-31 + 12904: -53,-30 + 12905: -52,-28 + 12906: -52,-30 + 12907: -52,-27 + 12999: -53,-28 + 13000: -52,-29 + 13001: -43,-29 + 13002: -42,-30 + 13003: -42,-33 + 13004: -43,-32 + 13005: -43,-34 + 13006: -42,-34 + 13007: -41,-33 + 13008: -42,-32 + 13009: -43,-23 + 13010: -43,-24 + 13011: -43,-22 + 13012: -41,-23 + 13013: -42,-24 + 13014: -39,-24 + 13015: -39,-23 + 13016: -37,-22 + 13017: -37,-23 + 13018: -38,-24 + 13019: -35,-23 + 13020: -35,-22 + 13021: -34,-23 + 13022: -34,-24 + 13023: -34,-24 + 13024: -33,-24 + 13077: -35,-33 + 13078: -34,-33 + 13079: -34,-34 + 13080: -33,-32 + 13081: -34,-29 + 13082: -31,-27 + 13083: -31,-29 + 13084: -30,-28 + 13085: -30,-27 + 13086: -28,-27 + 13087: -28,-26 + 13088: -26,-27 + 13089: -29,-28 + 13090: -29,-29 + 13091: -28,-31 + 13092: -27,-31 + 13093: -30,-31 + 13094: -30,-30 + 13095: -28,-29 + 13096: -26,-31 + 13097: -26,-32 + 13098: -26,-30 + 13099: -29,-22 + 13141: 28,-57 + 13142: 48,-31 + 13175: 46,-32 + 13176: 47,-33 + 13177: 47,-32 + 13178: 48,-31 + 13179: 48,-32 + 13180: 47,-34 + 13181: 49,-34 + 13182: 49,-34 + 13183: 49,-35 + 13184: 47,-35 + 13185: 47,-35 + 13186: 46,-34 + 13187: 44,-34 + 13188: 44,-34 + 13189: 43,-33 + 13190: 45,-33 + 13191: 45,-32 + 13192: 47,-32 + 13193: 46,-34 + 13194: 46,-35 + 13195: 47,-33 + 13196: 48,-33 + 13197: 49,-33 + 13198: 49,-33 + 13199: 48,-32 + 13202: 39,-52 + 13203: 40,-51 + 13204: 40,-52 + 13205: 40,-53 + 13206: 40,-53 + 13207: 39,-54 + 13208: 39,-55 + 13209: 40,-55 + 13210: 41,-52 + 13211: 41,-54 + 13212: 41,-55 + 13213: 42,-53 + 13214: 42,-53 + 13215: 41,-56 + 13216: 42,-56 + 13217: 42,-50 + 13218: 44,-50 + 13219: 44,-50 + 13220: 45,-50 + 13221: 45,-52 + 13222: 44,-52 + 13223: 44,-51 + 13224: 45,-52 + 13225: 44,-54 + 13226: 44,-55 + 13227: 46,-55 + 13228: 45,-54 + 13229: 45,-55 + 13230: 46,-55 + 13231: 46,-52 + 13232: 47,-52 + 13308: 52,-37 + 13322: 54,-35 + 13328: 54,-39 + 13349: 54,-36 + 13350: 55,-35 + 13351: 53,-36 + 13352: 53,-38 + 13353: 54,-37 + 13447: -37,-63 + 13448: -37,-62 + 13449: -38,-62 + 13450: -38,-61 + 13451: -38,-60 + 13452: -36,-60 13453: -38,-60 - 13454: -36,-60 - 13455: -38,-60 - 13456: -37,-59 - 13457: -37,-61 - 13458: -36,-62 - 13459: -36,-61 - 13460: -37,-61 - 13461: -38,-63 - 13462: -36,-63 - 13463: -36,-63 - 13464: -36,-62 - 13498: -41,-63 - 13499: -41,-62 - 13500: -40,-63 - 13547: -41,-64 - 13548: -37,-64 - 13549: -37,-59 - 16070: 76,1 - 16071: 76,0 - 16072: 77,0 - 16073: 78,0 - 16074: 79,4 - 16075: 79,5 - 16076: 78,4 - 16088: 99,-2 - 16089: 99,-3 - 16090: 99,-4 - 16091: 100,-4 - 16092: 100,-2 - 16102: 85,2 - 16103: 86,2 - 16104: 79,-3 - 16105: 79,-4 - 16132: 92,9 - 16133: 76,6 - 16134: 76,4 - 16138: 93,6 - 16139: 96,6 - 16140: 95,6 - 16141: 96,7 - 16142: 97,7 - 16237: -72,-40 - 16238: -72,-41 - 16239: -71,-41 - 16240: -71,-42 - 16241: -72,-42 - 16242: -71,-40 - 16243: -70,-40 - 16244: -70,-41 - 16245: -69,-41 - 16246: -69,-41 - 16247: -69,-43 - 16289: -65,-47 - 16290: -65,-47 - 16291: -64,-47 - 16292: -64,-47 - 16293: -63,-46 - 16294: -62,-47 - 16295: -62,-48 - 16296: -63,-48 - 16297: -66,-48 - 16312: -65,-46 - 16313: -64,-46 - 16314: -64,-45 - 16315: -63,-45 - 16316: -63,-46 - 16317: -63,-47 - 16318: -65,-47 - 16319: -66,-48 - 16320: -66,-48 - 16321: -63,-48 - 16322: -63,-47 - 16323: -62,-47 - 16324: -62,-41 - 16325: -62,-40 - 16326: -64,-40 - 16327: -70,-43 - 16328: -69,-43 - 16329: -68,-45 - 16330: -69,-46 - 16331: -70,-46 - 16332: -72,-42 - 16412: -59,-50 - 16413: -60,-49 - 16414: -60,-48 - 16429: 10,68 - 16430: 10,68 - 16431: 11,69 - 16432: 11,69 - 16433: 12,69 - 16434: 12,68 - 16435: 12,67 - 16436: 12,66 - 16437: 10,66 - 16438: 11,66 - 16439: 11,67 - 16440: 11,67 - 16441: 12,67 - 16442: 11,69 - 16443: 12,70 - 16444: 13,67 - 16445: 13,67 - 16446: 11,68 - 16447: 12,69 - 16448: 11,70 - 16469: -40,-6 - 16470: -40,-7 - 16471: -39,-7 - 16472: -39,-6 - 16473: -38,2 - 16474: -37,2 - 16475: -37,1 - 16476: -37,0 - 16477: -39,0 - 16478: -38,2 - 16552: -32,-20 - 16553: -30,-20 - 16554: -30,-20 - 16555: -30,-19 - 16556: -32,-18 - 16557: -34,-18 - 16558: -35,-18 - 16559: -31,-18 - 16560: -29,-18 - 16561: -29,-18 - 16562: -28,-20 - 16563: -28,-19 - 16564: -29,-20 - 16565: -24,-21 - 16566: -24,-22 - 16567: -22,-22 - 16568: -22,-21 - 16569: -35,-20 - 16570: -36,-20 - 16571: -39,-20 - 16572: -41,-20 - 16573: -43,-20 - 16574: -44,-20 - 16575: -48,-20 - 16576: -49,-22 - 16577: -49,-23 - 16578: -49,-23 - 16579: -50,-22 - 16580: -49,-22 - 16581: -49,-22 - 16582: -50,-23 - 16583: -53,-23 - 16584: -54,-23 - 16585: -53,-21 - 16586: -53,-20 + 13454: -37,-59 + 13455: -37,-61 + 13456: -36,-62 + 13457: -36,-61 + 13458: -37,-61 + 13459: -38,-63 + 13460: -36,-63 + 13461: -36,-63 + 13462: -36,-62 + 13496: -41,-63 + 13497: -41,-62 + 13498: -40,-63 + 13545: -41,-64 + 13546: -37,-64 + 13547: -37,-59 + 16068: 76,1 + 16069: 76,0 + 16070: 77,0 + 16071: 78,0 + 16072: 79,4 + 16073: 79,5 + 16074: 78,4 + 16086: 99,-2 + 16087: 99,-3 + 16088: 99,-4 + 16089: 100,-4 + 16090: 100,-2 + 16100: 85,2 + 16101: 86,2 + 16102: 79,-3 + 16103: 79,-4 + 16130: 92,9 + 16131: 76,6 + 16132: 76,4 + 16136: 93,6 + 16137: 96,6 + 16138: 95,6 + 16139: 96,7 + 16140: 97,7 + 16235: -72,-40 + 16236: -72,-41 + 16237: -71,-41 + 16238: -71,-42 + 16239: -72,-42 + 16240: -71,-40 + 16241: -70,-40 + 16242: -70,-41 + 16243: -69,-41 + 16244: -69,-41 + 16245: -69,-43 + 16287: -65,-47 + 16288: -65,-47 + 16289: -64,-47 + 16290: -64,-47 + 16291: -63,-46 + 16292: -62,-47 + 16293: -62,-48 + 16294: -63,-48 + 16295: -66,-48 + 16310: -65,-46 + 16311: -64,-46 + 16312: -64,-45 + 16313: -63,-45 + 16314: -63,-46 + 16315: -63,-47 + 16316: -65,-47 + 16317: -66,-48 + 16318: -66,-48 + 16319: -63,-48 + 16320: -63,-47 + 16321: -62,-47 + 16322: -62,-41 + 16323: -62,-40 + 16324: -64,-40 + 16325: -70,-43 + 16326: -69,-43 + 16327: -68,-45 + 16328: -69,-46 + 16329: -70,-46 + 16330: -72,-42 + 16410: -59,-50 + 16411: -60,-49 + 16412: -60,-48 + 16427: 10,68 + 16428: 10,68 + 16429: 11,69 + 16430: 11,69 + 16431: 12,69 + 16432: 12,68 + 16433: 12,67 + 16434: 12,66 + 16435: 10,66 + 16436: 11,66 + 16437: 11,67 + 16438: 11,67 + 16439: 12,67 + 16440: 11,69 + 16441: 12,70 + 16442: 13,67 + 16443: 13,67 + 16444: 11,68 + 16445: 12,69 + 16446: 11,70 + 16467: -40,-6 + 16468: -40,-7 + 16469: -39,-7 + 16470: -39,-6 + 16471: -38,2 + 16472: -37,2 + 16473: -37,1 + 16474: -37,0 + 16475: -39,0 + 16476: -38,2 + 16550: -32,-20 + 16551: -30,-20 + 16552: -30,-20 + 16553: -30,-19 + 16554: -32,-18 + 16555: -34,-18 + 16556: -35,-18 + 16557: -31,-18 + 16558: -29,-18 + 16559: -29,-18 + 16560: -28,-20 + 16561: -28,-19 + 16562: -29,-20 + 16563: -24,-21 + 16564: -24,-22 + 16565: -22,-22 + 16566: -22,-21 + 16567: -35,-20 + 16568: -36,-20 + 16569: -39,-20 + 16570: -41,-20 + 16571: -43,-20 + 16572: -44,-20 + 16573: -48,-20 + 16574: -49,-22 + 16575: -49,-23 + 16576: -49,-23 + 16577: -50,-22 + 16578: -49,-22 + 16579: -49,-22 + 16580: -50,-23 + 16581: -53,-23 + 16582: -54,-23 + 16583: -53,-21 + 16584: -53,-20 + 16585: -53,-20 + 16586: -52,-20 16587: -53,-20 - 16588: -52,-20 - 16589: -53,-20 - 16590: -55,-20 - 16591: -56,-20 - 16592: -56,-21 - 16593: -55,-22 - 16594: -56,-23 - 16595: -56,-26 - 16596: -56,-25 - 16597: -56,-27 - 16598: -55,-29 - 16599: -55,-30 - 16600: -60,-32 - 17270: -2,32 - 17271: -1,32 - 17272: -1,32 - 17273: -2,32 - 17283: -2,27 - 17284: 0,27 - 17285: 0,40 - 17286: 1,40 - 17287: 1,40 - 17288: 2,40 - 17289: 0,36 - 17290: 0,35 - 17291: 0,34 - 17310: 0,48 - 17311: 0,47 - 17312: 0,41 - 17313: 1,42 - 17314: 6,50 - 17315: 6,52 - 17316: 7,52 - 18425: -50,-36 - 18426: -50,-37 - 18427: -51,-38 - 18428: -53,-37 - 18429: -53,-36 - 18430: -48,-38 - 18431: -52,-40 - 18432: -51,-41 - 18450: -58,-46 - 18731: 59,-40 - 18732: 60,-40 - 18733: 60,-41 - 18959: 44,-42 - 18960: 44,-44 - 18961: 46,-44 - 18962: 44,-42 - 18963: 46,-40 - 18964: 47,-39 - 18965: 48,-39 - 18966: 48,-38 - 18967: 49,-38 - 18968: 49,-41 - 18969: 49,-42 - 18970: 49,-42 - 18971: 49,-41 - 18972: 49,-44 - 18973: 49,-45 - 18974: 48,-45 - 18975: 46,-45 - 18976: 44,-45 - 18977: 43,-45 - 18978: 43,-44 - 18979: 43,-42 - 18980: 52,-47 - 18981: 46,-48 - 18982: 45,-48 - 18983: 44,-48 - 18991: 56,-43 - 18992: 56,-43 - 18993: 55,-44 - 18994: 55,-43 - 18995: 56,-41 - 19854: -31,-23 - 19855: -31,-24 - 19856: -30,-22 - 19857: -27,-23 - 19868: -28,-24 - 19869: -27,-24 - 19875: -29,-24 - 19876: -29,-24 - 19877: -30,-23 + 16588: -55,-20 + 16589: -56,-20 + 16590: -56,-21 + 16591: -55,-22 + 16592: -56,-23 + 16593: -56,-26 + 16594: -56,-25 + 16595: -56,-27 + 16596: -55,-29 + 16597: -55,-30 + 16598: -60,-32 + 17268: -2,32 + 17269: -1,32 + 17270: -1,32 + 17271: -2,32 + 17281: -2,27 + 17282: 0,27 + 17283: 0,40 + 17284: 1,40 + 17285: 1,40 + 17286: 2,40 + 17287: 0,36 + 17288: 0,35 + 17289: 0,34 + 17308: 0,48 + 17309: 0,47 + 17310: 0,41 + 17311: 1,42 + 17312: 6,50 + 17313: 6,52 + 17314: 7,52 + 18423: -50,-36 + 18424: -50,-37 + 18425: -51,-38 + 18426: -53,-37 + 18427: -53,-36 + 18428: -48,-38 + 18429: -52,-40 + 18430: -51,-41 + 18448: -58,-46 + 18729: 59,-40 + 18730: 60,-40 + 18731: 60,-41 + 18957: 44,-42 + 18958: 44,-44 + 18959: 46,-44 + 18960: 44,-42 + 18961: 46,-40 + 18962: 47,-39 + 18963: 48,-39 + 18964: 48,-38 + 18965: 49,-38 + 18966: 49,-41 + 18967: 49,-42 + 18968: 49,-42 + 18969: 49,-41 + 18970: 49,-44 + 18971: 49,-45 + 18972: 48,-45 + 18973: 46,-45 + 18974: 44,-45 + 18975: 43,-45 + 18976: 43,-44 + 18977: 43,-42 + 18978: 52,-47 + 18979: 46,-48 + 18980: 45,-48 + 18981: 44,-48 + 18989: 56,-43 + 18990: 56,-43 + 18991: 55,-44 + 18992: 55,-43 + 18993: 56,-41 + 19852: -31,-23 + 19853: -31,-24 + 19854: -30,-22 + 19855: -27,-23 + 19866: -28,-24 + 19867: -27,-24 + 19873: -29,-24 + 19874: -29,-24 + 19875: -30,-23 + 19876: -29,-23 + 19877: -28,-23 19878: -29,-23 - 19879: -28,-23 - 19880: -29,-23 - 21498: -67,-29 - 21499: -67,-29 - 21500: -67,-28 - 21501: -67,-28 - 21502: -68,-26 - 21503: -67,-26 - 21504: -68,-25 - 21505: -67,-24 - 21506: -69,-23 - 21507: -69,-23 - 21508: -70,-24 - 21509: -72,-24 - 21510: -72,-25 - 21511: -70,-23 - 21512: -71,-23 - 21513: -72,-25 - 21514: -72,-27 - 21515: -72,-26 - 21524: -61,-29 - 21525: -63,-29 - 21526: -63,-30 - 21527: -61,-29 - 21570: -60,-27 - 21571: -61,-27 - 21572: -60,-27 - 21573: -59,-26 - 21574: -59,-25 - 21575: -60,-25 - 21576: -61,-25 - 21577: -60,-23 - 21578: -60,-23 - 21579: -63,-23 - 21580: -64,-23 - 21581: -60,-23 - 21582: -62,-23 - 21583: -61,-23 - 21584: -65,-24 - 21585: -65,-25 - 21586: -65,-25 - 21587: -60,-25 - 21588: -60,-25 - 21589: -61,-27 - 21590: -62,-27 - 21591: -64,-27 - 21592: -62,-26 - 21593: -63,-26 - 21594: -63,-24 - 21595: -62,-24 - 21596: -61,-24 - 21597: -62,-25 + 21467: -67,-29 + 21468: -67,-29 + 21469: -67,-28 + 21470: -67,-28 + 21471: -68,-26 + 21472: -67,-26 + 21473: -68,-25 + 21474: -67,-24 + 21475: -69,-23 + 21476: -69,-23 + 21477: -70,-24 + 21478: -72,-24 + 21479: -72,-25 + 21480: -70,-23 + 21481: -71,-23 + 21482: -72,-25 + 21483: -72,-27 + 21484: -72,-26 + 21493: -61,-29 + 21494: -63,-29 + 21495: -63,-30 + 21496: -61,-29 + 21539: -60,-27 + 21540: -61,-27 + 21541: -60,-27 + 21542: -59,-26 + 21543: -59,-25 + 21544: -60,-25 + 21545: -61,-25 + 21546: -60,-23 + 21547: -60,-23 + 21548: -63,-23 + 21549: -64,-23 + 21550: -60,-23 + 21551: -62,-23 + 21552: -61,-23 + 21553: -65,-24 + 21554: -65,-25 + 21555: -65,-25 + 21556: -60,-25 + 21557: -60,-25 + 21558: -61,-27 + 21559: -62,-27 + 21560: -64,-27 + 21561: -62,-26 + 21562: -63,-26 + 21563: -63,-24 + 21564: -62,-24 + 21565: -61,-24 + 21566: -62,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -20728,320 +20723,320 @@ entities: 1675: -39,-1 1676: -37,0 1677: -37,0 - 1783: -57,-26 - 1784: -57,-26 - 1824: -70,-24 - 1825: -70,-24 - 1826: -71,-25 - 1827: -70,-25 - 1828: -70,-26 - 1829: -71,-25 - 1830: -72,-24 - 1831: -72,-23 - 1832: -70,-27 - 1833: -71,-26 - 1834: -71,-27 - 1835: -72,-28 - 1836: -70,-29 - 1837: -69,-29 - 1838: -69,-28 - 1839: -69,-26 - 1840: -69,-24 - 4027: -22,37 - 4030: -17,45 - 4034: -14,68 - 4042: -27,69 - 4043: -2,26 - 16363: -71,-35 - 16364: -70,-36 - 16365: -67,-35 - 16366: -66,-36 - 16376: -71,-36 - 16377: -68,-37 + 1781: -57,-26 + 1782: -57,-26 + 1822: -70,-24 + 1823: -70,-24 + 1824: -71,-25 + 1825: -70,-25 + 1826: -70,-26 + 1827: -71,-25 + 1828: -72,-24 + 1829: -72,-23 + 1830: -70,-27 + 1831: -71,-26 + 1832: -71,-27 + 1833: -72,-28 + 1834: -70,-29 + 1835: -69,-29 + 1836: -69,-28 + 1837: -69,-26 + 1838: -69,-24 + 4025: -22,37 + 4028: -17,45 + 4032: -14,68 + 4040: -27,69 + 4041: -2,26 + 16361: -71,-35 + 16362: -70,-36 + 16363: -67,-35 + 16364: -66,-36 + 16374: -71,-36 + 16375: -68,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 13727: -34,-75 - 13728: -34,-74 - 13729: -36,-73 - 13730: -37,-76 - 13731: -37,-78 - 13732: -37,-78 - 13733: -37,-79 - 13734: -29,-78 - 13735: -30,-76 - 13736: -30,-75 - 13737: -31,-75 - 13738: -31,-75 - 13783: -36,-71 - 13784: -36,-71 - 13785: -34,-71 - 13786: -33,-71 - 13787: -31,-71 - 13788: -30,-71 - 13789: -39,-71 - 13790: -39,-74 - 13791: -28,-70 - 13792: -27,-73 - 13793: -27,-73 - 13794: -26,-74 - 13795: -27,-74 - 13796: -26,-75 - 13797: -27,-73 - 13798: -27,-75 - 13812: -27,-65 - 13813: -28,-66 - 13814: -28,-63 - 13815: -27,-62 - 13816: -27,-62 - 13817: -27,-65 - 13818: -27,-67 - 13819: -27,-68 - 13820: -27,-69 - 13833: -30,-61 - 13884: -38,-56 - 13885: -39,-56 - 13886: -38,-55 - 13887: -37,-55 - 13888: -37,-56 - 13889: -40,-58 - 13890: -39,-58 - 13891: -38,-58 - 13892: -36,-58 - 13893: -34,-58 - 13894: -35,-57 - 13895: -34,-56 - 13896: -34,-57 - 13897: -34,-58 - 13898: -32,-58 - 13899: -31,-58 - 13900: -29,-58 - 13901: -28,-59 - 13902: -28,-59 - 13903: -28,-60 - 13904: -29,-61 - 13905: -29,-61 - 13906: -27,-62 - 13907: -27,-62 - 13908: -27,-61 - 13909: -25,-62 - 13910: -24,-62 - 13911: -23,-62 - 13912: -26,-62 - 13913: -26,-62 - 13914: -23,-62 - 13915: -21,-62 - 13916: -20,-62 - 13917: -18,-62 - 13918: -16,-62 - 13919: -16,-62 - 13920: -20,-62 - 13921: -17,-63 - 13922: -16,-63 - 13923: -16,-62 - 13924: -15,-62 - 13925: -19,-62 - 13926: -17,-63 - 13927: -14,-62 - 13928: -12,-62 - 13929: -11,-62 - 13930: -10,-62 - 13942: -27,-61 - 13943: -28,-58 - 13963: -58,-34 - 13964: -58,-36 - 13965: -58,-37 - 13966: -59,-39 - 13967: -58,-39 - 13968: -60,-39 - 13969: -60,-37 - 13970: -60,-36 - 13971: -60,-35 - 13972: -59,-34 - 13973: -60,-42 - 14093: -35,-49 - 14094: -35,-50 - 14095: -33,-50 - 14096: -33,-49 - 14097: -40,-49 - 14098: -43,-47 - 14099: -44,-47 - 14100: -44,-44 - 14101: -44,-45 - 14102: -44,-47 - 14103: -44,-49 - 14104: -44,-49 - 14105: -43,-41 - 14106: -44,-41 - 14107: -46,-41 - 14108: -47,-41 - 14109: -49,-41 - 14110: -50,-40 - 14111: -51,-41 - 14112: -51,-41 - 14113: -51,-40 - 14114: -50,-40 - 14115: -50,-40 - 14116: -51,-40 - 14117: -53,-40 - 14118: -53,-40 - 14119: -55,-40 - 14120: -55,-40 - 14121: -56,-39 - 14122: -56,-39 - 14123: -55,-38 - 14124: -55,-39 - 14125: -56,-37 - 14126: -55,-34 - 14127: -55,-35 - 14128: -56,-34 - 14129: -56,-33 - 14130: -55,-35 - 14131: -55,-35 - 14132: -61,-32 - 14133: -61,-32 - 14134: -62,-31 - 14135: -61,-31 - 14136: -60,-32 - 14230: -70,-21 - 14231: -69,-21 - 14232: -69,-21 - 14233: -68,-21 - 14234: -62,-21 - 14235: -63,-21 - 14236: -59,-21 - 14237: -62,-21 - 14238: -62,-21 - 14239: -59,-21 - 14240: -58,-20 - 14241: -57,-20 - 14242: -58,-21 - 14243: -59,-21 - 14244: -59,-21 - 14245: -61,-21 - 14285: -78,-20 - 14286: -78,-20 - 14287: -78,-19 - 14288: -77,-20 - 14289: -77,-23 - 14290: -78,-23 - 14291: -77,-24 - 14292: -78,-27 - 14293: -77,-27 - 14294: -77,-28 - 14295: -78,-31 - 14296: -77,-30 - 14297: -77,-31 - 14298: -77,-32 - 14299: -78,-30 - 14300: -77,-30 - 14301: -71,-32 - 14302: -71,-32 - 14303: -70,-31 - 14304: -68,-31 - 14305: -69,-32 + 13725: -34,-75 + 13726: -34,-74 + 13727: -36,-73 + 13728: -37,-76 + 13729: -37,-78 + 13730: -37,-78 + 13731: -37,-79 + 13732: -29,-78 + 13733: -30,-76 + 13734: -30,-75 + 13735: -31,-75 + 13736: -31,-75 + 13781: -36,-71 + 13782: -36,-71 + 13783: -34,-71 + 13784: -33,-71 + 13785: -31,-71 + 13786: -30,-71 + 13787: -39,-71 + 13788: -39,-74 + 13789: -28,-70 + 13790: -27,-73 + 13791: -27,-73 + 13792: -26,-74 + 13793: -27,-74 + 13794: -26,-75 + 13795: -27,-73 + 13796: -27,-75 + 13810: -27,-65 + 13811: -28,-66 + 13812: -28,-63 + 13813: -27,-62 + 13814: -27,-62 + 13815: -27,-65 + 13816: -27,-67 + 13817: -27,-68 + 13818: -27,-69 + 13831: -30,-61 + 13882: -38,-56 + 13883: -39,-56 + 13884: -38,-55 + 13885: -37,-55 + 13886: -37,-56 + 13887: -40,-58 + 13888: -39,-58 + 13889: -38,-58 + 13890: -36,-58 + 13891: -34,-58 + 13892: -35,-57 + 13893: -34,-56 + 13894: -34,-57 + 13895: -34,-58 + 13896: -32,-58 + 13897: -31,-58 + 13898: -29,-58 + 13899: -28,-59 + 13900: -28,-59 + 13901: -28,-60 + 13902: -29,-61 + 13903: -29,-61 + 13904: -27,-62 + 13905: -27,-62 + 13906: -27,-61 + 13907: -25,-62 + 13908: -24,-62 + 13909: -23,-62 + 13910: -26,-62 + 13911: -26,-62 + 13912: -23,-62 + 13913: -21,-62 + 13914: -20,-62 + 13915: -18,-62 + 13916: -16,-62 + 13917: -16,-62 + 13918: -20,-62 + 13919: -17,-63 + 13920: -16,-63 + 13921: -16,-62 + 13922: -15,-62 + 13923: -19,-62 + 13924: -17,-63 + 13925: -14,-62 + 13926: -12,-62 + 13927: -11,-62 + 13928: -10,-62 + 13940: -27,-61 + 13941: -28,-58 + 13961: -58,-34 + 13962: -58,-36 + 13963: -58,-37 + 13964: -59,-39 + 13965: -58,-39 + 13966: -60,-39 + 13967: -60,-37 + 13968: -60,-36 + 13969: -60,-35 + 13970: -59,-34 + 13971: -60,-42 + 14091: -35,-49 + 14092: -35,-50 + 14093: -33,-50 + 14094: -33,-49 + 14095: -40,-49 + 14096: -43,-47 + 14097: -44,-47 + 14098: -44,-44 + 14099: -44,-45 + 14100: -44,-47 + 14101: -44,-49 + 14102: -44,-49 + 14103: -43,-41 + 14104: -44,-41 + 14105: -46,-41 + 14106: -47,-41 + 14107: -49,-41 + 14108: -50,-40 + 14109: -51,-41 + 14110: -51,-41 + 14111: -51,-40 + 14112: -50,-40 + 14113: -50,-40 + 14114: -51,-40 + 14115: -53,-40 + 14116: -53,-40 + 14117: -55,-40 + 14118: -55,-40 + 14119: -56,-39 + 14120: -56,-39 + 14121: -55,-38 + 14122: -55,-39 + 14123: -56,-37 + 14124: -55,-34 + 14125: -55,-35 + 14126: -56,-34 + 14127: -56,-33 + 14128: -55,-35 + 14129: -55,-35 + 14130: -61,-32 + 14131: -61,-32 + 14132: -62,-31 + 14133: -61,-31 + 14134: -60,-32 + 14228: -70,-21 + 14229: -69,-21 + 14230: -69,-21 + 14231: -68,-21 + 14232: -62,-21 + 14233: -63,-21 + 14234: -59,-21 + 14235: -62,-21 + 14236: -62,-21 + 14237: -59,-21 + 14238: -58,-20 + 14239: -57,-20 + 14240: -58,-21 + 14241: -59,-21 + 14242: -59,-21 + 14243: -61,-21 + 14283: -78,-20 + 14284: -78,-20 + 14285: -78,-19 + 14286: -77,-20 + 14287: -77,-23 + 14288: -78,-23 + 14289: -77,-24 + 14290: -78,-27 + 14291: -77,-27 + 14292: -77,-28 + 14293: -78,-31 + 14294: -77,-30 + 14295: -77,-31 + 14296: -77,-32 + 14297: -78,-30 + 14298: -77,-30 + 14299: -71,-32 + 14300: -71,-32 + 14301: -70,-31 + 14302: -68,-31 + 14303: -69,-32 + 14304: -72,-32 + 14305: -74,-32 14306: -72,-32 - 14307: -74,-32 - 14308: -72,-32 - 14309: -69,-31 - 14310: -74,-32 - 14311: -62,-31 - 14312: -62,-32 - 14313: -61,-32 - 14314: -59,-31 - 14315: -58,-32 - 14316: -59,-32 - 14317: -61,-32 - 14318: -58,-32 - 14319: -58,-32 - 14320: -62,-31 - 14321: -63,-31 - 14322: -64,-31 - 14323: -61,-31 - 14324: -65,-31 - 14325: -68,-31 - 14326: -69,-32 - 14327: -71,-32 - 14328: -58,-31 - 14329: -60,-31 - 14330: -56,-31 - 14331: -55,-29 - 14332: -56,-29 - 14333: -55,-31 - 14334: -56,-32 - 14335: -55,-32 - 14336: -56,-31 - 14337: -55,-30 - 14338: -55,-30 - 14339: -55,-29 - 14340: -56,-26 - 14341: -56,-25 - 14342: -55,-26 - 14343: -55,-27 - 14344: -56,-26 - 14345: -56,-24 - 14346: -55,-24 - 14347: -56,-23 - 14348: -55,-22 - 14349: -56,-21 - 14350: -56,-20 - 14351: -55,-20 - 14352: -55,-21 - 14353: -55,-21 - 14354: -52,-20 - 14355: -52,-21 - 14356: -55,-20 - 14357: -54,-20 - 14358: -52,-21 - 14359: -51,-22 - 14360: -52,-23 - 14361: -54,-23 + 14307: -69,-31 + 14308: -74,-32 + 14309: -62,-31 + 14310: -62,-32 + 14311: -61,-32 + 14312: -59,-31 + 14313: -58,-32 + 14314: -59,-32 + 14315: -61,-32 + 14316: -58,-32 + 14317: -58,-32 + 14318: -62,-31 + 14319: -63,-31 + 14320: -64,-31 + 14321: -61,-31 + 14322: -65,-31 + 14323: -68,-31 + 14324: -69,-32 + 14325: -71,-32 + 14326: -58,-31 + 14327: -60,-31 + 14328: -56,-31 + 14329: -55,-29 + 14330: -56,-29 + 14331: -55,-31 + 14332: -56,-32 + 14333: -55,-32 + 14334: -56,-31 + 14335: -55,-30 + 14336: -55,-30 + 14337: -55,-29 + 14338: -56,-26 + 14339: -56,-25 + 14340: -55,-26 + 14341: -55,-27 + 14342: -56,-26 + 14343: -56,-24 + 14344: -55,-24 + 14345: -56,-23 + 14346: -55,-22 + 14347: -56,-21 + 14348: -56,-20 + 14349: -55,-20 + 14350: -55,-21 + 14351: -55,-21 + 14352: -52,-20 + 14353: -52,-21 + 14354: -55,-20 + 14355: -54,-20 + 14356: -52,-21 + 14357: -51,-22 + 14358: -52,-23 + 14359: -54,-23 + 14360: -36,-19 + 14361: -36,-18 14362: -36,-19 - 14363: -36,-18 - 14364: -36,-19 - 14365: -37,-16 - 14366: -37,-15 - 14367: -37,-14 - 14368: -37,-13 - 14369: -37,-11 - 14370: -39,-14 - 14371: -40,-14 - 14372: -39,-15 - 14373: -39,-16 - 14374: -40,-17 - 14375: -42,-16 - 14376: -41,-14 - 14377: -40,-16 - 14378: -41,-16 - 14379: -41,-16 - 14380: -41,-13 - 14381: -44,-11 - 14382: -39,-9 - 14383: -43,-8 - 14384: -40,-1 - 14385: -38,-1 - 14386: -38,-2 + 14363: -37,-16 + 14364: -37,-15 + 14365: -37,-14 + 14366: -37,-13 + 14367: -37,-11 + 14368: -39,-14 + 14369: -40,-14 + 14370: -39,-15 + 14371: -39,-16 + 14372: -40,-17 + 14373: -42,-16 + 14374: -41,-14 + 14375: -40,-16 + 14376: -41,-16 + 14377: -41,-16 + 14378: -41,-13 + 14379: -44,-11 + 14380: -39,-9 + 14381: -43,-8 + 14382: -40,-1 + 14383: -38,-1 + 14384: -38,-2 + 14385: -38,-3 + 14386: -38,1 14387: -38,-3 - 14388: -38,1 - 14389: -38,-3 - 14390: -37,-5 - 14391: -37,-7 - 14392: -37,-9 - 14393: -37,-12 - 14394: -37,-15 - 14395: -37,-15 - 14396: -37,-17 - 14397: -35,-19 - 14398: -32,-19 + 14388: -37,-5 + 14389: -37,-7 + 14390: -37,-9 + 14391: -37,-12 + 14392: -37,-15 + 14393: -37,-15 + 14394: -37,-17 + 14395: -35,-19 + 14396: -32,-19 + 14397: -32,-19 + 14398: -29,-20 14399: -32,-19 - 14400: -29,-20 - 14401: -32,-19 - 14402: -27,-19 - 14403: -23,-21 - 14404: -24,-22 - 14405: -25,-21 + 14400: -27,-19 + 14401: -23,-21 + 14402: -24,-22 + 14403: -25,-21 - node: color: '#FFFFFFFF' id: DirtLight @@ -21057,171 +21052,171 @@ entities: 1039: -29,-53 1040: -24,-49 1046: -12,-46 - 3874: 22,70 - 3908: 25,67 - 3909: 27,66 - 3910: 20,66 - 3911: 21,67 - 4000: -36,59 - 4001: -36,60 - 4025: -27,65 - 11090: 44,-63 - 11091: 44,-63 - 11092: 43,-62 - 11093: 45,-61 - 11094: 45,-61 - 11095: 45,-62 - 11096: 45,-62 - 11097: 36,-62 - 11098: 36,-62 - 11099: 34,-61 - 11100: 32,-61 - 11101: 32,-61 - 11102: 34,-66 - 11103: 34,-66 - 11104: 34,-67 - 11105: 34,-69 - 11106: 30,-68 - 11107: 30,-68 - 11108: 32,-67 - 11109: 30,-69 - 11110: 29,-70 - 11111: 28,-70 - 11112: 26,-69 - 11113: 28,-68 - 11114: 28,-68 - 11115: 27,-66 - 11116: 39,-71 - 11117: 41,-71 - 11118: 41,-71 - 11119: 41,-73 - 11120: 41,-73 - 11121: 42,-73 - 11122: 42,-75 - 11123: 39,-74 - 11124: 39,-74 - 11125: 37,-73 - 11126: 39,-73 - 11127: 35,-71 - 11128: 36,-70 - 11129: 36,-70 - 11130: 35,-68 - 11131: 36,-67 - 11132: 36,-66 - 11133: 35,-64 - 11134: 36,-64 - 11135: 35,-60 - 12890: -47,-23 - 12891: -47,-25 - 12892: -46,-26 - 12942: -46,-31 - 12943: -48,-30 - 12944: -48,-31 - 12945: -49,-31 - 12946: -47,-30 - 12947: -47,-29 - 12948: -48,-26 - 12949: -48,-25 - 12950: -47,-26 - 12951: -47,-27 - 12952: -46,-27 - 12953: -45,-26 - 12954: -45,-26 - 12955: -45,-27 - 12956: -46,-26 - 12957: -45,-25 - 12958: -45,-25 - 12959: -45,-27 - 12960: -44,-28 - 12961: -43,-28 - 12962: -42,-27 - 13339: 54,-37 - 13340: 53,-38 - 13341: 54,-38 - 13342: 55,-36 - 13343: 55,-35 - 16266: -66,-47 - 16267: -66,-48 - 16268: -66,-46 - 16269: -67,-46 - 16270: -64,-46 - 16271: -63,-46 - 16272: -63,-46 - 16273: -65,-47 - 16274: -63,-47 - 16275: -62,-46 - 16276: -62,-48 - 16277: -62,-48 - 16278: -63,-47 - 16279: -63,-48 - 16298: -64,-47 - 16299: -63,-47 - 16300: -63,-46 - 16301: -62,-46 - 16302: -62,-48 - 16303: -62,-48 - 16304: -63,-48 - 16305: -64,-48 - 16306: -63,-47 - 16307: -65,-46 - 16308: -65,-45 - 16309: -64,-45 - 16310: -63,-45 - 16311: -63,-46 - 16449: 10,70 - 16450: 10,69 - 16451: 11,70 - 16452: 12,70 - 16453: 12,68 - 16454: 11,67 - 16455: 10,67 - 16456: 12,69 - 16457: 12,67 - 16458: 10,68 - 16459: 9,68 - 16637: -43,0 - 16638: -43,-1 - 16639: -43,-3 - 16640: -43,-4 - 16641: -42,1 - 16642: -41,1 - 16643: -41,0 - 16644: -41,-2 - 16645: -42,-5 - 16646: -43,-8 - 16647: -40,-10 - 16648: -38,-10 - 16649: -38,-11 - 16650: -37,-20 - 16651: -34,-18 - 16652: -33,-18 - 16653: -33,-18 - 16654: -33,-20 - 16655: -34,-20 - 16656: -34,-20 - 16657: -34,-19 - 16658: -36,-19 - 16659: -40,-14 - 16660: -40,-15 - 16661: -40,-15 - 16662: -39,-15 - 16663: -39,-16 - 16664: -42,-16 - 16665: -42,-15 - 16666: -41,-15 - 16667: -41,-16 - 16668: -42,-17 - 16669: -40,-18 - 16670: -39,-18 - 16671: -39,-17 - 18436: -52,-40 - 18437: -55,-34 - 18438: -56,-34 - 18439: -52,-34 - 18452: -58,-46 - 21528: -63,-30 - 21529: -63,-29 - 21530: -62,-29 + 3872: 22,70 + 3906: 25,67 + 3907: 27,66 + 3908: 20,66 + 3909: 21,67 + 3998: -36,59 + 3999: -36,60 + 4023: -27,65 + 11088: 44,-63 + 11089: 44,-63 + 11090: 43,-62 + 11091: 45,-61 + 11092: 45,-61 + 11093: 45,-62 + 11094: 45,-62 + 11095: 36,-62 + 11096: 36,-62 + 11097: 34,-61 + 11098: 32,-61 + 11099: 32,-61 + 11100: 34,-66 + 11101: 34,-66 + 11102: 34,-67 + 11103: 34,-69 + 11104: 30,-68 + 11105: 30,-68 + 11106: 32,-67 + 11107: 30,-69 + 11108: 29,-70 + 11109: 28,-70 + 11110: 26,-69 + 11111: 28,-68 + 11112: 28,-68 + 11113: 27,-66 + 11114: 39,-71 + 11115: 41,-71 + 11116: 41,-71 + 11117: 41,-73 + 11118: 41,-73 + 11119: 42,-73 + 11120: 42,-75 + 11121: 39,-74 + 11122: 39,-74 + 11123: 37,-73 + 11124: 39,-73 + 11125: 35,-71 + 11126: 36,-70 + 11127: 36,-70 + 11128: 35,-68 + 11129: 36,-67 + 11130: 36,-66 + 11131: 35,-64 + 11132: 36,-64 + 11133: 35,-60 + 12888: -47,-23 + 12889: -47,-25 + 12890: -46,-26 + 12940: -46,-31 + 12941: -48,-30 + 12942: -48,-31 + 12943: -49,-31 + 12944: -47,-30 + 12945: -47,-29 + 12946: -48,-26 + 12947: -48,-25 + 12948: -47,-26 + 12949: -47,-27 + 12950: -46,-27 + 12951: -45,-26 + 12952: -45,-26 + 12953: -45,-27 + 12954: -46,-26 + 12955: -45,-25 + 12956: -45,-25 + 12957: -45,-27 + 12958: -44,-28 + 12959: -43,-28 + 12960: -42,-27 + 13337: 54,-37 + 13338: 53,-38 + 13339: 54,-38 + 13340: 55,-36 + 13341: 55,-35 + 16264: -66,-47 + 16265: -66,-48 + 16266: -66,-46 + 16267: -67,-46 + 16268: -64,-46 + 16269: -63,-46 + 16270: -63,-46 + 16271: -65,-47 + 16272: -63,-47 + 16273: -62,-46 + 16274: -62,-48 + 16275: -62,-48 + 16276: -63,-47 + 16277: -63,-48 + 16296: -64,-47 + 16297: -63,-47 + 16298: -63,-46 + 16299: -62,-46 + 16300: -62,-48 + 16301: -62,-48 + 16302: -63,-48 + 16303: -64,-48 + 16304: -63,-47 + 16305: -65,-46 + 16306: -65,-45 + 16307: -64,-45 + 16308: -63,-45 + 16309: -63,-46 + 16447: 10,70 + 16448: 10,69 + 16449: 11,70 + 16450: 12,70 + 16451: 12,68 + 16452: 11,67 + 16453: 10,67 + 16454: 12,69 + 16455: 12,67 + 16456: 10,68 + 16457: 9,68 + 16635: -43,0 + 16636: -43,-1 + 16637: -43,-3 + 16638: -43,-4 + 16639: -42,1 + 16640: -41,1 + 16641: -41,0 + 16642: -41,-2 + 16643: -42,-5 + 16644: -43,-8 + 16645: -40,-10 + 16646: -38,-10 + 16647: -38,-11 + 16648: -37,-20 + 16649: -34,-18 + 16650: -33,-18 + 16651: -33,-18 + 16652: -33,-20 + 16653: -34,-20 + 16654: -34,-20 + 16655: -34,-19 + 16656: -36,-19 + 16657: -40,-14 + 16658: -40,-15 + 16659: -40,-15 + 16660: -39,-15 + 16661: -39,-16 + 16662: -42,-16 + 16663: -42,-15 + 16664: -41,-15 + 16665: -41,-16 + 16666: -42,-17 + 16667: -40,-18 + 16668: -39,-18 + 16669: -39,-17 + 18434: -52,-40 + 18435: -55,-34 + 18436: -56,-34 + 18437: -52,-34 + 18450: -58,-46 + 21497: -63,-30 + 21498: -63,-29 + 21499: -62,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21339,17 +21334,17 @@ entities: 1636: -58,-41 1637: -58,-41 1638: -58,-43 - 1785: -57,-26 - 4029: -23,35 - 4031: -20,52 - 4032: -16,57 - 4036: -11,84 - 4037: -13,91 - 4038: -9,68 - 4039: 4,68 + 1783: -57,-26 + 4027: -23,35 + 4029: -20,52 + 4030: -16,57 + 4034: -11,84 + 4035: -13,91 + 4036: -9,68 + 4037: 4,68 + 16365: -66,-35 + 16366: -66,-35 16367: -66,-35 - 16368: -66,-35 - 16369: -66,-35 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21385,236 +21380,236 @@ entities: 1043: -21,-29 1044: -12,-51 1045: -12,-49 - 3872: 18,71 - 3873: 17,71 - 3875: 19,71 - 3876: 20,71 - 3877: 21,69 - 3912: 21,65 - 3913: 22,65 - 3914: 23,65 - 4006: -38,63 - 11151: 35,-61 - 11152: 41,-62 - 11153: 39,-62 - 11154: 39,-62 - 11155: 36,-68 - 11156: 35,-67 - 11157: 35,-67 - 11158: 29,-68 - 11159: 29,-68 - 11160: 28,-66 - 11161: 26,-69 - 11162: 26,-70 - 11163: 27,-69 - 11164: 41,-67 - 11165: 28,-69 - 11166: 27,-60 - 11167: 27,-58 - 11168: 28,-56 - 11169: 28,-56 - 12910: -53,-27 - 12911: -53,-26 - 12912: -52,-25 - 12913: -51,-26 - 12914: -52,-28 - 12915: -52,-28 + 3870: 18,71 + 3871: 17,71 + 3873: 19,71 + 3874: 20,71 + 3875: 21,69 + 3910: 21,65 + 3911: 22,65 + 3912: 23,65 + 4004: -38,63 + 11149: 35,-61 + 11150: 41,-62 + 11151: 39,-62 + 11152: 39,-62 + 11153: 36,-68 + 11154: 35,-67 + 11155: 35,-67 + 11156: 29,-68 + 11157: 29,-68 + 11158: 28,-66 + 11159: 26,-69 + 11160: 26,-70 + 11161: 27,-69 + 11162: 41,-67 + 11163: 28,-69 + 11164: 27,-60 + 11165: 27,-58 + 11166: 28,-56 + 11167: 28,-56 + 12908: -53,-27 + 12909: -53,-26 + 12910: -52,-25 + 12911: -51,-26 + 12912: -52,-28 + 12913: -52,-28 + 12914: -50,-28 + 12915: -51,-29 12916: -50,-28 - 12917: -51,-29 - 12918: -50,-28 - 12919: -50,-27 - 12920: -51,-29 - 12921: -52,-30 - 12922: -52,-31 - 12923: -52,-31 - 12924: -52,-29 - 12925: -51,-30 - 12926: -51,-30 - 12927: -51,-31 - 12928: -53,-27 - 12929: -52,-26 - 12930: -52,-27 - 12931: -53,-25 - 12932: -51,-25 - 12933: -45,-27 - 12934: -45,-28 - 12935: -46,-29 - 12936: -47,-29 - 12937: -48,-31 - 12938: -46,-31 - 12939: -45,-31 - 12940: -46,-29 - 12941: -45,-28 - 13126: -30,-30 - 13127: -30,-29 - 13128: -30,-28 - 13129: -29,-28 - 13130: -28,-27 - 13131: -26,-27 - 13132: -26,-29 - 13133: -27,-30 - 13134: -29,-30 - 13135: -27,-29 - 13136: -27,-28 - 13137: -28,-28 - 13138: -28,-29 - 13139: -27,-28 - 13140: -29,-28 - 13141: 27,-57 - 13142: 28,-57 - 13235: 45,-52 - 13236: 44,-51 - 13237: 45,-50 - 13238: 45,-52 - 13239: 45,-53 - 13240: 46,-52 + 12917: -50,-27 + 12918: -51,-29 + 12919: -52,-30 + 12920: -52,-31 + 12921: -52,-31 + 12922: -52,-29 + 12923: -51,-30 + 12924: -51,-30 + 12925: -51,-31 + 12926: -53,-27 + 12927: -52,-26 + 12928: -52,-27 + 12929: -53,-25 + 12930: -51,-25 + 12931: -45,-27 + 12932: -45,-28 + 12933: -46,-29 + 12934: -47,-29 + 12935: -48,-31 + 12936: -46,-31 + 12937: -45,-31 + 12938: -46,-29 + 12939: -45,-28 + 13124: -30,-30 + 13125: -30,-29 + 13126: -30,-28 + 13127: -29,-28 + 13128: -28,-27 + 13129: -26,-27 + 13130: -26,-29 + 13131: -27,-30 + 13132: -29,-30 + 13133: -27,-29 + 13134: -27,-28 + 13135: -28,-28 + 13136: -28,-29 + 13137: -27,-28 + 13138: -29,-28 + 13139: 27,-57 + 13140: 28,-57 + 13233: 45,-52 + 13234: 44,-51 + 13235: 45,-50 + 13236: 45,-52 + 13237: 45,-53 + 13238: 46,-52 + 13239: 45,-55 + 13240: 46,-55 13241: 45,-55 - 13242: 46,-55 - 13243: 45,-55 - 13244: 45,-54 - 13245: 45,-52 - 13246: 45,-51 - 13247: 41,-54 - 13248: 41,-55 - 13249: 41,-55 - 13250: 40,-54 - 13251: 40,-53 - 13252: 40,-52 - 13253: 40,-51 - 13254: 40,-51 - 13255: 40,-53 - 13256: 41,-53 - 13257: 40,-54 - 13258: 39,-55 - 13259: 39,-55 - 13260: 40,-53 - 13261: 41,-52 + 13242: 45,-54 + 13243: 45,-52 + 13244: 45,-51 + 13245: 41,-54 + 13246: 41,-55 + 13247: 41,-55 + 13248: 40,-54 + 13249: 40,-53 + 13250: 40,-52 + 13251: 40,-51 + 13252: 40,-51 + 13253: 40,-53 + 13254: 41,-53 + 13255: 40,-54 + 13256: 39,-55 + 13257: 39,-55 + 13258: 40,-53 + 13259: 41,-52 + 13260: 41,-51 + 13261: 41,-50 13262: 41,-51 - 13263: 41,-50 - 13264: 41,-51 - 13265: 42,-52 - 13266: 40,-55 - 13267: 40,-56 - 13268: 39,-56 - 13269: 39,-56 - 13270: 42,-55 - 13271: 39,-51 - 13272: 46,-50 - 13273: 46,-51 - 13274: 47,-52 - 13275: 46,-54 - 13313: 52,-37 - 13331: 54,-39 - 13332: 55,-39 - 13333: 56,-39 - 13334: 55,-38 - 13335: 56,-36 - 13336: 53,-35 - 13337: 55,-37 - 13338: 55,-35 - 13481: -37,-63 - 13482: -37,-62 - 13483: -36,-62 - 13484: -37,-61 - 13485: -38,-60 - 13501: -41,-62 + 13263: 42,-52 + 13264: 40,-55 + 13265: 40,-56 + 13266: 39,-56 + 13267: 39,-56 + 13268: 42,-55 + 13269: 39,-51 + 13270: 46,-50 + 13271: 46,-51 + 13272: 47,-52 + 13273: 46,-54 + 13311: 52,-37 + 13329: 54,-39 + 13330: 55,-39 + 13331: 56,-39 + 13332: 55,-38 + 13333: 56,-36 + 13334: 53,-35 + 13335: 55,-37 + 13336: 55,-35 + 13479: -37,-63 + 13480: -37,-62 + 13481: -36,-62 + 13482: -37,-61 + 13483: -38,-60 + 13499: -41,-62 + 13500: -41,-63 + 13501: -40,-63 13502: -41,-63 - 13503: -40,-63 - 13504: -41,-63 - 16077: 78,4 - 16078: 79,4 - 16079: 79,5 - 16080: 78,5 - 16081: 92,6 - 16093: 99,-4 - 16094: 100,-4 - 16095: 100,-3 - 16096: 99,-3 - 16097: 99,-2 - 16098: 100,-2 - 16099: 93,-4 - 16333: -69,-43 - 16334: -69,-42 - 16335: -69,-41 - 16336: -66,-41 - 16337: -66,-43 - 16338: -65,-43 - 16339: -64,-40 + 16075: 78,4 + 16076: 79,4 + 16077: 79,5 + 16078: 78,5 + 16079: 92,6 + 16091: 99,-4 + 16092: 100,-4 + 16093: 100,-3 + 16094: 99,-3 + 16095: 99,-2 + 16096: 100,-2 + 16097: 93,-4 + 16331: -69,-43 + 16332: -69,-42 + 16333: -69,-41 + 16334: -66,-41 + 16335: -66,-43 + 16336: -65,-43 + 16337: -64,-40 + 16599: -43,-11 + 16600: -43,-12 16601: -43,-11 - 16602: -43,-12 - 16603: -43,-11 - 16604: -38,-10 - 16605: -37,-9 - 16606: -38,-9 - 16607: -38,-10 - 16608: -38,-10 - 16609: -38,-9 - 16610: -38,-11 - 16611: -43,-4 - 16612: -43,-3 + 16602: -38,-10 + 16603: -37,-9 + 16604: -38,-9 + 16605: -38,-10 + 16606: -38,-10 + 16607: -38,-9 + 16608: -38,-11 + 16609: -43,-4 + 16610: -43,-3 + 16611: -43,-2 + 16612: -43,-1 16613: -43,-2 - 16614: -43,-1 - 16615: -43,-2 - 16616: -43,-5 - 16617: -43,-6 - 16618: -43,-7 - 16619: -43,-7 - 16620: -43,-4 - 16621: -43,-2 - 16622: -43,0 - 16623: -43,1 - 16624: -42,1 - 16625: -42,0 - 16626: -43,0 - 16627: -42,1 - 16628: -41,1 - 16629: -42,-1 - 16630: -41,-2 - 16631: -41,-1 - 16632: -41,0 - 16633: -41,-2 - 16634: -41,-2 - 16635: -41,-1 - 16636: -41,0 - 16672: -41,-15 - 16673: -42,-16 - 16674: -42,-17 - 16675: -40,-18 - 16676: -39,-18 - 16677: -39,-17 - 16678: -40,-17 - 16679: -41,-17 - 16680: -40,-16 - 16681: -43,-15 - 16682: -42,-15 - 16683: -42,-14 - 16684: -41,-14 - 16685: -40,-14 - 19858: -28,-24 - 19859: -27,-23 - 19860: -27,-22 - 19861: -30,-24 - 19862: -30,-25 - 19863: -28,-25 - 19864: -29,-25 - 19865: -28,-22 - 19866: -27,-22 - 19867: -29,-22 - 19881: -30,-23 - 19882: -29,-23 - 19883: -28,-23 - 21531: -63,-29 - 21532: -63,-30 - 21533: -61,-29 - 21534: -62,-30 - 21535: -64,-30 - 21536: -65,-30 - 21537: -65,-30 - 21538: -60,-29 - 21539: -59,-29 - 21540: -59,-30 - 21541: -59,-30 - 21542: -59,-29 + 16614: -43,-5 + 16615: -43,-6 + 16616: -43,-7 + 16617: -43,-7 + 16618: -43,-4 + 16619: -43,-2 + 16620: -43,0 + 16621: -43,1 + 16622: -42,1 + 16623: -42,0 + 16624: -43,0 + 16625: -42,1 + 16626: -41,1 + 16627: -42,-1 + 16628: -41,-2 + 16629: -41,-1 + 16630: -41,0 + 16631: -41,-2 + 16632: -41,-2 + 16633: -41,-1 + 16634: -41,0 + 16670: -41,-15 + 16671: -42,-16 + 16672: -42,-17 + 16673: -40,-18 + 16674: -39,-18 + 16675: -39,-17 + 16676: -40,-17 + 16677: -41,-17 + 16678: -40,-16 + 16679: -43,-15 + 16680: -42,-15 + 16681: -42,-14 + 16682: -41,-14 + 16683: -40,-14 + 19856: -28,-24 + 19857: -27,-23 + 19858: -27,-22 + 19859: -30,-24 + 19860: -30,-25 + 19861: -28,-25 + 19862: -29,-25 + 19863: -28,-22 + 19864: -27,-22 + 19865: -29,-22 + 19879: -30,-23 + 19880: -29,-23 + 19881: -28,-23 + 21500: -63,-29 + 21501: -63,-30 + 21502: -61,-29 + 21503: -62,-30 + 21504: -64,-30 + 21505: -65,-30 + 21506: -65,-30 + 21507: -60,-29 + 21508: -59,-29 + 21509: -59,-30 + 21510: -59,-30 + 21511: -59,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21652,14 +21647,14 @@ entities: 1646: -60,-50 1647: -60,-48 1648: -58,-49 - 4028: -16,38 - 4035: -13,74 - 16373: -69,-35 - 16374: -69,-35 - 16375: -66,-36 - 16378: -69,-36 - 16379: -63,-33 - 16396: -70,-37 + 4026: -16,38 + 4033: -13,74 + 16371: -69,-35 + 16372: -69,-35 + 16373: -66,-36 + 16376: -69,-36 + 16377: -63,-33 + 16394: -70,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21679,23 +21674,23 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 13821: -28,-65 - 13822: -28,-64 - 13823: -28,-63 - 13974: -59,-35 - 13975: -59,-34 - 14081: -46,-41 + 13819: -28,-65 + 13820: -28,-64 + 13821: -28,-63 + 13972: -59,-35 + 13973: -59,-34 + 14079: -46,-41 + 14080: -47,-41 + 14081: -48,-41 14082: -47,-41 - 14083: -48,-41 - 14084: -47,-41 - 14085: -43,-41 - 14086: -40,-49 - 14087: -43,-47 - 14088: -35,-49 - 14089: -35,-50 - 14090: -33,-49 - 14091: -33,-49 - 14092: -33,-50 + 14083: -43,-41 + 14084: -40,-49 + 14085: -43,-47 + 14086: -35,-49 + 14087: -35,-50 + 14088: -33,-49 + 14089: -33,-49 + 14090: -33,-50 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -21712,8 +21707,8 @@ entities: decals: 1131: 1,-6 1171: 70,-18 - 15840: 81,3 - 21370: -16.774988,18.928102 + 15838: 81,3 + 21368: -16.774988,18.928102 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -21722,7 +21717,7 @@ entities: 540: -1,-84 541: 0,-84 1126: -6,-4 - 21369: -16.884361,19.974977 + 21367: -16.884361,19.974977 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -21749,19 +21744,22 @@ entities: 543: -1,-84 544: 0,-84 1132: -5,-5 + 21667: 14.879294,19.98756 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 504: -6.064717,-73.98025 1134: -4,4 + 21669: 14.941794,19.05006 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 1133: 3,1 1172: 72,-18 - 15562: 68,-21 + 15560: 68,-21 + 21668: 15.051168,17.92506 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -21842,26 +21840,26 @@ entities: color: '#FFFFFFFF' id: Grassa3 decals: - 2168: -18,43 + 2166: -18,43 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 15563: 69,-21 - 18700: 3,-3 + 15561: 69,-21 + 18698: 3,-3 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 15839: 89,3 + 15837: 89,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: 1137: 4,4 1252: -34,40 - 2184: -20,42 - 2853: -34,41 + 2182: -20,42 + 2851: -34,41 - node: color: '#FFFFFFFF' id: Grassb2 @@ -21880,7 +21878,7 @@ entities: 1135: -3,4 1169: 70,-24 1573: -39,32 - 2171: -18,39 + 2169: -18,39 - node: color: '#FFFFFFFF' id: Grassb5 @@ -21888,9 +21886,9 @@ entities: 1136: 1,-4 1170: 68,-20 1574: -40,35 - 2172: -21,41 - 2852: -33,42 - 18701: 2,2 + 2170: -21,41 + 2850: -33,42 + 18699: 2,2 - node: color: '#FFFFFFFF' id: Grassc1 @@ -21906,9 +21904,8 @@ entities: 1107: 2,8 1163: 69,-18 1250: -34,42 - 2167: -20,39 - 21367: 14.954241,19.381239 - 21368: -16.861458,19.162476 + 2165: -20,39 + 21366: -16.861458,19.162476 - node: cleanable: True color: '#FFFFFFFF' @@ -21947,9 +21944,9 @@ entities: 1165: 70,-23 1167: 71,-21 1575: -39,31 - 2183: -20,40 - 2851: -33,40 - 18702: 4,-4 + 2181: -20,40 + 2849: -33,40 + 18700: 4,-4 - node: color: '#FFFFFFFF' id: Grassc4 @@ -21961,10 +21958,10 @@ entities: 1121: -3,7 1166: 72,-24 1568: -41,33 - 2166: -21,42 - 2170: -17,42 - 15560: 68,-23 - 15561: 69,-23 + 2164: -21,42 + 2168: -17,42 + 15558: 68,-23 + 15559: 69,-23 - node: color: '#FFFFFFFF' id: Grassd1 @@ -21980,24 +21977,29 @@ entities: 1150: 73,-24 1569: -40,31 1576: -41,32 - 2150: -19,43 - 2158: -18,42 - 2159: -18,42 - 2160: -18,43 - 15538: 71,-24 - 15539: 72,-23 - 15540: 69,-23 - 15541: 70,-23 - 15542: 73,-23 - 15546: 72,-20 - 15547: 71,-20 - 15548: 69,-21 - 15549: 70,-17 - 15550: 71,-17 - 15551: 68,-18 - 15552: 72,-18 - 15553: 74,-18 - 15554: 72,-17 + 2148: -19,43 + 2156: -18,42 + 2157: -18,42 + 2158: -18,43 + 15536: 71,-24 + 15537: 72,-23 + 15538: 69,-23 + 15539: 70,-23 + 15540: 73,-23 + 15544: 72,-20 + 15545: 71,-20 + 15546: 69,-21 + 15547: 70,-17 + 15548: 71,-17 + 15549: 68,-18 + 15550: 72,-18 + 15551: 74,-18 + 15552: 72,-17 + 21661: 14.848043,17.971935 + 21662: 14.910544,18.565685 + 21663: 14.879294,19.440685 + 21664: 14.457419,19.596935 + 21665: 14.785545,20.45631 - node: color: '#FFFFFFFF' id: Grassd2 @@ -22013,57 +22015,56 @@ entities: 1152: 72,-17 1153: 69,-23 1578: -39,35 - 2149: -17,41 - 2161: -18,39 - 2181: -20,40 - 2185: -20,42 - 2186: -20,42 - 15555: 73,-17 - 15556: 71,-18 - 15557: 71,-18 - 15558: 69,-17 - 15559: 71,-17 - 15835: 82,3 - 18597: -6,0 - 18598: -6,1 - 18599: -6,-1 - 18600: -3,-1 - 18601: -3,0 - 18602: -5,-1 - 18603: -3,-3 - 18604: -4,-2 - 18605: -3,4 - 18606: -3,4 - 18607: -3,3 - 18608: -3,5 - 18609: -3,6 - 18610: -3,7 - 18611: -4,7 - 18612: -4,8 - 18613: -3,9 - 18614: -3,8 + 2147: -17,41 + 2159: -18,39 + 2179: -20,40 + 2183: -20,42 + 2184: -20,42 + 15553: 73,-17 + 15554: 71,-18 + 15555: 71,-18 + 15556: 69,-17 + 15557: 71,-17 + 15833: 82,3 + 18595: -6,0 + 18596: -6,1 + 18597: -6,-1 + 18598: -3,-1 + 18599: -3,0 + 18600: -5,-1 + 18601: -3,-3 + 18602: -4,-2 + 18603: -3,4 + 18604: -3,4 + 18605: -3,3 + 18606: -3,5 + 18607: -3,6 + 18608: -3,7 + 18609: -4,7 + 18610: -4,8 + 18611: -3,9 + 18612: -3,8 + 18613: -4,8 + 18614: -4,9 18615: -4,8 - 18616: -4,9 + 18616: -4,7 18617: -4,8 - 18618: -4,7 - 18619: -4,8 - 18620: -3,9 - 18621: -3,8 - 18622: -4,5 - 18623: -4,6 - 18624: -3,5 - 18625: -4,4 - 18626: -5,4 - 18627: -4,3 - 18628: -3,2 - 18657: 2,-2 - 18658: 3,-1 - 18659: 2,-4 - 18660: 1,-5 - 18661: 3,-6 - 18662: 4,-6 - 18663: 4,-6 - 21372: 14.885454,17.936722 + 18618: -3,9 + 18619: -3,8 + 18620: -4,5 + 18621: -4,6 + 18622: -3,5 + 18623: -4,4 + 18624: -5,4 + 18625: -4,3 + 18626: -3,2 + 18655: 2,-2 + 18656: 3,-1 + 18657: 2,-4 + 18658: 1,-5 + 18659: 3,-6 + 18660: 4,-6 + 18661: 4,-6 - node: color: '#FFFFFFFF' id: Grassd3 @@ -22077,15 +22078,16 @@ entities: 1155: 74,-20 1156: 69,-17 1570: -39,32 - 2148: -17,42 - 2162: -19,39 - 2163: -20,43 - 2182: -20,42 - 2849: -33,42 - 2850: -34,41 - 15838: 89,3 - 21364: -16.892008,19.490566 - 21373: -16.71812,17.842958 + 2146: -17,42 + 2160: -19,39 + 2161: -20,43 + 2180: -20,42 + 2847: -33,42 + 2848: -34,41 + 15836: 89,3 + 21362: -16.892008,19.490566 + 21371: -16.71812,17.842958 + 21666: 15.035544,19.95631 - node: color: '#FFFFFFFF' id: Grasse1 @@ -22099,31 +22101,30 @@ entities: 1158: 69,-20 1572: -38,34 1577: -39,34 - 2154: -21,41 - 2155: -21,41 - 15837: 88,3 - 18629: -4,-2 - 18630: -3,-2 - 18631: -3,-4 - 18632: -3,-4 - 18633: -3,-6 + 2152: -21,41 + 2153: -21,41 + 15835: 88,3 + 18627: -4,-2 + 18628: -3,-2 + 18629: -3,-4 + 18630: -3,-4 + 18631: -3,-6 + 18632: -4,-6 + 18633: -5,-6 18634: -4,-6 - 18635: -5,-6 - 18636: -4,-6 - 18637: -4,-5 - 18638: -5,-5 - 18639: -3,-5 - 18640: -3,-4 - 18641: -5,-3 - 18642: -6,-2 - 18643: -5,-1 - 18644: -6,0 - 18645: 3,1 - 18646: 2,1 + 18635: -4,-5 + 18636: -5,-5 + 18637: -3,-5 + 18638: -3,-4 + 18639: -5,-3 + 18640: -6,-2 + 18641: -5,-1 + 18642: -6,0 + 18643: 3,1 + 18644: 2,1 + 18645: 2,3 + 18646: 1,2 18647: 2,3 - 18648: 1,2 - 18649: 2,3 - 21363: 14.992542,20.099949 - node: color: '#FFFFFFFF' id: Grasse2 @@ -22137,18 +22138,18 @@ entities: 1160: 70,-21 1251: -33,43 1571: -41,35 - 2147: -17,40 - 2151: -20,43 - 2152: -20,39 - 2169: -19,43 - 15836: 81,3 - 18695: 4,-4 - 18696: 4,-3 - 18697: 4,-3 - 18698: 3,-5 - 18699: 3,-1 - 21366: -17.048258,19.490566 - 21375: -16.921246,18.874208 + 2145: -17,40 + 2149: -20,43 + 2150: -20,39 + 2167: -19,43 + 15834: 81,3 + 18693: 4,-4 + 18694: 4,-3 + 18695: 4,-3 + 18696: 3,-5 + 18697: 3,-1 + 21364: -17.048258,19.490566 + 21373: -16.921246,18.874208 - node: color: '#FFFFFFFF' id: Grasse3 @@ -22159,64 +22160,62 @@ entities: 1161: 73,-18 1162: 74,-23 1249: -33,40 - 2146: -21,42 - 2153: -21,40 - 2156: -18,40 - 2157: -18,40 - 2164: -21,40 - 2165: -17,42 - 15543: 73,-21 - 15544: 74,-21 - 15545: 72,-20 - 18650: 1,3 - 18651: 1,4 - 18652: 1,5 - 18653: 1,6 - 18654: 1,7 - 18655: 1,8 - 18656: 1,8 - 18664: 1,-6 - 18665: 1,-3 - 18666: 4,-2 - 18667: 4,-2 - 18668: 3,-2 - 18669: 3,2 - 18670: 3,2 - 18671: 3,3 - 18672: 3,3 - 18673: 3,4 - 18674: 4,4 - 18675: 4,2 - 18676: 3,0 + 2144: -21,42 + 2151: -21,40 + 2154: -18,40 + 2155: -18,40 + 2162: -21,40 + 2163: -17,42 + 15541: 73,-21 + 15542: 74,-21 + 15543: 72,-20 + 18648: 1,3 + 18649: 1,4 + 18650: 1,5 + 18651: 1,6 + 18652: 1,7 + 18653: 1,8 + 18654: 1,8 + 18662: 1,-6 + 18663: 1,-3 + 18664: 4,-2 + 18665: 4,-2 + 18666: 3,-2 + 18667: 3,2 + 18668: 3,2 + 18669: 3,3 + 18670: 3,3 + 18671: 3,4 + 18672: 4,4 + 18673: 4,2 + 18674: 3,0 + 18675: 3,-1 + 18676: 3,-1 18677: 3,-1 - 18678: 3,-1 - 18679: 3,-1 - 18680: 3,0 + 18678: 3,0 + 18679: 4,0 + 18680: 4,0 18681: 4,0 - 18682: 4,0 - 18683: 4,0 - 18684: 1,0 - 18685: 2,-2 - 18686: 3,-2 + 18682: 1,0 + 18683: 2,-2 + 18684: 3,-2 + 18685: 3,-3 + 18686: 2,-3 18687: 3,-3 - 18688: 2,-3 - 18689: 3,-3 - 18690: 3,-3 - 18691: 4,-4 - 18692: 2,-5 - 18693: 2,-5 - 18694: 3,-4 - 21362: 14.976916,19.162449 - 21365: -16.985758,20.224941 - 21371: 14.71358,18.577347 - 21374: -16.952496,18.202333 + 18688: 3,-3 + 18689: 4,-4 + 18690: 2,-5 + 18691: 2,-5 + 18692: 3,-4 + 21363: -16.985758,20.224941 + 21372: -16.952496,18.202333 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 1787: -71,-23 - 1788: -70,-23 - 1789: -69,-23 + 1785: -71,-23 + 1786: -70,-23 + 1787: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -22245,9 +22244,9 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 15693: 96,7 - 15694: 97,7 - 15700: 95,7 + 15691: 96,7 + 15692: 97,7 + 15698: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -22272,9 +22271,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale decals: - 3793: 10,70 - 3794: 11,70 - 3795: 12,70 + 3791: 10,70 + 3792: 11,70 + 3793: 12,70 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -22299,8 +22298,8 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 1795: -70,-29 - 1796: -69,-29 + 1793: -70,-29 + 1794: -69,-29 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -22337,8 +22336,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 15691: 95,6 - 15692: 97,6 + 15689: 95,6 + 15690: 97,6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -22350,9 +22349,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale180 decals: - 3802: 10,66 - 3803: 11,66 - 3804: 12,66 + 3800: 10,66 + 3801: 11,66 + 3802: 12,66 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -22363,10 +22362,10 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 1790: -72,-24 - 1791: -72,-25 - 1792: -72,-27 - 1793: -72,-28 + 1788: -72,-24 + 1789: -72,-25 + 1790: -72,-27 + 1791: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -22404,8 +22403,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale270 decals: - 15695: 95,6 - 15699: 95,7 + 15693: 95,6 + 15697: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -22421,11 +22420,11 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale270 decals: - 3788: 10,67 - 3789: 10,66 - 3790: 10,68 - 3791: 10,69 - 3792: 10,70 + 3786: 10,67 + 3787: 10,66 + 3788: 10,68 + 3789: 10,69 + 3790: 10,70 - node: cleanable: True color: '#EFB34196' @@ -22477,8 +22476,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale90 decals: - 15696: 97,6 - 15697: 97,7 + 15694: 97,6 + 15695: 97,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -22494,12 +22493,12 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale90 decals: - 3796: 12,70 - 3797: 12,69 - 3798: 12,68 - 3799: 12,68 - 3800: 12,67 - 3801: 12,66 + 3794: 12,70 + 3795: 12,69 + 3796: 12,68 + 3797: 12,68 + 3798: 12,67 + 3799: 12,66 - node: cleanable: True color: '#EFB34196' @@ -22546,170 +22545,170 @@ entities: 25: 24,52 985: -35,-40 1055: -35,-45 - 3131: -2,60 + 3129: -2,60 - node: angle: 3.141592653589793 rad color: '#8BDA8EFF' id: LoadingAreaGreyscale decals: - 15698: 96,6 + 15696: 96,6 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNe decals: - 15953: 78,10 - 15973: 86,10 - 16001: 93,23 + 15951: 78,10 + 15971: 86,10 + 15999: 93,23 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNw decals: - 15951: 76,10 - 15954: 80,10 - 16002: 91,23 - 16011: 81,14 + 15949: 76,10 + 15952: 80,10 + 16000: 91,23 + 16009: 81,14 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSe decals: - 15956: 78,8 - 15972: 86,9 - 15994: 93,12 + 15954: 78,8 + 15970: 86,9 + 15992: 93,12 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSw decals: - 15955: 76,8 - 16009: 81,12 + 15953: 76,8 + 16007: 81,12 - node: color: '#DA8B8BFF' id: MiniTileDarkEndW decals: - 16044: 91,15 + 16042: 91,15 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNe decals: - 15964: 78,9 - 15981: 83,10 - 16022: 93,13 - 16026: 93,17 - 16030: 93,21 - 16035: 92,23 + 15962: 78,9 + 15979: 83,10 + 16020: 93,13 + 16024: 93,17 + 16028: 93,21 + 16033: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNw decals: - 15958: 76,9 - 15965: 80,9 - 15980: 83,10 - 16021: 91,14 - 16032: 91,21 - 16036: 92,23 + 15956: 76,9 + 15963: 80,9 + 15978: 83,10 + 16019: 91,14 + 16030: 91,21 + 16034: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSe decals: - 15962: 78,9 - 16023: 93,13 - 16027: 93,17 - 16028: 93,20 - 16029: 93,21 + 15960: 78,9 + 16021: 93,13 + 16025: 93,17 + 16026: 93,20 + 16027: 93,21 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSw decals: - 15963: 76,9 - 16033: 91,21 + 15961: 76,9 + 16031: 91,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineE decals: - 15959: 75,9 - 15960: 79,9 - 15995: 93,14 - 15996: 93,16 - 15997: 93,18 - 15998: 93,19 - 15999: 93,20 - 16000: 93,22 - 16034: 90,21 + 15957: 75,9 + 15958: 79,9 + 15993: 93,14 + 15994: 93,16 + 15995: 93,18 + 15996: 93,19 + 15997: 93,20 + 15998: 93,22 + 16032: 90,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineN decals: - 15948: 83,11 - 15952: 77,10 - 15974: 85,10 - 15975: 84,10 - 15976: 81,10 - 15977: 82,10 - 15978: 83,11 - 16012: 82,14 - 16013: 84,14 - 16014: 83,14 - 16015: 85,14 - 16016: 86,14 - 16017: 87,14 - 16018: 89,14 - 16019: 88,14 - 16020: 90,14 - 16043: 92,15 - 16048: 91,15 - 16049: 93,15 + 15946: 83,11 + 15950: 77,10 + 15972: 85,10 + 15973: 84,10 + 15974: 81,10 + 15975: 82,10 + 15976: 83,11 + 16010: 82,14 + 16011: 84,14 + 16012: 83,14 + 16013: 85,14 + 16014: 86,14 + 16015: 87,14 + 16016: 89,14 + 16017: 88,14 + 16018: 90,14 + 16041: 92,15 + 16046: 91,15 + 16047: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineS decals: - 15949: 83,11 - 15957: 77,8 - 15966: 80,9 - 15967: 81,9 - 15968: 82,9 - 15969: 83,9 - 15970: 84,9 - 15971: 85,9 - 15979: 83,11 - 15982: 82,12 - 15983: 84,12 - 15984: 85,12 - 15985: 86,12 - 15986: 87,12 - 15987: 89,12 - 15988: 88,12 - 15989: 90,12 - 15990: 91,12 - 15991: 92,12 - 15992: 93,12 - 16037: 92,24 - 16042: 92,15 - 16046: 91,15 - 16047: 93,15 + 15947: 83,11 + 15955: 77,8 + 15964: 80,9 + 15965: 81,9 + 15966: 82,9 + 15967: 83,9 + 15968: 84,9 + 15969: 85,9 + 15977: 83,11 + 15980: 82,12 + 15981: 84,12 + 15982: 85,12 + 15983: 86,12 + 15984: 87,12 + 15985: 89,12 + 15986: 88,12 + 15987: 90,12 + 15988: 91,12 + 15989: 92,12 + 15990: 93,12 + 16035: 92,24 + 16040: 92,15 + 16044: 91,15 + 16045: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineW decals: - 15961: 79,9 - 15993: 94,13 - 16003: 91,22 - 16004: 91,20 - 16005: 91,19 - 16006: 91,18 - 16007: 91,17 - 16008: 91,16 - 16010: 81,13 - 16024: 94,13 - 16025: 94,17 - 16031: 94,21 + 15959: 79,9 + 15991: 94,13 + 16001: 91,22 + 16002: 91,20 + 16003: 91,19 + 16004: 91,18 + 16005: 91,17 + 16006: 91,16 + 16008: 81,13 + 16022: 94,13 + 16023: 94,17 + 16029: 94,21 - node: color: '#8CB7E8FF' id: MiniTileDiagonalCheckerBOverlay decals: - 10023: 32,-40 - 10024: 33,-40 - 10025: 34,-40 - 10026: 35,-40 - 10027: 36,-40 + 10021: 32,-40 + 10022: 33,-40 + 10023: 34,-40 + 10024: 35,-40 + 10025: 36,-40 - node: color: '#1D1D214C' id: MiniTileDiagonalOverlay @@ -22732,34 +22731,34 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 15566: 7,-15 + 15564: 7,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 15567: 9,-15 + 15565: 9,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 15565: 7,-13 + 15563: 7,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 15564: 9,-13 + 15562: 9,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 15578: 9,-14 - 18556: 8,-13 + 15576: 9,-14 + 18554: 8,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 15577: 7,-14 - 18555: 8,-13 + 15575: 7,-14 + 18553: 8,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -22771,8 +22770,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 15573: 8,-16 - 15574: 9,-14 + 15571: 8,-16 + 15572: 9,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22783,8 +22782,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 15575: 8,-16 - 15576: 7,-14 + 15573: 8,-16 + 15574: 7,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22795,29 +22794,29 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 15570: 7,-16 - 15571: 6,-14 + 15568: 7,-16 + 15569: 6,-14 - node: color: '#DA8B8BFF' id: MiniTileSteelLineN decals: - 15950: 83,11 + 15948: 83,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 15568: 8,-17 + 15566: 8,-17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 18554: 8,-12 + 18552: 8,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 15569: 9,-16 - 15572: 10,-14 + 15567: 9,-16 + 15570: 10,-14 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -22842,12 +22841,12 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 13316: 53,-37 + 13314: 53,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 13315: 53,-37 + 13313: 53,-37 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE @@ -22862,14 +22861,14 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 13314: 52,-37 + 13312: 52,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 5702: 13,3 - 13319: 54,-35 - 13320: 55,-35 + 5700: 13,3 + 13317: 54,-35 + 13318: 55,-35 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW @@ -22884,75 +22883,75 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 13317: 53,-36 - 13318: 53,-38 + 13315: 53,-36 + 13316: 53,-38 - node: color: '#630000FF' id: Omni decals: - 13630: -32.978848,-78.98036 + 13628: -32.978848,-78.98036 - node: color: '#00000019' id: OriginStationSign4 decals: - 13859: -68,61 - 13860: -68,60 - 13861: -68,59 - 13862: -68,58 - 13863: -67,58 - 13864: -67,57 - 13865: -66,58 - 13866: -66,59 - 13867: -67,59 - 13868: -67,60 - 13869: -66,60 - 13870: -66,61 - 13871: -67,61 - 13872: -65,62 - 13873: -65,61 - 13874: -65,60 - 13877: -65,59 - 13881: -65,58 - 13944: -68,62 - 13945: -67,62 - 13946: -66,62 + 13857: -68,61 + 13858: -68,60 + 13859: -68,59 + 13860: -68,58 + 13861: -67,58 + 13862: -67,57 + 13863: -66,58 + 13864: -66,59 + 13865: -67,59 + 13866: -67,60 + 13867: -66,60 + 13868: -66,61 + 13869: -67,61 + 13870: -65,62 + 13871: -65,61 + 13872: -65,60 + 13875: -65,59 + 13879: -65,58 + 13942: -68,62 + 13943: -67,62 + 13944: -66,62 - node: color: '#00000028' id: OriginStationSign4 decals: - 13976: -72,57 - 13977: -72,58 - 13978: -71,58 - 13979: -71,57 - 13980: -70,57 - 13981: -70,58 - 13982: -72,58 - 13983: -72,57 - 13984: -71,57 - 13985: -71,58 - 13986: -70,58 - 13987: -70,57 - 13988: -72,56 - 13989: -71,56 - 13990: -70,56 - 13991: -72,57 - 13992: -72,58 - 13993: -71,58 - 13994: -71,57 - 13995: -70,57 - 13996: -70,58 - 13997: -72,58 - 13998: -71,58 - 13999: -70,58 - 14000: -71,57 - 14001: -71,58 - 14002: -70,58 - 14003: -72,58 - 14004: -71,56 - 14005: -72,56 - 14006: -71,58 - 14007: -70,58 - 14008: -70,57 + 13974: -72,57 + 13975: -72,58 + 13976: -71,58 + 13977: -71,57 + 13978: -70,57 + 13979: -70,58 + 13980: -72,58 + 13981: -72,57 + 13982: -71,57 + 13983: -71,58 + 13984: -70,58 + 13985: -70,57 + 13986: -72,56 + 13987: -71,56 + 13988: -70,56 + 13989: -72,57 + 13990: -72,58 + 13991: -71,58 + 13992: -71,57 + 13993: -70,57 + 13994: -70,58 + 13995: -72,58 + 13996: -71,58 + 13997: -70,58 + 13998: -71,57 + 13999: -71,58 + 14000: -70,58 + 14001: -72,58 + 14002: -71,56 + 14003: -72,56 + 14004: -71,58 + 14005: -70,58 + 14006: -70,57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -22999,9 +22998,9 @@ entities: id: Remains decals: 260: 37,-56 - 13629: -33.82276,-75.75149 - 16054: 99.21471,-3.5288568 - 18763: -42.945545,-64.87067 + 13627: -33.82276,-75.75149 + 16052: 99.21471,-3.5288568 + 18761: -42.945545,-64.87067 - node: cleanable: True color: '#FFFFFFFF' @@ -23012,72 +23011,72 @@ entities: color: '#FFFFFFFF' id: Rock01 decals: - 18703: -4,-5 - 18709: 1,4 + 18701: -4,-5 + 18707: 1,4 - node: color: '#FFFFFFFF' id: Rock02 decals: 885: -36,48 - 18704: 3,-1 + 18702: 3,-1 - node: color: '#FFFFFFFF' id: Rock03 decals: - 18706: -6,0 - 18710: -4,8 + 18704: -6,0 + 18708: -4,8 - node: color: '#FFFFFFFF' id: Rock04 decals: 886: -36,50 - 18705: 3,4 - 18711: 2,2 + 18703: 3,4 + 18709: 2,2 - node: color: '#FFFFFFFF' id: Rock05 decals: - 18707: -6,-6 - 18712: -3,-2 + 18705: -6,-6 + 18710: -3,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: 477: 0,0 - 15841: 82,3 - 18708: 3,-3 + 15839: 82,3 + 18706: 3,-3 - node: color: '#000000FF' id: Rust decals: + 2585: -19,41 + 2586: -19,41 2587: -19,41 2588: -19,41 - 2589: -19,41 - 2590: -19,41 + 2589: -19,40 + 2590: -19,40 2591: -19,40 - 2592: -19,40 - 2593: -19,40 - 2594: -18,41 - 2595: -18,41 - 2596: -19,42 - 2597: -19,42 + 2592: -18,41 + 2593: -18,41 + 2594: -19,42 + 2595: -19,42 + 2596: -20,41 + 2597: -20,41 2598: -20,41 2599: -20,41 - 2600: -20,41 - 2601: -20,41 - 2602: -19,42 - 2603: -18,41 - 2604: -19,40 + 2600: -19,42 + 2601: -18,41 + 2602: -19,40 - node: cleanable: True color: '#FFFFFF5D' id: Rust decals: - 16398: -71,-36 - 16399: -67,-35 - 16400: -63,-35 - 16401: -65,-37 - 16402: -65,-37 + 16396: -71,-36 + 16397: -67,-35 + 16398: -63,-35 + 16399: -65,-37 + 16400: -65,-37 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -23107,7 +23106,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 1786: -72,-23 + 1784: -72,-23 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale @@ -23145,7 +23144,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1794: -72,-29 + 1792: -72,-29 - node: color: '#C3E6A5FF' id: ThreeQuarterTileOverlayGreyscale270 @@ -23183,8 +23182,8 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 13294: -58,23 - 13295: -58,24 + 13292: -58,23 + 13293: -58,24 - node: color: '#FFFFFFFF' id: WarnCorner @@ -23235,9 +23234,9 @@ entities: 680: -27,-50 687: -9,-46 692: -27,-54 - 1799: -71,-27 - 1804: -71,-23 - 13303: -52,29 + 1797: -71,-27 + 1802: -71,-23 + 13301: -52,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23251,9 +23250,9 @@ entities: 681: -31,-50 688: -11,-46 691: -30,-54 - 1798: -72,-27 - 1803: -72,-23 - 13304: -54,29 + 1796: -72,-27 + 1801: -72,-23 + 13302: -54,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23267,8 +23266,8 @@ entities: decals: 689: -9,-48 694: -27,-55 - 1802: -71,-25 - 13302: -52,27 + 1800: -71,-25 + 13300: -52,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23281,9 +23280,9 @@ entities: decals: 686: -11,-48 693: -30,-55 - 1797: -72,-29 - 1805: -72,-25 - 13301: -54,27 + 1795: -72,-29 + 1803: -72,-25 + 13299: -54,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23294,51 +23293,51 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6220: -14,-19 - 13290: -63,21 - 18212: -52,-5 - 18227: -56,-12 - 18237: -51,-10 - 18325: -74,-4 - 18331: -73,-3 - 18332: -71,-3 - 18333: -69,-3 + 6218: -14,-19 + 13288: -63,21 + 18210: -52,-5 + 18225: -56,-12 + 18235: -51,-10 + 18323: -74,-4 + 18329: -73,-3 + 18330: -71,-3 + 18331: -69,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6221: -10,-19 - 18228: -54,-16 - 18238: -49,-10 - 18326: -66,-4 - 18329: -67,-3 - 18330: -71,-3 + 6219: -10,-19 + 18226: -54,-16 + 18236: -49,-10 + 18324: -66,-4 + 18327: -67,-3 + 18328: -71,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6225: -14,-17 - 13289: -63,27 - 18213: -52,0 - 18215: -56,-4 - 18236: -51,-6 - 18247: -55,9 - 18324: -74,2 - 18334: -73,1 - 18335: -71,1 - 18336: -69,1 + 6223: -14,-17 + 13287: -63,27 + 18211: -52,0 + 18213: -56,-4 + 18234: -51,-6 + 18245: -55,9 + 18322: -74,2 + 18332: -73,1 + 18333: -71,1 + 18334: -69,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6226: -10,-17 - 18214: -54,0 - 18235: -49,-6 - 18248: -50,9 - 18327: -66,2 - 18328: -67,1 - 18337: -71,1 - 18338: -69,1 + 6224: -10,-17 + 18212: -54,0 + 18233: -49,-6 + 18246: -50,9 + 18325: -66,2 + 18326: -67,1 + 18335: -71,1 + 18336: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23394,47 +23393,47 @@ entities: id: WarnLineE decals: 685: -27,-51 - 1800: -71,-28 - 6190: -13,-16 - 6191: -13,-15 - 6192: -13,-14 - 6193: -13,-13 - 6203: -15,-16 - 6204: -15,-15 - 6205: -15,-14 - 6206: -15,-13 - 6207: -15,-13 - 6208: -11,-16 - 6209: -11,-15 - 6210: -11,-14 - 6211: -11,-13 - 13284: -63,22 - 13285: -63,23 - 13286: -63,24 - 13287: -63,25 - 13288: -63,26 - 13305: -52,28 - 18186: -52,-1 - 18187: -52,-2 - 18188: -52,-2 - 18189: -52,-4 - 18190: -52,-3 - 18229: -51,-9 - 18230: -51,-8 - 18231: -51,-7 - 18298: -74,-3 - 18299: -74,-2 - 18300: -74,-1 - 18301: -74,0 - 18302: -74,1 - 18315: -73,0 - 18316: -73,-1 - 18317: -73,-2 - 19361: 55,4 - 19362: 55,5 - 19367: 69,0 - 19371: 69,-1 - 19372: 69,1 + 1798: -71,-28 + 6188: -13,-16 + 6189: -13,-15 + 6190: -13,-14 + 6191: -13,-13 + 6201: -15,-16 + 6202: -15,-15 + 6203: -15,-14 + 6204: -15,-13 + 6205: -15,-13 + 6206: -11,-16 + 6207: -11,-15 + 6208: -11,-14 + 6209: -11,-13 + 13282: -63,22 + 13283: -63,23 + 13284: -63,24 + 13285: -63,25 + 13286: -63,26 + 13303: -52,28 + 18184: -52,-1 + 18185: -52,-2 + 18186: -52,-2 + 18187: -52,-4 + 18188: -52,-3 + 18227: -51,-9 + 18228: -51,-8 + 18229: -51,-7 + 18296: -74,-3 + 18297: -74,-2 + 18298: -74,-1 + 18299: -74,0 + 18300: -74,1 + 18313: -73,0 + 18314: -73,-1 + 18315: -73,-2 + 19359: 55,4 + 19360: 55,5 + 19365: 69,0 + 19369: 69,-1 + 19370: 69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23455,8 +23454,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleE decals: - 21352: -18,14 - 21353: -18,15 + 21350: -18,14 + 21351: -18,15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -23471,8 +23470,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleW decals: - 21354: 16,14 - 21355: 16,15 + 21352: 16,14 + 21353: 16,15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -23482,41 +23481,41 @@ entities: 695: -29,-55 696: -28,-55 744: 66,12 - 5184: 33,37 - 6222: -13,-17 - 6223: -12,-17 - 6224: -11,-17 - 13291: -62,27 - 13292: -61,27 - 13293: -60,27 - 13300: -59,27 - 13306: -53,27 - 18177: -59,0 - 18178: -58,0 - 18179: -57,0 - 18180: -57,0 - 18181: -55,0 - 18182: -56,0 - 18183: -51,0 - 18184: -50,0 - 18185: -49,0 - 18216: -55,-4 - 18239: -54,9 - 18240: -53,9 - 18241: -52,9 - 18242: -51,9 - 18291: -73,2 - 18292: -72,2 - 18293: -71,2 - 18294: -70,2 - 18295: -69,2 - 18296: -68,2 - 18297: -67,2 - 18321: -72,1 - 18322: -70,1 - 18323: -68,1 - 21518: -71,1 - 21519: -69,1 + 5182: 33,37 + 6220: -13,-17 + 6221: -12,-17 + 6222: -11,-17 + 13289: -62,27 + 13290: -61,27 + 13291: -60,27 + 13298: -59,27 + 13304: -53,27 + 18175: -59,0 + 18176: -58,0 + 18177: -57,0 + 18178: -57,0 + 18179: -55,0 + 18180: -56,0 + 18181: -51,0 + 18182: -50,0 + 18183: -49,0 + 18214: -55,-4 + 18237: -54,9 + 18238: -53,9 + 18239: -52,9 + 18240: -51,9 + 18289: -73,2 + 18290: -72,2 + 18291: -71,2 + 18292: -70,2 + 18293: -69,2 + 18294: -68,2 + 18295: -67,2 + 18319: -72,1 + 18320: -70,1 + 18321: -68,1 + 21487: -71,1 + 21488: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23537,51 +23536,51 @@ entities: id: WarnLineS decals: 679: -31,-51 - 1801: -72,-28 - 1806: -72,-24 - 6194: -11,-16 - 6195: -11,-15 - 6196: -11,-14 - 6197: -11,-14 - 6198: -11,-13 - 6199: -13,-16 - 6200: -13,-15 - 6201: -13,-14 - 6202: -13,-13 - 6212: -9,-16 - 6213: -9,-15 - 6214: -9,-14 - 6215: -9,-14 - 6216: -9,-13 - 6230: -15,-16 - 6231: -15,-15 - 6232: -15,-14 - 6233: -15,-13 - 13307: -54,28 - 18173: -54,-4 - 18174: -54,-3 - 18175: -54,-2 - 18176: -54,-1 - 18211: -54,-4 - 18222: -54,-15 - 18223: -54,-14 - 18224: -54,-13 - 18225: -54,-12 - 18232: -49,-9 - 18233: -49,-8 - 18234: -49,-7 - 18303: -66,1 - 18304: -66,0 - 18305: -66,-1 - 18306: -66,-2 - 18307: -66,-3 - 18308: -67,0 - 18309: -67,-1 - 18310: -67,-2 - 18311: -67,-2 + 1799: -72,-28 + 1804: -72,-24 + 6192: -11,-16 + 6193: -11,-15 + 6194: -11,-14 + 6195: -11,-14 + 6196: -11,-13 + 6197: -13,-16 + 6198: -13,-15 + 6199: -13,-14 + 6200: -13,-13 + 6210: -9,-16 + 6211: -9,-15 + 6212: -9,-14 + 6213: -9,-14 + 6214: -9,-13 + 6228: -15,-16 + 6229: -15,-15 + 6230: -15,-14 + 6231: -15,-13 + 13305: -54,28 + 18171: -54,-4 + 18172: -54,-3 + 18173: -54,-2 + 18174: -54,-1 + 18209: -54,-4 + 18220: -54,-15 + 18221: -54,-14 + 18222: -54,-13 + 18223: -54,-12 + 18230: -49,-9 + 18231: -49,-8 + 18232: -49,-7 + 18301: -66,1 + 18302: -66,0 + 18303: -66,-1 + 18304: -66,-2 + 18305: -66,-3 + 18306: -67,0 + 18307: -67,-1 + 18308: -67,-2 + 18309: -67,-2 + 18310: -67,-1 + 18311: -67,0 18312: -67,-1 - 18313: -67,0 - 18314: -67,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -23619,37 +23618,37 @@ entities: 743: 66,12 751: 78,22 752: 77,22 - 6217: -13,-19 - 6218: -12,-19 - 6219: -11,-19 - 13308: -53,29 - 18217: -59,-16 - 18218: -58,-16 - 18219: -57,-16 - 18220: -56,-16 - 18221: -55,-16 - 18226: -55,-12 - 18243: -55,17 - 18244: -54,17 - 18245: -53,17 - 18246: -52,17 - 18260: -55,17 - 18261: -52,17 - 18284: -73,-4 - 18285: -72,-4 - 18286: -71,-4 - 18287: -70,-4 - 18288: -69,-4 - 18289: -68,-4 - 18290: -67,-4 - 18318: -72,-3 - 18319: -70,-3 - 18320: -68,-3 - 21306: 58,1 - 21307: 62,1 - 21308: 66,1 - 21516: -71,-3 - 21517: -69,-3 + 6215: -13,-19 + 6216: -12,-19 + 6217: -11,-19 + 13306: -53,29 + 18215: -59,-16 + 18216: -58,-16 + 18217: -57,-16 + 18218: -56,-16 + 18219: -55,-16 + 18224: -55,-12 + 18241: -55,17 + 18242: -54,17 + 18243: -53,17 + 18244: -52,17 + 18258: -55,17 + 18259: -52,17 + 18282: -73,-4 + 18283: -72,-4 + 18284: -71,-4 + 18285: -70,-4 + 18286: -69,-4 + 18287: -68,-4 + 18288: -67,-4 + 18316: -72,-3 + 18317: -70,-3 + 18318: -68,-3 + 21304: 58,1 + 21305: 62,1 + 21306: 66,1 + 21485: -71,-3 + 21486: -69,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -23739,78 +23738,78 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerNe decals: - 2575: -10,46 - 2630: -2,42 - 2724: -3,54 - 3977: -34,63 - 4129: -26,23 - 5694: 14,11 - 5703: 14,2 - 5743: 11,7 - 5758: 11,3 - 5844: -15,-4 - 5858: -9,-3 - 5888: -9,5 - 5898: -9,0 - 5928: -8,11 - 5953: 1,14 - 6474: -22,-4 - 6495: -34,2 - 6530: -26,2 - 6545: -22,-11 - 6600: -22,-5 - 6601: -22,-5 - 6774: -31,-12 - 7266: 37,2 - 7296: 36,1 - 7355: 33,11 - 7747: 43,22 - 7748: 43,23 - 7755: 36,22 - 7777: 36,21 - 8547: 53,-23 - 8561: 49,-23 - 8574: 45,-23 - 10273: 37,-29 - 10274: 38,-28 - 10315: 24,-51 - 10515: 18,-49 - 10725: 74,-37 - 10736: 42,-50 - 10750: 51,-54 - 10818: 45,-51 - 11186: -49,-43 - 11218: -46,-43 - 11233: -46,-47 - 12361: -17,-46 - 12498: -15,-74 - 12540: -13,-79 - 12547: -21,-80 - 13392: -38,-66 - 13406: -36,-65 - 13431: -30,-65 - 13603: -31,-77 - 13950: -65,62 - 15494: -6,-77 - 15506: -1,-77 - 15735: 97,5 - 15765: 96,3 - 15851: 89,7 - 15928: 98,13 - 15935: 98,14 - 18154: -63,18 - 18172: -57,7 - 18442: -58,-44 - 18592: 1,-11 - 18593: 2,-12 - 18863: -112,33 - 19547: -14,29 - 19559: 53,27 - 19562: 56,27 - 19680: 57,30 - 19692: 55,31 - 19884: -24,13 - 19898: -25,12 + 2573: -10,46 + 2628: -2,42 + 2722: -3,54 + 3975: -34,63 + 4127: -26,23 + 5692: 14,11 + 5701: 14,2 + 5741: 11,7 + 5756: 11,3 + 5842: -15,-4 + 5856: -9,-3 + 5886: -9,5 + 5896: -9,0 + 5926: -8,11 + 5951: 1,14 + 6472: -22,-4 + 6493: -34,2 + 6528: -26,2 + 6543: -22,-11 + 6598: -22,-5 + 6599: -22,-5 + 6772: -31,-12 + 7264: 37,2 + 7294: 36,1 + 7353: 33,11 + 7745: 43,22 + 7746: 43,23 + 7753: 36,22 + 7775: 36,21 + 8545: 53,-23 + 8559: 49,-23 + 8572: 45,-23 + 10271: 37,-29 + 10272: 38,-28 + 10313: 24,-51 + 10513: 18,-49 + 10723: 74,-37 + 10734: 42,-50 + 10748: 51,-54 + 10816: 45,-51 + 11184: -49,-43 + 11216: -46,-43 + 11231: -46,-47 + 12359: -17,-46 + 12496: -15,-74 + 12538: -13,-79 + 12545: -21,-80 + 13390: -38,-66 + 13404: -36,-65 + 13429: -30,-65 + 13601: -31,-77 + 13948: -65,62 + 15492: -6,-77 + 15504: -1,-77 + 15733: 97,5 + 15763: 96,3 + 15849: 89,7 + 15926: 98,13 + 15933: 98,14 + 18152: -63,18 + 18170: -57,7 + 18440: -58,-44 + 18590: 1,-11 + 18591: 2,-12 + 18861: -112,33 + 19545: -14,29 + 19557: 53,27 + 19560: 56,27 + 19678: 57,30 + 19690: 55,31 + 19882: -24,13 + 19896: -25,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -23820,77 +23819,77 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerNw decals: - 2631: -4,42 - 3976: -39,63 - 4128: -27,23 - 4133: -29,21 - 5672: 6,11 - 5707: 12,2 - 5742: 7,7 - 5757: 7,3 - 5843: -16,-4 - 5861: -13,-3 - 5876: -14,5 - 5921: -16,11 - 5952: -3,14 - 6457: -30,2 - 6458: -35,2 - 6459: -31,-4 - 6512: -35,2 - 6528: -35,2 - 6529: -30,2 - 6544: -26,-11 - 6598: -26,-5 - 6599: -26,-5 - 6614: -26,-5 - 6773: -34,-12 - 7265: 33,2 - 7295: 34,1 - 7348: 29,11 - 7749: 39,23 - 7750: 39,22 - 7751: 38,22 - 7752: 34,22 - 7778: 34,21 - 8546: 51,-23 - 8567: 47,-23 - 8573: 43,-23 - 10271: 34,-28 - 10272: 35,-29 - 10514: 14,-49 - 10724: 72,-37 - 10749: 49,-54 - 10817: 44,-51 - 11185: -56,-43 - 12496: -16,-79 - 12497: -19,-74 - 12546: -23,-80 - 12675: -4,40 - 12720: -41,29 - 12730: -39,26 - 13400: -41,-66 - 13430: -34,-65 - 13604: -35,-77 - 13947: -68,62 - 15492: -8,-77 - 15493: -3,-77 - 15725: 91,5 - 15762: 93,3 - 15843: 81,7 - 15932: 95,14 - 16187: -72,-40 - 16488: -41,-9 - 18151: -66,18 - 18171: -58,7 - 18587: -3,-11 - 18594: -4,-12 - 18862: -115,33 - 19560: 52,27 - 19561: 55,27 - 19676: 51,30 - 19691: 53,31 - 19885: -27,13 - 19897: -26,12 + 2629: -4,42 + 3974: -39,63 + 4126: -27,23 + 4131: -29,21 + 5670: 6,11 + 5705: 12,2 + 5740: 7,7 + 5755: 7,3 + 5841: -16,-4 + 5859: -13,-3 + 5874: -14,5 + 5919: -16,11 + 5950: -3,14 + 6455: -30,2 + 6456: -35,2 + 6457: -31,-4 + 6510: -35,2 + 6526: -35,2 + 6527: -30,2 + 6542: -26,-11 + 6596: -26,-5 + 6597: -26,-5 + 6612: -26,-5 + 6771: -34,-12 + 7263: 33,2 + 7293: 34,1 + 7346: 29,11 + 7747: 39,23 + 7748: 39,22 + 7749: 38,22 + 7750: 34,22 + 7776: 34,21 + 8544: 51,-23 + 8565: 47,-23 + 8571: 43,-23 + 10269: 34,-28 + 10270: 35,-29 + 10512: 14,-49 + 10722: 72,-37 + 10747: 49,-54 + 10815: 44,-51 + 11183: -56,-43 + 12494: -16,-79 + 12495: -19,-74 + 12544: -23,-80 + 12673: -4,40 + 12718: -41,29 + 12728: -39,26 + 13398: -41,-66 + 13428: -34,-65 + 13602: -35,-77 + 13945: -68,62 + 15490: -8,-77 + 15491: -3,-77 + 15723: 91,5 + 15760: 93,3 + 15841: 81,7 + 15930: 95,14 + 16185: -72,-40 + 16486: -41,-9 + 18149: -66,18 + 18169: -58,7 + 18585: -3,-11 + 18592: -4,-12 + 18860: -115,33 + 19558: 52,27 + 19559: 55,27 + 19674: 51,30 + 19689: 53,31 + 19883: -27,13 + 19895: -26,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -23907,84 +23906,84 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSe decals: - 2576: -10,36 - 2725: -3,53 - 3981: -34,59 - 4125: -22,19 - 5675: 14,7 - 5711: 14,0 - 5748: 11,5 - 5760: 11,0 - 5847: -15,-6 - 5855: -9,-6 - 5889: -9,3 - 5890: -9,-1 - 5893: -11,-2 - 5918: -9,7 - 5919: -8,8 - 5957: 1,12 - 6484: -27,-9 - 6511: -34,-9 - 6531: -26,0 - 6547: -22,-13 - 6597: -22,-9 - 6775: -31,-15 - 7267: 37,-2 - 7301: 36,-1 - 7354: 33,8 - 7757: 43,18 - 7765: 36,18 - 7766: 36,19 - 7767: 36,19 - 7771: 43,17 - 8548: 53,-26 - 8563: 49,-26 - 8583: 45,-26 - 10275: 38,-32 - 10276: 37,-31 - 10316: 24,-53 - 10517: 18,-53 - 10727: 74,-40 - 10738: 42,-56 - 10751: 51,-56 - 10752: 51,-56 - 10760: 52,-56 - 10820: 45,-55 - 11187: -49,-47 - 11227: -46,-45 - 11234: -46,-49 - 12373: -17,-48 - 12499: -15,-76 - 12544: -13,-82 - 12545: -21,-82 - 12676: -2,36 - 12738: -38,25 - 13394: -38,-68 - 13416: -36,-68 - 13435: -30,-68 - 13613: -31,-80 - 13954: -65,58 - 15496: -6,-79 - 15502: -1,-79 - 15733: 94,-2 - 15734: 95,-1 - 15742: 97,0 - 15766: 96,1 - 15852: 89,4 - 15927: 98,12 - 15940: 96,12 - 15947: 98,12 - 18158: -63,16 - 18168: -57,5 - 18864: -112,31 - 19548: -14,31 - 19568: 53,22 - 19571: 56,22 - 19674: 52,29 + 2574: -10,36 + 2723: -3,53 + 3979: -34,59 + 4123: -22,19 + 5673: 14,7 + 5709: 14,0 + 5746: 11,5 + 5758: 11,0 + 5845: -15,-6 + 5853: -9,-6 + 5887: -9,3 + 5888: -9,-1 + 5891: -11,-2 + 5916: -9,7 + 5917: -8,8 + 5955: 1,12 + 6482: -27,-9 + 6509: -34,-9 + 6529: -26,0 + 6545: -22,-13 + 6595: -22,-9 + 6773: -31,-15 + 7265: 37,-2 + 7299: 36,-1 + 7352: 33,8 + 7755: 43,18 + 7763: 36,18 + 7764: 36,19 + 7765: 36,19 + 7769: 43,17 + 8546: 53,-26 + 8561: 49,-26 + 8581: 45,-26 + 10273: 38,-32 + 10274: 37,-31 + 10314: 24,-53 + 10515: 18,-53 + 10725: 74,-40 + 10736: 42,-56 + 10749: 51,-56 + 10750: 51,-56 + 10758: 52,-56 + 10818: 45,-55 + 11185: -49,-47 + 11225: -46,-45 + 11232: -46,-49 + 12371: -17,-48 + 12497: -15,-76 + 12542: -13,-82 + 12543: -21,-82 + 12674: -2,36 + 12736: -38,25 + 13392: -38,-68 + 13414: -36,-68 + 13433: -30,-68 + 13611: -31,-80 + 13952: -65,58 + 15494: -6,-79 + 15500: -1,-79 + 15731: 94,-2 + 15732: 95,-1 + 15740: 97,0 + 15764: 96,1 + 15850: 89,4 + 15925: 98,12 + 15938: 96,12 + 15945: 98,12 + 18156: -63,16 + 18166: -57,5 + 18862: -112,31 + 19546: -14,31 + 19566: 53,22 + 19569: 56,22 + 19672: 52,29 + 19673: 57,29 19675: 57,29 - 19677: 57,29 - 19895: -24,10 - 19896: -25,11 + 19893: -24,10 + 19894: -25,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -24000,74 +23999,74 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSw decals: - 2726: -4,53 - 4135: -29,19 - 5674: 6,8 - 5676: 13,7 - 5709: 12,0 - 5745: 7,5 - 5753: 7,0 - 5846: -16,-6 - 5854: -13,-6 - 5877: -14,-1 - 5892: -13,-2 - 5920: -16,7 - 5956: -3,12 - 6483: -31,-9 - 6513: -35,-9 - 6532: -30,0 - 6546: -26,-13 - 6595: -26,-9 - 6596: -26,-9 - 6776: -34,-15 - 7268: 33,-2 - 7300: 34,-1 - 7758: 39,18 - 7763: 34,18 - 7764: 34,19 - 7772: 39,17 - 7773: 38,18 - 8549: 51,-26 - 8562: 47,-26 - 8571: 47,-26 - 8572: 43,-26 - 10277: 34,-32 - 10278: 35,-31 - 10516: 14,-53 - 10726: 72,-40 - 10753: 49,-56 - 10819: 44,-55 - 11197: -56,-47 - 11198: -56,-47 - 11235: -54,-49 - 12500: -19,-76 - 12543: -16,-82 - 12548: -23,-82 - 12677: -4,36 - 12729: -39,25 - 13397: -41,-68 - 13436: -34,-68 - 13602: -32,-80 - 13611: -35,-80 - 13955: -68,58 - 15497: -8,-79 - 15501: -3,-79 - 15732: 91,-2 - 15767: 93,1 - 15853: 81,4 - 15929: 97,12 - 15939: 95,12 - 16493: -41,-11 - 18157: -66,16 - 18169: -58,5 - 18446: -60,-46 - 18865: -115,31 - 19569: 55,22 - 19570: 52,22 - 19678: 51,29 - 19679: 56,29 - 19892: -27,10 - 19899: -26,11 + 2724: -4,53 + 4133: -29,19 + 5672: 6,8 + 5674: 13,7 + 5707: 12,0 + 5743: 7,5 + 5751: 7,0 + 5844: -16,-6 + 5852: -13,-6 + 5875: -14,-1 + 5890: -13,-2 + 5918: -16,7 + 5954: -3,12 + 6481: -31,-9 + 6511: -35,-9 + 6530: -30,0 + 6544: -26,-13 + 6593: -26,-9 + 6594: -26,-9 + 6774: -34,-15 + 7266: 33,-2 + 7298: 34,-1 + 7756: 39,18 + 7761: 34,18 + 7762: 34,19 + 7770: 39,17 + 7771: 38,18 + 8547: 51,-26 + 8560: 47,-26 + 8569: 47,-26 + 8570: 43,-26 + 10275: 34,-32 + 10276: 35,-31 + 10514: 14,-53 + 10724: 72,-40 + 10751: 49,-56 + 10817: 44,-55 + 11195: -56,-47 + 11196: -56,-47 + 11233: -54,-49 + 12498: -19,-76 + 12541: -16,-82 + 12546: -23,-82 + 12675: -4,36 + 12727: -39,25 + 13395: -41,-68 + 13434: -34,-68 + 13600: -32,-80 + 13609: -35,-80 + 13953: -68,58 + 15495: -8,-79 + 15499: -3,-79 + 15730: 91,-2 + 15765: 93,1 + 15851: 81,4 + 15927: 97,12 + 15937: 95,12 + 16491: -41,-11 + 18155: -66,16 + 18167: -58,5 + 18444: -60,-46 + 18863: -115,31 + 19567: 55,22 + 19568: 52,22 + 19676: 51,29 + 19677: 56,29 + 19890: -27,10 + 19897: -26,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -24077,268 +24076,268 @@ entities: color: '#DABC8BFF' id: WoodTrimThinEndE decals: - 15945: 98,14 + 15943: 98,14 - node: color: '#DABC8BFF' id: WoodTrimThinEndN decals: - 10309: 20,-51 - 12363: -21,-46 - 12726: -38,29 + 10307: 20,-51 + 12361: -21,-46 + 12724: -38,29 - node: color: '#DABC8BFF' id: WoodTrimThinEndS decals: - 10310: 20,-53 - 12362: -21,-48 - 13962: -67,57 + 10308: 20,-53 + 12360: -21,-48 + 13960: -67,57 - node: color: '#DABC8BFF' id: WoodTrimThinEndW decals: - 19505: -12,30 + 19503: -12,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNe decals: - 1989: -12,29 - 1997: -12,33 - 1999: -9,33 - 2482: -11,44 - 2483: -11,42 - 2484: -11,40 - 2485: -11,36 - 2506: -13,40 - 2509: -12,41 - 2580: -10,45 - 2581: -10,43 - 2609: -11,38 - 4148: -24,20 - 4149: -26,20 - 5688: 8,11 - 5706: 13,2 - 5770: 11,1 - 5774: 8,3 - 5849: -15,-5 - 5875: -10,-3 - 5901: -10,0 - 5905: -11,5 - 5932: -10,11 - 6489: -29,-4 - 6490: -24,-4 - 6556: -24,-11 - 6640: -24,-7 - 7275: 35,2 - 7783: 43,20 - 7787: 36,20 - 8555: 52,-23 - 8559: 48,-23 - 8560: 48,-23 - 8577: 44,-23 - 10297: 37,-28 - 10317: 22,-51 - 10318: 22,-51 - 10532: 17,-49 - 10767: 50,-50 - 11228: -47,-43 - 11231: -47,-47 - 12368: -19,-46 - 12376: -19,-46 - 12528: -17,-74 - 12682: -3,40 - 12733: -38,27 - 13408: -36,-66 - 13409: -37,-65 - 13413: -41,-65 - 13615: -31,-79 - 15772: 95,3 - 16198: -62,-43 - 16202: -68,-46 - 18596: 1,-12 - 19498: -9,27 - 19499: -9,30 - 19695: 55,30 - 19943: 96,2 + 1987: -12,29 + 1995: -12,33 + 1997: -9,33 + 2480: -11,44 + 2481: -11,42 + 2482: -11,40 + 2483: -11,36 + 2504: -13,40 + 2507: -12,41 + 2578: -10,45 + 2579: -10,43 + 2607: -11,38 + 4146: -24,20 + 4147: -26,20 + 5686: 8,11 + 5704: 13,2 + 5768: 11,1 + 5772: 8,3 + 5847: -15,-5 + 5873: -10,-3 + 5899: -10,0 + 5903: -11,5 + 5930: -10,11 + 6487: -29,-4 + 6488: -24,-4 + 6554: -24,-11 + 6638: -24,-7 + 7273: 35,2 + 7781: 43,20 + 7785: 36,20 + 8553: 52,-23 + 8557: 48,-23 + 8558: 48,-23 + 8575: 44,-23 + 10295: 37,-28 + 10315: 22,-51 + 10316: 22,-51 + 10530: 17,-49 + 10765: 50,-50 + 11226: -47,-43 + 11229: -47,-47 + 12366: -19,-46 + 12374: -19,-46 + 12526: -17,-74 + 12680: -3,40 + 12731: -38,27 + 13406: -36,-66 + 13407: -37,-65 + 13411: -41,-65 + 13613: -31,-79 + 15770: 95,3 + 16196: -62,-43 + 16200: -68,-46 + 18594: 1,-12 + 19496: -9,27 + 19497: -9,30 + 19693: 55,30 + 19941: 96,2 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNw decals: - 1988: -13,33 - 1998: -10,33 - 2010: -10,29 - 2486: -13,36 - 2487: -13,38 - 2488: -13,40 - 2489: -13,42 - 2490: -13,44 - 2491: -13,44 - 2510: -12,41 - 2511: -11,40 - 2512: -11,40 - 4131: -27,21 - 4150: -24,20 - 5687: 8,11 - 5705: 13,2 - 5773: 8,3 - 5853: -13,-5 - 5874: -10,-3 - 5883: -14,4 - 5904: -11,5 - 5931: -10,11 - 6488: -29,-4 - 6491: -24,-4 - 6541: -30,1 - 6555: -24,-11 - 6612: -26,-6 - 6613: -26,-6 - 6642: -24,-7 - 7276: 35,2 - 7279: 33,1 - 7781: 38,20 - 8556: 52,-23 - 8568: 48,-23 - 8576: 44,-23 - 10298: 37,-28 - 10319: 22,-51 - 10533: 17,-49 - 10747: 39,-53 - 10768: 50,-50 - 11230: -47,-47 - 12369: -19,-46 - 12375: -19,-46 - 12529: -17,-74 - 12679: -4,37 - 12681: -3,40 - 12723: -41,28 - 12724: -41,28 - 12737: -38,26 - 13410: -37,-65 - 13443: -34,-66 - 13610: -35,-79 - 15774: 94,3 - 15775: 93,2 - 15936: 95,13 - 18595: -3,-12 - 19552: -14,30 - 19694: 53,30 + 1986: -13,33 + 1996: -10,33 + 2008: -10,29 + 2484: -13,36 + 2485: -13,38 + 2486: -13,40 + 2487: -13,42 + 2488: -13,44 + 2489: -13,44 + 2508: -12,41 + 2509: -11,40 + 2510: -11,40 + 4129: -27,21 + 4148: -24,20 + 5685: 8,11 + 5703: 13,2 + 5771: 8,3 + 5851: -13,-5 + 5872: -10,-3 + 5881: -14,4 + 5902: -11,5 + 5929: -10,11 + 6486: -29,-4 + 6489: -24,-4 + 6539: -30,1 + 6553: -24,-11 + 6610: -26,-6 + 6611: -26,-6 + 6640: -24,-7 + 7274: 35,2 + 7277: 33,1 + 7779: 38,20 + 8554: 52,-23 + 8566: 48,-23 + 8574: 44,-23 + 10296: 37,-28 + 10317: 22,-51 + 10531: 17,-49 + 10745: 39,-53 + 10766: 50,-50 + 11228: -47,-47 + 12367: -19,-46 + 12373: -19,-46 + 12527: -17,-74 + 12677: -4,37 + 12679: -3,40 + 12721: -41,28 + 12722: -41,28 + 12735: -38,26 + 13408: -37,-65 + 13441: -34,-66 + 13608: -35,-79 + 15772: 94,3 + 15773: 93,2 + 15934: 95,13 + 18593: -3,-12 + 19550: -14,30 + 19692: 53,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSe decals: - 1990: -12,31 - 2002: -9,33 - 2498: -11,40 - 2499: -11,42 - 2500: -11,44 - 2501: -11,46 - 2505: -12,41 - 2507: -13,42 - 2577: -10,39 - 2578: -10,39 - 2579: -10,45 - 2610: -11,38 - 4142: -25,19 - 5699: 8,8 - 5700: 10,8 - 5766: 8,5 - 5769: 11,1 - 5780: 10,0 - 5848: -15,-5 - 5867: -10,-6 - 5895: -12,-2 - 5896: -10,-1 - 5902: -10,3 - 5910: -11,-1 - 5939: -11,7 - 6255: -4,-12 - 6493: -24,-4 - 6616: -24,-9 - 6618: -27,-4 - 6619: -27,-6 - 6620: -27,-6 - 6643: -24,-7 - 7282: 36,-2 - 7362: 29,8 - 7782: 43,20 - 7786: 36,20 - 10296: 36,-32 - 10535: 17,-53 - 10536: 7,-57 - 10735: 73,-40 - 11229: -47,-45 - 12537: -17,-67 - 12688: -2,40 - 12732: -38,27 - 13407: -36,-66 - 13612: -34,-79 - 13616: -31,-79 - 13960: -67,58 - 15740: 94,-1 - 15741: 95,0 - 15773: 95,1 - 15780: 96,2 - 15942: 96,14 - 15944: 97,14 - 16199: -62,-43 - 16203: -68,-44 - 19497: -9,27 - 19500: -9,30 - 19690: 52,30 + 1988: -12,31 + 2000: -9,33 + 2496: -11,40 + 2497: -11,42 + 2498: -11,44 + 2499: -11,46 + 2503: -12,41 + 2505: -13,42 + 2575: -10,39 + 2576: -10,39 + 2577: -10,45 + 2608: -11,38 + 4140: -25,19 + 5697: 8,8 + 5698: 10,8 + 5764: 8,5 + 5767: 11,1 + 5778: 10,0 + 5846: -15,-5 + 5865: -10,-6 + 5893: -12,-2 + 5894: -10,-1 + 5900: -10,3 + 5908: -11,-1 + 5937: -11,7 + 6253: -4,-12 + 6491: -24,-4 + 6614: -24,-9 + 6616: -27,-4 + 6617: -27,-6 + 6618: -27,-6 + 6641: -24,-7 + 7280: 36,-2 + 7360: 29,8 + 7780: 43,20 + 7784: 36,20 + 10294: 36,-32 + 10533: 17,-53 + 10534: 7,-57 + 10733: 73,-40 + 11227: -47,-45 + 12535: -17,-67 + 12686: -2,40 + 12730: -38,27 + 13405: -36,-66 + 13610: -34,-79 + 13614: -31,-79 + 13958: -67,58 + 15738: 94,-1 + 15739: 95,0 + 15771: 95,1 + 15778: 96,2 + 15940: 96,14 + 15942: 97,14 + 16197: -62,-43 + 16201: -68,-44 + 19495: -9,27 + 19498: -9,30 + 19688: 52,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSw decals: - 2006: -10,27 - 2011: -10,31 - 2492: -13,46 - 2493: -13,44 - 2494: -13,44 - 2495: -13,42 - 2496: -13,40 - 2497: -13,38 - 2504: -12,41 - 2508: -11,42 - 4141: -25,19 - 5697: 8,8 - 5698: 10,8 - 5765: 8,5 - 5779: 10,0 - 5852: -13,-5 - 5866: -10,-6 - 5884: -14,4 - 5891: -13,-1 - 5894: -12,-2 - 5909: -10,-1 - 5938: -11,7 - 6256: 2,-12 - 6492: -24,-4 - 6540: -30,1 - 6611: -26,-6 - 6615: -24,-9 - 6641: -24,-7 - 7280: 33,1 - 7281: 36,-2 - 7780: 38,20 - 10295: 36,-32 - 10534: 17,-53 - 10734: 73,-40 - 10748: 39,-53 - 10773: 44,-50 - 12536: -17,-67 - 12678: -4,37 - 12722: -41,28 - 12731: -39,27 - 13444: -34,-66 - 13609: -35,-79 - 13961: -67,58 - 15778: 93,2 - 15779: 94,1 - 15937: 95,13 - 15943: 97,14 - 16204: -70,-42 - 19550: -13,27 - 19551: -14,30 - 19689: 56,30 + 2004: -10,27 + 2009: -10,31 + 2490: -13,46 + 2491: -13,44 + 2492: -13,44 + 2493: -13,42 + 2494: -13,40 + 2495: -13,38 + 2502: -12,41 + 2506: -11,42 + 4139: -25,19 + 5695: 8,8 + 5696: 10,8 + 5763: 8,5 + 5777: 10,0 + 5850: -13,-5 + 5864: -10,-6 + 5882: -14,4 + 5889: -13,-1 + 5892: -12,-2 + 5907: -10,-1 + 5936: -11,7 + 6254: 2,-12 + 6490: -24,-4 + 6538: -30,1 + 6609: -26,-6 + 6613: -24,-9 + 6639: -24,-7 + 7278: 33,1 + 7279: 36,-2 + 7778: 38,20 + 10293: 36,-32 + 10532: 17,-53 + 10732: 73,-40 + 10746: 39,-53 + 10771: 44,-50 + 12534: -17,-67 + 12676: -4,37 + 12720: -41,28 + 12729: -39,27 + 13442: -34,-66 + 13607: -35,-79 + 13959: -67,58 + 15776: 93,2 + 15777: 94,1 + 15935: 95,13 + 15941: 97,14 + 16202: -70,-42 + 19548: -13,27 + 19549: -14,30 + 19687: 56,30 - node: cleanable: True color: '#151C2553' @@ -24360,200 +24359,200 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineE decals: - 2000: -9,32 - 2001: -9,31 - 2003: -9,29 - 2004: -9,28 - 2456: -14,44 - 2457: -14,42 - 2458: -14,40 - 2459: -14,38 - 2460: -14,36 - 2463: -14,46 - 2502: -13,41 - 2571: -10,44 - 2572: -10,38 - 2573: -10,37 - 2633: -2,41 - 3978: -34,62 - 3979: -34,61 - 3980: -34,60 - 4143: -26,22 - 4144: -26,21 - 5677: 14,8 - 5678: 14,9 - 5679: 14,10 - 5712: 14,1 - 5747: 11,6 - 5759: 11,2 - 5851: -14,-5 - 5856: -9,-5 - 5857: -9,-4 - 5882: -15,4 - 5899: -10,1 - 5900: -10,2 - 5903: -9,4 - 5907: -10,-2 - 5929: -8,10 - 5930: -8,9 - 5961: 1,13 - 6248: 2,-12 - 6479: -27,-5 - 6480: -27,-7 - 6481: -27,-8 - 6482: -27,-9 - 6496: -34,1 - 6497: -34,0 - 6498: -34,-1 - 6499: -34,-1 - 6500: -34,-2 - 6501: -34,-2 - 6502: -34,-3 - 6503: -34,-4 - 6504: -34,-4 - 6505: -34,-5 - 6506: -34,-6 - 6507: -34,-6 - 6508: -34,-7 - 6509: -34,-7 - 6510: -34,-8 - 6536: -26,1 - 6551: -22,-12 - 6605: -22,-6 - 6606: -22,-7 - 6607: -22,-8 - 6623: -27,-6 - 6636: -25,-7 - 6702: -31,1 - 6781: -31,-14 - 6782: -31,-13 - 7278: 32,1 - 7283: 37,-1 - 7284: 37,0 - 7285: 37,1 - 7297: 36,0 - 7352: 33,10 - 7353: 33,9 - 7574: 60,25 - 7575: 60,25 - 7745: 43,18 - 7746: 43,19 - 7756: 43,21 - 7776: 36,21 - 7779: 37,20 - 8551: 53,-25 - 8552: 53,-24 - 8566: 49,-25 - 8578: 45,-24 - 8579: 45,-25 - 10281: 38,-31 - 10282: 38,-30 - 10283: 38,-29 - 10291: 37,-30 - 10303: 20,-52 - 10304: 24,-52 - 10523: 18,-52 - 10524: 18,-51 - 10525: 18,-50 - 10728: 74,-39 - 10729: 74,-38 - 10739: 42,-54 - 10740: 42,-53 - 10756: 51,-55 - 10757: 51,-55 - 10759: 52,-56 - 10761: 52,-55 - 10762: 52,-55 - 10763: 52,-54 - 10764: 52,-53 - 10765: 52,-52 - 10772: 43,-50 - 10813: 43,-50 - 10814: 45,-52 - 10815: 45,-53 - 10816: 45,-54 - 11207: -49,-44 - 11208: -49,-46 - 11209: -49,-45 - 11225: -46,-44 - 11226: -46,-45 - 11237: -46,-48 - 12364: -21,-47 - 12374: -17,-47 - 12484: -17,-68 - 12485: -17,-69 - 12486: -17,-69 - 12487: -17,-70 - 12488: -17,-70 - 12489: -17,-71 - 12490: -17,-71 - 12491: -17,-72 - 12492: -17,-72 - 12493: -17,-73 - 12494: -13,-80 - 12495: -13,-81 - 12520: -22,-67 - 12521: -22,-66 - 12524: -15,-75 - 12551: -21,-81 - 12672: -5,37 - 12685: -2,39 - 12686: -2,38 - 12687: -2,37 - 12721: -42,28 - 12727: -38,28 - 12728: -38,26 - 13393: -38,-67 - 13415: -36,-67 - 13438: -30,-67 - 13439: -30,-66 - 13445: -35,-66 - 13614: -31,-78 - 13951: -65,61 - 13952: -65,60 - 13953: -65,59 - 15495: -6,-78 - 15505: -1,-78 - 15743: 97,1 - 15744: 97,2 - 15745: 97,3 - 15746: 97,4 - 15770: 92,2 - 15861: 89,5 - 15862: 89,6 - 15938: 94,13 - 15941: 96,13 - 16197: -62,-42 - 16490: -39,-10 - 18159: -63,17 - 18167: -57,6 - 18448: -58,-45 - 18868: -112,32 - 19506: -11,31 - 19507: -11,32 - 19508: -11,33 - 19515: -11,27 - 19516: -11,28 - 19517: -11,29 - 19518: -14,27 - 19519: -14,28 - 19520: -14,31 - 19521: -14,32 - 19522: -14,33 - 19549: -15,30 - 19563: 53,26 - 19564: 53,25 - 19565: 53,24 - 19566: 53,23 - 19567: 53,22 - 19572: 56,23 - 19573: 56,24 - 19574: 56,25 - 19575: 56,25 - 19576: 56,26 - 19886: -24,12 - 19887: -24,11 - 21453: 49,-24 + 1998: -9,32 + 1999: -9,31 + 2001: -9,29 + 2002: -9,28 + 2454: -14,44 + 2455: -14,42 + 2456: -14,40 + 2457: -14,38 + 2458: -14,36 + 2461: -14,46 + 2500: -13,41 + 2569: -10,44 + 2570: -10,38 + 2571: -10,37 + 2631: -2,41 + 3976: -34,62 + 3977: -34,61 + 3978: -34,60 + 4141: -26,22 + 4142: -26,21 + 5675: 14,8 + 5676: 14,9 + 5677: 14,10 + 5710: 14,1 + 5745: 11,6 + 5757: 11,2 + 5849: -14,-5 + 5854: -9,-5 + 5855: -9,-4 + 5880: -15,4 + 5897: -10,1 + 5898: -10,2 + 5901: -9,4 + 5905: -10,-2 + 5927: -8,10 + 5928: -8,9 + 5959: 1,13 + 6246: 2,-12 + 6477: -27,-5 + 6478: -27,-7 + 6479: -27,-8 + 6480: -27,-9 + 6494: -34,1 + 6495: -34,0 + 6496: -34,-1 + 6497: -34,-1 + 6498: -34,-2 + 6499: -34,-2 + 6500: -34,-3 + 6501: -34,-4 + 6502: -34,-4 + 6503: -34,-5 + 6504: -34,-6 + 6505: -34,-6 + 6506: -34,-7 + 6507: -34,-7 + 6508: -34,-8 + 6534: -26,1 + 6549: -22,-12 + 6603: -22,-6 + 6604: -22,-7 + 6605: -22,-8 + 6621: -27,-6 + 6634: -25,-7 + 6700: -31,1 + 6779: -31,-14 + 6780: -31,-13 + 7276: 32,1 + 7281: 37,-1 + 7282: 37,0 + 7283: 37,1 + 7295: 36,0 + 7350: 33,10 + 7351: 33,9 + 7572: 60,25 + 7573: 60,25 + 7743: 43,18 + 7744: 43,19 + 7754: 43,21 + 7774: 36,21 + 7777: 37,20 + 8549: 53,-25 + 8550: 53,-24 + 8564: 49,-25 + 8576: 45,-24 + 8577: 45,-25 + 10279: 38,-31 + 10280: 38,-30 + 10281: 38,-29 + 10289: 37,-30 + 10301: 20,-52 + 10302: 24,-52 + 10521: 18,-52 + 10522: 18,-51 + 10523: 18,-50 + 10726: 74,-39 + 10727: 74,-38 + 10737: 42,-54 + 10738: 42,-53 + 10754: 51,-55 + 10755: 51,-55 + 10757: 52,-56 + 10759: 52,-55 + 10760: 52,-55 + 10761: 52,-54 + 10762: 52,-53 + 10763: 52,-52 + 10770: 43,-50 + 10811: 43,-50 + 10812: 45,-52 + 10813: 45,-53 + 10814: 45,-54 + 11205: -49,-44 + 11206: -49,-46 + 11207: -49,-45 + 11223: -46,-44 + 11224: -46,-45 + 11235: -46,-48 + 12362: -21,-47 + 12372: -17,-47 + 12482: -17,-68 + 12483: -17,-69 + 12484: -17,-69 + 12485: -17,-70 + 12486: -17,-70 + 12487: -17,-71 + 12488: -17,-71 + 12489: -17,-72 + 12490: -17,-72 + 12491: -17,-73 + 12492: -13,-80 + 12493: -13,-81 + 12518: -22,-67 + 12519: -22,-66 + 12522: -15,-75 + 12549: -21,-81 + 12670: -5,37 + 12683: -2,39 + 12684: -2,38 + 12685: -2,37 + 12719: -42,28 + 12725: -38,28 + 12726: -38,26 + 13391: -38,-67 + 13413: -36,-67 + 13436: -30,-67 + 13437: -30,-66 + 13443: -35,-66 + 13612: -31,-78 + 13949: -65,61 + 13950: -65,60 + 13951: -65,59 + 15493: -6,-78 + 15503: -1,-78 + 15741: 97,1 + 15742: 97,2 + 15743: 97,3 + 15744: 97,4 + 15768: 92,2 + 15859: 89,5 + 15860: 89,6 + 15936: 94,13 + 15939: 96,13 + 16195: -62,-42 + 16488: -39,-10 + 18157: -63,17 + 18165: -57,6 + 18446: -58,-45 + 18866: -112,32 + 19504: -11,31 + 19505: -11,32 + 19506: -11,33 + 19513: -11,27 + 19514: -11,28 + 19515: -11,29 + 19516: -14,27 + 19517: -14,28 + 19518: -14,31 + 19519: -14,32 + 19520: -14,33 + 19547: -15,30 + 19561: 53,26 + 19562: 53,25 + 19563: 53,24 + 19564: 53,23 + 19565: 53,22 + 19570: 56,23 + 19571: 56,24 + 19572: 56,25 + 19573: 56,25 + 19574: 56,26 + 19884: -24,12 + 19885: -24,11 + 21451: 49,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -24581,273 +24580,273 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 2005: -9,25 - 2427: -13,45 - 2428: -12,45 - 2429: -11,45 - 2430: -13,43 - 2431: -12,43 - 2432: -11,43 - 2433: -13,41 - 2434: -11,41 - 2435: -13,39 - 2436: -12,39 - 2437: -11,39 - 2438: -13,37 - 2439: -12,37 - 2440: -11,37 - 2560: -13,46 - 2561: -12,46 - 2562: -11,46 - 2563: -11,46 - 2584: -14,46 - 2632: -3,42 - 2727: -4,54 - 3972: -38,63 - 3973: -36,63 - 3974: -37,63 - 3975: -35,63 - 4126: -22,20 - 4132: -28,21 - 4145: -25,20 - 4146: -23,20 - 4147: -23,20 - 4168: -25,18 - 5686: 7,11 - 5689: 10,11 - 5690: 9,11 - 5691: 11,11 - 5692: 12,11 - 5693: 13,11 - 5695: 10,7 - 5696: 8,7 - 5744: 9,7 - 5767: 8,4 - 5771: 9,3 - 5772: 10,3 - 5775: 10,-1 - 5859: -13,-3 - 5860: -12,-3 - 5865: -10,-7 - 5873: -11,-3 - 5885: -13,5 - 5886: -12,5 - 5887: -10,5 - 5897: -10,-2 - 5922: -15,11 - 5923: -14,11 - 5924: -13,11 - 5925: -12,11 - 5926: -11,11 - 5927: -9,11 - 5937: -11,6 - 5954: 0,14 - 5955: -1,14 - 6261: 2,-13 - 6262: -4,-13 - 6460: -30,-4 - 6461: -28,-4 - 6462: -27,-4 - 6463: -26,-4 - 6464: -26,-4 - 6465: -25,-4 - 6466: -23,-4 - 6467: -22,-4 - 6494: -24,-5 - 6537: -29,2 - 6538: -28,2 - 6539: -27,2 - 6553: -25,-11 - 6554: -23,-11 - 6602: -23,-5 - 6603: -25,-5 - 6604: -25,-5 - 6617: -24,-10 - 6637: -24,-8 - 6779: -33,-12 - 6780: -32,-12 - 7273: 34,2 - 7274: 36,2 - 7286: 36,-3 - 7298: 35,1 - 7349: 30,11 - 7350: 32,11 - 7351: 31,11 - 7363: 29,7 - 7730: 40,23 - 7731: 40,23 - 7732: 41,23 - 7733: 41,23 - 7734: 42,23 - 7735: 42,23 - 7736: 40,22 - 7737: 41,22 - 7738: 42,22 - 7753: 35,22 - 7754: 35,21 - 10284: 35,-28 - 10285: 36,-28 - 10292: 36,-29 - 10294: 36,-33 - 10313: 21,-51 - 10314: 23,-51 - 10529: 15,-49 - 10530: 16,-49 - 10531: 17,-54 - 10730: 73,-37 - 10733: 73,-41 - 10754: 50,-54 - 10769: 52,-50 - 10770: 44,-50 - 10771: 45,-50 - 11202: -55,-43 - 11203: -54,-43 - 11204: -54,-43 - 11205: -51,-43 - 11206: -50,-43 - 11217: -47,-46 - 11232: -48,-47 - 12366: -18,-46 - 12377: -20,-46 - 12510: -21,-66 - 12511: -20,-66 - 12512: -19,-66 - 12513: -18,-66 - 12514: -17,-66 - 12515: -16,-66 - 12516: -15,-66 - 12517: -14,-66 - 12518: -14,-66 - 12519: -13,-66 - 12526: -18,-74 - 12527: -16,-74 - 12538: -15,-79 - 12539: -14,-79 - 12550: -22,-80 - 12680: -2,40 - 12725: -40,29 - 13401: -40,-66 - 13402: -39,-66 - 13403: -40,-65 - 13404: -39,-65 - 13405: -38,-65 - 13440: -33,-65 - 13441: -32,-65 - 13442: -31,-65 - 13605: -34,-77 - 13606: -33,-77 - 13607: -32,-77 - 13948: -67,62 - 13949: -66,62 - 15491: -7,-77 - 15504: -2,-77 - 15736: 93,5 - 15737: 94,5 - 15738: 95,5 - 15768: 94,0 - 15769: 95,0 - 15844: 82,7 - 15845: 83,7 - 15846: 84,7 - 15847: 85,7 - 15848: 86,7 - 15849: 87,7 - 15850: 88,7 - 15933: 96,14 - 15934: 97,14 - 15946: 97,13 - 16181: -69,-40 - 16182: -68,-40 - 16183: -67,-40 - 16184: -66,-40 - 16185: -65,-40 - 16186: -63,-40 - 16489: -40,-9 - 18152: -65,18 - 18153: -64,18 - 18443: -59,-44 - 18588: -2,-11 - 18589: -1,-11 - 18590: 0,-11 - 18591: 1,-11 - 18869: -114,33 - 18870: -113,33 - 19488: -11,33 - 19493: -13,26 - 19494: -12,26 - 19495: -10,26 - 19496: -9,26 - 19501: -9,30 - 19502: -10,30 - 19681: 56,30 - 19682: 56,30 - 19683: 52,30 - 19684: 52,30 - 19685: 56,30 - 19693: 54,31 - 19888: -26,13 - 19889: -25,13 + 2003: -9,25 + 2425: -13,45 + 2426: -12,45 + 2427: -11,45 + 2428: -13,43 + 2429: -12,43 + 2430: -11,43 + 2431: -13,41 + 2432: -11,41 + 2433: -13,39 + 2434: -12,39 + 2435: -11,39 + 2436: -13,37 + 2437: -12,37 + 2438: -11,37 + 2558: -13,46 + 2559: -12,46 + 2560: -11,46 + 2561: -11,46 + 2582: -14,46 + 2630: -3,42 + 2725: -4,54 + 3970: -38,63 + 3971: -36,63 + 3972: -37,63 + 3973: -35,63 + 4124: -22,20 + 4130: -28,21 + 4143: -25,20 + 4144: -23,20 + 4145: -23,20 + 4166: -25,18 + 5684: 7,11 + 5687: 10,11 + 5688: 9,11 + 5689: 11,11 + 5690: 12,11 + 5691: 13,11 + 5693: 10,7 + 5694: 8,7 + 5742: 9,7 + 5765: 8,4 + 5769: 9,3 + 5770: 10,3 + 5773: 10,-1 + 5857: -13,-3 + 5858: -12,-3 + 5863: -10,-7 + 5871: -11,-3 + 5883: -13,5 + 5884: -12,5 + 5885: -10,5 + 5895: -10,-2 + 5920: -15,11 + 5921: -14,11 + 5922: -13,11 + 5923: -12,11 + 5924: -11,11 + 5925: -9,11 + 5935: -11,6 + 5952: 0,14 + 5953: -1,14 + 6259: 2,-13 + 6260: -4,-13 + 6458: -30,-4 + 6459: -28,-4 + 6460: -27,-4 + 6461: -26,-4 + 6462: -26,-4 + 6463: -25,-4 + 6464: -23,-4 + 6465: -22,-4 + 6492: -24,-5 + 6535: -29,2 + 6536: -28,2 + 6537: -27,2 + 6551: -25,-11 + 6552: -23,-11 + 6600: -23,-5 + 6601: -25,-5 + 6602: -25,-5 + 6615: -24,-10 + 6635: -24,-8 + 6777: -33,-12 + 6778: -32,-12 + 7271: 34,2 + 7272: 36,2 + 7284: 36,-3 + 7296: 35,1 + 7347: 30,11 + 7348: 32,11 + 7349: 31,11 + 7361: 29,7 + 7728: 40,23 + 7729: 40,23 + 7730: 41,23 + 7731: 41,23 + 7732: 42,23 + 7733: 42,23 + 7734: 40,22 + 7735: 41,22 + 7736: 42,22 + 7751: 35,22 + 7752: 35,21 + 10282: 35,-28 + 10283: 36,-28 + 10290: 36,-29 + 10292: 36,-33 + 10311: 21,-51 + 10312: 23,-51 + 10527: 15,-49 + 10528: 16,-49 + 10529: 17,-54 + 10728: 73,-37 + 10731: 73,-41 + 10752: 50,-54 + 10767: 52,-50 + 10768: 44,-50 + 10769: 45,-50 + 11200: -55,-43 + 11201: -54,-43 + 11202: -54,-43 + 11203: -51,-43 + 11204: -50,-43 + 11215: -47,-46 + 11230: -48,-47 + 12364: -18,-46 + 12375: -20,-46 + 12508: -21,-66 + 12509: -20,-66 + 12510: -19,-66 + 12511: -18,-66 + 12512: -17,-66 + 12513: -16,-66 + 12514: -15,-66 + 12515: -14,-66 + 12516: -14,-66 + 12517: -13,-66 + 12524: -18,-74 + 12525: -16,-74 + 12536: -15,-79 + 12537: -14,-79 + 12548: -22,-80 + 12678: -2,40 + 12723: -40,29 + 13399: -40,-66 + 13400: -39,-66 + 13401: -40,-65 + 13402: -39,-65 + 13403: -38,-65 + 13438: -33,-65 + 13439: -32,-65 + 13440: -31,-65 + 13603: -34,-77 + 13604: -33,-77 + 13605: -32,-77 + 13946: -67,62 + 13947: -66,62 + 15489: -7,-77 + 15502: -2,-77 + 15734: 93,5 + 15735: 94,5 + 15736: 95,5 + 15766: 94,0 + 15767: 95,0 + 15842: 82,7 + 15843: 83,7 + 15844: 84,7 + 15845: 85,7 + 15846: 86,7 + 15847: 87,7 + 15848: 88,7 + 15931: 96,14 + 15932: 97,14 + 15944: 97,13 + 16179: -69,-40 + 16180: -68,-40 + 16181: -67,-40 + 16182: -66,-40 + 16183: -65,-40 + 16184: -63,-40 + 16487: -40,-9 + 18150: -65,18 + 18151: -64,18 + 18441: -59,-44 + 18586: -2,-11 + 18587: -1,-11 + 18588: 0,-11 + 18589: 1,-11 + 18867: -114,33 + 18868: -113,33 + 19486: -11,33 + 19491: -13,26 + 19492: -12,26 + 19493: -10,26 + 19494: -9,26 + 19499: -9,30 + 19500: -10,30 + 19679: 56,30 + 19680: 56,30 + 19681: 52,30 + 19682: 52,30 + 19683: 56,30 + 19691: 54,31 + 19886: -26,13 + 19887: -25,13 - node: angle: 1.9198621771937625 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13490: -35.813877,-65.105484 - 16415: -64.29358,-40.983166 + 13488: -35.813877,-65.105484 + 16413: -64.29358,-40.983166 - node: angle: 2.0943951023931953 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13488: -29.784193,-66.29185 + 13486: -29.784193,-66.29185 - node: angle: 2.443460952792061 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16418: -62.793587,-43.12379 + 16416: -62.793587,-43.12379 - node: angle: 2.6179938779914944 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16417: -69.402954,-44.592537 + 16415: -69.402954,-44.592537 - node: angle: 3.490658503988659 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13487: -40.693886,-64.73856 + 13485: -40.693886,-64.73856 - node: angle: 3.6651914291880923 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13489: -33.77137,-66.21846 + 13487: -33.77137,-66.21846 - node: angle: 3.839724354387525 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16416: -69.85608,-41.076912 + 16414: -69.85608,-41.076912 - node: angle: 4.363323129985824 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16419: -67.26233,-43.09254 + 16417: -67.26233,-43.09254 - node: angle: 5.235987755982989 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13486: -37.183704,-67.03792 + 13484: -37.183704,-67.03792 - node: angle: 6.981317007977318 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16420: -67.51233,-46.24879 + 16418: -67.51233,-46.24879 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -24912,216 +24911,216 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineS decals: - 2441: -13,37 - 2442: -12,37 - 2443: -12,37 - 2444: -11,37 - 2445: -11,39 - 2446: -12,39 - 2447: -13,39 - 2448: -13,41 - 2449: -11,41 - 2450: -11,43 - 2451: -12,43 - 2452: -13,43 - 2453: -13,45 - 2454: -12,45 - 2455: -11,45 - 2564: -13,36 - 2565: -12,36 - 2566: -11,36 - 2574: -14,36 - 2636: -4,41 - 2637: -2,41 - 3982: -35,59 - 4136: -28,19 - 4137: -27,19 - 4138: -26,19 - 4139: -24,19 - 4140: -23,19 - 4151: -24,21 - 5673: 8,12 - 5680: 12,8 - 5681: 11,8 - 5682: 9,8 - 5683: 7,8 - 5704: 13,3 - 5710: 13,0 - 5749: 10,5 - 5750: 9,5 - 5751: 8,0 - 5752: 9,0 - 5764: 8,4 - 5863: -12,-6 - 5864: -11,-6 - 5872: -10,-2 - 5906: -11,6 - 5912: -10,-2 - 5913: -12,7 - 5914: -13,7 - 5915: -14,7 - 5916: -15,7 - 5917: -10,7 - 5933: -10,12 - 5958: -2,12 - 5959: -1,12 - 5960: 0,12 - 6249: -3,-12 - 6250: -2,-12 - 6251: -1,-12 - 6252: 0,-12 - 6253: 1,-12 - 6475: -22,-4 - 6476: -23,-4 - 6477: -25,-4 - 6478: -26,-4 - 6485: -30,-9 - 6486: -29,-9 - 6487: -28,-9 - 6533: -29,0 - 6534: -28,0 - 6535: -27,0 - 6542: -29,-3 - 6543: -24,-3 - 6548: -25,-13 - 6549: -24,-13 - 6550: -23,-13 - 6592: -24,-10 - 6593: -23,-9 - 6594: -25,-9 - 6624: -24,-4 - 6639: -24,-6 - 6777: -33,-15 - 6778: -32,-15 - 7269: 34,-2 - 7270: 35,-2 - 7277: 35,3 - 7299: 35,-1 - 7359: 30,8 - 7360: 31,8 - 7361: 32,8 - 7739: 40,18 - 7740: 41,18 - 7741: 42,18 - 7742: 40,17 - 7743: 41,17 - 7744: 42,17 - 7768: 35,18 - 7769: 35,18 - 7770: 35,19 - 8550: 52,-26 - 8557: 52,-22 - 8558: 48,-22 - 8564: 48,-26 - 8565: 48,-26 - 8575: 44,-22 - 8582: 44,-26 - 10279: 35,-32 - 10280: 37,-32 - 10290: 36,-31 - 10293: 37,-27 - 10305: 22,-50 - 10306: 22,-53 - 10307: 22,-53 - 10308: 23,-53 - 10312: 21,-53 - 10518: 15,-53 - 10519: 15,-53 - 10520: 16,-53 - 10521: 16,-53 - 10522: 17,-48 - 10737: 41,-56 - 10755: 50,-56 - 10774: 44,-50 - 10775: 44,-50 - 10776: 45,-50 - 11188: -50,-47 - 11189: -51,-47 - 11190: -52,-47 - 11191: -52,-47 - 11192: -53,-47 - 11193: -53,-47 - 11194: -54,-47 - 11195: -54,-47 - 11196: -55,-47 - 11215: -47,-42 - 11216: -47,-46 - 11238: -53,-49 - 11239: -52,-49 - 11240: -51,-49 - 11241: -51,-49 - 11242: -50,-49 - 11243: -49,-49 - 11244: -48,-49 - 11245: -47,-49 - 12367: -19,-45 - 12370: -20,-48 - 12371: -19,-48 - 12372: -18,-48 - 12480: -21,-67 - 12481: -20,-67 - 12482: -19,-67 - 12483: -18,-67 - 12501: -18,-76 - 12502: -17,-76 - 12503: -16,-76 - 12504: -15,-82 - 12505: -14,-82 - 12506: -16,-67 - 12507: -15,-67 - 12508: -14,-67 - 12509: -13,-67 - 12549: -22,-82 - 12671: -3,36 - 12674: -3,41 - 12718: -40,27 - 12719: -40,27 - 13395: -39,-68 - 13396: -40,-68 - 13411: -37,-64 - 13412: -41,-64 - 13417: -37,-68 - 13432: -33,-68 - 13433: -32,-68 - 13434: -31,-68 - 13601: -33,-79 - 13959: -66,58 - 15499: -7,-79 - 15503: -2,-79 - 15739: 96,0 - 15763: 94,4 - 15764: 95,4 - 15854: 82,4 - 15855: 84,4 - 15856: 83,4 - 15857: 85,4 - 15858: 87,4 - 15859: 86,4 - 15860: 88,4 - 16191: -71,-42 - 16192: -67,-44 - 16193: -66,-44 - 16194: -65,-44 - 16195: -64,-44 - 16196: -63,-44 - 16201: -68,-46 - 16491: -40,-11 - 18155: -65,16 - 18156: -64,16 - 18447: -59,-46 - 18866: -114,31 - 18867: -113,31 - 19489: -10,34 - 19490: -9,34 - 19491: -13,34 - 19492: -12,34 - 19503: -10,30 - 19504: -9,30 - 19686: 53,30 - 19687: 54,30 - 19688: 55,30 - 19890: -26,10 - 19891: -25,10 + 2439: -13,37 + 2440: -12,37 + 2441: -12,37 + 2442: -11,37 + 2443: -11,39 + 2444: -12,39 + 2445: -13,39 + 2446: -13,41 + 2447: -11,41 + 2448: -11,43 + 2449: -12,43 + 2450: -13,43 + 2451: -13,45 + 2452: -12,45 + 2453: -11,45 + 2562: -13,36 + 2563: -12,36 + 2564: -11,36 + 2572: -14,36 + 2634: -4,41 + 2635: -2,41 + 3980: -35,59 + 4134: -28,19 + 4135: -27,19 + 4136: -26,19 + 4137: -24,19 + 4138: -23,19 + 4149: -24,21 + 5671: 8,12 + 5678: 12,8 + 5679: 11,8 + 5680: 9,8 + 5681: 7,8 + 5702: 13,3 + 5708: 13,0 + 5747: 10,5 + 5748: 9,5 + 5749: 8,0 + 5750: 9,0 + 5762: 8,4 + 5861: -12,-6 + 5862: -11,-6 + 5870: -10,-2 + 5904: -11,6 + 5910: -10,-2 + 5911: -12,7 + 5912: -13,7 + 5913: -14,7 + 5914: -15,7 + 5915: -10,7 + 5931: -10,12 + 5956: -2,12 + 5957: -1,12 + 5958: 0,12 + 6247: -3,-12 + 6248: -2,-12 + 6249: -1,-12 + 6250: 0,-12 + 6251: 1,-12 + 6473: -22,-4 + 6474: -23,-4 + 6475: -25,-4 + 6476: -26,-4 + 6483: -30,-9 + 6484: -29,-9 + 6485: -28,-9 + 6531: -29,0 + 6532: -28,0 + 6533: -27,0 + 6540: -29,-3 + 6541: -24,-3 + 6546: -25,-13 + 6547: -24,-13 + 6548: -23,-13 + 6590: -24,-10 + 6591: -23,-9 + 6592: -25,-9 + 6622: -24,-4 + 6637: -24,-6 + 6775: -33,-15 + 6776: -32,-15 + 7267: 34,-2 + 7268: 35,-2 + 7275: 35,3 + 7297: 35,-1 + 7357: 30,8 + 7358: 31,8 + 7359: 32,8 + 7737: 40,18 + 7738: 41,18 + 7739: 42,18 + 7740: 40,17 + 7741: 41,17 + 7742: 42,17 + 7766: 35,18 + 7767: 35,18 + 7768: 35,19 + 8548: 52,-26 + 8555: 52,-22 + 8556: 48,-22 + 8562: 48,-26 + 8563: 48,-26 + 8573: 44,-22 + 8580: 44,-26 + 10277: 35,-32 + 10278: 37,-32 + 10288: 36,-31 + 10291: 37,-27 + 10303: 22,-50 + 10304: 22,-53 + 10305: 22,-53 + 10306: 23,-53 + 10310: 21,-53 + 10516: 15,-53 + 10517: 15,-53 + 10518: 16,-53 + 10519: 16,-53 + 10520: 17,-48 + 10735: 41,-56 + 10753: 50,-56 + 10772: 44,-50 + 10773: 44,-50 + 10774: 45,-50 + 11186: -50,-47 + 11187: -51,-47 + 11188: -52,-47 + 11189: -52,-47 + 11190: -53,-47 + 11191: -53,-47 + 11192: -54,-47 + 11193: -54,-47 + 11194: -55,-47 + 11213: -47,-42 + 11214: -47,-46 + 11236: -53,-49 + 11237: -52,-49 + 11238: -51,-49 + 11239: -51,-49 + 11240: -50,-49 + 11241: -49,-49 + 11242: -48,-49 + 11243: -47,-49 + 12365: -19,-45 + 12368: -20,-48 + 12369: -19,-48 + 12370: -18,-48 + 12478: -21,-67 + 12479: -20,-67 + 12480: -19,-67 + 12481: -18,-67 + 12499: -18,-76 + 12500: -17,-76 + 12501: -16,-76 + 12502: -15,-82 + 12503: -14,-82 + 12504: -16,-67 + 12505: -15,-67 + 12506: -14,-67 + 12507: -13,-67 + 12547: -22,-82 + 12669: -3,36 + 12672: -3,41 + 12716: -40,27 + 12717: -40,27 + 13393: -39,-68 + 13394: -40,-68 + 13409: -37,-64 + 13410: -41,-64 + 13415: -37,-68 + 13430: -33,-68 + 13431: -32,-68 + 13432: -31,-68 + 13599: -33,-79 + 13957: -66,58 + 15497: -7,-79 + 15501: -2,-79 + 15737: 96,0 + 15761: 94,4 + 15762: 95,4 + 15852: 82,4 + 15853: 84,4 + 15854: 83,4 + 15855: 85,4 + 15856: 87,4 + 15857: 86,4 + 15858: 88,4 + 16189: -71,-42 + 16190: -67,-44 + 16191: -66,-44 + 16192: -65,-44 + 16193: -64,-44 + 16194: -63,-44 + 16199: -68,-46 + 16489: -40,-11 + 18153: -65,16 + 18154: -64,16 + 18445: -59,-46 + 18864: -114,31 + 18865: -113,31 + 19487: -10,34 + 19488: -9,34 + 19489: -13,34 + 19490: -12,34 + 19501: -10,30 + 19502: -9,30 + 19684: 53,30 + 19685: 54,30 + 19686: 55,30 + 19888: -26,10 + 19889: -25,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -25156,202 +25155,202 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineW decals: - 1991: -8,27 - 1992: -8,33 - 2007: -8,27 - 2008: -8,30 - 2009: -8,33 - 2461: -10,36 - 2462: -10,46 - 2464: -10,42 - 2465: -10,40 - 2466: -10,38 - 2467: -10,44 - 2503: -11,41 - 2567: -9,39 - 2568: -9,41 - 2569: -9,42 - 2570: -9,43 - 2582: -9,40 - 2583: -9,40 - 2634: -4,41 - 2635: -4,41 - 3015: -9,45 - 3989: -39,60 - 4127: -21,20 - 4130: -27,22 - 4134: -29,20 - 4167: -21,20 - 5684: 6,9 - 5685: 6,10 - 5708: 12,1 - 5746: 7,6 - 5754: 7,1 - 5755: 7,2 - 5756: 7,3 - 5768: 12,1 - 5776: 12,1 - 5845: -16,-5 - 5850: -14,-5 - 5862: -13,-4 - 5878: -14,0 - 5879: -14,1 - 5880: -14,2 - 5881: -14,3 - 5908: -10,-2 - 5934: -16,8 - 5935: -16,9 - 5936: -16,10 - 5962: -3,13 - 6254: -4,-12 - 6468: -31,-5 - 6469: -31,-6 - 6470: -31,-7 - 6471: -31,-7 - 6472: -31,-8 - 6473: -31,-9 - 6514: -35,-8 - 6515: -35,-7 - 6516: -35,-6 - 6517: -35,-5 - 6518: -35,-4 - 6519: -35,-3 - 6520: -35,-3 - 6521: -35,-2 - 6522: -35,-1 - 6523: -35,-1 - 6524: -35,0 - 6525: -35,0 - 6526: -35,1 - 6527: -35,2 - 6552: -26,-12 - 6608: -26,-8 - 6609: -26,-7 - 6610: -26,-7 - 6638: -23,-7 - 6783: -34,-14 - 6784: -34,-13 - 7271: 33,-1 - 7272: 33,0 - 7302: 34,0 - 7356: 29,8 - 7357: 29,9 - 7358: 29,10 - 7759: 39,19 - 7760: 39,20 - 7761: 39,21 - 7762: 34,20 - 7774: 38,19 - 7775: 38,21 - 7784: 44,20 - 7785: 37,20 - 8553: 51,-25 - 8554: 51,-24 - 8569: 47,-24 - 8570: 47,-25 - 8580: 43,-25 - 8581: 43,-24 - 10286: 34,-31 - 10287: 34,-30 - 10288: 34,-29 - 10289: 35,-30 - 10311: 20,-52 - 10526: 14,-52 - 10527: 14,-51 - 10528: 14,-50 - 10731: 72,-39 - 10732: 72,-38 - 10741: 39,-55 - 10742: 39,-55 - 10743: 39,-54 - 10744: 39,-54 - 10745: 39,-52 - 10746: 39,-52 - 10758: 49,-55 - 10766: 49,-53 - 10777: 46,-52 - 10778: 46,-55 - 10779: 46,-55 - 10821: 44,-54 - 10822: 44,-53 - 10823: 44,-52 - 11199: -56,-46 - 11200: -56,-45 - 11201: -56,-44 - 11219: -47,-43 - 11220: -47,-43 - 11221: -47,-44 - 11222: -47,-44 - 11223: -47,-45 - 11224: -47,-45 - 11236: -54,-48 - 11247: -61,-43 - 12365: -21,-47 - 12522: -12,-66 - 12523: -12,-67 - 12525: -19,-75 - 12530: -17,-73 - 12531: -17,-72 - 12532: -17,-71 - 12533: -17,-70 - 12534: -17,-69 - 12535: -17,-68 - 12541: -16,-80 - 12542: -16,-81 - 12552: -23,-81 - 12673: -1,40 - 12683: -4,38 - 12684: -4,39 - 12734: -37,27 - 12735: -38,27 - 12736: -38,28 - 13398: -41,-67 - 13399: -41,-66 - 13414: -41,-65 - 13418: -35,-66 - 13437: -34,-67 - 13608: -35,-78 - 13956: -68,59 - 13957: -68,60 - 13958: -68,61 - 15498: -8,-78 - 15500: -3,-78 - 15726: 91,4 - 15727: 91,3 - 15728: 91,2 - 15729: 91,1 - 15730: 91,0 - 15731: 91,-1 - 15771: 97,2 - 15863: 81,5 - 15864: 81,6 - 15930: 97,13 - 16188: -72,-41 - 16189: -70,-44 - 16190: -70,-45 - 16200: -61,-43 - 16492: -41,-10 - 18160: -66,17 - 18170: -58,6 - 18444: -60,-44 - 18445: -60,-45 - 18871: -115,32 - 19509: -11,31 - 19510: -11,32 - 19511: -11,33 - 19512: -11,29 - 19513: -11,28 - 19514: -11,27 - 19577: 55,23 - 19578: 55,24 - 19579: 55,25 - 19580: 55,26 - 19581: 52,23 - 19582: 52,24 - 19583: 52,25 - 19584: 52,26 - 19893: -27,11 - 19894: -27,12 + 1989: -8,27 + 1990: -8,33 + 2005: -8,27 + 2006: -8,30 + 2007: -8,33 + 2459: -10,36 + 2460: -10,46 + 2462: -10,42 + 2463: -10,40 + 2464: -10,38 + 2465: -10,44 + 2501: -11,41 + 2565: -9,39 + 2566: -9,41 + 2567: -9,42 + 2568: -9,43 + 2580: -9,40 + 2581: -9,40 + 2632: -4,41 + 2633: -4,41 + 3013: -9,45 + 3987: -39,60 + 4125: -21,20 + 4128: -27,22 + 4132: -29,20 + 4165: -21,20 + 5682: 6,9 + 5683: 6,10 + 5706: 12,1 + 5744: 7,6 + 5752: 7,1 + 5753: 7,2 + 5754: 7,3 + 5766: 12,1 + 5774: 12,1 + 5843: -16,-5 + 5848: -14,-5 + 5860: -13,-4 + 5876: -14,0 + 5877: -14,1 + 5878: -14,2 + 5879: -14,3 + 5906: -10,-2 + 5932: -16,8 + 5933: -16,9 + 5934: -16,10 + 5960: -3,13 + 6252: -4,-12 + 6466: -31,-5 + 6467: -31,-6 + 6468: -31,-7 + 6469: -31,-7 + 6470: -31,-8 + 6471: -31,-9 + 6512: -35,-8 + 6513: -35,-7 + 6514: -35,-6 + 6515: -35,-5 + 6516: -35,-4 + 6517: -35,-3 + 6518: -35,-3 + 6519: -35,-2 + 6520: -35,-1 + 6521: -35,-1 + 6522: -35,0 + 6523: -35,0 + 6524: -35,1 + 6525: -35,2 + 6550: -26,-12 + 6606: -26,-8 + 6607: -26,-7 + 6608: -26,-7 + 6636: -23,-7 + 6781: -34,-14 + 6782: -34,-13 + 7269: 33,-1 + 7270: 33,0 + 7300: 34,0 + 7354: 29,8 + 7355: 29,9 + 7356: 29,10 + 7757: 39,19 + 7758: 39,20 + 7759: 39,21 + 7760: 34,20 + 7772: 38,19 + 7773: 38,21 + 7782: 44,20 + 7783: 37,20 + 8551: 51,-25 + 8552: 51,-24 + 8567: 47,-24 + 8568: 47,-25 + 8578: 43,-25 + 8579: 43,-24 + 10284: 34,-31 + 10285: 34,-30 + 10286: 34,-29 + 10287: 35,-30 + 10309: 20,-52 + 10524: 14,-52 + 10525: 14,-51 + 10526: 14,-50 + 10729: 72,-39 + 10730: 72,-38 + 10739: 39,-55 + 10740: 39,-55 + 10741: 39,-54 + 10742: 39,-54 + 10743: 39,-52 + 10744: 39,-52 + 10756: 49,-55 + 10764: 49,-53 + 10775: 46,-52 + 10776: 46,-55 + 10777: 46,-55 + 10819: 44,-54 + 10820: 44,-53 + 10821: 44,-52 + 11197: -56,-46 + 11198: -56,-45 + 11199: -56,-44 + 11217: -47,-43 + 11218: -47,-43 + 11219: -47,-44 + 11220: -47,-44 + 11221: -47,-45 + 11222: -47,-45 + 11234: -54,-48 + 11245: -61,-43 + 12363: -21,-47 + 12520: -12,-66 + 12521: -12,-67 + 12523: -19,-75 + 12528: -17,-73 + 12529: -17,-72 + 12530: -17,-71 + 12531: -17,-70 + 12532: -17,-69 + 12533: -17,-68 + 12539: -16,-80 + 12540: -16,-81 + 12550: -23,-81 + 12671: -1,40 + 12681: -4,38 + 12682: -4,39 + 12732: -37,27 + 12733: -38,27 + 12734: -38,28 + 13396: -41,-67 + 13397: -41,-66 + 13412: -41,-65 + 13416: -35,-66 + 13435: -34,-67 + 13606: -35,-78 + 13954: -68,59 + 13955: -68,60 + 13956: -68,61 + 15496: -8,-78 + 15498: -3,-78 + 15724: 91,4 + 15725: 91,3 + 15726: 91,2 + 15727: 91,1 + 15728: 91,0 + 15729: 91,-1 + 15769: 97,2 + 15861: 81,5 + 15862: 81,6 + 15928: 97,13 + 16186: -72,-41 + 16187: -70,-44 + 16188: -70,-45 + 16198: -61,-43 + 16490: -41,-10 + 18158: -66,17 + 18168: -58,6 + 18442: -60,-44 + 18443: -60,-45 + 18869: -115,32 + 19507: -11,31 + 19508: -11,32 + 19509: -11,33 + 19510: -11,29 + 19511: -11,28 + 19512: -11,27 + 19575: 55,23 + 19576: 55,24 + 19577: 55,25 + 19578: 55,26 + 19579: 52,23 + 19580: 52,24 + 19581: 52,25 + 19582: 52,26 + 19891: -27,11 + 19892: -27,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -25387,31 +25386,31 @@ entities: color: '#FFFFFF42' id: clown decals: - 13372: 55.22766,-37.04212 + 13370: 55.22766,-37.04212 - node: angle: 1.5707963267948966 rad color: '#FFFFFF42' id: corgi decals: - 13373: 53.258907,-37.95879 + 13371: 53.258907,-37.95879 - node: color: '#FFFFFF42' id: disk decals: - 13371: 54.696407,-34.97962 + 13369: 54.696407,-34.97962 - node: color: '#FFFFFF42' id: face decals: - 13370: 54.258907,-35.719204 + 13368: 54.258907,-35.719204 - node: cleanable: True angle: -0.7853981633974483 rad color: '#95171085' id: footprint decals: - 15387: -45.887077,-23.10373 - 15388: -45.527702,-22.869354 + 15385: -45.887077,-23.10373 + 15386: -45.527702,-22.869354 - node: color: '#D381C996' id: ghost @@ -25429,7 +25428,7 @@ entities: color: '#FFFFFFFF' id: grasssnow01 decals: - 14229: -71.98031,53.856472 + 14227: -71.98031,53.856472 - node: cleanable: True color: '#53960057' @@ -25474,7 +25473,7 @@ entities: color: '#FFFFFFFF' id: grasssnow05 decals: - 14225: -71.26156,54.153347 + 14223: -71.26156,54.153347 - node: cleanable: True color: '#53960057' @@ -25529,7 +25528,7 @@ entities: color: '#FFFFFFFF' id: grasssnow07 decals: - 14226: -70.73031,54.825222 + 14224: -70.73031,54.825222 - node: cleanable: True color: '#53960057' @@ -25555,7 +25554,7 @@ entities: color: '#FFFFFFFF' id: grasssnow08 decals: - 14227: -70.04281,53.918972 + 14225: -70.04281,53.918972 - node: cleanable: True color: '#53960057' @@ -25593,7 +25592,7 @@ entities: color: '#FFFFFFFF' id: grasssnow10 decals: - 14224: -71.855316,54.965847 + 14222: -71.855316,54.965847 - node: cleanable: True color: '#53960057' @@ -25640,83 +25639,83 @@ entities: color: '#FFFFFFFF' id: grasssnowa1 decals: - 14223: -70.57406,54.043972 + 14221: -70.57406,54.043972 - node: color: '#FFFFFFFF' id: grasssnowb1 decals: - 14222: -71.94906,54.028347 + 14220: -71.94906,54.028347 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 14228: -72.02719,55.09085 + 14226: -72.02719,55.09085 - node: angle: 1.5707963267948966 rad color: '#640000FF' id: pawprint decals: - 13367: 52.706825,-37.17754 + 13365: 52.706825,-37.17754 - node: angle: 3.141592653589793 rad color: '#640000FF' id: pawprint decals: - 13360: 52.727657,-35.10462 - 13361: 52.988075,-35.38587 - 13362: 52.696407,-35.60462 - 13363: 52.95682,-35.91712 - 13364: 52.71724,-36.125458 - 13365: 52.96724,-36.45879 - 13366: 52.67557,-36.656708 - 13368: 52.95682,-36.92754 - 13369: 52.946407,-34.79212 + 13358: 52.727657,-35.10462 + 13359: 52.988075,-35.38587 + 13360: 52.696407,-35.60462 + 13361: 52.95682,-35.91712 + 13362: 52.71724,-36.125458 + 13363: 52.96724,-36.45879 + 13364: 52.67557,-36.656708 + 13366: 52.95682,-36.92754 + 13367: 52.946407,-34.79212 - node: color: '#630000FF' id: rune2 decals: - 13625: -29.676588,-77.64111 + 13623: -29.676588,-77.64111 - node: color: '#630000FF' id: rune4 decals: - 13623: -36.02427,-73.86186 + 13621: -36.02427,-73.86186 - node: color: '#630000FF' id: rune5 decals: - 13624: -32.153282,-75.98998 + 13622: -32.153282,-75.98998 - node: color: '#630000FF' id: rune6 decals: - 13626: -35.987576,-80.062775 + 13624: -35.987576,-80.062775 - node: color: '#15FFFF22' id: splatter decals: - 21675: -62.94583,-29.13605 - 21676: -63.35208,-29.2298 - 21677: -63.38333,-29.292301 - 21678: -63.16458,-29.401674 - 21679: -62.992706,-29.44855 - 21680: -63.242702,-29.776674 - 21681: -63.055202,-29.7923 - 21682: -62.805202,-29.589174 - 21683: -62.53958,-29.38605 - 21684: -62.430206,-29.26105 - 21685: -62.492706,-29.151674 - 21686: -62.805206,-28.94855 - 21687: -62.97708,-28.901674 + 21644: -62.94583,-29.13605 + 21645: -63.35208,-29.2298 + 21646: -63.38333,-29.292301 + 21647: -63.16458,-29.401674 + 21648: -62.992706,-29.44855 + 21649: -63.242702,-29.776674 + 21650: -63.055202,-29.7923 + 21651: -62.805202,-29.589174 + 21652: -62.53958,-29.38605 + 21653: -62.430206,-29.26105 + 21654: -62.492706,-29.151674 + 21655: -62.805206,-28.94855 + 21656: -62.97708,-28.901674 - node: color: '#15FFFF68' id: splatter decals: - 21670: -63.180206,-29.32355 - 21671: -63.180206,-29.32355 - 21672: -62.88333,-29.214174 - 21673: -62.711456,-29.182924 - 21674: -62.648956,-29.151674 + 21639: -63.180206,-29.32355 + 21640: -63.180206,-29.32355 + 21641: -62.88333,-29.214174 + 21642: -62.711456,-29.182924 + 21643: -62.648956,-29.151674 - node: cleanable: True color: '#52B4E93B' @@ -25754,103 +25753,103 @@ entities: color: '#630000FF' id: splatter decals: - 13618: -29.986324,-80.05321 - 13619: -29.949633,-80.47516 - 13620: -28.824398,-73.46101 - 13621: -28.98951,-73.22252 - 13622: -28.695976,-73.13079 - 13627: -33.67599,-75.01765 - 13628: -33.565918,-74.7608 + 13616: -29.986324,-80.05321 + 13617: -29.949633,-80.47516 + 13618: -28.824398,-73.46101 + 13619: -28.98951,-73.22252 + 13620: -28.695976,-73.13079 + 13625: -33.67599,-75.01765 + 13626: -33.565918,-74.7608 - node: color: '#640000FF' id: splatter decals: - 13357: 55.854828,-38.332344 - 13358: 55.42427,-38.3879 - 13359: 52.66038,-34.5129 + 13355: 55.854828,-38.332344 + 13356: 55.42427,-38.3879 + 13357: 52.66038,-34.5129 - node: cleanable: True color: '#6CDBD006' id: splatter decals: - 14429: -65.29756,58.074463 - 14430: -65.51631,62.043217 - 14431: -65.34444,61.793213 - 14432: -67.65694,58.027588 - 14433: -67.54756,58.465088 - 14434: -67.23506,61.699463 - 14435: -66.76631,61.652588 - 14436: -67.12569,61.715088 + 14427: -65.29756,58.074463 + 14428: -65.51631,62.043217 + 14429: -65.34444,61.793213 + 14430: -67.65694,58.027588 + 14431: -67.54756,58.465088 + 14432: -67.23506,61.699463 + 14433: -66.76631,61.652588 + 14434: -67.12569,61.715088 - node: cleanable: True color: '#6CDBD012' id: splatter decals: - 14437: -67.01631,61.777588 + 14435: -67.01631,61.777588 - node: cleanable: True color: '#6CDBD015' id: splatter decals: - 14168: -71.167816,57.481472 - 14169: -70.58969,57.543972 - 14170: -70.667816,58.090847 - 14171: -70.667816,57.715847 - 14172: -70.96469,57.497097 - 14173: -71.136566,57.387722 - 14174: -71.21469,57.059597 - 14175: -71.167816,56.903347 - 14176: -71.136566,57.153347 - 14177: -70.824066,57.512722 - 14178: -70.58969,57.684597 - 14179: -70.43344,57.997097 - 14180: -70.43343,58.262722 - 14181: -70.43344,58.122097 - 14182: -70.511566,57.715847 - 14183: -70.667816,57.434597 - 14184: -71.02719,57.278347 - 14185: -72.12094,57.6221 - 14186: -72.12094,57.6221 - 14187: -71.90219,57.700222 - 14188: -71.667816,57.840847 - 14189: -71.52719,58.043972 - 14190: -71.511566,58.200222 - 14191: -71.511566,58.200222 - 14192: -71.605316,57.997097 - 14193: -71.761566,57.778347 - 14194: -71.90219,57.575222 - 14195: -72.05844,57.497097 - 14196: -72.167816,57.450226 - 14197: -72.230316,57.418976 - 14198: -72.02719,57.481472 - 14199: -71.74594,57.684597 - 14200: -71.542816,57.934597 - 14201: -71.48031,58.247097 - 14202: -71.48031,58.372097 - 14203: -71.49594,58.200222 - 14204: -71.77719,57.747097 - 14205: -72.15219,57.418976 - 14206: -72.386566,57.27835 - 14207: -71.136566,56.715847 - 14208: -71.08969,56.715847 - 14209: -70.949066,56.622097 - 14210: -70.80844,56.559597 - 14211: -70.62094,56.543972 - 14212: -70.37094,56.512722 - 14213: -70.15219,56.512722 - 14214: -69.917816,56.512722 - 14215: -69.792816,56.512726 + 14166: -71.167816,57.481472 + 14167: -70.58969,57.543972 + 14168: -70.667816,58.090847 + 14169: -70.667816,57.715847 + 14170: -70.96469,57.497097 + 14171: -71.136566,57.387722 + 14172: -71.21469,57.059597 + 14173: -71.167816,56.903347 + 14174: -71.136566,57.153347 + 14175: -70.824066,57.512722 + 14176: -70.58969,57.684597 + 14177: -70.43344,57.997097 + 14178: -70.43343,58.262722 + 14179: -70.43344,58.122097 + 14180: -70.511566,57.715847 + 14181: -70.667816,57.434597 + 14182: -71.02719,57.278347 + 14183: -72.12094,57.6221 + 14184: -72.12094,57.6221 + 14185: -71.90219,57.700222 + 14186: -71.667816,57.840847 + 14187: -71.52719,58.043972 + 14188: -71.511566,58.200222 + 14189: -71.511566,58.200222 + 14190: -71.605316,57.997097 + 14191: -71.761566,57.778347 + 14192: -71.90219,57.575222 + 14193: -72.05844,57.497097 + 14194: -72.167816,57.450226 + 14195: -72.230316,57.418976 + 14196: -72.02719,57.481472 + 14197: -71.74594,57.684597 + 14198: -71.542816,57.934597 + 14199: -71.48031,58.247097 + 14200: -71.48031,58.372097 + 14201: -71.49594,58.200222 + 14202: -71.77719,57.747097 + 14203: -72.15219,57.418976 + 14204: -72.386566,57.27835 + 14205: -71.136566,56.715847 + 14206: -71.08969,56.715847 + 14207: -70.949066,56.622097 + 14208: -70.80844,56.559597 + 14209: -70.62094,56.543972 + 14210: -70.37094,56.512722 + 14211: -70.15219,56.512722 + 14212: -69.917816,56.512722 + 14213: -69.792816,56.512726 - node: cleanable: True color: '#6CDBD034' id: splatter decals: - 14216: -70.917816,56.653347 - 14217: -70.71469,56.653347 - 14218: -70.49594,56.653347 - 14219: -70.136566,56.622097 - 14220: -69.90219,56.6221 - 14221: -69.87094,56.6221 + 14214: -70.917816,56.653347 + 14215: -70.71469,56.653347 + 14216: -70.49594,56.653347 + 14217: -70.136566,56.622097 + 14218: -69.90219,56.6221 + 14219: -69.87094,56.6221 - node: cleanable: True color: '#703C065D' @@ -25879,75 +25878,75 @@ entities: color: '#95000068' id: splatter decals: - 21611: -64.85194,-25.289093 - 21612: -65.03944,-25.289093 - 21613: -65.35194,-25.195345 - 21614: -65.11756,-24.773468 - 21615: -64.94569,-24.585968 - 21616: -64.71131,-24.695343 - 21617: -64.75819,-25.132843 - 21618: -64.82069,-25.226593 - 21619: -65.22694,-25.27347 - 21620: -65.43006,-25.164095 - 21621: -65.50819,-25.039095 - 21622: -65.25819,-25.101595 - 21623: -64.49256,-27.11722 - 21624: -64.49256,-27.257845 - 21625: -64.25819,-27.476595 - 21626: -63.99256,-27.507845 - 21627: -63.93006,-27.55472 - 21628: -64.27381,-27.61722 - 21629: -64.49256,-27.382845 - 21630: -58.945686,-27.39847 - 21631: -59.570686,-27.351593 - 21632: -59.64881,-27.351595 - 21633: -59.21131,-27.117218 - 21634: -59.476936,-27.164093 - 21635: -59.695686,-27.49222 - 21636: -59.86756,-27.601595 - 21637: -63.789436,-22.445345 - 21638: -64.18006,-22.507845 - 21639: -64.38319,-22.64847 - 21640: -64.64881,-23.007843 - 21641: -64.64881,-23.007843 - 21642: -64.36756,-22.58597 - 21643: -64.11756,-22.414095 - 21644: -59.055065,-25.320345 - 21645: -59.22694,-25.023468 - 21646: -58.867565,-24.757845 - 21647: -58.57069,-24.58597 - 21648: -58.69569,-24.507845 - 21649: -58.94569,-25.132845 - 21650: -58.773815,-25.101595 - 21651: -63.070805,-30.339186 - 21652: -63.336452,-30.19855 - 21653: -63.570827,-29.886051 - 21654: -63.38333,-29.401676 - 21655: -63.47708,-29.167301 - 21656: -63.53958,-28.917301 - 21657: -63.336456,-28.964174 - 21658: -63.539577,-29.495426 - 21659: -63.430202,-29.964176 - 21660: -63.242702,-30.07355 - 21661: -63.086452,-30.19855 - 21662: -61.617706,-29.229801 - 21663: -61.336456,-29.151674 - 21664: -61.242706,-28.9173 - 21665: -61.055206,-28.745424 - 21666: -60.836456,-28.7298 - 21667: -60.742706,-28.7298 - 21668: -60.836456,-28.870424 - 21669: -60.85208,-29.120424 + 21580: -64.85194,-25.289093 + 21581: -65.03944,-25.289093 + 21582: -65.35194,-25.195345 + 21583: -65.11756,-24.773468 + 21584: -64.94569,-24.585968 + 21585: -64.71131,-24.695343 + 21586: -64.75819,-25.132843 + 21587: -64.82069,-25.226593 + 21588: -65.22694,-25.27347 + 21589: -65.43006,-25.164095 + 21590: -65.50819,-25.039095 + 21591: -65.25819,-25.101595 + 21592: -64.49256,-27.11722 + 21593: -64.49256,-27.257845 + 21594: -64.25819,-27.476595 + 21595: -63.99256,-27.507845 + 21596: -63.93006,-27.55472 + 21597: -64.27381,-27.61722 + 21598: -64.49256,-27.382845 + 21599: -58.945686,-27.39847 + 21600: -59.570686,-27.351593 + 21601: -59.64881,-27.351595 + 21602: -59.21131,-27.117218 + 21603: -59.476936,-27.164093 + 21604: -59.695686,-27.49222 + 21605: -59.86756,-27.601595 + 21606: -63.789436,-22.445345 + 21607: -64.18006,-22.507845 + 21608: -64.38319,-22.64847 + 21609: -64.64881,-23.007843 + 21610: -64.64881,-23.007843 + 21611: -64.36756,-22.58597 + 21612: -64.11756,-22.414095 + 21613: -59.055065,-25.320345 + 21614: -59.22694,-25.023468 + 21615: -58.867565,-24.757845 + 21616: -58.57069,-24.58597 + 21617: -58.69569,-24.507845 + 21618: -58.94569,-25.132845 + 21619: -58.773815,-25.101595 + 21620: -63.070805,-30.339186 + 21621: -63.336452,-30.19855 + 21622: -63.570827,-29.886051 + 21623: -63.38333,-29.401676 + 21624: -63.47708,-29.167301 + 21625: -63.53958,-28.917301 + 21626: -63.336456,-28.964174 + 21627: -63.539577,-29.495426 + 21628: -63.430202,-29.964176 + 21629: -63.242702,-30.07355 + 21630: -63.086452,-30.19855 + 21631: -61.617706,-29.229801 + 21632: -61.336456,-29.151674 + 21633: -61.242706,-28.9173 + 21634: -61.055206,-28.745424 + 21635: -60.836456,-28.7298 + 21636: -60.742706,-28.7298 + 21637: -60.836456,-28.870424 + 21638: -60.85208,-29.120424 - node: cleanable: True color: '#95171085' id: splatter decals: - 15382: -45.01208,-21.634981 - 15383: -44.66833,-21.947481 - 15384: -45.13708,-21.775606 - 15385: -44.82458,-21.947481 - 15386: -45.012077,-22.541231 + 15380: -45.01208,-21.634981 + 15381: -44.66833,-21.947481 + 15382: -45.13708,-21.775606 + 15383: -44.82458,-21.947481 + 15384: -45.012077,-22.541231 - node: cleanable: True color: '#951710FF' @@ -25960,57 +25959,57 @@ entities: color: '#D9DBD0CC' id: splatter decals: - 14157: -70.230316,55.856472 - 14158: -69.87094,55.84085 - 14159: -70.71469,55.918972 - 14160: -70.105316,55.684597 - 14161: -69.824066,55.7471 - 14162: -70.80844,55.918972 - 14163: -71.199066,55.903347 - 14164: -71.52719,55.950222 - 14165: -72.042816,56.0596 - 14166: -72.33969,56.09085 - 14167: -71.77719,55.965847 + 14155: -70.230316,55.856472 + 14156: -69.87094,55.84085 + 14157: -70.71469,55.918972 + 14158: -70.105316,55.684597 + 14159: -69.824066,55.7471 + 14160: -70.80844,55.918972 + 14161: -71.199066,55.903347 + 14162: -71.52719,55.950222 + 14163: -72.042816,56.0596 + 14164: -72.33969,56.09085 + 14165: -71.77719,55.965847 - node: color: '#FF002268' id: splatter decals: - 21605: -64.99256,-25.179718 - 21606: -65.21131,-24.976593 - 21607: -64.78944,-24.710968 - 21608: -64.61756,-24.89847 - 21609: -64.64881,-25.351593 - 21610: -64.91444,-25.367218 + 21574: -64.99256,-25.179718 + 21575: -65.21131,-24.976593 + 21576: -64.78944,-24.710968 + 21577: -64.61756,-24.89847 + 21578: -64.64881,-25.351593 + 21579: -64.91444,-25.367218 - node: cleanable: True color: '#FFFFFFCD' id: splatter decals: - 14137: -70.58968,54.450222 - 14138: -70.30843,54.309597 - 14139: -69.88656,54.2471 - 14140: -70.43343,54.512722 - 14141: -70.730316,54.950222 - 14142: -70.58969,55.262722 - 14143: -70.62094,55.184597 - 14144: -70.74594,54.856472 - 14145: -70.62093,54.653347 - 14146: -70.54281,54.465847 - 14147: -70.58969,55.325222 - 14148: -69.74593,54.325226 - 14149: -70.52719,54.887722 - 14150: -70.18343,54.700222 - 14151: -72.199066,55.481476 - 14152: -71.761566,55.450222 - 14153: -71.355316,55.434597 - 14154: -71.08969,55.403347 - 14155: -70.58969,55.497097 - 14156: -70.65219,55.559597 + 14135: -70.58968,54.450222 + 14136: -70.30843,54.309597 + 14137: -69.88656,54.2471 + 14138: -70.43343,54.512722 + 14139: -70.730316,54.950222 + 14140: -70.58969,55.262722 + 14141: -70.62094,55.184597 + 14142: -70.74594,54.856472 + 14143: -70.62093,54.653347 + 14144: -70.54281,54.465847 + 14145: -70.58969,55.325222 + 14146: -69.74593,54.325226 + 14147: -70.52719,54.887722 + 14148: -70.18343,54.700222 + 14149: -72.199066,55.481476 + 14150: -71.761566,55.450222 + 14151: -71.355316,55.434597 + 14152: -71.08969,55.403347 + 14153: -70.58969,55.497097 + 14154: -70.65219,55.559597 - node: color: '#A40000FF' id: star decals: - 13617: -33.071037,-77.06283 + 13615: -33.071037,-77.06283 - node: cleanable: True color: '#DDC3A1FF' @@ -27957,7 +27956,8 @@ entities: -10,10: 0: 61190 -10,11: - 0: 52964 + 0: 52452 + 10: 512 -10,12: 0: 3822 -9,9: @@ -29931,7 +29931,7 @@ entities: - type: Joint joints: docking93271: !type:WeldJoint - bodyB: 38484 + bodyB: 38311 bodyA: 2 id: docking93271 localAnchorB: 5,0.49999997 @@ -30004,7 +30004,7 @@ entities: - type: ContainedSolution containerName: food container: 9 - - uid: 38484 + - uid: 38311 components: - type: MetaData name: SFD Стервятник DS-753 @@ -30105,7 +30105,7 @@ entities: - type: Joint joints: docking93271: !type:WeldJoint - bodyB: 38484 + bodyB: 38311 bodyA: 2 id: docking93271 localAnchorB: 5,0.49999997 @@ -30113,7 +30113,7 @@ entities: referenceAngle: -3.173097E-05 damping: 467.63986 stiffness: 4197.526 - - uid: 38584 + - uid: 38411 components: - type: MetaData name: Каторга "Злой Каблук" @@ -34071,11 +34071,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22442 - - 22605 - - 22443 - - 22448 - - 22622 + - 22365 + - 22528 + - 22366 + - 22371 + - 22545 - uid: 34 components: - type: Transform @@ -34084,18 +34084,18 @@ entities: parent: 2 - type: DeviceList devices: - - 795 - - 863 - - 22722 - - 22723 - - 22728 - - 22560 - - 22726 - - 22724 - - 22725 - - 18405 - - 18427 - - 18428 + - 791 + - 859 + - 22645 + - 22646 + - 22651 + - 22483 + - 22649 + - 22647 + - 22648 + - 18386 + - 18408 + - 18409 - uid: 35 components: - type: Transform @@ -34110,11 +34110,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18218 - - 18215 - - 18351 - - 18325 - - 752 + - 18199 + - 18196 + - 18332 + - 18306 + - 748 - uid: 37 components: - type: Transform @@ -34123,18 +34123,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18332 - - 18346 + - 18313 + - 18327 + - 18217 + - 18299 + - 18278 + - 18339 + - 18303 + - 18188 - 18236 - - 18318 - - 18297 - - 18358 - - 18322 - - 18207 - - 18255 - - 780 - - 22600 - - 824 + - 776 + - 22523 + - 820 - uid: 38 components: - type: Transform @@ -34143,21 +34143,21 @@ entities: parent: 2 - type: DeviceList devices: - - 22677 - - 22545 - - 22440 - - 22436 - - 843 - - 22685 - - 22439 - - 22441 - - 22678 - - 18304 - - 18320 - - 18202 - - 18228 - - 18229 - - 18227 + - 22600 + - 22468 + - 22363 + - 22359 + - 839 + - 22608 + - 22362 + - 22364 + - 22601 + - 18285 + - 18301 + - 18183 + - 18209 + - 18210 + - 18208 - uid: 39 components: - type: Transform @@ -34166,14 +34166,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18351 - - 18325 - - 18228 - - 18229 - - 18227 - - 22686 - - 22687 - - 22438 + - 18332 + - 18306 + - 18209 + - 18210 + - 18208 + - 22609 + - 22610 + - 22361 - uid: 40 components: - type: Transform @@ -34182,19 +34182,19 @@ entities: parent: 2 - type: DeviceList devices: - - 22684 - - 22437 - - 22683 - - 22434 - - 752 - - 22682 - - 845 - - 22435 - - 18324 - - 18212 - - 18350 - - 18215 - - 18218 + - 22607 + - 22360 + - 22606 + - 22357 + - 748 + - 22605 + - 841 + - 22358 + - 18305 + - 18193 + - 18331 + - 18196 + - 18199 - uid: 41 components: - type: Transform @@ -34209,16 +34209,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22529 - - 22530 - - 22577 - - 22531 - - 22532 - - 777 - - 22578 - - 22579 - - 22533 - - 22580 + - 22452 + - 22453 + - 22500 + - 22454 + - 22455 + - 773 + - 22501 + - 22502 + - 22456 + - 22503 - uid: 43 components: - type: Transform @@ -34226,9 +34226,9 @@ entities: parent: 2 - type: DeviceList devices: - - 762 - - 18383 - - 18382 + - 758 + - 18364 + - 18363 - uid: 44 components: - type: Transform @@ -34237,10 +34237,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22717 - - 22548 - - 768 - - 18384 + - 22640 + - 22471 + - 764 + - 18365 - uid: 45 components: - type: Transform @@ -34249,10 +34249,10 @@ entities: parent: 2 - type: DeviceList devices: - - 769 - - 22714 - - 22550 - - 18385 + - 765 + - 22637 + - 22473 + - 18366 - uid: 46 components: - type: Transform @@ -34261,15 +34261,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22555 - - 22719 - - 763 - - 18387 - - 18386 - - 18385 - - 18382 - - 18383 - - 18384 + - 22478 + - 22642 + - 759 + - 18368 + - 18367 + - 18366 + - 18363 + - 18364 + - 18365 - uid: 47 components: - type: Transform @@ -34278,17 +34278,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22720 - - 22554 - - 764 - - 18393 - - 18392 - - 18390 - - 18391 - - 18388 - - 18389 - - 18387 - - 18386 + - 22643 + - 22477 + - 760 + - 18374 + - 18373 + - 18371 + - 18372 + - 18369 + - 18370 + - 18368 + - 18367 - uid: 48 components: - type: Transform @@ -34297,11 +34297,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22551 - - 766 - - 22716 - - 18390 - - 18391 + - 22474 + - 762 + - 22639 + - 18371 + - 18372 - uid: 49 components: - type: Transform @@ -34310,11 +34310,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22549 - - 767 - - 22715 - - 18388 - - 18389 + - 22472 + - 763 + - 22638 + - 18369 + - 18370 - uid: 50 components: - type: Transform @@ -34323,11 +34323,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18392 - - 18393 - - 22718 - - 765 - - 22552 + - 18373 + - 18374 + - 22641 + - 761 + - 22475 - uid: 51 components: - type: Transform @@ -34335,11 +34335,11 @@ entities: parent: 2 - type: DeviceList devices: - - 771 - - 18115 - - 18114 - - 18054 - - 18053 + - 767 + - 18096 + - 18095 + - 18035 + - 18034 - uid: 52 components: - type: Transform @@ -34348,10 +34348,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22464 - - 22557 - - 22573 - - 22570 + - 22387 + - 22480 + - 22496 + - 22493 - uid: 53 components: - type: Transform @@ -34359,26 +34359,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18288 - - 18235 - - 18247 - - 22594 - - 822 - - 22523 + - 18269 + - 18216 + - 18228 + - 22517 + - 818 + - 22446 + - 18205 + - 18204 + - 18274 + - 22447 - 18224 - - 18223 - - 18293 - - 22524 - - 18243 - - 18296 - - 18246 - - 18282 - - 18234 - - 18356 - - 18222 - - 754 - - 22599 + - 18277 + - 18227 + - 18263 + - 18215 + - 18337 + - 18203 + - 750 - 22522 + - 22445 - uid: 54 components: - type: Transform @@ -34387,28 +34387,28 @@ entities: parent: 2 - type: DeviceList devices: - - 800 - - 22641 - - 857 - - 22505 - - 18331 - - 18209 - - 18308 - - 18273 + - 796 + - 22564 + - 853 + - 22428 + - 18312 - 18190 - - 18104 - - 18097 - - 18110 - - 18094 - - 18099 + - 18289 + - 18254 + - 18171 + - 18085 + - 18078 - 18091 - - 18069 - - 18066 - - 18109 - - 18065 - - 18082 - - 22506 - - 22644 + - 18075 + - 18080 + - 18072 + - 18050 + - 18047 + - 18090 + - 18046 + - 18063 + - 22429 + - 22567 - uid: 55 components: - type: Transform @@ -34422,23 +34422,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22393 - - 820 - - 18406 - - 18407 - - 22392 - - 814 - - 18412 - - 18413 - - 18408 - - 18411 - - 18414 - - 22391 - - 815 - - 18410 - - 18409 - - 18160 - - 18164 + - 22316 + - 816 + - 18387 + - 18388 + - 22315 + - 810 + - 18393 + - 18394 + - 18389 + - 18392 + - 18395 + - 22314 + - 811 + - 18391 + - 18390 + - 18141 + - 18145 - uid: 57 components: - type: Transform @@ -34452,10 +34452,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18417 - - 18416 - - 749 - - 22381 + - 18398 + - 18397 + - 745 + - 22304 - uid: 59 components: - type: Transform @@ -34464,14 +34464,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18290 - - 18419 - - 18420 - - 821 - - 813 - - 18159 - - 18418 - - 18130 + - 18271 + - 18400 + - 18401 + - 817 + - 809 + - 18140 + - 18399 + - 18111 - uid: 60 components: - type: Transform @@ -34480,13 +34480,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22592 - - 22527 - - 22526 - - 22591 - - 22528 - - 22576 - - 22394 + - 22515 + - 22450 + - 22449 + - 22514 + - 22451 + - 22499 + - 22317 - uid: 61 components: - type: Transform @@ -34495,12 +34495,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22539 - - 22572 - - 22582 - - 22538 - - 22581 - - 22540 + - 22462 + - 22495 + - 22505 + - 22461 + - 22504 + - 22463 - uid: 62 components: - type: Transform @@ -34509,8 +34509,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22529 - - 22530 + - 22452 + - 22453 - uid: 63 components: - type: Transform @@ -34519,17 +34519,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22587 - - 22537 - - 22583 - - 22534 - - 22568 - - 22536 - - 22586 - - 22535 - - 22584 - - 778 - - 22585 + - 22510 + - 22460 + - 22506 + - 22457 + - 22491 + - 22459 + - 22509 + - 22458 + - 22507 + - 774 + - 22508 - uid: 64 components: - type: Transform @@ -34537,21 +34537,21 @@ entities: parent: 2 - type: DeviceList devices: - - 18044 - - 18045 - - 18036 - - 18043 - - 18047 - - 18048 - - 823 - - 22463 - - 22595 - - 22462 - - 753 - - 22596 - - 22461 - - 22598 - - 22597 + - 18025 + - 18026 + - 18018 + - 18024 + - 18028 + - 18029 + - 819 + - 22386 + - 22518 + - 22385 + - 749 + - 22519 + - 22384 + - 22521 + - 22520 - uid: 65 components: - type: Transform @@ -34559,26 +34559,26 @@ entities: parent: 2 - type: DeviceList devices: - - 781 - - 18062 - - 18059 - - 18117 - - 782 - - 22604 - - 22447 - - 18063 - - 18064 - - 18116 - - 18302 - - 18184 - - 18429 - - 18217 - - 18187 - - 18120 - - 22449 - - 22450 - - 22452 - - 22451 + - 777 + - 18043 + - 18040 + - 18098 + - 778 + - 22527 + - 22370 + - 18044 + - 18045 + - 18097 + - 18283 + - 18165 + - 18410 + - 18198 + - 18168 + - 18101 + - 22372 + - 22373 + - 22375 + - 22374 - uid: 66 components: - type: Transform @@ -34587,11 +34587,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22624 - - 22459 - - 22571 - - 22458 - - 22457 + - 22547 + - 22382 + - 22494 + - 22381 + - 22380 - uid: 67 components: - type: Transform @@ -34600,11 +34600,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22625 - - 22466 - - 22465 - - 22626 - - 22627 + - 22548 + - 22389 + - 22388 + - 22549 + - 22550 - uid: 68 components: - type: Transform @@ -34613,8 +34613,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22603 - - 22453 + - 22526 + - 22376 - uid: 69 components: - type: Transform @@ -34622,23 +34622,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22394 - - 22398 - - 22575 - - 22397 - - 22590 - - 22589 - - 18206 - - 18421 - - 18422 - - 18349 - - 22588 - - 22593 - - 22525 - - 812 - - 18426 - - 18425 - - 18424 + - 22317 + - 22321 + - 22498 + - 22320 + - 22513 + - 22512 + - 18187 + - 18402 + - 18403 + - 18330 + - 22511 + - 22516 + - 22448 + - 808 + - 18407 + - 18406 + - 18405 - uid: 70 components: - type: Transform @@ -34646,13 +34646,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18129 - - 18136 - - 18140 - - 22664 - - 22563 - - 22482 - - 22674 + - 18110 + - 18117 + - 18121 + - 22587 + - 22486 + - 22405 + - 22597 - uid: 71 components: - type: Transform @@ -34661,33 +34661,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18081 - - 18080 - - 18087 - - 18083 - - 18096 - - 18070 + - 18062 + - 18061 - 18068 + - 18064 + - 18077 + - 18051 + - 18049 + - 18069 + - 18071 + - 18079 - 18088 - - 18090 - - 18098 - - 18107 - - 18093 - - 855 - - 775 - - 22640 - - 22503 - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 + - 18074 + - 851 + - 771 + - 22563 + - 22426 - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 + - 18070 + - 18073 + - 18059 + - 18056 + - 18057 + - 18083 + - 18060 + - 18065 + - 18067 + - 18066 - uid: 72 components: - type: Transform @@ -34695,17 +34695,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18067 - - 18106 - - 18105 - - 18108 - - 18101 - - 18073 - - 856 - - 22639 - - 22395 - - 22638 - - 22504 + - 18048 + - 18087 + - 18086 + - 18089 + - 18082 + - 18054 + - 852 + - 22562 + - 22318 + - 22561 + - 22427 - uid: 73 components: - type: Transform @@ -34714,10 +34714,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22642 - - 22507 - - 22508 - - 22643 + - 22565 + - 22430 + - 22431 + - 22566 - uid: 74 components: - type: Transform @@ -34726,30 +34726,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18225 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - - 22511 - - 862 - - 22656 - - 18244 - - 18239 - - 18311 - - 18364 - - 18295 - - 22657 - - 776 - - 22517 - - 810 - - 18240 - - 18238 - - 18249 - - 22516 - - 803 - - 22655 - - 22658 + - 22434 + - 858 + - 22579 + - 18225 + - 18220 + - 18292 + - 18345 + - 18276 + - 22580 + - 772 + - 22440 + - 806 + - 18221 + - 18219 + - 18230 + - 22439 + - 799 + - 22578 + - 22581 - uid: 75 components: - type: Transform @@ -34758,19 +34758,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18271 - - 18269 - - 18268 - - 859 - - 22721 - - 22389 - - 860 - - 22567 - - 22390 - - 858 - - 18355 - - 18208 - - 18354 + - 18252 + - 18250 + - 18249 + - 855 + - 22644 + - 22312 + - 856 + - 22490 + - 22313 + - 854 + - 18336 + - 18189 + - 18335 - uid: 76 components: - type: Transform @@ -34779,17 +34779,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22515 - - 22649 - - 861 - - 22512 - - 22513 - - 22519 - - 22650 - - 805 - - 18292 - - 18193 - - 18185 + - 22438 + - 22572 + - 857 + - 22435 + - 22436 + - 22442 + - 22573 + - 801 + - 18273 + - 18174 + - 18166 - uid: 77 components: - type: Transform @@ -34797,15 +34797,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22646 - - 22509 - - 18287 - - 18286 - - 811 - - 22566 - - 22645 - - 22648 - - 22514 + - 22569 + - 22432 + - 18268 + - 18267 + - 807 + - 22489 + - 22568 + - 22571 + - 22437 - uid: 78 components: - type: Transform @@ -34814,14 +34814,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22521 - - 806 - - 22520 - - 807 - - 22653 - - 22652 - - 18056 - - 18055 + - 22444 + - 802 + - 22443 + - 803 + - 22576 + - 22575 + - 18037 + - 18036 - uid: 79 components: - type: Transform @@ -34829,28 +34829,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18176 - - 18265 - - 18266 - - 18342 - - 22489 - - 757 - - 22628 - - 18161 - - 22629 - - 797 - - 22491 - - 18309 - - 18303 - - 18139 - - 18138 - - 18153 - - 22490 - - 796 - - 18362 - - 854 - - 22630 - - 22636 + - 18157 + - 18246 + - 18247 + - 18323 + - 22412 + - 753 + - 22551 + - 18142 + - 22552 + - 793 + - 22414 + - 18290 + - 18284 + - 18120 + - 18119 + - 18134 + - 22413 + - 792 + - 18343 + - 850 + - 22553 + - 22559 - uid: 80 components: - type: Transform @@ -34870,8 +34870,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22496 - - 22497 + - 22419 + - 22420 - uid: 83 components: - type: Transform @@ -34880,11 +34880,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22541 - - 22632 - - 22493 - - 22494 - - 22495 + - 22464 + - 22555 + - 22416 + - 22417 + - 22418 - uid: 84 components: - type: Transform @@ -34893,11 +34893,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22445 - - 22612 - - 22611 - - 22444 - - 22659 + - 22368 + - 22535 + - 22534 + - 22367 + - 22582 - uid: 85 components: - type: Transform @@ -34905,18 +34905,18 @@ entities: parent: 2 - type: DeviceList devices: - - 22471 - - 829 - - 18278 - - 18361 - - 18173 - - 18360 - - 18261 - - 18310 - - 18111 - - 18060 - - 18061 - - 22472 + - 22394 + - 825 + - 18259 + - 18342 + - 18154 + - 18341 + - 18242 + - 18291 + - 18092 + - 18041 + - 18042 + - 22395 - uid: 86 components: - type: Transform @@ -34925,28 +34925,28 @@ entities: parent: 2 - type: DeviceList devices: - - 831 - - 22661 - - 789 - - 22475 - - 22666 - - 22669 - - 22668 - - 22667 - - 22474 - - 22473 - - 18353 - - 18352 - - 18132 - - 18165 - - 18125 - - 791 - - 18129 - - 18136 - - 18140 - - 22663 - - 22662 - - 22660 + - 827 + - 22584 + - 785 + - 22398 + - 22589 + - 22592 + - 22591 + - 22590 + - 22397 + - 22396 + - 18334 + - 18333 + - 18113 + - 18146 + - 18106 + - 787 + - 18110 + - 18117 + - 18121 + - 22586 + - 22585 + - 22583 - uid: 87 components: - type: Transform @@ -34955,22 +34955,22 @@ entities: parent: 2 - type: DeviceList devices: - - 18248 - - 18326 - - 18241 - - 18283 - - 18231 - - 18253 - - 18252 - - 18279 - - 18205 - - 18201 - - 22702 - - 18179 - - 18306 - - 18203 - - 22413 - - 835 + - 18229 + - 18307 + - 18222 + - 18264 + - 18212 + - 18234 + - 18233 + - 18260 + - 18186 + - 18182 + - 22625 + - 18160 + - 18287 + - 18184 + - 22336 + - 831 - uid: 88 components: - type: Transform @@ -34979,13 +34979,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22476 - - 22670 - - 790 - - 18051 - - 18052 - - 22673 - - 22396 + - 22399 + - 22593 + - 786 + - 18032 + - 18033 + - 22596 + - 22319 - uid: 89 components: - type: Transform @@ -34994,14 +34994,14 @@ entities: parent: 2 - type: DeviceList devices: - - 792 - - 22477 - - 793 - - 22478 - - 18314 - - 18398 - - 18363 - - 18259 + - 788 + - 22400 + - 789 + - 22401 + - 18295 + - 18379 + - 18344 + - 18240 - uid: 90 components: - type: Transform @@ -35010,11 +35010,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18363 - - 18381 - - 18275 - - 22479 - - 22671 + - 18344 + - 18362 + - 18256 + - 22402 + - 22594 - uid: 91 components: - type: Transform @@ -35023,15 +35023,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22672 - - 794 - - 22480 - - 22481 + - 22595 + - 790 + - 22403 + - 22404 + - 18360 + - 18256 + - 18362 + - 18295 - 18379 - - 18275 - - 18381 - - 18314 - - 18398 - uid: 92 components: - type: Transform @@ -35040,23 +35040,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22631 - - 22492 - - 22637 - - 750 - - 22498 - - 22499 - - 22633 - - 22634 - - 22501 - - 22635 - - 799 - - 22500 - - 18260 - - 18149 - - 18276 - - 18277 - - 18262 + - 22554 + - 22415 + - 22560 + - 746 + - 22421 + - 22422 + - 22556 + - 22557 + - 22424 + - 22558 + - 795 + - 22423 + - 18241 + - 18130 + - 18257 + - 18258 + - 18243 - uid: 93 components: - type: Transform @@ -35070,11 +35070,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22675 - - 22486 - - 22565 - - 22485 - - 18395 + - 22598 + - 22409 + - 22488 + - 22408 + - 18376 - uid: 95 components: - type: Transform @@ -35083,28 +35083,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18342 - - 18266 - - 18265 - - 18176 - - 22488 - - 18343 - - 18339 - - 18171 - - 827 - - 826 - - 22608 - - 18237 - - 18334 + - 18323 + - 18247 + - 18246 + - 18157 + - 22411 + - 18324 + - 18320 + - 18152 + - 823 + - 822 + - 22531 + - 18218 + - 18315 + - 18169 + - 22425 + - 821 + - 18303 - 18188 - - 22502 - - 825 - - 18322 - - 18207 - - 18255 - - 18208 - - 18354 - - 18355 + - 18236 + - 18189 + - 18335 + - 18336 - uid: 96 components: - type: Transform @@ -35113,11 +35113,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18405 - - 18427 - - 18428 - - 22561 - - 22727 + - 18386 + - 18408 + - 18409 + - 22484 + - 22650 - uid: 97 components: - type: Transform @@ -35126,16 +35126,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18394 - - 22483 - - 772 - - 22484 - - 773 - - 22399 - - 18181 - - 18196 - - 18396 - - 774 + - 18375 + - 22406 + - 768 + - 22407 + - 769 + - 22322 + - 18162 + - 18177 + - 18377 + - 770 - uid: 98 components: - type: Transform @@ -35144,15 +35144,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18291 - - 18317 - - 18281 - - 837 - - 18367 - - 18347 - - 18232 - - 838 - - 22613 + - 18272 + - 18298 + - 18262 + - 833 + - 18348 + - 18328 + - 18213 + - 834 + - 22536 - uid: 99 components: - type: Transform @@ -35161,9 +35161,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22467 - - 784 - - 22614 + - 22390 + - 780 + - 22537 - uid: 100 components: - type: Transform @@ -35172,13 +35172,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22615 - - 22616 - - 22617 - - 22618 - - 22619 - - 22468 - - 785 + - 22538 + - 22539 + - 22540 + - 22541 + - 22542 + - 22391 + - 781 - uid: 101 components: - type: Transform @@ -35187,16 +35187,16 @@ entities: parent: 2 - type: DeviceList devices: - - 787 - - 22470 - - 22469 - - 22621 - - 22620 - - 18336 - - 18345 - - 18328 - - 18337 - - 788 + - 783 + - 22393 + - 22392 + - 22544 + - 22543 + - 18317 + - 18326 + - 18309 + - 18318 + - 784 - uid: 102 components: - type: Transform @@ -35205,17 +35205,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22414 - - 755 - - 22688 - - 18327 - - 18333 - - 18210 - - 18219 - - 18283 - - 18231 - - 22415 - - 22690 + - 22337 + - 751 + - 22611 + - 18308 + - 18314 + - 18191 + - 18200 + - 18264 + - 18212 + - 22338 + - 22613 - uid: 103 components: - type: Transform @@ -35224,7 +35224,7 @@ entities: parent: 2 - type: DeviceList devices: - - 865 + - 861 - uid: 104 components: - type: Transform @@ -35233,7 +35233,7 @@ entities: parent: 2 - type: DeviceList devices: - - 746 + - 742 - uid: 105 components: - type: Transform @@ -35242,14 +35242,14 @@ entities: parent: 2 - type: DeviceList devices: - - 850 - - 22423 - - 22700 - - 22569 - - 22425 - - 852 - - 847 - - 22697 + - 846 + - 22346 + - 22623 + - 22492 + - 22348 + - 848 + - 843 + - 22620 - uid: 106 components: - type: Transform @@ -35258,13 +35258,13 @@ entities: parent: 2 - type: DeviceList devices: - - 851 - - 22424 - - 22699 - - 18264 - - 18335 - - 18307 - - 18313 + - 847 + - 22347 + - 22622 + - 18245 + - 18316 + - 18288 + - 18294 - uid: 107 components: - type: Transform @@ -35273,14 +35273,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22698 - - 848 - - 18157 - - 18127 - - 18128 - - 18233 - - 18143 - - 22689 + - 22621 + - 844 + - 18138 + - 18108 + - 18109 + - 18214 + - 18124 + - 22612 - uid: 108 components: - type: Transform @@ -35289,20 +35289,20 @@ entities: parent: 2 - type: DeviceList devices: - - 22420 - - 22419 - - 22696 - - 22421 - - 846 - - 18403 - - 18402 - - 18123 - - 18256 - - 18251 - - 18182 - - 18230 - - 18316 - - 18365 + - 22343 + - 22342 + - 22619 + - 22344 + - 842 + - 18384 + - 18383 + - 18104 + - 18237 + - 18232 + - 18163 + - 18211 + - 18297 + - 18346 - uid: 109 components: - type: Transform @@ -35311,11 +35311,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22691 - - 22542 - - 22416 - - 759 - - 761 + - 22614 + - 22465 + - 22339 + - 755 + - 757 - uid: 110 components: - type: Transform @@ -35324,16 +35324,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22693 - - 22417 - - 18256 - - 18251 - - 18182 - - 22695 - - 22546 - - 22694 - - 758 - - 22418 + - 22616 + - 22340 + - 18237 + - 18232 + - 18163 + - 22618 + - 22469 + - 22617 + - 754 + - 22341 - uid: 111 components: - type: Transform @@ -35342,9 +35342,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22426 - - 22701 - - 853 + - 22349 + - 22624 + - 849 - uid: 112 components: - type: Transform @@ -35353,19 +35353,19 @@ entities: parent: 2 - type: DeviceList devices: - - 22610 - - 832 - - 18310 - - 18261 - - 18360 - - 18340 - - 18258 - - 18172 - - 22487 + - 22533 - 828 - - 18183 + - 18291 + - 18242 + - 18341 + - 18321 + - 18239 + - 18153 + - 22410 + - 824 + - 18164 + - 18151 - 18170 - - 18189 - uid: 113 components: - type: Transform @@ -35374,19 +35374,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18179 - - 18306 - - 18203 - - 22412 - - 819 - - 18299 - - 18174 - - 18319 - - 22411 - - 816 - - 22703 - - 22704 - - 22405 + - 18160 + - 18287 + - 18184 + - 22335 + - 815 + - 18280 + - 18155 + - 18300 + - 22334 + - 812 + - 22626 + - 22627 + - 22328 - uid: 114 components: - type: Transform @@ -35395,34 +35395,34 @@ entities: parent: 2 - type: DeviceList devices: - - 22705 - - 22710 - - 22400 - - 22709 - - 818 - - 22708 - - 22401 - - 22402 - - 839 - - 22403 - - 22706 - - 22404 - - 22707 - - 840 - - 18267 - - 18270 - - 18272 - - 18371 - - 18372 - - 18373 - - 18374 - - 18369 - - 18378 - - 18375 - - 18377 - - 18376 - - 18158 - - 18141 + - 22628 + - 22633 + - 22323 + - 22632 + - 814 + - 22631 + - 22324 + - 22325 + - 835 + - 22326 + - 22629 + - 22327 + - 22630 + - 836 + - 18248 + - 18251 + - 18253 + - 18352 + - 18353 + - 18354 + - 18355 + - 18350 + - 18359 + - 18356 + - 18358 + - 18357 + - 18139 + - 18122 - uid: 115 components: - type: Transform @@ -35430,13 +35430,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22713 - - 22711 - - 22406 - - 22407 - - 22712 - - 18141 - - 18158 + - 22636 + - 22634 + - 22329 + - 22330 + - 22635 + - 18122 + - 18139 - uid: 116 components: - type: Transform @@ -35445,8 +35445,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22410 - - 22409 + - 22333 + - 22332 - uid: 117 components: - type: Transform @@ -35454,26 +35454,26 @@ entities: parent: 2 - type: DeviceList devices: - - 22427 - - 817 - - 22676 - - 841 - - 22574 - - 22429 - - 842 - - 18198 - - 18289 - - 18348 - - 18204 - - 18380 - - 18180 - - 18280 + - 22350 + - 813 + - 22599 + - 837 + - 22497 + - 22352 + - 838 + - 18179 + - 18270 + - 18329 + - 18185 + - 18361 + - 18161 + - 18261 + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18253 - - 18252 + - 18158 + - 18234 + - 18233 - uid: 118 components: - type: Transform @@ -35482,20 +35482,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18366 - - 18315 - - 18284 - - 18281 - - 18317 - - 18291 - - 833 - - 22446 - - 18344 - - 18341 - - 18338 - - 18302 - - 18184 - - 18429 + - 18347 + - 18296 + - 18265 + - 18262 + - 18298 + - 18272 + - 829 + - 22369 + - 18325 + - 18322 + - 18319 + - 18283 + - 18165 + - 18410 - uid: 119 components: - type: Transform @@ -35510,11 +35510,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22431 - - 22680 - - 22679 - - 22430 - - 22433 + - 22354 + - 22603 + - 22602 + - 22353 + - 22356 - uid: 121 components: - type: Transform @@ -35522,8 +35522,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22432 - - 22681 + - 22355 + - 22604 - uid: 122 components: - type: Transform @@ -35531,18 +35531,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18167 - - 18145 - - 18131 - - 18177 - - 18197 - - 834 - - 22606 - - 18323 + - 18148 + - 18126 + - 18112 + - 18158 - 18178 - - 18284 - - 18315 - - 18366 + - 830 + - 22529 + - 18304 + - 18159 + - 18265 + - 18296 + - 18347 - uid: 123 components: - type: Transform @@ -35550,18 +35550,18 @@ entities: parent: 2 - type: DeviceList devices: - - 747 - - 22454 - - 18250 - - 18220 + - 743 + - 22377 + - 18231 + - 18201 + - 18181 + - 18135 + - 18143 + - 18149 + - 18308 + - 18314 + - 18191 - 18200 - - 18154 - - 18162 - - 18168 - - 18327 - - 18333 - - 18210 - - 18219 - uid: 124 components: - type: Transform @@ -35570,20 +35570,20 @@ entities: parent: 2 - type: DeviceList devices: + - 18198 + - 18168 + - 18101 - 18217 - - 18187 - - 18120 - - 18236 - - 18346 - - 18332 - - 22456 - - 22601 - - 836 - - 18250 - - 18220 - - 18200 - - 22602 - - 22455 + - 18327 + - 18313 + - 22379 + - 22524 + - 832 + - 18231 + - 18201 + - 18181 + - 22525 + - 22378 - uid: 125 components: - type: Transform @@ -35592,14 +35592,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22510 - - 801 - - 22647 - - 18225 + - 22433 + - 797 + - 22570 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - uid: 126 components: - type: Transform @@ -35608,43 +35608,43 @@ entities: parent: 2 - type: DeviceList devices: + - 800 + - 22441 - 804 - - 22518 - - 808 - - 22654 - - 809 - - 18034 - - 18029 - - 18031 - - uid: 38585 + - 22577 + - 805 + - 18016 + - 18011 + - 18013 + - uid: 38412 components: - type: Transform pos: -3.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39207 - - 39206 - - 39397 - - 39403 - - 38611 - - 39203 - - 39200 - - uid: 38586 + - 39034 + - 39033 + - 39224 + - 39230 + - 38438 + - 39030 + - 39027 + - uid: 38413 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,4.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 38611 - - 38612 - - 39400 - - 39405 - - 39199 - - 39202 - - 39201 + - 38438 + - 38439 + - 39227 + - 39232 + - 39026 + - 39029 + - 39028 - proto: AirAlarmElectronics entities: - uid: 127 @@ -35931,21 +35931,21 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,3.5 parent: 2 - - uid: 38587 + - uid: 38414 components: - type: Transform pos: -12.5,11.5 - parent: 38584 - - uid: 38588 + parent: 38411 + - uid: 38415 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 38589 + parent: 38411 + - uid: 38416 components: - type: Transform pos: -10.5,9.5 - parent: 38584 + parent: 38411 - proto: AirlockArmoryGlassLocked entities: - uid: 176 @@ -36092,28 +36092,28 @@ entities: parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 199 + - uid: 198 components: - type: MetaData name: вход в атмосферную - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 200 + - uid: 199 components: - type: MetaData name: вход в атмосферную - type: Transform pos: -52.5,19.5 parent: 2 - - uid: 201 + - uid: 200 components: - type: MetaData name: комната тестов атмосферы - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 202 + - uid: 201 components: - type: MetaData name: баня @@ -36121,83 +36121,83 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,57.5 parent: 2 - - uid: 203 + - uid: 202 components: - type: Transform pos: -44.5,51.5 parent: 2 - - uid: 204 + - uid: 203 components: - type: Transform pos: -42.5,51.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 205 + - uid: 204 components: - type: Transform pos: -8.5,45.5 parent: 2 - - uid: 206 + - uid: 205 components: - type: Transform pos: -4.5,37.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 207 + - uid: 206 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 208 + - uid: 207 components: - type: Transform pos: 38.5,4.5 parent: 2 - proto: AirlockBrigLocked entities: - - uid: 209 + - uid: 208 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 210 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-1.5 parent: 2 - - uid: 211 + - uid: 210 components: - type: Transform pos: 56.5,-1.5 parent: 2 - - uid: 212 + - uid: 211 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 213 + - uid: 212 components: - type: Transform pos: 21.5,23.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 214 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 2 - - uid: 215 + - uid: 214 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 2 - - uid: 216 + - uid: 215 components: - type: Transform rot: -1.5707963267948966 rad @@ -36205,141 +36205,141 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 217 + - uid: 216 components: - type: Transform pos: 11.5,28.5 parent: 2 - - uid: 218 + - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 - - uid: 219 + - uid: 218 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 220 + - uid: 219 components: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 221 + - uid: 220 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 222 + - uid: 221 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,45.5 parent: 2 - - uid: 223 + - uid: 222 components: - type: Transform pos: 10.5,38.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 224 + - uid: 223 components: - type: Transform pos: 12.5,36.5 parent: 2 - - uid: 225 + - uid: 224 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,52.5 parent: 2 - - uid: 226 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,53.5 parent: 2 - - uid: 227 + - uid: 226 components: - type: Transform pos: 12.5,35.5 parent: 2 - proto: AirlockChapelLocked entities: - - uid: 228 + - uid: 227 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-76.5 parent: 2 - - uid: 229 + - uid: 228 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-70.5 parent: 2 - - uid: 230 + - uid: 229 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-66.5 parent: 2 - - uid: 231 + - uid: 230 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-80.5 parent: 2 - - uid: 232 + - uid: 231 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-65.5 parent: 2 - - uid: 233 + - uid: 232 components: - type: Transform pos: -32.5,-71.5 parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 234 + - uid: 233 components: - type: Transform pos: 9.5,-35.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 235 + - uid: 234 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 236 + - uid: 235 components: - type: Transform pos: -120.5,39.5 parent: 2 - - uid: 237 + - uid: 236 components: - type: MetaData name: офис старшего инженера - type: Transform pos: -59.5,10.5 parent: 2 - - uid: 238 + - uid: 237 components: - type: Transform pos: -116.5,39.5 parent: 2 - - uid: 239 + - uid: 238 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 240 + - uid: 239 components: - type: MetaData desc: 'ОСТОРОЖНО: КРОВАТЬ' @@ -36347,135 +36347,135 @@ entities: - type: Transform pos: -59.5,6.5 parent: 2 - - uid: 241 + - uid: 240 components: - type: Transform pos: -119.5,20.5 parent: 2 - - uid: 242 + - uid: 241 components: - type: Transform pos: -117.5,20.5 parent: 2 - - uid: 243 + - uid: 242 components: - type: Transform pos: -116.5,40.5 parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 244 + - uid: 243 components: - type: Transform pos: 25.5,-43.5 parent: 2 - - uid: 245 + - uid: 244 components: - type: Transform pos: 19.5,-43.5 parent: 2 - - uid: 246 + - uid: 245 components: - type: Transform pos: 22.5,-49.5 parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 247 + - uid: 246 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 248 + - uid: 247 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 249 + - uid: 248 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 250 + - uid: 249 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 251 + - uid: 250 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 252 + - uid: 251 components: - type: Transform pos: -16.5,14.5 parent: 2 - - uid: 253 + - uid: 252 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 254 + - uid: 253 components: - type: Transform pos: 15.5,15.5 parent: 2 - - uid: 255 + - uid: 254 components: - type: Transform pos: 15.5,14.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 256 + - uid: 255 components: - type: MetaData name: питание мостика - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 257 + - uid: 256 components: - type: Transform pos: -72.5,3.5 parent: 2 - - uid: 258 + - uid: 257 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 259 + - uid: 258 components: - type: MetaData name: генератор гравитации - type: Transform pos: -71.5,9.5 parent: 2 - - uid: 260 + - uid: 259 components: - type: MetaData name: комната генератора гравитации - type: Transform pos: -71.5,13.5 parent: 2 - - uid: 261 + - uid: 260 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 262 + - uid: 261 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 - - uid: 263 + - uid: 262 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 264 + - uid: 263 components: - type: Transform rot: 3.141592653589793 rad @@ -36483,71 +36483,71 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 265 + - uid: 264 components: - type: Transform pos: 29.5,7.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 266 + - uid: 265 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 267 + - uid: 266 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 268 + - uid: 267 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 269 + - uid: 268 components: - type: MetaData name: хранилище скафандров - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 270 + - uid: 269 components: - type: MetaData name: комната дополнительного инженерного снаряжения - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 271 + - uid: 270 components: - type: MetaData name: комната отдыха инженерии - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 272 + - uid: 271 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 273 + - uid: 272 components: - type: MetaData name: комната ускорителем частиц - type: Transform pos: -57.5,-4.5 parent: 2 - - uid: 274 + - uid: 273 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -57.5,-10.5 parent: 2 - - uid: 275 + - uid: 274 components: - type: MetaData desc: Where the yellow gloves and tool belts live. @@ -36555,45 +36555,45 @@ entities: - type: Transform pos: -50.5,-14.5 parent: 2 - - uid: 276 + - uid: 275 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 277 + - uid: 276 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,86.5 parent: 2 - - uid: 278 + - uid: 277 components: - type: MetaData name: комната СМЭС - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 279 + - uid: 278 components: - type: MetaData name: северо-западные солнечные панели - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 280 + - uid: 279 components: - type: Transform pos: -10.5,-78.5 parent: 2 - - uid: 281 + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,12.5 parent: 2 - - uid: 282 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -36601,207 +36601,207 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 283 + - uid: 282 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-30.5 parent: 2 - - uid: 285 + - uid: 283 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 - - uid: 287 + - uid: 284 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 288 + - uid: 285 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-46.5 parent: 2 - - uid: 289 + - uid: 286 components: - type: MetaData name: питание центрального коридора - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 290 + - uid: 287 components: - type: MetaData name: инженерная - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 291 + - uid: 288 components: - type: MetaData name: питание верхней части северо-запада - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 292 + - uid: 289 components: - type: MetaData name: юго-западное питание - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 293 + - uid: 290 components: - type: MetaData name: юго-западные солнечные панели - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 294 + - uid: 291 components: - type: Transform pos: -74.5,0.5 parent: 2 - - uid: 295 + - uid: 292 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 296 + - uid: 293 components: - type: MetaData name: хранилище скафандров - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 297 + - uid: 294 components: - type: MetaData name: западное питание сервиса - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 298 + - uid: 295 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 299 + - uid: 296 components: - type: MetaData name: инженерная - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 300 + - uid: 297 components: - type: MetaData name: инженерная - type: Transform pos: -51.5,7.5 parent: 2 - - uid: 301 + - uid: 298 components: - type: Transform pos: -70.5,-4.5 parent: 2 - - uid: 302 + - uid: 299 components: - type: MetaData name: питание нижней части северо-запада - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 303 + - uid: 300 components: - type: Transform pos: -68.5,-4.5 parent: 2 - - uid: 304 + - uid: 301 components: - type: MetaData name: инженерная - type: Transform pos: -51.5,3.5 parent: 2 - - uid: 305 + - uid: 302 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 306 + - uid: 303 components: - type: MetaData name: питание суда - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 307 + - uid: 304 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 308 + - uid: 305 components: - type: MetaData name: питание крыла дормиториев - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 309 + - uid: 306 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,87.5 parent: 2 - - uid: 310 + - uid: 307 components: - type: MetaData name: питание запада - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 311 + - uid: 308 components: - type: MetaData name: коридор к генератору гравитации - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 312 + - uid: 309 components: - type: Transform pos: -76.5,2.5 parent: 2 - - uid: 313 + - uid: 310 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 314 + - uid: 311 components: - type: Transform pos: 9.5,76.5 parent: 2 - - uid: 315 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,75.5 parent: 2 - - uid: 316 + - uid: 313 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 317 + - uid: 314 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 318 + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad @@ -36809,25 +36809,25 @@ entities: parent: 2 - proto: AirlockEVALocked entities: - - uid: 319 + - uid: 316 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 320 + - uid: 317 components: - type: Transform pos: -13.5,-10.5 parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - - uid: 321 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,25.5 parent: 2 - - uid: 322 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad @@ -36835,13 +36835,13 @@ entities: parent: 2 - proto: AirlockExternalCargoLocked entities: - - uid: 323 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,41.5 parent: 2 - - uid: 324 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad @@ -36849,7 +36849,7 @@ entities: parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 325 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -36857,141 +36857,141 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 326 + - uid: 323 components: - type: Transform pos: -11.5,97.5 parent: 2 - - uid: 327 + - uid: 324 components: - type: Transform pos: -31.5,84.5 parent: 2 - - uid: 328 + - uid: 325 components: - type: Transform pos: -31.5,77.5 parent: 2 - - uid: 329 + - uid: 326 components: - type: Transform pos: -29.5,97.5 parent: 2 - - uid: 330 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,77.5 parent: 2 - - uid: 331 + - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,77.5 parent: 2 - - uid: 332 + - uid: 329 components: - type: Transform pos: -27.5,77.5 parent: 2 - - uid: 333 + - uid: 330 components: - type: Transform pos: -27.5,84.5 parent: 2 - - uid: 334 + - uid: 331 components: - type: Transform pos: 55.5,-40.5 parent: 2 - - uid: 335 + - uid: 332 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 336 + - uid: 333 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-40.5 parent: 2 - - uid: 337 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,84.5 parent: 2 - - uid: 338 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,84.5 parent: 2 - - uid: 339 + - uid: 336 components: - type: Transform pos: 4.5,84.5 parent: 2 - - uid: 340 + - uid: 337 components: - type: Transform pos: 4.5,77.5 parent: 2 - - uid: 341 + - uid: 338 components: - type: Transform pos: 68.5,-40.5 parent: 2 - - uid: 342 + - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-82.5 parent: 2 - - uid: 343 + - uid: 340 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 344 + - uid: 341 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 345 + - uid: 342 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 38590 + - uid: 38417 components: - type: Transform pos: 0.5,5.5 - parent: 38584 - - uid: 38591 + parent: 38411 + - uid: 38418 components: - type: Transform pos: -1.5,5.5 - parent: 38584 - - uid: 38592 + parent: 38411 + - uid: 38419 components: - type: Transform pos: 0.5,9.5 - parent: 38584 - - uid: 38593 + parent: 38411 + - uid: 38420 components: - type: Transform pos: -1.5,9.5 - parent: 38584 + parent: 38411 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 346 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 2 - - uid: 347 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad @@ -36999,34 +36999,34 @@ entities: parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 348 + - uid: 345 components: - type: Transform pos: -45.5,56.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 350: + 347: - DoorStatus: DoorBolt - - uid: 349 + - uid: 346 components: - type: Transform pos: -58.5,65.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 351: + 348: - DoorStatus: DoorBolt - - uid: 350 + - uid: 347 components: - type: Transform pos: -45.5,58.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 348: + 345: - DoorStatus: DoorBolt - - uid: 351 + - uid: 348 components: - type: Transform rot: -1.5707963267948966 rad @@ -37034,9 +37034,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 349: + 346: - DoorStatus: DoorBolt - - uid: 352 + - uid: 349 components: - type: Transform rot: 1.5707963267948966 rad @@ -37044,44 +37044,44 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 353 + - uid: 350 components: - type: Transform pos: -53.5,54.5 parent: 2 - proto: AirlockExternalGlassLocked entities: - - uid: 354 + - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,91.5 parent: 2 - - uid: 355 + - uid: 352 components: - type: Transform pos: 92.5,27.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 357: + 354: - DoorStatus: DoorBolt - - uid: 356 + - uid: 353 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,91.5 parent: 2 - - uid: 357 + - uid: 354 components: - type: Transform pos: 92.5,24.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 355: + 352: - DoorStatus: DoorBolt - - uid: 358 + - uid: 355 components: - type: Transform rot: 1.5707963267948966 rad @@ -37089,49 +37089,49 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 359 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,84.5 parent: 2 - - uid: 360 + - uid: 357 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,77.5 parent: 2 - - uid: 361 + - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,77.5 parent: 2 - - uid: 362 + - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,77.5 parent: 2 - - uid: 363 + - uid: 360 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,84.5 parent: 2 - - uid: 364 + - uid: 361 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,77.5 parent: 2 - - uid: 365 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,84.5 parent: 2 - - uid: 366 + - uid: 363 components: - type: Transform rot: 1.5707963267948966 rad @@ -37139,47 +37139,47 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 367 + - uid: 364 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 368 + - uid: 365 components: - type: Transform pos: 2.5,-86.5 parent: 2 - - uid: 369 + - uid: 366 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 370 + - uid: 367 components: - type: Transform pos: 4.5,-86.5 parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 371 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,21.5 parent: 2 - - uid: 372 + - uid: 369 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,17.5 parent: 2 - - uid: 373 + - uid: 370 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,99.5 parent: 2 - - uid: 374 + - uid: 371 components: - type: Transform rot: 3.141592653589793 rad @@ -37187,19 +37187,19 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 375 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,84.5 parent: 2 - - uid: 376 + - uid: 373 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,77.5 parent: 2 - - uid: 377 + - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad @@ -37207,222 +37207,222 @@ entities: parent: 2 - type: Docking dockJointId: docking93271 - dockedWith: 38486 + dockedWith: 38313 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - - uid: 38485 + - uid: 38312 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 - parent: 38484 - - uid: 38486 + parent: 38311 + - uid: 38313 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 - parent: 38484 + parent: 38311 - type: Docking dockJointId: docking93271 - dockedWith: 377 + dockedWith: 374 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - proto: AirlockExternalLocked entities: - - uid: 378 + - uid: 375 components: - type: Transform pos: 13.5,78.5 parent: 2 - - uid: 379 + - uid: 376 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,89.5 parent: 2 - - uid: 380 + - uid: 377 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 381 + - uid: 378 components: - type: Transform pos: -75.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 386: + 383: - DoorStatus: DoorBolt - - uid: 382 + - uid: 379 components: - type: Transform pos: -59.5,-16.5 parent: 2 - - uid: 383 + - uid: 380 components: - type: Transform pos: 18.5,87.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 392: + 389: - DoorStatus: DoorBolt - - uid: 384 + - uid: 381 components: - type: Transform pos: 57.5,-46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 388: + 385: - DoorStatus: DoorBolt - - uid: 385 + - uid: 382 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 386 + - uid: 383 components: - type: Transform pos: -78.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 381: + 378: - DoorStatus: DoorBolt - - uid: 387 + - uid: 384 components: - type: Transform pos: -46.5,-74.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 389: + 386: - DoorStatus: DoorBolt - - uid: 388 + - uid: 385 components: - type: Transform pos: 59.5,-46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 384: + 381: - DoorStatus: DoorBolt - - uid: 389 + - uid: 386 components: - type: Transform pos: -44.5,-74.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 387: + 384: - DoorStatus: DoorBolt - - uid: 390 + - uid: 387 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,59.5 parent: 2 - - uid: 391 + - uid: 388 components: - type: Transform pos: -42.5,-57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 395: + 392: - DoorStatus: DoorBolt - - uid: 392 + - uid: 389 components: - type: Transform pos: 16.5,87.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 383: + 380: - DoorStatus: DoorBolt - - uid: 393 + - uid: 390 components: - type: Transform pos: -78.5,-10.5 parent: 2 - - uid: 394 + - uid: 391 components: - type: Transform pos: -81.5,-13.5 parent: 2 - - uid: 395 + - uid: 392 components: - type: Transform pos: -40.5,-57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 391: + 388: - DoorStatus: DoorBolt - - uid: 396 + - uid: 393 components: - type: Transform pos: -81.5,-12.5 parent: 2 - - uid: 397 + - uid: 394 components: - type: Transform pos: -79.5,-10.5 parent: 2 - - uid: 398 + - uid: 395 components: - type: Transform pos: -79.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 399: + 396: - DoorStatus: DoorBolt - - uid: 399 + - uid: 396 components: - type: Transform pos: -81.5,-2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 398: + 395: - DoorStatus: DoorBolt - - uid: 400 + - uid: 397 components: - type: Transform pos: -109.5,23.5 parent: 2 - - uid: 401 + - uid: 398 components: - type: Transform pos: -112.5,23.5 parent: 2 - - uid: 402 + - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 403 + - uid: 400 components: - type: Transform pos: 94.5,10.5 parent: 2 - proto: AirlockExternalShuttleLocked entities: - - uid: 404 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,78.5 parent: 2 - - uid: 405 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad @@ -37430,20 +37430,20 @@ entities: parent: 2 - proto: AirlockExternalShuttleSyndicateLocked entities: - - uid: 38594 + - uid: 38421 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,19.5 - parent: 38584 + parent: 38411 - proto: AirlockFreezer entities: - - uid: 406 + - uid: 403 components: - type: Transform pos: 24.5,66.5 parent: 2 - - uid: 407 + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad @@ -37451,13 +37451,13 @@ entities: parent: 2 - proto: AirlockFreezerLocked entities: - - uid: 408 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,29.5 parent: 2 - - uid: 507 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -37465,381 +37465,381 @@ entities: parent: 2 - proto: AirlockGlass entities: - - uid: 409 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 - - uid: 410 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 - - uid: 411 + - uid: 409 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-21.5 parent: 2 - - uid: 412 + - uid: 410 components: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 413 + - uid: 411 components: - type: Transform pos: 46.5,-17.5 parent: 2 - - uid: 414 + - uid: 412 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 415 + - uid: 413 components: - type: Transform pos: -20.5,12.5 parent: 2 - - uid: 416 + - uid: 414 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 417 + - uid: 415 components: - type: MetaData name: приемная Зоотехника - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 418 + - uid: 416 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 419 + - uid: 417 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 420 + - uid: 418 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 421 + - uid: 419 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,25.5 parent: 2 - - uid: 422 + - uid: 420 components: - type: Transform pos: -24.5,7.5 parent: 2 - - uid: 423 + - uid: 421 components: - type: Transform pos: -25.5,7.5 parent: 2 - - uid: 424 + - uid: 422 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 425 + - uid: 423 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 426 + - uid: 424 components: - type: Transform pos: -20.5,6.5 parent: 2 - - uid: 427 + - uid: 425 components: - type: Transform pos: -17.5,54.5 parent: 2 - - uid: 428 + - uid: 426 components: - type: Transform pos: -19.5,54.5 parent: 2 - - uid: 429 + - uid: 427 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 430 + - uid: 428 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 431 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,25.5 parent: 2 - - uid: 436 + - uid: 430 components: - type: Transform pos: -20.5,11.5 parent: 2 - - uid: 437 + - uid: 431 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 - - uid: 438 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-56.5 parent: 2 - - uid: 439 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-62.5 parent: 2 - - uid: 440 + - uid: 434 components: - type: Transform pos: 7.5,25.5 parent: 2 - - uid: 441 + - uid: 435 components: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 442 + - uid: 436 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-62.5 parent: 2 - - uid: 443 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-62.5 parent: 2 - - uid: 444 + - uid: 438 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 445 + - uid: 439 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-21.5 parent: 2 - - uid: 446 + - uid: 440 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-18.5 parent: 2 - - uid: 447 + - uid: 441 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-9.5 parent: 2 - - uid: 448 + - uid: 442 components: - type: Transform pos: 76.5,-18.5 parent: 2 - - uid: 449 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - - uid: 450 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-21.5 parent: 2 - - uid: 451 + - uid: 445 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 452 + - uid: 446 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 453 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 - - uid: 454 + - uid: 448 components: - type: Transform pos: -13.5,50.5 parent: 2 - - uid: 455 + - uid: 449 components: - type: Transform pos: -31.5,3.5 parent: 2 - - uid: 456 + - uid: 450 components: - type: Transform pos: -13.5,48.5 parent: 2 - - uid: 457 + - uid: 451 components: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 458 + - uid: 452 components: - type: Transform pos: -17.5,25.5 parent: 2 - - uid: 459 + - uid: 453 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 460 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - uid: 461 + - uid: 455 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-42.5 parent: 2 - - uid: 462 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,54.5 parent: 2 - - uid: 463 + - uid: 457 components: - type: Transform pos: -31.5,-9.5 parent: 2 - - uid: 464 + - uid: 458 components: - type: Transform pos: 15.5,-7.5 parent: 2 - - uid: 465 + - uid: 459 components: - type: Transform pos: 15.5,-8.5 parent: 2 - - uid: 466 + - uid: 460 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 467 + - uid: 461 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-39.5 parent: 2 - - uid: 468 + - uid: 462 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-7.5 parent: 2 - - uid: 469 + - uid: 463 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 - - uid: 470 + - uid: 464 components: - type: Transform pos: 15.5,-9.5 parent: 2 - - uid: 471 + - uid: 465 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-9.5 parent: 2 - - uid: 934 + - uid: 466 components: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 1587 + - uid: 467 components: - type: Transform pos: 82.5,-21.5 parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 472 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,49.5 parent: 2 - - uid: 473 + - uid: 469 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,51.5 parent: 2 - - uid: 38595 + - uid: 38422 components: - type: Transform pos: -1.5,-11.5 - parent: 38584 - - uid: 38596 + parent: 38411 + - uid: 38423 components: - type: Transform pos: 0.5,-11.5 - parent: 38584 + parent: 38411 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 474 + - uid: 470 components: - type: Transform pos: -10.5,6.5 parent: 2 - - uid: 475 + - uid: 471 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 476 + - uid: 472 components: - type: Transform pos: -9.5,-6.5 parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 477 + - uid: 473 components: - type: Transform rot: 3.141592653589793 rad @@ -37847,26 +37847,26 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 478 + - uid: 474 components: - type: Transform pos: 37.5,20.5 parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 479 + - uid: 475 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,44.5 parent: 2 - - uid: 480 + - uid: 476 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,48.5 parent: 2 - - uid: 481 + - uid: 477 components: - type: Transform rot: -1.5707963267948966 rad @@ -37874,7 +37874,7 @@ entities: parent: 2 - proto: AirlockHydroponicsLocked entities: - - uid: 482 + - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad @@ -37882,27 +37882,27 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 483 + - uid: 479 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,55.5 parent: 2 - - uid: 484 + - uid: 480 components: - type: Transform pos: -1.5,51.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: - - uid: 485 + - uid: 481 components: - type: Transform pos: -29.5,39.5 parent: 2 - proto: AirlockKitchenLocked entities: - - uid: 486 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad @@ -37910,19 +37910,19 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 487 + - uid: 483 components: - type: Transform pos: 32.5,1.5 parent: 2 - - uid: 488 + - uid: 484 components: - type: Transform pos: 35.5,3.5 parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 489 + - uid: 485 components: - type: MetaData name: атмосферная @@ -37931,27 +37931,27 @@ entities: parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 490 + - uid: 486 components: - type: Transform pos: -0.5,40.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 491 + - uid: 487 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,55.5 parent: 2 - - uid: 492 + - uid: 488 components: - type: MetaData name: служебное помещение - type: Transform pos: 3.5,40.5 parent: 2 - - uid: 493 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad @@ -37959,19 +37959,19 @@ entities: parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 494 + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-62.5 parent: 2 - - uid: 495 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-63.5 parent: 2 - - uid: 496 + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad @@ -37979,7 +37979,7 @@ entities: parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 497 + - uid: 493 components: - type: Transform rot: 1.5707963267948966 rad @@ -37987,7 +37987,7 @@ entities: parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 498 + - uid: 494 components: - type: Transform rot: -1.5707963267948966 rad @@ -37995,30 +37995,30 @@ entities: parent: 2 - proto: AirlockMaintCommonLocked entities: - - uid: 499 + - uid: 495 components: - type: Transform pos: -35.5,58.5 parent: 2 - - uid: 500 + - uid: 496 components: - type: Transform pos: -37.5,58.5 parent: 2 - proto: AirlockMaintEngiLocked entities: - - uid: 501 + - uid: 497 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,73.5 parent: 2 - - uid: 502 + - uid: 498 components: - type: Transform pos: 76.5,-44.5 parent: 2 - - uid: 503 + - uid: 499 components: - type: MetaData name: инженерная @@ -38027,21 +38027,21 @@ entities: parent: 2 - proto: AirlockMaintGlass entities: - - uid: 504 + - uid: 500 components: - type: Transform pos: -48.5,3.5 parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 505 + - uid: 501 components: - type: Transform pos: -37.5,44.5 parent: 2 - proto: AirlockMaintJanitorLocked entities: - - uid: 506 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad @@ -38049,126 +38049,126 @@ entities: parent: 2 - proto: AirlockMaintLawyerLocked entities: - - uid: 508 + - uid: 503 components: - type: Transform pos: 36.5,-2.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 509 + - uid: 504 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-32.5 parent: 2 - - uid: 510 + - uid: 505 components: - type: Transform pos: -27.5,59.5 parent: 2 - - uid: 511 + - uid: 506 components: - type: Transform pos: 29.5,-55.5 parent: 2 - - uid: 512 + - uid: 507 components: - type: Transform pos: -30.5,7.5 parent: 2 - - uid: 513 + - uid: 508 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 514 + - uid: 509 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 515 + - uid: 510 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,68.5 parent: 2 - - uid: 516 + - uid: 511 components: - type: Transform pos: 1.5,29.5 parent: 2 - - uid: 517 + - uid: 512 components: - type: Transform pos: 25.5,-55.5 parent: 2 - - uid: 518 + - uid: 513 components: - type: Transform pos: -27.5,-16.5 parent: 2 - - uid: 519 + - uid: 514 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 520 + - uid: 515 components: - type: Transform pos: -42.5,-41.5 parent: 2 - - uid: 521 + - uid: 516 components: - type: Transform pos: -41.5,28.5 parent: 2 - - uid: 522 + - uid: 517 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 523 + - uid: 518 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 524 + - uid: 519 components: - type: Transform pos: -39.5,23.5 parent: 2 - - uid: 525 + - uid: 520 components: - type: Transform pos: -36.5,56.5 parent: 2 - - uid: 526 + - uid: 521 components: - type: MetaData name: сад технических помещений - type: Transform pos: -41.5,34.5 parent: 2 - - uid: 527 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,71.5 parent: 2 - - uid: 528 + - uid: 523 components: - type: MetaData name: отходы - type: Transform pos: 22.5,56.5 parent: 2 - - uid: 529 + - uid: 524 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 530 + - uid: 525 components: - type: MetaData desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.' @@ -38176,76 +38176,76 @@ entities: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 531 + - uid: 526 components: - type: MetaData name: вспомогательная хирургия - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 532 + - uid: 527 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 533 + - uid: 528 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-41.5 parent: 2 - - uid: 534 + - uid: 529 components: - type: MetaData name: южно-восточная строй площадка - type: Transform pos: 47.5,-45.5 parent: 2 - - uid: 535 + - uid: 530 components: - type: Transform pos: 42.5,-41.5 parent: 2 - - uid: 536 + - uid: 531 components: - type: Transform pos: 0.5,33.5 parent: 2 - - uid: 537 + - uid: 532 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,66.5 parent: 2 - - uid: 538 + - uid: 533 components: - type: MetaData name: свободный офис - type: Transform pos: -36.5,27.5 parent: 2 - - uid: 539 + - uid: 534 components: - type: MetaData name: сад технических помещений - type: Transform pos: -36.5,32.5 parent: 2 - - uid: 540 + - uid: 535 components: - type: MetaData name: западный кабинет уборщика - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 541 + - uid: 536 components: - type: MetaData name: южно-восточная строй площадка - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 542 + - uid: 537 components: - type: MetaData desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.' @@ -38253,219 +38253,219 @@ entities: - type: Transform pos: 17.5,57.5 parent: 2 - - uid: 543 + - uid: 538 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 544 + - uid: 539 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 545 + - uid: 540 components: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 546 + - uid: 541 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 547 + - uid: 542 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 548 + - uid: 543 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 549 + - uid: 544 components: - type: Transform pos: -21.5,55.5 parent: 2 - - uid: 550 + - uid: 545 components: - type: MetaData name: незавершенный офисный театральный модуль - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 551 + - uid: 546 components: - type: MetaData name: вспомогательная хирургия - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 552 + - uid: 547 components: - type: MetaData name: библиотека - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 553 + - uid: 548 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 554 + - uid: 549 components: - type: Transform pos: -0.5,48.5 parent: 2 - - uid: 555 + - uid: 550 components: - type: MetaData name: незавершенный театральный модуль - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 556 + - uid: 551 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,25.5 parent: 2 - - uid: 557 + - uid: 552 components: - type: Transform pos: -75.5,-19.5 parent: 2 - - uid: 558 + - uid: 553 components: - type: Transform pos: -41.5,24.5 parent: 2 - - uid: 559 + - uid: 554 components: - type: Transform pos: 6.5,51.5 parent: 2 - - uid: 560 + - uid: 555 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 561 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-62.5 parent: 2 - - uid: 562 + - uid: 557 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 563 + - uid: 558 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 564 + - uid: 559 components: - type: Transform pos: 12.5,-55.5 parent: 2 - - uid: 565 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,24.5 parent: 2 - - uid: 566 + - uid: 561 components: - type: Transform pos: -20.5,17.5 parent: 2 - - uid: 567 + - uid: 562 components: - type: Transform pos: 2.5,-54.5 parent: 2 - - uid: 568 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-50.5 parent: 2 - - uid: 569 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-55.5 parent: 2 - - uid: 570 + - uid: 565 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 571 + - uid: 566 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 572 + - uid: 567 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,67.5 parent: 2 - - uid: 573 + - uid: 568 components: - type: Transform pos: 46.5,-12.5 parent: 2 - - uid: 574 + - uid: 569 components: - type: Transform pos: 33.5,-5.5 parent: 2 - - uid: 575 + - uid: 570 components: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 576 + - uid: 571 components: - type: Transform pos: -46.5,-41.5 parent: 2 - - uid: 577 + - uid: 572 components: - type: Transform pos: 4.5,57.5 parent: 2 - - uid: 578 + - uid: 573 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,70.5 parent: 2 - - uid: 579 + - uid: 574 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 580 + - uid: 575 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 - - uid: 581 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-5.5 parent: 2 - - uid: 41042 + - uid: 577 components: - type: Transform rot: -1.5707963267948966 rad @@ -38473,77 +38473,77 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 582 + - uid: 578 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 583 + - uid: 579 components: - type: Transform pos: 31.5,-53.5 parent: 2 - - uid: 584 + - uid: 580 components: - type: Transform pos: 39.5,-34.5 parent: 2 - - uid: 585 + - uid: 581 components: - type: Transform pos: 33.5,-22.5 parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 586 + - uid: 582 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-58.5 parent: 2 - - uid: 587 + - uid: 583 components: - type: Transform pos: -47.5,-22.5 parent: 2 - - uid: 588 + - uid: 584 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 - - uid: 589 + - uid: 585 components: - type: Transform pos: -22.5,-22.5 parent: 2 - proto: AirlockMaintRnDMedLocked entities: - - uid: 590 + - uid: 586 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 591 + - uid: 587 components: - type: Transform pos: 4.5,-41.5 parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 592 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,60.5 parent: 2 - - uid: 593 + - uid: 589 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-56.5 parent: 2 - - uid: 594 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad @@ -38551,13 +38551,13 @@ entities: parent: 2 - proto: AirlockMaintTheatreLocked entities: - - uid: 595 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,30.5 parent: 2 - - uid: 596 + - uid: 592 components: - type: Transform rot: 3.141592653589793 rad @@ -38565,166 +38565,166 @@ entities: parent: 2 - proto: AirlockMedicalGlass entities: - - uid: 597 + - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-25.5 parent: 2 - - uid: 598 + - uid: 594 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-24.5 parent: 2 - - uid: 38597 + - uid: 38424 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 - parent: 38584 + parent: 38411 - proto: AirlockMedicalGlassLocked entities: - - uid: 599 + - uid: 595 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 600 + - uid: 596 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,66.5 parent: 2 - - uid: 601 + - uid: 597 components: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 602 + - uid: 598 components: - type: Transform pos: 23.5,-28.5 parent: 2 - - uid: 603 + - uid: 599 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 - - uid: 604 + - uid: 600 components: - type: Transform pos: 29.5,-27.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 605 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-42.5 parent: 2 - - uid: 606 + - uid: 602 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 607 + - uid: 603 components: - type: Transform pos: 29.5,-49.5 parent: 2 - - uid: 608 + - uid: 604 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 609 + - uid: 605 components: - type: Transform pos: 29.5,-43.5 parent: 2 - - uid: 610 + - uid: 606 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 611 + - uid: 607 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 612 + - uid: 608 components: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 613 + - uid: 609 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 614 + - uid: 610 components: - type: Transform pos: 27.5,-53.5 parent: 2 - proto: AirlockMedicalScienceGlassLocked entities: - - uid: 615 + - uid: 611 components: - type: Transform pos: 9.5,-41.5 parent: 2 - proto: AirlockMedicalScienceLocked entities: - - uid: 616 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 - - uid: 617 + - uid: 613 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 618 + - uid: 614 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 619 + - uid: 615 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 620 + - uid: 616 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 621 + - uid: 617 components: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 622 + - uid: 618 components: - type: Transform pos: 10.5,-53.5 parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 623 + - uid: 619 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,36.5 parent: 2 - - uid: 624 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad @@ -38732,7 +38732,7 @@ entities: parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 625 + - uid: 621 components: - type: Transform rot: -1.5707963267948966 rad @@ -38740,19 +38740,19 @@ entities: parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 626 + - uid: 622 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-44.5 parent: 2 - - uid: 627 + - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-39.5 parent: 2 - - uid: 628 + - uid: 624 components: - type: Transform rot: -1.5707963267948966 rad @@ -38760,25 +38760,25 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 629 + - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - uid: 630 + - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,29.5 parent: 2 - - uid: 631 + - uid: 627 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,30.5 parent: 2 - - uid: 632 + - uid: 628 components: - type: Transform rot: -1.5707963267948966 rad @@ -38786,25 +38786,25 @@ entities: parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 633 + - uid: 629 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,33.5 parent: 2 - - uid: 634 + - uid: 630 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,29.5 parent: 2 - - uid: 635 + - uid: 631 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 - - uid: 636 + - uid: 632 components: - type: Transform rot: -1.5707963267948966 rad @@ -38812,43 +38812,43 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 637 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-42.5 parent: 2 - - uid: 638 + - uid: 634 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 - - uid: 639 + - uid: 635 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 2 - - uid: 640 + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 - - uid: 641 + - uid: 637 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-36.5 parent: 2 - - uid: 642 + - uid: 638 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-44.5 parent: 2 - - uid: 643 + - uid: 639 components: - type: Transform rot: -1.5707963267948966 rad @@ -38856,118 +38856,118 @@ entities: parent: 2 - proto: AirlockScienceLocked entities: - - uid: 644 + - uid: 640 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-42.5 parent: 2 - - uid: 645 + - uid: 641 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 646 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 - - uid: 647 + - uid: 643 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 648 + - uid: 644 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 - - uid: 649 + - uid: 645 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 650 + - uid: 646 components: - type: MetaData name: кладовая атмосферы ксенобиологии - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 651 + - uid: 647 components: - type: MetaData name: тестовый полигон токсинов - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 652 + - uid: 648 components: - type: MetaData name: ксенобиология - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 653 + - uid: 649 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 2 - - uid: 654 + - uid: 650 components: - type: Transform pos: -14.5,-28.5 parent: 2 - - uid: 655 + - uid: 651 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-40.5 parent: 2 - - uid: 656 + - uid: 652 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 - - uid: 657 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-44.5 parent: 2 - - uid: 658 + - uid: 654 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 659 + - uid: 655 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 660 + - uid: 656 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-36.5 parent: 2 - - uid: 661 + - uid: 657 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-48.5 parent: 2 - - uid: 662 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 - - uid: 663 + - uid: 659 components: - type: Transform rot: 1.5707963267948966 rad @@ -38975,522 +38975,522 @@ entities: parent: 2 - proto: AirlockSecurityGlass entities: - - uid: 664 + - uid: 660 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 665 + - uid: 661 components: - type: Transform pos: 33.5,4.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 666 + - uid: 662 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 667 + - uid: 663 components: - type: Transform pos: 49.5,16.5 parent: 2 - - uid: 668 + - uid: 664 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 669 + - uid: 665 components: - type: Transform pos: 57.5,20.5 parent: 2 - - uid: 670 + - uid: 666 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-62.5 parent: 2 - - uid: 671 + - uid: 667 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 672 + - uid: 668 components: - type: Transform pos: 68.5,1.5 parent: 2 - - uid: 673 + - uid: 669 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 674 + - uid: 670 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 675 + - uid: 671 components: - type: Transform pos: 71.5,1.5 parent: 2 - - uid: 676 + - uid: 672 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 677 + - uid: 673 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 678 + - uid: 674 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 679 + - uid: 675 components: - type: MetaData name: медицинская комната брига - type: Transform pos: 71.5,13.5 parent: 2 - - uid: 680 + - uid: 676 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 681 + - uid: 677 components: - type: Transform pos: 51.5,14.5 parent: 2 - - uid: 682 + - uid: 678 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 683 + - uid: 679 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 684 + - uid: 680 components: - type: MetaData name: приёмная перманентной тюрьмы - type: Transform pos: 73.5,4.5 parent: 2 - - uid: 685 + - uid: 681 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,64.5 parent: 2 - - uid: 686 + - uid: 682 components: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 687 + - uid: 683 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 688 + - uid: 684 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,59.5 parent: 2 - - uid: 689 + - uid: 685 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-74.5 parent: 2 - - uid: 690 + - uid: 686 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 691 + - uid: 687 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-66.5 parent: 2 - - uid: 692 + - uid: 688 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-65.5 parent: 2 - - uid: 693 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-76.5 parent: 2 - - uid: 694 + - uid: 690 components: - type: Transform pos: 13.5,33.5 parent: 2 - - uid: 695 + - uid: 691 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 696 + - uid: 692 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 - - uid: 697 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 698 + - uid: 694 components: - type: Transform pos: -16.5,-23.5 parent: 2 - - uid: 699 + - uid: 695 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 700 + - uid: 696 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 701 + - uid: 697 components: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 702 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-78.5 parent: 2 - - uid: 703 + - uid: 699 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 704 + - uid: 700 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,1.5 parent: 2 - - uid: 705 + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-3.5 parent: 2 - - uid: 706 + - uid: 702 components: - type: Transform pos: 92.5,8.5 parent: 2 - - uid: 707 + - uid: 703 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 708 + - uid: 704 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 709 + - uid: 705 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 710 + - uid: 706 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 711 + - uid: 707 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 712 + - uid: 708 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 38487 + - uid: 38314 components: - type: Transform pos: 1.5,2.5 - parent: 38484 - - uid: 38598 + parent: 38311 + - uid: 38425 components: - type: Transform pos: 2.5,3.5 - parent: 38584 + parent: 38411 - proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 713 + - uid: 709 components: - type: Transform pos: 30.5,3.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 714 + - uid: 710 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 715 + - uid: 711 components: - type: Transform pos: 48.5,23.5 parent: 2 - - uid: 716 + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-72.5 parent: 2 - - uid: 717 + - uid: 713 components: - type: Transform pos: 52.5,20.5 parent: 2 - - uid: 718 + - uid: 714 components: - type: MetaData name: хранилище скафандров - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 719 + - uid: 715 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 720 + - uid: 716 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 721 + - uid: 717 components: - type: MetaData name: хранилище скафандров - type: Transform pos: 75.5,9.5 parent: 2 - - uid: 722 + - uid: 718 components: - type: MetaData name: карцер смертника - type: Transform pos: 71.5,18.5 parent: 2 - - uid: 723 + - uid: 719 components: - type: MetaData name: комната казни - type: Transform pos: 73.5,20.5 parent: 2 - - uid: 724 + - uid: 720 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 725 + - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-64.5 parent: 2 - - uid: 726 + - uid: 722 components: - type: Transform pos: 94.5,13.5 parent: 2 - - uid: 727 + - uid: 723 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,26.5 parent: 2 - - uid: 728 + - uid: 724 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 729 + - uid: 725 components: - type: Transform pos: 62.5,2.5 parent: 2 - - uid: 730 + - uid: 726 components: - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 38599 + - uid: 38426 components: - type: Transform pos: 6.5,1.5 - parent: 38584 - - uid: 38600 + parent: 38411 + - uid: 38427 components: - type: Transform pos: -1.5,-6.5 - parent: 38584 - - uid: 38601 + parent: 38411 + - uid: 38428 components: - type: Transform pos: 0.5,-6.5 - parent: 38584 - - uid: 38602 + parent: 38411 + - uid: 38429 components: - type: Transform pos: 8.5,-4.5 - parent: 38584 - - uid: 38603 + parent: 38411 + - uid: 38430 components: - type: Transform pos: 4.5,-0.5 - parent: 38584 - - uid: 38604 + parent: 38411 + - uid: 38431 components: - type: Transform pos: 4.5,-6.5 - parent: 38584 - - uid: 38605 + parent: 38411 + - uid: 38432 components: - type: Transform pos: 2.5,-2.5 - parent: 38584 - - uid: 38606 + parent: 38411 + - uid: 38433 components: - type: Transform pos: 0.5,-0.5 - parent: 38584 - - uid: 38607 + parent: 38411 + - uid: 38434 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 - - uid: 38608 + parent: 38411 + - uid: 38435 components: - type: Transform pos: -3.5,-4.5 - parent: 38584 + parent: 38411 - proto: AirlockServiceGlassLocked entities: - - uid: 731 + - uid: 727 components: - type: Transform pos: -20.5,20.5 parent: 2 - - uid: 732 + - uid: 728 components: - type: Transform pos: -2.5,-15.5 parent: 2 - proto: AirlockServiceLocked entities: - - uid: 733 + - uid: 729 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 734 + - uid: 730 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 735 + - uid: 731 components: - type: Transform pos: -23.5,-9.5 parent: 2 - proto: AirlockSyndicateGlassLocked entities: - - uid: 38609 + - uid: 38436 components: - type: Transform pos: -17.5,33.5 - parent: 38584 + parent: 38411 - proto: AirlockSyndicateLocked entities: - - uid: 38610 + - uid: 38437 components: - type: Transform pos: -21.5,29.5 - parent: 38584 + parent: 38411 - proto: AirlockTheatreLocked entities: - - uid: 736 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,33.5 parent: 2 - - uid: 737 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 - - uid: 738 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,27.5 parent: 2 - - uid: 739 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 - - uid: 740 + - uid: 736 components: - type: Transform pos: -3.5,47.5 parent: 2 - - uid: 741 + - uid: 737 components: - type: Transform pos: -5.5,51.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 742 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-69.5 parent: 2 - - uid: 743 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad @@ -39498,13 +39498,13 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 744 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-58.5 parent: 2 - - uid: 745 + - uid: 741 components: - type: Transform rot: 1.5707963267948966 rad @@ -39512,7 +39512,7 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 746 + - uid: 742 components: - type: Transform rot: 3.141592653589793 rad @@ -39521,7 +39521,7 @@ entities: - type: DeviceNetwork deviceLists: - 104 - - uid: 747 + - uid: 743 components: - type: Transform rot: 3.141592653589793 rad @@ -39529,9 +39529,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17959 + - 17941 - 123 - - uid: 748 + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad @@ -39539,17 +39539,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18009 - - uid: 749 + - 17991 + - uid: 745 components: - type: Transform pos: -61.5,57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17947 + - 17929 - 58 - - uid: 750 + - uid: 746 components: - type: Transform rot: 1.5707963267948966 rad @@ -39557,15 +39557,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 751 + - uid: 747 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-11.5 parent: 2 - - uid: 752 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad @@ -39574,7 +39574,7 @@ entities: - type: DeviceNetwork deviceLists: - 40 - - uid: 753 + - uid: 749 components: - type: Transform rot: -1.5707963267948966 rad @@ -39582,18 +39582,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 754 + - uid: 750 components: - type: Transform pos: -23.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 + - 17916 - 53 - - uid: 755 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad @@ -39601,14 +39601,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - - uid: 756 + - uid: 752 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 757 + - uid: 753 components: - type: Transform rot: 1.5707963267948966 rad @@ -39616,9 +39616,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17973 + - 17955 - 79 - - uid: 758 + - uid: 754 components: - type: Transform pos: -16.5,-57.5 @@ -39626,7 +39626,7 @@ entities: - type: DeviceNetwork deviceLists: - 110 - - uid: 759 + - uid: 755 components: - type: Transform pos: -7.5,-50.5 @@ -39634,12 +39634,12 @@ entities: - type: DeviceNetwork deviceLists: - 109 - - uid: 760 + - uid: 756 components: - type: Transform pos: -8.5,-46.5 parent: 2 - - uid: 761 + - uid: 757 components: - type: Transform pos: -4.5,-41.5 @@ -39647,61 +39647,61 @@ entities: - type: DeviceNetwork deviceLists: - 109 - - uid: 762 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,19.5 parent: 2 - - uid: 763 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,25.5 parent: 2 - - uid: 764 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,43.5 parent: 2 - - uid: 765 + - uid: 761 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 766 + - uid: 762 components: - type: Transform pos: -115.5,41.5 parent: 2 - - uid: 767 + - uid: 763 components: - type: Transform pos: -121.5,41.5 parent: 2 - - uid: 768 + - uid: 764 components: - type: Transform pos: -121.5,22.5 parent: 2 - - uid: 769 + - uid: 765 components: - type: Transform pos: -115.5,22.5 parent: 2 - - uid: 770 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,6.5 parent: 2 - - uid: 771 + - uid: 767 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 772 + - uid: 768 components: - type: Transform pos: 83.5,9.5 @@ -39709,7 +39709,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 773 + - uid: 769 components: - type: Transform pos: 88.5,13.5 @@ -39717,7 +39717,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 774 + - uid: 770 components: - type: Transform pos: 92.5,22.5 @@ -39725,16 +39725,16 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 775 + - uid: 771 components: - type: Transform pos: -13.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17965 + - 17947 - 71 - - uid: 776 + - uid: 772 components: - type: Transform rot: 3.141592653589793 rad @@ -39742,9 +39742,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 777 + - uid: 773 components: - type: Transform rot: 3.141592653589793 rad @@ -39753,7 +39753,7 @@ entities: - type: DeviceNetwork deviceLists: - 42 - - uid: 778 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad @@ -39762,7 +39762,7 @@ entities: - type: DeviceNetwork deviceLists: - 63 - - uid: 779 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad @@ -39770,8 +39770,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - uid: 780 + - 17932 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad @@ -39779,9 +39779,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17951 + - 17933 - 37 - - uid: 781 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad @@ -39789,9 +39789,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 + - 17989 - 65 - - uid: 782 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad @@ -39799,15 +39799,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 + - 17990 - 65 - - uid: 783 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,16.5 parent: 2 - - uid: 784 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -39816,7 +39816,7 @@ entities: - type: DeviceNetwork deviceLists: - 99 - - uid: 785 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -39824,9 +39824,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 100 - - uid: 786 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad @@ -39834,8 +39834,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - uid: 787 + - 17992 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad @@ -39843,9 +39843,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 788 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad @@ -39853,9 +39853,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 789 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad @@ -39864,7 +39864,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 790 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad @@ -39873,7 +39873,7 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 791 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad @@ -39882,7 +39882,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 792 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad @@ -39891,7 +39891,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 793 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad @@ -39900,7 +39900,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 794 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad @@ -39909,7 +39909,7 @@ entities: - type: DeviceNetwork deviceLists: - 91 - - uid: 795 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad @@ -39918,7 +39918,7 @@ entities: - type: DeviceNetwork deviceLists: - 34 - - uid: 796 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad @@ -39926,9 +39926,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17974 + - 17956 - 79 - - uid: 797 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad @@ -39936,9 +39936,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17975 + - 17957 - 79 - - uid: 798 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad @@ -39946,8 +39946,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 799 + - 17959 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad @@ -39956,7 +39956,7 @@ entities: - type: DeviceNetwork deviceLists: - 92 - - uid: 800 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad @@ -39964,9 +39964,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 + - 17948 - 54 - - uid: 801 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad @@ -39974,9 +39974,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17968 + - 17950 - 125 - - uid: 802 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad @@ -39984,8 +39984,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - uid: 803 + - 17950 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -39994,7 +39994,7 @@ entities: - type: DeviceNetwork deviceLists: - 74 - - uid: 804 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad @@ -40003,7 +40003,7 @@ entities: - type: DeviceNetwork deviceLists: - 126 - - uid: 805 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad @@ -40012,7 +40012,7 @@ entities: - type: DeviceNetwork deviceLists: - 76 - - uid: 806 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad @@ -40020,9 +40020,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 807 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad @@ -40031,7 +40031,7 @@ entities: - type: DeviceNetwork deviceLists: - 78 - - uid: 808 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -40039,9 +40039,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 809 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad @@ -40049,9 +40049,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 810 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad @@ -40059,9 +40059,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 811 + - uid: 807 components: - type: Transform rot: -1.5707963267948966 rad @@ -40069,45 +40069,45 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17967 + - 17949 - 77 - - uid: 812 + - uid: 808 components: - type: Transform pos: -41.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 + - 17930 - 69 - - uid: 813 + - uid: 809 components: - type: Transform pos: -59.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 814 + - uid: 810 components: - type: Transform pos: -57.5,41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17944 + - 17926 - 56 - - uid: 815 + - uid: 811 components: - type: Transform pos: -52.5,49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 816 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad @@ -40115,9 +40115,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17994 + - 17976 - 113 - - uid: 817 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad @@ -40125,9 +40125,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 117 - - uid: 818 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad @@ -40135,9 +40135,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 819 + - uid: 815 components: - type: Transform rot: 3.141592653589793 rad @@ -40145,119 +40145,119 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17993 + - 17975 - 113 - - uid: 820 + - uid: 816 components: - type: Transform pos: -54.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17942 + - 17924 - 56 - - uid: 821 + - uid: 817 components: - type: Transform pos: -53.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 822 + - uid: 818 components: - type: Transform pos: -34.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 + - 17931 - 53 - - uid: 823 + - uid: 819 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17962 + - 17944 - 64 - - uid: 824 + - uid: 820 components: - type: Transform pos: -18.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 + - 17943 - 37 - - uid: 825 + - uid: 821 components: - type: Transform pos: -14.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 + - 17934 - 95 - - uid: 826 + - uid: 822 components: - type: Transform pos: 1.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 + - 17935 - 95 - - uid: 827 + - uid: 823 components: - type: Transform pos: 12.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 + - 17936 - 95 - - uid: 828 + - uid: 824 components: - type: Transform pos: 17.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 + - 17937 + - 17960 + - 17961 - 112 - - uid: 829 + - uid: 825 components: - type: Transform pos: 22.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 830 + - uid: 826 components: - type: Transform pos: 30.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - uid: 831 + - 17961 + - uid: 827 components: - type: Transform pos: 35.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 832 + - uid: 828 components: - type: Transform pos: 17.5,1.5 @@ -40265,44 +40265,44 @@ entities: - type: DeviceNetwork deviceLists: - 112 - - uid: 833 + - uid: 829 components: - type: Transform pos: 17.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - - uid: 834 + - uid: 830 components: - type: Transform pos: 7.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 835 + - uid: 831 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 836 + - uid: 832 components: - type: Transform pos: -18.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 + - 17942 - 124 - - uid: 837 + - uid: 833 components: - type: Transform pos: 22.5,-10.5 @@ -40310,16 +40310,16 @@ entities: - type: DeviceNetwork deviceLists: - 98 - - uid: 838 + - uid: 834 components: - type: Transform pos: 29.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 839 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad @@ -40327,9 +40327,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 840 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad @@ -40337,9 +40337,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 841 + - uid: 837 components: - type: Transform rot: 3.141592653589793 rad @@ -40347,9 +40347,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 117 - - uid: 842 + - uid: 838 components: - type: Transform rot: 3.141592653589793 rad @@ -40357,9 +40357,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 843 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad @@ -40367,9 +40367,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17991 + - 17973 - 38 - - uid: 844 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad @@ -40377,8 +40377,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17936 - - uid: 845 + - 17918 + - uid: 841 components: - type: Transform rot: 3.141592653589793 rad @@ -40386,9 +40386,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 846 + - uid: 842 components: - type: Transform rot: 3.141592653589793 rad @@ -40396,9 +40396,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 847 + - uid: 843 components: - type: Transform rot: 3.141592653589793 rad @@ -40406,9 +40406,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 + - 17980 - 105 - - uid: 848 + - uid: 844 components: - type: Transform rot: 3.141592653589793 rad @@ -40416,9 +40416,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17997 + - 17979 - 107 - - uid: 849 + - uid: 845 components: - type: Transform rot: 3.141592653589793 rad @@ -40426,8 +40426,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18001 - - uid: 850 + - 17983 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad @@ -40435,9 +40435,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 + - 17984 - 105 - - uid: 851 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad @@ -40445,9 +40445,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 852 + - uid: 848 components: - type: Transform rot: 3.141592653589793 rad @@ -40455,9 +40455,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18003 + - 17985 - 105 - - uid: 853 + - uid: 849 components: - type: Transform rot: 3.141592653589793 rad @@ -40465,9 +40465,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18004 + - 17986 - 111 - - uid: 854 + - uid: 850 components: - type: Transform rot: 3.141592653589793 rad @@ -40475,9 +40475,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17976 + - 17958 - 79 - - uid: 855 + - uid: 851 components: - type: Transform rot: 3.141592653589793 rad @@ -40486,7 +40486,7 @@ entities: - type: DeviceNetwork deviceLists: - 71 - - uid: 856 + - uid: 852 components: - type: Transform rot: 3.141592653589793 rad @@ -40494,9 +40494,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 + - 17946 - 72 - - uid: 857 + - uid: 853 components: - type: Transform rot: 3.141592653589793 rad @@ -40504,9 +40504,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17972 + - 17954 - 54 - - uid: 858 + - uid: 854 components: - type: Transform rot: 3.141592653589793 rad @@ -40514,9 +40514,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17963 + - 17945 - 75 - - uid: 859 + - uid: 855 components: - type: Transform rot: 3.141592653589793 rad @@ -40524,9 +40524,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18012 + - 17994 - 75 - - uid: 860 + - uid: 856 components: - type: Transform rot: 3.141592653589793 rad @@ -40534,9 +40534,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17963 + - 17945 - 75 - - uid: 861 + - uid: 857 components: - type: Transform rot: 1.5707963267948966 rad @@ -40544,9 +40544,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17969 + - 17951 - 76 - - uid: 862 + - uid: 858 components: - type: Transform rot: 1.5707963267948966 rad @@ -40554,26 +40554,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 863 + - uid: 859 components: - type: Transform pos: 78.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - - uid: 864 + - uid: 860 components: - type: Transform pos: 87.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 - - uid: 865 + - 17997 + - uid: 861 components: - type: Transform rot: 3.141592653589793 rad @@ -40582,1098 +40582,1098 @@ entities: - type: DeviceNetwork deviceLists: - 103 - - uid: 38611 + - uid: 38438 components: - type: Transform pos: -3.5,4.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 - - 39196 - - 38586 - - uid: 38612 + - 38412 + - 39023 + - 38413 + - uid: 38439 components: - type: Transform pos: -12.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 - - 39195 + - 38413 + - 39022 - proto: AirTank entities: - - uid: 38613 + - uid: 38440 components: - type: Transform pos: 11.575556,19.48703 - parent: 38584 + parent: 38411 - proto: AltarBananium entities: - - uid: 866 + - uid: 862 components: - type: Transform pos: -6.5,34.5 parent: 2 - proto: AltarConvertYellow entities: - - uid: 867 + - uid: 863 components: - type: Transform pos: -0.5,9.5 parent: 2 - proto: AltarToolbox entities: - - uid: 868 + - uid: 864 components: - type: Transform pos: 33.5,-54.5 parent: 2 - proto: AnalysisComputerCircuitboard entities: - - uid: 873 + - uid: 865 components: - type: Transform pos: -34.5,14.5 parent: 2 - proto: AnomalyLocator entities: - - uid: 874 + - uid: 866 components: - type: Transform pos: -22.608198,-55.673317 parent: 2 - proto: AnomalyScanner entities: - - uid: 875 + - uid: 867 components: - type: Transform pos: -18.514757,-55.20893 parent: 2 - - uid: 876 + - uid: 868 components: - type: Transform pos: -17.952257,-55.20893 parent: 2 - - uid: 877 + - uid: 869 components: - type: Transform pos: -17.631098,-55.387352 parent: 2 - - uid: 878 + - uid: 870 components: - type: Transform pos: -18.198187,-55.40506 parent: 2 - proto: AntiPoisonMedipen entities: - - uid: 880 + - uid: 872 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: APCBasic entities: - - uid: 887 + - uid: 879 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 888 + - uid: 880 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 889 + - uid: 881 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 890 + - uid: 882 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 891 + - uid: 883 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 892 + - uid: 884 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 893 + - uid: 885 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 894 + - uid: 886 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 895 + - uid: 887 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 896 + - uid: 888 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 897 + - uid: 889 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 898 + - uid: 890 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 899 + - uid: 891 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 900 + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-1.5 parent: 2 - - uid: 901 + - uid: 893 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 902 + - uid: 894 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 903 + - uid: 895 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 904 + - uid: 896 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 905 + - uid: 897 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 906 + - uid: 898 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 907 + - uid: 899 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 908 + - uid: 900 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 909 + - uid: 901 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 910 + - uid: 902 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 911 + - uid: 903 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 912 + - uid: 904 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 913 + - uid: 905 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-1.5 parent: 2 - - uid: 914 + - uid: 906 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 915 + - uid: 907 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 916 + - uid: 908 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 917 + - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-1.5 parent: 2 - - uid: 918 + - uid: 910 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 919 + - uid: 911 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 920 + - uid: 912 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 921 + - uid: 913 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 922 + - uid: 914 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 923 + - uid: 915 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 924 + - uid: 916 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 925 + - uid: 917 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 926 + - uid: 918 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 927 + - uid: 919 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 928 + - uid: 920 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 929 + - uid: 921 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 930 + - uid: 922 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 931 + - uid: 923 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 932 + - uid: 924 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 933 + - uid: 925 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 935 + - uid: 926 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 936 + - uid: 927 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 937 + - uid: 928 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 938 + - uid: 929 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 939 + - uid: 930 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 940 + - uid: 931 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 941 + - uid: 932 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 942 + - uid: 933 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 943 + - uid: 934 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 944 + - uid: 935 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 945 + - uid: 936 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 946 + - uid: 937 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 947 + - uid: 938 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 948 + - uid: 939 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 949 + - uid: 940 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 950 + - uid: 941 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 951 + - uid: 942 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 952 + - uid: 943 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 953 + - uid: 944 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 954 + - uid: 945 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 955 + - uid: 946 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 956 + - uid: 947 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 957 + - uid: 948 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 958 + - uid: 949 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 959 + - uid: 950 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 960 + - uid: 951 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 961 + - uid: 952 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 962 + - uid: 953 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 963 + - uid: 954 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 964 + - uid: 955 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 965 + - uid: 956 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 966 + - uid: 957 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 967 + - uid: 958 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 968 + - uid: 959 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 969 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,2.5 parent: 2 - - uid: 970 + - uid: 961 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 971 + - uid: 962 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 972 + - uid: 963 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 973 + - uid: 964 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 974 + - uid: 965 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 975 + - uid: 966 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 976 + - uid: 967 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 977 + - uid: 968 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 978 + - uid: 969 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 979 + - uid: 970 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 980 + - uid: 971 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 981 + - uid: 972 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 982 + - uid: 973 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 983 + - uid: 974 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 984 + - uid: 975 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 985 + - uid: 976 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 986 + - uid: 977 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 987 + - uid: 978 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 988 + - uid: 979 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 989 + - uid: 980 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 990 + - uid: 981 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 991 + - uid: 982 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 992 + - uid: 983 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 993 + - uid: 984 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 994 + - uid: 985 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 995 + - uid: 986 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 996 + - uid: 987 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 997 + - uid: 988 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 998 + - uid: 989 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 999 + - uid: 990 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 1000 + - uid: 991 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 1001 + - uid: 992 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 1002 + - uid: 993 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 1003 + - uid: 994 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 1004 + - uid: 995 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 1005 + - uid: 996 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 1006 + - uid: 997 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 1007 + - uid: 998 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 1008 + - uid: 999 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 1009 + - uid: 1000 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 1010 + - uid: 1001 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 1011 + - uid: 1002 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1012 + - uid: 1003 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 1013 + - uid: 1004 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 1014 + - uid: 1005 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 1015 + - uid: 1006 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 1016 + - uid: 1007 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 1017 + - uid: 1008 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 1018 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 - - uid: 1019 + - uid: 1010 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 1020 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-75.5 parent: 2 - - uid: 1021 + - uid: 1012 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 1022 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-29.5 parent: 2 - - uid: 1023 + - uid: 1014 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 1024 + - uid: 1015 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 1025 + - uid: 1016 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 1026 + - uid: 1017 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 1027 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 - - uid: 1028 + - uid: 1019 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 1029 + - uid: 1020 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-49.5 parent: 2 - - uid: 1030 + - uid: 1021 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-49.5 parent: 2 - - uid: 1031 + - uid: 1022 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 1032 + - uid: 1023 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 1033 + - uid: 1024 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 1034 + - uid: 1025 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 1035 + - uid: 1026 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 1036 + - uid: 1027 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 1037 + - uid: 1028 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 1038 + - uid: 1029 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 1039 + - uid: 1030 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 1040 + - uid: 1031 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 1041 + - uid: 1032 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 1042 + - uid: 1033 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 1043 + - uid: 1034 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 1044 + - uid: 1035 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 1045 + - uid: 1036 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 1046 + - uid: 1037 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 1047 + - uid: 1038 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 1048 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 - - uid: 1049 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,11.5 parent: 2 - - uid: 1050 + - uid: 1041 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 1051 + - uid: 1042 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 1052 + - uid: 1043 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 1054 + - uid: 1044 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 1055 + - uid: 1045 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 1056 + - uid: 1046 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 1057 + - uid: 1047 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 1058 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-48.5 parent: 2 - - uid: 1059 + - uid: 1049 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-35.5 parent: 2 - - uid: 1060 + - uid: 1050 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 1061 + - uid: 1051 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 1062 + - uid: 1052 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 1063 + - uid: 1053 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 1064 + - uid: 1054 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 1065 + - uid: 1055 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 1066 + - uid: 1056 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 1067 + - uid: 1057 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 1068 + - uid: 1058 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 1069 + - uid: 1059 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 1070 + - uid: 1060 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 38488 + - uid: 38315 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 - parent: 38484 - - uid: 38614 + parent: 38311 + - uid: 38441 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38615 + parent: 38411 + - uid: 38442 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38616 + parent: 38411 + - uid: 38443 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 38617 + parent: 38411 + - uid: 38444 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 38618 + parent: 38411 + - uid: 38445 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,7.5 - parent: 38584 - - uid: 38619 + parent: 38411 + - uid: 38446 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38620 + parent: 38411 + - uid: 38447 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 38621 + parent: 38411 + - uid: 38448 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38622 + parent: 38411 + - uid: 38449 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 38623 + parent: 38411 + - uid: 38450 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 + parent: 38411 - proto: APCElectronics entities: - - uid: 1072 + - uid: 1062 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1075 + - uid: 1065 components: - type: Transform pos: -34.33145,10.337081 parent: 2 - proto: APCSuperCapacity entities: - - uid: 1076 + - uid: 1066 components: - type: MetaData name: Артефактная @@ -41681,7 +41681,7 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-47.5 parent: 2 - - uid: 1077 + - uid: 1067 components: - type: MetaData name: Токсины @@ -41689,843 +41689,843 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-40.5 parent: 2 - - uid: 1078 + - uid: 1068 components: - type: Transform pos: -26.5,-24.5 parent: 2 - proto: AppleSeeds entities: - - uid: 1079 + - uid: 1069 components: - type: Transform pos: 54.638096,-32.17157 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 1080 + - uid: 1070 components: - type: Transform pos: 3.5,81.5 parent: 2 - - uid: 1081 + - uid: 1071 components: - type: Transform pos: -14.5,81.5 parent: 2 - - uid: 1082 + - uid: 1072 components: - type: Transform pos: -26.5,81.5 parent: 2 - proto: Ash entities: - - uid: 1083 + - uid: 1073 components: - type: Transform pos: -57.457546,56.721203 parent: 2 - proto: Ashtray entities: - - uid: 1084 + - uid: 1074 components: - type: Transform rot: 3.141592653589793 rad pos: -33.302418,-8.487843 parent: 2 - - uid: 1085 + - uid: 1075 components: - type: Transform pos: -57.34817,56.705578 parent: 2 - - uid: 1086 + - uid: 1076 components: - type: Transform pos: 59.625492,27.514393 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 1087 + - uid: 1077 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,39.5 parent: 2 - - uid: 1088 + - uid: 1078 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,91.5 parent: 2 - - uid: 1089 + - uid: 1079 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 1090 + - uid: 1080 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,49.5 parent: 2 - - uid: 1091 + - uid: 1081 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,51.5 parent: 2 - - uid: 1092 + - uid: 1082 components: - type: Transform pos: 17.5,78.5 parent: 2 - - uid: 1093 + - uid: 1083 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,93.5 parent: 2 - - uid: 1094 + - uid: 1084 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 1095 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,17.5 parent: 2 - - uid: 1096 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,84.5 parent: 2 - - uid: 1097 + - uid: 1087 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,21.5 parent: 2 - - uid: 1098 + - uid: 1088 components: - type: Transform pos: 31.5,60.5 parent: 2 - - uid: 1099 + - uid: 1089 components: - type: Transform pos: -34.5,26.5 parent: 2 - - uid: 1100 + - uid: 1090 components: - type: Transform pos: 90.5,21.5 parent: 2 - - uid: 1101 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,59.5 parent: 2 - - uid: 1102 + - uid: 1092 components: - type: Transform pos: -30.5,29.5 parent: 2 - - uid: 1103 + - uid: 1093 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,77.5 parent: 2 - - uid: 1104 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,84.5 parent: 2 - - uid: 1105 + - uid: 1095 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,99.5 parent: 2 - - uid: 1106 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,77.5 parent: 2 - - uid: 1107 + - uid: 1097 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,84.5 parent: 2 - - uid: 1108 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,84.5 parent: 2 - - uid: 1109 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,77.5 parent: 2 - - uid: 1110 + - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,77.5 parent: 2 - - uid: 1111 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,84.5 parent: 2 - - uid: 1112 + - uid: 1102 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,77.5 parent: 2 - - uid: 1113 + - uid: 1103 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,99.5 parent: 2 - - uid: 1114 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-2.5 parent: 2 - - uid: 1115 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-86.5 parent: 2 - - uid: 1116 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-86.5 parent: 2 - - uid: 1117 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 - - uid: 1118 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-86.5 parent: 2 - - uid: 1119 + - uid: 1109 components: - type: Transform pos: -19.5,-51.5 parent: 2 - - uid: 1120 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,23.5 parent: 2 - - uid: 1121 + - uid: 1111 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 1122 + - uid: 1112 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-81.5 parent: 2 - - uid: 1123 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,25.5 parent: 2 - - uid: 1124 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,10.5 parent: 2 - - uid: 1125 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,27.5 parent: 2 - - uid: 1126 + - uid: 1116 components: - type: Transform pos: -82.5,14.5 parent: 2 - - uid: 1127 + - uid: 1117 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,57.5 parent: 2 - - uid: 1128 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-2.5 parent: 2 - - uid: 1129 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,41.5 parent: 2 - - uid: 1130 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-43.5 parent: 2 - - uid: 1131 + - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-13.5 parent: 2 - - uid: 1132 + - uid: 1122 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-12.5 parent: 2 - - uid: 1133 + - uid: 1123 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-26.5 parent: 2 - - uid: 1134 + - uid: 1124 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-57.5 parent: 2 - - uid: 1135 + - uid: 1125 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-74.5 parent: 2 - - uid: 1136 + - uid: 1126 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-46.5 parent: 2 - - uid: 1137 + - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-46.5 parent: 2 - - uid: 1138 + - uid: 1128 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,87.5 parent: 2 - - uid: 1139 + - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,58.5 parent: 2 - - uid: 1140 + - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,65.5 parent: 2 - - uid: 38489 + - uid: 38316 components: - type: Transform pos: -1.5,0.5 - parent: 38484 - - uid: 38490 + parent: 38311 + - uid: 38317 components: - type: Transform pos: 4.5,0.5 - parent: 38484 - - uid: 38624 + parent: 38311 + - uid: 38451 components: - type: Transform pos: 0.5,9.5 - parent: 38584 - - uid: 38625 + parent: 38411 + - uid: 38452 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-11.5 - parent: 38584 - - uid: 38626 + parent: 38411 + - uid: 38453 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-11.5 - parent: 38584 - - uid: 38627 + parent: 38411 + - uid: 38454 components: - type: Transform pos: -1.5,9.5 - parent: 38584 + parent: 38411 - proto: AtmosFixBlockerMarker entities: - - uid: 1141 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,46.5 parent: 2 - - uid: 1142 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,49.5 parent: 2 - - uid: 1143 + - uid: 1133 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,45.5 parent: 2 - - uid: 1144 + - uid: 1134 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,44.5 parent: 2 - - uid: 1145 + - uid: 1135 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,48.5 parent: 2 - - uid: 1146 + - uid: 1136 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,42.5 parent: 2 - - uid: 1147 + - uid: 1137 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,44.5 parent: 2 - - uid: 1148 + - uid: 1138 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,41.5 parent: 2 - - uid: 1149 + - uid: 1139 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,40.5 parent: 2 - - uid: 1150 + - uid: 1140 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,40.5 parent: 2 - - uid: 1151 + - uid: 1141 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,42.5 parent: 2 - - uid: 1152 + - uid: 1142 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,46.5 parent: 2 - - uid: 1153 + - uid: 1143 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,50.5 parent: 2 - - uid: 1154 + - uid: 1144 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,44.5 parent: 2 - - uid: 1155 + - uid: 1145 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,45.5 parent: 2 - - uid: 1156 + - uid: 1146 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,49.5 parent: 2 - - uid: 1157 + - uid: 1147 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,45.5 parent: 2 - - uid: 1158 + - uid: 1148 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,49.5 parent: 2 - - uid: 1159 + - uid: 1149 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,46.5 parent: 2 - - uid: 1160 + - uid: 1150 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,50.5 parent: 2 - - uid: 1161 + - uid: 1151 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,50.5 parent: 2 - - uid: 1162 + - uid: 1152 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,48.5 parent: 2 - - uid: 1163 + - uid: 1153 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,40.5 parent: 2 - - uid: 1164 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,48.5 parent: 2 - - uid: 1165 + - uid: 1155 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,41.5 parent: 2 - - uid: 1166 + - uid: 1156 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,42.5 parent: 2 - - uid: 1167 + - uid: 1157 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,41.5 parent: 2 - - uid: 1168 + - uid: 1158 components: - type: Transform pos: -76.5,21.5 parent: 2 - - uid: 1169 + - uid: 1159 components: - type: Transform pos: -76.5,22.5 parent: 2 - - uid: 1170 + - uid: 1160 components: - type: Transform pos: -75.5,22.5 parent: 2 - - uid: 1171 + - uid: 1161 components: - type: Transform pos: -76.5,20.5 parent: 2 - - uid: 1172 + - uid: 1162 components: - type: Transform pos: -76.5,23.5 parent: 2 - - uid: 1173 + - uid: 1163 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 1174 + - uid: 1164 components: - type: Transform pos: -75.5,24.5 parent: 2 - - uid: 1175 + - uid: 1165 components: - type: Transform pos: -75.5,23.5 parent: 2 - - uid: 1176 + - uid: 1166 components: - type: Transform pos: -75.5,21.5 parent: 2 - - uid: 1177 + - uid: 1167 components: - type: Transform pos: -75.5,20.5 parent: 2 - - uid: 1178 + - uid: 1168 components: - type: Transform pos: -74.5,20.5 parent: 2 - - uid: 1179 + - uid: 1169 components: - type: Transform pos: -74.5,21.5 parent: 2 - - uid: 1180 + - uid: 1170 components: - type: Transform pos: -74.5,22.5 parent: 2 - - uid: 1181 + - uid: 1171 components: - type: Transform pos: -74.5,23.5 parent: 2 - - uid: 1182 + - uid: 1172 components: - type: Transform pos: -74.5,24.5 parent: 2 - - uid: 1183 + - uid: 1173 components: - type: Transform pos: -73.5,24.5 parent: 2 - - uid: 1184 + - uid: 1174 components: - type: Transform pos: -73.5,23.5 parent: 2 - - uid: 1185 + - uid: 1175 components: - type: Transform pos: -73.5,21.5 parent: 2 - - uid: 1186 + - uid: 1176 components: - type: Transform pos: -73.5,20.5 parent: 2 - - uid: 1187 + - uid: 1177 components: - type: Transform pos: -73.5,22.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1188 + - uid: 1178 components: - type: Transform pos: -30.5,25.5 parent: 2 - - uid: 1189 + - uid: 1179 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 1190 + - uid: 1180 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 1191 + - uid: 1181 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 1192 + - uid: 1182 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 1193 + - uid: 1183 components: - type: Transform pos: -32.5,26.5 parent: 2 - - uid: 1194 + - uid: 1184 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 1195 + - uid: 1185 components: - type: Transform pos: -32.5,29.5 parent: 2 - - uid: 1196 + - uid: 1186 components: - type: Transform pos: -32.5,28.5 parent: 2 - - uid: 1197 + - uid: 1187 components: - type: Transform pos: -29.5,28.5 parent: 2 - - uid: 1198 + - uid: 1188 components: - type: Transform pos: -28.5,28.5 parent: 2 - - uid: 1199 + - uid: 1189 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 1200 + - uid: 1190 components: - type: Transform pos: -32.5,30.5 parent: 2 - - uid: 1201 + - uid: 1191 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 1202 + - uid: 1192 components: - type: Transform pos: -32.5,25.5 parent: 2 - - uid: 1203 + - uid: 1193 components: - type: Transform pos: -30.5,26.5 parent: 2 - - uid: 1204 + - uid: 1194 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 1205 + - uid: 1195 components: - type: Transform pos: -31.5,25.5 parent: 2 - - uid: 1206 + - uid: 1196 components: - type: Transform pos: -33.5,25.5 parent: 2 - - uid: 1207 + - uid: 1197 components: - type: Transform pos: -31.5,26.5 parent: 2 - - uid: 1208 + - uid: 1198 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 1209 + - uid: 1199 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 1210 + - uid: 1200 components: - type: Transform pos: -31.5,28.5 parent: 2 - - uid: 1211 + - uid: 1201 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 1212 + - uid: 1202 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 1213 + - uid: 1203 components: - type: Transform pos: -19.5,-52.5 parent: 2 - - uid: 1214 + - uid: 1204 components: - type: Transform pos: -18.5,-53.5 parent: 2 - - uid: 1215 + - uid: 1205 components: - type: Transform pos: -20.5,-53.5 parent: 2 - - uid: 1216 + - uid: 1206 components: - type: Transform pos: -19.5,-53.5 parent: 2 - - uid: 1217 + - uid: 1207 components: - type: Transform pos: -18.5,-52.5 parent: 2 - - uid: 1218 + - uid: 1208 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 1219 + - uid: 1209 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-3.5 parent: 2 - - uid: 1220 + - uid: 1210 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-2.5 parent: 2 - - uid: 1221 + - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad @@ -42533,170 +42533,170 @@ entities: parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 1222 + - uid: 1212 components: - type: Transform pos: -70.5,38.5 parent: 2 - - uid: 1223 + - uid: 1213 components: - type: Transform pos: -71.5,37.5 parent: 2 - - uid: 1224 + - uid: 1214 components: - type: Transform pos: -71.5,38.5 parent: 2 - - uid: 1225 + - uid: 1215 components: - type: Transform pos: -72.5,38.5 parent: 2 - - uid: 1226 + - uid: 1216 components: - type: Transform pos: -70.5,37.5 parent: 2 - - uid: 1227 + - uid: 1217 components: - type: Transform pos: -71.5,36.5 parent: 2 - - uid: 1228 + - uid: 1218 components: - type: Transform pos: -72.5,36.5 parent: 2 - - uid: 1229 + - uid: 1219 components: - type: Transform pos: -70.5,36.5 parent: 2 - - uid: 1230 + - uid: 1220 components: - type: Transform pos: -72.5,37.5 parent: 2 - proto: AtmosFixOxygenMarker entities: - - uid: 1231 + - uid: 1221 components: - type: Transform pos: -71.5,34.5 parent: 2 - - uid: 1232 + - uid: 1222 components: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 1233 + - uid: 1223 components: - type: Transform pos: -70.5,34.5 parent: 2 - - uid: 1234 + - uid: 1224 components: - type: Transform pos: -72.5,34.5 parent: 2 - - uid: 1235 + - uid: 1225 components: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 1236 + - uid: 1226 components: - type: Transform pos: -72.5,33.5 parent: 2 - - uid: 1237 + - uid: 1227 components: - type: Transform pos: -72.5,32.5 parent: 2 - - uid: 1238 + - uid: 1228 components: - type: Transform pos: -71.5,32.5 parent: 2 - - uid: 1239 + - uid: 1229 components: - type: Transform pos: -70.5,32.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 1240 + - uid: 1230 components: - type: Transform pos: -72.5,30.5 parent: 2 - - uid: 1241 + - uid: 1231 components: - type: Transform pos: -72.5,29.5 parent: 2 - - uid: 1242 + - uid: 1232 components: - type: Transform pos: -72.5,28.5 parent: 2 - - uid: 1243 + - uid: 1233 components: - type: Transform pos: -71.5,28.5 parent: 2 - - uid: 1244 + - uid: 1234 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 1245 + - uid: 1235 components: - type: Transform pos: -71.5,30.5 parent: 2 - - uid: 1246 + - uid: 1236 components: - type: Transform pos: -70.5,30.5 parent: 2 - - uid: 1247 + - uid: 1237 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 1248 + - uid: 1238 components: - type: Transform pos: -70.5,28.5 parent: 2 - proto: Autolathe entities: - - uid: 1249 + - uid: 1239 components: - type: Transform pos: -58.5,20.5 parent: 2 - - uid: 1250 + - uid: 1240 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 1251 + - uid: 1241 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 1252 + - uid: 1242 components: - type: Transform pos: 7.5,33.5 parent: 2 - proto: AutolatheMachineCircuitboard entities: - - uid: 1253 + - uid: 1243 components: - type: Transform rot: 3.141592653589793 rad @@ -42704,13 +42704,13 @@ entities: parent: 2 - proto: BalloonCorgi entities: - - uid: 1254 + - uid: 1244 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -69.68523,-45.374607 parent: 2 - - uid: 1255 + - uid: 1245 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -42718,750 +42718,750 @@ entities: parent: 2 - proto: BananaSeeds entities: - - uid: 1256 + - uid: 1246 components: - type: Transform pos: -38.5,35.5 parent: 2 - proto: BannerCargo entities: - - uid: 1257 + - uid: 1247 components: - type: Transform pos: 6.5,26.5 parent: 2 - proto: BannerEngineering entities: - - uid: 1259 + - uid: 1248 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 1260 + - uid: 1249 components: - type: Transform pos: -44.5,15.5 parent: 2 - proto: BannerGreen entities: - - uid: 1261 + - uid: 1250 components: - type: Transform pos: -38.5,45.5 parent: 2 - - uid: 1262 + - uid: 1251 components: - type: Transform pos: -111.50001,33.5 parent: 2 - - uid: 1263 + - uid: 1252 components: - type: Transform pos: -114.50001,33.5 parent: 2 - proto: BannerMedical entities: - - uid: 1264 + - uid: 1253 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 1265 + - uid: 1254 components: - type: Transform pos: 14.5,-26.5 parent: 2 - - uid: 1266 + - uid: 1255 components: - type: Transform pos: 40.499996,-39.5 parent: 2 - proto: BannerNanotrasen entities: - - uid: 1267 + - uid: 1256 components: - type: Transform pos: -15.5,16.5 parent: 2 - - uid: 1268 + - uid: 1257 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 1269 + - uid: 1258 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 1270 + - uid: 1259 components: - type: Transform pos: -41.5,59.5 parent: 2 - - uid: 1271 + - uid: 1260 components: - type: Transform pos: 14.5,-23.5 parent: 2 - - uid: 1272 + - uid: 1261 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 1273 + - uid: 1262 components: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 1274 + - uid: 1263 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 1275 + - uid: 1264 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 1276 + - uid: 1265 components: - type: Transform pos: -3.5,-23.5 parent: 2 - - uid: 1277 + - uid: 1266 components: - type: Transform pos: -15.5,-26.5 parent: 2 - - uid: 1278 + - uid: 1267 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 1279 + - uid: 1268 components: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 1280 + - uid: 1269 components: - type: Transform pos: 4.5,-77.5 parent: 2 - - uid: 1281 + - uid: 1270 components: - type: Transform pos: 2.5,-76.5 parent: 2 - - uid: 1282 + - uid: 1271 components: - type: Transform pos: 24.5,-45.5 parent: 2 - - uid: 1283 + - uid: 1272 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 1284 + - uid: 1273 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 1285 + - uid: 1274 components: - type: Transform pos: 2.5,-67.5 parent: 2 - - uid: 1286 + - uid: 1275 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 1287 + - uid: 1276 components: - type: Transform pos: 10.5,-16.5 parent: 2 - - uid: 1288 + - uid: 1277 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 1289 + - uid: 1278 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 1290 + - uid: 1279 components: - type: Transform pos: 3.5,26.5 parent: 2 - - uid: 1291 + - uid: 1280 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 1292 + - uid: 1281 components: - type: Transform pos: 4.5,-71.5 parent: 2 - - uid: 1293 + - uid: 1282 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 1294 + - uid: 1283 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 1295 + - uid: 1284 components: - type: Transform pos: -44.5,11.5 parent: 2 - - uid: 1296 + - uid: 1285 components: - type: Transform pos: 59.5,26.5 parent: 2 - proto: BannerScience entities: - - uid: 1298 + - uid: 1286 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 1299 + - uid: 1287 components: - type: Transform pos: -3.5,-26.5 parent: 2 - proto: BannerSecurity entities: - - uid: 1300 + - uid: 1288 components: - type: Transform pos: 8.5,-61.5 parent: 2 - - uid: 1301 + - uid: 1289 components: - type: Transform pos: 14.5,-31.5 parent: 2 - - uid: 1302 + - uid: 1290 components: - type: Transform pos: 61.5,3.5 parent: 2 - - uid: 1303 + - uid: 1291 components: - type: Transform pos: -19.5,-23.5 parent: 2 - - uid: 1304 + - uid: 1292 components: - type: Transform pos: 58.5,32.5 parent: 2 - - uid: 1305 + - uid: 1293 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 1306 + - uid: 1294 components: - type: Transform pos: 49.5,31.5 parent: 2 - - uid: 1307 + - uid: 1295 components: - type: Transform pos: 59.5,31.5 parent: 2 - proto: BannerSyndicate entities: - - uid: 1308 + - uid: 1296 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 1309 + - uid: 1297 components: - type: Transform pos: -74.5,-33.5 parent: 2 - - uid: 1310 + - uid: 1298 components: - type: Transform pos: 43.499996,-2.5 parent: 2 - proto: BannerYellow entities: - - uid: 1311 + - uid: 1299 components: - type: Transform pos: 16.5,63.5 parent: 2 - proto: Barricade entities: - - uid: 198 + - uid: 1300 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 435 + - uid: 1301 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 1312 + - uid: 1302 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-64.5 parent: 2 - - uid: 1313 + - uid: 1303 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 1314 + - uid: 1304 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 1315 + - uid: 1305 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 1316 + - uid: 1306 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 1317 + - uid: 1307 components: - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 1318 + - uid: 1308 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - uid: 1319 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-51.5 parent: 2 - - uid: 1320 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-54.5 parent: 2 - - uid: 1321 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-52.5 parent: 2 - - uid: 1322 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-28.5 parent: 2 - - uid: 1323 + - uid: 1313 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 1324 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-28.5 parent: 2 - - uid: 1325 + - uid: 1315 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 1326 + - uid: 1316 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 1327 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-26.5 parent: 2 - - uid: 1328 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-27.5 parent: 2 - - uid: 1329 + - uid: 1319 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 1330 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-26.5 parent: 2 - - uid: 1331 + - uid: 1321 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 1332 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-27.5 parent: 2 - - uid: 1333 + - uid: 1323 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-63.5 parent: 2 - - uid: 1334 + - uid: 1324 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-62.5 parent: 2 - - uid: 1335 + - uid: 1325 components: - type: Transform pos: 29.5,-66.5 parent: 2 - - uid: 1336 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 - - uid: 1337 + - uid: 1327 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-26.5 parent: 2 - - uid: 1338 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-27.5 parent: 2 - - uid: 1339 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-68.5 parent: 2 - - uid: 1340 + - uid: 1330 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-67.5 parent: 2 - - uid: 1341 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-62.5 parent: 2 - - uid: 1342 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-69.5 parent: 2 - - uid: 1343 + - uid: 1333 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-28.5 parent: 2 - - uid: 1344 + - uid: 1334 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 1345 + - uid: 1335 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 1346 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 - - uid: 1347 + - uid: 1337 components: - type: Transform pos: -35.5,-71.5 parent: 2 - - uid: 1348 + - uid: 1338 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-40.5 parent: 2 - - uid: 2826 + - uid: 1339 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 14972 + - uid: 1340 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 15045 + - uid: 1341 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 34853 + - uid: 1342 components: - type: Transform pos: -64.5,-31.5 parent: 2 - - uid: 38628 + - uid: 38455 components: - type: Transform pos: -0.5,19.5 - parent: 38584 - - uid: 38629 + parent: 38411 + - uid: 38456 components: - type: Transform pos: -1.5,19.5 - parent: 38584 - - uid: 38630 + parent: 38411 + - uid: 38457 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,21.5 - parent: 38584 - - uid: 38631 + parent: 38411 + - uid: 38458 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,14.5 - parent: 38584 - - uid: 38632 + parent: 38411 + - uid: 38459 components: - type: Transform pos: -27.5,15.5 - parent: 38584 - - uid: 38633 + parent: 38411 + - uid: 38460 components: - type: Transform pos: -17.5,33.5 - parent: 38584 + parent: 38411 - proto: BarricadeBlock entities: - - uid: 432 + - uid: 1343 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 1349 + - uid: 1344 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,58.5 parent: 2 - - uid: 1350 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-71.5 parent: 2 - - uid: 1351 + - uid: 1346 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 1352 + - uid: 1347 components: - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 1353 + - uid: 1348 components: - type: Transform pos: -47.5,-22.5 parent: 2 - - uid: 1354 + - uid: 1349 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,68.5 parent: 2 - - uid: 1357 + - uid: 1350 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 1358 + - uid: 1351 components: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 1359 + - uid: 1352 components: - type: Transform pos: 24.5,66.5 parent: 2 - - uid: 1360 + - uid: 1353 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 1361 + - uid: 1354 components: - type: Transform pos: 17.5,57.5 parent: 2 - - uid: 1362 + - uid: 1355 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 1363 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-58.5 parent: 2 - - uid: 1364 + - uid: 1357 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-71.5 parent: 2 - - uid: 1365 + - uid: 1358 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 1366 + - uid: 1359 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 1367 + - uid: 1360 components: - type: Transform pos: 16.5,70.5 parent: 2 - - uid: 1368 + - uid: 1361 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,55.5 parent: 2 - - uid: 1369 + - uid: 1362 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 1370 + - uid: 1363 components: - type: Transform pos: -34.5,-71.5 parent: 2 - - uid: 1371 + - uid: 1364 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 1372 + - uid: 1365 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 1373 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 - - uid: 1374 + - uid: 1367 components: - type: Transform pos: -30.5,-71.5 parent: 2 - - uid: 1375 + - uid: 1368 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-40.5 parent: 2 - - uid: 2795 + - uid: 1369 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 2821 + - uid: 1370 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 2822 + - uid: 1371 components: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 31867 + - uid: 1372 components: - type: Transform pos: -73.5,-28.5 parent: 2 - - uid: 34839 + - uid: 1373 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 37638 + - uid: 1374 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 38634 + - uid: 38461 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 38635 + parent: 38411 + - uid: 38462 components: - type: Transform pos: -21.5,29.5 - parent: 38584 + parent: 38411 - proto: BarricadeDirectional entities: - - uid: 433 + - uid: 1375 components: - type: Transform rot: 1.5707963267948966 rad @@ -43515,80 +43515,80 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-40.5 parent: 2 - - uid: 25503 + - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-26.5 parent: 2 - - uid: 29156 + - uid: 1386 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 34010 + - uid: 1387 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 34317 + - uid: 1388 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 38636 + - uid: 38463 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,14.5 - parent: 38584 - - uid: 38637 + parent: 38411 + - uid: 38464 components: - type: Transform pos: -9.5,22.5 - parent: 38584 - - uid: 38638 + parent: 38411 + - uid: 38465 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,18.5 - parent: 38584 - - uid: 38639 + parent: 38411 + - uid: 38466 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 - parent: 38584 - - uid: 38640 + parent: 38411 + - uid: 38467 components: - type: Transform pos: -27.5,16.5 - parent: 38584 - - uid: 38641 + parent: 38411 + - uid: 38468 components: - type: Transform pos: -18.5,15.5 - parent: 38584 - - uid: 38642 + parent: 38411 + - uid: 38469 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,15.5 - parent: 38584 - - uid: 38643 + parent: 38411 + - uid: 38470 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,14.5 - parent: 38584 - - uid: 38644 + parent: 38411 + - uid: 38471 components: - type: Transform pos: -17.5,34.5 - parent: 38584 + parent: 38411 - proto: BarSign entities: - - uid: 1385 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad @@ -43596,27 +43596,27 @@ entities: parent: 2 - proto: BarSignMaidCafe entities: - - uid: 1386 + - uid: 1390 components: - type: Transform pos: -64.5,-38.5 parent: 2 - proto: BaseBallBat entities: - - uid: 1387 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.538887,-47.448273 parent: 2 - - uid: 1389 + - uid: 1393 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 9969 + - uid: 1396 components: - type: Transform rot: 3.141592653589793 rad @@ -43624,20 +43624,20 @@ entities: parent: 2 - proto: BaseComputer entities: - - uid: 1392 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-49.5 parent: 2 - - uid: 38645 + - uid: 38472 components: - type: Transform pos: -22.5,34.5 - parent: 38584 + parent: 38411 - proto: BaseGasCondenser entities: - - uid: 1393 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad @@ -43645,370 +43645,370 @@ entities: parent: 2 - proto: Basketball entities: - - uid: 1394 + - uid: 1399 components: - type: Transform pos: -43.351387,-47.338898 parent: 2 - proto: BassGuitarInstrument entities: - - uid: 1395 + - uid: 1400 components: - type: Transform pos: -8.499726,29.04972 parent: 2 - proto: Beaker entities: - - uid: 1396 + - uid: 1401 components: - type: Transform pos: 26.798685,-65.68403 parent: 2 - - uid: 1397 + - uid: 1402 components: - type: Transform pos: 26.486185,-65.76215 parent: 2 - - uid: 1398 + - uid: 1403 components: - type: Transform pos: 22.348429,-37.346508 parent: 2 - - uid: 1399 + - uid: 1404 components: - type: Transform pos: 20.50013,-40.283833 parent: 2 - type: Physics canCollide: False - - uid: 1400 + - uid: 1405 components: - type: Transform pos: -10.1553335,-52.195354 parent: 2 - - uid: 1401 + - uid: 1406 components: - type: Transform pos: -3.4142637,-45.366215 parent: 2 - - uid: 1402 + - uid: 1407 components: - type: Transform pos: 3.6732028,-44.403152 parent: 2 - - uid: 1403 + - uid: 1408 components: - type: Transform pos: -3.664264,-45.209965 parent: 2 - - uid: 1404 + - uid: 1409 components: - type: Transform pos: 22.676554,-37.346508 parent: 2 - - uid: 1405 + - uid: 1410 components: - type: Transform pos: 38.498783,-74.342354 parent: 2 - type: Physics canCollide: False - - uid: 1406 + - uid: 1411 components: - type: Transform pos: 2.6763434,-29.46381 parent: 2 - type: Physics canCollide: False - - uid: 1407 + - uid: 1412 components: - type: Transform pos: 36.53883,-19.395462 parent: 2 - type: Physics canCollide: False - - uid: 1408 + - uid: 1413 components: - type: Transform pos: -31.260351,34.57036 parent: 2 - type: Physics canCollide: False - - uid: 1409 + - uid: 1414 components: - type: Transform pos: -39.252483,52.65019 parent: 2 - - uid: 1410 + - uid: 1415 components: - type: Transform pos: -27.199572,45.474667 parent: 2 - proto: Bed entities: - - uid: 1411 + - uid: 1416 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 1412 + - uid: 1417 components: - type: Transform pos: -2.5,54.5 parent: 2 - - uid: 1413 + - uid: 1418 components: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 1414 + - uid: 1419 components: - type: Transform pos: 65.5,-4.5 parent: 2 - - uid: 1415 + - uid: 1420 components: - type: Transform pos: -15.5,-4.5 parent: 2 - - uid: 1416 + - uid: 1421 components: - type: Transform pos: -1.5,44.5 parent: 2 - - uid: 1417 + - uid: 1422 components: - type: Transform pos: 44.5,-60.5 parent: 2 - - uid: 1418 + - uid: 1423 components: - type: Transform pos: -16.5,-46.5 parent: 2 - - uid: 1419 + - uid: 1424 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 1420 + - uid: 1425 components: - type: Transform pos: -12.5,52.5 parent: 2 - - uid: 1421 + - uid: 1426 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 1422 + - uid: 1427 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 1423 + - uid: 1428 components: - type: Transform pos: 53.5,-24.5 parent: 2 - - uid: 1424 + - uid: 1429 components: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1425 + - uid: 1430 components: - type: Transform pos: 42.5,-72.5 parent: 2 - - uid: 1426 + - uid: 1431 components: - type: Transform pos: 45.5,-23.5 parent: 2 - - uid: 1427 + - uid: 1432 components: - type: Transform pos: 35.5,22.5 parent: 2 - - uid: 1428 + - uid: 1433 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 1429 + - uid: 1434 components: - type: Transform pos: 27.5,43.5 parent: 2 - - uid: 1430 + - uid: 1435 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1431 + - uid: 1436 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 1432 + - uid: 1437 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 1433 + - uid: 1438 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 1434 + - uid: 1439 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 1435 + - uid: 1440 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 1436 + - uid: 1441 components: - type: Transform pos: -36.5,2.5 parent: 2 - - uid: 1437 + - uid: 1442 components: - type: Transform pos: 44.5,11.5 parent: 2 - - uid: 1438 + - uid: 1443 components: - type: Transform pos: 44.5,7.5 parent: 2 - - uid: 1439 + - uid: 1444 components: - type: Transform pos: 49.5,-23.5 parent: 2 - - uid: 1440 + - uid: 1445 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 1441 + - uid: 1446 components: - type: Transform pos: -40.5,-59.5 parent: 2 - - uid: 1442 + - uid: 1447 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 1443 + - uid: 1448 components: - type: Transform pos: 98.5,12.5 parent: 2 - - uid: 1444 + - uid: 1449 components: - type: Transform pos: 80.5,-4.5 parent: 2 - - uid: 1445 + - uid: 1450 components: - type: Transform pos: 84.5,-4.5 parent: 2 - - uid: 1446 + - uid: 1451 components: - type: Transform pos: 88.5,-4.5 parent: 2 - - uid: 1447 + - uid: 1452 components: - type: Transform pos: -47.5,-37.5 parent: 2 - - uid: 1448 + - uid: 1453 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 38646 + - uid: 38473 components: - type: Transform pos: -20.5,27.5 - parent: 38584 - - uid: 38647 + parent: 38411 + - uid: 38474 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 38648 + parent: 38411 + - uid: 38475 components: - type: Transform pos: -21.5,0.5 - parent: 38584 - - uid: 38649 + parent: 38411 + - uid: 38476 components: - type: Transform pos: -15.5,0.5 - parent: 38584 - - uid: 38650 + parent: 38411 + - uid: 38477 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 38651 + parent: 38411 + - uid: 38478 components: - type: Transform pos: -18.5,0.5 - parent: 38584 - - uid: 38652 + parent: 38411 + - uid: 38479 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38653 + parent: 38411 + - uid: 38480 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 38654 + parent: 38411 + - uid: 38481 components: - type: Transform pos: -4.5,-1.5 - parent: 38584 - - uid: 38655 + parent: 38411 + - uid: 38482 components: - type: Transform pos: -4.5,-2.5 - parent: 38584 - - uid: 38656 + parent: 38411 + - uid: 38483 components: - type: Transform pos: 3.5,34.5 - parent: 38584 - - uid: 38657 + parent: 38411 + - uid: 38484 components: - type: Transform pos: 6.5,-3.5 - parent: 38584 - - uid: 38658 + parent: 38411 + - uid: 38485 components: - type: Transform pos: 7.5,-5.5 - parent: 38584 - - uid: 38659 + parent: 38411 + - uid: 38486 components: - type: Transform pos: 6.5,-5.5 - parent: 38584 + parent: 38411 - proto: BedsheetBlack entities: - - uid: 1449 + - uid: 1454 components: - type: Transform pos: -23.5,-80.5 @@ -44017,13 +44017,13 @@ entities: canCollide: False - proto: BedsheetBlue entities: - - uid: 1450 + - uid: 1455 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,54.5 parent: 2 - - uid: 1451 + - uid: 1456 components: - type: Transform rot: 1.5707963267948966 rad @@ -44031,24 +44031,24 @@ entities: parent: 2 - proto: BedsheetBrigmedic entities: - - uid: 1452 + - uid: 1457 components: - type: Transform pos: 65.5,-4.5 parent: 2 - proto: BedsheetBrown entities: - - uid: 1453 + - uid: 1458 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 1454 + - uid: 1459 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 1455 + - uid: 1460 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -44056,7 +44056,7 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 1456 + - uid: 1461 components: - type: Transform pos: 14.5,1.5 @@ -44065,7 +44065,7 @@ entities: canCollide: False - proto: BedsheetCE entities: - - uid: 1457 + - uid: 1462 components: - type: Transform pos: -56.5,7.5 @@ -44074,20 +44074,20 @@ entities: canCollide: False - proto: BedsheetClown entities: - - uid: 1458 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,52.5 parent: 2 - - uid: 1459 + - uid: 1464 components: - type: Transform pos: -36.5,2.5 parent: 2 - proto: BedsheetCMO entities: - - uid: 1460 + - uid: 1465 components: - type: Transform pos: 24.5,-51.5 @@ -44096,7 +44096,7 @@ entities: canCollide: False - proto: BedsheetHOP entities: - - uid: 1461 + - uid: 1466 components: - type: Transform pos: -15.5,-4.5 @@ -44105,7 +44105,7 @@ entities: canCollide: False - proto: BedsheetHOS entities: - - uid: 1462 + - uid: 1467 components: - type: Transform pos: 35.5,22.5 @@ -44114,106 +44114,106 @@ entities: canCollide: False - proto: BedsheetIan entities: - - uid: 1463 + - uid: 1468 components: - type: Transform pos: -40.5,-59.5 parent: 2 - proto: BedsheetMedical entities: - - uid: 1464 + - uid: 1469 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-4.5 parent: 2 - - uid: 1465 + - uid: 1470 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-5.5 parent: 2 - - uid: 1466 + - uid: 1471 components: - type: Transform pos: 42.5,-72.5 parent: 2 - type: Physics canCollide: False - - uid: 1467 + - uid: 1472 components: - type: Transform pos: 44.5,-60.5 parent: 2 - type: Physics canCollide: False - - uid: 1468 + - uid: 1473 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-37.5 parent: 2 - - uid: 1469 + - uid: 1474 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 1470 + - uid: 1475 components: - type: Transform pos: 70.5,16.5 parent: 2 - - uid: 1471 + - uid: 1476 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-37.5 parent: 2 - - uid: 1472 + - uid: 1477 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 1473 + - uid: 1478 components: - type: Transform pos: 30.5,-52.5 parent: 2 - type: Physics canCollide: False - - uid: 1474 + - uid: 1479 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-41.5 parent: 2 - - uid: 1475 + - uid: 1480 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 1476 + - uid: 1481 components: - type: Transform pos: 38.5,-72.5 parent: 2 - type: Physics canCollide: False - - uid: 38660 + - uid: 38487 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-1.5 - parent: 38584 - - uid: 38661 + parent: 38411 + - uid: 38488 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-2.5 - parent: 38584 + parent: 38411 - proto: BedsheetMime entities: - - uid: 1477 + - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad @@ -44221,94 +44221,94 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 1478 + - uid: 1483 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,7.5 parent: 2 - - uid: 1479 + - uid: 1484 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 - - uid: 1480 + - uid: 1485 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1481 + - uid: 1486 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 1482 + - uid: 1487 components: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1483 + - uid: 1488 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.5,-4.5 parent: 2 - - uid: 1484 + - uid: 1489 components: - type: Transform rot: -1.5707953085339508 rad pos: 84.5,-4.5 parent: 2 - - uid: 1485 + - uid: 1490 components: - type: Transform rot: -1.5707953085339508 rad pos: 80.5,-4.5 parent: 2 - - uid: 1486 + - uid: 1491 components: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 1487 + - uid: 1492 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 38662 + - uid: 38489 components: - type: Transform pos: -21.5,0.5 - parent: 38584 - - uid: 38663 + parent: 38411 + - uid: 38490 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 38664 + parent: 38411 + - uid: 38491 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 38665 + parent: 38411 + - uid: 38492 components: - type: Transform pos: -18.5,0.5 - parent: 38584 - - uid: 38666 + parent: 38411 + - uid: 38493 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 38667 + parent: 38411 + - uid: 38494 components: - type: Transform pos: -15.5,0.5 - parent: 38584 + parent: 38411 - proto: BedsheetQM entities: - - uid: 1488 + - uid: 1493 components: - type: Transform rot: -1.5707963267948966 rad @@ -44316,7 +44316,7 @@ entities: parent: 2 - proto: BedsheetRD entities: - - uid: 1489 + - uid: 1494 components: - type: Transform pos: -16.5,-46.5 @@ -44325,103 +44325,103 @@ entities: canCollide: False - proto: BedsheetRed entities: - - uid: 1490 + - uid: 1495 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 1491 + - uid: 1496 components: - type: Transform rot: 1.5707973450558423 rad pos: -57.5,-48.5 parent: 2 - - uid: 38668 + - uid: 38495 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 - parent: 38584 - - uid: 38669 + parent: 38411 + - uid: 38496 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 - parent: 38584 - - uid: 38670 + parent: 38411 + - uid: 38497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 - parent: 38584 - - uid: 38671 + parent: 38411 + - uid: 38498 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 - parent: 38584 + parent: 38411 - proto: BedsheetSpawner entities: - - uid: 1492 + - uid: 1497 components: - type: Transform pos: 53.5,-24.5 parent: 2 - - uid: 1493 + - uid: 1498 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 1494 + - uid: 1499 components: - type: Transform pos: 45.5,-23.5 parent: 2 - - uid: 1495 + - uid: 1500 components: - type: Transform pos: 49.5,-23.5 parent: 2 - proto: BedsheetSyndie entities: - - uid: 1496 + - uid: 1501 components: - type: Transform rot: -1.5707953085339508 rad pos: -47.5,-37.5 parent: 2 - - uid: 38672 + - uid: 38499 components: - type: Transform pos: -20.5,27.5 - parent: 38584 + parent: 38411 - proto: BedsheetWhite entities: - - uid: 1497 + - uid: 1502 components: - type: Transform pos: 38.5,-67.5 parent: 2 - - uid: 1498 + - uid: 1503 components: - type: Transform pos: 42.5,-67.5 parent: 2 - - uid: 38673 + - uid: 38500 components: - type: Transform pos: 3.5,34.5 - parent: 38584 + parent: 38411 - proto: Bible entities: - - uid: 1499 + - uid: 1504 components: - type: Transform pos: -16.528536,-73.33123 parent: 2 - proto: BigBox entities: - - uid: 1500 + - uid: 1505 components: - type: Transform pos: 53.44732,-55.470516 @@ -44432,416 +44432,416 @@ entities: showEnts: False occludes: True ents: - - 1501 - - uid: 1502 + - 1506 + - uid: 1507 components: - type: Transform pos: -38.449852,-54.46418 parent: 2 - - uid: 1503 + - uid: 1508 components: - type: Transform pos: -31.03472,-59.428844 parent: 2 - - uid: 1504 + - uid: 1509 components: - type: Transform pos: 41.48744,-27.418045 parent: 2 - proto: BiomassReclaimer entities: - - uid: 1505 + - uid: 1510 components: - type: Transform pos: 10.5,-50.5 parent: 2 - proto: BlastDoor entities: - - uid: 1506 + - uid: 1511 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,56.5 parent: 2 - - uid: 1507 + - uid: 1512 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,56.5 parent: 2 - - uid: 1508 + - uid: 1513 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,61.5 parent: 2 - - uid: 1509 + - uid: 1514 components: - type: Transform pos: -38.5,-44.5 parent: 2 - - uid: 1510 + - uid: 1515 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 - - uid: 1511 + - uid: 1516 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-17.5 parent: 2 - - uid: 1512 + - uid: 1517 components: - type: MetaData name: арсенал синего кода - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 1513 + - uid: 1518 components: - type: MetaData name: арсенал красного кода - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 1514 + - uid: 1519 components: - type: MetaData name: дополнительный арсенал - type: Transform pos: 62.5,2.5 parent: 2 - - uid: 1515 + - uid: 1520 components: - type: Transform pos: 61.5,12.5 parent: 2 - - uid: 1516 + - uid: 1521 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 2 - - uid: 1517 + - uid: 1522 components: - type: Transform pos: -38.5,-39.5 parent: 2 - - uid: 1518 + - uid: 1523 components: - type: Transform pos: -38.5,-45.5 parent: 2 - - uid: 1519 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-68.5 parent: 2 - - uid: 1520 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 - - uid: 1521 + - uid: 1526 components: - type: Transform pos: 75.5,30.5 parent: 2 - - uid: 1522 + - uid: 1527 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 1523 + - uid: 1528 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 1524 + - uid: 1529 components: - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 1525 + - uid: 1530 components: - type: Transform pos: 76.5,30.5 parent: 2 - - uid: 1526 + - uid: 1531 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-5.5 parent: 2 - - uid: 1527 + - uid: 1532 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,52.5 parent: 2 - - uid: 1528 + - uid: 1533 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,52.5 parent: 2 - - uid: 1529 + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 - - uid: 1530 + - uid: 1535 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,48.5 parent: 2 - - uid: 1531 + - uid: 1536 components: - type: Transform pos: -38.5,-40.5 parent: 2 - - uid: 1532 + - uid: 1537 components: - type: Transform pos: -38.5,-38.5 parent: 2 - - uid: 1533 + - uid: 1538 components: - type: Transform pos: -38.5,-43.5 parent: 2 - - uid: 1534 + - uid: 1539 components: - type: Transform pos: 74.5,30.5 parent: 2 - - uid: 1535 + - uid: 1540 components: - type: Transform pos: -70.5,-8.5 parent: 2 - - uid: 1536 + - uid: 1541 components: - type: Transform pos: -68.5,-8.5 parent: 2 - - uid: 1537 + - uid: 1542 components: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 1538 + - uid: 1543 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-17.5 parent: 2 - - uid: 1539 + - uid: 1544 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-43.5 parent: 2 - - uid: 1540 + - uid: 1545 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-46.5 parent: 2 - - uid: 1541 + - uid: 1546 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,81.5 parent: 2 - - uid: 1542 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,80.5 parent: 2 - - uid: 1543 + - uid: 1548 components: - type: Transform pos: -72.5,22.5 parent: 2 - - uid: 1544 + - uid: 1549 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 1545 + - uid: 1550 components: - type: Transform pos: -62.5,-32.5 parent: 2 - proto: BlastDoorOpen entities: - - uid: 1546 + - uid: 1551 components: - type: Transform pos: -52.5,18.5 parent: 2 - - uid: 1547 + - uid: 1552 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 1548 + - uid: 1553 components: - type: Transform pos: -54.5,18.5 parent: 2 - - uid: 1549 + - uid: 1554 components: - type: Transform pos: -51.5,18.5 parent: 2 - - uid: 1550 + - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,0.5 parent: 2 - - uid: 1551 + - uid: 1556 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-0.5 parent: 2 - - uid: 1552 + - uid: 1557 components: - type: Transform pos: -53.5,8.5 parent: 2 - - uid: 1553 + - uid: 1558 components: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 1554 + - uid: 1559 components: - type: Transform pos: -37.5,-30.5 parent: 2 - - uid: 1555 + - uid: 1560 components: - type: Transform pos: 13.5,16.5 parent: 2 - - uid: 1556 + - uid: 1561 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-27.5 parent: 2 - - uid: 1557 + - uid: 1562 components: - type: Transform pos: -41.5,-30.5 parent: 2 - - uid: 1558 + - uid: 1563 components: - type: Transform pos: -50.5,8.5 parent: 2 - - uid: 1559 + - uid: 1564 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 1560 + - uid: 1565 components: - type: Transform pos: -51.5,8.5 parent: 2 - - uid: 1561 + - uid: 1566 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 1562 + - uid: 1567 components: - type: Transform pos: 38.5,5.5 parent: 2 - - uid: 1563 + - uid: 1568 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 1564 + - uid: 1569 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 1565 + - uid: 1570 components: - type: Transform pos: -33.5,-24.5 parent: 2 - - uid: 1566 + - uid: 1571 components: - type: Transform pos: 13.5,14.5 parent: 2 - - uid: 1567 + - uid: 1572 components: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 1568 + - uid: 1573 components: - type: Transform pos: -14.5,14.5 parent: 2 - - uid: 1569 + - uid: 1574 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 1570 + - uid: 1575 components: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 1571 + - uid: 1576 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 1572 + - uid: 1577 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 1573 + - uid: 1578 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 1574 + - uid: 1579 components: - type: Transform pos: -37.5,-24.5 parent: 2 - - uid: 1575 + - uid: 1580 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 1576 + - uid: 1581 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 1577 + - uid: 1582 components: - type: Transform rot: -1.5707963267948966 rad @@ -44849,7 +44849,7 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 1578 + - uid: 1583 components: - type: Transform rot: 3.141592653589793 rad @@ -44857,7 +44857,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1579 + - uid: 1584 components: - type: Transform rot: 3.141592653589793 rad @@ -44865,7 +44865,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1580 + - uid: 1585 components: - type: Transform rot: -1.5707963267948966 rad @@ -44873,7 +44873,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1581 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad @@ -44881,7 +44881,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1582 + - uid: 1587 components: - type: Transform pos: -32.5,-59.5 @@ -44890,14 +44890,14 @@ entities: enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 1583 + - uid: 1588 components: - type: Transform pos: -36.5,10.5 parent: 2 - proto: BodyBagFolded entities: - - uid: 1584 + - uid: 1589 components: - type: Transform pos: 5.584937,-48.259304 @@ -44920,7 +44920,7 @@ entities: - 0 - 0 - 0 - - uid: 1585 + - uid: 1590 components: - type: Transform pos: 5.376316,-48.057827 @@ -44943,7 +44943,7 @@ entities: - 0 - 0 - 0 - - uid: 1586 + - uid: 1591 components: - type: Transform pos: 5.376316,-48.44306 @@ -45038,7 +45038,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1588 + - uid: 1592 components: - type: MetaData name: глупая книга @@ -45094,7 +45094,7 @@ entities: [color=#55575a]███████[color=#83776e]█[color=#c9c2ba]█[color=#d3d0cd]██[color=#c9c2ba]█[color=#c6b4a1]█[color=#baaca0]███[color=#ad9b87]█[color=#a19082]██[color=#ad9b87]█[color=#beab98]███[color=#b0a395]██[color=#ad9b87]█[color=#a19082]█[color=#a88f76]██[color=#9b8167]█[color=#4b433c]█[color=#2c2824]██[color=#252320]█████ - proto: BookFeather entities: - - uid: 1589 + - uid: 1593 components: - type: MetaData desc: Книга "Борьба с терроризмом на космической станции" выглядит очень серьезно и профессионально. На обложке изображена космическая станция с несколькими космонавтами, которые явно готовятся к какому-то экстремальному событию. Название книги написано крупными черными буквами на голубом фоне, что придает ей строгость и важность. Авторы, Вадисон Стрэнглер и Михаил Хальтбар, указаны ниже названия в меньшем шрифте. Внутри книги можно найти много полезной информации и практических советов по борьбе с террористической угрозой на космической станции. @@ -45122,7 +45122,7 @@ entities: Борьба с террористами на космической станции является сложной и ответственной задачей, которая требует совместных усилий персонала станции, правоохранительных органов и других заинтересованных сторон. Однако, при правильной подготовке и принятии соответствующих мер безопасности, возможно минимизировать риски террористической угрозы на космической станции. - proto: BookRandom entities: - - uid: 1590 + - uid: 1594 components: - type: MetaData desc: В этой таинсвтенной книге в твердом переплете, Вы сможете открыть для себя целый "внутренний" мир. @@ -45130,12 +45130,12 @@ entities: - type: Transform pos: 6.298485,-48.571903 parent: 2 - - uid: 1591 + - uid: 1595 components: - type: Transform pos: -23.778364,-12.554576 parent: 2 - - uid: 1592 + - uid: 1596 components: - type: MetaData desc: В этой книге много интересных картинок, только вряд ли Вы сможе понять их. @@ -45143,73 +45143,73 @@ entities: - type: Transform pos: 10.142386,-3.4094415 parent: 2 - - uid: 1593 + - uid: 1597 components: - type: Transform pos: -33.672646,-8.453057 parent: 2 - - uid: 1594 + - uid: 1598 components: - type: Transform pos: -23.476131,-12.262708 parent: 2 - - uid: 1595 + - uid: 1599 components: - type: Transform pos: -23.232197,-12.535765 parent: 2 - - uid: 1596 + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.507277,-8.33971 parent: 2 - - uid: 1597 + - uid: 1601 components: - type: Transform pos: -21.537008,-4.499959 parent: 2 - - uid: 1598 + - uid: 1602 components: - type: Transform pos: -21.771383,-4.484334 parent: 2 - - uid: 1599 + - uid: 1603 components: - type: Transform pos: -22.67433,0.54259586 parent: 2 - - uid: 1600 + - uid: 1604 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.501118,-8.318875 parent: 2 - - uid: 1601 + - uid: 1605 components: - type: Transform pos: -27.520205,-11.001986 parent: 2 - proto: BookRandomStory entities: - - uid: 1602 + - uid: 1606 components: - type: Transform pos: 82.764046,5.5351195 parent: 2 - - uid: 1603 + - uid: 1607 components: - type: Transform rot: -1.5707953085339508 rad pos: 81.826546,5.6757445 parent: 2 - - uid: 1604 + - uid: 1608 components: - type: Transform rot: -1.5707953085339508 rad pos: -40.3486,44.27363 parent: 2 - - uid: 1605 + - uid: 1609 components: - type: Transform rot: 3.141593671850739 rad @@ -45217,179 +45217,179 @@ entities: parent: 2 - proto: BookSecurity entities: - - uid: 1606 + - uid: 1610 components: - type: Transform pos: -22.528498,0.6467625 parent: 2 - proto: Bookshelf entities: - - uid: 1607 + - uid: 1611 components: - type: Transform pos: -33.5,-6.5 parent: 2 - - uid: 1608 + - uid: 1612 components: - type: Transform pos: -27.5,2.5 parent: 2 - - uid: 1609 + - uid: 1613 components: - type: Transform pos: -26.5,2.5 parent: 2 - - uid: 1610 + - uid: 1614 components: - type: Transform pos: -14.5,7.5 parent: 2 - - uid: 1611 + - uid: 1615 components: - type: Transform pos: -14.5,11.5 parent: 2 - - uid: 1612 + - uid: 1616 components: - type: Transform pos: -13.5,-64.5 parent: 2 - - uid: 1613 + - uid: 1617 components: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 1614 + - uid: 1618 components: - type: Transform pos: -19.5,-64.5 parent: 2 - proto: BookshelfFilled entities: - - uid: 1615 + - uid: 1619 components: - type: Transform pos: -30.5,-4.5 parent: 2 - - uid: 1616 + - uid: 1620 components: - type: Transform pos: -34.5,-4.5 parent: 2 - - uid: 1617 + - uid: 1621 components: - type: Transform pos: -34.5,-6.5 parent: 2 - - uid: 1618 + - uid: 1622 components: - type: Transform pos: -33.5,-4.5 parent: 2 - - uid: 1619 + - uid: 1623 components: - type: Transform pos: -26.5,-4.5 parent: 2 - - uid: 1620 + - uid: 1624 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 1621 + - uid: 1625 components: - type: Transform pos: -52.5,-48.5 parent: 2 - - uid: 1622 + - uid: 1626 components: - type: Transform pos: -48.5,-42.5 parent: 2 - - uid: 1623 + - uid: 1627 components: - type: Transform pos: 72.5,-39.5 parent: 2 - - uid: 1624 + - uid: 1628 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 1625 + - uid: 1629 components: - type: Transform pos: -29.5,2.5 parent: 2 - - uid: 1626 + - uid: 1630 components: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 1627 + - uid: 1631 components: - type: Transform pos: -21.5,-12.5 parent: 2 - - uid: 1628 + - uid: 1632 components: - type: Transform pos: -26.5,-6.5 parent: 2 - - uid: 1629 + - uid: 1633 components: - type: Transform pos: -30.5,-6.5 parent: 2 - - uid: 1630 + - uid: 1634 components: - type: Transform pos: -29.5,-67.5 parent: 2 - - uid: 1631 + - uid: 1635 components: - type: Transform pos: -29.5,-66.5 parent: 2 - - uid: 1632 + - uid: 1636 components: - type: Transform pos: 82.5,7.5 parent: 2 - - uid: 1633 + - uid: 1637 components: - type: Transform pos: 83.5,7.5 parent: 2 - - uid: 1634 + - uid: 1638 components: - type: Transform pos: 81.5,7.5 parent: 2 - - uid: 1635 + - uid: 1639 components: - type: Transform pos: -52.5,-35.5 parent: 2 - - uid: 38674 + - uid: 38501 components: - type: Transform pos: -10.5,-7.5 - parent: 38584 - - uid: 38675 + parent: 38411 + - uid: 38502 components: - type: Transform pos: 3.5,-5.5 - parent: 38584 + parent: 38411 - proto: BoozeDispenser entities: - - uid: 1636 + - uid: 1640 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-47.5 parent: 2 - - uid: 1637 + - uid: 1641 components: - type: Transform rot: -1.5707963267948966 rad @@ -45415,24 +45415,24 @@ entities: ents: [] - proto: BorgCharger entities: - - uid: 1638 + - uid: 1642 components: - type: Transform pos: -78.5,11.5 parent: 2 - - uid: 1639 + - uid: 1643 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-6.5 parent: 2 - - uid: 1640 + - uid: 1644 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-6.5 parent: 2 - - uid: 1641 + - uid: 1645 components: - type: Transform rot: 3.141592653589793 rad @@ -45440,37 +45440,37 @@ entities: parent: 2 - proto: BorgModuleClowning entities: - - uid: 1642 + - uid: 1646 components: - type: Transform pos: 10.353839,70.644646 parent: 2 - proto: BoxBeanbag entities: - - uid: 1643 + - uid: 1647 components: - type: Transform pos: -3.5094411,38.647697 parent: 2 - - uid: 1644 + - uid: 1648 components: - type: Transform pos: -3.4469776,38.932606 parent: 2 - - uid: 1646 + - uid: 1650 components: - type: Transform - parent: 1645 + parent: 1649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1649 + - uid: 1653 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.413765,9.540251 parent: 2 - - uid: 1650 + - uid: 1654 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -45478,137 +45478,137 @@ entities: parent: 2 - proto: BoxBodyBag entities: - - uid: 1651 + - uid: 1655 components: - type: Transform pos: 14.516084,-57.596573 parent: 2 - - uid: 1652 + - uid: 1656 components: - type: Transform pos: 14.64542,-37.37316 parent: 2 - - uid: 1653 + - uid: 1657 components: - type: Transform pos: 14.02042,-37.388786 parent: 2 - - uid: 1654 + - uid: 1658 components: - type: Transform pos: 72.50579,23.559893 parent: 2 - - uid: 1655 + - uid: 1659 components: - type: Transform pos: -23.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1656 + - uid: 1660 components: - type: Transform pos: -23.379358,-74.404076 parent: 2 - type: Physics canCollide: False - - uid: 1657 + - uid: 1661 components: - type: Transform pos: 26.500849,9.893845 parent: 2 - - uid: 1658 + - uid: 1662 components: - type: Transform pos: 35.57008,-18.332962 parent: 2 - type: Physics canCollide: False - - uid: 1659 + - uid: 1663 components: - type: Transform pos: -24.379358,-64.44205 parent: 2 - type: Physics canCollide: False - - uid: 1660 + - uid: 1664 components: - type: Transform pos: 4.458846,-52.43695 parent: 2 - - uid: 1661 + - uid: 1665 components: - type: Transform pos: 8.5624,-42.649765 parent: 2 - - uid: 1662 + - uid: 1666 components: - type: Transform pos: 13.411045,-37.388786 parent: 2 - proto: BoxBottle entities: - - uid: 881 + - uid: 873 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1663 + - uid: 1667 components: - type: Transform pos: -20.540075,-60.426083 parent: 2 - proto: BoxCandleSmall entities: - - uid: 1664 + - uid: 1668 components: - type: Transform pos: -22.343113,-4.447041 parent: 2 - proto: BoxCardboard entities: - - uid: 1665 + - uid: 1669 components: - type: Transform pos: -18.498352,-32.30649 parent: 2 - - uid: 1666 + - uid: 1670 components: - type: Transform pos: -8.344327,-54.423183 parent: 2 - - uid: 1667 + - uid: 1671 components: - type: Transform pos: -8.674554,-54.618874 parent: 2 - proto: BoxEvidenceMarkers entities: - - uid: 1669 + - uid: 1673 components: - type: Transform - parent: 1668 + parent: 1672 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxFlashbang entities: - - uid: 1670 + - uid: 1674 components: - type: Transform pos: 58.46948,15.545851 parent: 2 - proto: BoxFolderBase entities: - - uid: 1671 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.467598,-4.2868743 parent: 2 - - uid: 1672 + - uid: 1676 components: - type: Transform rot: 1.5707963267948966 rad @@ -45616,150 +45616,150 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 1673 + - uid: 1677 components: - type: Transform pos: 34.33272,2.6378307 parent: 2 - - uid: 1674 + - uid: 1678 components: - type: Transform pos: -21.65159,-7.2404675 parent: 2 - - uid: 1675 + - uid: 1679 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.469776,27.71739 parent: 2 - - uid: 1676 + - uid: 1680 components: - type: Transform pos: 72.83203,-43.635002 parent: 2 - - uid: 38676 + - uid: 38503 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.489042,33.8674 - parent: 38584 + parent: 38411 - proto: BoxFolderBlue entities: - - uid: 1677 + - uid: 1681 components: - type: Transform pos: -11.722464,-1.4301846 parent: 2 - - uid: 1678 + - uid: 1682 components: - type: Transform pos: -24.381498,22.74946 parent: 2 - type: Physics canCollide: False - - uid: 1679 + - uid: 1683 components: - type: Transform pos: 23.637524,-46.348213 parent: 2 - type: Physics canCollide: False - - uid: 1680 + - uid: 1684 components: - type: Transform pos: -62.344925,9.596943 parent: 2 - type: Physics canCollide: False - - uid: 1681 + - uid: 1685 components: - type: Transform pos: 24.450024,-42.441963 parent: 2 - type: Physics canCollide: False - - uid: 1682 + - uid: 1686 components: - type: Transform pos: -13.67326,5.600397 parent: 2 - - uid: 1683 + - uid: 1687 components: - type: Transform pos: 8.528144,7.5618477 parent: 2 - type: Physics canCollide: False - - uid: 1684 + - uid: 1688 components: - type: Transform pos: 53.362377,16.215246 parent: 2 - - uid: 1685 + - uid: 1689 components: - type: Transform pos: -4.5355453,-60.37103 parent: 2 - - uid: 1686 + - uid: 1690 components: - type: Transform pos: -19.490316,-49.45443 parent: 2 - - uid: 1687 + - uid: 1691 components: - type: Transform pos: 1.5749657,13.635027 parent: 2 - type: Physics canCollide: False - - uid: 1688 + - uid: 1692 components: - type: Transform pos: 51.525723,-22.433455 parent: 2 - type: Physics canCollide: False - - uid: 1689 + - uid: 1693 components: - type: Transform pos: 53.831127,16.168371 parent: 2 - - uid: 1690 + - uid: 1694 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 - - uid: 1691 + - uid: 1695 components: - type: Transform pos: 53.643627,16.105871 parent: 2 - - uid: 1692 + - uid: 1696 components: - type: Transform pos: -12.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1693 + - uid: 1697 components: - type: Transform pos: 8.361257,0.68303835 parent: 2 - - uid: 1694 + - uid: 1698 components: - type: Transform pos: 53.471752,16.152746 parent: 2 - - uid: 1695 + - uid: 1699 components: - type: Transform pos: -11.316215,-1.3208096 parent: 2 - proto: BoxFolderClipboard entities: - - uid: 1696 + - uid: 1700 components: - type: Transform rot: -1.5707963267948966 rad @@ -45767,65 +45767,65 @@ entities: parent: 2 - proto: BoxFolderGrey entities: - - uid: 1697 + - uid: 1701 components: - type: Transform pos: -27.454956,20.554731 parent: 2 - type: Physics canCollide: False - - uid: 1698 + - uid: 1702 components: - type: Transform pos: -23.4916,-4.411229 parent: 2 - type: Physics canCollide: False - - uid: 1699 + - uid: 1703 components: - type: Transform pos: -34.475735,-11.38378 parent: 2 - type: Physics canCollide: False - - uid: 1700 + - uid: 1704 components: - type: Transform pos: -20.373795,-42.708656 parent: 2 - - uid: 1701 + - uid: 1705 components: - type: Transform pos: -20.56322,-42.446686 parent: 2 - - uid: 1702 + - uid: 1706 components: - type: Transform pos: 37.533417,-10.380364 parent: 2 - type: Physics canCollide: False - - uid: 1703 + - uid: 1707 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.44036,62.57854 parent: 2 - - uid: 1704 + - uid: 1708 components: - type: Transform pos: -13.474747,-79.39744 parent: 2 - type: Physics canCollide: False - - uid: 1705 + - uid: 1709 components: - type: Transform pos: 36.564667,-13.317864 parent: 2 - type: Physics canCollide: False - - uid: 1706 + - uid: 1710 components: - type: Transform rot: 1.5707963267948966 rad @@ -45833,276 +45833,276 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 1707 + - uid: 1711 components: - type: Transform pos: 53.315502,16.699621 parent: 2 - - uid: 1708 + - uid: 1712 components: - type: Transform pos: 53.456127,16.590246 parent: 2 - - uid: 1709 + - uid: 1713 components: - type: Transform pos: 72.5231,22.197773 parent: 2 - - uid: 1710 + - uid: 1714 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.463715,60.4104 parent: 2 - - uid: 1711 + - uid: 1715 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.41077,27.525648 parent: 2 - - uid: 1712 + - uid: 1716 components: - type: Transform pos: 34.494984,2.5345864 parent: 2 - - uid: 1713 + - uid: 1717 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 1714 + - uid: 1718 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.56962,9.853551 parent: 2 - - uid: 1715 + - uid: 1719 components: - type: Transform pos: 41.496258,20.571657 parent: 2 - type: Physics canCollide: False - - uid: 1716 + - uid: 1720 components: - type: Transform pos: 38.53962,22.54246 parent: 2 - type: Physics canCollide: False - - uid: 1717 + - uid: 1721 components: - type: Transform pos: 51.53175,-14.501758 parent: 2 - type: Physics canCollide: False - - uid: 1718 + - uid: 1722 components: - type: Transform pos: -11.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1719 + - uid: 1723 components: - type: Transform pos: 53.393627,16.637121 parent: 2 - - uid: 1720 + - uid: 1724 components: - type: Transform pos: 72.72266,-43.3225 parent: 2 - - uid: 1721 + - uid: 1725 components: - type: Transform pos: 52.447506,27.564688 parent: 2 - - uid: 1722 + - uid: 1726 components: - type: Transform pos: 52.68188,27.642813 parent: 2 - - uid: 1723 + - uid: 1727 components: - type: Transform rot: 3.141592653589793 rad pos: 57.56259,29.643097 parent: 2 - - uid: 1724 + - uid: 1728 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.61116,-4.209439 parent: 2 - - uid: 1725 + - uid: 1729 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.464394,-4.3928976 parent: 2 - - uid: 1726 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.33597,-3.9342504 parent: 2 - - uid: 1727 + - uid: 1731 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.592815,-3.5673323 parent: 2 - - uid: 1728 + - uid: 1732 components: - type: Transform rot: 3.141592653589793 rad pos: 23.514263,21.661837 parent: 2 - - uid: 1729 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad pos: 23.311138,21.599335 parent: 2 - - uid: 1730 + - uid: 1734 components: - type: Transform rot: 3.141592653589793 rad pos: 23.108013,21.661835 parent: 2 - - uid: 38677 + - uid: 38504 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.385786,33.985413 - parent: 38584 + parent: 38411 - proto: BoxFolderWhite entities: - - uid: 1732 + - uid: 1736 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1733 + - uid: 1737 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1734 + - uid: 1738 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1735 + - uid: 1739 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1746 + - uid: 1750 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.404982,-37.37876 parent: 2 - - uid: 1747 + - uid: 1751 components: - type: Transform pos: 23.325024,-46.504463 parent: 2 - type: Physics canCollide: False - - uid: 1748 + - uid: 1752 components: - type: Transform rot: 6.283185307179586 rad pos: -25.533741,-30.547684 parent: 2 - - uid: 1749 + - uid: 1753 components: - type: Transform pos: 34.627636,-30.622177 parent: 2 - type: Physics canCollide: False - - uid: 1750 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad pos: 3.420166,-16.41551 parent: 2 - - uid: 1751 + - uid: 1755 components: - type: Transform pos: 3.4281096,-27.398321 parent: 2 - type: Physics canCollide: False - - uid: 1752 + - uid: 1756 components: - type: Transform pos: 53.815502,16.605871 parent: 2 - - uid: 1753 + - uid: 1757 components: - type: Transform pos: 22.450024,-42.441963 parent: 2 - type: Physics canCollide: False - - uid: 1754 + - uid: 1758 components: - type: Transform pos: 21.190166,-24.38206 parent: 2 - - uid: 1755 + - uid: 1759 components: - type: Transform pos: 42.5,-69.5 parent: 2 - type: Physics canCollide: False - - uid: 1756 + - uid: 1760 components: - type: Transform pos: 41.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1757 + - uid: 1761 components: - type: Transform pos: 21.601835,-24.389095 parent: 2 - - uid: 1758 + - uid: 1762 components: - type: Transform pos: 39.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1759 + - uid: 1763 components: - type: Transform pos: 12.018113,-52.407093 parent: 2 - - uid: 1760 + - uid: 1764 components: - type: Transform pos: 53.784252,16.699621 parent: 2 - - uid: 1761 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.590744,-60.30695 parent: 2 - - uid: 1762 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad @@ -46110,53 +46110,53 @@ entities: parent: 2 - proto: BoxFolderYellow entities: - - uid: 1763 + - uid: 1767 components: - type: Transform pos: -24.600248,22.53071 parent: 2 - type: Physics canCollide: False - - uid: 1764 + - uid: 1768 components: - type: Transform pos: -62.594925,9.409443 parent: 2 - type: Physics canCollide: False - - uid: 1765 + - uid: 1769 components: - type: Transform pos: 27.524498,36.5593 parent: 2 - type: Physics canCollide: False - - uid: 1766 + - uid: 1770 components: - type: Transform pos: -10.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1767 + - uid: 1771 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.366608,62.740784 parent: 2 - - uid: 1768 + - uid: 1772 components: - type: Transform pos: 72.33203,-43.338123 parent: 2 - - uid: 1769 + - uid: 1773 components: - type: Transform pos: 9.74218,32.600994 parent: 2 - proto: BoxForensicPad entities: - - uid: 1770 + - uid: 1774 components: - type: Transform rot: 3.141592653589793 rad @@ -46164,34 +46164,34 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 1771 + - uid: 1775 components: - type: Transform pos: 54.270676,3.577455 parent: 2 - - uid: 38678 + - uid: 38505 components: - type: Transform pos: 11.35289,-6.4263306 - parent: 38584 - - uid: 38679 + parent: 38411 + - uid: 38506 components: - type: Transform pos: 11.63414,-6.5200806 - parent: 38584 + parent: 38411 - proto: BoxHug entities: - - uid: 1772 + - uid: 1776 components: - type: Transform pos: -12.620868,53.679634 parent: 2 - - uid: 1773 + - uid: 1777 components: - type: Transform pos: -12.364026,54.00986 parent: 2 - - uid: 1774 + - uid: 1778 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46199,252 +46199,252 @@ entities: parent: 2 - proto: BoxInflatable entities: - - uid: 1775 + - uid: 1779 components: - type: Transform pos: -52.800545,35.60781 parent: 2 - - uid: 1776 + - uid: 1780 components: - type: Transform pos: -52.373463,35.545307 parent: 2 - proto: BoxingBell entities: - - uid: 1777 + - uid: 1781 components: - type: Transform pos: 59.5,-16.5 parent: 2 - proto: BoxLatexGloves entities: - - uid: 882 + - uid: 874 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxLethalshot entities: - - uid: 1778 + - uid: 1782 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1779 + - uid: 1783 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1780 + - uid: 1784 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1781 + - uid: 1785 components: - type: Transform pos: 67.528076,8.772167 parent: 2 - - uid: 1782 + - uid: 1786 components: - type: Transform pos: 67.51245,8.787792 parent: 2 - - uid: 38680 + - uid: 38507 components: - type: Transform pos: 11.57361,-3.4204102 - parent: 38584 + parent: 38411 - proto: BoxLightbulb entities: - - uid: 1783 + - uid: 1787 components: - type: Transform pos: -0.7455249,50.618034 parent: 2 - proto: BoxLightMixed entities: - - uid: 1784 + - uid: 1788 components: - type: Transform pos: -40.493076,-17.385798 parent: 2 - type: Physics canCollide: False - - uid: 1785 + - uid: 1789 components: - type: Transform pos: -77.375374,-30.29104 parent: 2 - type: Physics canCollide: False - - uid: 1786 + - uid: 1790 components: - type: Transform pos: 3.3950934,31.614307 parent: 2 - type: Physics canCollide: False - - uid: 1787 + - uid: 1791 components: - type: Transform pos: -60.58293,20.484503 parent: 2 - type: Physics canCollide: False - - uid: 1788 + - uid: 1792 components: - type: Transform pos: -77.562874,-30.41604 parent: 2 - type: Physics canCollide: False - - uid: 1789 + - uid: 1793 components: - type: Transform pos: 12.511247,75.64397 parent: 2 - type: Physics canCollide: False - - uid: 1790 + - uid: 1794 components: - type: Transform pos: -0.7948296,50.41453 parent: 2 - - uid: 1791 + - uid: 1795 components: - type: Transform pos: 23.524172,8.5619135 parent: 2 - type: Physics canCollide: False - - uid: 1792 + - uid: 1796 components: - type: Transform pos: -45.503593,-17.382376 parent: 2 - type: Physics canCollide: False - - uid: 1793 + - uid: 1797 components: - type: Transform pos: -24.500605,11.746101 parent: 2 - type: Physics canCollide: False - - uid: 1794 + - uid: 1798 components: - type: Transform pos: -60.33293,20.609503 parent: 2 - type: Physics canCollide: False - - uid: 1795 + - uid: 1799 components: - type: Transform pos: 16.412798,54.622955 parent: 2 - type: Physics canCollide: False - - uid: 1796 + - uid: 1800 components: - type: Transform pos: -54.576714,9.590466 parent: 2 - - uid: 1797 + - uid: 1801 components: - type: Transform pos: -21.497026,15.557969 parent: 2 - - uid: 1798 + - uid: 1802 components: - type: Transform pos: 77.48052,-43.48631 parent: 2 - - uid: 1799 + - uid: 1803 components: - type: Transform pos: -54.89915,12.543412 parent: 2 - - uid: 1800 + - uid: 1804 components: - type: Transform pos: -54.6179,12.668413 parent: 2 - proto: BoxLighttube entities: - - uid: 1801 + - uid: 1805 components: - type: Transform pos: -48.42282,28.724625 parent: 2 - - uid: 1802 + - uid: 1806 components: - type: Transform pos: -0.75805306,50.378105 parent: 2 - proto: BoxMagazinePistolPractice entities: - - uid: 1803 + - uid: 1807 components: - type: Transform pos: 56.382652,19.638697 parent: 2 - proto: BoxMagazinePistolSubMachineGun entities: - - uid: 1804 + - uid: 1808 components: - type: Transform pos: 65.45541,7.651907 parent: 2 - - uid: 1805 + - uid: 1809 components: - type: Transform pos: 67.50228,9.573781 parent: 2 - proto: BoxMagazineRifle entities: - - uid: 1806 + - uid: 1810 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 65.546974,8.380223 parent: 2 - - uid: 1807 + - uid: 1811 components: - type: Transform pos: 65.5,9.5 parent: 2 - - uid: 1808 + - uid: 1812 components: - type: Transform pos: 65.5,9.5 parent: 2 - proto: BoxMesonScanners entities: - - uid: 1809 + - uid: 1813 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 1810 + - uid: 1814 components: - type: Transform pos: -59.684364,54.73873 parent: 2 - proto: BoxMousetrap entities: - - uid: 1811 + - uid: 1815 components: - type: Transform pos: -0.78879595,50.836056 parent: 2 - - uid: 1812 + - uid: 1816 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46452,12 +46452,12 @@ entities: parent: 2 - proto: BoxMouthSwab entities: - - uid: 1813 + - uid: 1817 components: - type: Transform pos: -28.29159,45.5603 parent: 2 - - uid: 1814 + - uid: 1818 components: - type: Transform rot: 1.5707963267948966 rad @@ -46465,41 +46465,41 @@ entities: parent: 2 - proto: BoxMRE entities: - - uid: 1815 + - uid: 1819 components: - type: Transform pos: 44.472935,13.617706 parent: 2 - - uid: 1816 + - uid: 1820 components: - type: Transform pos: 44.48856,9.602081 parent: 2 - - uid: 1817 + - uid: 1821 components: - type: Transform pos: 41.503044,1.6465976 parent: 2 - - uid: 1818 + - uid: 1822 components: - type: Transform pos: 44.496708,1.6549377 parent: 2 - - uid: 1819 + - uid: 1823 components: - type: Transform pos: 41.555332,11.59931 parent: 2 - proto: BoxPDA entities: - - uid: 1820 + - uid: 1824 components: - type: Transform pos: -8.625056,5.687517 parent: 2 - proto: BoxPerformer entities: - - uid: 1821 + - uid: 1825 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46507,27 +46507,27 @@ entities: parent: 2 - proto: BoxSechud entities: - - uid: 1822 + - uid: 1826 components: - type: Transform pos: 48.51906,18.530525 parent: 2 - proto: BoxShotgunSlug entities: - - uid: 1823 + - uid: 1827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472416,8.580834 parent: 2 - - uid: 1824 + - uid: 1828 components: - type: Transform pos: 67.51245,8.412792 parent: 2 - proto: BoxSterileMask entities: - - uid: 1825 + - uid: 1829 components: - type: Transform pos: 36.289875,-71.40648 @@ -46536,63 +46536,68 @@ entities: canCollide: False - proto: BoxSyringe entities: - - uid: 883 + - uid: 875 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1826 + - uid: 1830 components: - type: Transform - pos: 6.549246,-38.18099 + pos: 3.3280249,-37.36728 parent: 2 - - uid: 1827 + - uid: 1831 components: - type: Transform pos: 69.94294,12.308502 parent: 2 - - uid: 1828 + - uid: 1832 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 1829 + - uid: 1833 components: - type: Transform pos: 26.675022,-69.30446 parent: 2 - type: Physics canCollide: False - - uid: 1830 + - uid: 1834 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.290853,-43.435093 parent: 2 + - uid: 17449 + components: + - type: Transform + pos: 3.6249,-37.570404 + parent: 2 - proto: BoxZiptie entities: - - uid: 38681 + - uid: 38508 components: - type: Transform pos: 11.542718,-1.2171936 - parent: 38584 + parent: 38411 - proto: BrbSign entities: - - uid: 1831 + - uid: 1835 components: - type: Transform pos: -13.126385,5.600397 parent: 2 - - uid: 1832 + - uid: 1836 components: - type: Transform pos: -15.521692,-3.7452946 parent: 2 - proto: BriefcaseBrown entities: - - uid: 1731 + - uid: 1735 components: - type: Transform pos: 15.414117,-48.366436 @@ -46603,144 +46608,144 @@ entities: showEnts: False occludes: True ents: - - 1734 - - 1735 - - 1733 - - 1732 - - 1741 + - 1738 + - 1739 - 1737 - - 1740 - - 1744 - - 1742 - - 1743 - 1736 - 1745 - - 1739 - - 1738 - - uid: 1833 + - 1741 + - 1744 + - 1748 + - 1746 + - 1747 + - 1740 + - 1749 + - 1743 + - 1742 + - uid: 1837 components: - type: Transform pos: 33.50666,2.6525807 parent: 2 - - uid: 1834 + - uid: 1838 components: - type: Transform pos: 38.408417,-12.442864 parent: 2 - type: Physics canCollide: False - - uid: 1835 + - uid: 1839 components: - type: Transform pos: 53.511616,-54.341568 parent: 2 - type: Physics canCollide: False - - uid: 1837 + - uid: 1841 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1840 + - uid: 1844 components: - type: Transform pos: 40.473694,-55.352642 parent: 2 - type: Physics canCollide: False - - uid: 1841 + - uid: 1845 components: - type: Transform pos: 63.55921,-19.215805 parent: 2 - - uid: 1842 + - uid: 1846 components: - type: Transform pos: 63.481087,-19.60643 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 1843 + - uid: 1847 components: - type: Transform pos: -15.5,7.5 parent: 2 - type: Physics canCollide: False - - uid: 1844 + - uid: 1848 components: - type: Transform pos: 42.308758,23.63735 parent: 2 - type: Physics canCollide: False - - uid: 1845 + - uid: 1849 components: - type: Transform rot: 3.141592653589793 rad pos: 26.493849,0.5424672 parent: 2 - - uid: 1846 + - uid: 1850 components: - type: Transform pos: 30.454538,-2.394278 parent: 2 - - uid: 1847 + - uid: 1851 components: - type: Transform pos: -3.4562843,13.666277 parent: 2 - type: Physics canCollide: False - - uid: 1848 + - uid: 1852 components: - type: Transform pos: -22.49046,-10.098504 parent: 2 - proto: BrigmedicPDA entities: - - uid: 1849 + - uid: 1853 components: - type: Transform pos: -8.5,5.5 parent: 2 - proto: BrigTimer entities: - - uid: 1850 + - uid: 1854 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 1851 + - uid: 1855 components: - type: Transform pos: 57.5,-1.5 parent: 2 - - uid: 1852 + - uid: 1856 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 1853 + - uid: 1857 components: - type: Transform pos: 45.5,11.5 parent: 2 - - uid: 1854 + - uid: 1858 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 2 - - uid: 1855 + - uid: 1859 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 1856 + - uid: 1860 components: - type: Transform rot: -1.5707963267948966 rad @@ -46748,19 +46753,19 @@ entities: parent: 2 - proto: BrokenBottle entities: - - uid: 1857 + - uid: 1861 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.512104,65.64481 parent: 2 - - uid: 1858 + - uid: 1862 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.051556,-35.48419 parent: 2 - - uid: 1859 + - uid: 1863 components: - type: Transform rot: 1.5707963267948966 rad @@ -46768,37 +46773,37 @@ entities: parent: 2 - proto: BruteAutoInjector entities: - - uid: 884 + - uid: 876 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Brutepack entities: - - uid: 1860 + - uid: 1864 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.497957,-24.46766 parent: 2 - - uid: 1861 + - uid: 1865 components: - type: Transform pos: 32.489788,-31.352707 parent: 2 - - uid: 1862 + - uid: 1866 components: - type: Transform pos: -31.58165,-42.336353 parent: 2 - - uid: 1863 + - uid: 1867 components: - type: Transform pos: 31.735588,-41.564713 parent: 2 - - uid: 1864 + - uid: 1868 components: - type: Transform rot: 3.141592653589793 rad @@ -46806,81 +46811,81 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 1865 + - uid: 1869 components: - type: Transform pos: 70.47746,19.483463 parent: 2 - - uid: 1866 + - uid: 1870 components: - type: Transform pos: 3.6955166,-48.677258 parent: 2 - - uid: 1867 + - uid: 1871 components: - type: Transform pos: -38.58966,34.48895 parent: 2 - - uid: 1869 + - uid: 1873 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1879 + - uid: 1883 components: - type: Transform pos: 21.446554,-22.521786 parent: 2 - type: Physics canCollide: False - - uid: 1880 + - uid: 1884 components: - type: Transform pos: -76.531624,-29.54104 parent: 2 - type: Physics canCollide: False - - uid: 1881 + - uid: 1885 components: - type: Transform pos: -28.959202,55.452602 parent: 2 - - uid: 1882 + - uid: 1886 components: - type: Transform pos: -27.896702,55.515106 parent: 2 - - uid: 1883 + - uid: 1887 components: - type: Transform pos: 3.7923422,54.487797 parent: 2 - - uid: 1884 + - uid: 1888 components: - type: Transform pos: 3.886092,54.800297 parent: 2 - proto: BurnAutoInjector entities: - - uid: 885 + - uid: 877 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ButchCleaver entities: - - uid: 1885 + - uid: 1889 components: - type: Transform pos: -28.612309,-72.15309 parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 1886 + - uid: 1890 components: - type: Transform rot: -1.5707953085339508 rad @@ -46888,29094 +46893,29094 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 1887 + - uid: 1891 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 1888 + - uid: 1892 components: - type: Transform pos: 13.5,-8.5 parent: 2 - - uid: 1889 + - uid: 1893 components: - type: Transform pos: -15.5,-8.5 parent: 2 - - uid: 1890 + - uid: 1894 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 1891 + - uid: 1895 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 1892 + - uid: 1896 components: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 1893 + - uid: 1897 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 1894 + - uid: 1898 components: - type: Transform pos: 76.5,6.5 parent: 2 - - uid: 1895 + - uid: 1899 components: - type: Transform pos: -48.5,-27.5 parent: 2 - - uid: 1896 + - uid: 1900 components: - type: Transform pos: -49.5,-27.5 parent: 2 - - uid: 1897 + - uid: 1901 components: - type: Transform pos: -51.5,-27.5 parent: 2 - - uid: 1898 + - uid: 1902 components: - type: Transform pos: -51.5,-26.5 parent: 2 - - uid: 1899 + - uid: 1903 components: - type: Transform pos: -14.5,37.5 parent: 2 - - uid: 1900 + - uid: 1904 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 1901 + - uid: 1905 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 1902 + - uid: 1906 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 1903 + - uid: 1907 components: - type: Transform pos: -14.5,36.5 parent: 2 - - uid: 1904 + - uid: 1908 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 1905 + - uid: 1909 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 1906 + - uid: 1910 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 1907 + - uid: 1911 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 1908 + - uid: 1912 components: - type: Transform pos: 92.5,4.5 parent: 2 - - uid: 1909 + - uid: 1913 components: - type: Transform pos: 94.5,3.5 parent: 2 - - uid: 1910 + - uid: 1914 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 1911 + - uid: 1915 components: - type: Transform pos: 94.5,4.5 parent: 2 - - uid: 1912 + - uid: 1916 components: - type: Transform pos: 90.5,9.5 parent: 2 - - uid: 1913 + - uid: 1917 components: - type: Transform pos: 94.5,-0.5 parent: 2 - - uid: 1914 + - uid: 1918 components: - type: Transform pos: 94.5,0.5 parent: 2 - - uid: 1915 + - uid: 1919 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 1916 + - uid: 1920 components: - type: Transform pos: -67.5,-44.5 parent: 2 - - uid: 1917 + - uid: 1921 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 1918 + - uid: 1922 components: - type: Transform pos: -66.5,-45.5 parent: 2 - - uid: 1919 + - uid: 1923 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 1920 + - uid: 1924 components: - type: Transform pos: 96.5,3.5 parent: 2 - - uid: 1921 + - uid: 1925 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 1922 + - uid: 1926 components: - type: Transform pos: -65.5,-45.5 parent: 2 - - uid: 1923 + - uid: 1927 components: - type: Transform pos: -25.5,13.5 parent: 2 - - uid: 1924 + - uid: 1928 components: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 1925 + - uid: 1929 components: - type: Transform pos: -36.5,37.5 parent: 2 - - uid: 1926 + - uid: 1930 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 1927 + - uid: 1931 components: - type: Transform pos: 92.5,6.5 parent: 2 - - uid: 1928 + - uid: 1932 components: - type: Transform pos: 92.5,2.5 parent: 2 - - uid: 1929 + - uid: 1933 components: - type: Transform pos: 94.5,-1.5 parent: 2 - - uid: 1930 + - uid: 1934 components: - type: Transform pos: -57.5,-49.5 parent: 2 - - uid: 1931 + - uid: 1935 components: - type: Transform pos: 92.5,7.5 parent: 2 - - uid: 1932 + - uid: 1936 components: - type: Transform pos: 92.5,1.5 parent: 2 - - uid: 1933 + - uid: 1937 components: - type: Transform pos: 94.5,1.5 parent: 2 - - uid: 1934 + - uid: 1938 components: - type: Transform pos: 93.5,10.5 parent: 2 - - uid: 1935 + - uid: 1939 components: - type: Transform pos: 92.5,9.5 parent: 2 - - uid: 1936 + - uid: 1940 components: - type: Transform pos: 91.5,9.5 parent: 2 - - uid: 1937 + - uid: 1941 components: - type: Transform pos: 77.5,5.5 parent: 2 - - uid: 1938 + - uid: 1942 components: - type: Transform pos: 77.5,4.5 parent: 2 - - uid: 1939 + - uid: 1943 components: - type: Transform pos: 96.5,7.5 parent: 2 - - uid: 1940 + - uid: 1944 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 1941 + - uid: 1945 components: - type: Transform pos: 89.5,-1.5 parent: 2 - - uid: 1942 + - uid: 1946 components: - type: Transform pos: 93.5,-2.5 parent: 2 - - uid: 1943 + - uid: 1947 components: - type: Transform pos: 88.5,-2.5 parent: 2 - - uid: 1944 + - uid: 1948 components: - type: Transform pos: 92.5,-2.5 parent: 2 - - uid: 1945 + - uid: 1949 components: - type: Transform pos: 88.5,-1.5 parent: 2 - - uid: 1946 + - uid: 1950 components: - type: Transform pos: 95.5,-2.5 parent: 2 - - uid: 1947 + - uid: 1951 components: - type: Transform pos: 91.5,-2.5 parent: 2 - - uid: 1948 + - uid: 1952 components: - type: Transform pos: 97.5,-3.5 parent: 2 - - uid: 1949 + - uid: 1953 components: - type: Transform pos: 97.5,-2.5 parent: 2 - - uid: 1950 + - uid: 1954 components: - type: Transform pos: 90.5,-1.5 parent: 2 - - uid: 1951 + - uid: 1955 components: - type: Transform pos: 92.5,5.5 parent: 2 - - uid: 1952 + - uid: 1956 components: - type: Transform pos: 89.5,9.5 parent: 2 - - uid: 1953 + - uid: 1957 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 1954 + - uid: 1958 components: - type: Transform pos: 94.5,-3.5 parent: 2 - - uid: 1955 + - uid: 1959 components: - type: Transform pos: -37.5,37.5 parent: 2 - - uid: 1956 + - uid: 1960 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 1957 + - uid: 1961 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 1958 + - uid: 1962 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 1959 + - uid: 1963 components: - type: Transform pos: -113.5,23.5 parent: 2 - - uid: 1960 + - uid: 1964 components: - type: Transform pos: -112.5,23.5 parent: 2 - - uid: 1961 + - uid: 1965 components: - type: Transform pos: -77.5,15.5 parent: 2 - - uid: 1962 + - uid: 1966 components: - type: Transform pos: -111.5,23.5 parent: 2 - - uid: 1963 + - uid: 1967 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - uid: 1964 + - uid: 1968 components: - type: Transform pos: 79.5,5.5 parent: 2 - - uid: 1965 + - uid: 1969 components: - type: Transform pos: 91.5,1.5 parent: 2 - - uid: 1966 + - uid: 1970 components: - type: Transform pos: 93.5,1.5 parent: 2 - - uid: 1967 + - uid: 1971 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 1968 + - uid: 1972 components: - type: Transform pos: 14.5,87.5 parent: 2 - - uid: 1969 + - uid: 1973 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 1970 + - uid: 1974 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 1971 + - uid: 1975 components: - type: Transform pos: 77.5,6.5 parent: 2 - - uid: 1972 + - uid: 1976 components: - type: Transform pos: 76.5,4.5 parent: 2 - - uid: 1973 + - uid: 1977 components: - type: Transform pos: 78.5,5.5 parent: 2 - - uid: 1974 + - uid: 1978 components: - type: Transform pos: 95.5,1.5 parent: 2 - - uid: 1975 + - uid: 1979 components: - type: Transform pos: 88.5,-4.5 parent: 2 - - uid: 1976 + - uid: 1980 components: - type: Transform pos: 88.5,-3.5 parent: 2 - - uid: 1977 + - uid: 1981 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 1978 + - uid: 1982 components: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 1979 + - uid: 1983 components: - type: Transform pos: 96.5,5.5 parent: 2 - - uid: 1980 + - uid: 1984 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 1981 + - uid: 1985 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 1982 + - uid: 1986 components: - type: Transform pos: 94.5,-2.5 parent: 2 - - uid: 1983 + - uid: 1987 components: - type: Transform pos: 96.5,1.5 parent: 2 - - uid: 1984 + - uid: 1988 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 1985 + - uid: 1989 components: - type: Transform pos: 92.5,3.5 parent: 2 - - uid: 1986 + - uid: 1990 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 1987 + - uid: 1991 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 1988 + - uid: 1992 components: - type: Transform pos: 96.5,6.5 parent: 2 - - uid: 1989 + - uid: 1993 components: - type: Transform pos: 96.5,2.5 parent: 2 - - uid: 1990 + - uid: 1994 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 1991 + - uid: 1995 components: - type: Transform pos: 11.5,88.5 parent: 2 - - uid: 1992 + - uid: 1996 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 1993 + - uid: 1997 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 1994 + - uid: 1998 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 1995 + - uid: 1999 components: - type: Transform pos: 15.5,87.5 parent: 2 - - uid: 1996 + - uid: 2000 components: - type: Transform pos: 16.5,87.5 parent: 2 - - uid: 1997 + - uid: 2001 components: - type: Transform pos: 10.5,87.5 parent: 2 - - uid: 1998 + - uid: 2002 components: - type: Transform pos: 10.5,86.5 parent: 2 - - uid: 1999 + - uid: 2003 components: - type: Transform pos: 10.5,85.5 parent: 2 - - uid: 2000 + - uid: 2004 components: - type: Transform pos: 10.5,84.5 parent: 2 - - uid: 2001 + - uid: 2005 components: - type: Transform pos: 10.5,83.5 parent: 2 - - uid: 2002 + - uid: 2006 components: - type: Transform pos: 10.5,82.5 parent: 2 - - uid: 2003 + - uid: 2007 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 2004 + - uid: 2008 components: - type: Transform pos: 11.5,81.5 parent: 2 - - uid: 2005 + - uid: 2009 components: - type: Transform pos: 11.5,80.5 parent: 2 - - uid: 2006 + - uid: 2010 components: - type: Transform pos: 11.5,79.5 parent: 2 - - uid: 2007 + - uid: 2011 components: - type: Transform pos: 11.5,78.5 parent: 2 - - uid: 2008 + - uid: 2012 components: - type: Transform pos: 11.5,77.5 parent: 2 - - uid: 2009 + - uid: 2013 components: - type: Transform pos: 11.5,76.5 parent: 2 - - uid: 2010 + - uid: 2014 components: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 2011 + - uid: 2015 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 2012 + - uid: 2016 components: - type: Transform pos: 12.5,78.5 parent: 2 - - uid: 2013 + - uid: 2017 components: - type: Transform pos: 13.5,78.5 parent: 2 - - uid: 2014 + - uid: 2018 components: - type: Transform pos: 14.5,78.5 parent: 2 - - uid: 2015 + - uid: 2019 components: - type: Transform pos: 15.5,78.5 parent: 2 - - uid: 2016 + - uid: 2020 components: - type: Transform pos: 16.5,78.5 parent: 2 - - uid: 2017 + - uid: 2021 components: - type: Transform pos: 10.5,90.5 parent: 2 - - uid: 2018 + - uid: 2022 components: - type: Transform pos: 10.5,89.5 parent: 2 - - uid: 2019 + - uid: 2023 components: - type: Transform pos: 6.5,71.5 parent: 2 - - uid: 2020 + - uid: 2024 components: - type: Transform pos: 6.5,72.5 parent: 2 - - uid: 2021 + - uid: 2025 components: - type: Transform pos: 6.5,73.5 parent: 2 - - uid: 2022 + - uid: 2026 components: - type: Transform pos: 6.5,74.5 parent: 2 - - uid: 2023 + - uid: 2027 components: - type: Transform pos: 6.5,75.5 parent: 2 - - uid: 2024 + - uid: 2028 components: - type: Transform pos: 6.5,76.5 parent: 2 - - uid: 2025 + - uid: 2029 components: - type: Transform pos: 6.5,77.5 parent: 2 - - uid: 2026 + - uid: 2030 components: - type: Transform pos: 6.5,78.5 parent: 2 - - uid: 2027 + - uid: 2031 components: - type: Transform pos: 6.5,79.5 parent: 2 - - uid: 2028 + - uid: 2032 components: - type: Transform pos: 6.5,80.5 parent: 2 - - uid: 2029 + - uid: 2033 components: - type: Transform pos: 6.5,81.5 parent: 2 - - uid: 2030 + - uid: 2034 components: - type: Transform pos: 6.5,82.5 parent: 2 - - uid: 2031 + - uid: 2035 components: - type: Transform pos: 6.5,83.5 parent: 2 - - uid: 2032 + - uid: 2036 components: - type: Transform pos: 6.5,84.5 parent: 2 - - uid: 2033 + - uid: 2037 components: - type: Transform pos: 6.5,85.5 parent: 2 - - uid: 2034 + - uid: 2038 components: - type: Transform pos: 6.5,86.5 parent: 2 - - uid: 2035 + - uid: 2039 components: - type: Transform pos: 6.5,87.5 parent: 2 - - uid: 2036 + - uid: 2040 components: - type: Transform pos: 6.5,88.5 parent: 2 - - uid: 2037 + - uid: 2041 components: - type: Transform pos: 6.5,89.5 parent: 2 - - uid: 2038 + - uid: 2042 components: - type: Transform pos: 7.5,81.5 parent: 2 - - uid: 2039 + - uid: 2043 components: - type: Transform pos: 9.5,81.5 parent: 2 - - uid: 2040 + - uid: 2044 components: - type: Transform pos: 8.5,81.5 parent: 2 - - uid: 2041 + - uid: 2045 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 2042 + - uid: 2046 components: - type: Transform pos: 20.5,67.5 parent: 2 - - uid: 2043 + - uid: 2047 components: - type: Transform pos: 20.5,66.5 parent: 2 - - uid: 2044 + - uid: 2048 components: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 2045 + - uid: 2049 components: - type: Transform pos: 18.5,66.5 parent: 2 - - uid: 2046 + - uid: 2050 components: - type: Transform pos: 17.5,66.5 parent: 2 - - uid: 2047 + - uid: 2051 components: - type: Transform pos: 21.5,66.5 parent: 2 - - uid: 2048 + - uid: 2052 components: - type: Transform pos: 22.5,66.5 parent: 2 - - uid: 2049 + - uid: 2053 components: - type: Transform pos: 23.5,66.5 parent: 2 - - uid: 2050 + - uid: 2054 components: - type: Transform pos: 20.5,69.5 parent: 2 - - uid: 2051 + - uid: 2055 components: - type: Transform pos: 20.5,70.5 parent: 2 - - uid: 2052 + - uid: 2056 components: - type: Transform pos: 20.5,71.5 parent: 2 - - uid: 2053 + - uid: 2057 components: - type: Transform pos: 19.5,70.5 parent: 2 - - uid: 2054 + - uid: 2058 components: - type: Transform pos: 18.5,70.5 parent: 2 - - uid: 2055 + - uid: 2059 components: - type: Transform pos: 17.5,70.5 parent: 2 - - uid: 2056 + - uid: 2060 components: - type: Transform pos: 21.5,70.5 parent: 2 - - uid: 2057 + - uid: 2061 components: - type: Transform pos: 22.5,70.5 parent: 2 - - uid: 2058 + - uid: 2062 components: - type: Transform pos: 23.5,70.5 parent: 2 - - uid: 2059 + - uid: 2063 components: - type: Transform pos: 16.5,66.5 parent: 2 - - uid: 2060 + - uid: 2064 components: - type: Transform pos: 15.5,66.5 parent: 2 - - uid: 2061 + - uid: 2065 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 2062 + - uid: 2066 components: - type: Transform pos: 14.5,67.5 parent: 2 - - uid: 2063 + - uid: 2067 components: - type: Transform pos: 13.5,67.5 parent: 2 - - uid: 2064 + - uid: 2068 components: - type: Transform pos: 12.5,67.5 parent: 2 - - uid: 2065 + - uid: 2069 components: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 2066 + - uid: 2070 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 2067 + - uid: 2071 components: - type: Transform pos: 11.5,69.5 parent: 2 - - uid: 2068 + - uid: 2072 components: - type: Transform pos: 11.5,70.5 parent: 2 - - uid: 2069 + - uid: 2073 components: - type: Transform pos: 11.5,66.5 parent: 2 - - uid: 2070 + - uid: 2074 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 2071 + - uid: 2075 components: - type: Transform pos: 17.5,63.5 parent: 2 - - uid: 2072 + - uid: 2076 components: - type: Transform pos: 17.5,62.5 parent: 2 - - uid: 2073 + - uid: 2077 components: - type: Transform pos: 17.5,61.5 parent: 2 - - uid: 2074 + - uid: 2078 components: - type: Transform pos: 17.5,60.5 parent: 2 - - uid: 2075 + - uid: 2079 components: - type: Transform pos: 16.5,60.5 parent: 2 - - uid: 2076 + - uid: 2080 components: - type: Transform pos: 15.5,60.5 parent: 2 - - uid: 2077 + - uid: 2081 components: - type: Transform pos: 14.5,60.5 parent: 2 - - uid: 2078 + - uid: 2082 components: - type: Transform pos: 13.5,60.5 parent: 2 - - uid: 2079 + - uid: 2083 components: - type: Transform pos: 12.5,60.5 parent: 2 - - uid: 2080 + - uid: 2084 components: - type: Transform pos: 18.5,60.5 parent: 2 - - uid: 2081 + - uid: 2085 components: - type: Transform pos: 19.5,60.5 parent: 2 - - uid: 2082 + - uid: 2086 components: - type: Transform pos: 20.5,60.5 parent: 2 - - uid: 2083 + - uid: 2087 components: - type: Transform pos: 21.5,60.5 parent: 2 - - uid: 2084 + - uid: 2088 components: - type: Transform pos: 17.5,59.5 parent: 2 - - uid: 2085 + - uid: 2089 components: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 2086 + - uid: 2090 components: - type: Transform pos: 1.5,60.5 parent: 2 - - uid: 2087 + - uid: 2091 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 2088 + - uid: 2092 components: - type: Transform pos: 1.5,65.5 parent: 2 - - uid: 2089 + - uid: 2093 components: - type: Transform pos: 1.5,64.5 parent: 2 - - uid: 2090 + - uid: 2094 components: - type: Transform pos: 1.5,63.5 parent: 2 - - uid: 2091 + - uid: 2095 components: - type: Transform pos: 1.5,62.5 parent: 2 - - uid: 2092 + - uid: 2096 components: - type: Transform pos: 2.5,62.5 parent: 2 - - uid: 2093 + - uid: 2097 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 2094 + - uid: 2098 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 2095 + - uid: 2099 components: - type: Transform pos: 3.5,62.5 parent: 2 - - uid: 2096 + - uid: 2100 components: - type: Transform pos: 3.5,63.5 parent: 2 - - uid: 2097 + - uid: 2101 components: - type: Transform pos: 3.5,64.5 parent: 2 - - uid: 2098 + - uid: 2102 components: - type: Transform pos: 4.5,64.5 parent: 2 - - uid: 2099 + - uid: 2103 components: - type: Transform pos: 5.5,64.5 parent: 2 - - uid: 2100 + - uid: 2104 components: - type: Transform pos: 6.5,64.5 parent: 2 - - uid: 2101 + - uid: 2105 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 2102 + - uid: 2106 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 2103 + - uid: 2107 components: - type: Transform pos: 6.5,62.5 parent: 2 - - uid: 2104 + - uid: 2108 components: - type: Transform pos: 6.5,65.5 parent: 2 - - uid: 2105 + - uid: 2109 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 2106 + - uid: 2110 components: - type: Transform pos: 24.5,57.5 parent: 2 - - uid: 2107 + - uid: 2111 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 2108 + - uid: 2112 components: - type: Transform pos: 25.5,56.5 parent: 2 - - uid: 2109 + - uid: 2113 components: - type: Transform pos: 26.5,56.5 parent: 2 - - uid: 2110 + - uid: 2114 components: - type: Transform pos: 27.5,56.5 parent: 2 - - uid: 2111 + - uid: 2115 components: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 2112 + - uid: 2116 components: - type: Transform pos: 29.5,56.5 parent: 2 - - uid: 2113 + - uid: 2117 components: - type: Transform pos: 30.5,56.5 parent: 2 - - uid: 2114 + - uid: 2118 components: - type: Transform pos: 31.5,56.5 parent: 2 - - uid: 2115 + - uid: 2119 components: - type: Transform pos: 31.5,57.5 parent: 2 - - uid: 2116 + - uid: 2120 components: - type: Transform pos: 31.5,58.5 parent: 2 - - uid: 2117 + - uid: 2121 components: - type: Transform pos: 31.5,59.5 parent: 2 - - uid: 2118 + - uid: 2122 components: - type: Transform pos: 25.5,58.5 parent: 2 - - uid: 2119 + - uid: 2123 components: - type: Transform pos: 25.5,59.5 parent: 2 - - uid: 2120 + - uid: 2124 components: - type: Transform pos: 25.5,60.5 parent: 2 - - uid: 2121 + - uid: 2125 components: - type: Transform pos: 25.5,61.5 parent: 2 - - uid: 2122 + - uid: 2126 components: - type: Transform pos: 26.5,61.5 parent: 2 - - uid: 2123 + - uid: 2127 components: - type: Transform pos: 27.5,61.5 parent: 2 - - uid: 2124 + - uid: 2128 components: - type: Transform pos: 28.5,61.5 parent: 2 - - uid: 2125 + - uid: 2129 components: - type: Transform pos: 29.5,61.5 parent: 2 - - uid: 2126 + - uid: 2130 components: - type: Transform pos: 31.5,61.5 parent: 2 - - uid: 2127 + - uid: 2131 components: - type: Transform pos: 30.5,61.5 parent: 2 - - uid: 2128 + - uid: 2132 components: - type: Transform pos: 2.5,60.5 parent: 2 - - uid: 2129 + - uid: 2133 components: - type: Transform pos: 3.5,60.5 parent: 2 - - uid: 2130 + - uid: 2134 components: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 2131 + - uid: 2135 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 2132 + - uid: 2136 components: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 2133 + - uid: 2137 components: - type: Transform pos: 23.5,15.5 parent: 2 - - uid: 2134 + - uid: 2138 components: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 2135 + - uid: 2139 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 2136 + - uid: 2140 components: - type: Transform pos: -6.5,46.5 parent: 2 - - uid: 2137 + - uid: 2141 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 2138 + - uid: 2142 components: - type: Transform pos: -6.5,44.5 parent: 2 - - uid: 2139 + - uid: 2143 components: - type: Transform pos: -6.5,43.5 parent: 2 - - uid: 2140 + - uid: 2144 components: - type: Transform pos: -6.5,42.5 parent: 2 - - uid: 2141 + - uid: 2145 components: - type: Transform pos: -6.5,41.5 parent: 2 - - uid: 2142 + - uid: 2146 components: - type: Transform pos: -6.5,40.5 parent: 2 - - uid: 2143 + - uid: 2147 components: - type: Transform pos: -6.5,39.5 parent: 2 - - uid: 2144 + - uid: 2148 components: - type: Transform pos: -6.5,38.5 parent: 2 - - uid: 2145 + - uid: 2149 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 2146 + - uid: 2150 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 2147 + - uid: 2151 components: - type: Transform pos: -4.5,37.5 parent: 2 - - uid: 2148 + - uid: 2152 components: - type: Transform pos: -3.5,37.5 parent: 2 - - uid: 2149 + - uid: 2153 components: - type: Transform pos: -2.5,37.5 parent: 2 - - uid: 2150 + - uid: 2154 components: - type: Transform pos: -2.5,38.5 parent: 2 - - uid: 2151 + - uid: 2155 components: - type: Transform pos: -2.5,39.5 parent: 2 - - uid: 2152 + - uid: 2156 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 2153 + - uid: 2157 components: - type: Transform pos: -2.5,41.5 parent: 2 - - uid: 2154 + - uid: 2158 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 2155 + - uid: 2159 components: - type: Transform pos: -1.5,40.5 parent: 2 - - uid: 2156 + - uid: 2160 components: - type: Transform pos: -0.5,40.5 parent: 2 - - uid: 2157 + - uid: 2161 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 2158 + - uid: 2162 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 2159 + - uid: 2163 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 2160 + - uid: 2164 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 2161 + - uid: 2165 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 2162 + - uid: 2166 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 2163 + - uid: 2167 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 2164 + - uid: 2168 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 2165 + - uid: 2169 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 2166 + - uid: 2170 components: - type: Transform pos: 0.50000006,39.5 parent: 2 - - uid: 2167 + - uid: 2171 components: - type: Transform pos: 0.50000006,38.5 parent: 2 - - uid: 2168 + - uid: 2172 components: - type: Transform pos: 0.50000006,37.5 parent: 2 - - uid: 2169 + - uid: 2173 components: - type: Transform pos: 0.50000006,36.5 parent: 2 - - uid: 2170 + - uid: 2174 components: - type: Transform pos: 0.49999997,35.5 parent: 2 - - uid: 2171 + - uid: 2175 components: - type: Transform pos: 0.49999997,34.5 parent: 2 - - uid: 2172 + - uid: 2176 components: - type: Transform pos: -5.5,30.5 parent: 2 - - uid: 2173 + - uid: 2177 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 2174 + - uid: 2178 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 2175 + - uid: 2179 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 2176 + - uid: 2180 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 2177 + - uid: 2181 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 2178 + - uid: 2182 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 2179 + - uid: 2183 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 2180 + - uid: 2184 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 2181 + - uid: 2185 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 2182 + - uid: 2186 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 2183 + - uid: 2187 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 2184 + - uid: 2188 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 2185 + - uid: 2189 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 2186 + - uid: 2190 components: - type: Transform pos: -6.5,30.5 parent: 2 - - uid: 2187 + - uid: 2191 components: - type: Transform pos: -7.5,30.5 parent: 2 - - uid: 2188 + - uid: 2192 components: - type: Transform pos: -8.5,30.5 parent: 2 - - uid: 2189 + - uid: 2193 components: - type: Transform pos: -9.5,30.5 parent: 2 - - uid: 2190 + - uid: 2194 components: - type: Transform pos: -9.5,31.5 parent: 2 - - uid: 2191 + - uid: 2195 components: - type: Transform pos: -9.5,32.5 parent: 2 - - uid: 2192 + - uid: 2196 components: - type: Transform pos: -9.5,33.5 parent: 2 - - uid: 2193 + - uid: 2197 components: - type: Transform pos: -8.5,33.5 parent: 2 - - uid: 2194 + - uid: 2198 components: - type: Transform pos: -7.5,33.5 parent: 2 - - uid: 2195 + - uid: 2199 components: - type: Transform pos: -6.5,33.5 parent: 2 - - uid: 2196 + - uid: 2200 components: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 2197 + - uid: 2201 components: - type: Transform pos: -9.5,29.5 parent: 2 - - uid: 2198 + - uid: 2202 components: - type: Transform pos: -9.5,28.5 parent: 2 - - uid: 2199 + - uid: 2203 components: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 2200 + - uid: 2204 components: - type: Transform pos: -8.5,27.5 parent: 2 - - uid: 2201 + - uid: 2205 components: - type: Transform pos: -7.5,27.5 parent: 2 - - uid: 2202 + - uid: 2206 components: - type: Transform pos: -6.5,27.5 parent: 2 - - uid: 2203 + - uid: 2207 components: - type: Transform pos: -5.5,27.5 parent: 2 - - uid: 2204 + - uid: 2208 components: - type: Transform pos: -10.5,30.5 parent: 2 - - uid: 2205 + - uid: 2209 components: - type: Transform pos: -11.5,30.5 parent: 2 - - uid: 2206 + - uid: 2210 components: - type: Transform pos: -12.5,30.5 parent: 2 - - uid: 2207 + - uid: 2211 components: - type: Transform pos: -13.5,30.5 parent: 2 - - uid: 2208 + - uid: 2212 components: - type: Transform pos: -14.5,30.5 parent: 2 - - uid: 2209 + - uid: 2213 components: - type: Transform pos: -12.5,31.5 parent: 2 - - uid: 2210 + - uid: 2214 components: - type: Transform pos: -12.5,32.5 parent: 2 - - uid: 2211 + - uid: 2215 components: - type: Transform pos: -12.5,33.5 parent: 2 - - uid: 2212 + - uid: 2216 components: - type: Transform pos: -12.5,34.5 parent: 2 - - uid: 2213 + - uid: 2217 components: - type: Transform pos: -12.5,29.5 parent: 2 - - uid: 2214 + - uid: 2218 components: - type: Transform pos: -12.5,28.5 parent: 2 - - uid: 2215 + - uid: 2219 components: - type: Transform pos: -12.5,27.5 parent: 2 - - uid: 2216 + - uid: 2220 components: - type: Transform pos: -12.5,26.5 parent: 2 - - uid: 2217 + - uid: 2221 components: - type: Transform pos: -15.5,30.5 parent: 2 - - uid: 2218 + - uid: 2222 components: - type: Transform pos: -15.5,29.5 parent: 2 - - uid: 2219 + - uid: 2223 components: - type: Transform pos: -15.5,28.5 parent: 2 - - uid: 2220 + - uid: 2224 components: - type: Transform pos: -15.5,27.5 parent: 2 - - uid: 2221 + - uid: 2225 components: - type: Transform pos: -15.5,26.5 parent: 2 - - uid: 2222 + - uid: 2226 components: - type: Transform pos: -15.5,31.5 parent: 2 - - uid: 2223 + - uid: 2227 components: - type: Transform pos: -15.5,32.5 parent: 2 - - uid: 2224 + - uid: 2228 components: - type: Transform pos: -15.5,33.5 parent: 2 - - uid: 2225 + - uid: 2229 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 2226 + - uid: 2230 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 2227 + - uid: 2231 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 2228 + - uid: 2232 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 2229 + - uid: 2233 components: - type: Transform pos: -8.5,49.5 parent: 2 - - uid: 2230 + - uid: 2234 components: - type: Transform pos: -9.5,49.5 parent: 2 - - uid: 2231 + - uid: 2235 components: - type: Transform pos: -10.5,49.5 parent: 2 - - uid: 2232 + - uid: 2236 components: - type: Transform pos: -11.5,49.5 parent: 2 - - uid: 2233 + - uid: 2237 components: - type: Transform pos: -12.5,49.5 parent: 2 - - uid: 2234 + - uid: 2238 components: - type: Transform pos: -11.5,50.5 parent: 2 - - uid: 2235 + - uid: 2239 components: - type: Transform pos: -11.5,51.5 parent: 2 - - uid: 2236 + - uid: 2240 components: - type: Transform pos: -11.5,52.5 parent: 2 - - uid: 2237 + - uid: 2241 components: - type: Transform pos: -11.5,53.5 parent: 2 - - uid: 2238 + - uid: 2242 components: - type: Transform pos: -10.5,53.5 parent: 2 - - uid: 2239 + - uid: 2243 components: - type: Transform pos: -9.5,53.5 parent: 2 - - uid: 2240 + - uid: 2244 components: - type: Transform pos: -5.5,50.5 parent: 2 - - uid: 2241 + - uid: 2245 components: - type: Transform pos: -5.5,51.5 parent: 2 - - uid: 2242 + - uid: 2246 components: - type: Transform pos: -5.5,52.5 parent: 2 - - uid: 2243 + - uid: 2247 components: - type: Transform pos: -5.5,53.5 parent: 2 - - uid: 2244 + - uid: 2248 components: - type: Transform pos: -5.5,49.5 parent: 2 - - uid: 2245 + - uid: 2249 components: - type: Transform pos: -6.5,49.5 parent: 2 - - uid: 2246 + - uid: 2250 components: - type: Transform pos: -4.5,53.5 parent: 2 - - uid: 2247 + - uid: 2251 components: - type: Transform pos: -3.5,53.5 parent: 2 - - uid: 2248 + - uid: 2252 components: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 2249 + - uid: 2253 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 2250 + - uid: 2254 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 2251 + - uid: 2255 components: - type: Transform pos: 3.5,53.5 parent: 2 - - uid: 2252 + - uid: 2256 components: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 2253 + - uid: 2257 components: - type: Transform pos: 3.5,51.5 parent: 2 - - uid: 2254 + - uid: 2258 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 2255 + - uid: 2259 components: - type: Transform pos: 1.5,51.5 parent: 2 - - uid: 2256 + - uid: 2260 components: - type: Transform pos: 0.50000006,51.5 parent: 2 - - uid: 2257 + - uid: 2261 components: - type: Transform pos: -0.5,51.5 parent: 2 - - uid: 2258 + - uid: 2262 components: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 2259 + - uid: 2263 components: - type: Transform pos: -0.5,53.5 parent: 2 - - uid: 2260 + - uid: 2264 components: - type: Transform pos: -0.5,54.5 parent: 2 - - uid: 2261 + - uid: 2265 components: - type: Transform pos: 3.5,50.5 parent: 2 - - uid: 2262 + - uid: 2266 components: - type: Transform pos: -4.5,49.5 parent: 2 - - uid: 2263 + - uid: 2267 components: - type: Transform pos: -3.5,49.5 parent: 2 - - uid: 2264 + - uid: 2268 components: - type: Transform pos: -2.5,49.5 parent: 2 - - uid: 2265 + - uid: 2269 components: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 2266 + - uid: 2270 components: - type: Transform pos: -7.5,48.5 parent: 2 - - uid: 2267 + - uid: 2271 components: - type: Transform pos: 1.5,48.5 parent: 2 - - uid: 2268 + - uid: 2272 components: - type: Transform pos: 0.50000006,48.5 parent: 2 - - uid: 2269 + - uid: 2273 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 2270 + - uid: 2274 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 2271 + - uid: 2275 components: - type: Transform pos: 4.5,60.5 parent: 2 - - uid: 2272 + - uid: 2276 components: - type: Transform pos: 5.5,60.5 parent: 2 - - uid: 2273 + - uid: 2277 components: - type: Transform pos: 5.5,59.5 parent: 2 - - uid: 2274 + - uid: 2278 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 2275 + - uid: 2279 components: - type: Transform pos: 5.5,57.5 parent: 2 - - uid: 2276 + - uid: 2280 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 2277 + - uid: 2281 components: - type: Transform pos: 6.5,56.5 parent: 2 - - uid: 2278 + - uid: 2282 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 2279 + - uid: 2283 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 2280 + - uid: 2284 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 2281 + - uid: 2285 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 2282 + - uid: 2286 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 2283 + - uid: 2287 components: - type: Transform pos: 5.5,47.5 parent: 2 - - uid: 2284 + - uid: 2288 components: - type: Transform pos: 6.5,47.5 parent: 2 - - uid: 2285 + - uid: 2289 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 2286 + - uid: 2290 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 2287 + - uid: 2291 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 2288 + - uid: 2292 components: - type: Transform pos: 2.5,40.5 parent: 2 - - uid: 2289 + - uid: 2293 components: - type: Transform pos: -11.5,41.5 parent: 2 - - uid: 2290 + - uid: 2294 components: - type: Transform pos: -10.5,41.5 parent: 2 - - uid: 2291 + - uid: 2295 components: - type: Transform pos: -9.5,41.5 parent: 2 - - uid: 2292 + - uid: 2296 components: - type: Transform pos: -8.5,41.5 parent: 2 - - uid: 2293 + - uid: 2297 components: - type: Transform pos: -7.5,41.5 parent: 2 - - uid: 2294 + - uid: 2298 components: - type: Transform pos: -11.5,42.5 parent: 2 - - uid: 2295 + - uid: 2299 components: - type: Transform pos: -11.5,43.5 parent: 2 - - uid: 2296 + - uid: 2300 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 2297 + - uid: 2301 components: - type: Transform pos: -11.5,45.5 parent: 2 - - uid: 2298 + - uid: 2302 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 2299 + - uid: 2303 components: - type: Transform pos: -11.5,40.5 parent: 2 - - uid: 2300 + - uid: 2304 components: - type: Transform pos: -11.5,39.5 parent: 2 - - uid: 2301 + - uid: 2305 components: - type: Transform pos: -11.5,38.5 parent: 2 - - uid: 2302 + - uid: 2306 components: - type: Transform pos: -11.5,37.5 parent: 2 - - uid: 2303 + - uid: 2307 components: - type: Transform pos: -11.5,36.5 parent: 2 - - uid: 2304 + - uid: 2308 components: - type: Transform pos: -12.5,41.5 parent: 2 - - uid: 2305 + - uid: 2309 components: - type: Transform pos: -3.5,48.5 parent: 2 - - uid: 2306 + - uid: 2310 components: - type: Transform pos: -3.5,47.5 parent: 2 - - uid: 2307 + - uid: 2311 components: - type: Transform pos: -3.5,46.5 parent: 2 - - uid: 2308 + - uid: 2312 components: - type: Transform pos: -3.5,45.5 parent: 2 - - uid: 2309 + - uid: 2313 components: - type: Transform pos: -2.5,45.5 parent: 2 - - uid: 2310 + - uid: 2314 components: - type: Transform pos: -12.5,4.5 parent: 2 - - uid: 2311 + - uid: 2315 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 2312 + - uid: 2316 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 2313 + - uid: 2317 components: - type: Transform pos: -13.5,4.5 parent: 2 - - uid: 2314 + - uid: 2318 components: - type: Transform pos: -11.5,4.5 parent: 2 - - uid: 2315 + - uid: 2319 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 2316 + - uid: 2320 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 2317 + - uid: 2321 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 2318 + - uid: 2322 components: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 2319 + - uid: 2323 components: - type: Transform pos: -10.5,0.5 parent: 2 - - uid: 2320 + - uid: 2324 components: - type: Transform pos: -10.5,-0.5 parent: 2 - - uid: 2321 + - uid: 2325 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 2322 + - uid: 2326 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 2323 + - uid: 2327 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 2324 + - uid: 2328 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - uid: 2325 + - uid: 2329 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 2326 + - uid: 2330 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 2327 + - uid: 2331 components: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 2328 + - uid: 2332 components: - type: Transform pos: -12.5,-4.5 parent: 2 - - uid: 2329 + - uid: 2333 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 2330 + - uid: 2334 components: - type: Transform pos: -14.5,-4.5 parent: 2 - - uid: 2331 + - uid: 2335 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 2332 + - uid: 2336 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 2333 + - uid: 2337 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 2334 + - uid: 2338 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 2335 + - uid: 2339 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 2336 + - uid: 2340 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 2337 + - uid: 2341 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 2338 + - uid: 2342 components: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 2339 + - uid: 2343 components: - type: Transform pos: -12.5,0.5 parent: 2 - - uid: 2340 + - uid: 2344 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 2341 + - uid: 2345 components: - type: Transform pos: -13.5,3.5 parent: 2 - - uid: 2342 + - uid: 2346 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 2343 + - uid: 2347 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 2344 + - uid: 2348 components: - type: Transform pos: -11.5,11.5 parent: 2 - - uid: 2345 + - uid: 2349 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 2346 + - uid: 2350 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 2347 + - uid: 2351 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 2348 + - uid: 2352 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 2349 + - uid: 2353 components: - type: Transform pos: -14.5,9.5 parent: 2 - - uid: 2350 + - uid: 2354 components: - type: Transform pos: -15.5,9.5 parent: 2 - - uid: 2351 + - uid: 2355 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 2352 + - uid: 2356 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 2353 + - uid: 2357 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 2354 + - uid: 2358 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 2355 + - uid: 2359 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 2356 + - uid: 2360 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 2357 + - uid: 2361 components: - type: Transform pos: -7.5,9.5 parent: 2 - - uid: 2358 + - uid: 2362 components: - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 2359 + - uid: 2363 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 2360 + - uid: 2364 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 2361 + - uid: 2365 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 2362 + - uid: 2366 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 2363 + - uid: 2367 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 2364 + - uid: 2368 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 2365 + - uid: 2369 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 2366 + - uid: 2370 components: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 2367 + - uid: 2371 components: - type: Transform pos: 6.5,14.5 parent: 2 - - uid: 2368 + - uid: 2372 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 2369 + - uid: 2373 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 2370 + - uid: 2374 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 2371 + - uid: 2375 components: - type: Transform pos: 3.5,15.5 parent: 2 - - uid: 2372 + - uid: 2376 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 2373 + - uid: 2377 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 2374 + - uid: 2378 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 2375 + - uid: 2379 components: - type: Transform pos: 0.49999997,16.5 parent: 2 - - uid: 2376 + - uid: 2380 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 2377 + - uid: 2381 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 2378 + - uid: 2382 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 2379 + - uid: 2383 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 2380 + - uid: 2384 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 2381 + - uid: 2385 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 2382 + - uid: 2386 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 2383 + - uid: 2387 components: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 2384 + - uid: 2388 components: - type: Transform pos: -6.5,14.5 parent: 2 - - uid: 2385 + - uid: 2389 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 2386 + - uid: 2390 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 2387 + - uid: 2391 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 2388 + - uid: 2392 components: - type: Transform pos: -9.5,13.5 parent: 2 - - uid: 2389 + - uid: 2393 components: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 2390 + - uid: 2394 components: - type: Transform pos: -11.5,14.5 parent: 2 - - uid: 2391 + - uid: 2395 components: - type: Transform pos: -11.5,15.5 parent: 2 - - uid: 2392 + - uid: 2396 components: - type: Transform pos: -11.5,16.5 parent: 2 - - uid: 2393 + - uid: 2397 components: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 2394 + - uid: 2398 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 2395 + - uid: 2399 components: - type: Transform pos: -14.5,14.5 parent: 2 - - uid: 2396 + - uid: 2400 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 2397 + - uid: 2401 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 2398 + - uid: 2402 components: - type: Transform pos: 13.5,14.5 parent: 2 - - uid: 2399 + - uid: 2403 components: - type: Transform pos: 14.5,14.5 parent: 2 - - uid: 2400 + - uid: 2404 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 2401 + - uid: 2405 components: - type: Transform pos: -1.5,15.5 parent: 2 - - uid: 2402 + - uid: 2406 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 2403 + - uid: 2407 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 2404 + - uid: 2408 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 2405 + - uid: 2409 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 2406 + - uid: 2410 components: - type: Transform pos: -4.5,17.5 parent: 2 - - uid: 2407 + - uid: 2411 components: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 2408 + - uid: 2412 components: - type: Transform pos: -3.5,18.5 parent: 2 - - uid: 2409 + - uid: 2413 components: - type: Transform pos: -2.5,18.5 parent: 2 - - uid: 2410 + - uid: 2414 components: - type: Transform pos: -1.5,18.5 parent: 2 - - uid: 2411 + - uid: 2415 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 2412 + - uid: 2416 components: - type: Transform pos: 0.49999997,18.5 parent: 2 - - uid: 2413 + - uid: 2417 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 2414 + - uid: 2418 components: - type: Transform pos: 2.5,18.5 parent: 2 - - uid: 2415 + - uid: 2419 components: - type: Transform pos: 3.5,18.5 parent: 2 - - uid: 2416 + - uid: 2420 components: - type: Transform pos: 3.5,17.5 parent: 2 - - uid: 2417 + - uid: 2421 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 2418 + - uid: 2422 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 2419 + - uid: 2423 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 2420 + - uid: 2424 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 2421 + - uid: 2425 components: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 2422 + - uid: 2426 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 2423 + - uid: 2427 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 2424 + - uid: 2428 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 2425 + - uid: 2429 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 2426 + - uid: 2430 components: - type: Transform pos: -8.5,15.5 parent: 2 - - uid: 2427 + - uid: 2431 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 2428 + - uid: 2432 components: - type: Transform pos: 3.5,13.5 parent: 2 - - uid: 2429 + - uid: 2433 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 2430 + - uid: 2434 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 2431 + - uid: 2435 components: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 2432 + - uid: 2436 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 2433 + - uid: 2437 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 2434 + - uid: 2438 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 2435 + - uid: 2439 components: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 2436 + - uid: 2440 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 2437 + - uid: 2441 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 2438 + - uid: 2442 components: - type: Transform pos: 11.5,9.5 parent: 2 - - uid: 2439 + - uid: 2443 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 2440 + - uid: 2444 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 2441 + - uid: 2445 components: - type: Transform pos: 14.5,9.5 parent: 2 - - uid: 2442 + - uid: 2446 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 2443 + - uid: 2447 components: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 2444 + - uid: 2448 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 2445 + - uid: 2449 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 2446 + - uid: 2450 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 2447 + - uid: 2451 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 2448 + - uid: 2452 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 2449 + - uid: 2453 components: - type: Transform pos: 9.5,1.5 parent: 2 - - uid: 2450 + - uid: 2454 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 2451 + - uid: 2455 components: - type: Transform pos: 14.5,4.5 parent: 2 - - uid: 2452 + - uid: 2456 components: - type: Transform pos: 14.5,5.5 parent: 2 - - uid: 2453 + - uid: 2457 components: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 2454 + - uid: 2458 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 2455 + - uid: 2459 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 2456 + - uid: 2460 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 2457 + - uid: 2461 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 2458 + - uid: 2462 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 2459 + - uid: 2463 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 2460 + - uid: 2464 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 2461 + - uid: 2465 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 2462 + - uid: 2466 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 2463 + - uid: 2467 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 2464 + - uid: 2468 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 2465 + - uid: 2469 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 2466 + - uid: 2470 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 2467 + - uid: 2471 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 2468 + - uid: 2472 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 2469 + - uid: 2473 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 2470 + - uid: 2474 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 2471 + - uid: 2475 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 2472 + - uid: 2476 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 2473 + - uid: 2477 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 2474 + - uid: 2478 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 2475 + - uid: 2479 components: - type: Transform pos: 13.5,-4.5 parent: 2 - - uid: 2476 + - uid: 2480 components: - type: Transform pos: 14.5,-4.5 parent: 2 - - uid: 2477 + - uid: 2481 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 2478 + - uid: 2482 components: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 2479 + - uid: 2483 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 2480 + - uid: 2484 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 2481 + - uid: 2485 components: - type: Transform pos: -0.5,8.5 parent: 2 - - uid: 2482 + - uid: 2486 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 2483 + - uid: 2487 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 2484 + - uid: 2488 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 2485 + - uid: 2489 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 2486 + - uid: 2490 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 2487 + - uid: 2491 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 2488 + - uid: 2492 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 2489 + - uid: 2493 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 2490 + - uid: 2494 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 2491 + - uid: 2495 components: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 2492 + - uid: 2496 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 2493 + - uid: 2497 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 2494 + - uid: 2498 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 2495 + - uid: 2499 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 2496 + - uid: 2500 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 2497 + - uid: 2501 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 2498 + - uid: 2502 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 2499 + - uid: 2503 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 2500 + - uid: 2504 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 2501 + - uid: 2505 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 2502 + - uid: 2506 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 2503 + - uid: 2507 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 2504 + - uid: 2508 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 2505 + - uid: 2509 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 2506 + - uid: 2510 components: - type: Transform pos: 8.5,-14.5 parent: 2 - - uid: 2507 + - uid: 2511 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 2508 + - uid: 2512 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 2509 + - uid: 2513 components: - type: Transform pos: 9.5,-15.5 parent: 2 - - uid: 2510 + - uid: 2514 components: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 2511 + - uid: 2515 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 2512 + - uid: 2516 components: - type: Transform pos: 12.5,-15.5 parent: 2 - - uid: 2513 + - uid: 2517 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 2514 + - uid: 2518 components: - type: Transform pos: 13.5,-14.5 parent: 2 - - uid: 2515 + - uid: 2519 components: - type: Transform pos: 13.5,-13.5 parent: 2 - - uid: 2516 + - uid: 2520 components: - type: Transform pos: 13.5,-16.5 parent: 2 - - uid: 2517 + - uid: 2521 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 2518 + - uid: 2522 components: - type: Transform pos: -12.5,-12.5 parent: 2 - - uid: 2519 + - uid: 2523 components: - type: Transform pos: -12.5,-13.5 parent: 2 - - uid: 2520 + - uid: 2524 components: - type: Transform pos: -12.5,-14.5 parent: 2 - - uid: 2521 + - uid: 2525 components: - type: Transform pos: -12.5,-15.5 parent: 2 - - uid: 2522 + - uid: 2526 components: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 2523 + - uid: 2527 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 2524 + - uid: 2528 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 2525 + - uid: 2529 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 2526 + - uid: 2530 components: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 2527 + - uid: 2531 components: - type: Transform pos: -10.5,-13.5 parent: 2 - - uid: 2528 + - uid: 2532 components: - type: Transform pos: -10.5,-14.5 parent: 2 - - uid: 2529 + - uid: 2533 components: - type: Transform pos: -10.5,-15.5 parent: 2 - - uid: 2530 + - uid: 2534 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 2531 + - uid: 2535 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 2532 + - uid: 2536 components: - type: Transform pos: -8.5,-12.5 parent: 2 - - uid: 2533 + - uid: 2537 components: - type: Transform pos: -8.5,-13.5 parent: 2 - - uid: 2534 + - uid: 2538 components: - type: Transform pos: -8.5,-14.5 parent: 2 - - uid: 2535 + - uid: 2539 components: - type: Transform pos: -8.5,-15.5 parent: 2 - - uid: 2536 + - uid: 2540 components: - type: Transform pos: -8.5,-16.5 parent: 2 - - uid: 2537 + - uid: 2541 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 2538 + - uid: 2542 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 2539 + - uid: 2543 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 2540 + - uid: 2544 components: - type: Transform pos: -14.5,-12.5 parent: 2 - - uid: 2541 + - uid: 2545 components: - type: Transform pos: -14.5,-13.5 parent: 2 - - uid: 2542 + - uid: 2546 components: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 2543 + - uid: 2547 components: - type: Transform pos: -14.5,-15.5 parent: 2 - - uid: 2544 + - uid: 2548 components: - type: Transform pos: -14.5,-16.5 parent: 2 - - uid: 2545 + - uid: 2549 components: - type: Transform pos: -13.5,-16.5 parent: 2 - - uid: 2546 + - uid: 2550 components: - type: Transform pos: -11.5,-16.5 parent: 2 - - uid: 2547 + - uid: 2551 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 2548 + - uid: 2552 components: - type: Transform pos: -9.5,-16.5 parent: 2 - - uid: 2549 + - uid: 2553 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 2550 + - uid: 2554 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 2551 + - uid: 2555 components: - type: Transform pos: -13.5,-9.5 parent: 2 - - uid: 2552 + - uid: 2556 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 2553 + - uid: 2557 components: - type: Transform pos: 14.5,-8.5 parent: 2 - - uid: 2554 + - uid: 2558 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 2555 + - uid: 2559 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 2556 + - uid: 2560 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 2557 + - uid: 2561 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 2558 + - uid: 2562 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 2559 + - uid: 2563 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 2560 + - uid: 2564 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 2561 + - uid: 2565 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 2562 + - uid: 2566 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 2563 + - uid: 2567 components: - type: Transform pos: -3.5,-10.5 parent: 2 - - uid: 2564 + - uid: 2568 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 2565 + - uid: 2569 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 2566 + - uid: 2570 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 2567 + - uid: 2571 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2568 + - uid: 2572 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 2569 + - uid: 2573 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 2570 + - uid: 2574 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 2571 + - uid: 2575 components: - type: Transform pos: 0.50000006,-13.5 parent: 2 - - uid: 2572 + - uid: 2576 components: - type: Transform pos: 0.49999997,-14.5 parent: 2 - - uid: 2573 + - uid: 2577 components: - type: Transform pos: 0.49999997,-15.5 parent: 2 - - uid: 2574 + - uid: 2578 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 2575 + - uid: 2579 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 2576 + - uid: 2580 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 2577 + - uid: 2581 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 2578 + - uid: 2582 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 2579 + - uid: 2583 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 2580 + - uid: 2584 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 2581 + - uid: 2585 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 2582 + - uid: 2586 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 2583 + - uid: 2587 components: - type: Transform pos: 3.5,-14.5 parent: 2 - - uid: 2584 + - uid: 2588 components: - type: Transform pos: -13.5,-8.5 parent: 2 - - uid: 2585 + - uid: 2589 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 2586 + - uid: 2590 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 2587 + - uid: 2591 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 2588 + - uid: 2592 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 2589 + - uid: 2593 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 2590 + - uid: 2594 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 2591 + - uid: 2595 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 2592 + - uid: 2596 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 2593 + - uid: 2597 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 2594 + - uid: 2598 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2595 + - uid: 2599 components: - type: Transform pos: 3.5,-11.5 parent: 2 - - uid: 2596 + - uid: 2600 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 2597 + - uid: 2601 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2598 + - uid: 2602 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 2599 + - uid: 2603 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 2600 + - uid: 2604 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 2601 + - uid: 2605 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 2602 + - uid: 2606 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2603 + - uid: 2607 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 2604 + - uid: 2608 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 2605 + - uid: 2609 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 2606 + - uid: 2610 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 2607 + - uid: 2611 components: - type: Transform pos: -42.5,-19.5 parent: 2 - - uid: 2608 + - uid: 2612 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 2609 + - uid: 2613 components: - type: Transform pos: -40.5,-19.5 parent: 2 - - uid: 2610 + - uid: 2614 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 2611 + - uid: 2615 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 2612 + - uid: 2616 components: - type: Transform pos: -37.5,-19.5 parent: 2 - - uid: 2613 + - uid: 2617 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 2614 + - uid: 2618 components: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 2615 + - uid: 2619 components: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 2616 + - uid: 2620 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 2617 + - uid: 2621 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 2618 + - uid: 2622 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 2619 + - uid: 2623 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 2620 + - uid: 2624 components: - type: Transform pos: -29.5,-19.5 parent: 2 - - uid: 2621 + - uid: 2625 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 2622 + - uid: 2626 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 2623 + - uid: 2627 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 2624 + - uid: 2628 components: - type: Transform pos: -22.5,-15.5 parent: 2 - - uid: 2625 + - uid: 2629 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 2626 + - uid: 2630 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 2627 + - uid: 2631 components: - type: Transform pos: -23.5,-17.5 parent: 2 - - uid: 2628 + - uid: 2632 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 2629 + - uid: 2633 components: - type: Transform pos: -23.5,-15.5 parent: 2 - - uid: 2630 + - uid: 2634 components: - type: Transform pos: -24.5,-15.5 parent: 2 - - uid: 2631 + - uid: 2635 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 2632 + - uid: 2636 components: - type: Transform pos: -23.5,-20.5 parent: 2 - - uid: 2633 + - uid: 2637 components: - type: Transform pos: -23.5,-21.5 parent: 2 - - uid: 2634 + - uid: 2638 components: - type: Transform pos: -27.5,-18.5 parent: 2 - - uid: 2635 + - uid: 2639 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 2636 + - uid: 2640 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 2637 + - uid: 2641 components: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 2638 + - uid: 2642 components: - type: Transform pos: -27.5,-14.5 parent: 2 - - uid: 2639 + - uid: 2643 components: - type: Transform pos: -27.5,-13.5 parent: 2 - - uid: 2640 + - uid: 2644 components: - type: Transform pos: -27.5,-12.5 parent: 2 - - uid: 2641 + - uid: 2645 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 2642 + - uid: 2646 components: - type: Transform pos: -29.5,-12.5 parent: 2 - - uid: 2643 + - uid: 2647 components: - type: Transform pos: -30.5,-12.5 parent: 2 - - uid: 2644 + - uid: 2648 components: - type: Transform pos: -31.5,-12.5 parent: 2 - - uid: 2645 + - uid: 2649 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 2646 + - uid: 2650 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 2647 + - uid: 2651 components: - type: Transform pos: -31.5,-14.5 parent: 2 - - uid: 2648 + - uid: 2652 components: - type: Transform pos: -31.5,-15.5 parent: 2 - - uid: 2649 + - uid: 2653 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 2650 + - uid: 2654 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 2651 + - uid: 2655 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 2652 + - uid: 2656 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 2653 + - uid: 2657 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 2654 + - uid: 2658 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 2655 + - uid: 2659 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 2656 + - uid: 2660 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 2657 + - uid: 2661 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 2658 + - uid: 2662 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 2659 + - uid: 2663 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 2660 + - uid: 2664 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 2661 + - uid: 2665 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 2662 + - uid: 2666 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 2663 + - uid: 2667 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 2664 + - uid: 2668 components: - type: Transform pos: -27.5,-1.5 parent: 2 - - uid: 2665 + - uid: 2669 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 2666 + - uid: 2670 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 2667 + - uid: 2671 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 2668 + - uid: 2672 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 2669 + - uid: 2673 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 2670 + - uid: 2674 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 2671 + - uid: 2675 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 2672 + - uid: 2676 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 2673 + - uid: 2677 components: - type: Transform pos: -23.5,0.5 parent: 2 - - uid: 2674 + - uid: 2678 components: - type: Transform pos: -23.5,1.5 parent: 2 - - uid: 2675 + - uid: 2679 components: - type: Transform pos: -22.5,1.5 parent: 2 - - uid: 2676 + - uid: 2680 components: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 2677 + - uid: 2681 components: - type: Transform pos: -21.5,2.5 parent: 2 - - uid: 2678 + - uid: 2682 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 2679 + - uid: 2683 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 2680 + - uid: 2684 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 2681 + - uid: 2685 components: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 2682 + - uid: 2686 components: - type: Transform pos: -28.5,-2.5 parent: 2 - - uid: 2683 + - uid: 2687 components: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 2684 + - uid: 2688 components: - type: Transform pos: -28.5,-6.5 parent: 2 - - uid: 2685 + - uid: 2689 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 2686 + - uid: 2690 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 2687 + - uid: 2691 components: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 2688 + - uid: 2692 components: - type: Transform pos: -30.5,-5.5 parent: 2 - - uid: 2689 + - uid: 2693 components: - type: Transform pos: -29.5,-5.5 parent: 2 - - uid: 2690 + - uid: 2694 components: - type: Transform pos: -32.5,-0.5 parent: 2 - - uid: 2691 + - uid: 2695 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 2692 + - uid: 2696 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 2693 + - uid: 2697 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 2694 + - uid: 2698 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 2695 + - uid: 2699 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 2696 + - uid: 2700 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 2697 + - uid: 2701 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 2698 + - uid: 2702 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 2699 + - uid: 2703 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 2700 + - uid: 2704 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 2701 + - uid: 2705 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 2702 + - uid: 2706 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 2703 + - uid: 2707 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 2704 + - uid: 2708 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 2705 + - uid: 2709 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 2706 + - uid: 2710 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 2707 + - uid: 2711 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 2708 + - uid: 2712 components: - type: Transform pos: -41.5,-9.5 parent: 2 - - uid: 2709 + - uid: 2713 components: - type: Transform pos: -41.5,-10.5 parent: 2 - - uid: 2710 + - uid: 2714 components: - type: Transform pos: -41.5,-11.5 parent: 2 - - uid: 2711 + - uid: 2715 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 2712 + - uid: 2716 components: - type: Transform pos: -43.5,-11.5 parent: 2 - - uid: 2713 + - uid: 2717 components: - type: Transform pos: -43.5,-12.5 parent: 2 - - uid: 2714 + - uid: 2718 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - uid: 2715 + - uid: 2719 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 2716 + - uid: 2720 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 2717 + - uid: 2721 components: - type: Transform pos: -43.5,-16.5 parent: 2 - - uid: 2718 + - uid: 2722 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 2719 + - uid: 2723 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 2720 + - uid: 2724 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 2721 + - uid: 2725 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 2722 + - uid: 2726 components: - type: Transform pos: -36.5,-18.5 parent: 2 - - uid: 2723 + - uid: 2727 components: - type: Transform pos: -36.5,-17.5 parent: 2 - - uid: 2724 + - uid: 2728 components: - type: Transform pos: -36.5,-16.5 parent: 2 - - uid: 2725 + - uid: 2729 components: - type: Transform pos: -36.5,-15.5 parent: 2 - - uid: 2726 + - uid: 2730 components: - type: Transform pos: -36.5,-14.5 parent: 2 - - uid: 2727 + - uid: 2731 components: - type: Transform pos: -36.5,-13.5 parent: 2 - - uid: 2728 + - uid: 2732 components: - type: Transform pos: -36.5,-12.5 parent: 2 - - uid: 2729 + - uid: 2733 components: - type: Transform pos: -36.5,-11.5 parent: 2 - - uid: 2730 + - uid: 2734 components: - type: Transform pos: -36.5,-10.5 parent: 2 - - uid: 2731 + - uid: 2735 components: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 2732 + - uid: 2736 components: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 2733 + - uid: 2737 components: - type: Transform pos: -36.5,-7.5 parent: 2 - - uid: 2734 + - uid: 2738 components: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 2735 + - uid: 2739 components: - type: Transform pos: -36.5,-5.5 parent: 2 - - uid: 2736 + - uid: 2740 components: - type: Transform pos: -36.5,-4.5 parent: 2 - - uid: 2737 + - uid: 2741 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 2738 + - uid: 2742 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 2739 + - uid: 2743 components: - type: Transform pos: -36.5,-1.5 parent: 2 - - uid: 2740 + - uid: 2744 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 2741 + - uid: 2745 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - uid: 2742 + - uid: 2746 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 2743 + - uid: 2747 components: - type: Transform pos: -37.5,0.5 parent: 2 - - uid: 2744 + - uid: 2748 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 2745 + - uid: 2749 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - uid: 2746 + - uid: 2750 components: - type: Transform pos: -39.5,-11.5 parent: 2 - - uid: 2747 + - uid: 2751 components: - type: Transform pos: -38.5,-11.5 parent: 2 - - uid: 2748 + - uid: 2752 components: - type: Transform pos: -37.5,-11.5 parent: 2 - - uid: 2749 + - uid: 2753 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 2750 + - uid: 2754 components: - type: Transform pos: -38.5,-15.5 parent: 2 - - uid: 2751 + - uid: 2755 components: - type: Transform pos: -39.5,-15.5 parent: 2 - - uid: 2752 + - uid: 2756 components: - type: Transform pos: -40.5,-15.5 parent: 2 - - uid: 2753 + - uid: 2757 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 2754 + - uid: 2758 components: - type: Transform pos: 68.5,17.5 parent: 2 - - uid: 2755 + - uid: 2759 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 2756 + - uid: 2760 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 2757 + - uid: 2761 components: - type: Transform pos: 77.5,-43.5 parent: 2 - - uid: 2758 + - uid: 2762 components: - type: Transform pos: 77.5,-44.5 parent: 2 - - uid: 2759 + - uid: 2763 components: - type: Transform pos: 77.5,-45.5 parent: 2 - - uid: 2760 + - uid: 2764 components: - type: Transform pos: 77.5,-46.5 parent: 2 - - uid: 2761 + - uid: 2765 components: - type: Transform pos: 76.5,-44.5 parent: 2 - - uid: 2762 + - uid: 2766 components: - type: Transform pos: 75.5,-44.5 parent: 2 - - uid: 2763 + - uid: 2767 components: - type: Transform pos: 74.5,-44.5 parent: 2 - - uid: 2764 + - uid: 2768 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 2765 + - uid: 2769 components: - type: Transform pos: 72.5,-44.5 parent: 2 - - uid: 2766 + - uid: 2770 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 2767 + - uid: 2771 components: - type: Transform pos: 70.5,-44.5 parent: 2 - - uid: 2768 + - uid: 2772 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 2769 + - uid: 2773 components: - type: Transform pos: 73.5,-43.5 parent: 2 - - uid: 2770 + - uid: 2774 components: - type: Transform pos: 73.5,-42.5 parent: 2 - - uid: 2771 + - uid: 2775 components: - type: Transform pos: 73.5,-41.5 parent: 2 - - uid: 2772 + - uid: 2776 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 2773 + - uid: 2777 components: - type: Transform pos: 73.5,-39.5 parent: 2 - - uid: 2774 + - uid: 2778 components: - type: Transform pos: 73.5,-38.5 parent: 2 - - uid: 2775 + - uid: 2779 components: - type: Transform pos: 73.5,-37.5 parent: 2 - - uid: 2776 + - uid: 2780 components: - type: Transform pos: 73.5,-45.5 parent: 2 - - uid: 2777 + - uid: 2781 components: - type: Transform pos: 73.5,-46.5 parent: 2 - - uid: 2778 + - uid: 2782 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 2779 + - uid: 2783 components: - type: Transform pos: 73.5,-48.5 parent: 2 - - uid: 2780 + - uid: 2784 components: - type: Transform pos: 73.5,-49.5 parent: 2 - - uid: 2781 + - uid: 2785 components: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 2782 + - uid: 2786 components: - type: Transform pos: 72.5,-49.5 parent: 2 - - uid: 2783 + - uid: 2787 components: - type: Transform pos: 71.5,-49.5 parent: 2 - - uid: 2784 + - uid: 2788 components: - type: Transform pos: 70.5,-49.5 parent: 2 - - uid: 2785 + - uid: 2789 components: - type: Transform pos: 69.5,-49.5 parent: 2 - - uid: 2786 + - uid: 2790 components: - type: Transform pos: 69.5,-43.5 parent: 2 - - uid: 2787 + - uid: 2791 components: - type: Transform pos: 69.5,-42.5 parent: 2 - - uid: 2788 + - uid: 2792 components: - type: Transform pos: 69.5,-41.5 parent: 2 - - uid: 2789 + - uid: 2793 components: - type: Transform pos: 69.5,-40.5 parent: 2 - - uid: 2790 + - uid: 2794 components: - type: Transform pos: 68.5,-40.5 parent: 2 - - uid: 2791 + - uid: 2795 components: - type: Transform pos: 67.5,-40.5 parent: 2 - - uid: 2792 + - uid: 2796 components: - type: Transform pos: 66.5,-40.5 parent: 2 - - uid: 2793 + - uid: 2797 components: - type: Transform pos: 65.5,-40.5 parent: 2 - - uid: 2794 + - uid: 2798 components: - type: Transform pos: 64.5,-40.5 parent: 2 - - uid: 2811 + - uid: 2799 components: - type: Transform pos: 81.5,-18.5 parent: 2 - - uid: 2812 + - uid: 2800 components: - type: Transform pos: 80.5,-18.5 parent: 2 - - uid: 2813 + - uid: 2801 components: - type: Transform pos: 79.5,-18.5 parent: 2 - - uid: 2814 + - uid: 2802 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 2815 + - uid: 2803 components: - type: Transform pos: 77.5,-18.5 parent: 2 - - uid: 2816 + - uid: 2804 components: - type: Transform pos: 77.5,-21.5 parent: 2 - - uid: 2817 + - uid: 2805 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 2818 + - uid: 2806 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 2819 + - uid: 2807 components: - type: Transform pos: 80.5,-21.5 parent: 2 - - uid: 2855 + - uid: 2808 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 2856 + - uid: 2809 components: - type: Transform pos: 71.5,-15.5 parent: 2 - - uid: 2857 + - uid: 2810 components: - type: Transform pos: 71.5,-16.5 parent: 2 - - uid: 2858 + - uid: 2811 components: - type: Transform pos: 71.5,-17.5 parent: 2 - - uid: 2859 + - uid: 2812 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 2860 + - uid: 2813 components: - type: Transform pos: 71.5,-19.5 parent: 2 - - uid: 2861 + - uid: 2814 components: - type: Transform pos: 71.5,-20.5 parent: 2 - - uid: 2862 + - uid: 2815 components: - type: Transform pos: 71.5,-21.5 parent: 2 - - uid: 2863 + - uid: 2816 components: - type: Transform pos: 71.5,-22.5 parent: 2 - - uid: 2864 + - uid: 2817 components: - type: Transform pos: 71.5,-23.5 parent: 2 - - uid: 2865 + - uid: 2818 components: - type: Transform pos: 71.5,-24.5 parent: 2 - - uid: 2866 + - uid: 2819 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 2867 + - uid: 2820 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 2868 + - uid: 2821 components: - type: Transform pos: 68.5,-18.5 parent: 2 - - uid: 2869 + - uid: 2822 components: - type: Transform pos: 67.5,-18.5 parent: 2 - - uid: 2870 + - uid: 2823 components: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 2871 + - uid: 2824 components: - type: Transform pos: 65.5,-18.5 parent: 2 - - uid: 2872 + - uid: 2825 components: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 2873 + - uid: 2826 components: - type: Transform pos: 66.5,-21.5 parent: 2 - - uid: 2874 + - uid: 2827 components: - type: Transform pos: 67.5,-21.5 parent: 2 - - uid: 2875 + - uid: 2828 components: - type: Transform pos: 68.5,-21.5 parent: 2 - - uid: 2876 + - uid: 2829 components: - type: Transform pos: 69.5,-21.5 parent: 2 - - uid: 2877 + - uid: 2830 components: - type: Transform pos: 70.5,-21.5 parent: 2 - - uid: 2878 + - uid: 2831 components: - type: Transform pos: 71.5,-21.5 parent: 2 - - uid: 2879 + - uid: 2832 components: - type: Transform pos: 72.5,-21.5 parent: 2 - - uid: 2880 + - uid: 2833 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - uid: 2881 + - uid: 2834 components: - type: Transform pos: 74.5,-21.5 parent: 2 - - uid: 2882 + - uid: 2835 components: - type: Transform pos: 75.5,-21.5 parent: 2 - - uid: 2883 + - uid: 2836 components: - type: Transform pos: 75.5,-18.5 parent: 2 - - uid: 2884 + - uid: 2837 components: - type: Transform pos: 74.5,-18.5 parent: 2 - - uid: 2885 + - uid: 2838 components: - type: Transform pos: 73.5,-18.5 parent: 2 - - uid: 2886 + - uid: 2839 components: - type: Transform pos: 72.5,-18.5 parent: 2 - - uid: 2887 + - uid: 2840 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 2888 + - uid: 2841 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 2889 + - uid: 2842 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 2890 + - uid: 2843 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 2891 + - uid: 2844 components: - type: Transform pos: -38.5,34.5 parent: 2 - - uid: 2892 + - uid: 2845 components: - type: Transform pos: -38.5,33.5 parent: 2 - - uid: 2893 + - uid: 2846 components: - type: Transform pos: -38.5,32.5 parent: 2 - - uid: 2894 + - uid: 2847 components: - type: Transform pos: -38.5,31.5 parent: 2 - - uid: 2895 + - uid: 2848 components: - type: Transform pos: -39.5,34.5 parent: 2 - - uid: 2896 + - uid: 2849 components: - type: Transform pos: -40.5,34.5 parent: 2 - - uid: 2897 + - uid: 2850 components: - type: Transform pos: -37.5,32.5 parent: 2 - - uid: 2898 + - uid: 2851 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 2899 + - uid: 2852 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 2900 + - uid: 2853 components: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 2901 + - uid: 2854 components: - type: Transform pos: -39.5,28.5 parent: 2 - - uid: 2902 + - uid: 2855 components: - type: Transform pos: -38.5,28.5 parent: 2 - - uid: 2903 + - uid: 2856 components: - type: Transform pos: -38.5,27.5 parent: 2 - - uid: 2904 + - uid: 2857 components: - type: Transform pos: -37.5,27.5 parent: 2 - - uid: 2905 + - uid: 2858 components: - type: Transform pos: -37.5,26.5 parent: 2 - - uid: 2906 + - uid: 2859 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 2907 + - uid: 2860 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 2908 + - uid: 2861 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 2909 + - uid: 2862 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 2910 + - uid: 2863 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 2911 + - uid: 2864 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 2912 + - uid: 2865 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 2913 + - uid: 2866 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 2914 + - uid: 2867 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 2915 + - uid: 2868 components: - type: Transform pos: -44.5,40.5 parent: 2 - - uid: 2916 + - uid: 2869 components: - type: Transform pos: -44.5,41.5 parent: 2 - - uid: 2917 + - uid: 2870 components: - type: Transform pos: -44.5,42.5 parent: 2 - - uid: 2918 + - uid: 2871 components: - type: Transform pos: -43.5,42.5 parent: 2 - - uid: 2919 + - uid: 2872 components: - type: Transform pos: -42.5,42.5 parent: 2 - - uid: 2920 + - uid: 2873 components: - type: Transform pos: -41.5,42.5 parent: 2 - - uid: 2921 + - uid: 2874 components: - type: Transform pos: -40.5,42.5 parent: 2 - - uid: 2922 + - uid: 2875 components: - type: Transform pos: -39.5,42.5 parent: 2 - - uid: 2923 + - uid: 2876 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 2924 + - uid: 2877 components: - type: Transform pos: -37.5,42.5 parent: 2 - - uid: 2925 + - uid: 2878 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 2926 + - uid: 2879 components: - type: Transform pos: -35.5,42.5 parent: 2 - - uid: 2927 + - uid: 2880 components: - type: Transform pos: -35.5,41.5 parent: 2 - - uid: 2928 + - uid: 2881 components: - type: Transform pos: -35.5,40.5 parent: 2 - - uid: 2929 + - uid: 2882 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 2930 + - uid: 2883 components: - type: Transform pos: -35.5,38.5 parent: 2 - - uid: 2931 + - uid: 2884 components: - type: Transform pos: -35.5,37.5 parent: 2 - - uid: 2932 + - uid: 2885 components: - type: Transform pos: -35.5,36.5 parent: 2 - - uid: 2933 + - uid: 2886 components: - type: Transform pos: -35.5,35.5 parent: 2 - - uid: 2934 + - uid: 2887 components: - type: Transform pos: -35.5,34.5 parent: 2 - - uid: 2935 + - uid: 2888 components: - type: Transform pos: -35.5,33.5 parent: 2 - - uid: 2936 + - uid: 2889 components: - type: Transform pos: -35.5,32.5 parent: 2 - - uid: 2937 + - uid: 2890 components: - type: Transform pos: -35.5,31.5 parent: 2 - - uid: 2938 + - uid: 2891 components: - type: Transform pos: -35.5,30.5 parent: 2 - - uid: 2939 + - uid: 2892 components: - type: Transform pos: -35.5,29.5 parent: 2 - - uid: 2940 + - uid: 2893 components: - type: Transform pos: -35.5,28.5 parent: 2 - - uid: 2941 + - uid: 2894 components: - type: Transform pos: -35.5,27.5 parent: 2 - - uid: 2942 + - uid: 2895 components: - type: Transform pos: -35.5,26.5 parent: 2 - - uid: 2943 + - uid: 2896 components: - type: Transform pos: -35.5,25.5 parent: 2 - - uid: 2944 + - uid: 2897 components: - type: Transform pos: -35.5,24.5 parent: 2 - - uid: 2945 + - uid: 2898 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 2946 + - uid: 2899 components: - type: Transform pos: -36.5,23.5 parent: 2 - - uid: 2947 + - uid: 2900 components: - type: Transform pos: -37.5,23.5 parent: 2 - - uid: 2948 + - uid: 2901 components: - type: Transform pos: -38.5,23.5 parent: 2 - - uid: 2949 + - uid: 2902 components: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 2950 + - uid: 2903 components: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 2951 + - uid: 2904 components: - type: Transform pos: -32.5,23.5 parent: 2 - - uid: 2952 + - uid: 2905 components: - type: Transform pos: -31.5,23.5 parent: 2 - - uid: 2953 + - uid: 2906 components: - type: Transform pos: -30.5,23.5 parent: 2 - - uid: 2954 + - uid: 2907 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 2955 + - uid: 2908 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 2956 + - uid: 2909 components: - type: Transform pos: -30.5,8.5 parent: 2 - - uid: 2957 + - uid: 2910 components: - type: Transform pos: -30.5,9.5 parent: 2 - - uid: 2958 + - uid: 2911 components: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 2959 + - uid: 2912 components: - type: Transform pos: -30.5,11.5 parent: 2 - - uid: 2960 + - uid: 2913 components: - type: Transform pos: -30.5,12.5 parent: 2 - - uid: 2961 + - uid: 2914 components: - type: Transform pos: -30.5,13.5 parent: 2 - - uid: 2962 + - uid: 2915 components: - type: Transform pos: -30.5,14.5 parent: 2 - - uid: 2963 + - uid: 2916 components: - type: Transform pos: -30.5,15.5 parent: 2 - - uid: 2964 + - uid: 2917 components: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 2965 + - uid: 2918 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 2966 + - uid: 2919 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 2967 + - uid: 2920 components: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 2968 + - uid: 2921 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 2969 + - uid: 2922 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 2970 + - uid: 2923 components: - type: Transform pos: -30.5,22.5 parent: 2 - - uid: 2971 + - uid: 2924 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 2972 + - uid: 2925 components: - type: Transform pos: -29.5,17.5 parent: 2 - - uid: 2973 + - uid: 2926 components: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 2974 + - uid: 2927 components: - type: Transform pos: -27.5,17.5 parent: 2 - - uid: 2975 + - uid: 2928 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 2976 + - uid: 2929 components: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 2977 + - uid: 2930 components: - type: Transform pos: -24.5,17.5 parent: 2 - - uid: 2978 + - uid: 2931 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 2979 + - uid: 2932 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 2980 + - uid: 2933 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 2981 + - uid: 2934 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 2982 + - uid: 2935 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 2983 + - uid: 2936 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 2984 + - uid: 2937 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 2985 + - uid: 2938 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 2986 + - uid: 2939 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 2987 + - uid: 2940 components: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 2988 + - uid: 2941 components: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 2989 + - uid: 2942 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 2990 + - uid: 2943 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 2991 + - uid: 2944 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 2992 + - uid: 2945 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 2993 + - uid: 2946 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 2994 + - uid: 2947 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 2995 + - uid: 2948 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 2996 + - uid: 2949 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 2997 + - uid: 2950 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 2998 + - uid: 2951 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 2999 + - uid: 2952 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 3000 + - uid: 2953 components: - type: Transform pos: -37.5,43.5 parent: 2 - - uid: 3001 + - uid: 2954 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 3002 + - uid: 2955 components: - type: Transform pos: -11.5,82.5 parent: 2 - - uid: 3003 + - uid: 2956 components: - type: Transform pos: -11.5,83.5 parent: 2 - - uid: 3004 + - uid: 2957 components: - type: Transform pos: -11.5,84.5 parent: 2 - - uid: 3005 + - uid: 2958 components: - type: Transform pos: -11.5,85.5 parent: 2 - - uid: 3006 + - uid: 2959 components: - type: Transform pos: -11.5,86.5 parent: 2 - - uid: 3007 + - uid: 2960 components: - type: Transform pos: -11.5,87.5 parent: 2 - - uid: 3008 + - uid: 2961 components: - type: Transform pos: -11.5,88.5 parent: 2 - - uid: 3009 + - uid: 2962 components: - type: Transform pos: -11.5,89.5 parent: 2 - - uid: 3010 + - uid: 2963 components: - type: Transform pos: -11.5,90.5 parent: 2 - - uid: 3011 + - uid: 2964 components: - type: Transform pos: -11.5,91.5 parent: 2 - - uid: 3012 + - uid: 2965 components: - type: Transform pos: -11.5,92.5 parent: 2 - - uid: 3013 + - uid: 2966 components: - type: Transform pos: -11.5,93.5 parent: 2 - - uid: 3014 + - uid: 2967 components: - type: Transform pos: -11.5,94.5 parent: 2 - - uid: 3015 + - uid: 2968 components: - type: Transform pos: -11.5,95.5 parent: 2 - - uid: 3016 + - uid: 2969 components: - type: Transform pos: -11.5,96.5 parent: 2 - - uid: 3017 + - uid: 2970 components: - type: Transform pos: -11.5,97.5 parent: 2 - - uid: 3018 + - uid: 2971 components: - type: Transform pos: -11.5,98.5 parent: 2 - - uid: 3019 + - uid: 2972 components: - type: Transform pos: -11.5,84.5 parent: 2 - - uid: 3020 + - uid: 2973 components: - type: Transform pos: -10.5,84.5 parent: 2 - - uid: 3021 + - uid: 2974 components: - type: Transform pos: -9.5,84.5 parent: 2 - - uid: 3022 + - uid: 2975 components: - type: Transform pos: -8.5,84.5 parent: 2 - - uid: 3023 + - uid: 2976 components: - type: Transform pos: -11.5,79.5 parent: 2 - - uid: 3024 + - uid: 2977 components: - type: Transform pos: -11.5,80.5 parent: 2 - - uid: 3025 + - uid: 2978 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 3026 + - uid: 2979 components: - type: Transform pos: -11.5,78.5 parent: 2 - - uid: 3027 + - uid: 2980 components: - type: Transform pos: -11.5,77.5 parent: 2 - - uid: 3028 + - uid: 2981 components: - type: Transform pos: -11.5,76.5 parent: 2 - - uid: 3029 + - uid: 2982 components: - type: Transform pos: -11.5,75.5 parent: 2 - - uid: 3030 + - uid: 2983 components: - type: Transform pos: -11.5,74.5 parent: 2 - - uid: 3031 + - uid: 2984 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 3032 + - uid: 2985 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 3033 + - uid: 2986 components: - type: Transform pos: -11.5,71.5 parent: 2 - - uid: 3034 + - uid: 2987 components: - type: Transform pos: -10.5,77.5 parent: 2 - - uid: 3035 + - uid: 2988 components: - type: Transform pos: -9.5,77.5 parent: 2 - - uid: 3036 + - uid: 2989 components: - type: Transform pos: -8.5,77.5 parent: 2 - - uid: 3037 + - uid: 2990 components: - type: Transform pos: -12.5,77.5 parent: 2 - - uid: 3038 + - uid: 2991 components: - type: Transform pos: -13.5,77.5 parent: 2 - - uid: 3039 + - uid: 2992 components: - type: Transform pos: -14.5,77.5 parent: 2 - - uid: 3040 + - uid: 2993 components: - type: Transform pos: -12.5,80.5 parent: 2 - - uid: 3041 + - uid: 2994 components: - type: Transform pos: -13.5,80.5 parent: 2 - - uid: 3042 + - uid: 2995 components: - type: Transform pos: -13.5,81.5 parent: 2 - - uid: 3043 + - uid: 2996 components: - type: Transform pos: -13.5,82.5 parent: 2 - - uid: 3044 + - uid: 2997 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 3045 + - uid: 2998 components: - type: Transform pos: -12.5,84.5 parent: 2 - - uid: 3046 + - uid: 2999 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 3047 + - uid: 3000 components: - type: Transform pos: -7.5,69.5 parent: 2 - - uid: 3048 + - uid: 3001 components: - type: Transform pos: -7.5,68.5 parent: 2 - - uid: 3049 + - uid: 3002 components: - type: Transform pos: -8.5,68.5 parent: 2 - - uid: 3050 + - uid: 3003 components: - type: Transform pos: -9.5,68.5 parent: 2 - - uid: 3051 + - uid: 3004 components: - type: Transform pos: -10.5,68.5 parent: 2 - - uid: 3052 + - uid: 3005 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 3053 + - uid: 3006 components: - type: Transform pos: -12.5,68.5 parent: 2 - - uid: 3054 + - uid: 3007 components: - type: Transform pos: -13.5,68.5 parent: 2 - - uid: 3055 + - uid: 3008 components: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 3056 + - uid: 3009 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 3057 + - uid: 3010 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 3058 + - uid: 3011 components: - type: Transform pos: -17.5,68.5 parent: 2 - - uid: 3059 + - uid: 3012 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 3060 + - uid: 3013 components: - type: Transform pos: -19.5,68.5 parent: 2 - - uid: 3061 + - uid: 3014 components: - type: Transform pos: -20.5,68.5 parent: 2 - - uid: 3062 + - uid: 3015 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 3063 + - uid: 3016 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 3064 + - uid: 3017 components: - type: Transform pos: -23.5,68.5 parent: 2 - - uid: 3065 + - uid: 3018 components: - type: Transform pos: -24.5,68.5 parent: 2 - - uid: 3066 + - uid: 3019 components: - type: Transform pos: -25.5,68.5 parent: 2 - - uid: 3067 + - uid: 3020 components: - type: Transform pos: -26.5,68.5 parent: 2 - - uid: 3068 + - uid: 3021 components: - type: Transform pos: -27.5,68.5 parent: 2 - - uid: 3069 + - uid: 3022 components: - type: Transform pos: -28.5,68.5 parent: 2 - - uid: 3070 + - uid: 3023 components: - type: Transform pos: -29.5,68.5 parent: 2 - - uid: 3071 + - uid: 3024 components: - type: Transform pos: -29.5,69.5 parent: 2 - - uid: 3072 + - uid: 3025 components: - type: Transform pos: -29.5,67.5 parent: 2 - - uid: 3073 + - uid: 3026 components: - type: Transform pos: -24.5,67.5 parent: 2 - - uid: 3074 + - uid: 3027 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 3075 + - uid: 3028 components: - type: Transform pos: -26.5,65.5 parent: 2 - - uid: 3076 + - uid: 3029 components: - type: Transform pos: -5.5,68.5 parent: 2 - - uid: 3077 + - uid: 3030 components: - type: Transform pos: -6.5,68.5 parent: 2 - - uid: 3078 + - uid: 3031 components: - type: Transform pos: -24.5,65.5 parent: 2 - - uid: 3079 + - uid: 3032 components: - type: Transform pos: -25.5,65.5 parent: 2 - - uid: 3080 + - uid: 3033 components: - type: Transform pos: -26.5,60.5 parent: 2 - - uid: 3081 + - uid: 3034 components: - type: Transform pos: -27.5,60.5 parent: 2 - - uid: 3082 + - uid: 3035 components: - type: Transform pos: -25.5,61.5 parent: 2 - - uid: 3083 + - uid: 3036 components: - type: Transform pos: -24.5,61.5 parent: 2 - - uid: 3084 + - uid: 3037 components: - type: Transform pos: -25.5,59.5 parent: 2 - - uid: 3085 + - uid: 3038 components: - type: Transform pos: -24.5,59.5 parent: 2 - - uid: 3086 + - uid: 3039 components: - type: Transform pos: -25.5,60.5 parent: 2 - - uid: 3087 + - uid: 3040 components: - type: Transform pos: -25.5,62.5 parent: 2 - - uid: 3088 + - uid: 3041 components: - type: Transform pos: -25.5,63.5 parent: 2 - - uid: 3089 + - uid: 3042 components: - type: Transform pos: -24.5,63.5 parent: 2 - - uid: 3090 + - uid: 3043 components: - type: Transform pos: -25.5,64.5 parent: 2 - - uid: 3091 + - uid: 3044 components: - type: Transform pos: -4.5,68.5 parent: 2 - - uid: 3092 + - uid: 3045 components: - type: Transform pos: -3.5,68.5 parent: 2 - - uid: 3093 + - uid: 3046 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 3094 + - uid: 3047 components: - type: Transform pos: -1.5,68.5 parent: 2 - - uid: 3095 + - uid: 3048 components: - type: Transform pos: -0.5,68.5 parent: 2 - - uid: 3096 + - uid: 3049 components: - type: Transform pos: 0.49999997,68.5 parent: 2 - - uid: 3097 + - uid: 3050 components: - type: Transform pos: 1.5,68.5 parent: 2 - - uid: 3098 + - uid: 3051 components: - type: Transform pos: 2.5,68.5 parent: 2 - - uid: 3099 + - uid: 3052 components: - type: Transform pos: 3.5,68.5 parent: 2 - - uid: 3100 + - uid: 3053 components: - type: Transform pos: 4.5,68.5 parent: 2 - - uid: 3101 + - uid: 3054 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 3102 + - uid: 3055 components: - type: Transform pos: 6.5,68.5 parent: 2 - - uid: 3103 + - uid: 3056 components: - type: Transform pos: 7.5,68.5 parent: 2 - - uid: 3104 + - uid: 3057 components: - type: Transform pos: 8.5,68.5 parent: 2 - - uid: 3105 + - uid: 3058 components: - type: Transform pos: 6.5,67.5 parent: 2 - - uid: 3106 + - uid: 3059 components: - type: Transform pos: 6.5,69.5 parent: 2 - - uid: 3107 + - uid: 3060 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 3108 + - uid: 3061 components: - type: Transform pos: -11.5,67.5 parent: 2 - - uid: 3109 + - uid: 3062 components: - type: Transform pos: -30.5,84.5 parent: 2 - - uid: 3110 + - uid: 3063 components: - type: Transform pos: -29.5,84.5 parent: 2 - - uid: 3111 + - uid: 3064 components: - type: Transform pos: -29.5,85.5 parent: 2 - - uid: 3112 + - uid: 3065 components: - type: Transform pos: -29.5,86.5 parent: 2 - - uid: 3113 + - uid: 3066 components: - type: Transform pos: -29.5,87.5 parent: 2 - - uid: 3114 + - uid: 3067 components: - type: Transform pos: -29.5,88.5 parent: 2 - - uid: 3115 + - uid: 3068 components: - type: Transform pos: -29.5,89.5 parent: 2 - - uid: 3116 + - uid: 3069 components: - type: Transform pos: -29.5,90.5 parent: 2 - - uid: 3117 + - uid: 3070 components: - type: Transform pos: -29.5,91.5 parent: 2 - - uid: 3118 + - uid: 3071 components: - type: Transform pos: -29.5,92.5 parent: 2 - - uid: 3119 + - uid: 3072 components: - type: Transform pos: -29.5,93.5 parent: 2 - - uid: 3120 + - uid: 3073 components: - type: Transform pos: -29.5,94.5 parent: 2 - - uid: 3121 + - uid: 3074 components: - type: Transform pos: -29.5,95.5 parent: 2 - - uid: 3122 + - uid: 3075 components: - type: Transform pos: -29.5,96.5 parent: 2 - - uid: 3123 + - uid: 3076 components: - type: Transform pos: -29.5,97.5 parent: 2 - - uid: 3124 + - uid: 3077 components: - type: Transform pos: -29.5,98.5 parent: 2 - - uid: 3125 + - uid: 3078 components: - type: Transform pos: -29.5,84.5 parent: 2 - - uid: 3126 + - uid: 3079 components: - type: Transform pos: -29.5,83.5 parent: 2 - - uid: 3127 + - uid: 3080 components: - type: Transform pos: -29.5,82.5 parent: 2 - - uid: 3128 + - uid: 3081 components: - type: Transform pos: -29.5,81.5 parent: 2 - - uid: 3129 + - uid: 3082 components: - type: Transform pos: -29.5,80.5 parent: 2 - - uid: 3130 + - uid: 3083 components: - type: Transform pos: -29.5,79.5 parent: 2 - - uid: 3131 + - uid: 3084 components: - type: Transform pos: -29.5,78.5 parent: 2 - - uid: 3132 + - uid: 3085 components: - type: Transform pos: -29.5,77.5 parent: 2 - - uid: 3133 + - uid: 3086 components: - type: Transform pos: -29.5,76.5 parent: 2 - - uid: 3134 + - uid: 3087 components: - type: Transform pos: -29.5,75.5 parent: 2 - - uid: 3135 + - uid: 3088 components: - type: Transform pos: -29.5,74.5 parent: 2 - - uid: 3136 + - uid: 3089 components: - type: Transform pos: -29.5,73.5 parent: 2 - - uid: 3137 + - uid: 3090 components: - type: Transform pos: -29.5,72.5 parent: 2 - - uid: 3138 + - uid: 3091 components: - type: Transform pos: -29.5,71.5 parent: 2 - - uid: 3139 + - uid: 3092 components: - type: Transform pos: -28.5,77.5 parent: 2 - - uid: 3140 + - uid: 3093 components: - type: Transform pos: -27.5,77.5 parent: 2 - - uid: 3141 + - uid: 3094 components: - type: Transform pos: -26.5,77.5 parent: 2 - - uid: 3142 + - uid: 3095 components: - type: Transform pos: -31.5,77.5 parent: 2 - - uid: 3143 + - uid: 3096 components: - type: Transform pos: -32.5,77.5 parent: 2 - - uid: 3144 + - uid: 3097 components: - type: Transform pos: -30.5,77.5 parent: 2 - - uid: 3145 + - uid: 3098 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 3146 + - uid: 3099 components: - type: Transform pos: -31.5,82.5 parent: 2 - - uid: 3147 + - uid: 3100 components: - type: Transform pos: -31.5,81.5 parent: 2 - - uid: 3148 + - uid: 3101 components: - type: Transform pos: -31.5,80.5 parent: 2 - - uid: 3149 + - uid: 3102 components: - type: Transform pos: -30.5,80.5 parent: 2 - - uid: 3150 + - uid: 3103 components: - type: Transform pos: -28.5,84.5 parent: 2 - - uid: 3151 + - uid: 3104 components: - type: Transform pos: -27.5,84.5 parent: 2 - - uid: 3152 + - uid: 3105 components: - type: Transform pos: -26.5,84.5 parent: 2 - - uid: 3153 + - uid: 3106 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 3154 + - uid: 3107 components: - type: Transform pos: -0.5,58.5 parent: 2 - - uid: 3155 + - uid: 3108 components: - type: Transform pos: -0.5,57.5 parent: 2 - - uid: 3156 + - uid: 3109 components: - type: Transform pos: -1.5,57.5 parent: 2 - - uid: 3157 + - uid: 3110 components: - type: Transform pos: -2.5,57.5 parent: 2 - - uid: 3158 + - uid: 3111 components: - type: Transform pos: -3.5,57.5 parent: 2 - - uid: 3159 + - uid: 3112 components: - type: Transform pos: -4.5,57.5 parent: 2 - - uid: 3160 + - uid: 3113 components: - type: Transform pos: -5.5,57.5 parent: 2 - - uid: 3161 + - uid: 3114 components: - type: Transform pos: -6.5,57.5 parent: 2 - - uid: 3162 + - uid: 3115 components: - type: Transform pos: -7.5,57.5 parent: 2 - - uid: 3163 + - uid: 3116 components: - type: Transform pos: -8.5,57.5 parent: 2 - - uid: 3164 + - uid: 3117 components: - type: Transform pos: -9.5,57.5 parent: 2 - - uid: 3165 + - uid: 3118 components: - type: Transform pos: -10.5,57.5 parent: 2 - - uid: 3166 + - uid: 3119 components: - type: Transform pos: -11.5,57.5 parent: 2 - - uid: 3167 + - uid: 3120 components: - type: Transform pos: -12.5,57.5 parent: 2 - - uid: 3168 + - uid: 3121 components: - type: Transform pos: -13.5,57.5 parent: 2 - - uid: 3169 + - uid: 3122 components: - type: Transform pos: -14.5,57.5 parent: 2 - - uid: 3170 + - uid: 3123 components: - type: Transform pos: -15.5,57.5 parent: 2 - - uid: 3171 + - uid: 3124 components: - type: Transform pos: -16.5,57.5 parent: 2 - - uid: 3172 + - uid: 3125 components: - type: Transform pos: -17.5,57.5 parent: 2 - - uid: 3173 + - uid: 3126 components: - type: Transform pos: -18.5,57.5 parent: 2 - - uid: 3174 + - uid: 3127 components: - type: Transform pos: -18.5,57.5 parent: 2 - - uid: 3175 + - uid: 3128 components: - type: Transform pos: -4.5,58.5 parent: 2 - - uid: 3176 + - uid: 3129 components: - type: Transform pos: -4.5,59.5 parent: 2 - - uid: 3177 + - uid: 3130 components: - type: Transform pos: -4.5,60.5 parent: 2 - - uid: 3178 + - uid: 3131 components: - type: Transform pos: -4.5,61.5 parent: 2 - - uid: 3179 + - uid: 3132 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 3180 + - uid: 3133 components: - type: Transform pos: -4.5,63.5 parent: 2 - - uid: 3181 + - uid: 3134 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 3182 + - uid: 3135 components: - type: Transform pos: -4.5,65.5 parent: 2 - - uid: 3183 + - uid: 3136 components: - type: Transform pos: -18.5,58.5 parent: 2 - - uid: 3184 + - uid: 3137 components: - type: Transform pos: -18.5,59.5 parent: 2 - - uid: 3185 + - uid: 3138 components: - type: Transform pos: -18.5,60.5 parent: 2 - - uid: 3186 + - uid: 3139 components: - type: Transform pos: -18.5,61.5 parent: 2 - - uid: 3187 + - uid: 3140 components: - type: Transform pos: -18.5,62.5 parent: 2 - - uid: 3188 + - uid: 3141 components: - type: Transform pos: -18.5,63.5 parent: 2 - - uid: 3189 + - uid: 3142 components: - type: Transform pos: -18.5,64.5 parent: 2 - - uid: 3190 + - uid: 3143 components: - type: Transform pos: -18.5,65.5 parent: 2 - - uid: 3191 + - uid: 3144 components: - type: Transform pos: -17.5,62.5 parent: 2 - - uid: 3192 + - uid: 3145 components: - type: Transform pos: -16.5,62.5 parent: 2 - - uid: 3193 + - uid: 3146 components: - type: Transform pos: -15.5,62.5 parent: 2 - - uid: 3194 + - uid: 3147 components: - type: Transform pos: -19.5,62.5 parent: 2 - - uid: 3195 + - uid: 3148 components: - type: Transform pos: -20.5,62.5 parent: 2 - - uid: 3196 + - uid: 3149 components: - type: Transform pos: -21.5,62.5 parent: 2 - - uid: 3197 + - uid: 3150 components: - type: Transform pos: -7.5,62.5 parent: 2 - - uid: 3198 + - uid: 3151 components: - type: Transform pos: -6.5,62.5 parent: 2 - - uid: 3199 + - uid: 3152 components: - type: Transform pos: -5.5,62.5 parent: 2 - - uid: 3200 + - uid: 3153 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 3201 + - uid: 3154 components: - type: Transform pos: -3.5,62.5 parent: 2 - - uid: 3202 + - uid: 3155 components: - type: Transform pos: -2.5,62.5 parent: 2 - - uid: 3203 + - uid: 3156 components: - type: Transform pos: -1.5,62.5 parent: 2 - - uid: 3204 + - uid: 3157 components: - type: Transform pos: 0.49999997,57.5 parent: 2 - - uid: 3205 + - uid: 3158 components: - type: Transform pos: 1.5,57.5 parent: 2 - - uid: 3206 + - uid: 3159 components: - type: Transform pos: 2.5,57.5 parent: 2 - - uid: 3207 + - uid: 3160 components: - type: Transform pos: 3.5,57.5 parent: 2 - - uid: 3208 + - uid: 3161 components: - type: Transform pos: 2.5,58.5 parent: 2 - - uid: 3209 + - uid: 3162 components: - type: Transform pos: -0.5,56.5 parent: 2 - - uid: 3210 + - uid: 3163 components: - type: Transform pos: -18.5,56.5 parent: 2 - - uid: 3211 + - uid: 3164 components: - type: Transform pos: -18.5,55.5 parent: 2 - - uid: 3212 + - uid: 3165 components: - type: Transform pos: -20.5,55.5 parent: 2 - - uid: 3213 + - uid: 3166 components: - type: Transform pos: -19.5,55.5 parent: 2 - - uid: 3214 + - uid: 3167 components: - type: Transform pos: -19.5,55.5 parent: 2 - - uid: 3215 + - uid: 3168 components: - type: Transform pos: -18.5,67.5 parent: 2 - - uid: 3216 + - uid: 3169 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 3217 + - uid: 3170 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 3218 + - uid: 3171 components: - type: Transform pos: -24.5,53.5 parent: 2 - - uid: 3219 + - uid: 3172 components: - type: Transform pos: -25.5,53.5 parent: 2 - - uid: 3220 + - uid: 3173 components: - type: Transform pos: -25.5,52.5 parent: 2 - - uid: 3221 + - uid: 3174 components: - type: Transform pos: -25.5,51.5 parent: 2 - - uid: 3222 + - uid: 3175 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 3223 + - uid: 3176 components: - type: Transform pos: -25.5,49.5 parent: 2 - - uid: 3224 + - uid: 3177 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 3225 + - uid: 3178 components: - type: Transform pos: -25.5,47.5 parent: 2 - - uid: 3226 + - uid: 3179 components: - type: Transform pos: -24.5,47.5 parent: 2 - - uid: 3227 + - uid: 3180 components: - type: Transform pos: -26.5,47.5 parent: 2 - - uid: 3228 + - uid: 3181 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 3229 + - uid: 3182 components: - type: Transform pos: -28.5,47.5 parent: 2 - - uid: 3230 + - uid: 3183 components: - type: Transform pos: -29.5,47.5 parent: 2 - - uid: 3231 + - uid: 3184 components: - type: Transform pos: -30.5,47.5 parent: 2 - - uid: 3232 + - uid: 3185 components: - type: Transform pos: -31.5,47.5 parent: 2 - - uid: 3233 + - uid: 3186 components: - type: Transform pos: -32.5,47.5 parent: 2 - - uid: 3234 + - uid: 3187 components: - type: Transform pos: -33.5,47.5 parent: 2 - - uid: 3235 + - uid: 3188 components: - type: Transform pos: -33.5,48.5 parent: 2 - - uid: 3236 + - uid: 3189 components: - type: Transform pos: -33.5,49.5 parent: 2 - - uid: 3237 + - uid: 3190 components: - type: Transform pos: -34.5,49.5 parent: 2 - - uid: 3238 + - uid: 3191 components: - type: Transform pos: -33.5,50.5 parent: 2 - - uid: 3239 + - uid: 3192 components: - type: Transform pos: -33.5,51.5 parent: 2 - - uid: 3240 + - uid: 3193 components: - type: Transform pos: -33.5,52.5 parent: 2 - - uid: 3241 + - uid: 3194 components: - type: Transform pos: -33.5,53.5 parent: 2 - - uid: 3242 + - uid: 3195 components: - type: Transform pos: -32.5,53.5 parent: 2 - - uid: 3243 + - uid: 3196 components: - type: Transform pos: -31.5,53.5 parent: 2 - - uid: 3244 + - uid: 3197 components: - type: Transform pos: -30.5,53.5 parent: 2 - - uid: 3245 + - uid: 3198 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 3246 + - uid: 3199 components: - type: Transform pos: -28.5,53.5 parent: 2 - - uid: 3247 + - uid: 3200 components: - type: Transform pos: -27.5,53.5 parent: 2 - - uid: 3248 + - uid: 3201 components: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 3249 + - uid: 3202 components: - type: Transform pos: -36.5,49.5 parent: 2 - - uid: 3250 + - uid: 3203 components: - type: Transform pos: -37.5,49.5 parent: 2 - - uid: 3251 + - uid: 3204 components: - type: Transform pos: -37.5,48.5 parent: 2 - - uid: 3252 + - uid: 3205 components: - type: Transform pos: -37.5,47.5 parent: 2 - - uid: 3253 + - uid: 3206 components: - type: Transform pos: -37.5,46.5 parent: 2 - - uid: 3254 + - uid: 3207 components: - type: Transform pos: -37.5,45.5 parent: 2 - - uid: 3255 + - uid: 3208 components: - type: Transform pos: -38.5,49.5 parent: 2 - - uid: 3256 + - uid: 3209 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 3257 + - uid: 3210 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 3258 + - uid: 3211 components: - type: Transform pos: -36.5,45.5 parent: 2 - - uid: 3259 + - uid: 3212 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 3260 + - uid: 3213 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 3261 + - uid: 3214 components: - type: Transform pos: -39.5,53.5 parent: 2 - - uid: 3262 + - uid: 3215 components: - type: Transform pos: -38.5,53.5 parent: 2 - - uid: 3263 + - uid: 3216 components: - type: Transform pos: -37.5,53.5 parent: 2 - - uid: 3264 + - uid: 3217 components: - type: Transform pos: -36.5,53.5 parent: 2 - - uid: 3265 + - uid: 3218 components: - type: Transform pos: -36.5,54.5 parent: 2 - - uid: 3266 + - uid: 3219 components: - type: Transform pos: -36.5,55.5 parent: 2 - - uid: 3267 + - uid: 3220 components: - type: Transform pos: -31.5,46.5 parent: 2 - - uid: 3268 + - uid: 3221 components: - type: Transform pos: -31.5,45.5 parent: 2 - - uid: 3269 + - uid: 3222 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 3270 + - uid: 3223 components: - type: Transform pos: -29.5,45.5 parent: 2 - - uid: 3271 + - uid: 3224 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 3272 + - uid: 3225 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 3273 + - uid: 3226 components: - type: Transform pos: -28.5,42.5 parent: 2 - - uid: 3274 + - uid: 3227 components: - type: Transform pos: -29.5,42.5 parent: 2 - - uid: 3275 + - uid: 3228 components: - type: Transform pos: -30.5,42.5 parent: 2 - - uid: 3276 + - uid: 3229 components: - type: Transform pos: -31.5,42.5 parent: 2 - - uid: 3277 + - uid: 3230 components: - type: Transform pos: -32.5,42.5 parent: 2 - - uid: 3278 + - uid: 3231 components: - type: Transform pos: -32.5,41.5 parent: 2 - - uid: 3279 + - uid: 3232 components: - type: Transform pos: -27.5,42.5 parent: 2 - - uid: 3280 + - uid: 3233 components: - type: Transform pos: -26.5,42.5 parent: 2 - - uid: 3281 + - uid: 3234 components: - type: Transform pos: -25.5,42.5 parent: 2 - - uid: 3282 + - uid: 3235 components: - type: Transform pos: -25.5,41.5 parent: 2 - - uid: 3283 + - uid: 3236 components: - type: Transform pos: -29.5,41.5 parent: 2 - - uid: 3284 + - uid: 3237 components: - type: Transform pos: -29.5,40.5 parent: 2 - - uid: 3285 + - uid: 3238 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 3286 + - uid: 3239 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 3287 + - uid: 3240 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 3288 + - uid: 3241 components: - type: Transform pos: -32.5,36.5 parent: 2 - - uid: 3289 + - uid: 3242 components: - type: Transform pos: -32.5,35.5 parent: 2 - - uid: 3290 + - uid: 3243 components: - type: Transform pos: -32.5,34.5 parent: 2 - - uid: 3291 + - uid: 3244 components: - type: Transform pos: -32.5,33.5 parent: 2 - - uid: 3292 + - uid: 3245 components: - type: Transform pos: -32.5,32.5 parent: 2 - - uid: 3293 + - uid: 3246 components: - type: Transform pos: -31.5,35.5 parent: 2 - - uid: 3294 + - uid: 3247 components: - type: Transform pos: -30.5,35.5 parent: 2 - - uid: 3295 + - uid: 3248 components: - type: Transform pos: -29.5,35.5 parent: 2 - - uid: 3296 + - uid: 3249 components: - type: Transform pos: -28.5,35.5 parent: 2 - - uid: 3297 + - uid: 3250 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 3298 + - uid: 3251 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 3299 + - uid: 3252 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 3300 + - uid: 3253 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 3301 + - uid: 3254 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 3302 + - uid: 3255 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 3303 + - uid: 3256 components: - type: Transform pos: -33.5,25.5 parent: 2 - - uid: 3304 + - uid: 3257 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 3305 + - uid: 3258 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 3306 + - uid: 3259 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 3307 + - uid: 3260 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 3308 + - uid: 3261 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 3309 + - uid: 3262 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 3310 + - uid: 3263 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 3311 + - uid: 3264 components: - type: Transform pos: -28.5,34.5 parent: 2 - - uid: 3312 + - uid: 3265 components: - type: Transform pos: -28.5,33.5 parent: 2 - - uid: 3313 + - uid: 3266 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 3314 + - uid: 3267 components: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 3315 + - uid: 3268 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 3316 + - uid: 3269 components: - type: Transform pos: -28.5,36.5 parent: 2 - - uid: 3317 + - uid: 3270 components: - type: Transform pos: -28.5,37.5 parent: 2 - - uid: 3318 + - uid: 3271 components: - type: Transform pos: -28.5,38.5 parent: 2 - - uid: 3319 + - uid: 3272 components: - type: Transform pos: -29.5,38.5 parent: 2 - - uid: 3320 + - uid: 3273 components: - type: Transform pos: -27.5,30.5 parent: 2 - - uid: 3321 + - uid: 3274 components: - type: Transform pos: -26.5,30.5 parent: 2 - - uid: 3322 + - uid: 3275 components: - type: Transform pos: -25.5,30.5 parent: 2 - - uid: 3323 + - uid: 3276 components: - type: Transform pos: -25.5,31.5 parent: 2 - - uid: 3324 + - uid: 3277 components: - type: Transform pos: -25.5,32.5 parent: 2 - - uid: 3325 + - uid: 3278 components: - type: Transform pos: -25.5,33.5 parent: 2 - - uid: 3326 + - uid: 3279 components: - type: Transform pos: -25.5,34.5 parent: 2 - - uid: 3327 + - uid: 3280 components: - type: Transform pos: -25.5,35.5 parent: 2 - - uid: 3328 + - uid: 3281 components: - type: Transform pos: -25.5,36.5 parent: 2 - - uid: 3329 + - uid: 3282 components: - type: Transform pos: -25.5,37.5 parent: 2 - - uid: 3330 + - uid: 3283 components: - type: Transform pos: -25.5,38.5 parent: 2 - - uid: 3331 + - uid: 3284 components: - type: Transform pos: -25.5,39.5 parent: 2 - - uid: 3332 + - uid: 3285 components: - type: Transform pos: -27.5,38.5 parent: 2 - - uid: 3333 + - uid: 3286 components: - type: Transform pos: -26.5,38.5 parent: 2 - - uid: 3334 + - uid: 3287 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 3335 + - uid: 3288 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 3336 + - uid: 3289 components: - type: Transform pos: -14.5,52.5 parent: 2 - - uid: 3337 + - uid: 3290 components: - type: Transform pos: -14.5,51.5 parent: 2 - - uid: 3338 + - uid: 3291 components: - type: Transform pos: -14.5,50.5 parent: 2 - - uid: 3339 + - uid: 3292 components: - type: Transform pos: -14.5,49.5 parent: 2 - - uid: 3340 + - uid: 3293 components: - type: Transform pos: -14.5,48.5 parent: 2 - - uid: 3341 + - uid: 3294 components: - type: Transform pos: -14.5,47.5 parent: 2 - - uid: 3342 + - uid: 3295 components: - type: Transform pos: -16.5,52.5 parent: 2 - - uid: 3343 + - uid: 3296 components: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 3344 + - uid: 3297 components: - type: Transform pos: -18.5,52.5 parent: 2 - - uid: 3345 + - uid: 3298 components: - type: Transform pos: -19.5,52.5 parent: 2 - - uid: 3346 + - uid: 3299 components: - type: Transform pos: -20.5,52.5 parent: 2 - - uid: 3347 + - uid: 3300 components: - type: Transform pos: -21.5,52.5 parent: 2 - - uid: 3348 + - uid: 3301 components: - type: Transform pos: -22.5,52.5 parent: 2 - - uid: 3349 + - uid: 3302 components: - type: Transform pos: -22.5,51.5 parent: 2 - - uid: 3350 + - uid: 3303 components: - type: Transform pos: -22.5,50.5 parent: 2 - - uid: 3351 + - uid: 3304 components: - type: Transform pos: -22.5,49.5 parent: 2 - - uid: 3352 + - uid: 3305 components: - type: Transform pos: -22.5,48.5 parent: 2 - - uid: 3353 + - uid: 3306 components: - type: Transform pos: -22.5,47.5 parent: 2 - - uid: 3354 + - uid: 3307 components: - type: Transform pos: -22.5,46.5 parent: 2 - - uid: 3355 + - uid: 3308 components: - type: Transform pos: -22.5,45.5 parent: 2 - - uid: 3356 + - uid: 3309 components: - type: Transform pos: -22.5,44.5 parent: 2 - - uid: 3357 + - uid: 3310 components: - type: Transform pos: -22.5,43.5 parent: 2 - - uid: 3358 + - uid: 3311 components: - type: Transform pos: -22.5,42.5 parent: 2 - - uid: 3359 + - uid: 3312 components: - type: Transform pos: -22.5,41.5 parent: 2 - - uid: 3360 + - uid: 3313 components: - type: Transform pos: -22.5,40.5 parent: 2 - - uid: 3361 + - uid: 3314 components: - type: Transform pos: -22.5,39.5 parent: 2 - - uid: 3362 + - uid: 3315 components: - type: Transform pos: -22.5,38.5 parent: 2 - - uid: 3363 + - uid: 3316 components: - type: Transform pos: -22.5,37.5 parent: 2 - - uid: 3364 + - uid: 3317 components: - type: Transform pos: -22.5,36.5 parent: 2 - - uid: 3365 + - uid: 3318 components: - type: Transform pos: -22.5,35.5 parent: 2 - - uid: 3366 + - uid: 3319 components: - type: Transform pos: -22.5,34.5 parent: 2 - - uid: 3367 + - uid: 3320 components: - type: Transform pos: -22.5,33.5 parent: 2 - - uid: 3368 + - uid: 3321 components: - type: Transform pos: -22.5,32.5 parent: 2 - - uid: 3369 + - uid: 3322 components: - type: Transform pos: -22.5,31.5 parent: 2 - - uid: 3370 + - uid: 3323 components: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 3371 + - uid: 3324 components: - type: Transform pos: -22.5,29.5 parent: 2 - - uid: 3372 + - uid: 3325 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 3373 + - uid: 3326 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 3374 + - uid: 3327 components: - type: Transform pos: -20.5,28.5 parent: 2 - - uid: 3375 + - uid: 3328 components: - type: Transform pos: -20.5,27.5 parent: 2 - - uid: 3376 + - uid: 3329 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 3377 + - uid: 3330 components: - type: Transform pos: -17.5,26.5 parent: 2 - - uid: 3378 + - uid: 3331 components: - type: Transform pos: -17.5,35.5 parent: 2 - - uid: 3379 + - uid: 3332 components: - type: Transform pos: -21.5,46.5 parent: 2 - - uid: 3380 + - uid: 3333 components: - type: Transform pos: -20.5,46.5 parent: 2 - - uid: 3381 + - uid: 3334 components: - type: Transform pos: -19.5,46.5 parent: 2 - - uid: 3382 + - uid: 3335 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 3383 + - uid: 3336 components: - type: Transform pos: -17.5,46.5 parent: 2 - - uid: 3384 + - uid: 3337 components: - type: Transform pos: -16.5,46.5 parent: 2 - - uid: 3385 + - uid: 3338 components: - type: Transform pos: -15.5,46.5 parent: 2 - - uid: 3386 + - uid: 3339 components: - type: Transform pos: -18.5,53.5 parent: 2 - - uid: 3387 + - uid: 3340 components: - type: Transform pos: -16.5,35.5 parent: 2 - - uid: 3388 + - uid: 3341 components: - type: Transform pos: -15.5,35.5 parent: 2 - - uid: 3389 + - uid: 3342 components: - type: Transform pos: -14.5,35.5 parent: 2 - - uid: 3390 + - uid: 3343 components: - type: Transform pos: -14.5,38.5 parent: 2 - - uid: 3391 + - uid: 3344 components: - type: Transform pos: -14.5,39.5 parent: 2 - - uid: 3392 + - uid: 3345 components: - type: Transform pos: -14.5,40.5 parent: 2 - - uid: 3393 + - uid: 3346 components: - type: Transform pos: -14.5,41.5 parent: 2 - - uid: 3394 + - uid: 3347 components: - type: Transform pos: -14.5,42.5 parent: 2 - - uid: 3395 + - uid: 3348 components: - type: Transform pos: -14.5,43.5 parent: 2 - - uid: 3396 + - uid: 3349 components: - type: Transform pos: -14.5,44.5 parent: 2 - - uid: 3397 + - uid: 3350 components: - type: Transform pos: -14.5,45.5 parent: 2 - - uid: 3398 + - uid: 3351 components: - type: Transform pos: -14.5,46.5 parent: 2 - - uid: 3399 + - uid: 3352 components: - type: Transform pos: -14.5,47.5 parent: 2 - - uid: 3400 + - uid: 3353 components: - type: Transform pos: -18.5,51.5 parent: 2 - - uid: 3401 + - uid: 3354 components: - type: Transform pos: -18.5,50.5 parent: 2 - - uid: 3402 + - uid: 3355 components: - type: Transform pos: -18.5,49.5 parent: 2 - - uid: 3403 + - uid: 3356 components: - type: Transform pos: -18.5,48.5 parent: 2 - - uid: 3404 + - uid: 3357 components: - type: Transform pos: -18.5,47.5 parent: 2 - - uid: 3405 + - uid: 3358 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 3406 + - uid: 3359 components: - type: Transform pos: -18.5,45.5 parent: 2 - - uid: 3407 + - uid: 3360 components: - type: Transform pos: -18.5,44.5 parent: 2 - - uid: 3408 + - uid: 3361 components: - type: Transform pos: -18.5,43.5 parent: 2 - - uid: 3409 + - uid: 3362 components: - type: Transform pos: -18.5,42.5 parent: 2 - - uid: 3410 + - uid: 3363 components: - type: Transform pos: -18.5,41.5 parent: 2 - - uid: 3411 + - uid: 3364 components: - type: Transform pos: -18.5,40.5 parent: 2 - - uid: 3412 + - uid: 3365 components: - type: Transform pos: -18.5,39.5 parent: 2 - - uid: 3413 + - uid: 3366 components: - type: Transform pos: -18.5,38.5 parent: 2 - - uid: 3414 + - uid: 3367 components: - type: Transform pos: -18.5,37.5 parent: 2 - - uid: 3415 + - uid: 3368 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 3416 + - uid: 3369 components: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 3417 + - uid: 3370 components: - type: Transform pos: -18.5,34.5 parent: 2 - - uid: 3418 + - uid: 3371 components: - type: Transform pos: -18.5,33.5 parent: 2 - - uid: 3419 + - uid: 3372 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 3420 + - uid: 3373 components: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 3421 + - uid: 3374 components: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 3422 + - uid: 3375 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 3423 + - uid: 3376 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 3424 + - uid: 3377 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 3425 + - uid: 3378 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 3426 + - uid: 3379 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 3427 + - uid: 3380 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 3428 + - uid: 3381 components: - type: Transform pos: -17.5,55.5 parent: 2 - - uid: 3429 + - uid: 3382 components: - type: Transform pos: -27.5,52.5 parent: 2 - - uid: 3430 + - uid: 3383 components: - type: Transform pos: -27.5,51.5 parent: 2 - - uid: 3431 + - uid: 3384 components: - type: Transform pos: -27.5,50.5 parent: 2 - - uid: 3432 + - uid: 3385 components: - type: Transform pos: -27.5,49.5 parent: 2 - - uid: 3433 + - uid: 3386 components: - type: Transform pos: -27.5,48.5 parent: 2 - - uid: 3434 + - uid: 3387 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 3435 + - uid: 3388 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 3436 + - uid: 3389 components: - type: Transform pos: -27.5,45.5 parent: 2 - - uid: 3437 + - uid: 3390 components: - type: Transform pos: -24.5,33.5 parent: 2 - - uid: 3438 + - uid: 3391 components: - type: Transform pos: -24.5,36.5 parent: 2 - - uid: 3439 + - uid: 3392 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 3440 + - uid: 3393 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 3441 + - uid: 3394 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 3442 + - uid: 3395 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 3443 + - uid: 3396 components: - type: Transform pos: -24.5,39.5 parent: 2 - - uid: 3444 + - uid: 3397 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 3445 + - uid: 3398 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 3446 + - uid: 3399 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 3447 + - uid: 3400 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 3448 + - uid: 3401 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 3449 + - uid: 3402 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 3450 + - uid: 3403 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 3451 + - uid: 3404 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 3452 + - uid: 3405 components: - type: Transform pos: -23.5,20.5 parent: 2 - - uid: 3453 + - uid: 3406 components: - type: Transform pos: -23.5,21.5 parent: 2 - - uid: 3454 + - uid: 3407 components: - type: Transform pos: -23.5,22.5 parent: 2 - - uid: 3455 + - uid: 3408 components: - type: Transform pos: -23.5,23.5 parent: 2 - - uid: 3456 + - uid: 3409 components: - type: Transform pos: -22.5,20.5 parent: 2 - - uid: 3457 + - uid: 3410 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 3458 + - uid: 3411 components: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 3459 + - uid: 3412 components: - type: Transform pos: -25.5,21.5 parent: 2 - - uid: 3460 + - uid: 3413 components: - type: Transform pos: -25.5,22.5 parent: 2 - - uid: 3461 + - uid: 3414 components: - type: Transform pos: -25.5,23.5 parent: 2 - - uid: 3462 + - uid: 3415 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 3463 + - uid: 3416 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 3464 + - uid: 3417 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 3465 + - uid: 3418 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 3466 + - uid: 3419 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 3467 + - uid: 3420 components: - type: Transform pos: -25.5,10.5 parent: 2 - - uid: 3468 + - uid: 3421 components: - type: Transform pos: -25.5,9.5 parent: 2 - - uid: 3469 + - uid: 3422 components: - type: Transform pos: -25.5,8.5 parent: 2 - - uid: 3470 + - uid: 3423 components: - type: Transform pos: -24.5,12.5 parent: 2 - - uid: 3471 + - uid: 3424 components: - type: Transform pos: -23.5,12.5 parent: 2 - - uid: 3472 + - uid: 3425 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 3473 + - uid: 3426 components: - type: Transform pos: -21.5,12.5 parent: 2 - - uid: 3474 + - uid: 3427 components: - type: Transform pos: -26.5,12.5 parent: 2 - - uid: 3475 + - uid: 3428 components: - type: Transform pos: -27.5,12.5 parent: 2 - - uid: 3476 + - uid: 3429 components: - type: Transform pos: -28.5,12.5 parent: 2 - - uid: 3477 + - uid: 3430 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 3478 + - uid: 3431 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 3479 + - uid: 3432 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 3480 + - uid: 3433 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 3481 + - uid: 3434 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 3482 + - uid: 3435 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 3483 + - uid: 3436 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 3484 + - uid: 3437 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 3485 + - uid: 3438 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 3486 + - uid: 3439 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 3487 + - uid: 3440 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 3488 + - uid: 3441 components: - type: Transform pos: -13.5,23.5 parent: 2 - - uid: 3489 + - uid: 3442 components: - type: Transform pos: -14.5,23.5 parent: 2 - - uid: 3490 + - uid: 3443 components: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 3491 + - uid: 3444 components: - type: Transform pos: -16.5,23.5 parent: 2 - - uid: 3492 + - uid: 3445 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 3493 + - uid: 3446 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 3494 + - uid: 3447 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 3495 + - uid: 3448 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 3496 + - uid: 3449 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 3497 + - uid: 3450 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 3498 + - uid: 3451 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 3499 + - uid: 3452 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 3500 + - uid: 3453 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 3501 + - uid: 3454 components: - type: Transform pos: 3.5,23.5 parent: 2 - - uid: 3502 + - uid: 3455 components: - type: Transform pos: 4.5,23.5 parent: 2 - - uid: 3503 + - uid: 3456 components: - type: Transform pos: 5.5,23.5 parent: 2 - - uid: 3504 + - uid: 3457 components: - type: Transform pos: 6.5,23.5 parent: 2 - - uid: 3505 + - uid: 3458 components: - type: Transform pos: 7.5,23.5 parent: 2 - - uid: 3506 + - uid: 3459 components: - type: Transform pos: 8.5,23.5 parent: 2 - - uid: 3507 + - uid: 3460 components: - type: Transform pos: 9.5,23.5 parent: 2 - - uid: 3508 + - uid: 3461 components: - type: Transform pos: 10.5,23.5 parent: 2 - - uid: 3509 + - uid: 3462 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 3510 + - uid: 3463 components: - type: Transform pos: 12.5,23.5 parent: 2 - - uid: 3511 + - uid: 3464 components: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 3512 + - uid: 3465 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 3513 + - uid: 3466 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 3514 + - uid: 3467 components: - type: Transform pos: 16.5,23.5 parent: 2 - - uid: 3515 + - uid: 3468 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 3516 + - uid: 3469 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 3517 + - uid: 3470 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 3518 + - uid: 3471 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 3519 + - uid: 3472 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 3520 + - uid: 3473 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 3521 + - uid: 3474 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 3522 + - uid: 3475 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 3523 + - uid: 3476 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 3524 + - uid: 3477 components: - type: Transform pos: 17.5,14.5 parent: 2 - - uid: 3525 + - uid: 3478 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 3526 + - uid: 3479 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 3527 + - uid: 3480 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 3528 + - uid: 3481 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 3529 + - uid: 3482 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 3530 + - uid: 3483 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 3531 + - uid: 3484 components: - type: Transform pos: -18.5,22.5 parent: 2 - - uid: 3532 + - uid: 3485 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 3533 + - uid: 3486 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 3534 + - uid: 3487 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 3535 + - uid: 3488 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 3536 + - uid: 3489 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 3537 + - uid: 3490 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 3538 + - uid: 3491 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 3539 + - uid: 3492 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 3540 + - uid: 3493 components: - type: Transform pos: -18.5,13.5 parent: 2 - - uid: 3541 + - uid: 3494 components: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 3542 + - uid: 3495 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 3543 + - uid: 3496 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 3544 + - uid: 3497 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 3545 + - uid: 3498 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 3546 + - uid: 3499 components: - type: Transform pos: -19.5,12.5 parent: 2 - - uid: 3547 + - uid: 3500 components: - type: Transform pos: -19.5,17.5 parent: 2 - - uid: 3548 + - uid: 3501 components: - type: Transform pos: -8.5,24.5 parent: 2 - - uid: 3549 + - uid: 3502 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 3550 + - uid: 3503 components: - type: Transform pos: 5.5,24.5 parent: 2 - - uid: 3551 + - uid: 3504 components: - type: Transform pos: 7.5,24.5 parent: 2 - - uid: 3552 + - uid: 3505 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 3553 + - uid: 3506 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 3554 + - uid: 3507 components: - type: Transform pos: 16.5,14.5 parent: 2 - - uid: 3555 + - uid: 3508 components: - type: Transform pos: 18.5,14.5 parent: 2 - - uid: 3556 + - uid: 3509 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 3557 + - uid: 3510 components: - type: Transform pos: 9.5,54.5 parent: 2 - - uid: 3558 + - uid: 3511 components: - type: Transform pos: 9.5,53.5 parent: 2 - - uid: 3559 + - uid: 3512 components: - type: Transform pos: 9.5,52.5 parent: 2 - - uid: 3560 + - uid: 3513 components: - type: Transform pos: 9.5,51.5 parent: 2 - - uid: 3561 + - uid: 3514 components: - type: Transform pos: 9.5,50.5 parent: 2 - - uid: 3562 + - uid: 3515 components: - type: Transform pos: 9.5,49.5 parent: 2 - - uid: 3563 + - uid: 3516 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 3564 + - uid: 3517 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 3565 + - uid: 3518 components: - type: Transform pos: 11.5,51.5 parent: 2 - - uid: 3566 + - uid: 3519 components: - type: Transform pos: 12.5,51.5 parent: 2 - - uid: 3567 + - uid: 3520 components: - type: Transform pos: 13.5,51.5 parent: 2 - - uid: 3568 + - uid: 3521 components: - type: Transform pos: 13.5,52.5 parent: 2 - - uid: 3569 + - uid: 3522 components: - type: Transform pos: 13.5,53.5 parent: 2 - - uid: 3570 + - uid: 3523 components: - type: Transform pos: 13.5,54.5 parent: 2 - - uid: 3571 + - uid: 3524 components: - type: Transform pos: 13.5,50.5 parent: 2 - - uid: 3572 + - uid: 3525 components: - type: Transform pos: 13.5,49.5 parent: 2 - - uid: 3573 + - uid: 3526 components: - type: Transform pos: 13.5,48.5 parent: 2 - - uid: 3574 + - uid: 3527 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 3575 + - uid: 3528 components: - type: Transform pos: 27.5,52.5 parent: 2 - - uid: 3576 + - uid: 3529 components: - type: Transform pos: 27.5,51.5 parent: 2 - - uid: 3577 + - uid: 3530 components: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 3578 + - uid: 3531 components: - type: Transform pos: 28.5,50.5 parent: 2 - - uid: 3579 + - uid: 3532 components: - type: Transform pos: 29.5,50.5 parent: 2 - - uid: 3580 + - uid: 3533 components: - type: Transform pos: 30.5,50.5 parent: 2 - - uid: 3581 + - uid: 3534 components: - type: Transform pos: 31.5,50.5 parent: 2 - - uid: 3582 + - uid: 3535 components: - type: Transform pos: 32.5,50.5 parent: 2 - - uid: 3583 + - uid: 3536 components: - type: Transform pos: 32.5,51.5 parent: 2 - - uid: 3584 + - uid: 3537 components: - type: Transform pos: 32.5,49.5 parent: 2 - - uid: 3585 + - uid: 3538 components: - type: Transform pos: 33.5,49.5 parent: 2 - - uid: 3586 + - uid: 3539 components: - type: Transform pos: 34.5,49.5 parent: 2 - - uid: 3587 + - uid: 3540 components: - type: Transform pos: 35.5,49.5 parent: 2 - - uid: 3588 + - uid: 3541 components: - type: Transform pos: 36.5,49.5 parent: 2 - - uid: 3589 + - uid: 3542 components: - type: Transform pos: 37.5,49.5 parent: 2 - - uid: 3590 + - uid: 3543 components: - type: Transform pos: 38.5,49.5 parent: 2 - - uid: 3591 + - uid: 3544 components: - type: Transform pos: 38.5,51.5 parent: 2 - - uid: 3592 + - uid: 3545 components: - type: Transform pos: 37.5,51.5 parent: 2 - - uid: 3593 + - uid: 3546 components: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 3594 + - uid: 3547 components: - type: Transform pos: 35.5,51.5 parent: 2 - - uid: 3595 + - uid: 3548 components: - type: Transform pos: 34.5,51.5 parent: 2 - - uid: 3596 + - uid: 3549 components: - type: Transform pos: 33.5,51.5 parent: 2 - - uid: 3597 + - uid: 3550 components: - type: Transform pos: 32.5,51.5 parent: 2 - - uid: 3598 + - uid: 3551 components: - type: Transform pos: 27.5,49.5 parent: 2 - - uid: 3599 + - uid: 3552 components: - type: Transform pos: 26.5,50.5 parent: 2 - - uid: 3600 + - uid: 3553 components: - type: Transform pos: 25.5,50.5 parent: 2 - - uid: 3601 + - uid: 3554 components: - type: Transform pos: 24.5,50.5 parent: 2 - - uid: 3602 + - uid: 3555 components: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 3603 + - uid: 3556 components: - type: Transform pos: 22.5,50.5 parent: 2 - - uid: 3604 + - uid: 3557 components: - type: Transform pos: 21.5,50.5 parent: 2 - - uid: 3605 + - uid: 3558 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 3606 + - uid: 3559 components: - type: Transform pos: 19.5,50.5 parent: 2 - - uid: 3607 + - uid: 3560 components: - type: Transform pos: 18.5,50.5 parent: 2 - - uid: 3608 + - uid: 3561 components: - type: Transform pos: 17.5,50.5 parent: 2 - - uid: 3609 + - uid: 3562 components: - type: Transform pos: 16.5,50.5 parent: 2 - - uid: 3610 + - uid: 3563 components: - type: Transform pos: 15.5,50.5 parent: 2 - - uid: 3611 + - uid: 3564 components: - type: Transform pos: 15.5,51.5 parent: 2 - - uid: 3612 + - uid: 3565 components: - type: Transform pos: 15.5,52.5 parent: 2 - - uid: 3613 + - uid: 3566 components: - type: Transform pos: 15.5,53.5 parent: 2 - - uid: 3614 + - uid: 3567 components: - type: Transform pos: 15.5,54.5 parent: 2 - - uid: 3615 + - uid: 3568 components: - type: Transform pos: 16.5,54.5 parent: 2 - - uid: 3616 + - uid: 3569 components: - type: Transform pos: 17.5,54.5 parent: 2 - - uid: 3617 + - uid: 3570 components: - type: Transform pos: 18.5,54.5 parent: 2 - - uid: 3618 + - uid: 3571 components: - type: Transform pos: 19.5,54.5 parent: 2 - - uid: 3619 + - uid: 3572 components: - type: Transform pos: 20.5,54.5 parent: 2 - - uid: 3620 + - uid: 3573 components: - type: Transform pos: 21.5,54.5 parent: 2 - - uid: 3621 + - uid: 3574 components: - type: Transform pos: 22.5,54.5 parent: 2 - - uid: 3622 + - uid: 3575 components: - type: Transform pos: 23.5,54.5 parent: 2 - - uid: 3623 + - uid: 3576 components: - type: Transform pos: 24.5,54.5 parent: 2 - - uid: 3624 + - uid: 3577 components: - type: Transform pos: 25.5,54.5 parent: 2 - - uid: 3625 + - uid: 3578 components: - type: Transform pos: 25.5,53.5 parent: 2 - - uid: 3626 + - uid: 3579 components: - type: Transform pos: 25.5,52.5 parent: 2 - - uid: 3627 + - uid: 3580 components: - type: Transform pos: 25.5,51.5 parent: 2 - - uid: 3628 + - uid: 3581 components: - type: Transform pos: 15.5,49.5 parent: 2 - - uid: 3629 + - uid: 3582 components: - type: Transform pos: 15.5,48.5 parent: 2 - - uid: 3630 + - uid: 3583 components: - type: Transform pos: 15.5,47.5 parent: 2 - - uid: 3631 + - uid: 3584 components: - type: Transform pos: 15.5,46.5 parent: 2 - - uid: 3632 + - uid: 3585 components: - type: Transform pos: 15.5,45.5 parent: 2 - - uid: 3633 + - uid: 3586 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 3634 + - uid: 3587 components: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 3635 + - uid: 3588 components: - type: Transform pos: 13.5,44.5 parent: 2 - - uid: 3636 + - uid: 3589 components: - type: Transform pos: 13.5,43.5 parent: 2 - - uid: 3637 + - uid: 3590 components: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 3638 + - uid: 3591 components: - type: Transform pos: 13.5,41.5 parent: 2 - - uid: 3639 + - uid: 3592 components: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 3640 + - uid: 3593 components: - type: Transform pos: 13.5,39.5 parent: 2 - - uid: 3641 + - uid: 3594 components: - type: Transform pos: 13.5,38.5 parent: 2 - - uid: 3642 + - uid: 3595 components: - type: Transform pos: 13.5,37.5 parent: 2 - - uid: 3643 + - uid: 3596 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 3644 + - uid: 3597 components: - type: Transform pos: 13.5,35.5 parent: 2 - - uid: 3645 + - uid: 3598 components: - type: Transform pos: 13.5,34.5 parent: 2 - - uid: 3646 + - uid: 3599 components: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 3647 + - uid: 3600 components: - type: Transform pos: 15.5,34.5 parent: 2 - - uid: 3648 + - uid: 3601 components: - type: Transform pos: 16.5,34.5 parent: 2 - - uid: 3649 + - uid: 3602 components: - type: Transform pos: 17.5,34.5 parent: 2 - - uid: 3650 + - uid: 3603 components: - type: Transform pos: 18.5,34.5 parent: 2 - - uid: 3651 + - uid: 3604 components: - type: Transform pos: 19.5,34.5 parent: 2 - - uid: 3652 + - uid: 3605 components: - type: Transform pos: 20.5,34.5 parent: 2 - - uid: 3653 + - uid: 3606 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 3654 + - uid: 3607 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 3655 + - uid: 3608 components: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 3656 + - uid: 3609 components: - type: Transform pos: 22.5,36.5 parent: 2 - - uid: 3657 + - uid: 3610 components: - type: Transform pos: 22.5,37.5 parent: 2 - - uid: 3658 + - uid: 3611 components: - type: Transform pos: 22.5,38.5 parent: 2 - - uid: 3659 + - uid: 3612 components: - type: Transform pos: 21.5,38.5 parent: 2 - - uid: 3660 + - uid: 3613 components: - type: Transform pos: 21.5,39.5 parent: 2 - - uid: 3661 + - uid: 3614 components: - type: Transform pos: 21.5,40.5 parent: 2 - - uid: 3662 + - uid: 3615 components: - type: Transform pos: 22.5,40.5 parent: 2 - - uid: 3663 + - uid: 3616 components: - type: Transform pos: 23.5,40.5 parent: 2 - - uid: 3664 + - uid: 3617 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 3665 + - uid: 3618 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 3666 + - uid: 3619 components: - type: Transform pos: 25.5,41.5 parent: 2 - - uid: 3667 + - uid: 3620 components: - type: Transform pos: 25.5,42.5 parent: 2 - - uid: 3668 + - uid: 3621 components: - type: Transform pos: 25.5,43.5 parent: 2 - - uid: 3669 + - uid: 3622 components: - type: Transform pos: 25.5,44.5 parent: 2 - - uid: 3670 + - uid: 3623 components: - type: Transform pos: 25.5,45.5 parent: 2 - - uid: 3671 + - uid: 3624 components: - type: Transform pos: 25.5,46.5 parent: 2 - - uid: 3672 + - uid: 3625 components: - type: Transform pos: 25.5,47.5 parent: 2 - - uid: 3673 + - uid: 3626 components: - type: Transform pos: 25.5,48.5 parent: 2 - - uid: 3674 + - uid: 3627 components: - type: Transform pos: 25.5,49.5 parent: 2 - - uid: 3675 + - uid: 3628 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 3676 + - uid: 3629 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 3677 + - uid: 3630 components: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 3678 + - uid: 3631 components: - type: Transform pos: 29.5,36.5 parent: 2 - - uid: 3679 + - uid: 3632 components: - type: Transform pos: 29.5,35.5 parent: 2 - - uid: 3680 + - uid: 3633 components: - type: Transform pos: 29.5,34.5 parent: 2 - - uid: 3681 + - uid: 3634 components: - type: Transform pos: 28.5,36.5 parent: 2 - - uid: 3682 + - uid: 3635 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 3683 + - uid: 3636 components: - type: Transform pos: 26.5,36.5 parent: 2 - - uid: 3684 + - uid: 3637 components: - type: Transform pos: 25.5,36.5 parent: 2 - - uid: 3685 + - uid: 3638 components: - type: Transform pos: 24.5,36.5 parent: 2 - - uid: 3686 + - uid: 3639 components: - type: Transform pos: 24.5,37.5 parent: 2 - - uid: 3687 + - uid: 3640 components: - type: Transform pos: 24.5,38.5 parent: 2 - - uid: 3688 + - uid: 3641 components: - type: Transform pos: 24.5,35.5 parent: 2 - - uid: 3689 + - uid: 3642 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 3690 + - uid: 3643 components: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 3691 + - uid: 3644 components: - type: Transform pos: 28.5,40.5 parent: 2 - - uid: 3692 + - uid: 3645 components: - type: Transform pos: 28.5,41.5 parent: 2 - - uid: 3693 + - uid: 3646 components: - type: Transform pos: 28.5,42.5 parent: 2 - - uid: 3694 + - uid: 3647 components: - type: Transform pos: 28.5,43.5 parent: 2 - - uid: 3695 + - uid: 3648 components: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 3696 + - uid: 3649 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 3697 + - uid: 3650 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 3698 + - uid: 3651 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 3699 + - uid: 3652 components: - type: Transform pos: 31.5,30.5 parent: 2 - - uid: 3700 + - uid: 3653 components: - type: Transform pos: 30.5,31.5 parent: 2 - - uid: 3701 + - uid: 3654 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 3702 + - uid: 3655 components: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 3703 + - uid: 3656 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 3704 + - uid: 3657 components: - type: Transform pos: 34.5,31.5 parent: 2 - - uid: 3705 + - uid: 3658 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 3706 + - uid: 3659 components: - type: Transform pos: 29.5,31.5 parent: 2 - - uid: 3707 + - uid: 3660 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 3708 + - uid: 3661 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 3709 + - uid: 3662 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 3710 + - uid: 3663 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 3711 + - uid: 3664 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 3712 + - uid: 3665 components: - type: Transform pos: 38.5,29.5 parent: 2 - - uid: 3713 + - uid: 3666 components: - type: Transform pos: 39.5,29.5 parent: 2 - - uid: 3714 + - uid: 3667 components: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 3715 + - uid: 3668 components: - type: Transform pos: 41.5,29.5 parent: 2 - - uid: 3716 + - uid: 3669 components: - type: Transform pos: 42.5,29.5 parent: 2 - - uid: 3717 + - uid: 3670 components: - type: Transform pos: 43.5,30.5 parent: 2 - - uid: 3718 + - uid: 3671 components: - type: Transform pos: 43.5,29.5 parent: 2 - - uid: 3719 + - uid: 3672 components: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 3720 + - uid: 3673 components: - type: Transform pos: 38.5,28.5 parent: 2 - - uid: 3721 + - uid: 3674 components: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 3722 + - uid: 3675 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 3723 + - uid: 3676 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 3724 + - uid: 3677 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 3725 + - uid: 3678 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 3726 + - uid: 3679 components: - type: Transform pos: 33.5,27.5 parent: 2 - - uid: 3727 + - uid: 3680 components: - type: Transform pos: 33.5,26.5 parent: 2 - - uid: 3728 + - uid: 3681 components: - type: Transform pos: 32.5,27.5 parent: 2 - - uid: 3729 + - uid: 3682 components: - type: Transform pos: 31.5,27.5 parent: 2 - - uid: 3730 + - uid: 3683 components: - type: Transform pos: 30.5,27.5 parent: 2 - - uid: 3731 + - uid: 3684 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 3732 + - uid: 3685 components: - type: Transform pos: 29.5,28.5 parent: 2 - - uid: 3733 + - uid: 3686 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 3734 + - uid: 3687 components: - type: Transform pos: 29.5,26.5 parent: 2 - - uid: 3735 + - uid: 3688 components: - type: Transform pos: 33.5,39.5 parent: 2 - - uid: 3736 + - uid: 3689 components: - type: Transform pos: 33.5,38.5 parent: 2 - - uid: 3737 + - uid: 3690 components: - type: Transform pos: 33.5,37.5 parent: 2 - - uid: 3738 + - uid: 3691 components: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 3739 + - uid: 3692 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 3740 + - uid: 3693 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 3741 + - uid: 3694 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 3742 + - uid: 3695 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 3743 + - uid: 3696 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 3744 + - uid: 3697 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 3745 + - uid: 3698 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 3746 + - uid: 3699 components: - type: Transform pos: 34.5,34.5 parent: 2 - - uid: 3747 + - uid: 3700 components: - type: Transform pos: 33.5,34.5 parent: 2 - - uid: 3748 + - uid: 3701 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 3749 + - uid: 3702 components: - type: Transform pos: 33.5,36.5 parent: 2 - - uid: 3750 + - uid: 3703 components: - type: Transform pos: 34.5,39.5 parent: 2 - - uid: 3751 + - uid: 3704 components: - type: Transform pos: 34.5,40.5 parent: 2 - - uid: 3752 + - uid: 3705 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 3753 + - uid: 3706 components: - type: Transform pos: 35.5,41.5 parent: 2 - - uid: 3754 + - uid: 3707 components: - type: Transform pos: 36.5,41.5 parent: 2 - - uid: 3755 + - uid: 3708 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 3756 + - uid: 3709 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 3757 + - uid: 3710 components: - type: Transform pos: 7.5,36.5 parent: 2 - - uid: 3758 + - uid: 3711 components: - type: Transform pos: 7.5,35.5 parent: 2 - - uid: 3759 + - uid: 3712 components: - type: Transform pos: 6.5,37.5 parent: 2 - - uid: 3760 + - uid: 3713 components: - type: Transform pos: 5.5,37.5 parent: 2 - - uid: 3761 + - uid: 3714 components: - type: Transform pos: 4.5,37.5 parent: 2 - - uid: 3762 + - uid: 3715 components: - type: Transform pos: 3.5,37.5 parent: 2 - - uid: 3763 + - uid: 3716 components: - type: Transform pos: 2.5,37.5 parent: 2 - - uid: 3764 + - uid: 3717 components: - type: Transform pos: 2.5,36.5 parent: 2 - - uid: 3765 + - uid: 3718 components: - type: Transform pos: 2.5,35.5 parent: 2 - - uid: 3766 + - uid: 3719 components: - type: Transform pos: 2.5,34.5 parent: 2 - - uid: 3767 + - uid: 3720 components: - type: Transform pos: 2.5,33.5 parent: 2 - - uid: 3768 + - uid: 3721 components: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 3769 + - uid: 3722 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 3770 + - uid: 3723 components: - type: Transform pos: 5.5,33.5 parent: 2 - - uid: 3771 + - uid: 3724 components: - type: Transform pos: 6.5,33.5 parent: 2 - - uid: 3772 + - uid: 3725 components: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 3773 + - uid: 3726 components: - type: Transform pos: 8.5,33.5 parent: 2 - - uid: 3774 + - uid: 3727 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 3775 + - uid: 3728 components: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 3776 + - uid: 3729 components: - type: Transform pos: 10.5,34.5 parent: 2 - - uid: 3777 + - uid: 3730 components: - type: Transform pos: 11.5,34.5 parent: 2 - - uid: 3778 + - uid: 3731 components: - type: Transform pos: 11.5,35.5 parent: 2 - - uid: 3779 + - uid: 3732 components: - type: Transform pos: 11.5,36.5 parent: 2 - - uid: 3780 + - uid: 3733 components: - type: Transform pos: 11.5,37.5 parent: 2 - - uid: 3781 + - uid: 3734 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 3782 + - uid: 3735 components: - type: Transform pos: 9.5,37.5 parent: 2 - - uid: 3783 + - uid: 3736 components: - type: Transform pos: 8.5,37.5 parent: 2 - - uid: 3784 + - uid: 3737 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 3785 + - uid: 3738 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 3786 + - uid: 3739 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 3787 + - uid: 3740 components: - type: Transform pos: 10.5,46.5 parent: 2 - - uid: 3788 + - uid: 3741 components: - type: Transform pos: 11.5,46.5 parent: 2 - - uid: 3789 + - uid: 3742 components: - type: Transform pos: 11.5,45.5 parent: 2 - - uid: 3790 + - uid: 3743 components: - type: Transform pos: 11.5,44.5 parent: 2 - - uid: 3791 + - uid: 3744 components: - type: Transform pos: 11.5,43.5 parent: 2 - - uid: 3792 + - uid: 3745 components: - type: Transform pos: 11.5,42.5 parent: 2 - - uid: 3793 + - uid: 3746 components: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 3794 + - uid: 3747 components: - type: Transform pos: 9.5,44.5 parent: 2 - - uid: 3795 + - uid: 3748 components: - type: Transform pos: 9.5,43.5 parent: 2 - - uid: 3796 + - uid: 3749 components: - type: Transform pos: 9.5,42.5 parent: 2 - - uid: 3797 + - uid: 3750 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 3798 + - uid: 3751 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 3799 + - uid: 3752 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 3800 + - uid: 3753 components: - type: Transform pos: 9.5,39.5 parent: 2 - - uid: 3801 + - uid: 3754 components: - type: Transform pos: 11.5,39.5 parent: 2 - - uid: 3802 + - uid: 3755 components: - type: Transform pos: 7.5,34.5 parent: 2 - - uid: 3803 + - uid: 3756 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 3804 + - uid: 3757 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 3805 + - uid: 3758 components: - type: Transform pos: 5.5,31.5 parent: 2 - - uid: 3806 + - uid: 3759 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 3807 + - uid: 3760 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 3808 + - uid: 3761 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 3809 + - uid: 3762 components: - type: Transform pos: 2.5,30.5 parent: 2 - - uid: 3810 + - uid: 3763 components: - type: Transform pos: 2.5,29.5 parent: 2 - - uid: 3811 + - uid: 3764 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 3812 + - uid: 3765 components: - type: Transform pos: 2.5,27.5 parent: 2 - - uid: 3813 + - uid: 3766 components: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 3814 + - uid: 3767 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 3815 + - uid: 3768 components: - type: Transform pos: 8.5,31.5 parent: 2 - - uid: 3816 + - uid: 3769 components: - type: Transform pos: 9.5,31.5 parent: 2 - - uid: 3817 + - uid: 3770 components: - type: Transform pos: 10.5,31.5 parent: 2 - - uid: 3818 + - uid: 3771 components: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 3819 + - uid: 3772 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 3820 + - uid: 3773 components: - type: Transform pos: 10.5,28.5 parent: 2 - - uid: 3821 + - uid: 3774 components: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 3822 + - uid: 3775 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 3823 + - uid: 3776 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 3824 + - uid: 3777 components: - type: Transform pos: 8.5,26.5 parent: 2 - - uid: 3825 + - uid: 3778 components: - type: Transform pos: 7.5,26.5 parent: 2 - - uid: 3826 + - uid: 3779 components: - type: Transform pos: 6.5,26.5 parent: 2 - - uid: 3827 + - uid: 3780 components: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 3828 + - uid: 3781 components: - type: Transform pos: 4.5,26.5 parent: 2 - - uid: 3829 + - uid: 3782 components: - type: Transform pos: 3.5,26.5 parent: 2 - - uid: 3830 + - uid: 3783 components: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 3831 + - uid: 3784 components: - type: Transform pos: 8.5,28.5 parent: 2 - - uid: 3832 + - uid: 3785 components: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 3833 + - uid: 3786 components: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 3834 + - uid: 3787 components: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 3835 + - uid: 3788 components: - type: Transform pos: 4.5,28.5 parent: 2 - - uid: 3836 + - uid: 3789 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 3837 + - uid: 3790 components: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 3838 + - uid: 3791 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 3839 + - uid: 3792 components: - type: Transform pos: 12.5,30.5 parent: 2 - - uid: 3840 + - uid: 3793 components: - type: Transform pos: 13.5,30.5 parent: 2 - - uid: 3841 + - uid: 3794 components: - type: Transform pos: 13.5,31.5 parent: 2 - - uid: 3842 + - uid: 3795 components: - type: Transform pos: 13.5,32.5 parent: 2 - - uid: 3843 + - uid: 3796 components: - type: Transform pos: 15.5,33.5 parent: 2 - - uid: 3844 + - uid: 3797 components: - type: Transform pos: 15.5,32.5 parent: 2 - - uid: 3845 + - uid: 3798 components: - type: Transform pos: 16.5,32.5 parent: 2 - - uid: 3846 + - uid: 3799 components: - type: Transform pos: 16.5,31.5 parent: 2 - - uid: 3847 + - uid: 3800 components: - type: Transform pos: 16.5,30.5 parent: 2 - - uid: 3848 + - uid: 3801 components: - type: Transform pos: 16.5,29.5 parent: 2 - - uid: 3849 + - uid: 3802 components: - type: Transform pos: 16.5,28.5 parent: 2 - - uid: 3850 + - uid: 3803 components: - type: Transform pos: 16.5,27.5 parent: 2 - - uid: 3851 + - uid: 3804 components: - type: Transform pos: 15.5,27.5 parent: 2 - - uid: 3852 + - uid: 3805 components: - type: Transform pos: 14.5,27.5 parent: 2 - - uid: 3853 + - uid: 3806 components: - type: Transform pos: 13.5,27.5 parent: 2 - - uid: 3854 + - uid: 3807 components: - type: Transform pos: 12.5,27.5 parent: 2 - - uid: 3855 + - uid: 3808 components: - type: Transform pos: 12.5,28.5 parent: 2 - - uid: 3856 + - uid: 3809 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 3857 + - uid: 3810 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 3858 + - uid: 3811 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 3859 + - uid: 3812 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 3860 + - uid: 3813 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 3861 + - uid: 3814 components: - type: Transform pos: 92.5,20.5 parent: 2 - - uid: 3862 + - uid: 3815 components: - type: Transform pos: 92.5,19.5 parent: 2 - - uid: 3863 + - uid: 3816 components: - type: Transform pos: 92.5,18.5 parent: 2 - - uid: 3864 + - uid: 3817 components: - type: Transform pos: 92.5,17.5 parent: 2 - - uid: 3865 + - uid: 3818 components: - type: Transform pos: 92.5,16.5 parent: 2 - - uid: 3866 + - uid: 3819 components: - type: Transform pos: 92.5,15.5 parent: 2 - - uid: 3867 + - uid: 3820 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 3868 + - uid: 3821 components: - type: Transform pos: 92.5,13.5 parent: 2 - - uid: 3869 + - uid: 3822 components: - type: Transform pos: 91.5,13.5 parent: 2 - - uid: 3870 + - uid: 3823 components: - type: Transform pos: 90.5,13.5 parent: 2 - - uid: 3871 + - uid: 3824 components: - type: Transform pos: 89.5,13.5 parent: 2 - - uid: 3872 + - uid: 3825 components: - type: Transform pos: 88.5,13.5 parent: 2 - - uid: 3873 + - uid: 3826 components: - type: Transform pos: 87.5,13.5 parent: 2 - - uid: 3874 + - uid: 3827 components: - type: Transform pos: 86.5,13.5 parent: 2 - - uid: 3875 + - uid: 3828 components: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 3876 + - uid: 3829 components: - type: Transform pos: 84.5,13.5 parent: 2 - - uid: 3877 + - uid: 3830 components: - type: Transform pos: 83.5,13.5 parent: 2 - - uid: 3878 + - uid: 3831 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 3879 + - uid: 3832 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 3880 + - uid: 3833 components: - type: Transform pos: 85.5,10.5 parent: 2 - - uid: 3881 + - uid: 3834 components: - type: Transform pos: 84.5,10.5 parent: 2 - - uid: 3882 + - uid: 3835 components: - type: Transform pos: 83.5,10.5 parent: 2 - - uid: 3883 + - uid: 3836 components: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 3884 + - uid: 3837 components: - type: Transform pos: 80.5,9.5 parent: 2 - - uid: 3885 + - uid: 3838 components: - type: Transform pos: 83.5,9.5 parent: 2 - - uid: 3886 + - uid: 3839 components: - type: Transform pos: 82.5,9.5 parent: 2 - - uid: 3887 + - uid: 3840 components: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 3888 + - uid: 3841 components: - type: Transform pos: 78.5,9.5 parent: 2 - - uid: 3889 + - uid: 3842 components: - type: Transform pos: 77.5,9.5 parent: 2 - - uid: 3890 + - uid: 3843 components: - type: Transform pos: 76.5,9.5 parent: 2 - - uid: 3891 + - uid: 3844 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 3892 + - uid: 3845 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 3893 + - uid: 3846 components: - type: Transform pos: 69.5,15.5 parent: 2 - - uid: 3894 + - uid: 3847 components: - type: Transform pos: 69.5,14.5 parent: 2 - - uid: 3895 + - uid: 3848 components: - type: Transform pos: 69.5,13.5 parent: 2 - - uid: 3896 + - uid: 3849 components: - type: Transform pos: 70.5,13.5 parent: 2 - - uid: 3897 + - uid: 3850 components: - type: Transform pos: 68.5,13.5 parent: 2 - - uid: 3898 + - uid: 3851 components: - type: Transform pos: 68.5,18.5 parent: 2 - - uid: 3899 + - uid: 3852 components: - type: Transform pos: 68.5,19.5 parent: 2 - - uid: 3900 + - uid: 3853 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 3901 + - uid: 3854 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 3902 + - uid: 3855 components: - type: Transform pos: 73.5,22.5 parent: 2 - - uid: 3903 + - uid: 3856 components: - type: Transform pos: 74.5,22.5 parent: 2 - - uid: 3904 + - uid: 3857 components: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 3905 + - uid: 3858 components: - type: Transform pos: 76.5,22.5 parent: 2 - - uid: 3906 + - uid: 3859 components: - type: Transform pos: 77.5,22.5 parent: 2 - - uid: 3907 + - uid: 3860 components: - type: Transform pos: 77.5,22.5 parent: 2 - - uid: 3908 + - uid: 3861 components: - type: Transform pos: 73.5,21.5 parent: 2 - - uid: 3909 + - uid: 3862 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 3910 + - uid: 3863 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 3911 + - uid: 3864 components: - type: Transform pos: 75.5,25.5 parent: 2 - - uid: 3912 + - uid: 3865 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 3913 + - uid: 3866 components: - type: Transform pos: 75.5,27.5 parent: 2 - - uid: 3914 + - uid: 3867 components: - type: Transform pos: 75.5,28.5 parent: 2 - - uid: 3915 + - uid: 3868 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 3916 + - uid: 3869 components: - type: Transform pos: 72.5,5.5 parent: 2 - - uid: 3917 + - uid: 3870 components: - type: Transform pos: 73.5,5.5 parent: 2 - - uid: 3918 + - uid: 3871 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 3919 + - uid: 3872 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 3920 + - uid: 3873 components: - type: Transform pos: 72.5,2.5 parent: 2 - - uid: 3921 + - uid: 3874 components: - type: Transform pos: 73.5,2.5 parent: 2 - - uid: 3922 + - uid: 3875 components: - type: Transform pos: 73.5,1.5 parent: 2 - - uid: 3923 + - uid: 3876 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 3924 + - uid: 3877 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 3925 + - uid: 3878 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 3926 + - uid: 3879 components: - type: Transform pos: 73.5,6.5 parent: 2 - - uid: 3927 + - uid: 3880 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 3928 + - uid: 3881 components: - type: Transform pos: 73.5,8.5 parent: 2 - - uid: 3929 + - uid: 3882 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 3930 + - uid: 3883 components: - type: Transform pos: 73.5,10.5 parent: 2 - - uid: 3931 + - uid: 3884 components: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 3932 + - uid: 3885 components: - type: Transform pos: 73.5,12.5 parent: 2 - - uid: 3933 + - uid: 3886 components: - type: Transform pos: 73.5,13.5 parent: 2 - - uid: 3934 + - uid: 3887 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 3935 + - uid: 3888 components: - type: Transform pos: 73.5,15.5 parent: 2 - - uid: 3936 + - uid: 3889 components: - type: Transform pos: 73.5,16.5 parent: 2 - - uid: 3937 + - uid: 3890 components: - type: Transform pos: 73.5,17.5 parent: 2 - - uid: 3938 + - uid: 3891 components: - type: Transform pos: 73.5,18.5 parent: 2 - - uid: 3939 + - uid: 3892 components: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 3940 + - uid: 3893 components: - type: Transform pos: 72.5,18.5 parent: 2 - - uid: 3941 + - uid: 3894 components: - type: Transform pos: 72.5,13.5 parent: 2 - - uid: 3942 + - uid: 3895 components: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 3943 + - uid: 3896 components: - type: Transform pos: 96.5,4.5 parent: 2 - - uid: 3944 + - uid: 3897 components: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 3945 + - uid: 3898 components: - type: Transform pos: 78.5,-4.5 parent: 2 - - uid: 3946 + - uid: 3899 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 3947 + - uid: 3900 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 3948 + - uid: 3901 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 3949 + - uid: 3902 components: - type: Transform pos: 52.5,29.5 parent: 2 - - uid: 3950 + - uid: 3903 components: - type: Transform pos: 51.5,29.5 parent: 2 - - uid: 3951 + - uid: 3904 components: - type: Transform pos: 50.5,29.5 parent: 2 - - uid: 3952 + - uid: 3905 components: - type: Transform pos: 49.5,29.5 parent: 2 - - uid: 3953 + - uid: 3906 components: - type: Transform pos: 49.5,28.5 parent: 2 - - uid: 3954 + - uid: 3907 components: - type: Transform pos: 49.5,27.5 parent: 2 - - uid: 3955 + - uid: 3908 components: - type: Transform pos: 49.5,26.5 parent: 2 - - uid: 3956 + - uid: 3909 components: - type: Transform pos: 49.5,25.5 parent: 2 - - uid: 3957 + - uid: 3910 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 3958 + - uid: 3911 components: - type: Transform pos: 49.5,23.5 parent: 2 - - uid: 3959 + - uid: 3912 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 3960 + - uid: 3913 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 3961 + - uid: 3914 components: - type: Transform pos: 53.5,29.5 parent: 2 - - uid: 3962 + - uid: 3915 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 3963 + - uid: 3916 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 3964 + - uid: 3917 components: - type: Transform pos: 56.5,29.5 parent: 2 - - uid: 3965 + - uid: 3918 components: - type: Transform pos: 57.5,29.5 parent: 2 - - uid: 3966 + - uid: 3919 components: - type: Transform pos: 58.5,29.5 parent: 2 - - uid: 3967 + - uid: 3920 components: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 3968 + - uid: 3921 components: - type: Transform pos: 59.5,28.5 parent: 2 - - uid: 3969 + - uid: 3922 components: - type: Transform pos: 59.5,27.5 parent: 2 - - uid: 3970 + - uid: 3923 components: - type: Transform pos: 59.5,26.5 parent: 2 - - uid: 3971 + - uid: 3924 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 3972 + - uid: 3925 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 3973 + - uid: 3926 components: - type: Transform pos: 59.5,23.5 parent: 2 - - uid: 3974 + - uid: 3927 components: - type: Transform pos: 59.5,22.5 parent: 2 - - uid: 3975 + - uid: 3928 components: - type: Transform pos: 59.5,21.5 parent: 2 - - uid: 3976 + - uid: 3929 components: - type: Transform pos: 57.5,21.5 parent: 2 - - uid: 3977 + - uid: 3930 components: - type: Transform pos: 58.5,21.5 parent: 2 - - uid: 3978 + - uid: 3931 components: - type: Transform pos: 50.5,21.5 parent: 2 - - uid: 3979 + - uid: 3932 components: - type: Transform pos: 51.5,21.5 parent: 2 - - uid: 3980 + - uid: 3933 components: - type: Transform pos: 52.5,21.5 parent: 2 - - uid: 3981 + - uid: 3934 components: - type: Transform pos: 53.5,21.5 parent: 2 - - uid: 3982 + - uid: 3935 components: - type: Transform pos: 54.5,21.5 parent: 2 - - uid: 3983 + - uid: 3936 components: - type: Transform pos: 55.5,21.5 parent: 2 - - uid: 3984 + - uid: 3937 components: - type: Transform pos: 65.5,28.5 parent: 2 - - uid: 3985 + - uid: 3938 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 3986 + - uid: 3939 components: - type: Transform pos: 64.5,21.5 parent: 2 - - uid: 3987 + - uid: 3940 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 3988 + - uid: 3941 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 3989 + - uid: 3942 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 3990 + - uid: 3943 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 3991 + - uid: 3944 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 3992 + - uid: 3945 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 3993 + - uid: 3946 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 3994 + - uid: 3947 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 3995 + - uid: 3948 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 3996 + - uid: 3949 components: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 3997 + - uid: 3950 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 3998 + - uid: 3951 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 3999 + - uid: 3952 components: - type: Transform pos: 36.5,19.5 parent: 2 - - uid: 4000 + - uid: 3953 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 4001 + - uid: 3954 components: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 4002 + - uid: 3955 components: - type: Transform pos: 34.5,20.5 parent: 2 - - uid: 4003 + - uid: 3956 components: - type: Transform pos: 37.5,20.5 parent: 2 - - uid: 4004 + - uid: 3957 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 4005 + - uid: 3958 components: - type: Transform pos: 39.5,20.5 parent: 2 - - uid: 4006 + - uid: 3959 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 4007 + - uid: 3960 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 4008 + - uid: 3961 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 4009 + - uid: 3962 components: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 4010 + - uid: 3963 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 4011 + - uid: 3964 components: - type: Transform pos: 41.5,22.5 parent: 2 - - uid: 4012 + - uid: 3965 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 4013 + - uid: 3966 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 4014 + - uid: 3967 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 4015 + - uid: 3968 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 4016 + - uid: 3969 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 4017 + - uid: 3970 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 4018 + - uid: 3971 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 4019 + - uid: 3972 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 4020 + - uid: 3973 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 4021 + - uid: 3974 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 4022 + - uid: 3975 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 4023 + - uid: 3976 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 4024 + - uid: 3977 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 4025 + - uid: 3978 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 4026 + - uid: 3979 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 4027 + - uid: 3980 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 4028 + - uid: 3981 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 4029 + - uid: 3982 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 4030 + - uid: 3983 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 4031 + - uid: 3984 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 4032 + - uid: 3985 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 4033 + - uid: 3986 components: - type: Transform pos: 32.5,6.5 parent: 2 - - uid: 4034 + - uid: 3987 components: - type: Transform pos: 30.5,4.5 parent: 2 - - uid: 4035 + - uid: 3988 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 4036 + - uid: 3989 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 4037 + - uid: 3990 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 4038 + - uid: 3991 components: - type: Transform pos: 55.5,9.5 parent: 2 - - uid: 4039 + - uid: 3992 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 4040 + - uid: 3993 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 4041 + - uid: 3994 components: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 4042 + - uid: 3995 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 4043 + - uid: 3996 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 4044 + - uid: 3997 components: - type: Transform pos: 55.5,3.5 parent: 2 - - uid: 4045 + - uid: 3998 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 4046 + - uid: 3999 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 4047 + - uid: 4000 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 4048 + - uid: 4001 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 4049 + - uid: 4002 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 4050 + - uid: 4003 components: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 4051 + - uid: 4004 components: - type: Transform pos: 51.5,8.5 parent: 2 - - uid: 4052 + - uid: 4005 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 4053 + - uid: 4006 components: - type: Transform pos: 53.5,8.5 parent: 2 - - uid: 4054 + - uid: 4007 components: - type: Transform pos: 54.5,8.5 parent: 2 - - uid: 4055 + - uid: 4008 components: - type: Transform pos: 53.5,9.5 parent: 2 - - uid: 4056 + - uid: 4009 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 4057 + - uid: 4010 components: - type: Transform pos: 58.5,4.5 parent: 2 - - uid: 4058 + - uid: 4011 components: - type: Transform pos: 58.5,5.5 parent: 2 - - uid: 4059 + - uid: 4012 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 4060 + - uid: 4013 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 4061 + - uid: 4014 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 4062 + - uid: 4015 components: - type: Transform pos: 58.5,9.5 parent: 2 - - uid: 4063 + - uid: 4016 components: - type: Transform pos: 59.5,4.5 parent: 2 - - uid: 4064 + - uid: 4017 components: - type: Transform pos: 60.5,4.5 parent: 2 - - uid: 4065 + - uid: 4018 components: - type: Transform pos: 61.5,4.5 parent: 2 - - uid: 4066 + - uid: 4019 components: - type: Transform pos: 62.5,4.5 parent: 2 - - uid: 4067 + - uid: 4020 components: - type: Transform pos: 62.5,5.5 parent: 2 - - uid: 4068 + - uid: 4021 components: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 4069 + - uid: 4022 components: - type: Transform pos: 62.5,7.5 parent: 2 - - uid: 4070 + - uid: 4023 components: - type: Transform pos: 62.5,8.5 parent: 2 - - uid: 4071 + - uid: 4024 components: - type: Transform pos: 62.5,9.5 parent: 2 - - uid: 4072 + - uid: 4025 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 4073 + - uid: 4026 components: - type: Transform pos: 64.5,4.5 parent: 2 - - uid: 4074 + - uid: 4027 components: - type: Transform pos: 65.5,4.5 parent: 2 - - uid: 4075 + - uid: 4028 components: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 4076 + - uid: 4029 components: - type: Transform pos: 66.5,5.5 parent: 2 - - uid: 4077 + - uid: 4030 components: - type: Transform pos: 66.5,6.5 parent: 2 - - uid: 4078 + - uid: 4031 components: - type: Transform pos: 66.5,7.5 parent: 2 - - uid: 4079 + - uid: 4032 components: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 4080 + - uid: 4033 components: - type: Transform pos: 66.5,9.5 parent: 2 - - uid: 4081 + - uid: 4034 components: - type: Transform pos: 67.5,4.5 parent: 2 - - uid: 4082 + - uid: 4035 components: - type: Transform pos: 68.5,4.5 parent: 2 - - uid: 4083 + - uid: 4036 components: - type: Transform pos: 69.5,4.5 parent: 2 - - uid: 4084 + - uid: 4037 components: - type: Transform pos: 69.5,5.5 parent: 2 - - uid: 4085 + - uid: 4038 components: - type: Transform pos: 69.5,6.5 parent: 2 - - uid: 4086 + - uid: 4039 components: - type: Transform pos: 69.5,7.5 parent: 2 - - uid: 4087 + - uid: 4040 components: - type: Transform pos: 69.5,8.5 parent: 2 - - uid: 4088 + - uid: 4041 components: - type: Transform pos: 69.5,9.5 parent: 2 - - uid: 4089 + - uid: 4042 components: - type: Transform pos: 69.5,10.5 parent: 2 - - uid: 4090 + - uid: 4043 components: - type: Transform pos: 62.5,10.5 parent: 2 - - uid: 4091 + - uid: 4044 components: - type: Transform pos: 70.5,6.5 parent: 2 - - uid: 4092 + - uid: 4045 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 4093 + - uid: 4046 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 4094 + - uid: 4047 components: - type: Transform pos: 63.5,12.5 parent: 2 - - uid: 4095 + - uid: 4048 components: - type: Transform pos: 64.5,12.5 parent: 2 - - uid: 4096 + - uid: 4049 components: - type: Transform pos: 65.5,12.5 parent: 2 - - uid: 4097 + - uid: 4050 components: - type: Transform pos: 66.5,12.5 parent: 2 - - uid: 4098 + - uid: 4051 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 4099 + - uid: 4052 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 4100 + - uid: 4053 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 4101 + - uid: 4054 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 4102 + - uid: 4055 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 4103 + - uid: 4056 components: - type: Transform pos: 53.5,12.5 parent: 2 - - uid: 4104 + - uid: 4057 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 4105 + - uid: 4058 components: - type: Transform pos: 51.5,12.5 parent: 2 - - uid: 4106 + - uid: 4059 components: - type: Transform pos: 50.5,12.5 parent: 2 - - uid: 4107 + - uid: 4060 components: - type: Transform pos: 53.5,11.5 parent: 2 - - uid: 4108 + - uid: 4061 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 4109 + - uid: 4062 components: - type: Transform pos: 56.5,12.5 parent: 2 - - uid: 4110 + - uid: 4063 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 4111 + - uid: 4064 components: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 4112 + - uid: 4065 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 4113 + - uid: 4066 components: - type: Transform pos: 60.5,12.5 parent: 2 - - uid: 4114 + - uid: 4067 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 4115 + - uid: 4068 components: - type: Transform pos: 56.5,19.5 parent: 2 - - uid: 4116 + - uid: 4069 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 4117 + - uid: 4070 components: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 4118 + - uid: 4071 components: - type: Transform pos: 57.5,17.5 parent: 2 - - uid: 4119 + - uid: 4072 components: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 4120 + - uid: 4073 components: - type: Transform pos: 59.5,17.5 parent: 2 - - uid: 4121 + - uid: 4074 components: - type: Transform pos: 60.5,17.5 parent: 2 - - uid: 4122 + - uid: 4075 components: - type: Transform pos: 61.5,17.5 parent: 2 - - uid: 4123 + - uid: 4076 components: - type: Transform pos: 62.5,17.5 parent: 2 - - uid: 4124 + - uid: 4077 components: - type: Transform pos: 63.5,17.5 parent: 2 - - uid: 4125 + - uid: 4078 components: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 4126 + - uid: 4079 components: - type: Transform pos: 65.5,17.5 parent: 2 - - uid: 4127 + - uid: 4080 components: - type: Transform pos: 66.5,17.5 parent: 2 - - uid: 4128 + - uid: 4081 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 4129 + - uid: 4082 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 4130 + - uid: 4083 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 4131 + - uid: 4084 components: - type: Transform pos: 52.5,17.5 parent: 2 - - uid: 4132 + - uid: 4085 components: - type: Transform pos: 51.5,17.5 parent: 2 - - uid: 4133 + - uid: 4086 components: - type: Transform pos: 50.5,17.5 parent: 2 - - uid: 4134 + - uid: 4087 components: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 4135 + - uid: 4088 components: - type: Transform pos: 52.5,19.5 parent: 2 - - uid: 4136 + - uid: 4089 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 4137 + - uid: 4090 components: - type: Transform pos: 51.5,15.5 parent: 2 - - uid: 4138 + - uid: 4091 components: - type: Transform pos: 50.5,15.5 parent: 2 - - uid: 4139 + - uid: 4092 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 4140 + - uid: 4093 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 4141 + - uid: 4094 components: - type: Transform pos: 45.5,23.5 parent: 2 - - uid: 4142 + - uid: 4095 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 4143 + - uid: 4096 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 4144 + - uid: 4097 components: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 4145 + - uid: 4098 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 4146 + - uid: 4099 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 4147 + - uid: 4100 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 4148 + - uid: 4101 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 4149 + - uid: 4102 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 4150 + - uid: 4103 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 4151 + - uid: 4104 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 4152 + - uid: 4105 components: - type: Transform pos: 47.5,23.5 parent: 2 - - uid: 4153 + - uid: 4106 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 4154 + - uid: 4107 components: - type: Transform pos: 48.5,16.5 parent: 2 - - uid: 4155 + - uid: 4108 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 4156 + - uid: 4109 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 4157 + - uid: 4110 components: - type: Transform pos: 36.5,11.5 parent: 2 - - uid: 4158 + - uid: 4111 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 4159 + - uid: 4112 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 4160 + - uid: 4113 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 4161 + - uid: 4114 components: - type: Transform pos: 37.5,8.5 parent: 2 - - uid: 4162 + - uid: 4115 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 4163 + - uid: 4116 components: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 4164 + - uid: 4117 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 4165 + - uid: 4118 components: - type: Transform pos: 40.5,7.5 parent: 2 - - uid: 4166 + - uid: 4119 components: - type: Transform pos: 40.5,6.5 parent: 2 - - uid: 4167 + - uid: 4120 components: - type: Transform pos: 40.5,5.5 parent: 2 - - uid: 4168 + - uid: 4121 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 4169 + - uid: 4122 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 4170 + - uid: 4123 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 4171 + - uid: 4124 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 4172 + - uid: 4125 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 4173 + - uid: 4126 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 4174 + - uid: 4127 components: - type: Transform pos: 40.5,9.5 parent: 2 - - uid: 4175 + - uid: 4128 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 4176 + - uid: 4129 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 4177 + - uid: 4130 components: - type: Transform pos: 40.5,12.5 parent: 2 - - uid: 4178 + - uid: 4131 components: - type: Transform pos: 40.5,3.5 parent: 2 - - uid: 4179 + - uid: 4132 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 4180 + - uid: 4133 components: - type: Transform pos: 40.5,1.5 parent: 2 - - uid: 4181 + - uid: 4134 components: - type: Transform pos: 40.5,0.5 parent: 2 - - uid: 4182 + - uid: 4135 components: - type: Transform pos: 34.5,5.5 parent: 2 - - uid: 4183 + - uid: 4136 components: - type: Transform pos: 35.5,5.5 parent: 2 - - uid: 4184 + - uid: 4137 components: - type: Transform pos: 36.5,5.5 parent: 2 - - uid: 4185 + - uid: 4138 components: - type: Transform pos: 37.5,5.5 parent: 2 - - uid: 4186 + - uid: 4139 components: - type: Transform pos: 37.5,6.5 parent: 2 - - uid: 4187 + - uid: 4140 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 4188 + - uid: 4141 components: - type: Transform pos: 39.5,6.5 parent: 2 - - uid: 4189 + - uid: 4142 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 4190 + - uid: 4143 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 4191 + - uid: 4144 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 4192 + - uid: 4145 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 4193 + - uid: 4146 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 4194 + - uid: 4147 components: - type: Transform pos: 37.5,1.5 parent: 2 - - uid: 4195 + - uid: 4148 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 4196 + - uid: 4149 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 4197 + - uid: 4150 components: - type: Transform pos: 37.5,-1.5 parent: 2 - - uid: 4198 + - uid: 4151 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 4199 + - uid: 4152 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 4200 + - uid: 4153 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 4201 + - uid: 4154 components: - type: Transform pos: 33.5,0.5 parent: 2 - - uid: 4202 + - uid: 4155 components: - type: Transform pos: 33.5,1.5 parent: 2 - - uid: 4203 + - uid: 4156 components: - type: Transform pos: 36.5,-1.5 parent: 2 - - uid: 4204 + - uid: 4157 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 4205 + - uid: 4158 components: - type: Transform pos: 38.5,-3.5 parent: 2 - - uid: 4206 + - uid: 4159 components: - type: Transform pos: 37.5,-3.5 parent: 2 - - uid: 4207 + - uid: 4160 components: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 4208 + - uid: 4161 components: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 4209 + - uid: 4162 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 4210 + - uid: 4163 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 4211 + - uid: 4164 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 4212 + - uid: 4165 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 4213 + - uid: 4166 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 4214 + - uid: 4167 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 4215 + - uid: 4168 components: - type: Transform pos: 43.5,-7.5 parent: 2 - - uid: 4216 + - uid: 4169 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 4217 + - uid: 4170 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 4218 + - uid: 4171 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 4219 + - uid: 4172 components: - type: Transform pos: 49.5,-7.5 parent: 2 - - uid: 4220 + - uid: 4173 components: - type: Transform pos: 50.5,-7.5 parent: 2 - - uid: 4221 + - uid: 4174 components: - type: Transform pos: 51.5,-7.5 parent: 2 - - uid: 4222 + - uid: 4175 components: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 4223 + - uid: 4176 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 4224 + - uid: 4177 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 4225 + - uid: 4178 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 4226 + - uid: 4179 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 4227 + - uid: 4180 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 4228 + - uid: 4181 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 4229 + - uid: 4182 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 4230 + - uid: 4183 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 4231 + - uid: 4184 components: - type: Transform pos: 47.5,-0.5 parent: 2 - - uid: 4232 + - uid: 4185 components: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 4233 + - uid: 4186 components: - type: Transform pos: 47.5,-2.5 parent: 2 - - uid: 4234 + - uid: 4187 components: - type: Transform pos: 47.5,-3.5 parent: 2 - - uid: 4235 + - uid: 4188 components: - type: Transform pos: 47.5,-3.5 parent: 2 - - uid: 4236 + - uid: 4189 components: - type: Transform pos: 47.5,-4.5 parent: 2 - - uid: 4237 + - uid: 4190 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 4238 + - uid: 4191 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 4239 + - uid: 4192 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 4240 + - uid: 4193 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 4241 + - uid: 4194 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 4242 + - uid: 4195 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 4243 + - uid: 4196 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 4244 + - uid: 4197 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 4245 + - uid: 4198 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 4246 + - uid: 4199 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 4247 + - uid: 4200 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 4248 + - uid: 4201 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 4249 + - uid: 4202 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 4250 + - uid: 4203 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 4251 + - uid: 4204 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 4252 + - uid: 4205 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 4253 + - uid: 4206 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 4254 + - uid: 4207 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 4255 + - uid: 4208 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 4256 + - uid: 4209 components: - type: Transform pos: 72.5,1.5 parent: 2 - - uid: 4257 + - uid: 4210 components: - type: Transform pos: 71.5,1.5 parent: 2 - - uid: 4258 + - uid: 4211 components: - type: Transform pos: 70.5,1.5 parent: 2 - - uid: 4259 + - uid: 4212 components: - type: Transform pos: 69.5,1.5 parent: 2 - - uid: 4260 + - uid: 4213 components: - type: Transform pos: 72.5,-0.5 parent: 2 - - uid: 4261 + - uid: 4214 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 4262 + - uid: 4215 components: - type: Transform pos: 70.5,-0.5 parent: 2 - - uid: 4263 + - uid: 4216 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 4264 + - uid: 4217 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 4265 + - uid: 4218 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 4266 + - uid: 4219 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 4267 + - uid: 4220 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 4268 + - uid: 4221 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 4269 + - uid: 4222 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 4270 + - uid: 4223 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 4271 + - uid: 4224 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 4272 + - uid: 4225 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 4273 + - uid: 4226 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 4274 + - uid: 4227 components: - type: Transform pos: 50.5,-4.5 parent: 2 - - uid: 4275 + - uid: 4228 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 4276 + - uid: 4229 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 4277 + - uid: 4230 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 4278 + - uid: 4231 components: - type: Transform pos: 53.5,-2.5 parent: 2 - - uid: 4279 + - uid: 4232 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 4280 + - uid: 4233 components: - type: Transform pos: 53.5,-4.5 parent: 2 - - uid: 4281 + - uid: 4234 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 4282 + - uid: 4235 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 4283 + - uid: 4236 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 4284 + - uid: 4237 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 4285 + - uid: 4238 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 4286 + - uid: 4239 components: - type: Transform pos: 62.5,-4.5 parent: 2 - - uid: 4287 + - uid: 4240 components: - type: Transform pos: 61.5,-4.5 parent: 2 - - uid: 4288 + - uid: 4241 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 4289 + - uid: 4242 components: - type: Transform pos: 60.5,-2.5 parent: 2 - - uid: 4290 + - uid: 4243 components: - type: Transform pos: 60.5,-3.5 parent: 2 - - uid: 4291 + - uid: 4244 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 4292 + - uid: 4245 components: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 4293 + - uid: 4246 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 4294 + - uid: 4247 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 4295 + - uid: 4248 components: - type: Transform pos: 65.5,-3.5 parent: 2 - - uid: 4296 + - uid: 4249 components: - type: Transform pos: 66.5,-3.5 parent: 2 - - uid: 4297 + - uid: 4250 components: - type: Transform pos: 46.5,0.5 parent: 2 - - uid: 4298 + - uid: 4251 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 4299 + - uid: 4252 components: - type: Transform pos: 44.5,0.5 parent: 2 - - uid: 4300 + - uid: 4253 components: - type: Transform pos: 43.5,0.5 parent: 2 - - uid: 4301 + - uid: 4254 components: - type: Transform pos: 46.5,8.5 parent: 2 - - uid: 4302 + - uid: 4255 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 4303 + - uid: 4256 components: - type: Transform pos: 44.5,8.5 parent: 2 - - uid: 4304 + - uid: 4257 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 4305 + - uid: 4258 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 4306 + - uid: 4259 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 4307 + - uid: 4260 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 4308 + - uid: 4261 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 4309 + - uid: 4262 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 4310 + - uid: 4263 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 4311 + - uid: 4264 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 4312 + - uid: 4265 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 4313 + - uid: 4266 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 4314 + - uid: 4267 components: - type: Transform pos: 46.5,12.5 parent: 2 - - uid: 4315 + - uid: 4268 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 4316 + - uid: 4269 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 4317 + - uid: 4270 components: - type: Transform pos: 56.5,-0.5 parent: 2 - - uid: 4318 + - uid: 4271 components: - type: Transform pos: 56.5,-1.5 parent: 2 - - uid: 4319 + - uid: 4272 components: - type: Transform pos: 56.5,-2.5 parent: 2 - - uid: 4320 + - uid: 4273 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 4321 + - uid: 4274 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 4322 + - uid: 4275 components: - type: Transform pos: 56.5,-3.5 parent: 2 - - uid: 4323 + - uid: 4276 components: - type: Transform pos: 55.5,-3.5 parent: 2 - - uid: 4324 + - uid: 4277 components: - type: Transform pos: 58.5,-3.5 parent: 2 - - uid: 4325 + - uid: 4278 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 4326 + - uid: 4279 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 4327 + - uid: 4280 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 4328 + - uid: 4281 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 4329 + - uid: 4282 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 4330 + - uid: 4283 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 4331 + - uid: 4284 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - uid: 4332 + - uid: 4285 components: - type: Transform pos: 26.5,-2.5 parent: 2 - - uid: 4333 + - uid: 4286 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 4334 + - uid: 4287 components: - type: Transform pos: 26.5,-4.5 parent: 2 - - uid: 4335 + - uid: 4288 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 4336 + - uid: 4289 components: - type: Transform pos: 26.5,-6.5 parent: 2 - - uid: 4337 + - uid: 4290 components: - type: Transform pos: 26.5,-7.5 parent: 2 - - uid: 4338 + - uid: 4291 components: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 4339 + - uid: 4292 components: - type: Transform pos: 28.5,-1.5 parent: 2 - - uid: 4340 + - uid: 4293 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 4341 + - uid: 4294 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 4342 + - uid: 4295 components: - type: Transform pos: 30.5,0.5 parent: 2 - - uid: 4343 + - uid: 4296 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 4344 + - uid: 4297 components: - type: Transform pos: 30.5,2.5 parent: 2 - - uid: 4345 + - uid: 4298 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 4346 + - uid: 4299 components: - type: Transform pos: 30.5,-3.5 parent: 2 - - uid: 4347 + - uid: 4300 components: - type: Transform pos: 30.5,-4.5 parent: 2 - - uid: 4348 + - uid: 4301 components: - type: Transform pos: 30.5,-5.5 parent: 2 - - uid: 4349 + - uid: 4302 components: - type: Transform pos: 30.5,-6.5 parent: 2 - - uid: 4350 + - uid: 4303 components: - type: Transform pos: 30.5,-7.5 parent: 2 - - uid: 4351 + - uid: 4304 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 4352 + - uid: 4305 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 4353 + - uid: 4306 components: - type: Transform pos: 25.5,-1.5 parent: 2 - - uid: 4354 + - uid: 4307 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 4355 + - uid: 4308 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 4356 + - uid: 4309 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 4357 + - uid: 4310 components: - type: Transform pos: 21.5,-1.5 parent: 2 - - uid: 4358 + - uid: 4311 components: - type: Transform pos: 20.5,-1.5 parent: 2 - - uid: 4359 + - uid: 4312 components: - type: Transform pos: 22.5,-0.5 parent: 2 - - uid: 4360 + - uid: 4313 components: - type: Transform pos: 22.5,0.5 parent: 2 - - uid: 4361 + - uid: 4314 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 4362 + - uid: 4315 components: - type: Transform pos: 22.5,2.5 parent: 2 - - uid: 4363 + - uid: 4316 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 4364 + - uid: 4317 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 4365 + - uid: 4318 components: - type: Transform pos: 21.5,-3.5 parent: 2 - - uid: 4366 + - uid: 4319 components: - type: Transform pos: 22.5,-3.5 parent: 2 - - uid: 4367 + - uid: 4320 components: - type: Transform pos: 22.5,-4.5 parent: 2 - - uid: 4368 + - uid: 4321 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 4369 + - uid: 4322 components: - type: Transform pos: 22.5,-6.5 parent: 2 - - uid: 4370 + - uid: 4323 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 4371 + - uid: 4324 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 4372 + - uid: 4325 components: - type: Transform pos: 23.5,-7.5 parent: 2 - - uid: 4373 + - uid: 4326 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 4374 + - uid: 4327 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 4375 + - uid: 4328 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4376 + - uid: 4329 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 4377 + - uid: 4330 components: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 4378 + - uid: 4331 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 4379 + - uid: 4332 components: - type: Transform pos: 21.5,-10.5 parent: 2 - - uid: 4380 + - uid: 4333 components: - type: Transform pos: 20.5,-10.5 parent: 2 - - uid: 4381 + - uid: 4334 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 4382 + - uid: 4335 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 4383 + - uid: 4336 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 4384 + - uid: 4337 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 4385 + - uid: 4338 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 4386 + - uid: 4339 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 4387 + - uid: 4340 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 4388 + - uid: 4341 components: - type: Transform pos: 31.5,-9.5 parent: 2 - - uid: 4389 + - uid: 4342 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 4390 + - uid: 4343 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 4391 + - uid: 4344 components: - type: Transform pos: 28.5,-13.5 parent: 2 - - uid: 4392 + - uid: 4345 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 4393 + - uid: 4346 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 4394 + - uid: 4347 components: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 4395 + - uid: 4348 components: - type: Transform pos: 27.5,-16.5 parent: 2 - - uid: 4396 + - uid: 4349 components: - type: Transform pos: 27.5,-17.5 parent: 2 - - uid: 4397 + - uid: 4350 components: - type: Transform pos: 29.5,-14.5 parent: 2 - - uid: 4398 + - uid: 4351 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 4399 + - uid: 4352 components: - type: Transform pos: 29.5,-16.5 parent: 2 - - uid: 4400 + - uid: 4353 components: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 4401 + - uid: 4354 components: - type: Transform pos: 31.5,-14.5 parent: 2 - - uid: 4402 + - uid: 4355 components: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4403 + - uid: 4356 components: - type: Transform pos: 31.5,-16.5 parent: 2 - - uid: 4404 + - uid: 4357 components: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 4405 + - uid: 4358 components: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 4406 + - uid: 4359 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 4407 + - uid: 4360 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 4408 + - uid: 4361 components: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 4409 + - uid: 4362 components: - type: Transform pos: 23.5,-14.5 parent: 2 - - uid: 4410 + - uid: 4363 components: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 4411 + - uid: 4364 components: - type: Transform pos: 21.5,-14.5 parent: 2 - - uid: 4412 + - uid: 4365 components: - type: Transform pos: 25.5,-15.5 parent: 2 - - uid: 4413 + - uid: 4366 components: - type: Transform pos: 25.5,-16.5 parent: 2 - - uid: 4414 + - uid: 4367 components: - type: Transform pos: 25.5,-17.5 parent: 2 - - uid: 4415 + - uid: 4368 components: - type: Transform pos: 25.5,-13.5 parent: 2 - - uid: 4416 + - uid: 4369 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 4417 + - uid: 4370 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 4418 + - uid: 4371 components: - type: Transform pos: -40.5,62.5 parent: 2 - - uid: 4419 + - uid: 4372 components: - type: Transform pos: -40.5,61.5 parent: 2 - - uid: 4420 + - uid: 4373 components: - type: Transform pos: -40.5,60.5 parent: 2 - - uid: 4421 + - uid: 4374 components: - type: Transform pos: -40.5,59.5 parent: 2 - - uid: 4422 + - uid: 4375 components: - type: Transform pos: -39.5,61.5 parent: 2 - - uid: 4423 + - uid: 4376 components: - type: Transform pos: -38.5,61.5 parent: 2 - - uid: 4424 + - uid: 4377 components: - type: Transform pos: -37.5,61.5 parent: 2 - - uid: 4425 + - uid: 4378 components: - type: Transform pos: -36.5,61.5 parent: 2 - - uid: 4426 + - uid: 4379 components: - type: Transform pos: -35.5,61.5 parent: 2 - - uid: 4427 + - uid: 4380 components: - type: Transform pos: -34.5,61.5 parent: 2 - - uid: 4428 + - uid: 4381 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 4429 + - uid: 4382 components: - type: Transform pos: -30.5,65.5 parent: 2 - - uid: 4430 + - uid: 4383 components: - type: Transform pos: -30.5,64.5 parent: 2 - - uid: 4431 + - uid: 4384 components: - type: Transform pos: -30.5,63.5 parent: 2 - - uid: 4432 + - uid: 4385 components: - type: Transform pos: -30.5,62.5 parent: 2 - - uid: 4433 + - uid: 4386 components: - type: Transform pos: -30.5,61.5 parent: 2 - - uid: 4434 + - uid: 4387 components: - type: Transform pos: -30.5,60.5 parent: 2 - - uid: 4435 + - uid: 4388 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 4436 + - uid: 4389 components: - type: Transform pos: -30.5,58.5 parent: 2 - - uid: 4437 + - uid: 4390 components: - type: Transform pos: -30.5,57.5 parent: 2 - - uid: 4438 + - uid: 4391 components: - type: Transform pos: -31.5,57.5 parent: 2 - - uid: 4439 + - uid: 4392 components: - type: Transform pos: -32.5,57.5 parent: 2 - - uid: 4440 + - uid: 4393 components: - type: Transform pos: -33.5,57.5 parent: 2 - - uid: 4441 + - uid: 4394 components: - type: Transform pos: -34.5,57.5 parent: 2 - - uid: 4442 + - uid: 4395 components: - type: Transform pos: -35.5,57.5 parent: 2 - - uid: 4443 + - uid: 4396 components: - type: Transform pos: -36.5,57.5 parent: 2 - - uid: 4444 + - uid: 4397 components: - type: Transform pos: -37.5,57.5 parent: 2 - - uid: 4445 + - uid: 4398 components: - type: Transform pos: -38.5,57.5 parent: 2 - - uid: 4446 + - uid: 4399 components: - type: Transform pos: -39.5,57.5 parent: 2 - - uid: 4447 + - uid: 4400 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 4448 + - uid: 4401 components: - type: Transform pos: -41.5,57.5 parent: 2 - - uid: 4449 + - uid: 4402 components: - type: Transform pos: -41.5,56.5 parent: 2 - - uid: 4450 + - uid: 4403 components: - type: Transform pos: -41.5,55.5 parent: 2 - - uid: 4451 + - uid: 4404 components: - type: Transform pos: -41.5,54.5 parent: 2 - - uid: 4452 + - uid: 4405 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 4453 + - uid: 4406 components: - type: Transform pos: -41.5,52.5 parent: 2 - - uid: 4454 + - uid: 4407 components: - type: Transform pos: -41.5,51.5 parent: 2 - - uid: 4455 + - uid: 4408 components: - type: Transform pos: -41.5,50.5 parent: 2 - - uid: 4456 + - uid: 4409 components: - type: Transform pos: -41.5,49.5 parent: 2 - - uid: 4457 + - uid: 4410 components: - type: Transform pos: -41.5,48.5 parent: 2 - - uid: 4458 + - uid: 4411 components: - type: Transform pos: -41.5,47.5 parent: 2 - - uid: 4459 + - uid: 4412 components: - type: Transform pos: -41.5,46.5 parent: 2 - - uid: 4460 + - uid: 4413 components: - type: Transform pos: -41.5,45.5 parent: 2 - - uid: 4461 + - uid: 4414 components: - type: Transform pos: -41.5,44.5 parent: 2 - - uid: 4462 + - uid: 4415 components: - type: Transform pos: -29.5,57.5 parent: 2 - - uid: 4463 + - uid: 4416 components: - type: Transform pos: -28.5,57.5 parent: 2 - - uid: 4464 + - uid: 4417 components: - type: Transform pos: -27.5,57.5 parent: 2 - - uid: 4465 + - uid: 4418 components: - type: Transform pos: -26.5,57.5 parent: 2 - - uid: 4466 + - uid: 4419 components: - type: Transform pos: -25.5,57.5 parent: 2 - - uid: 4467 + - uid: 4420 components: - type: Transform pos: -24.5,57.5 parent: 2 - - uid: 4468 + - uid: 4421 components: - type: Transform pos: -23.5,57.5 parent: 2 - - uid: 4469 + - uid: 4422 components: - type: Transform pos: -23.5,56.5 parent: 2 - - uid: 4470 + - uid: 4423 components: - type: Transform pos: -23.5,55.5 parent: 2 - - uid: 4471 + - uid: 4424 components: - type: Transform pos: -22.5,55.5 parent: 2 - - uid: 4472 + - uid: 4425 components: - type: Transform pos: -29.5,65.5 parent: 2 - - uid: 4473 + - uid: 4426 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 4474 + - uid: 4427 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 4475 + - uid: 4428 components: - type: Transform pos: -46.5,14.5 parent: 2 - - uid: 4476 + - uid: 4429 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 4477 + - uid: 4430 components: - type: Transform pos: -46.5,12.5 parent: 2 - - uid: 4478 + - uid: 4431 components: - type: Transform pos: -46.5,11.5 parent: 2 - - uid: 4479 + - uid: 4432 components: - type: Transform pos: -47.5,12.5 parent: 2 - - uid: 4480 + - uid: 4433 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 4481 + - uid: 4434 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 4482 + - uid: 4435 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 4483 + - uid: 4436 components: - type: Transform pos: -51.5,12.5 parent: 2 - - uid: 4484 + - uid: 4437 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 4485 + - uid: 4438 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 4486 + - uid: 4439 components: - type: Transform pos: -54.5,12.5 parent: 2 - - uid: 4487 + - uid: 4440 components: - type: Transform pos: -55.5,12.5 parent: 2 - - uid: 4488 + - uid: 4441 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 4489 + - uid: 4442 components: - type: Transform pos: -57.5,12.5 parent: 2 - - uid: 4490 + - uid: 4443 components: - type: Transform pos: -58.5,12.5 parent: 2 - - uid: 4491 + - uid: 4444 components: - type: Transform pos: -58.5,11.5 parent: 2 - - uid: 4492 + - uid: 4445 components: - type: Transform pos: -58.5,10.5 parent: 2 - - uid: 4493 + - uid: 4446 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 4494 + - uid: 4447 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 4495 + - uid: 4448 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 4496 + - uid: 4449 components: - type: Transform pos: -62.5,9.5 parent: 2 - - uid: 4497 + - uid: 4450 components: - type: Transform pos: -62.5,8.5 parent: 2 - - uid: 4498 + - uid: 4451 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 4499 + - uid: 4452 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 4500 + - uid: 4453 components: - type: Transform pos: -62.5,5.5 parent: 2 - - uid: 4501 + - uid: 4454 components: - type: Transform pos: -62.5,4.5 parent: 2 - - uid: 4502 + - uid: 4455 components: - type: Transform pos: -61.5,6.5 parent: 2 - - uid: 4503 + - uid: 4456 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 4504 + - uid: 4457 components: - type: Transform pos: -63.5,8.5 parent: 2 - - uid: 4505 + - uid: 4458 components: - type: Transform pos: -64.5,8.5 parent: 2 - - uid: 4506 + - uid: 4459 components: - type: Transform pos: -65.5,8.5 parent: 2 - - uid: 4507 + - uid: 4460 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 4508 + - uid: 4461 components: - type: Transform pos: -59.5,6.5 parent: 2 - - uid: 4509 + - uid: 4462 components: - type: Transform pos: -58.5,6.5 parent: 2 - - uid: 4510 + - uid: 4463 components: - type: Transform pos: -57.5,6.5 parent: 2 - - uid: 4511 + - uid: 4464 components: - type: Transform pos: -56.5,6.5 parent: 2 - - uid: 4512 + - uid: 4465 components: - type: Transform pos: -55.5,6.5 parent: 2 - - uid: 4513 + - uid: 4466 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 4514 + - uid: 4467 components: - type: Transform pos: -64.5,6.5 parent: 2 - - uid: 4515 + - uid: 4468 components: - type: Transform pos: -65.5,6.5 parent: 2 - - uid: 4516 + - uid: 4469 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 4517 + - uid: 4470 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 4518 + - uid: 4471 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 4519 + - uid: 4472 components: - type: Transform pos: -62.5,16.5 parent: 2 - - uid: 4520 + - uid: 4473 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 4521 + - uid: 4474 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 4522 + - uid: 4475 components: - type: Transform pos: -63.5,14.5 parent: 2 - - uid: 4523 + - uid: 4476 components: - type: Transform pos: -64.5,14.5 parent: 2 - - uid: 4524 + - uid: 4477 components: - type: Transform pos: -65.5,14.5 parent: 2 - - uid: 4525 + - uid: 4478 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 4526 + - uid: 4479 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 4527 + - uid: 4480 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 4528 + - uid: 4481 components: - type: Transform pos: -63.5,17.5 parent: 2 - - uid: 4529 + - uid: 4482 components: - type: Transform pos: -64.5,17.5 parent: 2 - - uid: 4530 + - uid: 4483 components: - type: Transform pos: -65.5,17.5 parent: 2 - - uid: 4531 + - uid: 4484 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 4532 + - uid: 4485 components: - type: Transform pos: -118.5,19.5 parent: 2 - - uid: 4533 + - uid: 4486 components: - type: Transform pos: -118.5,18.5 parent: 2 - - uid: 4534 + - uid: 4487 components: - type: Transform pos: -119.5,18.5 parent: 2 - - uid: 4535 + - uid: 4488 components: - type: Transform pos: -120.5,18.5 parent: 2 - - uid: 4536 + - uid: 4489 components: - type: Transform pos: -121.5,18.5 parent: 2 - - uid: 4537 + - uid: 4490 components: - type: Transform pos: -118.5,18.5 parent: 2 - - uid: 4538 + - uid: 4491 components: - type: Transform pos: -117.5,18.5 parent: 2 - - uid: 4539 + - uid: 4492 components: - type: Transform pos: -116.5,18.5 parent: 2 - - uid: 4540 + - uid: 4493 components: - type: Transform pos: -115.5,18.5 parent: 2 - - uid: 4541 + - uid: 4494 components: - type: Transform pos: -114.5,18.5 parent: 2 - - uid: 4542 + - uid: 4495 components: - type: Transform pos: -118.5,17.5 parent: 2 - - uid: 4543 + - uid: 4496 components: - type: Transform pos: -122.5,18.5 parent: 2 - - uid: 4544 + - uid: 4497 components: - type: Transform pos: -118.5,21.5 parent: 2 - - uid: 4545 + - uid: 4498 components: - type: Transform pos: -118.5,22.5 parent: 2 - - uid: 4546 + - uid: 4499 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 4547 + - uid: 4500 components: - type: Transform pos: -119.5,23.5 parent: 2 - - uid: 4548 + - uid: 4501 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 4549 + - uid: 4502 components: - type: Transform pos: -121.5,23.5 parent: 2 - - uid: 4550 + - uid: 4503 components: - type: Transform pos: -122.5,23.5 parent: 2 - - uid: 4551 + - uid: 4504 components: - type: Transform pos: -122.5,24.5 parent: 2 - - uid: 4552 + - uid: 4505 components: - type: Transform pos: -122.5,25.5 parent: 2 - - uid: 4553 + - uid: 4506 components: - type: Transform pos: -117.5,23.5 parent: 2 - - uid: 4554 + - uid: 4507 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 4555 + - uid: 4508 components: - type: Transform pos: -115.5,23.5 parent: 2 - - uid: 4556 + - uid: 4509 components: - type: Transform pos: -114.5,23.5 parent: 2 - - uid: 4557 + - uid: 4510 components: - type: Transform pos: -114.5,24.5 parent: 2 - - uid: 4558 + - uid: 4511 components: - type: Transform pos: -114.5,25.5 parent: 2 - - uid: 4559 + - uid: 4512 components: - type: Transform pos: -118.5,24.5 parent: 2 - - uid: 4560 + - uid: 4513 components: - type: Transform pos: -118.5,25.5 parent: 2 - - uid: 4561 + - uid: 4514 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 4562 + - uid: 4515 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 4563 + - uid: 4516 components: - type: Transform pos: -118.5,28.5 parent: 2 - - uid: 4564 + - uid: 4517 components: - type: Transform pos: -118.5,29.5 parent: 2 - - uid: 4565 + - uid: 4518 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 4566 + - uid: 4519 components: - type: Transform pos: -118.5,31.5 parent: 2 - - uid: 4567 + - uid: 4520 components: - type: Transform pos: -118.5,32.5 parent: 2 - - uid: 4568 + - uid: 4521 components: - type: Transform pos: -118.5,33.5 parent: 2 - - uid: 4569 + - uid: 4522 components: - type: Transform pos: -118.5,34.5 parent: 2 - - uid: 4570 + - uid: 4523 components: - type: Transform pos: -118.5,35.5 parent: 2 - - uid: 4571 + - uid: 4524 components: - type: Transform pos: -118.5,36.5 parent: 2 - - uid: 4572 + - uid: 4525 components: - type: Transform pos: -118.5,37.5 parent: 2 - - uid: 4573 + - uid: 4526 components: - type: Transform pos: -118.5,38.5 parent: 2 - - uid: 4574 + - uid: 4527 components: - type: Transform pos: -118.5,39.5 parent: 2 - - uid: 4575 + - uid: 4528 components: - type: Transform pos: -118.5,40.5 parent: 2 - - uid: 4576 + - uid: 4529 components: - type: Transform pos: -118.5,41.5 parent: 2 - - uid: 4577 + - uid: 4530 components: - type: Transform pos: -118.5,42.5 parent: 2 - - uid: 4578 + - uid: 4531 components: - type: Transform pos: -118.5,43.5 parent: 2 - - uid: 4579 + - uid: 4532 components: - type: Transform pos: -113.5,43.5 parent: 2 - - uid: 4580 + - uid: 4533 components: - type: Transform pos: -113.5,42.5 parent: 2 - - uid: 4581 + - uid: 4534 components: - type: Transform pos: -113.5,41.5 parent: 2 - - uid: 4582 + - uid: 4535 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 4583 + - uid: 4536 components: - type: Transform pos: -113.5,39.5 parent: 2 - - uid: 4584 + - uid: 4537 components: - type: Transform pos: -113.5,38.5 parent: 2 - - uid: 4585 + - uid: 4538 components: - type: Transform pos: -113.5,37.5 parent: 2 - - uid: 4586 + - uid: 4539 components: - type: Transform pos: -113.5,36.5 parent: 2 - - uid: 4587 + - uid: 4540 components: - type: Transform pos: -113.5,35.5 parent: 2 - - uid: 4588 + - uid: 4541 components: - type: Transform pos: -115.5,40.5 parent: 2 - - uid: 4589 + - uid: 4542 components: - type: Transform pos: -114.5,40.5 parent: 2 - - uid: 4590 + - uid: 4543 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 4591 + - uid: 4544 components: - type: Transform pos: -112.5,40.5 parent: 2 - - uid: 4592 + - uid: 4545 components: - type: Transform pos: -111.5,40.5 parent: 2 - - uid: 4593 + - uid: 4546 components: - type: Transform pos: -121.5,40.5 parent: 2 - - uid: 4594 + - uid: 4547 components: - type: Transform pos: -122.5,40.5 parent: 2 - - uid: 4595 + - uid: 4548 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 4596 + - uid: 4549 components: - type: Transform pos: -124.5,40.5 parent: 2 - - uid: 4597 + - uid: 4550 components: - type: Transform pos: -125.5,40.5 parent: 2 - - uid: 4598 + - uid: 4551 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 4599 + - uid: 4552 components: - type: Transform pos: -123.5,43.5 parent: 2 - - uid: 4600 + - uid: 4553 components: - type: Transform pos: -123.5,42.5 parent: 2 - - uid: 4601 + - uid: 4554 components: - type: Transform pos: -123.5,41.5 parent: 2 - - uid: 4602 + - uid: 4555 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 4603 + - uid: 4556 components: - type: Transform pos: -123.5,39.5 parent: 2 - - uid: 4604 + - uid: 4557 components: - type: Transform pos: -123.5,38.5 parent: 2 - - uid: 4605 + - uid: 4558 components: - type: Transform pos: -123.5,37.5 parent: 2 - - uid: 4606 + - uid: 4559 components: - type: Transform pos: -123.5,36.5 parent: 2 - - uid: 4607 + - uid: 4560 components: - type: Transform pos: -123.5,35.5 parent: 2 - - uid: 4608 + - uid: 4561 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 4609 + - uid: 4562 components: - type: Transform pos: -118.5,50.5 parent: 2 - - uid: 4610 + - uid: 4563 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 4611 + - uid: 4564 components: - type: Transform pos: -118.5,48.5 parent: 2 - - uid: 4612 + - uid: 4565 components: - type: Transform pos: -118.5,47.5 parent: 2 - - uid: 4613 + - uid: 4566 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 4614 + - uid: 4567 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 4615 + - uid: 4568 components: - type: Transform pos: -117.5,48.5 parent: 2 - - uid: 4616 + - uid: 4569 components: - type: Transform pos: -116.5,48.5 parent: 2 - - uid: 4617 + - uid: 4570 components: - type: Transform pos: -115.5,48.5 parent: 2 - - uid: 4618 + - uid: 4571 components: - type: Transform pos: -114.5,48.5 parent: 2 - - uid: 4619 + - uid: 4572 components: - type: Transform pos: -119.5,48.5 parent: 2 - - uid: 4620 + - uid: 4573 components: - type: Transform pos: -120.5,48.5 parent: 2 - - uid: 4621 + - uid: 4574 components: - type: Transform pos: -121.5,48.5 parent: 2 - - uid: 4622 + - uid: 4575 components: - type: Transform pos: -122.5,48.5 parent: 2 - - uid: 4623 + - uid: 4576 components: - type: Transform pos: -114.5,47.5 parent: 2 - - uid: 4624 + - uid: 4577 components: - type: Transform pos: -114.5,46.5 parent: 2 - - uid: 4625 + - uid: 4578 components: - type: Transform pos: -114.5,45.5 parent: 2 - - uid: 4626 + - uid: 4579 components: - type: Transform pos: -122.5,45.5 parent: 2 - - uid: 4627 + - uid: 4580 components: - type: Transform pos: -122.5,46.5 parent: 2 - - uid: 4628 + - uid: 4581 components: - type: Transform pos: -122.5,47.5 parent: 2 - - uid: 4629 + - uid: 4582 components: - type: Transform pos: -77.5,14.5 parent: 2 - - uid: 4630 + - uid: 4583 components: - type: Transform pos: -77.5,13.5 parent: 2 - - uid: 4631 + - uid: 4584 components: - type: Transform pos: -78.5,14.5 parent: 2 - - uid: 4632 + - uid: 4585 components: - type: Transform pos: -79.5,14.5 parent: 2 - - uid: 4633 + - uid: 4586 components: - type: Transform pos: -80.5,14.5 parent: 2 - - uid: 4634 + - uid: 4587 components: - type: Transform pos: -81.5,14.5 parent: 2 - - uid: 4635 + - uid: 4588 components: - type: Transform pos: -76.5,15.5 parent: 2 - - uid: 4636 + - uid: 4589 components: - type: Transform pos: -75.5,15.5 parent: 2 - - uid: 4637 + - uid: 4590 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 4638 + - uid: 4591 components: - type: Transform pos: -73.5,15.5 parent: 2 - - uid: 4639 + - uid: 4592 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 4640 + - uid: 4593 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 4641 + - uid: 4594 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 4642 + - uid: 4595 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 4643 + - uid: 4596 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 4644 + - uid: 4597 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 4645 + - uid: 4598 components: - type: Transform pos: -76.5,13.5 parent: 2 - - uid: 4646 + - uid: 4599 components: - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 4647 + - uid: 4600 components: - type: Transform pos: -76.5,11.5 parent: 2 - - uid: 4648 + - uid: 4601 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 4649 + - uid: 4602 components: - type: Transform pos: -76.5,9.5 parent: 2 - - uid: 4650 + - uid: 4603 components: - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 4651 + - uid: 4604 components: - type: Transform pos: -76.5,7.5 parent: 2 - - uid: 4652 + - uid: 4605 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 4653 + - uid: 4606 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 4654 + - uid: 4607 components: - type: Transform pos: -76.5,4.5 parent: 2 - - uid: 4655 + - uid: 4608 components: - type: Transform pos: -76.5,3.5 parent: 2 - - uid: 4656 + - uid: 4609 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 4657 + - uid: 4610 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 4658 + - uid: 4611 components: - type: Transform pos: -68.5,2.5 parent: 2 - - uid: 4659 + - uid: 4612 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 4660 + - uid: 4613 components: - type: Transform pos: -69.5,1.5 parent: 2 - - uid: 4661 + - uid: 4614 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 4662 + - uid: 4615 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 4663 + - uid: 4616 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 4664 + - uid: 4617 components: - type: Transform pos: -69.5,-2.5 parent: 2 - - uid: 4665 + - uid: 4618 components: - type: Transform pos: -69.5,-3.5 parent: 2 - - uid: 4666 + - uid: 4619 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 4667 + - uid: 4620 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 4668 + - uid: 4621 components: - type: Transform pos: -66.5,-0.5 parent: 2 - - uid: 4669 + - uid: 4622 components: - type: Transform pos: -65.5,-0.5 parent: 2 - - uid: 4670 + - uid: 4623 components: - type: Transform pos: -65.5,1.5 parent: 2 - - uid: 4671 + - uid: 4624 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 4672 + - uid: 4625 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 4673 + - uid: 4626 components: - type: Transform pos: -63.5,1.5 parent: 2 - - uid: 4674 + - uid: 4627 components: - type: Transform pos: -62.5,1.5 parent: 2 - - uid: 4675 + - uid: 4628 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 4676 + - uid: 4629 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 4677 + - uid: 4630 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 4678 + - uid: 4631 components: - type: Transform pos: -58.5,-0.5 parent: 2 - - uid: 4679 + - uid: 4632 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 4680 + - uid: 4633 components: - type: Transform pos: -56.5,-0.5 parent: 2 - - uid: 4681 + - uid: 4634 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 4682 + - uid: 4635 components: - type: Transform pos: -54.5,-0.5 parent: 2 - - uid: 4683 + - uid: 4636 components: - type: Transform pos: -53.5,-0.5 parent: 2 - - uid: 4684 + - uid: 4637 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 4685 + - uid: 4638 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 4686 + - uid: 4639 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 4687 + - uid: 4640 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 4688 + - uid: 4641 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 4689 + - uid: 4642 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 4690 + - uid: 4643 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 4691 + - uid: 4644 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 4692 + - uid: 4645 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 4693 + - uid: 4646 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 4694 + - uid: 4647 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 4695 + - uid: 4648 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 4696 + - uid: 4649 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 4697 + - uid: 4650 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 4698 + - uid: 4651 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 4699 + - uid: 4652 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 4700 + - uid: 4653 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 4701 + - uid: 4654 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 4702 + - uid: 4655 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 4703 + - uid: 4656 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 4704 + - uid: 4657 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 4705 + - uid: 4658 components: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 4706 + - uid: 4659 components: - type: Transform pos: -54.5,-13.5 parent: 2 - - uid: 4707 + - uid: 4660 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 4708 + - uid: 4661 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 4709 + - uid: 4662 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 4710 + - uid: 4663 components: - type: Transform pos: -58.5,-13.5 parent: 2 - - uid: 4711 + - uid: 4664 components: - type: Transform pos: -59.5,-13.5 parent: 2 - - uid: 4712 + - uid: 4665 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 4713 + - uid: 4666 components: - type: Transform pos: -60.5,-16.5 parent: 2 - - uid: 4714 + - uid: 4667 components: - type: Transform pos: -59.5,-16.5 parent: 2 - - uid: 4715 + - uid: 4668 components: - type: Transform pos: -58.5,-16.5 parent: 2 - - uid: 4716 + - uid: 4669 components: - type: Transform pos: -57.5,-16.5 parent: 2 - - uid: 4717 + - uid: 4670 components: - type: Transform pos: -56.5,-16.5 parent: 2 - - uid: 4718 + - uid: 4671 components: - type: Transform pos: -55.5,-16.5 parent: 2 - - uid: 4719 + - uid: 4672 components: - type: Transform pos: -54.5,-16.5 parent: 2 - - uid: 4720 + - uid: 4673 components: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 4721 + - uid: 4674 components: - type: Transform pos: -51.5,-14.5 parent: 2 - - uid: 4722 + - uid: 4675 components: - type: Transform pos: -50.5,-14.5 parent: 2 - - uid: 4723 + - uid: 4676 components: - type: Transform pos: -49.5,-14.5 parent: 2 - - uid: 4724 + - uid: 4677 components: - type: Transform pos: -48.5,-14.5 parent: 2 - - uid: 4725 + - uid: 4678 components: - type: Transform pos: -47.5,-14.5 parent: 2 - - uid: 4726 + - uid: 4679 components: - type: Transform pos: -46.5,-14.5 parent: 2 - - uid: 4727 + - uid: 4680 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 4728 + - uid: 4681 components: - type: Transform pos: -47.5,-13.5 parent: 2 - - uid: 4729 + - uid: 4682 components: - type: Transform pos: -47.5,-12.5 parent: 2 - - uid: 4730 + - uid: 4683 components: - type: Transform pos: -47.5,-11.5 parent: 2 - - uid: 4731 + - uid: 4684 components: - type: Transform pos: -47.5,-15.5 parent: 2 - - uid: 4732 + - uid: 4685 components: - type: Transform pos: -47.5,-16.5 parent: 2 - - uid: 4733 + - uid: 4686 components: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 4734 + - uid: 4687 components: - type: Transform pos: -51.5,-7.5 parent: 2 - - uid: 4735 + - uid: 4688 components: - type: Transform pos: -50.5,-7.5 parent: 2 - - uid: 4736 + - uid: 4689 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 4737 + - uid: 4690 components: - type: Transform pos: -48.5,-7.5 parent: 2 - - uid: 4738 + - uid: 4691 components: - type: Transform pos: -47.5,-7.5 parent: 2 - - uid: 4739 + - uid: 4692 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 4740 + - uid: 4693 components: - type: Transform pos: -45.5,-7.5 parent: 2 - - uid: 4741 + - uid: 4694 components: - type: Transform pos: -44.5,-7.5 parent: 2 - - uid: 4742 + - uid: 4695 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 4743 + - uid: 4696 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 4744 + - uid: 4697 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 4745 + - uid: 4698 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 4746 + - uid: 4699 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 4747 + - uid: 4700 components: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 4748 + - uid: 4701 components: - type: Transform pos: -59.5,-7.5 parent: 2 - - uid: 4749 + - uid: 4702 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 4750 + - uid: 4703 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 4751 + - uid: 4704 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 4752 + - uid: 4705 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 4753 + - uid: 4706 components: - type: Transform pos: -56.5,-6.5 parent: 2 - - uid: 4754 + - uid: 4707 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 4755 + - uid: 4708 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 4756 + - uid: 4709 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 4757 + - uid: 4710 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 4758 + - uid: 4711 components: - type: Transform pos: -57.5,-9.5 parent: 2 - - uid: 4759 + - uid: 4712 components: - type: Transform pos: -60.5,2.5 parent: 2 - - uid: 4760 + - uid: 4713 components: - type: Transform pos: -59.5,2.5 parent: 2 - - uid: 4761 + - uid: 4714 components: - type: Transform pos: -58.5,2.5 parent: 2 - - uid: 4762 + - uid: 4715 components: - type: Transform pos: -57.5,2.5 parent: 2 - - uid: 4763 + - uid: 4716 components: - type: Transform pos: -56.5,2.5 parent: 2 - - uid: 4764 + - uid: 4717 components: - type: Transform pos: -55.5,2.5 parent: 2 - - uid: 4765 + - uid: 4718 components: - type: Transform pos: -54.5,2.5 parent: 2 - - uid: 4766 + - uid: 4719 components: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 4767 + - uid: 4720 components: - type: Transform pos: -51.5,2.5 parent: 2 - - uid: 4768 + - uid: 4721 components: - type: Transform pos: -50.5,2.5 parent: 2 - - uid: 4769 + - uid: 4722 components: - type: Transform pos: -49.5,2.5 parent: 2 - - uid: 4770 + - uid: 4723 components: - type: Transform pos: -48.5,2.5 parent: 2 - - uid: 4771 + - uid: 4724 components: - type: Transform pos: -51.5,-3.5 parent: 2 - - uid: 4772 + - uid: 4725 components: - type: Transform pos: -50.5,-3.5 parent: 2 - - uid: 4773 + - uid: 4726 components: - type: Transform pos: -49.5,-3.5 parent: 2 - - uid: 4774 + - uid: 4727 components: - type: Transform pos: -48.5,-3.5 parent: 2 - - uid: 4775 + - uid: 4728 components: - type: Transform pos: -53.5,-3.5 parent: 2 - - uid: 4776 + - uid: 4729 components: - type: Transform pos: -54.5,-3.5 parent: 2 - - uid: 4777 + - uid: 4730 components: - type: Transform pos: -55.5,-3.5 parent: 2 - - uid: 4778 + - uid: 4731 components: - type: Transform pos: -56.5,-3.5 parent: 2 - - uid: 4779 + - uid: 4732 components: - type: Transform pos: -57.5,-3.5 parent: 2 - - uid: 4780 + - uid: 4733 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 4781 + - uid: 4734 components: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 4782 + - uid: 4735 components: - type: Transform pos: -60.5,-3.5 parent: 2 - - uid: 4783 + - uid: 4736 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 4784 + - uid: 4737 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 4785 + - uid: 4738 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 4786 + - uid: 4739 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 4787 + - uid: 4740 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 4788 + - uid: 4741 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 4789 + - uid: 4742 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 4790 + - uid: 4743 components: - type: Transform pos: -53.5,17.5 parent: 2 - - uid: 4791 + - uid: 4744 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 4792 + - uid: 4745 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 4793 + - uid: 4746 components: - type: Transform pos: -53.5,14.5 parent: 2 - - uid: 4794 + - uid: 4747 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 4795 + - uid: 4748 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 4796 + - uid: 4749 components: - type: Transform pos: -58.5,9.5 parent: 2 - - uid: 4797 + - uid: 4750 components: - type: Transform pos: -57.5,9.5 parent: 2 - - uid: 4798 + - uid: 4751 components: - type: Transform pos: -56.5,9.5 parent: 2 - - uid: 4799 + - uid: 4752 components: - type: Transform pos: -55.5,9.5 parent: 2 - - uid: 4800 + - uid: 4753 components: - type: Transform pos: -54.5,9.5 parent: 2 - - uid: 4801 + - uid: 4754 components: - type: Transform pos: -53.5,9.5 parent: 2 - - uid: 4802 + - uid: 4755 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 4803 + - uid: 4756 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 4804 + - uid: 4757 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 4805 + - uid: 4758 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 4806 + - uid: 4759 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 4807 + - uid: 4760 components: - type: Transform pos: -49.5,10.5 parent: 2 - - uid: 4808 + - uid: 4761 components: - type: Transform pos: -49.5,11.5 parent: 2 - - uid: 4809 + - uid: 4762 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 4810 + - uid: 4763 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 4811 + - uid: 4764 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 4812 + - uid: 4765 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 4813 + - uid: 4766 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 4814 + - uid: 4767 components: - type: Transform pos: -51.5,15.5 parent: 2 - - uid: 4815 + - uid: 4768 components: - type: Transform pos: -52.5,15.5 parent: 2 - - uid: 4816 + - uid: 4769 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 4817 + - uid: 4770 components: - type: Transform pos: -54.5,15.5 parent: 2 - - uid: 4818 + - uid: 4771 components: - type: Transform pos: -55.5,15.5 parent: 2 - - uid: 4819 + - uid: 4772 components: - type: Transform pos: -56.5,15.5 parent: 2 - - uid: 4820 + - uid: 4773 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 4821 + - uid: 4774 components: - type: Transform pos: -58.5,15.5 parent: 2 - - uid: 4822 + - uid: 4775 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 4823 + - uid: 4776 components: - type: Transform pos: -58.5,13.5 parent: 2 - - uid: 4824 + - uid: 4777 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 4825 + - uid: 4778 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 4826 + - uid: 4779 components: - type: Transform pos: -70.5,12.5 parent: 2 - - uid: 4827 + - uid: 4780 components: - type: Transform pos: -71.5,12.5 parent: 2 - - uid: 4828 + - uid: 4781 components: - type: Transform pos: -71.5,11.5 parent: 2 - - uid: 4829 + - uid: 4782 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 4830 + - uid: 4783 components: - type: Transform pos: -71.5,9.5 parent: 2 - - uid: 4831 + - uid: 4784 components: - type: Transform pos: -71.5,8.5 parent: 2 - - uid: 4832 + - uid: 4785 components: - type: Transform pos: -71.5,7.5 parent: 2 - - uid: 4833 + - uid: 4786 components: - type: Transform pos: -71.5,6.5 parent: 2 - - uid: 4834 + - uid: 4787 components: - type: Transform pos: -71.5,5.5 parent: 2 - - uid: 4835 + - uid: 4788 components: - type: Transform pos: -71.5,4.5 parent: 2 - - uid: 4836 + - uid: 4789 components: - type: Transform pos: -72.5,4.5 parent: 2 - - uid: 4837 + - uid: 4790 components: - type: Transform pos: -73.5,6.5 parent: 2 - - uid: 4838 + - uid: 4791 components: - type: Transform pos: -69.5,6.5 parent: 2 - - uid: 4839 + - uid: 4792 components: - type: Transform pos: -70.5,6.5 parent: 2 - - uid: 4840 + - uid: 4793 components: - type: Transform pos: -72.5,6.5 parent: 2 - - uid: 4841 + - uid: 4794 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 4842 + - uid: 4795 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 4843 + - uid: 4796 components: - type: Transform pos: -72.5,-0.5 parent: 2 - - uid: 4844 + - uid: 4797 components: - type: Transform pos: -73.5,-0.5 parent: 2 - - uid: 4845 + - uid: 4798 components: - type: Transform pos: -73.5,0.5 parent: 2 - - uid: 4846 + - uid: 4799 components: - type: Transform pos: -70.5,2.5 parent: 2 - - uid: 4847 + - uid: 4800 components: - type: Transform pos: -71.5,2.5 parent: 2 - - uid: 4848 + - uid: 4801 components: - type: Transform pos: -72.5,2.5 parent: 2 - - uid: 4849 + - uid: 4802 components: - type: Transform pos: -70.5,-3.5 parent: 2 - - uid: 4850 + - uid: 4803 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 4851 + - uid: 4804 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 4852 + - uid: 4805 components: - type: Transform pos: -65.5,-5.5 parent: 2 - - uid: 4853 + - uid: 4806 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 4854 + - uid: 4807 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 4855 + - uid: 4808 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 4856 + - uid: 4809 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 4857 + - uid: 4810 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 4858 + - uid: 4811 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 4859 + - uid: 4812 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 4860 + - uid: 4813 components: - type: Transform pos: -72.5,-6.5 parent: 2 - - uid: 4861 + - uid: 4814 components: - type: Transform pos: -69.5,-7.5 parent: 2 - - uid: 4862 + - uid: 4815 components: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 4863 + - uid: 4816 components: - type: Transform pos: -69.5,-9.5 parent: 2 - - uid: 4864 + - uid: 4817 components: - type: Transform pos: -69.5,-10.5 parent: 2 - - uid: 4865 + - uid: 4818 components: - type: Transform pos: -69.5,-11.5 parent: 2 - - uid: 4866 + - uid: 4819 components: - type: Transform pos: -69.5,-12.5 parent: 2 - - uid: 4867 + - uid: 4820 components: - type: Transform pos: -70.5,-5.5 parent: 2 - - uid: 4868 + - uid: 4821 components: - type: Transform pos: -68.5,-5.5 parent: 2 - - uid: 4869 + - uid: 4822 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 4870 + - uid: 4823 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 4871 + - uid: 4824 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 4872 + - uid: 4825 components: - type: Transform pos: -73.5,-6.5 parent: 2 - - uid: 4873 + - uid: 4826 components: - type: Transform pos: -74.5,-6.5 parent: 2 - - uid: 4874 + - uid: 4827 components: - type: Transform pos: -75.5,-6.5 parent: 2 - - uid: 4875 + - uid: 4828 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 4876 + - uid: 4829 components: - type: Transform pos: -77.5,-6.5 parent: 2 - - uid: 4877 + - uid: 4830 components: - type: Transform pos: -78.5,-6.5 parent: 2 - - uid: 4878 + - uid: 4831 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 4879 + - uid: 4832 components: - type: Transform pos: -80.5,-6.5 parent: 2 - - uid: 4880 + - uid: 4833 components: - type: Transform pos: -81.5,-6.5 parent: 2 - - uid: 4881 + - uid: 4834 components: - type: Transform pos: -81.5,-5.5 parent: 2 - - uid: 4882 + - uid: 4835 components: - type: Transform pos: -81.5,-7.5 parent: 2 - - uid: 4883 + - uid: 4836 components: - type: Transform pos: -81.5,-9.5 parent: 2 - - uid: 4884 + - uid: 4837 components: - type: Transform pos: -81.5,-9.5 parent: 2 - - uid: 4885 + - uid: 4838 components: - type: Transform pos: -81.5,-8.5 parent: 2 - - uid: 4886 + - uid: 4839 components: - type: Transform pos: -76.5,-7.5 parent: 2 - - uid: 4887 + - uid: 4840 components: - type: Transform pos: -76.5,-8.5 parent: 2 - - uid: 4888 + - uid: 4841 components: - type: Transform pos: -76.5,-9.5 parent: 2 - - uid: 4889 + - uid: 4842 components: - type: Transform pos: -75.5,-9.5 parent: 2 - - uid: 4890 + - uid: 4843 components: - type: Transform pos: -74.5,-9.5 parent: 2 - - uid: 4891 + - uid: 4844 components: - type: Transform pos: -57.5,-11.5 parent: 2 - - uid: 4892 + - uid: 4845 components: - type: Transform pos: -57.5,-12.5 parent: 2 - - uid: 4893 + - uid: 4846 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 4894 + - uid: 4847 components: - type: Transform pos: -57.5,-14.5 parent: 2 - - uid: 4895 + - uid: 4848 components: - type: Transform pos: -57.5,-15.5 parent: 2 - - uid: 4896 + - uid: 4849 components: - type: Transform pos: -57.5,-15.5 parent: 2 - - uid: 4897 + - uid: 4850 components: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 4898 + - uid: 4851 components: - type: Transform pos: -46.5,-6.5 parent: 2 - - uid: 4899 + - uid: 4852 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 4900 + - uid: 4853 components: - type: Transform pos: -46.5,-8.5 parent: 2 - - uid: 4901 + - uid: 4854 components: - type: Transform pos: -46.5,-9.5 parent: 2 - - uid: 4902 + - uid: 4855 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 4903 + - uid: 4856 components: - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 4904 + - uid: 4857 components: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 4905 + - uid: 4858 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 4906 + - uid: 4859 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 4907 + - uid: 4860 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 4908 + - uid: 4861 components: - type: Transform pos: -45.5,-1.5 parent: 2 - - uid: 4909 + - uid: 4862 components: - type: Transform pos: -45.5,-2.5 parent: 2 - - uid: 4910 + - uid: 4863 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 4911 + - uid: 4864 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 4912 + - uid: 4865 components: - type: Transform pos: -48.5,4.5 parent: 2 - - uid: 4913 + - uid: 4866 components: - type: Transform pos: -48.5,5.5 parent: 2 - - uid: 4914 + - uid: 4867 components: - type: Transform pos: -47.5,5.5 parent: 2 - - uid: 4915 + - uid: 4868 components: - type: Transform pos: -46.5,5.5 parent: 2 - - uid: 4916 + - uid: 4869 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 4917 + - uid: 4870 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 4918 + - uid: 4871 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 4919 + - uid: 4872 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 4920 + - uid: 4873 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 4921 + - uid: 4874 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 4922 + - uid: 4875 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 4923 + - uid: 4876 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 4924 + - uid: 4877 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 4925 + - uid: 4878 components: - type: Transform pos: -57.5,20.5 parent: 2 - - uid: 4926 + - uid: 4879 components: - type: Transform pos: -57.5,19.5 parent: 2 - - uid: 4927 + - uid: 4880 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 4928 + - uid: 4881 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 4929 + - uid: 4882 components: - type: Transform pos: -58.5,19.5 parent: 2 - - uid: 4930 + - uid: 4883 components: - type: Transform pos: -59.5,19.5 parent: 2 - - uid: 4931 + - uid: 4884 components: - type: Transform pos: -60.5,19.5 parent: 2 - - uid: 4932 + - uid: 4885 components: - type: Transform pos: -56.5,18.5 parent: 2 - - uid: 4933 + - uid: 4886 components: - type: Transform pos: -74.5,0.5 parent: 2 - - uid: 4934 + - uid: 4887 components: - type: Transform pos: -75.5,0.5 parent: 2 - - uid: 4935 + - uid: 4888 components: - type: Transform pos: -76.5,0.5 parent: 2 - - uid: 4936 + - uid: 4889 components: - type: Transform pos: -77.5,0.5 parent: 2 - - uid: 4937 + - uid: 4890 components: - type: Transform pos: -78.5,0.5 parent: 2 - - uid: 4938 + - uid: 4891 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 4939 + - uid: 4892 components: - type: Transform pos: -65.5,56.5 parent: 2 - - uid: 4940 + - uid: 4893 components: - type: Transform pos: -65.5,55.5 parent: 2 - - uid: 4941 + - uid: 4894 components: - type: Transform pos: -66.5,55.5 parent: 2 - - uid: 4942 + - uid: 4895 components: - type: Transform pos: -67.5,55.5 parent: 2 - - uid: 4943 + - uid: 4896 components: - type: Transform pos: -68.5,55.5 parent: 2 - - uid: 4944 + - uid: 4897 components: - type: Transform pos: -69.5,55.5 parent: 2 - - uid: 4945 + - uid: 4898 components: - type: Transform pos: -70.5,55.5 parent: 2 - - uid: 4946 + - uid: 4899 components: - type: Transform pos: -64.5,55.5 parent: 2 - - uid: 4947 + - uid: 4900 components: - type: Transform pos: -63.5,55.5 parent: 2 - - uid: 4948 + - uid: 4901 components: - type: Transform pos: -62.5,55.5 parent: 2 - - uid: 4949 + - uid: 4902 components: - type: Transform pos: -61.5,55.5 parent: 2 - - uid: 4950 + - uid: 4903 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 4951 + - uid: 4904 components: - type: Transform pos: -61.5,57.5 parent: 2 - - uid: 4952 + - uid: 4905 components: - type: Transform pos: -60.5,57.5 parent: 2 - - uid: 4953 + - uid: 4906 components: - type: Transform pos: -59.5,57.5 parent: 2 - - uid: 4954 + - uid: 4907 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 4955 + - uid: 4908 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 4956 + - uid: 4909 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 4957 + - uid: 4910 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 4958 + - uid: 4911 components: - type: Transform pos: -58.5,60.5 parent: 2 - - uid: 4959 + - uid: 4912 components: - type: Transform pos: -58.5,61.5 parent: 2 - - uid: 4960 + - uid: 4913 components: - type: Transform pos: -58.5,62.5 parent: 2 - - uid: 4961 + - uid: 4914 components: - type: Transform pos: -58.5,63.5 parent: 2 - - uid: 4962 + - uid: 4915 components: - type: Transform pos: -61.5,58.5 parent: 2 - - uid: 4963 + - uid: 4916 components: - type: Transform pos: -61.5,59.5 parent: 2 - - uid: 4964 + - uid: 4917 components: - type: Transform pos: -61.5,60.5 parent: 2 - - uid: 4965 + - uid: 4918 components: - type: Transform pos: -61.5,61.5 parent: 2 - - uid: 4966 + - uid: 4919 components: - type: Transform pos: -62.5,54.5 parent: 2 - - uid: 4967 + - uid: 4920 components: - type: Transform pos: -66.5,56.5 parent: 2 - - uid: 4968 + - uid: 4921 components: - type: Transform pos: -66.5,57.5 parent: 2 - - uid: 4969 + - uid: 4922 components: - type: Transform pos: -66.5,58.5 parent: 2 - - uid: 4970 + - uid: 4923 components: - type: Transform pos: -66.5,59.5 parent: 2 - - uid: 4971 + - uid: 4924 components: - type: Transform pos: -66.5,60.5 parent: 2 - - uid: 4972 + - uid: 4925 components: - type: Transform pos: -66.5,61.5 parent: 2 - - uid: 4973 + - uid: 4926 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 4974 + - uid: 4927 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 4975 + - uid: 4928 components: - type: Transform pos: -44.5,47.5 parent: 2 - - uid: 4976 + - uid: 4929 components: - type: Transform pos: -44.5,46.5 parent: 2 - - uid: 4977 + - uid: 4930 components: - type: Transform pos: -44.5,45.5 parent: 2 - - uid: 4978 + - uid: 4931 components: - type: Transform pos: -45.5,45.5 parent: 2 - - uid: 4979 + - uid: 4932 components: - type: Transform pos: -46.5,45.5 parent: 2 - - uid: 4980 + - uid: 4933 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 4981 + - uid: 4934 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 4982 + - uid: 4935 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 4983 + - uid: 4936 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 4984 + - uid: 4937 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 4985 + - uid: 4938 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 4986 + - uid: 4939 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 4987 + - uid: 4940 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 4988 + - uid: 4941 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 4989 + - uid: 4942 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 4990 + - uid: 4943 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 4991 + - uid: 4944 components: - type: Transform pos: -58.5,45.5 parent: 2 - - uid: 4992 + - uid: 4945 components: - type: Transform pos: -58.5,46.5 parent: 2 - - uid: 4993 + - uid: 4946 components: - type: Transform pos: -58.5,47.5 parent: 2 - - uid: 4994 + - uid: 4947 components: - type: Transform pos: -58.5,48.5 parent: 2 - - uid: 4995 + - uid: 4948 components: - type: Transform pos: -58.5,49.5 parent: 2 - - uid: 4996 + - uid: 4949 components: - type: Transform pos: -58.5,50.5 parent: 2 - - uid: 4997 + - uid: 4950 components: - type: Transform pos: -58.5,51.5 parent: 2 - - uid: 4998 + - uid: 4951 components: - type: Transform pos: -58.5,52.5 parent: 2 - - uid: 4999 + - uid: 4952 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 5000 + - uid: 4953 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 5001 + - uid: 4954 components: - type: Transform pos: -52.5,54.5 parent: 2 - - uid: 5002 + - uid: 4955 components: - type: Transform pos: -51.5,54.5 parent: 2 - - uid: 5003 + - uid: 4956 components: - type: Transform pos: -50.5,54.5 parent: 2 - - uid: 5004 + - uid: 4957 components: - type: Transform pos: -49.5,54.5 parent: 2 - - uid: 5005 + - uid: 4958 components: - type: Transform pos: -48.5,54.5 parent: 2 - - uid: 5006 + - uid: 4959 components: - type: Transform pos: -47.5,54.5 parent: 2 - - uid: 5007 + - uid: 4960 components: - type: Transform pos: -46.5,54.5 parent: 2 - - uid: 5008 + - uid: 4961 components: - type: Transform pos: -45.5,54.5 parent: 2 - - uid: 5009 + - uid: 4962 components: - type: Transform pos: -45.5,53.5 parent: 2 - - uid: 5010 + - uid: 4963 components: - type: Transform pos: -45.5,52.5 parent: 2 - - uid: 5011 + - uid: 4964 components: - type: Transform pos: -45.5,51.5 parent: 2 - - uid: 5012 + - uid: 4965 components: - type: Transform pos: -45.5,50.5 parent: 2 - - uid: 5013 + - uid: 4966 components: - type: Transform pos: -45.5,49.5 parent: 2 - - uid: 5014 + - uid: 4967 components: - type: Transform pos: -53.5,44.5 parent: 2 - - uid: 5015 + - uid: 4968 components: - type: Transform pos: -47.5,44.5 parent: 2 - - uid: 5016 + - uid: 4969 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 5017 + - uid: 4970 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 5018 + - uid: 4971 components: - type: Transform pos: -50.5,38.5 parent: 2 - - uid: 5019 + - uid: 4972 components: - type: Transform pos: -50.5,37.5 parent: 2 - - uid: 5020 + - uid: 4973 components: - type: Transform pos: -49.5,37.5 parent: 2 - - uid: 5021 + - uid: 4974 components: - type: Transform pos: -48.5,37.5 parent: 2 - - uid: 5022 + - uid: 4975 components: - type: Transform pos: -48.5,38.5 parent: 2 - - uid: 5023 + - uid: 4976 components: - type: Transform pos: -48.5,39.5 parent: 2 - - uid: 5024 + - uid: 4977 components: - type: Transform pos: -48.5,40.5 parent: 2 - - uid: 5025 + - uid: 4978 components: - type: Transform pos: -48.5,41.5 parent: 2 - - uid: 5026 + - uid: 4979 components: - type: Transform pos: -47.5,37.5 parent: 2 - - uid: 5027 + - uid: 4980 components: - type: Transform pos: -47.5,42.5 parent: 2 - - uid: 5028 + - uid: 4981 components: - type: Transform pos: -49.5,41.5 parent: 2 - - uid: 5029 + - uid: 4982 components: - type: Transform pos: -46.5,41.5 parent: 2 - - uid: 5030 + - uid: 4983 components: - type: Transform pos: -47.5,41.5 parent: 2 - - uid: 5031 + - uid: 4984 components: - type: Transform pos: -47.5,37.5 parent: 2 - - uid: 5032 + - uid: 4985 components: - type: Transform pos: -46.5,37.5 parent: 2 - - uid: 5033 + - uid: 4986 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 5034 + - uid: 4987 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 5035 + - uid: 4988 components: - type: Transform pos: -60.5,41.5 parent: 2 - - uid: 5036 + - uid: 4989 components: - type: Transform pos: -59.5,41.5 parent: 2 - - uid: 5037 + - uid: 4990 components: - type: Transform pos: -58.5,41.5 parent: 2 - - uid: 5038 + - uid: 4991 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 5039 + - uid: 4992 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 5040 + - uid: 4993 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 5041 + - uid: 4994 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 5042 + - uid: 4995 components: - type: Transform pos: -53.5,41.5 parent: 2 - - uid: 5043 + - uid: 4996 components: - type: Transform pos: -52.5,41.5 parent: 2 - - uid: 5044 + - uid: 4997 components: - type: Transform pos: -51.5,41.5 parent: 2 - - uid: 5045 + - uid: 4998 components: - type: Transform pos: -53.5,42.5 parent: 2 - - uid: 5046 + - uid: 4999 components: - type: Transform pos: -55.5,42.5 parent: 2 - - uid: 5047 + - uid: 5000 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 5048 + - uid: 5001 components: - type: Transform pos: -61.5,40.5 parent: 2 - - uid: 5049 + - uid: 5002 components: - type: Transform pos: -61.5,41.5 parent: 2 - - uid: 5050 + - uid: 5003 components: - type: Transform pos: -59.5,40.5 parent: 2 - - uid: 5051 + - uid: 5004 components: - type: Transform pos: -62.5,52.5 parent: 2 - - uid: 5052 + - uid: 5005 components: - type: Transform pos: -62.5,51.5 parent: 2 - - uid: 5053 + - uid: 5006 components: - type: Transform pos: -62.5,50.5 parent: 2 - - uid: 5054 + - uid: 5007 components: - type: Transform pos: -62.5,49.5 parent: 2 - - uid: 5055 + - uid: 5008 components: - type: Transform pos: -62.5,48.5 parent: 2 - - uid: 5056 + - uid: 5009 components: - type: Transform pos: -62.5,47.5 parent: 2 - - uid: 5057 + - uid: 5010 components: - type: Transform pos: -62.5,46.5 parent: 2 - - uid: 5058 + - uid: 5011 components: - type: Transform pos: -62.5,45.5 parent: 2 - - uid: 5059 + - uid: 5012 components: - type: Transform pos: -62.5,44.5 parent: 2 - - uid: 5060 + - uid: 5013 components: - type: Transform pos: -62.5,43.5 parent: 2 - - uid: 5061 + - uid: 5014 components: - type: Transform pos: -62.5,42.5 parent: 2 - - uid: 5062 + - uid: 5015 components: - type: Transform pos: -62.5,41.5 parent: 2 - - uid: 5063 + - uid: 5016 components: - type: Transform pos: -61.5,48.5 parent: 2 - - uid: 5064 + - uid: 5017 components: - type: Transform pos: -61.5,50.5 parent: 2 - - uid: 5065 + - uid: 5018 components: - type: Transform pos: -63.5,51.5 parent: 2 - - uid: 5066 + - uid: 5019 components: - type: Transform pos: -64.5,51.5 parent: 2 - - uid: 5067 + - uid: 5020 components: - type: Transform pos: -65.5,51.5 parent: 2 - - uid: 5068 + - uid: 5021 components: - type: Transform pos: -66.5,51.5 parent: 2 - - uid: 5069 + - uid: 5022 components: - type: Transform pos: -63.5,47.5 parent: 2 - - uid: 5070 + - uid: 5023 components: - type: Transform pos: -64.5,47.5 parent: 2 - - uid: 5071 + - uid: 5024 components: - type: Transform pos: -65.5,47.5 parent: 2 - - uid: 5072 + - uid: 5025 components: - type: Transform pos: -66.5,47.5 parent: 2 - - uid: 5073 + - uid: 5026 components: - type: Transform pos: -63.5,43.5 parent: 2 - - uid: 5074 + - uid: 5027 components: - type: Transform pos: -64.5,43.5 parent: 2 - - uid: 5075 + - uid: 5028 components: - type: Transform pos: -65.5,43.5 parent: 2 - - uid: 5076 + - uid: 5029 components: - type: Transform pos: -66.5,43.5 parent: 2 - - uid: 5077 + - uid: 5030 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 5078 + - uid: 5031 components: - type: Transform pos: -56.5,38.5 parent: 2 - - uid: 5079 + - uid: 5032 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 5080 + - uid: 5033 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 5081 + - uid: 5034 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 5082 + - uid: 5035 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 5083 + - uid: 5036 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 5084 + - uid: 5037 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 5085 + - uid: 5038 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 5086 + - uid: 5039 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 5087 + - uid: 5040 components: - type: Transform pos: -53.5,35.5 parent: 2 - - uid: 5088 + - uid: 5041 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 5089 + - uid: 5042 components: - type: Transform pos: -55.5,35.5 parent: 2 - - uid: 5090 + - uid: 5043 components: - type: Transform pos: -56.5,35.5 parent: 2 - - uid: 5091 + - uid: 5044 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 5092 + - uid: 5045 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 5093 + - uid: 5046 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 5094 + - uid: 5047 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 5095 + - uid: 5048 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 5096 + - uid: 5049 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 5097 + - uid: 5050 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 5098 + - uid: 5051 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 5099 + - uid: 5052 components: - type: Transform pos: -48.5,34.5 parent: 2 - - uid: 5100 + - uid: 5053 components: - type: Transform pos: -48.5,33.5 parent: 2 - - uid: 5101 + - uid: 5054 components: - type: Transform pos: -48.5,32.5 parent: 2 - - uid: 5102 + - uid: 5055 components: - type: Transform pos: -48.5,31.5 parent: 2 - - uid: 5103 + - uid: 5056 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 5104 + - uid: 5057 components: - type: Transform pos: -48.5,29.5 parent: 2 - - uid: 5105 + - uid: 5058 components: - type: Transform pos: -48.5,28.5 parent: 2 - - uid: 5106 + - uid: 5059 components: - type: Transform pos: -48.5,27.5 parent: 2 - - uid: 5107 + - uid: 5060 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 5108 + - uid: 5061 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 5109 + - uid: 5062 components: - type: Transform pos: -55.5,30.5 parent: 2 - - uid: 5110 + - uid: 5063 components: - type: Transform pos: -56.5,30.5 parent: 2 - - uid: 5111 + - uid: 5064 components: - type: Transform pos: -57.5,30.5 parent: 2 - - uid: 5112 + - uid: 5065 components: - type: Transform pos: -58.5,30.5 parent: 2 - - uid: 5113 + - uid: 5066 components: - type: Transform pos: -59.5,30.5 parent: 2 - - uid: 5114 + - uid: 5067 components: - type: Transform pos: -59.5,31.5 parent: 2 - - uid: 5115 + - uid: 5068 components: - type: Transform pos: -59.5,32.5 parent: 2 - - uid: 5116 + - uid: 5069 components: - type: Transform pos: -59.5,33.5 parent: 2 - - uid: 5117 + - uid: 5070 components: - type: Transform pos: -59.5,34.5 parent: 2 - - uid: 5118 + - uid: 5071 components: - type: Transform pos: -59.5,35.5 parent: 2 - - uid: 5119 + - uid: 5072 components: - type: Transform pos: -59.5,36.5 parent: 2 - - uid: 5120 + - uid: 5073 components: - type: Transform pos: -59.5,37.5 parent: 2 - - uid: 5121 + - uid: 5074 components: - type: Transform pos: -59.5,38.5 parent: 2 - - uid: 5122 + - uid: 5075 components: - type: Transform pos: -60.5,38.5 parent: 2 - - uid: 5123 + - uid: 5076 components: - type: Transform pos: -61.5,38.5 parent: 2 - - uid: 5124 + - uid: 5077 components: - type: Transform pos: -65.5,35.5 parent: 2 - - uid: 5125 + - uid: 5078 components: - type: Transform pos: -64.5,35.5 parent: 2 - - uid: 5126 + - uid: 5079 components: - type: Transform pos: -63.5,35.5 parent: 2 - - uid: 5127 + - uid: 5080 components: - type: Transform pos: -62.5,35.5 parent: 2 - - uid: 5128 + - uid: 5081 components: - type: Transform pos: -61.5,35.5 parent: 2 - - uid: 5129 + - uid: 5082 components: - type: Transform pos: -60.5,35.5 parent: 2 - - uid: 5130 + - uid: 5083 components: - type: Transform pos: -65.5,31.5 parent: 2 - - uid: 5131 + - uid: 5084 components: - type: Transform pos: -64.5,31.5 parent: 2 - - uid: 5132 + - uid: 5085 components: - type: Transform pos: -63.5,31.5 parent: 2 - - uid: 5133 + - uid: 5086 components: - type: Transform pos: -62.5,31.5 parent: 2 - - uid: 5134 + - uid: 5087 components: - type: Transform pos: -61.5,31.5 parent: 2 - - uid: 5135 + - uid: 5088 components: - type: Transform pos: -60.5,31.5 parent: 2 - - uid: 5136 + - uid: 5089 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 5137 + - uid: 5090 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 5138 + - uid: 5091 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 5139 + - uid: 5092 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 5140 + - uid: 5093 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 5141 + - uid: 5094 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 5142 + - uid: 5095 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 5143 + - uid: 5096 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 5144 + - uid: 5097 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 5145 + - uid: 5098 components: - type: Transform pos: -56.5,23.5 parent: 2 - - uid: 5146 + - uid: 5099 components: - type: Transform pos: -65.5,26.5 parent: 2 - - uid: 5147 + - uid: 5100 components: - type: Transform pos: -64.5,26.5 parent: 2 - - uid: 5148 + - uid: 5101 components: - type: Transform pos: -63.5,26.5 parent: 2 - - uid: 5149 + - uid: 5102 components: - type: Transform pos: -62.5,26.5 parent: 2 - - uid: 5150 + - uid: 5103 components: - type: Transform pos: -61.5,26.5 parent: 2 - - uid: 5151 + - uid: 5104 components: - type: Transform pos: -60.5,26.5 parent: 2 - - uid: 5152 + - uid: 5105 components: - type: Transform pos: -59.5,26.5 parent: 2 - - uid: 5153 + - uid: 5106 components: - type: Transform pos: -58.5,26.5 parent: 2 - - uid: 5154 + - uid: 5107 components: - type: Transform pos: -57.5,26.5 parent: 2 - - uid: 5155 + - uid: 5108 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 5156 + - uid: 5109 components: - type: Transform pos: -51.5,25.5 parent: 2 - - uid: 5157 + - uid: 5110 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 5158 + - uid: 5111 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 5159 + - uid: 5112 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 5160 + - uid: 5113 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 5161 + - uid: 5114 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 5162 + - uid: 5115 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 5163 + - uid: 5116 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 5164 + - uid: 5117 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 5165 + - uid: 5118 components: - type: Transform pos: -53.5,20.5 parent: 2 - - uid: 5166 + - uid: 5119 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 5167 + - uid: 5120 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 5168 + - uid: 5121 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 5169 + - uid: 5122 components: - type: Transform pos: -49.5,21.5 parent: 2 - - uid: 5170 + - uid: 5123 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 5171 + - uid: 5124 components: - type: Transform pos: -47.5,21.5 parent: 2 - - uid: 5172 + - uid: 5125 components: - type: Transform pos: -46.5,21.5 parent: 2 - - uid: 5173 + - uid: 5126 components: - type: Transform pos: -45.5,23.5 parent: 2 - - uid: 5174 + - uid: 5127 components: - type: Transform pos: -46.5,23.5 parent: 2 - - uid: 5175 + - uid: 5128 components: - type: Transform pos: -47.5,23.5 parent: 2 - - uid: 5176 + - uid: 5129 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 5177 + - uid: 5130 components: - type: Transform pos: -47.5,20.5 parent: 2 - - uid: 5178 + - uid: 5131 components: - type: Transform pos: -47.5,19.5 parent: 2 - - uid: 5179 + - uid: 5132 components: - type: Transform pos: -47.5,18.5 parent: 2 - - uid: 5180 + - uid: 5133 components: - type: Transform pos: -47.5,17.5 parent: 2 - - uid: 5181 + - uid: 5134 components: - type: Transform pos: -47.5,17.5 parent: 2 - - uid: 5182 + - uid: 5135 components: - type: Transform pos: -45.5,21.5 parent: 2 - - uid: 5183 + - uid: 5136 components: - type: Transform pos: -64.5,25.5 parent: 2 - - uid: 5184 + - uid: 5137 components: - type: Transform pos: -64.5,24.5 parent: 2 - - uid: 5185 + - uid: 5138 components: - type: Transform pos: -64.5,23.5 parent: 2 - - uid: 5186 + - uid: 5139 components: - type: Transform pos: -64.5,22.5 parent: 2 - - uid: 5187 + - uid: 5140 components: - type: Transform pos: -64.5,21.5 parent: 2 - - uid: 5188 + - uid: 5141 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 5189 + - uid: 5142 components: - type: Transform pos: -30.5,-74.5 parent: 2 - - uid: 5190 + - uid: 5143 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 5191 + - uid: 5144 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 5192 + - uid: 5145 components: - type: Transform pos: -28.5,-73.5 parent: 2 - - uid: 5193 + - uid: 5146 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 5194 + - uid: 5147 components: - type: Transform pos: -28.5,-77.5 parent: 2 - - uid: 5195 + - uid: 5148 components: - type: Transform pos: -28.5,-78.5 parent: 2 - - uid: 5196 + - uid: 5149 components: - type: Transform pos: -28.5,-79.5 parent: 2 - - uid: 5197 + - uid: 5150 components: - type: Transform pos: -29.5,-79.5 parent: 2 - - uid: 5198 + - uid: 5151 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 5199 + - uid: 5152 components: - type: Transform pos: -31.5,-79.5 parent: 2 - - uid: 5200 + - uid: 5153 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 5201 + - uid: 5154 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 5202 + - uid: 5155 components: - type: Transform pos: -33.5,-74.5 parent: 2 - - uid: 5203 + - uid: 5156 components: - type: Transform pos: -34.5,-74.5 parent: 2 - - uid: 5204 + - uid: 5157 components: - type: Transform pos: -35.5,-74.5 parent: 2 - - uid: 5205 + - uid: 5158 components: - type: Transform pos: -36.5,-74.5 parent: 2 - - uid: 5206 + - uid: 5159 components: - type: Transform pos: -28.5,-75.5 parent: 2 - - uid: 5207 + - uid: 5160 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 5208 + - uid: 5161 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 5209 + - uid: 5162 components: - type: Transform pos: -29.5,-70.5 parent: 2 - - uid: 5210 + - uid: 5163 components: - type: Transform pos: -30.5,-70.5 parent: 2 - - uid: 5211 + - uid: 5164 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 5212 + - uid: 5165 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 5213 + - uid: 5166 components: - type: Transform pos: -33.5,-70.5 parent: 2 - - uid: 5214 + - uid: 5167 components: - type: Transform pos: -34.5,-70.5 parent: 2 - - uid: 5215 + - uid: 5168 components: - type: Transform pos: -35.5,-70.5 parent: 2 - - uid: 5216 + - uid: 5169 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 5217 + - uid: 5170 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 5218 + - uid: 5171 components: - type: Transform pos: -38.5,-70.5 parent: 2 - - uid: 5219 + - uid: 5172 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 5220 + - uid: 5173 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 5221 + - uid: 5174 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 5222 + - uid: 5175 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 5223 + - uid: 5176 components: - type: Transform pos: -38.5,-75.5 parent: 2 - - uid: 5224 + - uid: 5177 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 5225 + - uid: 5178 components: - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 5226 + - uid: 5179 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 5227 + - uid: 5180 components: - type: Transform pos: -42.5,-74.5 parent: 2 - - uid: 5228 + - uid: 5181 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 5229 + - uid: 5182 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 5230 + - uid: 5183 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 5231 + - uid: 5184 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 5232 + - uid: 5185 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 5233 + - uid: 5186 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 5234 + - uid: 5187 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 5235 + - uid: 5188 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 5236 + - uid: 5189 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 5237 + - uid: 5190 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 5238 + - uid: 5191 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 5239 + - uid: 5192 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 5240 + - uid: 5193 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 5241 + - uid: 5194 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 5242 + - uid: 5195 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 5243 + - uid: 5196 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 5244 + - uid: 5197 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 5245 + - uid: 5198 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 5246 + - uid: 5199 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 5247 + - uid: 5200 components: - type: Transform pos: -18.5,-61.5 parent: 2 - - uid: 5248 + - uid: 5201 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 5249 + - uid: 5202 components: - type: Transform pos: -16.5,-61.5 parent: 2 - - uid: 5250 + - uid: 5203 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 5251 + - uid: 5204 components: - type: Transform pos: -14.5,-61.5 parent: 2 - - uid: 5252 + - uid: 5205 components: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 5253 + - uid: 5206 components: - type: Transform pos: -12.5,-61.5 parent: 2 - - uid: 5254 + - uid: 5207 components: - type: Transform pos: -11.5,-61.5 parent: 2 - - uid: 5255 + - uid: 5208 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 5256 + - uid: 5209 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 5257 + - uid: 5210 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 5258 + - uid: 5211 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 5259 + - uid: 5212 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 5260 + - uid: 5213 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 5261 + - uid: 5214 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - uid: 5262 + - uid: 5215 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 5263 + - uid: 5216 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 5264 + - uid: 5217 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 5265 + - uid: 5218 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 5266 + - uid: 5219 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 5267 + - uid: 5220 components: - type: Transform pos: -4.5,-55.5 parent: 2 - - uid: 5268 + - uid: 5221 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 5269 + - uid: 5222 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 5270 + - uid: 5223 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 5271 + - uid: 5224 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 5272 + - uid: 5225 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 5273 + - uid: 5226 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 5274 + - uid: 5227 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 5275 + - uid: 5228 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 5276 + - uid: 5229 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 5277 + - uid: 5230 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 5278 + - uid: 5231 components: - type: Transform pos: -27.5,-60.5 parent: 2 - - uid: 5279 + - uid: 5232 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 5280 + - uid: 5233 components: - type: Transform pos: -27.5,-58.5 parent: 2 - - uid: 5281 + - uid: 5234 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 5282 + - uid: 5235 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 5283 + - uid: 5236 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 5284 + - uid: 5237 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 5285 + - uid: 5238 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 5286 + - uid: 5239 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 5287 + - uid: 5240 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 5288 + - uid: 5241 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 5289 + - uid: 5242 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 5290 + - uid: 5243 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 5291 + - uid: 5244 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 5292 + - uid: 5245 components: - type: Transform pos: -37.5,-57.5 parent: 2 - - uid: 5293 + - uid: 5246 components: - type: Transform pos: -38.5,-57.5 parent: 2 - - uid: 5294 + - uid: 5247 components: - type: Transform pos: -39.5,-57.5 parent: 2 - - uid: 5295 + - uid: 5248 components: - type: Transform pos: -40.5,-57.5 parent: 2 - - uid: 5296 + - uid: 5249 components: - type: Transform pos: -41.5,-57.5 parent: 2 - - uid: 5297 + - uid: 5250 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 5298 + - uid: 5251 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 5299 + - uid: 5252 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 5300 + - uid: 5253 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 5301 + - uid: 5254 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 5302 + - uid: 5255 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 5303 + - uid: 5256 components: - type: Transform pos: -37.5,-52.5 parent: 2 - - uid: 5304 + - uid: 5257 components: - type: Transform pos: -38.5,-52.5 parent: 2 - - uid: 5305 + - uid: 5258 components: - type: Transform pos: -39.5,-52.5 parent: 2 - - uid: 5306 + - uid: 5259 components: - type: Transform pos: -40.5,-52.5 parent: 2 - - uid: 5307 + - uid: 5260 components: - type: Transform pos: -40.5,-53.5 parent: 2 - - uid: 5308 + - uid: 5261 components: - type: Transform pos: -40.5,-54.5 parent: 2 - - uid: 5309 + - uid: 5262 components: - type: Transform pos: -40.5,-51.5 parent: 2 - - uid: 5310 + - uid: 5263 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 5311 + - uid: 5264 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 5312 + - uid: 5265 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 5313 + - uid: 5266 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 5314 + - uid: 5267 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 5315 + - uid: 5268 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 5316 + - uid: 5269 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 5317 + - uid: 5270 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 5318 + - uid: 5271 components: - type: Transform pos: -26.5,-52.5 parent: 2 - - uid: 5319 + - uid: 5272 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 5320 + - uid: 5273 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 5321 + - uid: 5274 components: - type: Transform pos: -23.5,-52.5 parent: 2 - - uid: 5322 + - uid: 5275 components: - type: Transform pos: -22.5,-52.5 parent: 2 - - uid: 5323 + - uid: 5276 components: - type: Transform pos: -23.5,-51.5 parent: 2 - - uid: 5324 + - uid: 5277 components: - type: Transform pos: -23.5,-50.5 parent: 2 - - uid: 5325 + - uid: 5278 components: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 5326 + - uid: 5279 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5327 + - uid: 5280 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 5328 + - uid: 5281 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 5329 + - uid: 5282 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 5330 + - uid: 5283 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 5331 + - uid: 5284 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 5332 + - uid: 5285 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 5333 + - uid: 5286 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 5334 + - uid: 5287 components: - type: Transform pos: -5.5,-50.5 parent: 2 - - uid: 5335 + - uid: 5288 components: - type: Transform pos: -5.5,-51.5 parent: 2 - - uid: 5336 + - uid: 5289 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 5337 + - uid: 5290 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 5338 + - uid: 5291 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 5339 + - uid: 5292 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 5340 + - uid: 5293 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 5341 + - uid: 5294 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 5342 + - uid: 5295 components: - type: Transform pos: -4.5,-49.5 parent: 2 - - uid: 5343 + - uid: 5296 components: - type: Transform pos: -3.5,-49.5 parent: 2 - - uid: 5344 + - uid: 5297 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 5345 + - uid: 5298 components: - type: Transform pos: -10.5,-37.5 parent: 2 - - uid: 5346 + - uid: 5299 components: - type: Transform pos: -10.5,-38.5 parent: 2 - - uid: 5347 + - uid: 5300 components: - type: Transform pos: -10.5,-39.5 parent: 2 - - uid: 5348 + - uid: 5301 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 5349 + - uid: 5302 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 5350 + - uid: 5303 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 5351 + - uid: 5304 components: - type: Transform pos: -7.5,-40.5 parent: 2 - - uid: 5352 + - uid: 5305 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 5353 + - uid: 5306 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 5354 + - uid: 5307 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5355 + - uid: 5308 components: - type: Transform pos: -3.5,-40.5 parent: 2 - - uid: 5356 + - uid: 5309 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 5357 + - uid: 5310 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 5358 + - uid: 5311 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 5359 + - uid: 5312 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 5360 + - uid: 5313 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 5361 + - uid: 5314 components: - type: Transform pos: -6.5,-43.5 parent: 2 - - uid: 5362 + - uid: 5315 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 5363 + - uid: 5316 components: - type: Transform pos: -9.5,-43.5 parent: 2 - - uid: 5364 + - uid: 5317 components: - type: Transform pos: -8.5,-43.5 parent: 2 - - uid: 5365 + - uid: 5318 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 5366 + - uid: 5319 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 5367 + - uid: 5320 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 5368 + - uid: 5321 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 5369 + - uid: 5322 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 5370 + - uid: 5323 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 5371 + - uid: 5324 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 5372 + - uid: 5325 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 5373 + - uid: 5326 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 5374 + - uid: 5327 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 5375 + - uid: 5328 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 5376 + - uid: 5329 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 5377 + - uid: 5330 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 5378 + - uid: 5331 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 5379 + - uid: 5332 components: - type: Transform pos: -7.5,-34.5 parent: 2 - - uid: 5380 + - uid: 5333 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 5381 + - uid: 5334 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 5382 + - uid: 5335 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5383 + - uid: 5336 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 5384 + - uid: 5337 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 5385 + - uid: 5338 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 5386 + - uid: 5339 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 5387 + - uid: 5340 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - uid: 5388 + - uid: 5341 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 5389 + - uid: 5342 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 5390 + - uid: 5343 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 5391 + - uid: 5344 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 5392 + - uid: 5345 components: - type: Transform pos: -29.5,-34.5 parent: 2 - - uid: 5393 + - uid: 5346 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - uid: 5394 + - uid: 5347 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 5395 + - uid: 5348 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 5396 + - uid: 5349 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 5397 + - uid: 5350 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 5398 + - uid: 5351 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 5399 + - uid: 5352 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 5400 + - uid: 5353 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 5401 + - uid: 5354 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 5402 + - uid: 5355 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 5403 + - uid: 5356 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 5404 + - uid: 5357 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 5405 + - uid: 5358 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 5406 + - uid: 5359 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 5407 + - uid: 5360 components: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 5408 + - uid: 5361 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 5409 + - uid: 5362 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 5410 + - uid: 5363 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 5411 + - uid: 5364 components: - type: Transform pos: -13.5,-31.5 parent: 2 - - uid: 5412 + - uid: 5365 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - uid: 5413 + - uid: 5366 components: - type: Transform pos: -13.5,-29.5 parent: 2 - - uid: 5414 + - uid: 5367 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 5415 + - uid: 5368 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 5416 + - uid: 5369 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 5417 + - uid: 5370 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 5418 + - uid: 5371 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 5419 + - uid: 5372 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 5420 + - uid: 5373 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 5421 + - uid: 5374 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 5422 + - uid: 5375 components: - type: Transform pos: -22.5,-29.5 parent: 2 - - uid: 5423 + - uid: 5376 components: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 5424 + - uid: 5377 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 5425 + - uid: 5378 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 5426 + - uid: 5379 components: - type: Transform pos: -22.5,-25.5 parent: 2 - - uid: 5427 + - uid: 5380 components: - type: Transform pos: -22.5,-24.5 parent: 2 - - uid: 5428 + - uid: 5381 components: - type: Transform pos: -22.5,-23.5 parent: 2 - - uid: 5429 + - uid: 5382 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 5430 + - uid: 5383 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 5431 + - uid: 5384 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 5432 + - uid: 5385 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 5433 + - uid: 5386 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 5434 + - uid: 5387 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 5435 + - uid: 5388 components: - type: Transform pos: -18.5,-26.5 parent: 2 - - uid: 5436 + - uid: 5389 components: - type: Transform pos: -18.5,-27.5 parent: 2 - - uid: 5437 + - uid: 5390 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 5438 + - uid: 5391 components: - type: Transform pos: -13.5,-35.5 parent: 2 - - uid: 5439 + - uid: 5392 components: - type: Transform pos: -13.5,-36.5 parent: 2 - - uid: 5440 + - uid: 5393 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 5441 + - uid: 5394 components: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 5442 + - uid: 5395 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 5443 + - uid: 5396 components: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 5444 + - uid: 5397 components: - type: Transform pos: -13.5,-41.5 parent: 2 - - uid: 5445 + - uid: 5398 components: - type: Transform pos: -13.5,-42.5 parent: 2 - - uid: 5446 + - uid: 5399 components: - type: Transform pos: -13.5,-43.5 parent: 2 - - uid: 5447 + - uid: 5400 components: - type: Transform pos: -13.5,-44.5 parent: 2 - - uid: 5448 + - uid: 5401 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 5449 + - uid: 5402 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 5450 + - uid: 5403 components: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 5451 + - uid: 5404 components: - type: Transform pos: -13.5,-48.5 parent: 2 - - uid: 5452 + - uid: 5405 components: - type: Transform pos: -13.5,-49.5 parent: 2 - - uid: 5453 + - uid: 5406 components: - type: Transform pos: -13.5,-50.5 parent: 2 - - uid: 5454 + - uid: 5407 components: - type: Transform pos: -13.5,-51.5 parent: 2 - - uid: 5455 + - uid: 5408 components: - type: Transform pos: -13.5,-52.5 parent: 2 - - uid: 5456 + - uid: 5409 components: - type: Transform pos: -13.5,-53.5 parent: 2 - - uid: 5457 + - uid: 5410 components: - type: Transform pos: -14.5,-50.5 parent: 2 - - uid: 5458 + - uid: 5411 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 5459 + - uid: 5412 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 5460 + - uid: 5413 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 5461 + - uid: 5414 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 5462 + - uid: 5415 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 5463 + - uid: 5416 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 5464 + - uid: 5417 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 5465 + - uid: 5418 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 5466 + - uid: 5419 components: - type: Transform pos: -21.5,-57.5 parent: 2 - - uid: 5467 + - uid: 5420 components: - type: Transform pos: -22.5,-57.5 parent: 2 - - uid: 5468 + - uid: 5421 components: - type: Transform pos: -23.5,-57.5 parent: 2 - - uid: 5469 + - uid: 5422 components: - type: Transform pos: -18.5,-57.5 parent: 2 - - uid: 5470 + - uid: 5423 components: - type: Transform pos: -17.5,-57.5 parent: 2 - - uid: 5471 + - uid: 5424 components: - type: Transform pos: -16.5,-57.5 parent: 2 - - uid: 5472 + - uid: 5425 components: - type: Transform pos: -15.5,-57.5 parent: 2 - - uid: 5473 + - uid: 5426 components: - type: Transform pos: -14.5,-57.5 parent: 2 - - uid: 5474 + - uid: 5427 components: - type: Transform pos: -13.5,-57.5 parent: 2 - - uid: 5475 + - uid: 5428 components: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 5476 + - uid: 5429 components: - type: Transform pos: -12.5,-58.5 parent: 2 - - uid: 5477 + - uid: 5430 components: - type: Transform pos: -15.5,-56.5 parent: 2 - - uid: 5478 + - uid: 5431 components: - type: Transform pos: -15.5,-55.5 parent: 2 - - uid: 5479 + - uid: 5432 components: - type: Transform pos: -15.5,-58.5 parent: 2 - - uid: 5480 + - uid: 5433 components: - type: Transform pos: -15.5,-59.5 parent: 2 - - uid: 5481 + - uid: 5434 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 5482 + - uid: 5435 components: - type: Transform pos: -4.5,-57.5 parent: 2 - - uid: 5483 + - uid: 5436 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 5484 + - uid: 5437 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 5485 + - uid: 5438 components: - type: Transform pos: -6.5,-58.5 parent: 2 - - uid: 5486 + - uid: 5439 components: - type: Transform pos: -6.5,-59.5 parent: 2 - - uid: 5487 + - uid: 5440 components: - type: Transform pos: -6.5,-60.5 parent: 2 - - uid: 5488 + - uid: 5441 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 5489 + - uid: 5442 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 5490 + - uid: 5443 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 5491 + - uid: 5444 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 5492 + - uid: 5445 components: - type: Transform pos: 5.5,-76.5 parent: 2 - - uid: 5493 + - uid: 5446 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 5494 + - uid: 5447 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 5495 + - uid: 5448 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 5496 + - uid: 5449 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 5497 + - uid: 5450 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 5498 + - uid: 5451 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 5499 + - uid: 5452 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 5500 + - uid: 5453 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 5501 + - uid: 5454 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 5502 + - uid: 5455 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 5503 + - uid: 5456 components: - type: Transform pos: 5.5,-74.5 parent: 2 - - uid: 5504 + - uid: 5457 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 5505 + - uid: 5458 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 5506 + - uid: 5459 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 5507 + - uid: 5460 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 5508 + - uid: 5461 components: - type: Transform pos: 5.5,-69.5 parent: 2 - - uid: 5509 + - uid: 5462 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 5510 + - uid: 5463 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 5511 + - uid: 5464 components: - type: Transform pos: 5.5,-66.5 parent: 2 - - uid: 5512 + - uid: 5465 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 5513 + - uid: 5466 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 5514 + - uid: 5467 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 5515 + - uid: 5468 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 5516 + - uid: 5469 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 5517 + - uid: 5470 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 5518 + - uid: 5471 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 5519 + - uid: 5472 components: - type: Transform pos: 5.5,-58.5 parent: 2 - - uid: 5520 + - uid: 5473 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5521 + - uid: 5474 components: - type: Transform pos: 7.5,-57.5 parent: 2 - - uid: 5522 + - uid: 5475 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5523 + - uid: 5476 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 5524 + - uid: 5477 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 5525 + - uid: 5478 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5526 + - uid: 5479 components: - type: Transform pos: 7.5,-59.5 parent: 2 - - uid: 5527 + - uid: 5480 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 5528 + - uid: 5481 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 5529 + - uid: 5482 components: - type: Transform pos: 24.5,-50.5 parent: 2 - - uid: 5530 + - uid: 5483 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 5531 + - uid: 5484 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 5532 + - uid: 5485 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 5533 + - uid: 5486 components: - type: Transform pos: 21.5,-51.5 parent: 2 - - uid: 5534 + - uid: 5487 components: - type: Transform pos: 20.5,-51.5 parent: 2 - - uid: 5535 + - uid: 5488 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 5536 + - uid: 5489 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 5537 + - uid: 5490 components: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 5538 + - uid: 5491 components: - type: Transform pos: 22.5,-47.5 parent: 2 - - uid: 5539 + - uid: 5492 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 5540 + - uid: 5493 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 5541 + - uid: 5494 components: - type: Transform pos: 22.5,-44.5 parent: 2 - - uid: 5542 + - uid: 5495 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 5543 + - uid: 5496 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 5544 + - uid: 5497 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 5545 + - uid: 5498 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 5546 + - uid: 5499 components: - type: Transform pos: 24.5,-43.5 parent: 2 - - uid: 5547 + - uid: 5500 components: - type: Transform pos: 23.5,-43.5 parent: 2 - - uid: 5548 + - uid: 5501 components: - type: Transform pos: 23.5,-48.5 parent: 2 - - uid: 5549 + - uid: 5502 components: - type: Transform pos: 24.5,-48.5 parent: 2 - - uid: 5550 + - uid: 5503 components: - type: Transform pos: 24.5,-47.5 parent: 2 - - uid: 5551 + - uid: 5504 components: - type: Transform pos: 21.5,-48.5 parent: 2 - - uid: 5552 + - uid: 5505 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 5553 + - uid: 5506 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 5554 + - uid: 5507 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 5555 + - uid: 5508 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 5556 + - uid: 5509 components: - type: Transform pos: 34.5,-50.5 parent: 2 - - uid: 5557 + - uid: 5510 components: - type: Transform pos: 34.5,-49.5 parent: 2 - - uid: 5558 + - uid: 5511 components: - type: Transform pos: 33.5,-49.5 parent: 2 - - uid: 5559 + - uid: 5512 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 5560 + - uid: 5513 components: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 5561 + - uid: 5514 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 5562 + - uid: 5515 components: - type: Transform pos: 34.5,-48.5 parent: 2 - - uid: 5563 + - uid: 5516 components: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 5564 + - uid: 5517 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 5565 + - uid: 5518 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 5566 + - uid: 5519 components: - type: Transform pos: 34.5,-45.5 parent: 2 - - uid: 5567 + - uid: 5520 components: - type: Transform pos: 34.5,-44.5 parent: 2 - - uid: 5568 + - uid: 5521 components: - type: Transform pos: 34.5,-43.5 parent: 2 - - uid: 5569 + - uid: 5522 components: - type: Transform pos: 33.5,-43.5 parent: 2 - - uid: 5570 + - uid: 5523 components: - type: Transform pos: 32.5,-43.5 parent: 2 - - uid: 5571 + - uid: 5524 components: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 5572 + - uid: 5525 components: - type: Transform pos: 31.5,-43.5 parent: 2 - - uid: 5573 + - uid: 5526 components: - type: Transform pos: 31.5,-43.5 parent: 2 - - uid: 5574 + - uid: 5527 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 5575 + - uid: 5528 components: - type: Transform pos: 31.5,-33.5 parent: 2 - - uid: 5576 + - uid: 5529 components: - type: Transform pos: 31.5,-34.5 parent: 2 - - uid: 5577 + - uid: 5530 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 5578 + - uid: 5531 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 5579 + - uid: 5532 components: - type: Transform pos: 28.5,-34.5 parent: 2 - - uid: 5580 + - uid: 5533 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 5581 + - uid: 5534 components: - type: Transform pos: 26.5,-34.5 parent: 2 - - uid: 5582 + - uid: 5535 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 5583 + - uid: 5536 components: - type: Transform pos: 24.5,-34.5 parent: 2 - - uid: 5584 + - uid: 5537 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 5585 + - uid: 5538 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 5586 + - uid: 5539 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 5587 + - uid: 5540 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 5588 + - uid: 5541 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 5589 + - uid: 5542 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 5590 + - uid: 5543 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 5591 + - uid: 5544 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 5592 + - uid: 5545 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 5593 + - uid: 5546 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 5594 + - uid: 5547 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 5595 + - uid: 5548 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 5596 + - uid: 5549 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 5597 + - uid: 5550 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 5598 + - uid: 5551 components: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 5599 + - uid: 5552 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 5600 + - uid: 5553 components: - type: Transform pos: 27.5,-46.5 parent: 2 - - uid: 5601 + - uid: 5554 components: - type: Transform pos: 27.5,-47.5 parent: 2 - - uid: 5602 + - uid: 5555 components: - type: Transform pos: 27.5,-48.5 parent: 2 - - uid: 5603 + - uid: 5556 components: - type: Transform pos: 27.5,-49.5 parent: 2 - - uid: 5604 + - uid: 5557 components: - type: Transform pos: 27.5,-50.5 parent: 2 - - uid: 5605 + - uid: 5558 components: - type: Transform pos: 27.5,-51.5 parent: 2 - - uid: 5606 + - uid: 5559 components: - type: Transform pos: 27.5,-52.5 parent: 2 - - uid: 5607 + - uid: 5560 components: - type: Transform pos: 27.5,-54.5 parent: 2 - - uid: 5608 + - uid: 5561 components: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 5609 + - uid: 5562 components: - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 5610 + - uid: 5563 components: - type: Transform pos: 27.5,-57.5 parent: 2 - - uid: 5611 + - uid: 5564 components: - type: Transform pos: 27.5,-53.5 parent: 2 - - uid: 5612 + - uid: 5565 components: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 5613 + - uid: 5566 components: - type: Transform pos: 28.5,-55.5 parent: 2 - - uid: 5614 + - uid: 5567 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 5615 + - uid: 5568 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 5616 + - uid: 5569 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 5617 + - uid: 5570 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 5618 + - uid: 5571 components: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 5619 + - uid: 5572 components: - type: Transform pos: 30.5,-39.5 parent: 2 - - uid: 5620 + - uid: 5573 components: - type: Transform pos: 34.5,-39.5 parent: 2 - - uid: 5621 + - uid: 5574 components: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 5622 + - uid: 5575 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 5623 + - uid: 5576 components: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 5624 + - uid: 5577 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 5625 + - uid: 5578 components: - type: Transform pos: 37.5,-40.5 parent: 2 - - uid: 5626 + - uid: 5579 components: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 5627 + - uid: 5580 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 5628 + - uid: 5581 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 5629 + - uid: 5582 components: - type: Transform pos: 34.5,-34.5 parent: 2 - - uid: 5630 + - uid: 5583 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 5631 + - uid: 5584 components: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 5632 + - uid: 5585 components: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 5633 + - uid: 5586 components: - type: Transform pos: 38.5,-34.5 parent: 2 - - uid: 5634 + - uid: 5587 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 5635 + - uid: 5588 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 5636 + - uid: 5589 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 5637 + - uid: 5590 components: - type: Transform pos: 36.5,-28.5 parent: 2 - - uid: 5638 + - uid: 5591 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 5639 + - uid: 5592 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 5640 + - uid: 5593 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 5641 + - uid: 5594 components: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 5642 + - uid: 5595 components: - type: Transform pos: 37.5,-25.5 parent: 2 - - uid: 5643 + - uid: 5596 components: - type: Transform pos: 37.5,-26.5 parent: 2 - - uid: 5644 + - uid: 5597 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 5645 + - uid: 5598 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 5646 + - uid: 5599 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 5647 + - uid: 5600 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 5648 + - uid: 5601 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 5649 + - uid: 5602 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 5650 + - uid: 5603 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 5651 + - uid: 5604 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 5652 + - uid: 5605 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 5653 + - uid: 5606 components: - type: Transform pos: 28.5,-29.5 parent: 2 - - uid: 5654 + - uid: 5607 components: - type: Transform pos: 27.5,-29.5 parent: 2 - - uid: 5655 + - uid: 5608 components: - type: Transform pos: 26.5,-29.5 parent: 2 - - uid: 5656 + - uid: 5609 components: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 5657 + - uid: 5610 components: - type: Transform pos: 24.5,-29.5 parent: 2 - - uid: 5658 + - uid: 5611 components: - type: Transform pos: 24.5,-28.5 parent: 2 - - uid: 5659 + - uid: 5612 components: - type: Transform pos: 23.5,-28.5 parent: 2 - - uid: 5660 + - uid: 5613 components: - type: Transform pos: 22.5,-28.5 parent: 2 - - uid: 5661 + - uid: 5614 components: - type: Transform pos: 21.5,-28.5 parent: 2 - - uid: 5662 + - uid: 5615 components: - type: Transform pos: 21.5,-27.5 parent: 2 - - uid: 5663 + - uid: 5616 components: - type: Transform pos: 21.5,-26.5 parent: 2 - - uid: 5664 + - uid: 5617 components: - type: Transform pos: 21.5,-25.5 parent: 2 - - uid: 5665 + - uid: 5618 components: - type: Transform pos: 21.5,-33.5 parent: 2 - - uid: 5666 + - uid: 5619 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 5667 + - uid: 5620 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 5668 + - uid: 5621 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 5669 + - uid: 5622 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 5670 + - uid: 5623 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 5671 + - uid: 5624 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 5672 + - uid: 5625 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 5673 + - uid: 5626 components: - type: Transform pos: 30.5,-24.5 parent: 2 - - uid: 5674 + - uid: 5627 components: - type: Transform pos: 30.5,-23.5 parent: 2 - - uid: 5675 + - uid: 5628 components: - type: Transform pos: 30.5,-22.5 parent: 2 - - uid: 5676 + - uid: 5629 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 5677 + - uid: 5630 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 5678 + - uid: 5631 components: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 5679 + - uid: 5632 components: - type: Transform pos: 25.5,-27.5 parent: 2 - - uid: 5680 + - uid: 5633 components: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 5681 + - uid: 5634 components: - type: Transform pos: 25.5,-25.5 parent: 2 - - uid: 5682 + - uid: 5635 components: - type: Transform pos: 25.5,-24.5 parent: 2 - - uid: 5683 + - uid: 5636 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5684 + - uid: 5637 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 5685 + - uid: 5638 components: - type: Transform pos: 25.5,-39.5 parent: 2 - - uid: 5686 + - uid: 5639 components: - type: Transform pos: 24.5,-39.5 parent: 2 - - uid: 5687 + - uid: 5640 components: - type: Transform pos: 23.5,-39.5 parent: 2 - - uid: 5688 + - uid: 5641 components: - type: Transform pos: 22.5,-39.5 parent: 2 - - uid: 5689 + - uid: 5642 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 5690 + - uid: 5643 components: - type: Transform pos: 20.5,-39.5 parent: 2 - - uid: 5691 + - uid: 5644 components: - type: Transform pos: 19.5,-39.5 parent: 2 - - uid: 5692 + - uid: 5645 components: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 5693 + - uid: 5646 components: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 5694 + - uid: 5647 components: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 5695 + - uid: 5648 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 5696 + - uid: 5649 components: - type: Transform pos: 17.5,-42.5 parent: 2 - - uid: 5697 + - uid: 5650 components: - type: Transform pos: 17.5,-43.5 parent: 2 - - uid: 5698 + - uid: 5651 components: - type: Transform pos: 17.5,-44.5 parent: 2 - - uid: 5699 + - uid: 5652 components: - type: Transform pos: 17.5,-45.5 parent: 2 - - uid: 5700 + - uid: 5653 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 5701 + - uid: 5654 components: - type: Transform pos: 17.5,-38.5 parent: 2 - - uid: 5702 + - uid: 5655 components: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 5703 + - uid: 5656 components: - type: Transform pos: 17.5,-36.5 parent: 2 - - uid: 5704 + - uid: 5657 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 5705 + - uid: 5658 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 5706 + - uid: 5659 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 5707 + - uid: 5660 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 5708 + - uid: 5661 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 5709 + - uid: 5662 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 5710 + - uid: 5663 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 5711 + - uid: 5664 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 5712 + - uid: 5665 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 5713 + - uid: 5666 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 5714 + - uid: 5667 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 5715 + - uid: 5668 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 5716 + - uid: 5669 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 5717 + - uid: 5670 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 5718 + - uid: 5671 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 5719 + - uid: 5672 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 5720 + - uid: 5673 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5721 + - uid: 5674 components: - type: Transform pos: 5.5,-29.5 parent: 2 - - uid: 5722 + - uid: 5675 components: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 5723 + - uid: 5676 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 5724 + - uid: 5677 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 5725 + - uid: 5678 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 5726 + - uid: 5679 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 5727 + - uid: 5680 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 5728 + - uid: 5681 components: - type: Transform pos: 3.5,-33.5 parent: 2 - - uid: 5729 + - uid: 5682 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 5730 + - uid: 5683 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 5731 + - uid: 5684 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 5732 + - uid: 5685 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 5733 + - uid: 5686 components: - type: Transform pos: 8.5,-33.5 parent: 2 - - uid: 5734 + - uid: 5687 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 5735 + - uid: 5688 components: - type: Transform pos: 9.5,-35.5 parent: 2 - - uid: 5736 + - uid: 5689 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 5737 + - uid: 5690 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 5738 + - uid: 5691 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 5739 + - uid: 5692 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 5740 + - uid: 5693 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 5741 + - uid: 5694 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 5742 + - uid: 5695 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 5743 + - uid: 5696 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 5744 + - uid: 5697 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 5745 + - uid: 5698 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 5746 + - uid: 5699 components: - type: Transform pos: 14.5,-38.5 parent: 2 - - uid: 5747 + - uid: 5700 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 5748 + - uid: 5701 components: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 5749 + - uid: 5702 components: - type: Transform pos: 12.5,-39.5 parent: 2 - - uid: 5750 + - uid: 5703 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 5751 + - uid: 5704 components: - type: Transform pos: 10.5,-39.5 parent: 2 - - uid: 5752 + - uid: 5705 components: - type: Transform pos: 9.5,-39.5 parent: 2 - - uid: 5753 + - uid: 5706 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 5754 + - uid: 5707 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 5755 + - uid: 5708 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 5756 + - uid: 5709 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 5757 + - uid: 5710 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 5758 + - uid: 5711 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 5759 + - uid: 5712 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 5760 + - uid: 5713 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 5761 + - uid: 5714 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 5762 + - uid: 5715 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 5763 + - uid: 5716 components: - type: Transform pos: 6.5,-50.5 parent: 2 - - uid: 5764 + - uid: 5717 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 5765 + - uid: 5718 components: - type: Transform pos: 8.5,-50.5 parent: 2 - - uid: 5766 + - uid: 5719 components: - type: Transform pos: 8.5,-49.5 parent: 2 - - uid: 5767 + - uid: 5720 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 5768 + - uid: 5721 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 5769 + - uid: 5722 components: - type: Transform pos: 9.5,-50.5 parent: 2 - - uid: 5770 + - uid: 5723 components: - type: Transform pos: 10.5,-50.5 parent: 2 - - uid: 5771 + - uid: 5724 components: - type: Transform pos: 11.5,-50.5 parent: 2 - - uid: 5772 + - uid: 5725 components: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 5773 + - uid: 5726 components: - type: Transform pos: 10.5,-51.5 parent: 2 - - uid: 5774 + - uid: 5727 components: - type: Transform pos: 10.5,-52.5 parent: 2 - - uid: 5775 + - uid: 5728 components: - type: Transform pos: 3.5,-50.5 parent: 2 - - uid: 5776 + - uid: 5729 components: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 5777 + - uid: 5730 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 5778 + - uid: 5731 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 5779 + - uid: 5732 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 5780 + - uid: 5733 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 5781 + - uid: 5734 components: - type: Transform pos: 12.5,-60.5 parent: 2 - - uid: 5782 + - uid: 5735 components: - type: Transform pos: 12.5,-61.5 parent: 2 - - uid: 5783 + - uid: 5736 components: - type: Transform pos: 11.5,-59.5 parent: 2 - - uid: 5784 + - uid: 5737 components: - type: Transform pos: 10.5,-59.5 parent: 2 - - uid: 5785 + - uid: 5738 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 5786 + - uid: 5739 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 5787 + - uid: 5740 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 5788 + - uid: 5741 components: - type: Transform pos: 14.5,-49.5 parent: 2 - - uid: 5789 + - uid: 5742 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 5790 + - uid: 5743 components: - type: Transform pos: 16.5,-49.5 parent: 2 - - uid: 5791 + - uid: 5744 components: - type: Transform pos: 17.5,-49.5 parent: 2 - - uid: 5792 + - uid: 5745 components: - type: Transform pos: 17.5,-50.5 parent: 2 - - uid: 5793 + - uid: 5746 components: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 5794 + - uid: 5747 components: - type: Transform pos: 17.5,-52.5 parent: 2 - - uid: 5795 + - uid: 5748 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 5796 + - uid: 5749 components: - type: Transform pos: 17.5,-54.5 parent: 2 - - uid: 5797 + - uid: 5750 components: - type: Transform pos: 17.5,-55.5 parent: 2 - - uid: 5798 + - uid: 5751 components: - type: Transform pos: 16.5,-55.5 parent: 2 - - uid: 5799 + - uid: 5752 components: - type: Transform pos: 15.5,-55.5 parent: 2 - - uid: 5800 + - uid: 5753 components: - type: Transform pos: 14.5,-55.5 parent: 2 - - uid: 5801 + - uid: 5754 components: - type: Transform pos: 13.5,-55.5 parent: 2 - - uid: 5802 + - uid: 5755 components: - type: Transform pos: 18.5,-55.5 parent: 2 - - uid: 5803 + - uid: 5756 components: - type: Transform pos: 19.5,-55.5 parent: 2 - - uid: 5804 + - uid: 5757 components: - type: Transform pos: 20.5,-55.5 parent: 2 - - uid: 5805 + - uid: 5758 components: - type: Transform pos: 21.5,-55.5 parent: 2 - - uid: 5806 + - uid: 5759 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 5807 + - uid: 5760 components: - type: Transform pos: 23.5,-55.5 parent: 2 - - uid: 5808 + - uid: 5761 components: - type: Transform pos: 24.5,-55.5 parent: 2 - - uid: 5809 + - uid: 5762 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 5810 + - uid: 5763 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 5811 + - uid: 5764 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 5812 + - uid: 5765 components: - type: Transform pos: 14.5,-44.5 parent: 2 - - uid: 5813 + - uid: 5766 components: - type: Transform pos: 14.5,-45.5 parent: 2 - - uid: 5814 + - uid: 5767 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 5815 + - uid: 5768 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 5816 + - uid: 5769 components: - type: Transform pos: 13.5,-43.5 parent: 2 - - uid: 5817 + - uid: 5770 components: - type: Transform pos: 12.5,-43.5 parent: 2 - - uid: 5818 + - uid: 5771 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 5819 + - uid: 5772 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 5820 + - uid: 5773 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 5821 + - uid: 5774 components: - type: Transform pos: 23.5,-38.5 parent: 2 - - uid: 5822 + - uid: 5775 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 5823 + - uid: 5776 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 5824 + - uid: 5777 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 5825 + - uid: 5778 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 5826 + - uid: 5779 components: - type: Transform pos: -9.5,-25.5 parent: 2 - - uid: 5827 + - uid: 5780 components: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 5828 + - uid: 5781 components: - type: Transform pos: -7.5,-25.5 parent: 2 - - uid: 5829 + - uid: 5782 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 5830 + - uid: 5783 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 5831 + - uid: 5784 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 5832 + - uid: 5785 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 5833 + - uid: 5786 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 5834 + - uid: 5787 components: - type: Transform pos: -11.5,-25.5 parent: 2 - - uid: 5835 + - uid: 5788 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 5836 + - uid: 5789 components: - type: Transform pos: -13.5,-25.5 parent: 2 - - uid: 5837 + - uid: 5790 components: - type: Transform pos: -14.5,-25.5 parent: 2 - - uid: 5838 + - uid: 5791 components: - type: Transform pos: -15.5,-23.5 parent: 2 - - uid: 5839 + - uid: 5792 components: - type: Transform pos: -14.5,-23.5 parent: 2 - - uid: 5840 + - uid: 5793 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 5841 + - uid: 5794 components: - type: Transform pos: -14.5,-26.5 parent: 2 - - uid: 5842 + - uid: 5795 components: - type: Transform pos: -14.5,-27.5 parent: 2 - - uid: 5843 + - uid: 5796 components: - type: Transform pos: -12.5,-26.5 parent: 2 - - uid: 5844 + - uid: 5797 components: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 5845 + - uid: 5798 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 5846 + - uid: 5799 components: - type: Transform pos: -5.5,-27.5 parent: 2 - - uid: 5847 + - uid: 5800 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 5848 + - uid: 5801 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 5849 + - uid: 5802 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 5850 + - uid: 5803 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 5851 + - uid: 5804 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 5852 + - uid: 5805 components: - type: Transform pos: 8.5,-23.5 parent: 2 - - uid: 5853 + - uid: 5806 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 5854 + - uid: 5807 components: - type: Transform pos: 8.5,-25.5 parent: 2 - - uid: 5855 + - uid: 5808 components: - type: Transform pos: 7.5,-25.5 parent: 2 - - uid: 5856 + - uid: 5809 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 5857 + - uid: 5810 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 5858 + - uid: 5811 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 5859 + - uid: 5812 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 5860 + - uid: 5813 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 5861 + - uid: 5814 components: - type: Transform pos: 9.5,-25.5 parent: 2 - - uid: 5862 + - uid: 5815 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 5863 + - uid: 5816 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 5864 + - uid: 5817 components: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 5865 + - uid: 5818 components: - type: Transform pos: 13.5,-25.5 parent: 2 - - uid: 5866 + - uid: 5819 components: - type: Transform pos: 14.5,-25.5 parent: 2 - - uid: 5867 + - uid: 5820 components: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 5868 + - uid: 5821 components: - type: Transform pos: 8.5,-27.5 parent: 2 - - uid: 5869 + - uid: 5822 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 5870 + - uid: 5823 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 5871 + - uid: 5824 components: - type: Transform pos: 13.5,-26.5 parent: 2 - - uid: 5872 + - uid: 5825 components: - type: Transform pos: 13.5,-27.5 parent: 2 - - uid: 5873 + - uid: 5826 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 5874 + - uid: 5827 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 5875 + - uid: 5828 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 5876 + - uid: 5829 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 5877 + - uid: 5830 components: - type: Transform pos: 10.5,-30.5 parent: 2 - - uid: 5878 + - uid: 5831 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 5879 + - uid: 5832 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 5880 + - uid: 5833 components: - type: Transform pos: 12.5,-24.5 parent: 2 - - uid: 5881 + - uid: 5834 components: - type: Transform pos: 12.5,-23.5 parent: 2 - - uid: 5882 + - uid: 5835 components: - type: Transform pos: 12.5,-22.5 parent: 2 - - uid: 5883 + - uid: 5836 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 5884 + - uid: 5837 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 5885 + - uid: 5838 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 5886 + - uid: 5839 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 5887 + - uid: 5840 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 5888 + - uid: 5841 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 5889 + - uid: 5842 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 5890 + - uid: 5843 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 5891 + - uid: 5844 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 5892 + - uid: 5845 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 5893 + - uid: 5846 components: - type: Transform pos: 49.5,-46.5 parent: 2 - - uid: 5894 + - uid: 5847 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 5895 + - uid: 5848 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 5896 + - uid: 5849 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 5897 + - uid: 5850 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 5898 + - uid: 5851 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 5899 + - uid: 5852 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 5900 + - uid: 5853 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 5901 + - uid: 5854 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 5902 + - uid: 5855 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 5903 + - uid: 5856 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 5904 + - uid: 5857 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 5905 + - uid: 5858 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 5906 + - uid: 5859 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 5907 + - uid: 5860 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 5908 + - uid: 5861 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 5909 + - uid: 5862 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 5910 + - uid: 5863 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 5911 + - uid: 5864 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 5912 + - uid: 5865 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 5913 + - uid: 5866 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 5914 + - uid: 5867 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 5915 + - uid: 5868 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 5916 + - uid: 5869 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 5917 + - uid: 5870 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 5918 + - uid: 5871 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 5919 + - uid: 5872 components: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 5920 + - uid: 5873 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 5921 + - uid: 5874 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 5922 + - uid: 5875 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 5923 + - uid: 5876 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 5924 + - uid: 5877 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 5925 + - uid: 5878 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 5926 + - uid: 5879 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 5927 + - uid: 5880 components: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 5928 + - uid: 5881 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 5929 + - uid: 5882 components: - type: Transform pos: 40.5,-23.5 parent: 2 - - uid: 5930 + - uid: 5883 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 5931 + - uid: 5884 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 5932 + - uid: 5885 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 5933 + - uid: 5886 components: - type: Transform pos: -3.5,-64.5 parent: 2 - - uid: 5934 + - uid: 5887 components: - type: Transform pos: -3.5,-65.5 parent: 2 - - uid: 5935 + - uid: 5888 components: - type: Transform pos: -3.5,-66.5 parent: 2 - - uid: 5936 + - uid: 5889 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 5937 + - uid: 5890 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 5938 + - uid: 5891 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 5939 + - uid: 5892 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 5940 + - uid: 5893 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 5941 + - uid: 5894 components: - type: Transform pos: -3.5,-72.5 parent: 2 - - uid: 5942 + - uid: 5895 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 5943 + - uid: 5896 components: - type: Transform pos: -3.5,-74.5 parent: 2 - - uid: 5944 + - uid: 5897 components: - type: Transform pos: -3.5,-75.5 parent: 2 - - uid: 5945 + - uid: 5898 components: - type: Transform pos: -3.5,-76.5 parent: 2 - - uid: 5946 + - uid: 5899 components: - type: Transform pos: -3.5,-77.5 parent: 2 - - uid: 5947 + - uid: 5900 components: - type: Transform pos: -3.5,-78.5 parent: 2 - - uid: 5948 + - uid: 5901 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 5949 + - uid: 5902 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 5950 + - uid: 5903 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 5951 + - uid: 5904 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 5952 + - uid: 5905 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 5953 + - uid: 5906 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 5954 + - uid: 5907 components: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 5955 + - uid: 5908 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 5956 + - uid: 5909 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 5957 + - uid: 5910 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 5958 + - uid: 5911 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 5959 + - uid: 5912 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 5960 + - uid: 5913 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 5961 + - uid: 5914 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 5962 + - uid: 5915 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 5963 + - uid: 5916 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 5964 + - uid: 5917 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 5965 + - uid: 5918 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 5966 + - uid: 5919 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 5967 + - uid: 5920 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 5968 + - uid: 5921 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 5969 + - uid: 5922 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 5970 + - uid: 5923 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 5971 + - uid: 5924 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 5972 + - uid: 5925 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 5973 + - uid: 5926 components: - type: Transform pos: 21.5,-20.5 parent: 2 - - uid: 5974 + - uid: 5927 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 5975 + - uid: 5928 components: - type: Transform pos: 21.5,-18.5 parent: 2 - - uid: 5976 + - uid: 5929 components: - type: Transform pos: 21.5,-17.5 parent: 2 - - uid: 5977 + - uid: 5930 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 5978 + - uid: 5931 components: - type: Transform pos: 21.5,-21.5 parent: 2 - - uid: 5979 + - uid: 5932 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - uid: 5980 + - uid: 5933 components: - type: Transform pos: -1.5,-69.5 parent: 2 - - uid: 5981 + - uid: 5934 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 5982 + - uid: 5935 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 5983 + - uid: 5936 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 5984 + - uid: 5937 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 5985 + - uid: 5938 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 5986 + - uid: 5939 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 5987 + - uid: 5940 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 5988 + - uid: 5941 components: - type: Transform pos: -8.5,-69.5 parent: 2 - - uid: 5989 + - uid: 5942 components: - type: Transform pos: -9.5,-69.5 parent: 2 - - uid: 5990 + - uid: 5943 components: - type: Transform pos: -9.5,-68.5 parent: 2 - - uid: 5991 + - uid: 5944 components: - type: Transform pos: -9.5,-67.5 parent: 2 - - uid: 5992 + - uid: 5945 components: - type: Transform pos: -9.5,-66.5 parent: 2 - - uid: 5993 + - uid: 5946 components: - type: Transform pos: -9.5,-65.5 parent: 2 - - uid: 5994 + - uid: 5947 components: - type: Transform pos: -9.5,-64.5 parent: 2 - - uid: 5995 + - uid: 5948 components: - type: Transform pos: 42.5,-46.5 parent: 2 - - uid: 5996 + - uid: 5949 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 5997 + - uid: 5950 components: - type: Transform pos: 40.5,-46.5 parent: 2 - - uid: 5998 + - uid: 5951 components: - type: Transform pos: 39.5,-46.5 parent: 2 - - uid: 5999 + - uid: 5952 components: - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 6000 + - uid: 5953 components: - type: Transform pos: 37.5,-46.5 parent: 2 - - uid: 6001 + - uid: 5954 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 6002 + - uid: 5955 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 6003 + - uid: 5956 components: - type: Transform pos: 37.5,-49.5 parent: 2 - - uid: 6004 + - uid: 5957 components: - type: Transform pos: 37.5,-50.5 parent: 2 - - uid: 6005 + - uid: 5958 components: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 6006 + - uid: 5959 components: - type: Transform pos: 37.5,-52.5 parent: 2 - - uid: 6007 + - uid: 5960 components: - type: Transform pos: 37.5,-53.5 parent: 2 - - uid: 6008 + - uid: 5961 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 6009 + - uid: 5962 components: - type: Transform pos: 37.5,-55.5 parent: 2 - - uid: 6010 + - uid: 5963 components: - type: Transform pos: -4.5,-64.5 parent: 2 - - uid: 6011 + - uid: 5964 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 6012 + - uid: 5965 components: - type: Transform pos: -6.5,-64.5 parent: 2 - - uid: 6013 + - uid: 5966 components: - type: Transform pos: 36.5,-55.5 parent: 2 - - uid: 6014 + - uid: 5967 components: - type: Transform pos: 35.5,-55.5 parent: 2 - - uid: 6015 + - uid: 5968 components: - type: Transform pos: 34.5,-55.5 parent: 2 - - uid: 6016 + - uid: 5969 components: - type: Transform pos: 33.5,-55.5 parent: 2 - - uid: 6017 + - uid: 5970 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 6018 + - uid: 5971 components: - type: Transform pos: 31.5,-55.5 parent: 2 - - uid: 6019 + - uid: 5972 components: - type: Transform pos: 30.5,-55.5 parent: 2 - - uid: 6020 + - uid: 5973 components: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 6021 + - uid: 5974 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 6022 + - uid: 5975 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 6023 + - uid: 5976 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 6024 + - uid: 5977 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 6025 + - uid: 5978 components: - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 6026 + - uid: 5979 components: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 6027 + - uid: 5980 components: - type: Transform pos: 40.5,-52.5 parent: 2 - - uid: 6028 + - uid: 5981 components: - type: Transform pos: 41.5,-52.5 parent: 2 - - uid: 6029 + - uid: 5982 components: - type: Transform pos: 42.5,-52.5 parent: 2 - - uid: 6030 + - uid: 5983 components: - type: Transform pos: 43.5,-52.5 parent: 2 - - uid: 6031 + - uid: 5984 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 6032 + - uid: 5985 components: - type: Transform pos: 45.5,-52.5 parent: 2 - - uid: 6033 + - uid: 5986 components: - type: Transform pos: 46.5,-52.5 parent: 2 - - uid: 6034 + - uid: 5987 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 6035 + - uid: 5988 components: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 6036 + - uid: 5989 components: - type: Transform pos: 47.5,-51.5 parent: 2 - - uid: 6037 + - uid: 5990 components: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 6038 + - uid: 5991 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 6039 + - uid: 5992 components: - type: Transform pos: 0.49999997,-69.5 parent: 2 - - uid: 6040 + - uid: 5993 components: - type: Transform pos: 47.5,-53.5 parent: 2 - - uid: 6041 + - uid: 5994 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 6042 + - uid: 5995 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 6043 + - uid: 5996 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 6044 + - uid: 5997 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 6045 + - uid: 5998 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 6046 + - uid: 5999 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 6047 + - uid: 6000 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 6048 + - uid: 6001 components: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 6049 + - uid: 6002 components: - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 6050 + - uid: 6003 components: - type: Transform pos: 50.5,-49.5 parent: 2 - - uid: 6051 + - uid: 6004 components: - type: Transform pos: 50.5,-50.5 parent: 2 - - uid: 6052 + - uid: 6005 components: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 6053 + - uid: 6006 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 6054 + - uid: 6007 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 6055 + - uid: 6008 components: - type: Transform pos: 50.5,-54.5 parent: 2 - - uid: 6056 + - uid: 6009 components: - type: Transform pos: 50.5,-55.5 parent: 2 - - uid: 6057 + - uid: 6010 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 6058 + - uid: 6011 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 6059 + - uid: 6012 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 6060 + - uid: 6013 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 6061 + - uid: 6014 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 6062 + - uid: 6015 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 6063 + - uid: 6016 components: - type: Transform pos: 1.5,-76.5 parent: 2 - - uid: 6064 + - uid: 6017 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 6065 + - uid: 6018 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 6066 + - uid: 6019 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 6067 + - uid: 6020 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 6068 + - uid: 6021 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 6069 + - uid: 6022 components: - type: Transform pos: 52.5,-46.5 parent: 2 - - uid: 6070 + - uid: 6023 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 6071 + - uid: 6024 components: - type: Transform pos: 54.5,-46.5 parent: 2 - - uid: 6072 + - uid: 6025 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 6073 + - uid: 6026 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 6074 + - uid: 6027 components: - type: Transform pos: -2.5,-75.5 parent: 2 - - uid: 6075 + - uid: 6028 components: - type: Transform pos: -1.5,-75.5 parent: 2 - - uid: 6076 + - uid: 6029 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 6077 + - uid: 6030 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 6078 + - uid: 6031 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 6079 + - uid: 6032 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 6080 + - uid: 6033 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 6081 + - uid: 6034 components: - type: Transform pos: 0.49999997,-75.5 parent: 2 - - uid: 6082 + - uid: 6035 components: - type: Transform pos: -4.5,-75.5 parent: 2 - - uid: 6083 + - uid: 6036 components: - type: Transform pos: -9.5,-70.5 parent: 2 - - uid: 6084 + - uid: 6037 components: - type: Transform pos: -9.5,-71.5 parent: 2 - - uid: 6085 + - uid: 6038 components: - type: Transform pos: -9.5,-72.5 parent: 2 - - uid: 6086 + - uid: 6039 components: - type: Transform pos: -9.5,-73.5 parent: 2 - - uid: 6087 + - uid: 6040 components: - type: Transform pos: -9.5,-74.5 parent: 2 - - uid: 6088 + - uid: 6041 components: - type: Transform pos: -9.5,-75.5 parent: 2 - - uid: 6089 + - uid: 6042 components: - type: Transform pos: -9.5,-76.5 parent: 2 - - uid: 6090 + - uid: 6043 components: - type: Transform pos: -8.5,-75.5 parent: 2 - - uid: 6091 + - uid: 6044 components: - type: Transform pos: -7.5,-75.5 parent: 2 - - uid: 6092 + - uid: 6045 components: - type: Transform pos: -6.5,-75.5 parent: 2 - - uid: 6093 + - uid: 6046 components: - type: Transform pos: -5.5,-75.5 parent: 2 - - uid: 6094 + - uid: 6047 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 6095 + - uid: 6048 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 6096 + - uid: 6049 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 6097 + - uid: 6050 components: - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 6098 + - uid: 6051 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 6099 + - uid: 6052 components: - type: Transform pos: 48.5,-32.5 parent: 2 - - uid: 6100 + - uid: 6053 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 6101 + - uid: 6054 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 6102 + - uid: 6055 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 6103 + - uid: 6056 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 6104 + - uid: 6057 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 6105 + - uid: 6058 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 6106 + - uid: 6059 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 6107 + - uid: 6060 components: - type: Transform pos: 41.5,-30.5 parent: 2 - - uid: 6108 + - uid: 6061 components: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 6109 + - uid: 6062 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 6110 + - uid: 6063 components: - type: Transform pos: 41.5,-33.5 parent: 2 - - uid: 6111 + - uid: 6064 components: - type: Transform pos: 41.5,-34.5 parent: 2 - - uid: 6112 + - uid: 6065 components: - type: Transform pos: 41.5,-35.5 parent: 2 - - uid: 6113 + - uid: 6066 components: - type: Transform pos: 41.5,-36.5 parent: 2 - - uid: 6114 + - uid: 6067 components: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 6115 + - uid: 6068 components: - type: Transform pos: 41.5,-38.5 parent: 2 - - uid: 6116 + - uid: 6069 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 6117 + - uid: 6070 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 6118 + - uid: 6071 components: - type: Transform pos: 41.5,-41.5 parent: 2 - - uid: 6119 + - uid: 6072 components: - type: Transform pos: 41.5,-42.5 parent: 2 - - uid: 6120 + - uid: 6073 components: - type: Transform pos: 41.5,-43.5 parent: 2 - - uid: 6121 + - uid: 6074 components: - type: Transform pos: 41.5,-44.5 parent: 2 - - uid: 6122 + - uid: 6075 components: - type: Transform pos: 41.5,-45.5 parent: 2 - - uid: 6123 + - uid: 6076 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 6124 + - uid: 6077 components: - type: Transform pos: 42.5,-41.5 parent: 2 - - uid: 6125 + - uid: 6078 components: - type: Transform pos: 43.5,-41.5 parent: 2 - - uid: 6126 + - uid: 6079 components: - type: Transform pos: 44.5,-41.5 parent: 2 - - uid: 6127 + - uid: 6080 components: - type: Transform pos: 45.5,-41.5 parent: 2 - - uid: 6128 + - uid: 6081 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 6129 + - uid: 6082 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 6130 + - uid: 6083 components: - type: Transform pos: 48.5,-41.5 parent: 2 - - uid: 6131 + - uid: 6084 components: - type: Transform pos: 49.5,-41.5 parent: 2 - - uid: 6132 + - uid: 6085 components: - type: Transform pos: 50.5,-41.5 parent: 2 - - uid: 6133 + - uid: 6086 components: - type: Transform pos: 46.5,-40.5 parent: 2 - - uid: 6134 + - uid: 6087 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - uid: 6135 + - uid: 6088 components: - type: Transform pos: 46.5,-38.5 parent: 2 - - uid: 6136 + - uid: 6089 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 6137 + - uid: 6090 components: - type: Transform pos: 46.5,-42.5 parent: 2 - - uid: 6138 + - uid: 6091 components: - type: Transform pos: 46.5,-43.5 parent: 2 - - uid: 6139 + - uid: 6092 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 6140 + - uid: 6093 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 6141 + - uid: 6094 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 6142 + - uid: 6095 components: - type: Transform pos: 46.5,-33.5 parent: 2 - - uid: 6143 + - uid: 6096 components: - type: Transform pos: 46.5,-34.5 parent: 2 - - uid: 6144 + - uid: 6097 components: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 6145 + - uid: 6098 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 6146 + - uid: 6099 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 6147 + - uid: 6100 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 6148 + - uid: 6101 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 6149 + - uid: 6102 components: - type: Transform pos: 44.5,-19.5 parent: 2 - - uid: 6150 + - uid: 6103 components: - type: Transform pos: 45.5,-19.5 parent: 2 - - uid: 6151 + - uid: 6104 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 6152 + - uid: 6105 components: - type: Transform pos: 47.5,-19.5 parent: 2 - - uid: 6153 + - uid: 6106 components: - type: Transform pos: 48.5,-19.5 parent: 2 - - uid: 6154 + - uid: 6107 components: - type: Transform pos: 49.5,-19.5 parent: 2 - - uid: 6155 + - uid: 6108 components: - type: Transform pos: 50.5,-19.5 parent: 2 - - uid: 6156 + - uid: 6109 components: - type: Transform pos: 51.5,-19.5 parent: 2 - - uid: 6157 + - uid: 6110 components: - type: Transform pos: 52.5,-19.5 parent: 2 - - uid: 6158 + - uid: 6111 components: - type: Transform pos: 53.5,-19.5 parent: 2 - - uid: 6159 + - uid: 6112 components: - type: Transform pos: 52.5,-22.5 parent: 2 - - uid: 6160 + - uid: 6113 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 6161 + - uid: 6114 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 6162 + - uid: 6115 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 6163 + - uid: 6116 components: - type: Transform pos: 55.5,-10.5 parent: 2 - - uid: 6164 + - uid: 6117 components: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 6165 + - uid: 6118 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 6166 + - uid: 6119 components: - type: Transform pos: 58.5,-10.5 parent: 2 - - uid: 6167 + - uid: 6120 components: - type: Transform pos: 59.5,-10.5 parent: 2 - - uid: 6168 + - uid: 6121 components: - type: Transform pos: 59.5,-11.5 parent: 2 - - uid: 6169 + - uid: 6122 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 6170 + - uid: 6123 components: - type: Transform pos: 59.5,-13.5 parent: 2 - - uid: 6171 + - uid: 6124 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 6172 + - uid: 6125 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 6173 + - uid: 6126 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 6174 + - uid: 6127 components: - type: Transform pos: 59.5,-17.5 parent: 2 - - uid: 6175 + - uid: 6128 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 6176 + - uid: 6129 components: - type: Transform pos: 59.5,-19.5 parent: 2 - - uid: 6177 + - uid: 6130 components: - type: Transform pos: 59.5,-20.5 parent: 2 - - uid: 6178 + - uid: 6131 components: - type: Transform pos: 59.5,-21.5 parent: 2 - - uid: 6179 + - uid: 6132 components: - type: Transform pos: 59.5,-22.5 parent: 2 - - uid: 6180 + - uid: 6133 components: - type: Transform pos: 59.5,-23.5 parent: 2 - - uid: 6181 + - uid: 6134 components: - type: Transform pos: 59.5,-24.5 parent: 2 - - uid: 6182 + - uid: 6135 components: - type: Transform pos: 59.5,-25.5 parent: 2 - - uid: 6183 + - uid: 6136 components: - type: Transform pos: 59.5,-26.5 parent: 2 - - uid: 6184 + - uid: 6137 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 6185 + - uid: 6138 components: - type: Transform pos: 59.5,-28.5 parent: 2 - - uid: 6186 + - uid: 6139 components: - type: Transform pos: 59.5,-29.5 parent: 2 - - uid: 6187 + - uid: 6140 components: - type: Transform pos: 59.5,-30.5 parent: 2 - - uid: 6188 + - uid: 6141 components: - type: Transform pos: 58.5,-19.5 parent: 2 - - uid: 6189 + - uid: 6142 components: - type: Transform pos: 57.5,-19.5 parent: 2 - - uid: 6190 + - uid: 6143 components: - type: Transform pos: 56.5,-19.5 parent: 2 - - uid: 6191 + - uid: 6144 components: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 6192 + - uid: 6145 components: - type: Transform pos: 55.5,-20.5 parent: 2 - - uid: 6193 + - uid: 6146 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 6194 + - uid: 6147 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 6195 + - uid: 6148 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 6196 + - uid: 6149 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 6197 + - uid: 6150 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 6198 + - uid: 6151 components: - type: Transform pos: 62.5,-19.5 parent: 2 - - uid: 6199 + - uid: 6152 components: - type: Transform pos: 61.5,-19.5 parent: 2 - - uid: 6200 + - uid: 6153 components: - type: Transform pos: 60.5,-19.5 parent: 2 - - uid: 6201 + - uid: 6154 components: - type: Transform pos: 55.5,-30.5 parent: 2 - - uid: 6202 + - uid: 6155 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 6203 + - uid: 6156 components: - type: Transform pos: 57.5,-30.5 parent: 2 - - uid: 6204 + - uid: 6157 components: - type: Transform pos: 58.5,-30.5 parent: 2 - - uid: 6205 + - uid: 6158 components: - type: Transform pos: -15.5,-64.5 parent: 2 - - uid: 6206 + - uid: 6159 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 6207 + - uid: 6160 components: - type: Transform pos: 61.5,-30.5 parent: 2 - - uid: 6208 + - uid: 6161 components: - type: Transform pos: 62.5,-30.5 parent: 2 - - uid: 6209 + - uid: 6162 components: - type: Transform pos: 63.5,-30.5 parent: 2 - - uid: 6210 + - uid: 6163 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 6211 + - uid: 6164 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 6212 + - uid: 6165 components: - type: Transform pos: -15.5,-65.5 parent: 2 - - uid: 6213 + - uid: 6166 components: - type: Transform pos: -15.5,-66.5 parent: 2 - - uid: 6214 + - uid: 6167 components: - type: Transform pos: -16.5,-66.5 parent: 2 - - uid: 6215 + - uid: 6168 components: - type: Transform pos: -17.5,-66.5 parent: 2 - - uid: 6216 + - uid: 6169 components: - type: Transform pos: -18.5,-66.5 parent: 2 - - uid: 6217 + - uid: 6170 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 6218 + - uid: 6171 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 6219 + - uid: 6172 components: - type: Transform pos: 60.5,-9.5 parent: 2 - - uid: 6220 + - uid: 6173 components: - type: Transform pos: 61.5,-9.5 parent: 2 - - uid: 6221 + - uid: 6174 components: - type: Transform pos: 62.5,-9.5 parent: 2 - - uid: 6222 + - uid: 6175 components: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 6223 + - uid: 6176 components: - type: Transform pos: 64.5,-9.5 parent: 2 - - uid: 6224 + - uid: 6177 components: - type: Transform pos: 65.5,-9.5 parent: 2 - - uid: 6225 + - uid: 6178 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 6226 + - uid: 6179 components: - type: Transform pos: 65.5,-11.5 parent: 2 - - uid: 6227 + - uid: 6180 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 6228 + - uid: 6181 components: - type: Transform pos: -20.5,-66.5 parent: 2 - - uid: 6229 + - uid: 6182 components: - type: Transform pos: -22.5,-66.5 parent: 2 - - uid: 6230 + - uid: 6183 components: - type: Transform pos: -22.5,-65.5 parent: 2 - - uid: 6231 + - uid: 6184 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 6232 + - uid: 6185 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - uid: 6233 + - uid: 6186 components: - type: Transform pos: -21.5,-66.5 parent: 2 - - uid: 6234 + - uid: 6187 components: - type: Transform pos: -22.5,-64.5 parent: 2 - - uid: 6235 + - uid: 6188 components: - type: Transform pos: -22.5,-63.5 parent: 2 - - uid: 6236 + - uid: 6189 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 6237 + - uid: 6190 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 6238 + - uid: 6191 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 6239 + - uid: 6192 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 6240 + - uid: 6193 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 6241 + - uid: 6194 components: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 6242 + - uid: 6195 components: - type: Transform pos: 55.5,-24.5 parent: 2 - - uid: 6243 + - uid: 6196 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 6244 + - uid: 6197 components: - type: Transform pos: 55.5,-26.5 parent: 2 - - uid: 6245 + - uid: 6198 components: - type: Transform pos: 55.5,-27.5 parent: 2 - - uid: 6246 + - uid: 6199 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 6247 + - uid: 6200 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 6248 + - uid: 6201 components: - type: Transform pos: -23.5,-66.5 parent: 2 - - uid: 6249 + - uid: 6202 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 6250 + - uid: 6203 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 6251 + - uid: 6204 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 6252 + - uid: 6205 components: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 6253 + - uid: 6206 components: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 6254 + - uid: 6207 components: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 6255 + - uid: 6208 components: - type: Transform pos: 55.5,-11.5 parent: 2 - - uid: 6256 + - uid: 6209 components: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 6257 + - uid: 6210 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 6258 + - uid: 6211 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 6259 + - uid: 6212 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 6260 + - uid: 6213 components: - type: Transform pos: -22.5,-72.5 parent: 2 - - uid: 6261 + - uid: 6214 components: - type: Transform pos: -22.5,-73.5 parent: 2 - - uid: 6262 + - uid: 6215 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 6263 + - uid: 6216 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 6264 + - uid: 6217 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 6265 + - uid: 6218 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 6266 + - uid: 6219 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 6267 + - uid: 6220 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 6268 + - uid: 6221 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 6269 + - uid: 6222 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 6270 + - uid: 6223 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 6271 + - uid: 6224 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 6272 + - uid: 6225 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 6273 + - uid: 6226 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 6274 + - uid: 6227 components: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 6275 + - uid: 6228 components: - type: Transform pos: 63.5,-28.5 parent: 2 - - uid: 6276 + - uid: 6229 components: - type: Transform pos: 63.5,-29.5 parent: 2 - - uid: 6277 + - uid: 6230 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - uid: 6278 + - uid: 6231 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 6279 + - uid: 6232 components: - type: Transform pos: 64.5,-28.5 parent: 2 - - uid: 6280 + - uid: 6233 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 6281 + - uid: 6234 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 6282 + - uid: 6235 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 6283 + - uid: 6236 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 6284 + - uid: 6237 components: - type: Transform pos: -22.5,-80.5 parent: 2 - - uid: 6285 + - uid: 6238 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 6286 + - uid: 6239 components: - type: Transform pos: -19.5,-80.5 parent: 2 - - uid: 6287 + - uid: 6240 components: - type: Transform pos: -18.5,-80.5 parent: 2 - - uid: 6288 + - uid: 6241 components: - type: Transform pos: -17.5,-80.5 parent: 2 - - uid: 6289 + - uid: 6242 components: - type: Transform pos: -16.5,-80.5 parent: 2 - - uid: 6290 + - uid: 6243 components: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 6291 + - uid: 6244 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 6292 + - uid: 6245 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6293 + - uid: 6246 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 6294 + - uid: 6247 components: - type: Transform pos: -13.5,-80.5 parent: 2 - - uid: 6295 + - uid: 6248 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 6296 + - uid: 6249 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 6297 + - uid: 6250 components: - type: Transform pos: 52.5,-15.5 parent: 2 - - uid: 6298 + - uid: 6251 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 6299 + - uid: 6252 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 6300 + - uid: 6253 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 6301 + - uid: 6254 components: - type: Transform pos: -13.5,-77.5 parent: 2 - - uid: 6302 + - uid: 6255 components: - type: Transform pos: -14.5,-77.5 parent: 2 - - uid: 6303 + - uid: 6256 components: - type: Transform pos: -15.5,-77.5 parent: 2 - - uid: 6304 + - uid: 6257 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 6305 + - uid: 6258 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6306 + - uid: 6259 components: - type: Transform pos: -16.5,-77.5 parent: 2 - - uid: 6307 + - uid: 6260 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 6308 + - uid: 6261 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 6309 + - uid: 6262 components: - type: Transform pos: 52.5,-15.5 parent: 2 - - uid: 6310 + - uid: 6263 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 6311 + - uid: 6264 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 6312 + - uid: 6265 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 6313 + - uid: 6266 components: - type: Transform pos: -12.5,-77.5 parent: 2 - - uid: 6314 + - uid: 6267 components: - type: Transform pos: 52.5,-23.5 parent: 2 - - uid: 6315 + - uid: 6268 components: - type: Transform pos: 52.5,-24.5 parent: 2 - - uid: 6316 + - uid: 6269 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 6317 + - uid: 6270 components: - type: Transform pos: 48.5,-22.5 parent: 2 - - uid: 6318 + - uid: 6271 components: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 6319 + - uid: 6272 components: - type: Transform pos: 48.5,-24.5 parent: 2 - - uid: 6320 + - uid: 6273 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 6321 + - uid: 6274 components: - type: Transform pos: 47.5,-22.5 parent: 2 - - uid: 6322 + - uid: 6275 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 6323 + - uid: 6276 components: - type: Transform pos: 44.5,-22.5 parent: 2 - - uid: 6324 + - uid: 6277 components: - type: Transform pos: 44.5,-23.5 parent: 2 - - uid: 6325 + - uid: 6278 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 6326 + - uid: 6279 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 6327 + - uid: 6280 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 6328 + - uid: 6281 components: - type: Transform pos: 43.5,-22.5 parent: 2 - - uid: 6329 + - uid: 6282 components: - type: Transform pos: -14.5,-66.5 parent: 2 - - uid: 6330 + - uid: 6283 components: - type: Transform pos: -13.5,-66.5 parent: 2 - - uid: 6331 + - uid: 6284 components: - type: Transform pos: -12.5,-66.5 parent: 2 - - uid: 6332 + - uid: 6285 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 6333 + - uid: 6286 components: - type: Transform pos: 45.5,-13.5 parent: 2 - - uid: 6334 + - uid: 6287 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 6335 + - uid: 6288 components: - type: Transform pos: 45.5,-15.5 parent: 2 - - uid: 6336 + - uid: 6289 components: - type: Transform pos: 45.5,-16.5 parent: 2 - - uid: 6337 + - uid: 6290 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 6338 + - uid: 6291 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 6339 + - uid: 6292 components: - type: Transform pos: -16.5,-67.5 parent: 2 - - uid: 6340 + - uid: 6293 components: - type: Transform pos: -17.5,-70.5 parent: 2 - - uid: 6341 + - uid: 6294 components: - type: Transform pos: 48.5,-15.5 parent: 2 - - uid: 6342 + - uid: 6295 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 6343 + - uid: 6296 components: - type: Transform pos: 48.5,-13.5 parent: 2 - - uid: 6344 + - uid: 6297 components: - type: Transform pos: -16.5,-68.5 parent: 2 - - uid: 6345 + - uid: 6298 components: - type: Transform pos: -16.5,-69.5 parent: 2 - - uid: 6346 + - uid: 6299 components: - type: Transform pos: -16.5,-70.5 parent: 2 - - uid: 6347 + - uid: 6300 components: - type: Transform pos: -16.5,-71.5 parent: 2 - - uid: 6348 + - uid: 6301 components: - type: Transform pos: -16.5,-72.5 parent: 2 - - uid: 6349 + - uid: 6302 components: - type: Transform pos: -16.5,-73.5 parent: 2 - - uid: 6350 + - uid: 6303 components: - type: Transform pos: -16.5,-74.5 parent: 2 - - uid: 6351 + - uid: 6304 components: - type: Transform pos: -16.5,-75.5 parent: 2 - - uid: 6352 + - uid: 6305 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 6353 + - uid: 6306 components: - type: Transform pos: 48.5,-16.5 parent: 2 - - uid: 6354 + - uid: 6307 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 6355 + - uid: 6308 components: - type: Transform pos: 46.5,-13.5 parent: 2 - - uid: 6356 + - uid: 6309 components: - type: Transform pos: 47.5,-13.5 parent: 2 - - uid: 6357 + - uid: 6310 components: - type: Transform pos: -20.5,-70.5 parent: 2 - - uid: 6358 + - uid: 6311 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 6359 + - uid: 6312 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 6360 + - uid: 6313 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 6361 + - uid: 6314 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 6362 + - uid: 6315 components: - type: Transform pos: -17.5,-75.5 parent: 2 - - uid: 6363 + - uid: 6316 components: - type: Transform pos: -18.5,-75.5 parent: 2 - - uid: 6364 + - uid: 6317 components: - type: Transform pos: -19.5,-75.5 parent: 2 - - uid: 6365 + - uid: 6318 components: - type: Transform pos: -20.5,-75.5 parent: 2 - - uid: 6366 + - uid: 6319 components: - type: Transform pos: -15.5,-75.5 parent: 2 - - uid: 6367 + - uid: 6320 components: - type: Transform pos: -14.5,-75.5 parent: 2 - - uid: 6368 + - uid: 6321 components: - type: Transform pos: -13.5,-75.5 parent: 2 - - uid: 6369 + - uid: 6322 components: - type: Transform pos: -12.5,-75.5 parent: 2 - - uid: 6370 + - uid: 6323 components: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 6371 + - uid: 6324 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 6372 + - uid: 6325 components: - type: Transform pos: 41.5,-18.5 parent: 2 - - uid: 6373 + - uid: 6326 components: - type: Transform pos: 40.5,-18.5 parent: 2 - - uid: 6374 + - uid: 6327 components: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 6375 + - uid: 6328 components: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 6376 + - uid: 6329 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 6377 + - uid: 6330 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 6378 + - uid: 6331 components: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 6379 + - uid: 6332 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 6380 + - uid: 6333 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 6381 + - uid: 6334 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 6382 + - uid: 6335 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 6383 + - uid: 6336 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 6384 + - uid: 6337 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 6385 + - uid: 6338 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 6386 + - uid: 6339 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 6387 + - uid: 6340 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 6388 + - uid: 6341 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 6389 + - uid: 6342 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 6390 + - uid: 6343 components: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 6391 + - uid: 6344 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 6392 + - uid: 6345 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 6393 + - uid: 6346 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 6394 + - uid: 6347 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 6395 + - uid: 6348 components: - type: Transform pos: 37.5,-15.5 parent: 2 - - uid: 6396 + - uid: 6349 components: - type: Transform pos: -20.5,-74.5 parent: 2 - - uid: 6397 + - uid: 6350 components: - type: Transform pos: -20.5,-73.5 parent: 2 - - uid: 6398 + - uid: 6351 components: - type: Transform pos: -12.5,-74.5 parent: 2 - - uid: 6399 + - uid: 6352 components: - type: Transform pos: -12.5,-73.5 parent: 2 - - uid: 6400 + - uid: 6353 components: - type: Transform pos: 36.5,-15.5 parent: 2 - - uid: 6401 + - uid: 6354 components: - type: Transform pos: 35.5,-15.5 parent: 2 - - uid: 6402 + - uid: 6355 components: - type: Transform pos: 34.5,-15.5 parent: 2 - - uid: 6403 + - uid: 6356 components: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 6404 + - uid: 6357 components: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 6405 + - uid: 6358 components: - type: Transform pos: 39.5,-15.5 parent: 2 - - uid: 6406 + - uid: 6359 components: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 6407 + - uid: 6360 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 6408 + - uid: 6361 components: - type: Transform pos: -20.5,-69.5 parent: 2 - - uid: 6409 + - uid: 6362 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 6410 + - uid: 6363 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 6411 + - uid: 6364 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 6412 + - uid: 6365 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 6413 + - uid: 6366 components: - type: Transform pos: -12.5,-68.5 parent: 2 - - uid: 6414 + - uid: 6367 components: - type: Transform pos: 41.5,-14.5 parent: 2 - - uid: 6415 + - uid: 6368 components: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 6416 + - uid: 6369 components: - type: Transform pos: 41.5,-10.5 parent: 2 - - uid: 6417 + - uid: 6370 components: - type: Transform pos: 41.5,-9.5 parent: 2 - - uid: 6418 + - uid: 6371 components: - type: Transform pos: 41.5,-8.5 parent: 2 - - uid: 6419 + - uid: 6372 components: - type: Transform pos: 41.5,-7.5 parent: 2 - - uid: 6420 + - uid: 6373 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 6421 + - uid: 6374 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 6422 + - uid: 6375 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 6423 + - uid: 6376 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 6424 + - uid: 6377 components: - type: Transform pos: 36.5,-7.5 parent: 2 - - uid: 6425 + - uid: 6378 components: - type: Transform pos: 35.5,-7.5 parent: 2 - - uid: 6426 + - uid: 6379 components: - type: Transform pos: 34.5,-7.5 parent: 2 - - uid: 6427 + - uid: 6380 components: - type: Transform pos: 33.5,-7.5 parent: 2 - - uid: 6428 + - uid: 6381 components: - type: Transform pos: 33.5,-6.5 parent: 2 - - uid: 6429 + - uid: 6382 components: - type: Transform pos: 33.5,-8.5 parent: 2 - - uid: 6430 + - uid: 6383 components: - type: Transform pos: 33.5,-9.5 parent: 2 - - uid: 6431 + - uid: 6384 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 6432 + - uid: 6385 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 6433 + - uid: 6386 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6434 + - uid: 6387 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6435 + - uid: 6388 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6436 + - uid: 6389 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6437 + - uid: 6390 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 6438 + - uid: 6391 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 6439 + - uid: 6392 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 6440 + - uid: 6393 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 6441 + - uid: 6394 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 6442 + - uid: 6395 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 6443 + - uid: 6396 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 6444 + - uid: 6397 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 6445 + - uid: 6398 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 6446 + - uid: 6399 components: - type: Transform pos: 2.5,-85.5 parent: 2 - - uid: 6447 + - uid: 6400 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 6448 + - uid: 6401 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 6449 + - uid: 6402 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 6450 + - uid: 6403 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 6451 + - uid: 6404 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 6452 + - uid: 6405 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 6453 + - uid: 6406 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 6454 + - uid: 6407 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 6455 + - uid: 6408 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 6456 + - uid: 6409 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 6457 + - uid: 6410 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 6458 + - uid: 6411 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 6459 + - uid: 6412 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 6460 + - uid: 6413 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 6461 + - uid: 6414 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 6462 + - uid: 6415 components: - type: Transform pos: 46.5,-11.5 parent: 2 - - uid: 6463 + - uid: 6416 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 6464 + - uid: 6417 components: - type: Transform pos: -10.5,-81.5 parent: 2 - - uid: 6465 + - uid: 6418 components: - type: Transform pos: -10.5,-80.5 parent: 2 - - uid: 6466 + - uid: 6419 components: - type: Transform pos: -10.5,-79.5 parent: 2 - - uid: 6467 + - uid: 6420 components: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 6468 + - uid: 6421 components: - type: Transform pos: -10.5,-77.5 parent: 2 - - uid: 6469 + - uid: 6422 components: - type: Transform pos: 52.5,-40.5 parent: 2 - - uid: 6470 + - uid: 6423 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 6471 + - uid: 6424 components: - type: Transform pos: 54.5,-40.5 parent: 2 - - uid: 6472 + - uid: 6425 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 6473 + - uid: 6426 components: - type: Transform pos: 16.5,-34.5 parent: 2 - - uid: 6474 + - uid: 6427 components: - type: Transform pos: 16.5,-38.5 parent: 2 - - uid: 6475 + - uid: 6428 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 6476 + - uid: 6429 components: - type: Transform pos: 28.5,-43.5 parent: 2 - - uid: 6477 + - uid: 6430 components: - type: Transform pos: 28.5,-49.5 parent: 2 - - uid: 6478 + - uid: 6431 components: - type: Transform pos: 10.5,-58.5 parent: 2 - - uid: 6479 + - uid: 6432 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 6480 + - uid: 6433 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 6481 + - uid: 6434 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 6482 + - uid: 6435 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 6483 + - uid: 6436 components: - type: Transform pos: 9.5,-55.5 parent: 2 - - uid: 6484 + - uid: 6437 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 6485 + - uid: 6438 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 6486 + - uid: 6439 components: - type: Transform pos: 6.5,-55.5 parent: 2 - - uid: 6487 + - uid: 6440 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 6488 + - uid: 6441 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 6489 + - uid: 6442 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 6490 + - uid: 6443 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 6491 + - uid: 6444 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 6492 + - uid: 6445 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 6493 + - uid: 6446 components: - type: Transform pos: 0.50000006,-57.5 parent: 2 - - uid: 6494 + - uid: 6447 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 6495 + - uid: 6448 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 6496 + - uid: 6449 components: - type: Transform pos: -0.49999997,-59.5 parent: 2 - - uid: 6497 + - uid: 6450 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - uid: 6498 + - uid: 6451 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 6499 + - uid: 6452 components: - type: Transform pos: -0.5,-63.5 parent: 2 - - uid: 6500 + - uid: 6453 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 6501 + - uid: 6454 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 6502 + - uid: 6455 components: - type: Transform pos: 8.5,-64.5 parent: 2 - - uid: 6503 + - uid: 6456 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 6504 + - uid: 6457 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 6505 + - uid: 6458 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 6506 + - uid: 6459 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 6507 + - uid: 6460 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 6508 + - uid: 6461 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 6509 + - uid: 6462 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 6510 + - uid: 6463 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 6511 + - uid: 6464 components: - type: Transform pos: -0.49999997,-47.5 parent: 2 - - uid: 6512 + - uid: 6465 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 6513 + - uid: 6466 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 6514 + - uid: 6467 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 6515 + - uid: 6468 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 6516 + - uid: 6469 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 6517 + - uid: 6470 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 6518 + - uid: 6471 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 6519 + - uid: 6472 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 6520 + - uid: 6473 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 6521 + - uid: 6474 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 6522 + - uid: 6475 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 6523 + - uid: 6476 components: - type: Transform pos: -0.49999997,-35.5 parent: 2 - - uid: 6524 + - uid: 6477 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 6525 + - uid: 6478 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 6526 + - uid: 6479 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 6527 + - uid: 6480 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 6528 + - uid: 6481 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 6529 + - uid: 6482 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 6530 + - uid: 6483 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 6531 + - uid: 6484 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 6532 + - uid: 6485 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 6533 + - uid: 6486 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 6534 + - uid: 6487 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 6535 + - uid: 6488 components: - type: Transform pos: -0.49999997,-23.5 parent: 2 - - uid: 6536 + - uid: 6489 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 6537 + - uid: 6490 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 6538 + - uid: 6491 components: - type: Transform pos: 0.50000006,-50.5 parent: 2 - - uid: 6539 + - uid: 6492 components: - type: Transform pos: 0.49999997,-43.5 parent: 2 - - uid: 6540 + - uid: 6493 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 6541 + - uid: 6494 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 6542 + - uid: 6495 components: - type: Transform pos: 0.49999997,-45.5 parent: 2 - - uid: 6543 + - uid: 6496 components: - type: Transform pos: 0.49999997,-38.5 parent: 2 - - uid: 6544 + - uid: 6497 components: - type: Transform pos: -1.5,-39.5 parent: 2 - - uid: 6545 + - uid: 6498 components: - type: Transform pos: 0.49999997,-34.5 parent: 2 - - uid: 6546 + - uid: 6499 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 6547 + - uid: 6500 components: - type: Transform pos: 0.50000006,-24.5 parent: 2 - - uid: 6548 + - uid: 6501 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 6549 + - uid: 6502 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 6550 + - uid: 6503 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 6551 + - uid: 6504 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 6552 + - uid: 6505 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 6553 + - uid: 6506 components: - type: Transform pos: 0.49999997,-19.5 parent: 2 - - uid: 6554 + - uid: 6507 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 6555 + - uid: 6508 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 6556 + - uid: 6509 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 6557 + - uid: 6510 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 6558 + - uid: 6511 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 6559 + - uid: 6512 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 6560 + - uid: 6513 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 6561 + - uid: 6514 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 6562 + - uid: 6515 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 6563 + - uid: 6516 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 6564 + - uid: 6517 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 6565 + - uid: 6518 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 6566 + - uid: 6519 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 6567 + - uid: 6520 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 6568 + - uid: 6521 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 6569 + - uid: 6522 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 6570 + - uid: 6523 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 6571 + - uid: 6524 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 6572 + - uid: 6525 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 6573 + - uid: 6526 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 6574 + - uid: 6527 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 6575 + - uid: 6528 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 6576 + - uid: 6529 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 6577 + - uid: 6530 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 6578 + - uid: 6531 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 6579 + - uid: 6532 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 6580 + - uid: 6533 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 6581 + - uid: 6534 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 6582 + - uid: 6535 components: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 6583 + - uid: 6536 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 6584 + - uid: 6537 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 6585 + - uid: 6538 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 6586 + - uid: 6539 components: - type: Transform pos: -38.5,-65.5 parent: 2 - - uid: 6587 + - uid: 6540 components: - type: Transform pos: -37.5,-65.5 parent: 2 - - uid: 6588 + - uid: 6541 components: - type: Transform pos: -36.5,-65.5 parent: 2 - - uid: 6589 + - uid: 6542 components: - type: Transform pos: -35.5,-65.5 parent: 2 - - uid: 6590 + - uid: 6543 components: - type: Transform pos: -34.5,-65.5 parent: 2 - - uid: 6591 + - uid: 6544 components: - type: Transform pos: -33.5,-65.5 parent: 2 - - uid: 6592 + - uid: 6545 components: - type: Transform pos: -32.5,-65.5 parent: 2 - - uid: 6593 + - uid: 6546 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 6594 + - uid: 6547 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 6595 + - uid: 6548 components: - type: Transform pos: -30.5,-65.5 parent: 2 - - uid: 6596 + - uid: 6549 components: - type: Transform pos: -29.5,-65.5 parent: 2 - - uid: 6597 + - uid: 6550 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 6598 + - uid: 6551 components: - type: Transform pos: -36.5,-63.5 parent: 2 - - uid: 6599 + - uid: 6552 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 6600 + - uid: 6553 components: - type: Transform pos: -36.5,-61.5 parent: 2 - - uid: 6601 + - uid: 6554 components: - type: Transform pos: -36.5,-60.5 parent: 2 - - uid: 6602 + - uid: 6555 components: - type: Transform pos: -28.5,-60.5 parent: 2 - - uid: 6603 + - uid: 6556 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 6604 + - uid: 6557 components: - type: Transform pos: -30.5,-60.5 parent: 2 - - uid: 6605 + - uid: 6558 components: - type: Transform pos: -31.5,-60.5 parent: 2 - - uid: 6606 + - uid: 6559 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 6607 + - uid: 6560 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 6608 + - uid: 6561 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 6609 + - uid: 6562 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 6610 + - uid: 6563 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 6611 + - uid: 6564 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 6612 + - uid: 6565 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 6613 + - uid: 6566 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 6614 + - uid: 6567 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 6615 + - uid: 6568 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 6616 + - uid: 6569 components: - type: Transform pos: -9.5,-19.5 parent: 2 - - uid: 6617 + - uid: 6570 components: - type: Transform pos: -10.5,-19.5 parent: 2 - - uid: 6618 + - uid: 6571 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 6619 + - uid: 6572 components: - type: Transform pos: -12.5,-19.5 parent: 2 - - uid: 6620 + - uid: 6573 components: - type: Transform pos: -13.5,-19.5 parent: 2 - - uid: 6621 + - uid: 6574 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 6622 + - uid: 6575 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 6623 + - uid: 6576 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 6624 + - uid: 6577 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 6625 + - uid: 6578 components: - type: Transform pos: -18.5,-19.5 parent: 2 - - uid: 6626 + - uid: 6579 components: - type: Transform pos: -18.5,-18.5 parent: 2 - - uid: 6627 + - uid: 6580 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 6628 + - uid: 6581 components: - type: Transform pos: -18.5,-16.5 parent: 2 - - uid: 6629 + - uid: 6582 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 6630 + - uid: 6583 components: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 6631 + - uid: 6584 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 6632 + - uid: 6585 components: - type: Transform pos: -18.5,-12.5 parent: 2 - - uid: 6633 + - uid: 6586 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 6634 + - uid: 6587 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 6635 + - uid: 6588 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 6636 + - uid: 6589 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 6637 + - uid: 6590 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 6638 + - uid: 6591 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 6639 + - uid: 6592 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 6640 + - uid: 6593 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 6641 + - uid: 6594 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 6642 + - uid: 6595 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 6643 + - uid: 6596 components: - type: Transform pos: -37.5,-66.5 parent: 2 - - uid: 6644 + - uid: 6597 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 6645 + - uid: 6598 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 6646 + - uid: 6599 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 6647 + - uid: 6600 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 6648 + - uid: 6601 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 6649 + - uid: 6602 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 6650 + - uid: 6603 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 6651 + - uid: 6604 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 6652 + - uid: 6605 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 6653 + - uid: 6606 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 6654 + - uid: 6607 components: - type: Transform pos: -37.5,-67.5 parent: 2 - - uid: 6655 + - uid: 6608 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 6656 + - uid: 6609 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 6657 + - uid: 6610 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 6658 + - uid: 6611 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 6659 + - uid: 6612 components: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 6660 + - uid: 6613 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 6661 + - uid: 6614 components: - type: Transform pos: -24.5,5.5 parent: 2 - - uid: 6662 + - uid: 6615 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 6663 + - uid: 6616 components: - type: Transform pos: -26.5,5.5 parent: 2 - - uid: 6664 + - uid: 6617 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 6665 + - uid: 6618 components: - type: Transform pos: -28.5,5.5 parent: 2 - - uid: 6666 + - uid: 6619 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 6667 + - uid: 6620 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 6668 + - uid: 6621 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 6669 + - uid: 6622 components: - type: Transform pos: -32.5,5.5 parent: 2 - - uid: 6670 + - uid: 6623 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 6671 + - uid: 6624 components: - type: Transform pos: -34.5,5.5 parent: 2 - - uid: 6672 + - uid: 6625 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 6673 + - uid: 6626 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 6674 + - uid: 6627 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 6675 + - uid: 6628 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 6676 + - uid: 6629 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 6677 + - uid: 6630 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 6678 + - uid: 6631 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 6679 + - uid: 6632 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 6680 + - uid: 6633 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 6681 + - uid: 6634 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 6682 + - uid: 6635 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 6683 + - uid: 6636 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 6684 + - uid: 6637 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 6685 + - uid: 6638 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 6686 + - uid: 6639 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 6687 + - uid: 6640 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 6688 + - uid: 6641 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 6689 + - uid: 6642 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 6690 + - uid: 6643 components: - type: Transform pos: -41.5,15.5 parent: 2 - - uid: 6691 + - uid: 6644 components: - type: Transform pos: -41.5,16.5 parent: 2 - - uid: 6692 + - uid: 6645 components: - type: Transform pos: -41.5,17.5 parent: 2 - - uid: 6693 + - uid: 6646 components: - type: Transform pos: -41.5,18.5 parent: 2 - - uid: 6694 + - uid: 6647 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 6695 + - uid: 6648 components: - type: Transform pos: -41.5,20.5 parent: 2 - - uid: 6696 + - uid: 6649 components: - type: Transform pos: -41.5,21.5 parent: 2 - - uid: 6697 + - uid: 6650 components: - type: Transform pos: -41.5,22.5 parent: 2 - - uid: 6698 + - uid: 6651 components: - type: Transform pos: -41.5,23.5 parent: 2 - - uid: 6699 + - uid: 6652 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 6700 + - uid: 6653 components: - type: Transform pos: -42.5,12.5 parent: 2 - - uid: 6701 + - uid: 6654 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 6702 + - uid: 6655 components: - type: Transform pos: -42.5,9.5 parent: 2 - - uid: 6703 + - uid: 6656 components: - type: Transform pos: -43.5,9.5 parent: 2 - - uid: 6704 + - uid: 6657 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 6705 + - uid: 6658 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 6706 + - uid: 6659 components: - type: Transform pos: -35.5,16.5 parent: 2 - - uid: 6707 + - uid: 6660 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 6708 + - uid: 6661 components: - type: Transform pos: -35.5,18.5 parent: 2 - - uid: 6709 + - uid: 6662 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 6710 + - uid: 6663 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 6711 + - uid: 6664 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 6712 + - uid: 6665 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 6713 + - uid: 6666 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 6714 + - uid: 6667 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 6715 + - uid: 6668 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 6716 + - uid: 6669 components: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 6717 + - uid: 6670 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 6718 + - uid: 6671 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 6719 + - uid: 6672 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 6720 + - uid: 6673 components: - type: Transform pos: -35.5,10.5 parent: 2 - - uid: 6721 + - uid: 6674 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 6722 + - uid: 6675 components: - type: Transform pos: -35.5,8.5 parent: 2 - - uid: 6723 + - uid: 6676 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 6724 + - uid: 6677 components: - type: Transform pos: -33.5,12.5 parent: 2 - - uid: 6725 + - uid: 6678 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 6726 + - uid: 6679 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 6727 + - uid: 6680 components: - type: Transform pos: -34.5,12.5 parent: 2 - - uid: 6728 + - uid: 6681 components: - type: Transform pos: -36.5,12.5 parent: 2 - - uid: 6729 + - uid: 6682 components: - type: Transform pos: -37.5,12.5 parent: 2 - - uid: 6730 + - uid: 6683 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 6731 + - uid: 6684 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 6748 + - uid: 6685 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 6749 + - uid: 6686 components: - type: Transform pos: -70.5,-22.5 parent: 2 - - uid: 6750 + - uid: 6687 components: - type: Transform pos: -70.5,-23.5 parent: 2 - - uid: 6751 + - uid: 6688 components: - type: Transform pos: -70.5,-24.5 parent: 2 - - uid: 6752 + - uid: 6689 components: - type: Transform pos: -70.5,-25.5 parent: 2 - - uid: 6753 + - uid: 6690 components: - type: Transform pos: -70.5,-26.5 parent: 2 - - uid: 6754 + - uid: 6691 components: - type: Transform pos: -70.5,-27.5 parent: 2 - - uid: 6755 + - uid: 6692 components: - type: Transform pos: -70.5,-28.5 parent: 2 - - uid: 6756 + - uid: 6693 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 6757 + - uid: 6694 components: - type: Transform pos: -67.5,-25.5 parent: 2 - - uid: 6758 + - uid: 6695 components: - type: Transform pos: -71.5,-25.5 parent: 2 - - uid: 6759 + - uid: 6696 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 6760 + - uid: 6697 components: - type: Transform pos: -68.5,-25.5 parent: 2 - - uid: 6761 + - uid: 6698 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 6762 + - uid: 6699 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 6763 + - uid: 6700 components: - type: Transform pos: -68.5,-30.5 parent: 2 - - uid: 6764 + - uid: 6701 components: - type: Transform pos: -69.5,-30.5 parent: 2 - - uid: 6765 + - uid: 6702 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 6766 + - uid: 6703 components: - type: Transform pos: -71.5,-30.5 parent: 2 - - uid: 6767 + - uid: 6704 components: - type: Transform pos: -72.5,-30.5 parent: 2 - - uid: 6768 + - uid: 6705 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 6769 + - uid: 6706 components: - type: Transform pos: -73.5,-29.5 parent: 2 - - uid: 6770 + - uid: 6707 components: - type: Transform pos: -74.5,-30.5 parent: 2 - - uid: 6771 + - uid: 6708 components: - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 6772 + - uid: 6709 components: - type: Transform pos: -76.5,-30.5 parent: 2 - - uid: 6773 + - uid: 6710 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 6774 + - uid: 6711 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 6775 + - uid: 6712 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 6776 + - uid: 6713 components: - type: Transform pos: -63.5,-30.5 parent: 2 - - uid: 6777 + - uid: 6714 components: - type: Transform pos: -62.5,-30.5 parent: 2 - - uid: 6778 + - uid: 6715 components: - type: Transform pos: -61.5,-30.5 parent: 2 - - uid: 6779 + - uid: 6716 components: - type: Transform pos: -60.5,-30.5 parent: 2 - - uid: 6780 + - uid: 6717 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 6781 + - uid: 6718 components: - type: Transform pos: -58.5,-30.5 parent: 2 - - uid: 6782 + - uid: 6719 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 6783 + - uid: 6720 components: - type: Transform pos: -56.5,-30.5 parent: 2 - - uid: 6784 + - uid: 6721 components: - type: Transform pos: -55.5,-30.5 parent: 2 - - uid: 6785 + - uid: 6722 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 6786 + - uid: 6723 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 6787 + - uid: 6724 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 6788 + - uid: 6725 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 6789 + - uid: 6726 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 6790 + - uid: 6727 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 6791 + - uid: 6728 components: - type: Transform pos: -54.5,-24.5 parent: 2 - - uid: 6792 + - uid: 6729 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 6793 + - uid: 6730 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 6794 + - uid: 6731 components: - type: Transform pos: -51.5,-20.5 parent: 2 - - uid: 6795 + - uid: 6732 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 6796 + - uid: 6733 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 6797 + - uid: 6734 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 6798 + - uid: 6735 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 6799 + - uid: 6736 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 6800 + - uid: 6737 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 6801 + - uid: 6738 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 6802 + - uid: 6739 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 6803 + - uid: 6740 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 6804 + - uid: 6741 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 6805 + - uid: 6742 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 6806 + - uid: 6743 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 6807 + - uid: 6744 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 6808 + - uid: 6745 components: - type: Transform pos: -61.5,-20.5 parent: 2 - - uid: 6809 + - uid: 6746 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 6810 + - uid: 6747 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 6811 + - uid: 6748 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 6812 + - uid: 6749 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 6813 + - uid: 6750 components: - type: Transform pos: -73.5,-22.5 parent: 2 - - uid: 6814 + - uid: 6751 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 6815 + - uid: 6752 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 6816 + - uid: 6753 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 6817 + - uid: 6754 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 6818 + - uid: 6755 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 6819 + - uid: 6756 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 6820 + - uid: 6757 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 6821 + - uid: 6758 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 6822 + - uid: 6759 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 6823 + - uid: 6760 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 6824 + - uid: 6761 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 6825 + - uid: 6762 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 6826 + - uid: 6763 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 6827 + - uid: 6764 components: - type: Transform pos: -75.5,-19.5 parent: 2 - - uid: 6828 + - uid: 6765 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 6829 + - uid: 6766 components: - type: Transform pos: -77.5,-19.5 parent: 2 - - uid: 6830 + - uid: 6767 components: - type: Transform pos: -77.5,-26.5 parent: 2 - - uid: 6831 + - uid: 6768 components: - type: Transform pos: -76.5,-26.5 parent: 2 - - uid: 6832 + - uid: 6769 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 6833 + - uid: 6770 components: - type: Transform pos: -74.5,-26.5 parent: 2 - - uid: 6834 + - uid: 6771 components: - type: Transform pos: -74.5,-25.5 parent: 2 - - uid: 6835 + - uid: 6772 components: - type: Transform pos: -74.5,-24.5 parent: 2 - - uid: 6836 + - uid: 6773 components: - type: Transform pos: -74.5,-23.5 parent: 2 - - uid: 6837 + - uid: 6774 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 6838 + - uid: 6775 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 6839 + - uid: 6776 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 6840 + - uid: 6777 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 6841 + - uid: 6778 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 6842 + - uid: 6779 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 6843 + - uid: 6780 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 6844 + - uid: 6781 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 6845 + - uid: 6782 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 6846 + - uid: 6783 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 6847 + - uid: 6784 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 6848 + - uid: 6785 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 6849 + - uid: 6786 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 6850 + - uid: 6787 components: - type: Transform pos: -58.5,-44.5 parent: 2 - - uid: 6851 + - uid: 6788 components: - type: Transform pos: -58.5,-45.5 parent: 2 - - uid: 6852 + - uid: 6789 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 6853 + - uid: 6790 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 6854 + - uid: 6791 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 6855 + - uid: 6792 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 6856 + - uid: 6793 components: - type: Transform pos: -61.5,-42.5 parent: 2 - - uid: 6857 + - uid: 6794 components: - type: Transform pos: -62.5,-42.5 parent: 2 - - uid: 6858 + - uid: 6795 components: - type: Transform pos: -63.5,-42.5 parent: 2 - - uid: 6859 + - uid: 6796 components: - type: Transform pos: -64.5,-42.5 parent: 2 - - uid: 6860 + - uid: 6797 components: - type: Transform pos: -65.5,-42.5 parent: 2 - - uid: 6861 + - uid: 6798 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 6862 + - uid: 6799 components: - type: Transform pos: -67.5,-42.5 parent: 2 - - uid: 6863 + - uid: 6800 components: - type: Transform pos: -67.5,-40.5 parent: 2 - - uid: 6864 + - uid: 6801 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 6865 + - uid: 6802 components: - type: Transform pos: -67.5,-39.5 parent: 2 - - uid: 6866 + - uid: 6803 components: - type: Transform pos: -61.5,-46.5 parent: 2 - - uid: 6867 + - uid: 6804 components: - type: Transform pos: -61.5,-47.5 parent: 2 - - uid: 6868 + - uid: 6805 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 6869 + - uid: 6806 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 6870 + - uid: 6807 components: - type: Transform pos: -62.5,-46.5 parent: 2 - - uid: 6871 + - uid: 6808 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 6872 + - uid: 6809 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 6873 + - uid: 6810 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 6874 + - uid: 6811 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 6875 + - uid: 6812 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 6876 + - uid: 6813 components: - type: Transform pos: -46.5,-47.5 parent: 2 - - uid: 6877 + - uid: 6814 components: - type: Transform pos: -47.5,-47.5 parent: 2 - - uid: 6878 + - uid: 6815 components: - type: Transform pos: -48.5,-47.5 parent: 2 - - uid: 6879 + - uid: 6816 components: - type: Transform pos: -49.5,-47.5 parent: 2 - - uid: 6880 + - uid: 6817 components: - type: Transform pos: -50.5,-47.5 parent: 2 - - uid: 6881 + - uid: 6818 components: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 6882 + - uid: 6819 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 6883 + - uid: 6820 components: - type: Transform pos: -51.5,-45.5 parent: 2 - - uid: 6884 + - uid: 6821 components: - type: Transform pos: -51.5,-44.5 parent: 2 - - uid: 6885 + - uid: 6822 components: - type: Transform pos: -51.5,-43.5 parent: 2 - - uid: 6886 + - uid: 6823 components: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 6887 + - uid: 6824 components: - type: Transform pos: -52.5,-44.5 parent: 2 - - uid: 6888 + - uid: 6825 components: - type: Transform pos: -53.5,-44.5 parent: 2 - - uid: 6889 + - uid: 6826 components: - type: Transform pos: -54.5,-44.5 parent: 2 - - uid: 6890 + - uid: 6827 components: - type: Transform pos: -50.5,-44.5 parent: 2 - - uid: 6891 + - uid: 6828 components: - type: Transform pos: -49.5,-44.5 parent: 2 - - uid: 6892 + - uid: 6829 components: - type: Transform pos: -48.5,-44.5 parent: 2 - - uid: 6893 + - uid: 6830 components: - type: Transform pos: -48.5,-44.5 parent: 2 - - uid: 6894 + - uid: 6831 components: - type: Transform pos: -45.5,-44.5 parent: 2 - - uid: 6895 + - uid: 6832 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 6896 + - uid: 6833 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 6897 + - uid: 6834 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 6898 + - uid: 6835 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 6899 + - uid: 6836 components: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 6900 + - uid: 6837 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 6901 + - uid: 6838 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 6902 + - uid: 6839 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 6903 + - uid: 6840 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 6904 + - uid: 6841 components: - type: Transform pos: -42.5,-45.5 parent: 2 - - uid: 6905 + - uid: 6842 components: - type: Transform pos: -42.5,-44.5 parent: 2 - - uid: 6906 + - uid: 6843 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 6907 + - uid: 6844 components: - type: Transform pos: -42.5,-42.5 parent: 2 - - uid: 6908 + - uid: 6845 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 6909 + - uid: 6846 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 6910 + - uid: 6847 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 6911 + - uid: 6848 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 6912 + - uid: 6849 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 6913 + - uid: 6850 components: - type: Transform pos: -49.5,-39.5 parent: 2 - - uid: 6914 + - uid: 6851 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 6915 + - uid: 6852 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 6916 + - uid: 6853 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 6917 + - uid: 6854 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 6918 + - uid: 6855 components: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 6919 + - uid: 6856 components: - type: Transform pos: -37.5,-48.5 parent: 2 - - uid: 6920 + - uid: 6857 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 6921 + - uid: 6858 components: - type: Transform pos: -35.5,-48.5 parent: 2 - - uid: 6922 + - uid: 6859 components: - type: Transform pos: -34.5,-48.5 parent: 2 - - uid: 6923 + - uid: 6860 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 6924 + - uid: 6861 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 6925 + - uid: 6862 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 6926 + - uid: 6863 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 6927 + - uid: 6864 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 6928 + - uid: 6865 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 6929 + - uid: 6866 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 6930 + - uid: 6867 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 6931 + - uid: 6868 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 6932 + - uid: 6869 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 6933 + - uid: 6870 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 6934 + - uid: 6871 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 6935 + - uid: 6872 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 6936 + - uid: 6873 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 6937 + - uid: 6874 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 6938 + - uid: 6875 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 6939 + - uid: 6876 components: - type: Transform pos: -53.5,-33.5 parent: 2 - - uid: 6940 + - uid: 6877 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 6941 + - uid: 6878 components: - type: Transform pos: -51.5,-33.5 parent: 2 - - uid: 6942 + - uid: 6879 components: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 6943 + - uid: 6880 components: - type: Transform pos: -49.5,-33.5 parent: 2 - - uid: 6944 + - uid: 6881 components: - type: Transform pos: -48.5,-33.5 parent: 2 - - uid: 6945 + - uid: 6882 components: - type: Transform pos: -47.5,-33.5 parent: 2 - - uid: 6946 + - uid: 6883 components: - type: Transform pos: -46.5,-33.5 parent: 2 - - uid: 6947 + - uid: 6884 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 6948 + - uid: 6885 components: - type: Transform pos: -44.5,-33.5 parent: 2 - - uid: 6949 + - uid: 6886 components: - type: Transform pos: -53.5,-36.5 parent: 2 - - uid: 6950 + - uid: 6887 components: - type: Transform pos: -52.5,-36.5 parent: 2 - - uid: 6951 + - uid: 6888 components: - type: Transform pos: -51.5,-36.5 parent: 2 - - uid: 6952 + - uid: 6889 components: - type: Transform pos: -50.5,-36.5 parent: 2 - - uid: 6953 + - uid: 6890 components: - type: Transform pos: -49.5,-36.5 parent: 2 - - uid: 6954 + - uid: 6891 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 6955 + - uid: 6892 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 6956 + - uid: 6893 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 6957 + - uid: 6894 components: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 6958 + - uid: 6895 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 6959 + - uid: 6896 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 6960 + - uid: 6897 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 6961 + - uid: 6898 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 6962 + - uid: 6899 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 6963 + - uid: 6900 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 6964 + - uid: 6901 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 6965 + - uid: 6902 components: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 6966 + - uid: 6903 components: - type: Transform pos: -34.5,-27.5 parent: 2 - - uid: 6967 + - uid: 6904 components: - type: Transform pos: -35.5,-27.5 parent: 2 - - uid: 6968 + - uid: 6905 components: - type: Transform pos: -36.5,-27.5 parent: 2 - - uid: 6969 + - uid: 6906 components: - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 6970 + - uid: 6907 components: - type: Transform pos: -38.5,-27.5 parent: 2 - - uid: 6971 + - uid: 6908 components: - type: Transform pos: -41.5,-27.5 parent: 2 - - uid: 6972 + - uid: 6909 components: - type: Transform pos: -42.5,-27.5 parent: 2 - - uid: 6973 + - uid: 6910 components: - type: Transform pos: -43.5,-27.5 parent: 2 - - uid: 6974 + - uid: 6911 components: - type: Transform pos: -45.5,-27.5 parent: 2 - - uid: 6975 + - uid: 6912 components: - type: Transform pos: -46.5,-27.5 parent: 2 - - uid: 6976 + - uid: 6913 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 6977 + - uid: 6914 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 6978 + - uid: 6915 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 6979 + - uid: 6916 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 6980 + - uid: 6917 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 6981 + - uid: 6918 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 6982 + - uid: 6919 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 6983 + - uid: 6920 components: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 6984 + - uid: 6921 components: - type: Transform pos: 7.5,-74.5 parent: 2 - - uid: 6985 + - uid: 6922 components: - type: Transform pos: 8.5,-74.5 parent: 2 - - uid: 6986 + - uid: 6923 components: - type: Transform pos: 9.5,-74.5 parent: 2 - - uid: 6987 + - uid: 6924 components: - type: Transform pos: 7.5,-76.5 parent: 2 - - uid: 6988 + - uid: 6925 components: - type: Transform pos: 8.5,-76.5 parent: 2 - - uid: 6989 + - uid: 6926 components: - type: Transform pos: 9.5,-76.5 parent: 2 - - uid: 6990 + - uid: 6927 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 6991 + - uid: 6928 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 6992 + - uid: 6929 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 6993 + - uid: 6930 components: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 6994 + - uid: 6931 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 6995 + - uid: 6932 components: - type: Transform pos: 30.5,9.5 parent: 2 - - uid: 6996 + - uid: 6933 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 6997 + - uid: 6934 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 6998 + - uid: 6935 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 6999 + - uid: 6936 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 7000 + - uid: 6937 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 7001 + - uid: 6938 components: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 7002 + - uid: 6939 components: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 7003 + - uid: 6940 components: - type: Transform pos: 28.5,11.5 parent: 2 - - uid: 7004 + - uid: 6941 components: - type: Transform pos: 22.5,6.5 parent: 2 - - uid: 7005 + - uid: 6942 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 7006 + - uid: 6943 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 7007 + - uid: 6944 components: - type: Transform pos: 22.5,10.5 parent: 2 - - uid: 7008 + - uid: 6945 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 7009 + - uid: 6946 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 7010 + - uid: 6947 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 7011 + - uid: 6948 components: - type: Transform pos: 31.5,11.5 parent: 2 - - uid: 7012 + - uid: 6949 components: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 7013 + - uid: 6950 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 7014 + - uid: 6951 components: - type: Transform pos: -51.5,-25.5 parent: 2 - - uid: 7015 + - uid: 6952 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 7016 + - uid: 6953 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 7017 + - uid: 6954 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 7018 + - uid: 6955 components: - type: Transform pos: -45.5,-74.5 parent: 2 - - uid: 7019 + - uid: 6956 components: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 7020 + - uid: 6957 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 7021 + - uid: 6958 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 7022 + - uid: 6959 components: - type: Transform pos: 2.5,-43.5 parent: 2 - - uid: 7023 + - uid: 6960 components: - type: Transform pos: 3.5,-43.5 parent: 2 - - uid: 7024 + - uid: 6961 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 7025 + - uid: 6962 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 7026 + - uid: 6963 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 7027 + - uid: 6964 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 7028 + - uid: 6965 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 7029 + - uid: 6966 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 7030 + - uid: 6967 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 7031 + - uid: 6968 components: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 7032 + - uid: 6969 components: - type: Transform pos: -22.5,-11.5 parent: 2 - - uid: 7033 + - uid: 6970 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 7034 + - uid: 6971 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 7035 + - uid: 6972 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 7036 + - uid: 6973 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 7037 + - uid: 6974 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 7038 + - uid: 6975 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 7039 + - uid: 6976 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 7040 + - uid: 6977 components: - type: Transform pos: -24.5,-5.5 parent: 2 - - uid: 7041 + - uid: 6978 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 7042 + - uid: 6979 components: - type: Transform pos: -22.5,-5.5 parent: 2 - - uid: 7043 + - uid: 6980 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 7044 + - uid: 6981 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 7045 + - uid: 6982 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7046 + - uid: 6983 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 7047 + - uid: 6984 components: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 7048 + - uid: 6985 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 7049 + - uid: 6986 components: - type: Transform pos: -32.5,-46.5 parent: 2 - - uid: 7050 + - uid: 6987 components: - type: Transform pos: -32.5,-45.5 parent: 2 - - uid: 7051 + - uid: 6988 components: - type: Transform pos: -32.5,-44.5 parent: 2 - - uid: 7052 + - uid: 6989 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 7053 + - uid: 6990 components: - type: Transform pos: -32.5,-42.5 parent: 2 - - uid: 7054 + - uid: 6991 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 7055 + - uid: 6992 components: - type: Transform pos: -32.5,-40.5 parent: 2 - - uid: 7056 + - uid: 6993 components: - type: Transform pos: -32.5,-39.5 parent: 2 - - uid: 7057 + - uid: 6994 components: - type: Transform pos: -32.5,-38.5 parent: 2 - - uid: 7058 + - uid: 6995 components: - type: Transform pos: -32.5,-37.5 parent: 2 - - uid: 7059 + - uid: 6996 components: - type: Transform pos: -32.5,-36.5 parent: 2 - - uid: 7060 + - uid: 6997 components: - type: Transform pos: -33.5,-36.5 parent: 2 - - uid: 7061 + - uid: 6998 components: - type: Transform pos: -34.5,-36.5 parent: 2 - - uid: 7062 + - uid: 6999 components: - type: Transform pos: -35.5,-36.5 parent: 2 - - uid: 7063 + - uid: 7000 components: - type: Transform pos: -36.5,-36.5 parent: 2 - - uid: 7064 + - uid: 7001 components: - type: Transform pos: -37.5,-36.5 parent: 2 - - uid: 7065 + - uid: 7002 components: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 7066 + - uid: 7003 components: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 7067 + - uid: 7004 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 7068 + - uid: 7005 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 7069 + - uid: 7006 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 7070 + - uid: 7007 components: - type: Transform pos: -42.5,-36.5 parent: 2 - - uid: 7071 + - uid: 7008 components: - type: Transform pos: -43.5,-36.5 parent: 2 - - uid: 7072 + - uid: 7009 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 7073 + - uid: 7010 components: - type: Transform pos: -34.5,-44.5 parent: 2 - - uid: 7074 + - uid: 7011 components: - type: Transform pos: -33.5,-44.5 parent: 2 - - uid: 7075 + - uid: 7012 components: - type: Transform pos: -34.5,-39.5 parent: 2 - - uid: 7076 + - uid: 7013 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 7077 + - uid: 7014 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 7078 + - uid: 7015 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 7079 + - uid: 7016 components: - type: Transform pos: 81.5,-1.5 parent: 2 - - uid: 7080 + - uid: 7017 components: - type: Transform pos: 84.5,-4.5 parent: 2 - - uid: 7081 + - uid: 7018 components: - type: Transform pos: 80.5,-1.5 parent: 2 - - uid: 7082 + - uid: 7019 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 7083 + - uid: 7020 components: - type: Transform pos: 84.5,-1.5 parent: 2 - - uid: 7084 + - uid: 7021 components: - type: Transform pos: 82.5,-1.5 parent: 2 - - uid: 7085 + - uid: 7022 components: - type: Transform pos: 80.5,-3.5 parent: 2 - - uid: 7086 + - uid: 7023 components: - type: Transform pos: 84.5,-2.5 parent: 2 - - uid: 7087 + - uid: 7024 components: - type: Transform pos: 84.5,-3.5 parent: 2 - - uid: 7088 + - uid: 7025 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 7089 + - uid: 7026 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 7090 + - uid: 7027 components: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 7091 + - uid: 7028 components: - type: Transform pos: -28.5,1.5 parent: 2 - - uid: 7092 + - uid: 7029 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 7093 + - uid: 7030 components: - type: Transform pos: -26.5,1.5 parent: 2 - - uid: 7094 + - uid: 7031 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 7095 + - uid: 7032 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 7096 + - uid: 7033 components: - type: Transform pos: -45.5,55.5 parent: 2 - - uid: 7097 + - uid: 7034 components: - type: Transform pos: -45.5,56.5 parent: 2 - - uid: 7098 + - uid: 7035 components: - type: Transform pos: -45.5,57.5 parent: 2 - - uid: 7099 + - uid: 7036 components: - type: Transform pos: 80.5,-4.5 parent: 2 - - uid: 7100 + - uid: 7037 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 7101 + - uid: 7038 components: - type: Transform pos: 80.5,2.5 parent: 2 - - uid: 7102 + - uid: 7039 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 7103 + - uid: 7040 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 7104 + - uid: 7041 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 7105 + - uid: 7042 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 7106 + - uid: 7043 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 7107 + - uid: 7044 components: - type: Transform pos: 76.5,1.5 parent: 2 - - uid: 7108 + - uid: 7045 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 7109 + - uid: 7046 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 7110 + - uid: 7047 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 7111 + - uid: 7048 components: - type: Transform pos: 84.5,1.5 parent: 2 - - uid: 7112 + - uid: 7049 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 7113 + - uid: 7050 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 7114 + - uid: 7051 components: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 7115 + - uid: 7052 components: - type: Transform pos: 88.5,1.5 parent: 2 - - uid: 7116 + - uid: 7053 components: - type: Transform pos: 89.5,1.5 parent: 2 - - uid: 7117 + - uid: 7054 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 7118 + - uid: 7055 components: - type: Transform pos: 85.5,7.5 parent: 2 - - uid: 7119 + - uid: 7056 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 7120 + - uid: 7057 components: - type: Transform pos: 85.5,5.5 parent: 2 - - uid: 7121 + - uid: 7058 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 7122 + - uid: 7059 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 7123 + - uid: 7060 components: - type: Transform pos: 86.5,4.5 parent: 2 - - uid: 7124 + - uid: 7061 components: - type: Transform pos: 87.5,4.5 parent: 2 - - uid: 7125 + - uid: 7062 components: - type: Transform pos: 88.5,4.5 parent: 2 - - uid: 7126 + - uid: 7063 components: - type: Transform pos: 89.5,4.5 parent: 2 - - uid: 7127 + - uid: 7064 components: - type: Transform pos: 84.5,4.5 parent: 2 - - uid: 7128 + - uid: 7065 components: - type: Transform pos: 83.5,4.5 parent: 2 - - uid: 7129 + - uid: 7066 components: - type: Transform pos: 82.5,4.5 parent: 2 - - uid: 7130 + - uid: 7067 components: - type: Transform pos: 81.5,4.5 parent: 2 - - uid: 7131 + - uid: 7068 components: - type: Transform pos: 84.5,7.5 parent: 2 - - uid: 7132 + - uid: 7069 components: - type: Transform pos: 83.5,7.5 parent: 2 - - uid: 7133 + - uid: 7070 components: - type: Transform pos: 82.5,7.5 parent: 2 - - uid: 7134 + - uid: 7071 components: - type: Transform pos: 81.5,7.5 parent: 2 - - uid: 7135 + - uid: 7072 components: - type: Transform pos: 86.5,7.5 parent: 2 - - uid: 7136 + - uid: 7073 components: - type: Transform pos: 87.5,7.5 parent: 2 - - uid: 7137 + - uid: 7074 components: - type: Transform pos: 88.5,7.5 parent: 2 - - uid: 7138 + - uid: 7075 components: - type: Transform pos: 89.5,7.5 parent: 2 - - uid: 7139 + - uid: 7076 components: - type: Transform pos: 79.5,4.5 parent: 2 - - uid: 7140 + - uid: 7077 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 7141 + - uid: 7078 components: - type: Transform pos: 97.5,14.5 parent: 2 - - uid: 7142 + - uid: 7079 components: - type: Transform pos: 97.5,13.5 parent: 2 - - uid: 7143 + - uid: 7080 components: - type: Transform pos: 97.5,12.5 parent: 2 - - uid: 7144 + - uid: 7081 components: - type: Transform pos: 96.5,13.5 parent: 2 - - uid: 7145 + - uid: 7082 components: - type: Transform pos: 95.5,13.5 parent: 2 - - uid: 7146 + - uid: 7083 components: - type: Transform pos: 93.5,13.5 parent: 2 - - uid: 7147 + - uid: 7084 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 7148 + - uid: 7085 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 7149 + - uid: 7086 components: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 7150 + - uid: 7087 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 7151 + - uid: 7088 components: - type: Transform pos: -65.5,-35.5 parent: 2 - - uid: 7152 + - uid: 7089 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 7153 + - uid: 7090 components: - type: Transform pos: -65.5,-36.5 parent: 2 - - uid: 7154 + - uid: 7091 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 7155 + - uid: 7092 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 7156 + - uid: 7093 components: - type: Transform pos: 5.5,77.5 parent: 2 - - uid: 7157 + - uid: 7094 components: - type: Transform pos: 5.5,84.5 parent: 2 - - uid: 7158 + - uid: 7095 components: - type: Transform pos: 4.5,84.5 parent: 2 - - uid: 7159 + - uid: 7096 components: - type: Transform pos: 3.5,84.5 parent: 2 - - uid: 7160 + - uid: 7097 components: - type: Transform pos: 4.5,77.5 parent: 2 - - uid: 7161 + - uid: 7098 components: - type: Transform pos: 3.5,77.5 parent: 2 - - uid: 7162 + - uid: 7099 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 7163 + - uid: 7100 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 7164 + - uid: 7101 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 7165 + - uid: 7102 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 7166 + - uid: 7103 components: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 7167 + - uid: 7104 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 7168 + - uid: 7105 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 7169 + - uid: 7106 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 7170 + - uid: 7107 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 7171 + - uid: 7108 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 7172 + - uid: 7109 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 7173 + - uid: 7110 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 7174 + - uid: 7111 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 7175 + - uid: 7112 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 7176 + - uid: 7113 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 7177 + - uid: 7114 components: - type: Transform pos: 11.5,-8.5 parent: 2 - - uid: 7178 + - uid: 7115 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 7179 + - uid: 7116 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 7180 + - uid: 7117 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 7181 + - uid: 7118 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 7182 + - uid: 7119 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 7183 + - uid: 7120 components: - type: Transform pos: -11.5,-8.5 parent: 2 - - uid: 7184 + - uid: 7121 components: - type: Transform pos: 12.5,-8.5 parent: 2 - - uid: 7185 + - uid: 7122 components: - type: Transform pos: -13.5,-8.5 parent: 2 - - uid: 7186 + - uid: 7123 components: - type: Transform pos: -10.5,-8.5 parent: 2 - - uid: 7187 + - uid: 7124 components: - type: Transform pos: -14.5,-8.5 parent: 2 - - uid: 7188 + - uid: 7125 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 7189 + - uid: 7126 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 7190 + - uid: 7127 components: - type: Transform pos: -12.5,-8.5 parent: 2 - - uid: 7191 + - uid: 7128 components: - type: Transform pos: 14.5,-8.5 parent: 2 - - uid: 7192 + - uid: 7129 components: - type: Transform pos: -85.5,14.5 parent: 2 - - uid: 7193 + - uid: 7130 components: - type: Transform pos: -110.5,23.5 parent: 2 - - uid: 7194 + - uid: 7131 components: - type: Transform pos: -109.5,23.5 parent: 2 - - uid: 7195 + - uid: 7132 components: - type: Transform pos: -108.5,23.5 parent: 2 - - uid: 7196 + - uid: 7133 components: - type: Transform pos: -107.5,23.5 parent: 2 - - uid: 7197 + - uid: 7134 components: - type: Transform pos: -106.5,23.5 parent: 2 - - uid: 7198 + - uid: 7135 components: - type: Transform pos: -84.5,14.5 parent: 2 - - uid: 7199 + - uid: 7136 components: - type: Transform pos: -83.5,14.5 parent: 2 - - uid: 7200 + - uid: 7137 components: - type: Transform pos: -82.5,14.5 parent: 2 - - uid: 7201 + - uid: 7138 components: - type: Transform pos: 54.5,32.5 parent: 2 - - uid: 7202 + - uid: 7139 components: - type: Transform pos: 54.5,31.5 parent: 2 - - uid: 7203 + - uid: 7140 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 7204 + - uid: 7141 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 7205 + - uid: 7142 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 7206 + - uid: 7143 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 7207 + - uid: 7144 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 7208 + - uid: 7145 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 7209 + - uid: 7146 components: - type: Transform pos: -66.5,46.5 parent: 2 - - uid: 7210 + - uid: 7147 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 7211 + - uid: 7148 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 7212 + - uid: 7149 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 7213 + - uid: 7150 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 7214 + - uid: 7151 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 7215 + - uid: 7152 components: - type: Transform pos: -18.5,-38.5 parent: 2 - - uid: 7216 + - uid: 7153 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 7217 + - uid: 7154 components: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 7218 + - uid: 7155 components: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 7219 + - uid: 7156 components: - type: Transform pos: -18.5,-42.5 parent: 2 - - uid: 7220 + - uid: 7157 components: - type: Transform pos: -18.5,-43.5 parent: 2 - - uid: 7221 + - uid: 7158 components: - type: Transform pos: -18.5,-44.5 parent: 2 - - uid: 7222 + - uid: 7159 components: - type: Transform pos: -18.5,-45.5 parent: 2 - - uid: 7223 + - uid: 7160 components: - type: Transform pos: -18.5,-46.5 parent: 2 - - uid: 7224 + - uid: 7161 components: - type: Transform pos: -18.5,-47.5 parent: 2 - - uid: 7225 + - uid: 7162 components: - type: Transform pos: -17.5,-46.5 parent: 2 - - uid: 7226 + - uid: 7163 components: - type: Transform pos: -20.5,-46.5 parent: 2 - - uid: 7227 + - uid: 7164 components: - type: Transform pos: -16.5,-46.5 parent: 2 - - uid: 7228 + - uid: 7165 components: - type: Transform pos: -19.5,-46.5 parent: 2 - - uid: 7229 + - uid: 7166 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 7230 + - uid: 7167 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 7231 + - uid: 7168 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 7232 + - uid: 7169 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 7233 + - uid: 7170 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 7234 + - uid: 7171 components: - type: Transform pos: -19.5,-51.5 parent: 2 - - uid: 7235 + - uid: 7172 components: - type: Transform pos: -19.5,-52.5 parent: 2 - - uid: 7236 + - uid: 7173 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 7237 + - uid: 7174 components: - type: Transform pos: -16.5,-39.5 parent: 2 - - uid: 7238 + - uid: 7175 components: - type: Transform pos: -18.5,-37.5 parent: 2 - - uid: 7239 + - uid: 7176 components: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 7240 + - uid: 7177 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 7241 + - uid: 7178 components: - type: Transform pos: -18.5,-30.5 parent: 2 - - uid: 7242 + - uid: 7179 components: - type: Transform pos: -18.5,-29.5 parent: 2 - - uid: 7243 + - uid: 7180 components: - type: Transform pos: -66.5,45.5 parent: 2 - - uid: 7244 + - uid: 7181 components: - type: Transform pos: -66.5,44.5 parent: 2 - - uid: 7245 + - uid: 7182 components: - type: Transform pos: -66.5,48.5 parent: 2 - - uid: 7246 + - uid: 7183 components: - type: Transform pos: -66.5,49.5 parent: 2 - - uid: 7247 + - uid: 7184 components: - type: Transform pos: -66.5,50.5 parent: 2 - - uid: 7248 + - uid: 7185 components: - type: Transform pos: -66.5,42.5 parent: 2 - - uid: 7249 + - uid: 7186 components: - type: Transform pos: -66.5,41.5 parent: 2 - - uid: 7250 + - uid: 7187 components: - type: Transform pos: -66.5,40.5 parent: 2 - - uid: 7251 + - uid: 7188 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 7252 + - uid: 7189 components: - type: Transform pos: -68.5,41.5 parent: 2 - - uid: 7253 + - uid: 7190 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 7254 + - uid: 7191 components: - type: Transform pos: -70.5,41.5 parent: 2 - - uid: 7255 + - uid: 7192 components: - type: Transform pos: -71.5,41.5 parent: 2 - - uid: 7256 + - uid: 7193 components: - type: Transform pos: -72.5,41.5 parent: 2 - - uid: 7257 + - uid: 7194 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 7258 + - uid: 7195 components: - type: Transform pos: -68.5,45.5 parent: 2 - - uid: 7259 + - uid: 7196 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 7260 + - uid: 7197 components: - type: Transform pos: -70.5,45.5 parent: 2 - - uid: 7261 + - uid: 7198 components: - type: Transform pos: -71.5,45.5 parent: 2 - - uid: 7262 + - uid: 7199 components: - type: Transform pos: -72.5,45.5 parent: 2 - - uid: 7263 + - uid: 7200 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 7264 + - uid: 7201 components: - type: Transform pos: -68.5,49.5 parent: 2 - - uid: 7265 + - uid: 7202 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 7266 + - uid: 7203 components: - type: Transform pos: -70.5,49.5 parent: 2 - - uid: 7267 + - uid: 7204 components: - type: Transform pos: -71.5,49.5 parent: 2 - - uid: 7268 + - uid: 7205 components: - type: Transform pos: -72.5,49.5 parent: 2 - - uid: 7269 + - uid: 7206 components: - type: Transform pos: -62.5,38.5 parent: 2 - - uid: 7270 + - uid: 7207 components: - type: Transform pos: -63.5,38.5 parent: 2 - - uid: 7271 + - uid: 7208 components: - type: Transform pos: -64.5,38.5 parent: 2 - - uid: 7272 + - uid: 7209 components: - type: Transform pos: -65.5,38.5 parent: 2 - - uid: 7273 + - uid: 7210 components: - type: Transform pos: -66.5,38.5 parent: 2 - - uid: 7274 + - uid: 7211 components: - type: Transform pos: -66.5,37.5 parent: 2 - - uid: 7275 + - uid: 7212 components: - type: Transform pos: -66.5,36.5 parent: 2 - - uid: 7276 + - uid: 7213 components: - type: Transform pos: -66.5,35.5 parent: 2 - - uid: 7277 + - uid: 7214 components: - type: Transform pos: -66.5,34.5 parent: 2 - - uid: 7278 + - uid: 7215 components: - type: Transform pos: -66.5,33.5 parent: 2 - - uid: 7279 + - uid: 7216 components: - type: Transform pos: -66.5,32.5 parent: 2 - - uid: 7280 + - uid: 7217 components: - type: Transform pos: -66.5,31.5 parent: 2 - - uid: 7281 + - uid: 7218 components: - type: Transform pos: -66.5,30.5 parent: 2 - - uid: 7282 + - uid: 7219 components: - type: Transform pos: -66.5,29.5 parent: 2 - - uid: 7283 + - uid: 7220 components: - type: Transform pos: -66.5,28.5 parent: 2 - - uid: 7284 + - uid: 7221 components: - type: Transform pos: -66.5,27.5 parent: 2 - - uid: 7285 + - uid: 7222 components: - type: Transform pos: -66.5,26.5 parent: 2 - - uid: 7286 + - uid: 7223 components: - type: Transform pos: -66.5,25.5 parent: 2 - - uid: 7287 + - uid: 7224 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 7288 + - uid: 7225 components: - type: Transform pos: -68.5,29.5 parent: 2 - - uid: 7289 + - uid: 7226 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 7290 + - uid: 7227 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 7291 + - uid: 7228 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 7292 + - uid: 7229 components: - type: Transform pos: -72.5,29.5 parent: 2 - - uid: 7293 + - uid: 7230 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 7294 + - uid: 7231 components: - type: Transform pos: -68.5,33.5 parent: 2 - - uid: 7295 + - uid: 7232 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 7296 + - uid: 7233 components: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 7297 + - uid: 7234 components: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 7298 + - uid: 7235 components: - type: Transform pos: -72.5,33.5 parent: 2 - - uid: 7299 + - uid: 7236 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 7300 + - uid: 7237 components: - type: Transform pos: -68.5,37.5 parent: 2 - - uid: 7301 + - uid: 7238 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 7302 + - uid: 7239 components: - type: Transform pos: -70.5,37.5 parent: 2 - - uid: 7303 + - uid: 7240 components: - type: Transform pos: -71.5,37.5 parent: 2 - - uid: 7304 + - uid: 7241 components: - type: Transform pos: -72.5,37.5 parent: 2 - - uid: 7305 + - uid: 7242 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 7306 + - uid: 7243 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 7307 + - uid: 7244 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 7308 + - uid: 7245 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 7309 + - uid: 7246 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 7310 + - uid: 7247 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 7311 + - uid: 7248 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7312 + - uid: 7249 components: - type: Transform pos: -23.5,-46.5 parent: 2 - - uid: 7313 + - uid: 7250 components: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 7314 + - uid: 7251 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 7315 + - uid: 7252 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 7316 + - uid: 7253 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 7317 + - uid: 7254 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 7318 + - uid: 7255 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 7319 + - uid: 7256 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 7320 + - uid: 7257 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 7321 + - uid: 7258 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 7322 + - uid: 7259 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 7323 + - uid: 7260 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 7324 + - uid: 7261 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - uid: 7325 + - uid: 7262 components: - type: Transform pos: -25.5,-39.5 parent: 2 - - uid: 7326 + - uid: 7263 components: - type: Transform pos: -24.5,-39.5 parent: 2 - - uid: 7327 + - uid: 7264 components: - type: Transform pos: -22.5,-39.5 parent: 2 - - uid: 7328 + - uid: 7265 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 7329 + - uid: 7266 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 7330 + - uid: 7267 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 7331 + - uid: 7268 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 7332 + - uid: 7269 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 7333 + - uid: 7270 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 7334 + - uid: 7271 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 7335 + - uid: 7272 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 7336 + - uid: 7273 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7337 + - uid: 7274 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 7338 + - uid: 7275 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 7339 + - uid: 7276 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 7340 + - uid: 7277 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 7341 + - uid: 7278 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 7342 + - uid: 7279 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 7343 + - uid: 7280 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 7344 + - uid: 7281 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7345 + - uid: 7282 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 7346 + - uid: 7283 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 7347 + - uid: 7284 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 7348 + - uid: 7285 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 7349 + - uid: 7286 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 7350 + - uid: 7287 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 7351 + - uid: 7288 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 7352 + - uid: 7289 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 7353 + - uid: 7290 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 7354 + - uid: 7291 components: - type: Transform pos: 23.5,30.5 parent: 2 - - uid: 7355 + - uid: 7292 components: - type: Transform pos: 23.5,29.5 parent: 2 - - uid: 7356 + - uid: 7293 components: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 7357 + - uid: 7294 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 7358 + - uid: 7295 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 7359 + - uid: 7296 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 7360 + - uid: 7297 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 7361 + - uid: 7298 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 7362 + - uid: 7299 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 7363 + - uid: 7300 components: - type: Transform pos: 26.5,31.5 parent: 2 - - uid: 7364 + - uid: 7301 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 7365 + - uid: 7302 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 7366 + - uid: 7303 components: - type: Transform pos: 21.5,31.5 parent: 2 - - uid: 7367 + - uid: 7304 components: - type: Transform pos: 21.5,30.5 parent: 2 - - uid: 7368 + - uid: 7305 components: - type: Transform pos: 20.5,32.5 parent: 2 - - uid: 7369 + - uid: 7306 components: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 7370 + - uid: 7307 components: - type: Transform pos: 24.5,29.5 parent: 2 - - uid: 7371 + - uid: 7308 components: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 7372 + - uid: 7309 components: - type: Transform pos: 24.5,27.5 parent: 2 - - uid: 7373 + - uid: 7310 components: - type: Transform pos: 24.5,26.5 parent: 2 - - uid: 7374 + - uid: 7311 components: - type: Transform pos: 25.5,29.5 parent: 2 - - uid: 7375 + - uid: 7312 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 7376 + - uid: 7313 components: - type: Transform pos: 27.5,29.5 parent: 2 - - uid: 7377 + - uid: 7314 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 7378 + - uid: 7315 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 7379 + - uid: 7316 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 7380 + - uid: 7317 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 7381 + - uid: 7318 components: - type: Transform pos: 10.5,56.5 parent: 2 - - uid: 7382 + - uid: 7319 components: - type: Transform pos: 11.5,56.5 parent: 2 - - uid: 7383 + - uid: 7320 components: - type: Transform pos: 12.5,56.5 parent: 2 - - uid: 7384 + - uid: 7321 components: - type: Transform pos: 13.5,56.5 parent: 2 - - uid: 7385 + - uid: 7322 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 7386 + - uid: 7323 components: - type: Transform pos: 15.5,56.5 parent: 2 - - uid: 7387 + - uid: 7324 components: - type: Transform pos: 16.5,56.5 parent: 2 - - uid: 7388 + - uid: 7325 components: - type: Transform pos: 17.5,56.5 parent: 2 - - uid: 7389 + - uid: 7326 components: - type: Transform pos: 18.5,56.5 parent: 2 - - uid: 7390 + - uid: 7327 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 7391 + - uid: 7328 components: - type: Transform pos: 20.5,56.5 parent: 2 - - uid: 7392 + - uid: 7329 components: - type: Transform pos: 21.5,56.5 parent: 2 - - uid: 7393 + - uid: 7330 components: - type: Transform pos: -65.5,22.5 parent: 2 - - uid: 7394 + - uid: 7331 components: - type: Transform pos: -66.5,22.5 parent: 2 - - uid: 7395 + - uid: 7332 components: - type: Transform pos: -67.5,22.5 parent: 2 - - uid: 7396 + - uid: 7333 components: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 7397 + - uid: 7334 components: - type: Transform pos: -69.5,22.5 parent: 2 - - uid: 7398 + - uid: 7335 components: - type: Transform pos: -70.5,22.5 parent: 2 - - uid: 7399 + - uid: 7336 components: - type: Transform pos: -71.5,22.5 parent: 2 - - uid: 7400 + - uid: 7337 components: - type: Transform pos: -72.5,22.5 parent: 2 - - uid: 7401 + - uid: 7338 components: - type: Transform pos: -73.5,22.5 parent: 2 - - uid: 7402 + - uid: 7339 components: - type: Transform pos: -74.5,22.5 parent: 2 - - uid: 7403 + - uid: 7340 components: - type: Transform pos: -75.5,22.5 parent: 2 - - uid: 7404 + - uid: 7341 components: - type: Transform pos: -76.5,22.5 parent: 2 - - uid: 7405 + - uid: 7342 components: - type: Transform pos: 36.5,42.5 parent: 2 - - uid: 7406 + - uid: 7343 components: - type: Transform pos: 36.5,43.5 parent: 2 - - uid: 7407 + - uid: 7344 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 7408 + - uid: 7345 components: - type: Transform pos: 36.5,39.5 parent: 2 - - uid: 7409 + - uid: 7346 components: - type: Transform pos: 20.5,39.5 parent: 2 - - uid: 7410 + - uid: 7347 components: - type: Transform pos: 37.5,39.5 parent: 2 - - uid: 7411 + - uid: 7348 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 7412 + - uid: 7349 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 7413 + - uid: 7350 components: - type: Transform pos: 17.5,39.5 parent: 2 - - uid: 7414 + - uid: 7351 components: - type: Transform pos: 16.5,39.5 parent: 2 - - uid: 7415 + - uid: 7352 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 7416 + - uid: 7353 components: - type: Transform pos: 14.5,39.5 parent: 2 - - uid: 7417 + - uid: 7354 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 7418 + - uid: 7355 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 7419 + - uid: 7356 components: - type: Transform pos: 92.5,24.5 parent: 2 - - uid: 7420 + - uid: 7357 components: - type: Transform pos: 92.5,25.5 parent: 2 - - uid: 7421 + - uid: 7358 components: - type: Transform pos: 92.5,26.5 parent: 2 - - uid: 7422 + - uid: 7359 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 7423 + - uid: 7360 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 7424 + - uid: 7361 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 7425 + - uid: 7362 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 7426 + - uid: 7363 components: - type: Transform pos: 69.5,22.5 parent: 2 - - uid: 7427 + - uid: 7364 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 7428 + - uid: 7365 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7429 + - uid: 7366 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7430 + - uid: 7367 components: - type: Transform pos: 69.5,21.5 parent: 2 - - uid: 7431 + - uid: 7368 components: - type: Transform pos: 67.5,21.5 parent: 2 - - uid: 7432 + - uid: 7369 components: - type: Transform pos: 62.5,22.5 parent: 2 - - uid: 7433 + - uid: 7370 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 7434 + - uid: 7371 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 7435 + - uid: 7372 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 7436 + - uid: 7373 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 7437 + - uid: 7374 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 7438 + - uid: 7375 components: - type: Transform pos: 67.5,29.5 parent: 2 - - uid: 7439 + - uid: 7376 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 7440 + - uid: 7377 components: - type: Transform pos: 66.5,21.5 parent: 2 - - uid: 7441 + - uid: 7378 components: - type: Transform pos: 66.5,29.5 parent: 2 - - uid: 7442 + - uid: 7379 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7443 + - uid: 7380 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 7444 + - uid: 7381 components: - type: Transform pos: 65.5,21.5 parent: 2 - - uid: 7445 + - uid: 7382 components: - type: Transform pos: 62.5,28.5 parent: 2 - - uid: 7446 + - uid: 7383 components: - type: Transform pos: 62.5,29.5 parent: 2 - - uid: 7447 + - uid: 7384 components: - type: Transform pos: 61.5,29.5 parent: 2 - - uid: 7448 + - uid: 7385 components: - type: Transform pos: 68.5,21.5 parent: 2 - - uid: 7449 + - uid: 7386 components: - type: Transform pos: 69.5,23.5 parent: 2 - - uid: 7450 + - uid: 7387 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 7451 + - uid: 7388 components: - type: Transform pos: 69.5,24.5 parent: 2 - - uid: 7452 + - uid: 7389 components: - type: Transform pos: 64.5,29.5 parent: 2 - - uid: 7453 + - uid: 7390 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7454 + - uid: 7391 components: - type: Transform pos: 63.5,21.5 parent: 2 - - uid: 7455 + - uid: 7392 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7456 + - uid: 7393 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7457 + - uid: 7394 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 7458 + - uid: 7395 components: - type: Transform pos: 62.5,22.5 parent: 2 - - uid: 7459 + - uid: 7396 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 7460 + - uid: 7397 components: - type: Transform pos: -35.5,-44.5 parent: 2 - - uid: 7461 + - uid: 7398 components: - type: Transform pos: -36.5,-44.5 parent: 2 - - uid: 7462 + - uid: 7399 components: - type: Transform pos: -37.5,-44.5 parent: 2 - - uid: 7463 + - uid: 7400 components: - type: Transform pos: -35.5,-39.5 parent: 2 - - uid: 7464 + - uid: 7401 components: - type: Transform pos: -36.5,-39.5 parent: 2 - - uid: 7465 + - uid: 7402 components: - type: Transform pos: -37.5,-39.5 parent: 2 - - uid: 7466 + - uid: 7403 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 7467 + - uid: 7404 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 7468 + - uid: 7405 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 7469 + - uid: 7406 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 7470 + - uid: 7407 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 7471 + - uid: 7408 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 7472 + - uid: 7409 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 7473 + - uid: 7410 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 7474 + - uid: 7411 components: - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 7475 + - uid: 7412 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7476 + - uid: 7413 components: - type: Transform pos: 43.5,-5.5 parent: 2 - - uid: 7477 + - uid: 7414 components: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 7478 + - uid: 7415 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 7479 + - uid: 7416 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 7480 + - uid: 7417 components: - type: Transform pos: 47.5,-8.5 parent: 2 - - uid: 7481 + - uid: 7418 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7482 + - uid: 7419 components: - type: Transform pos: 24.5,13.5 parent: 2 - - uid: 7483 + - uid: 7420 components: - type: Transform pos: 25.5,14.5 parent: 2 - - uid: 7484 + - uid: 7421 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 7485 + - uid: 7422 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 7486 + - uid: 7423 components: - type: Transform pos: 24.5,14.5 parent: 2 - - uid: 7487 + - uid: 7424 components: - type: Transform pos: 26.5,15.5 parent: 2 - - uid: 7488 + - uid: 7425 components: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 7489 + - uid: 7426 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 7490 + - uid: 7427 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 7491 + - uid: 7428 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 7492 + - uid: 7429 components: - type: Transform pos: 28.5,22.5 parent: 2 - - uid: 7493 + - uid: 7430 components: - type: Transform pos: 24.5,15.5 parent: 2 - - uid: 7494 + - uid: 7431 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 7495 + - uid: 7432 components: - type: Transform pos: 27.5,22.5 parent: 2 - - uid: 7496 + - uid: 7433 components: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 7497 + - uid: 7434 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 7498 + - uid: 7435 components: - type: Transform pos: 22.5,14.5 parent: 2 - - uid: 7499 + - uid: 7436 components: - type: Transform pos: 26.5,22.5 parent: 2 - - uid: 7500 + - uid: 7437 components: - type: Transform pos: 21.5,9.5 parent: 2 - - uid: 7501 + - uid: 7438 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 7502 + - uid: 7439 components: - type: Transform pos: 20.5,22.5 parent: 2 - - uid: 7503 + - uid: 7440 components: - type: Transform pos: 25.5,22.5 parent: 2 - - uid: 7504 + - uid: 7441 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 7505 + - uid: 7442 components: - type: Transform pos: 23.5,9.5 parent: 2 - - uid: 7506 + - uid: 7443 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 7507 + - uid: 7444 components: - type: Transform pos: 22.5,22.5 parent: 2 - - uid: 7508 + - uid: 7445 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 7509 + - uid: 7446 components: - type: Transform pos: 23.5,22.5 parent: 2 - - uid: 7510 + - uid: 7447 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 7511 + - uid: 7448 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 7512 + - uid: 7449 components: - type: Transform pos: 22.5,13.5 parent: 2 - - uid: 7513 + - uid: 7450 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 7514 + - uid: 7451 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 7515 + - uid: 7452 components: - type: Transform pos: 26.5,13.5 parent: 2 - - uid: 7516 + - uid: 7453 components: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 7517 + - uid: 7454 components: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 7518 + - uid: 7455 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 7519 + - uid: 7456 components: - type: Transform pos: 26.5,17.5 parent: 2 - - uid: 7520 + - uid: 7457 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 7521 + - uid: 7458 components: - type: Transform pos: -22.5,-21.5 parent: 2 - - uid: 7522 + - uid: 7459 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 7523 + - uid: 7460 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 13148 + - uid: 7461 components: - type: Transform pos: -61.5,-27.5 parent: 2 - - uid: 38491 + - uid: 38318 components: - type: Transform pos: -0.5,-0.5 - parent: 38484 - - uid: 38492 + parent: 38311 + - uid: 38319 components: - type: Transform pos: -0.5,0.5 - parent: 38484 - - uid: 38493 + parent: 38311 + - uid: 38320 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 38494 + parent: 38311 + - uid: 38321 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38495 + parent: 38311 + - uid: 38322 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38496 + parent: 38311 + - uid: 38323 components: - type: Transform pos: 1.5,0.5 - parent: 38484 - - uid: 38497 + parent: 38311 + - uid: 38324 components: - type: Transform pos: 1.5,-0.5 - parent: 38484 - - uid: 38498 + parent: 38311 + - uid: 38325 components: - type: Transform pos: 1.5,2.5 - parent: 38484 - - uid: 38499 + parent: 38311 + - uid: 38326 components: - type: Transform pos: 1.5,3.5 - parent: 38484 - - uid: 38500 + parent: 38311 + - uid: 38327 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38501 + parent: 38311 + - uid: 38328 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38502 + parent: 38311 + - uid: 38329 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38682 + parent: 38311 + - uid: 38509 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 38683 + parent: 38411 + - uid: 38510 components: - type: Transform pos: -21.5,4.5 - parent: 38584 - - uid: 38684 + parent: 38411 + - uid: 38511 components: - type: Transform pos: -19.5,5.5 - parent: 38584 - - uid: 38685 + parent: 38411 + - uid: 38512 components: - type: Transform pos: -18.5,8.5 - parent: 38584 - - uid: 38686 + parent: 38411 + - uid: 38513 components: - type: Transform pos: -12.5,10.5 - parent: 38584 - - uid: 38687 + parent: 38411 + - uid: 38514 components: - type: Transform pos: -11.5,-4.5 - parent: 38584 - - uid: 38688 + parent: 38411 + - uid: 38515 components: - type: Transform pos: -16.5,-4.5 - parent: 38584 - - uid: 38689 + parent: 38411 + - uid: 38516 components: - type: Transform pos: -21.5,1.5 - parent: 38584 - - uid: 38690 + parent: 38411 + - uid: 38517 components: - type: Transform pos: -8.5,2.5 - parent: 38584 - - uid: 38691 + parent: 38411 + - uid: 38518 components: - type: Transform pos: 0.5,2.5 - parent: 38584 - - uid: 38692 + parent: 38411 + - uid: 38519 components: - type: Transform pos: 3.5,3.5 - parent: 38584 - - uid: 38693 + parent: 38411 + - uid: 38520 components: - type: Transform pos: -11.5,-6.5 - parent: 38584 - - uid: 38694 + parent: 38411 + - uid: 38521 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 38695 + parent: 38411 + - uid: 38522 components: - type: Transform pos: -4.5,3.5 - parent: 38584 - - uid: 38696 + parent: 38411 + - uid: 38523 components: - type: Transform pos: -21.5,6.5 - parent: 38584 - - uid: 38697 + parent: 38411 + - uid: 38524 components: - type: Transform pos: -9.5,6.5 - parent: 38584 - - uid: 38698 + parent: 38411 + - uid: 38525 components: - type: Transform pos: -15.5,2.5 - parent: 38584 - - uid: 38699 + parent: 38411 + - uid: 38526 components: - type: Transform pos: -9.5,9.5 - parent: 38584 - - uid: 38700 + parent: 38411 + - uid: 38527 components: - type: Transform pos: -6.5,9.5 - parent: 38584 - - uid: 38701 + parent: 38411 + - uid: 38528 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38702 + parent: 38411 + - uid: 38529 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 38703 + parent: 38411 + - uid: 38530 components: - type: Transform pos: -18.5,9.5 - parent: 38584 - - uid: 38704 + parent: 38411 + - uid: 38531 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 38705 + parent: 38411 + - uid: 38532 components: - type: Transform pos: -22.5,28.5 - parent: 38584 - - uid: 38706 + parent: 38411 + - uid: 38533 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 38707 + parent: 38411 + - uid: 38534 components: - type: Transform pos: -23.5,28.5 - parent: 38584 - - uid: 38708 + parent: 38411 + - uid: 38535 components: - type: Transform pos: -24.5,28.5 - parent: 38584 - - uid: 38709 + parent: 38411 + - uid: 38536 components: - type: Transform pos: -21.5,29.5 - parent: 38584 - - uid: 38710 + parent: 38411 + - uid: 38537 components: - type: Transform pos: -21.5,32.5 - parent: 38584 - - uid: 38711 + parent: 38411 + - uid: 38538 components: - type: Transform pos: -20.5,31.5 - parent: 38584 - - uid: 38712 + parent: 38411 + - uid: 38539 components: - type: Transform pos: -19.5,31.5 - parent: 38584 - - uid: 38713 + parent: 38411 + - uid: 38540 components: - type: Transform pos: -18.5,31.5 - parent: 38584 - - uid: 38714 + parent: 38411 + - uid: 38541 components: - type: Transform pos: -17.5,31.5 - parent: 38584 - - uid: 38715 + parent: 38411 + - uid: 38542 components: - type: Transform pos: -17.5,32.5 - parent: 38584 - - uid: 38716 + parent: 38411 + - uid: 38543 components: - type: Transform pos: -17.5,33.5 - parent: 38584 - - uid: 38717 + parent: 38411 + - uid: 38544 components: - type: Transform pos: -17.5,34.5 - parent: 38584 - - uid: 38718 + parent: 38411 + - uid: 38545 components: - type: Transform pos: -17.5,35.5 - parent: 38584 - - uid: 38719 + parent: 38411 + - uid: 38546 components: - type: Transform pos: -15.5,35.5 - parent: 38584 - - uid: 38720 + parent: 38411 + - uid: 38547 components: - type: Transform pos: -14.5,35.5 - parent: 38584 - - uid: 38721 + parent: 38411 + - uid: 38548 components: - type: Transform pos: -21.5,33.5 - parent: 38584 - - uid: 38722 + parent: 38411 + - uid: 38549 components: - type: Transform pos: -21.5,27.5 - parent: 38584 - - uid: 38723 + parent: 38411 + - uid: 38550 components: - type: Transform pos: 7.5,3.5 - parent: 38584 - - uid: 38724 + parent: 38411 + - uid: 38551 components: - type: Transform pos: 7.5,1.5 - parent: 38584 - - uid: 38725 + parent: 38411 + - uid: 38552 components: - type: Transform pos: 1.5,-2.5 - parent: 38584 - - uid: 38726 + parent: 38411 + - uid: 38553 components: - type: Transform pos: 5.5,-4.5 - parent: 38584 - - uid: 38727 + parent: 38411 + - uid: 38554 components: - type: Transform pos: -5.5,-2.5 - parent: 38584 - - uid: 38728 + parent: 38411 + - uid: 38555 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 38729 + parent: 38411 + - uid: 38556 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38730 + parent: 38411 + - uid: 38557 components: - type: Transform pos: -7.5,-3.5 - parent: 38584 - - uid: 38731 + parent: 38411 + - uid: 38558 components: - type: Transform pos: 10.5,-6.5 - parent: 38584 - - uid: 38732 + parent: 38411 + - uid: 38559 components: - type: Transform pos: 4.5,-4.5 - parent: 38584 - - uid: 38733 + parent: 38411 + - uid: 38560 components: - type: Transform pos: 4.5,1.5 - parent: 38584 - - uid: 38734 + parent: 38411 + - uid: 38561 components: - type: Transform pos: 3.5,1.5 - parent: 38584 - - uid: 38735 + parent: 38411 + - uid: 38562 components: - type: Transform pos: -0.5,-8.5 - parent: 38584 - - uid: 38736 + parent: 38411 + - uid: 38563 components: - type: Transform pos: -0.5,-7.5 - parent: 38584 - - uid: 38737 + parent: 38411 + - uid: 38564 components: - type: Transform pos: 12.5,3.5 - parent: 38584 - - uid: 38738 + parent: 38411 + - uid: 38565 components: - type: Transform pos: 12.5,4.5 - parent: 38584 - - uid: 38739 + parent: 38411 + - uid: 38566 components: - type: Transform pos: 12.5,5.5 - parent: 38584 - - uid: 38740 + parent: 38411 + - uid: 38567 components: - type: Transform pos: -0.5,-3.5 - parent: 38584 - - uid: 38741 + parent: 38411 + - uid: 38568 components: - type: Transform pos: -1.5,-10.5 - parent: 38584 - - uid: 38742 + parent: 38411 + - uid: 38569 components: - type: Transform pos: -0.5,-1.5 - parent: 38584 - - uid: 38743 + parent: 38411 + - uid: 38570 components: - type: Transform pos: -2.5,-4.5 - parent: 38584 - - uid: 38744 + parent: 38411 + - uid: 38571 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 - - uid: 38745 + parent: 38411 + - uid: 38572 components: - type: Transform pos: 0.5,-1.5 - parent: 38584 - - uid: 38746 + parent: 38411 + - uid: 38573 components: - type: Transform pos: 1.5,-1.5 - parent: 38584 - - uid: 38747 + parent: 38411 + - uid: 38574 components: - type: Transform pos: -0.5,-9.5 - parent: 38584 - - uid: 38748 + parent: 38411 + - uid: 38575 components: - type: Transform pos: 0.5,-10.5 - parent: 38584 - - uid: 38749 + parent: 38411 + - uid: 38576 components: - type: Transform pos: 7.5,2.5 - parent: 38584 - - uid: 38750 + parent: 38411 + - uid: 38577 components: - type: Transform pos: 8.5,3.5 - parent: 38584 - - uid: 38751 + parent: 38411 + - uid: 38578 components: - type: Transform pos: 11.5,3.5 - parent: 38584 - - uid: 38752 + parent: 38411 + - uid: 38579 components: - type: Transform pos: -5.5,2.5 - parent: 38584 - - uid: 38753 + parent: 38411 + - uid: 38580 components: - type: Transform pos: -6.5,2.5 - parent: 38584 - - uid: 38754 + parent: 38411 + - uid: 38581 components: - type: Transform pos: 7.5,4.5 - parent: 38584 - - uid: 38755 + parent: 38411 + - uid: 38582 components: - type: Transform pos: 12.5,1.5 - parent: 38584 - - uid: 38756 + parent: 38411 + - uid: 38583 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38757 + parent: 38411 + - uid: 38584 components: - type: Transform pos: -5.5,0.5 - parent: 38584 - - uid: 38758 + parent: 38411 + - uid: 38585 components: - type: Transform pos: -3.5,2.5 - parent: 38584 - - uid: 38759 + parent: 38411 + - uid: 38586 components: - type: Transform pos: 10.5,-2.5 - parent: 38584 - - uid: 38760 + parent: 38411 + - uid: 38587 components: - type: Transform pos: -5.5,-3.5 - parent: 38584 - - uid: 38761 + parent: 38411 + - uid: 38588 components: - type: Transform pos: 4.5,-6.5 - parent: 38584 - - uid: 38762 + parent: 38411 + - uid: 38589 components: - type: Transform pos: 9.5,3.5 - parent: 38584 - - uid: 38763 + parent: 38411 + - uid: 38590 components: - type: Transform pos: 0.5,-7.5 - parent: 38584 - - uid: 38764 + parent: 38411 + - uid: 38591 components: - type: Transform pos: 4.5,-8.5 - parent: 38584 - - uid: 38765 + parent: 38411 + - uid: 38592 components: - type: Transform pos: -0.5,-10.5 - parent: 38584 - - uid: 38766 + parent: 38411 + - uid: 38593 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38767 + parent: 38411 + - uid: 38594 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 38768 + parent: 38411 + - uid: 38595 components: - type: Transform pos: 10.5,3.5 - parent: 38584 - - uid: 38769 + parent: 38411 + - uid: 38596 components: - type: Transform pos: 4.5,-9.5 - parent: 38584 - - uid: 38770 + parent: 38411 + - uid: 38597 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38771 + parent: 38411 + - uid: 38598 components: - type: Transform pos: 4.5,0.5 - parent: 38584 - - uid: 38772 + parent: 38411 + - uid: 38599 components: - type: Transform pos: 4.5,-1.5 - parent: 38584 - - uid: 38773 + parent: 38411 + - uid: 38600 components: - type: Transform pos: -0.5,-5.5 - parent: 38584 - - uid: 38774 + parent: 38411 + - uid: 38601 components: - type: Transform pos: -0.5,-4.5 - parent: 38584 - - uid: 38775 + parent: 38411 + - uid: 38602 components: - type: Transform pos: 4.5,3.5 - parent: 38584 - - uid: 38776 + parent: 38411 + - uid: 38603 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 38777 + parent: 38411 + - uid: 38604 components: - type: Transform pos: 6.5,-4.5 - parent: 38584 - - uid: 38778 + parent: 38411 + - uid: 38605 components: - type: Transform pos: -5.5,-5.5 - parent: 38584 - - uid: 38779 + parent: 38411 + - uid: 38606 components: - type: Transform pos: -6.5,-2.5 - parent: 38584 - - uid: 38780 + parent: 38411 + - uid: 38607 components: - type: Transform pos: -7.5,-1.5 - parent: 38584 - - uid: 38781 + parent: 38411 + - uid: 38608 components: - type: Transform pos: 4.5,-2.5 - parent: 38584 - - uid: 38782 + parent: 38411 + - uid: 38609 components: - type: Transform pos: -0.5,-2.5 - parent: 38584 - - uid: 38783 + parent: 38411 + - uid: 38610 components: - type: Transform pos: 12.5,6.5 - parent: 38584 - - uid: 38784 + parent: 38411 + - uid: 38611 components: - type: Transform pos: -1.5,-7.5 - parent: 38584 - - uid: 38785 + parent: 38411 + - uid: 38612 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 38786 + parent: 38411 + - uid: 38613 components: - type: Transform pos: 9.5,-4.5 - parent: 38584 - - uid: 38787 + parent: 38411 + - uid: 38614 components: - type: Transform pos: 4.5,-5.5 - parent: 38584 - - uid: 38788 + parent: 38411 + - uid: 38615 components: - type: Transform pos: -5.5,-4.5 - parent: 38584 - - uid: 38789 + parent: 38411 + - uid: 38616 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 38790 + parent: 38411 + - uid: 38617 components: - type: Transform pos: 10.5,-1.5 - parent: 38584 - - uid: 38791 + parent: 38411 + - uid: 38618 components: - type: Transform pos: 10.5,-4.5 - parent: 38584 - - uid: 38792 + parent: 38411 + - uid: 38619 components: - type: Transform pos: 10.5,-3.5 - parent: 38584 - - uid: 38793 + parent: 38411 + - uid: 38620 components: - type: Transform pos: 10.5,-5.5 - parent: 38584 - - uid: 38794 + parent: 38411 + - uid: 38621 components: - type: Transform pos: 12.5,2.5 - parent: 38584 - - uid: 38795 + parent: 38411 + - uid: 38622 components: - type: Transform pos: 4.5,2.5 - parent: 38584 - - uid: 38796 + parent: 38411 + - uid: 38623 components: - type: Transform pos: 10.5,-7.5 - parent: 38584 - - uid: 38797 + parent: 38411 + - uid: 38624 components: - type: Transform pos: 7.5,-4.5 - parent: 38584 - - uid: 38798 + parent: 38411 + - uid: 38625 components: - type: Transform pos: 4.5,-7.5 - parent: 38584 - - uid: 38799 + parent: 38411 + - uid: 38626 components: - type: Transform pos: 5.5,1.5 - parent: 38584 - - uid: 38800 + parent: 38411 + - uid: 38627 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 38801 + parent: 38411 + - uid: 38628 components: - type: Transform pos: -7.5,-2.5 - parent: 38584 - - uid: 38802 + parent: 38411 + - uid: 38629 components: - type: Transform pos: 4.5,-3.5 - parent: 38584 - - uid: 38803 + parent: 38411 + - uid: 38630 components: - type: Transform pos: -9.5,2.5 - parent: 38584 - - uid: 38804 + parent: 38411 + - uid: 38631 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38805 + parent: 38411 + - uid: 38632 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 38806 + parent: 38411 + - uid: 38633 components: - type: Transform pos: -1.5,0.5 - parent: 38584 - - uid: 38807 + parent: 38411 + - uid: 38634 components: - type: Transform pos: -2.5,-1.5 - parent: 38584 - - uid: 38808 + parent: 38411 + - uid: 38635 components: - type: Transform pos: -2.5,-2.5 - parent: 38584 - - uid: 38809 + parent: 38411 + - uid: 38636 components: - type: Transform pos: 3.5,-2.5 - parent: 38584 - - uid: 38810 + parent: 38411 + - uid: 38637 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 - - uid: 38811 + parent: 38411 + - uid: 38638 components: - type: Transform pos: -4.5,4.5 - parent: 38584 - - uid: 38812 + parent: 38411 + - uid: 38639 components: - type: Transform pos: -11.5,-3.5 - parent: 38584 - - uid: 38813 + parent: 38411 + - uid: 38640 components: - type: Transform pos: -0.5,2.5 - parent: 38584 - - uid: 38814 + parent: 38411 + - uid: 38641 components: - type: Transform pos: -1.5,2.5 - parent: 38584 - - uid: 38815 + parent: 38411 + - uid: 38642 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 38816 + parent: 38411 + - uid: 38643 components: - type: Transform pos: -10.5,-4.5 - parent: 38584 - - uid: 38817 + parent: 38411 + - uid: 38644 components: - type: Transform pos: -12.5,-3.5 - parent: 38584 - - uid: 38818 + parent: 38411 + - uid: 38645 components: - type: Transform pos: -12.5,2.5 - parent: 38584 - - uid: 38819 + parent: 38411 + - uid: 38646 components: - type: Transform pos: 0.5,3.5 - parent: 38584 - - uid: 38820 + parent: 38411 + - uid: 38647 components: - type: Transform pos: -7.5,7.5 - parent: 38584 - - uid: 38821 + parent: 38411 + - uid: 38648 components: - type: Transform pos: -7.5,8.5 - parent: 38584 - - uid: 38822 + parent: 38411 + - uid: 38649 components: - type: Transform pos: -12.5,-2.5 - parent: 38584 - - uid: 38823 + parent: 38411 + - uid: 38650 components: - type: Transform pos: -11.5,-7.5 - parent: 38584 - - uid: 38824 + parent: 38411 + - uid: 38651 components: - type: Transform pos: -12.5,-1.5 - parent: 38584 - - uid: 38825 + parent: 38411 + - uid: 38652 components: - type: Transform pos: -1.5,8.5 - parent: 38584 - - uid: 38826 + parent: 38411 + - uid: 38653 components: - type: Transform pos: 0.5,4.5 - parent: 38584 - - uid: 38827 + parent: 38411 + - uid: 38654 components: - type: Transform pos: 3.5,-8.5 - parent: 38584 - - uid: 38828 + parent: 38411 + - uid: 38655 components: - type: Transform pos: -20.5,5.5 - parent: 38584 - - uid: 38829 + parent: 38411 + - uid: 38656 components: - type: Transform pos: -21.5,3.5 - parent: 38584 - - uid: 38830 + parent: 38411 + - uid: 38657 components: - type: Transform pos: -21.5,2.5 - parent: 38584 - - uid: 38831 + parent: 38411 + - uid: 38658 components: - type: Transform pos: -21.5,5.5 - parent: 38584 - - uid: 38832 + parent: 38411 + - uid: 38659 components: - type: Transform pos: -5.5,9.5 - parent: 38584 - - uid: 38833 + parent: 38411 + - uid: 38660 components: - type: Transform pos: -1.5,5.5 - parent: 38584 - - uid: 38834 + parent: 38411 + - uid: 38661 components: - type: Transform pos: 0.5,8.5 - parent: 38584 - - uid: 38835 + parent: 38411 + - uid: 38662 components: - type: Transform pos: -12.5,9.5 - parent: 38584 - - uid: 38836 + parent: 38411 + - uid: 38663 components: - type: Transform pos: -12.5,8.5 - parent: 38584 - - uid: 38837 + parent: 38411 + - uid: 38664 components: - type: Transform pos: -1.5,6.5 - parent: 38584 - - uid: 38838 + parent: 38411 + - uid: 38665 components: - type: Transform pos: -9.5,8.5 - parent: 38584 - - uid: 38839 + parent: 38411 + - uid: 38666 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 38840 + parent: 38411 + - uid: 38667 components: - type: Transform pos: -11.5,-5.5 - parent: 38584 - - uid: 38841 + parent: 38411 + - uid: 38668 components: - type: Transform pos: -7.5,2.5 - parent: 38584 - - uid: 38842 + parent: 38411 + - uid: 38669 components: - type: Transform pos: -2.5,2.5 - parent: 38584 - - uid: 38843 + parent: 38411 + - uid: 38670 components: - type: Transform pos: -22.5,5.5 - parent: 38584 - - uid: 38844 + parent: 38411 + - uid: 38671 components: - type: Transform pos: -18.5,4.5 - parent: 38584 - - uid: 38845 + parent: 38411 + - uid: 38672 components: - type: Transform pos: -5.5,8.5 - parent: 38584 - - uid: 38846 + parent: 38411 + - uid: 38673 components: - type: Transform pos: -15.5,8.5 - parent: 38584 - - uid: 38847 + parent: 38411 + - uid: 38674 components: - type: Transform pos: -19.5,-4.5 - parent: 38584 - - uid: 38848 + parent: 38411 + - uid: 38675 components: - type: Transform pos: -13.5,5.5 - parent: 38584 - - uid: 38849 + parent: 38411 + - uid: 38676 components: - type: Transform pos: 0.5,1.5 - parent: 38584 - - uid: 38850 + parent: 38411 + - uid: 38677 components: - type: Transform pos: -12.5,4.5 - parent: 38584 - - uid: 38851 + parent: 38411 + - uid: 38678 components: - type: Transform pos: -16.5,-3.5 - parent: 38584 - - uid: 38852 + parent: 38411 + - uid: 38679 components: - type: Transform pos: 0.5,0.5 - parent: 38584 - - uid: 38853 + parent: 38411 + - uid: 38680 components: - type: Transform pos: -15.5,6.5 - parent: 38584 - - uid: 38854 + parent: 38411 + - uid: 38681 components: - type: Transform pos: -18.5,3.5 - parent: 38584 - - uid: 38855 + parent: 38411 + - uid: 38682 components: - type: Transform pos: -20.5,-2.5 - parent: 38584 - - uid: 38856 + parent: 38411 + - uid: 38683 components: - type: Transform pos: -18.5,2.5 - parent: 38584 - - uid: 38857 + parent: 38411 + - uid: 38684 components: - type: Transform pos: -18.5,1.5 - parent: 38584 - - uid: 38858 + parent: 38411 + - uid: 38685 components: - type: Transform pos: -15.5,4.5 - parent: 38584 - - uid: 38859 + parent: 38411 + - uid: 38686 components: - type: Transform pos: -15.5,7.5 - parent: 38584 - - uid: 38860 + parent: 38411 + - uid: 38687 components: - type: Transform pos: -8.5,9.5 - parent: 38584 - - uid: 38861 + parent: 38411 + - uid: 38688 components: - type: Transform pos: -7.5,6.5 - parent: 38584 - - uid: 38862 + parent: 38411 + - uid: 38689 components: - type: Transform pos: -9.5,7.5 - parent: 38584 - - uid: 38863 + parent: 38411 + - uid: 38690 components: - type: Transform pos: 0.5,7.5 - parent: 38584 - - uid: 38864 + parent: 38411 + - uid: 38691 components: - type: Transform pos: -16.5,5.5 - parent: 38584 - - uid: 38865 + parent: 38411 + - uid: 38692 components: - type: Transform pos: -17.5,5.5 - parent: 38584 - - uid: 38866 + parent: 38411 + - uid: 38693 components: - type: Transform pos: -12.5,6.5 - parent: 38584 - - uid: 38867 + parent: 38411 + - uid: 38694 components: - type: Transform pos: -15.5,3.5 - parent: 38584 - - uid: 38868 + parent: 38411 + - uid: 38695 components: - type: Transform pos: -15.5,1.5 - parent: 38584 - - uid: 38869 + parent: 38411 + - uid: 38696 components: - type: Transform pos: -21.5,7.5 - parent: 38584 - - uid: 38870 + parent: 38411 + - uid: 38697 components: - type: Transform pos: -18.5,6.5 - parent: 38584 - - uid: 38871 + parent: 38411 + - uid: 38698 components: - type: Transform pos: -5.5,7.5 - parent: 38584 - - uid: 38872 + parent: 38411 + - uid: 38699 components: - type: Transform pos: -5.5,6.5 - parent: 38584 - - uid: 38873 + parent: 38411 + - uid: 38700 components: - type: Transform pos: -12.5,12.5 - parent: 38584 - - uid: 38874 + parent: 38411 + - uid: 38701 components: - type: Transform pos: -12.5,3.5 - parent: 38584 - - uid: 38875 + parent: 38411 + - uid: 38702 components: - type: Transform pos: -14.5,5.5 - parent: 38584 - - uid: 38876 + parent: 38411 + - uid: 38703 components: - type: Transform pos: -20.5,-4.5 - parent: 38584 - - uid: 38877 + parent: 38411 + - uid: 38704 components: - type: Transform pos: -15.5,5.5 - parent: 38584 - - uid: 38878 + parent: 38411 + - uid: 38705 components: - type: Transform pos: -15.5,-3.5 - parent: 38584 - - uid: 38879 + parent: 38411 + - uid: 38706 components: - type: Transform pos: -20.5,-3.5 - parent: 38584 - - uid: 38880 + parent: 38411 + - uid: 38707 components: - type: Transform pos: -16.5,-6.5 - parent: 38584 - - uid: 38881 + parent: 38411 + - uid: 38708 components: - type: Transform pos: -16.5,-4.5 - parent: 38584 - - uid: 38882 + parent: 38411 + - uid: 38709 components: - type: Transform pos: -16.5,-5.5 - parent: 38584 - - uid: 38883 + parent: 38411 + - uid: 38710 components: - type: Transform pos: -21.5,-2.5 - parent: 38584 - - uid: 38884 + parent: 38411 + - uid: 38711 components: - type: Transform pos: -15.5,9.5 - parent: 38584 - - uid: 38885 + parent: 38411 + - uid: 38712 components: - type: Transform pos: -18.5,7.5 - parent: 38584 - - uid: 38886 + parent: 38411 + - uid: 38713 components: - type: Transform pos: -14.5,-3.5 - parent: 38584 - - uid: 38887 + parent: 38411 + - uid: 38714 components: - type: Transform pos: -16.5,-7.5 - parent: 38584 - - uid: 38888 + parent: 38411 + - uid: 38715 components: - type: Transform pos: -1.5,7.5 - parent: 38584 - - uid: 38889 + parent: 38411 + - uid: 38716 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38890 + parent: 38411 + - uid: 38717 components: - type: Transform pos: -12.5,11.5 - parent: 38584 - - uid: 38891 + parent: 38411 + - uid: 38718 components: - type: Transform pos: -12.5,5.5 - parent: 38584 - - uid: 38892 + parent: 38411 + - uid: 38719 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 38893 + parent: 38411 + - uid: 38720 components: - type: Transform pos: -1.5,4.5 - parent: 38584 - - uid: 38894 + parent: 38411 + - uid: 38721 components: - type: Transform pos: 0.5,5.5 - parent: 38584 - - uid: 38895 + parent: 38411 + - uid: 38722 components: - type: Transform pos: 0.5,6.5 - parent: 38584 - - uid: 38896 + parent: 38411 + - uid: 38723 components: - type: Transform pos: -18.5,5.5 - parent: 38584 - - uid: 38897 + parent: 38411 + - uid: 38724 components: - type: Transform pos: -12.5,0.5 - parent: 38584 - - uid: 38898 + parent: 38411 + - uid: 38725 components: - type: Transform pos: -13.5,-3.5 - parent: 38584 - - uid: 38899 + parent: 38411 + - uid: 38726 components: - type: Transform pos: -17.5,-4.5 - parent: 38584 - - uid: 38900 + parent: 38411 + - uid: 38727 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 - - uid: 38901 + parent: 38411 + - uid: 38728 components: - type: Transform pos: -21.5,8.5 - parent: 38584 - - uid: 38902 + parent: 38411 + - uid: 38729 components: - type: Transform pos: -21.5,9.5 - parent: 38584 - - uid: 38903 + parent: 38411 + - uid: 38730 components: - type: Transform pos: -18.5,-4.5 - parent: 38584 - - uid: 38904 + parent: 38411 + - uid: 38731 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 38905 + parent: 38411 + - uid: 38732 components: - type: Transform pos: -16.5,-2.5 - parent: 38584 - - uid: 38906 + parent: 38411 + - uid: 38733 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38907 + parent: 38411 + - uid: 38734 components: - type: Transform pos: -12.5,1.5 - parent: 38584 - - uid: 38908 + parent: 38411 + - uid: 38735 components: - type: Transform pos: -10.5,7.5 - parent: 38584 - - uid: 38909 + parent: 38411 + - uid: 38736 components: - type: Transform pos: -11.5,7.5 - parent: 38584 + parent: 38411 - proto: CableApcStack entities: - - uid: 7524 + - uid: 7462 components: - type: Transform pos: -48.414772,11.637162 parent: 2 - proto: CableApcStack1 entities: - - uid: 7525 + - uid: 7463 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.722485,-61.630287 parent: 2 - - uid: 7526 + - uid: 7464 components: - type: Transform pos: -33.208797,-61.324524 parent: 2 - - uid: 7527 + - uid: 7465 components: - type: Transform rot: -1.5707953085339508 rad pos: 10.239218,72.56352 parent: 2 - - uid: 7528 + - uid: 7466 components: - type: Transform rot: 1.5707973450558423 rad pos: 59.479244,-40.83658 parent: 2 - - uid: 7529 + - uid: 7467 components: - type: Transform rot: 1.5707973450558423 rad @@ -75983,7 +75988,7 @@ entities: parent: 2 - proto: CableApcStackLingering10 entities: - - uid: 7530 + - uid: 7468 components: - type: Transform rot: -1.5707953085339508 rad @@ -75991,9250 +75996,9250 @@ entities: parent: 2 - proto: CablecuffsBroken entities: - - uid: 7531 + - uid: 7469 components: - type: Transform pos: -38.590115,0.39123595 parent: 2 - - uid: 7532 + - uid: 7470 components: - type: Transform pos: -36.569214,0.9812069 parent: 2 - - uid: 7533 + - uid: 7471 components: - type: Transform pos: -33.064873,-74.243935 parent: 2 - - uid: 38910 + - uid: 38737 components: - type: Transform pos: -6.5,22.5 - parent: 38584 + parent: 38411 - proto: CableHV entities: - - uid: 7534 + - uid: 7472 components: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 7535 + - uid: 7473 components: - type: Transform pos: 50.5,-7.5 parent: 2 - - uid: 7536 + - uid: 7474 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7537 + - uid: 7475 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 7538 + - uid: 7476 components: - type: Transform pos: -18.5,-29.5 parent: 2 - - uid: 7539 + - uid: 7477 components: - type: Transform pos: 15.5,87.5 parent: 2 - - uid: 7540 + - uid: 7478 components: - type: Transform pos: 28.5,103.5 parent: 2 - - uid: 7541 + - uid: 7479 components: - type: Transform pos: 28.5,101.5 parent: 2 - - uid: 7542 + - uid: 7480 components: - type: Transform pos: 32.5,94.5 parent: 2 - - uid: 7543 + - uid: 7481 components: - type: Transform pos: 15.5,88.5 parent: 2 - - uid: 7544 + - uid: 7482 components: - type: Transform pos: 33.5,94.5 parent: 2 - - uid: 7545 + - uid: 7483 components: - type: Transform pos: 16.5,87.5 parent: 2 - - uid: 7546 + - uid: 7484 components: - type: Transform pos: 30.5,95.5 parent: 2 - - uid: 7547 + - uid: 7485 components: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 7548 + - uid: 7486 components: - type: Transform pos: 28.5,95.5 parent: 2 - - uid: 7549 + - uid: 7487 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7550 + - uid: 7488 components: - type: Transform pos: 29.5,95.5 parent: 2 - - uid: 7551 + - uid: 7489 components: - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 7552 + - uid: 7490 components: - type: Transform pos: 23.5,92.5 parent: 2 - - uid: 7553 + - uid: 7491 components: - type: Transform pos: 31.5,96.5 parent: 2 - - uid: 7554 + - uid: 7492 components: - type: Transform pos: 22.5,90.5 parent: 2 - - uid: 7555 + - uid: 7493 components: - type: Transform pos: 24.5,96.5 parent: 2 - - uid: 7556 + - uid: 7494 components: - type: Transform pos: 25.5,90.5 parent: 2 - - uid: 7557 + - uid: 7495 components: - type: Transform pos: 22.5,98.5 parent: 2 - - uid: 7558 + - uid: 7496 components: - type: Transform pos: 21.5,94.5 parent: 2 - - uid: 7559 + - uid: 7497 components: - type: Transform pos: 26.5,90.5 parent: 2 - - uid: 7560 + - uid: 7498 components: - type: Transform pos: 31.5,100.5 parent: 2 - - uid: 7561 + - uid: 7499 components: - type: Transform pos: 25.5,98.5 parent: 2 - - uid: 7562 + - uid: 7500 components: - type: Transform pos: 26.5,99.5 parent: 2 - - uid: 7563 + - uid: 7501 components: - type: Transform pos: 25.5,96.5 parent: 2 - - uid: 7564 + - uid: 7502 components: - type: Transform pos: 22.5,100.5 parent: 2 - - uid: 7565 + - uid: 7503 components: - type: Transform pos: 33.5,100.5 parent: 2 - - uid: 7566 + - uid: 7504 components: - type: Transform pos: 34.5,100.5 parent: 2 - - uid: 7567 + - uid: 7505 components: - type: Transform pos: 26.5,98.5 parent: 2 - - uid: 7568 + - uid: 7506 components: - type: Transform pos: 31.5,94.5 parent: 2 - - uid: 7569 + - uid: 7507 components: - type: Transform pos: 25.5,95.5 parent: 2 - - uid: 7570 + - uid: 7508 components: - type: Transform pos: 24.5,98.5 parent: 2 - - uid: 7571 + - uid: 7509 components: - type: Transform pos: 35.5,96.5 parent: 2 - - uid: 7572 + - uid: 7510 components: - type: Transform pos: 34.5,94.5 parent: 2 - - uid: 7573 + - uid: 7511 components: - type: Transform pos: 33.5,96.5 parent: 2 - - uid: 7574 + - uid: 7512 components: - type: Transform pos: 32.5,92.5 parent: 2 - - uid: 7575 + - uid: 7513 components: - type: Transform pos: 33.5,92.5 parent: 2 - - uid: 7576 + - uid: 7514 components: - type: Transform pos: 24.5,92.5 parent: 2 - - uid: 7577 + - uid: 7515 components: - type: Transform pos: 31.5,92.5 parent: 2 - - uid: 7578 + - uid: 7516 components: - type: Transform pos: 32.5,100.5 parent: 2 - - uid: 7579 + - uid: 7517 components: - type: Transform pos: 32.5,98.5 parent: 2 - - uid: 7580 + - uid: 7518 components: - type: Transform pos: 32.5,96.5 parent: 2 - - uid: 7581 + - uid: 7519 components: - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 7582 + - uid: 7520 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 7583 + - uid: 7521 components: - type: Transform pos: 23.5,90.5 parent: 2 - - uid: 7584 + - uid: 7522 components: - type: Transform pos: 28.5,94.5 parent: 2 - - uid: 7585 + - uid: 7523 components: - type: Transform pos: 28.5,92.5 parent: 2 - - uid: 7586 + - uid: 7524 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 7587 + - uid: 7525 components: - type: Transform pos: 29.5,99.5 parent: 2 - - uid: 7588 + - uid: 7526 components: - type: Transform pos: 17.5,87.5 parent: 2 - - uid: 7589 + - uid: 7527 components: - type: Transform pos: 23.5,100.5 parent: 2 - - uid: 7590 + - uid: 7528 components: - type: Transform pos: 28.5,89.5 parent: 2 - - uid: 7591 + - uid: 7529 components: - type: Transform pos: 30.5,92.5 parent: 2 - - uid: 7592 + - uid: 7530 components: - type: Transform pos: 26.5,87.5 parent: 2 - - uid: 7593 + - uid: 7531 components: - type: Transform pos: 23.5,87.5 parent: 2 - - uid: 7594 + - uid: 7532 components: - type: Transform pos: 20.5,87.5 parent: 2 - - uid: 7595 + - uid: 7533 components: - type: Transform pos: 25.5,87.5 parent: 2 - - uid: 7596 + - uid: 7534 components: - type: Transform pos: 23.5,96.5 parent: 2 - - uid: 7597 + - uid: 7535 components: - type: Transform pos: 22.5,87.5 parent: 2 - - uid: 7598 + - uid: 7536 components: - type: Transform pos: 24.5,87.5 parent: 2 - - uid: 7599 + - uid: 7537 components: - type: Transform pos: 28.5,96.5 parent: 2 - - uid: 7600 + - uid: 7538 components: - type: Transform pos: 28.5,97.5 parent: 2 - - uid: 7601 + - uid: 7539 components: - type: Transform pos: 28.5,98.5 parent: 2 - - uid: 7602 + - uid: 7540 components: - type: Transform pos: 22.5,96.5 parent: 2 - - uid: 7603 + - uid: 7541 components: - type: Transform pos: 21.5,96.5 parent: 2 - - uid: 7604 + - uid: 7542 components: - type: Transform pos: 18.5,87.5 parent: 2 - - uid: 7605 + - uid: 7543 components: - type: Transform pos: 14.5,88.5 parent: 2 - - uid: 7606 + - uid: 7544 components: - type: Transform pos: 32.5,90.5 parent: 2 - - uid: 7607 + - uid: 7545 components: - type: Transform pos: 31.5,90.5 parent: 2 - - uid: 7608 + - uid: 7546 components: - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 7609 + - uid: 7547 components: - type: Transform pos: 23.5,98.5 parent: 2 - - uid: 7610 + - uid: 7548 components: - type: Transform pos: 28.5,100.5 parent: 2 - - uid: 7611 + - uid: 7549 components: - type: Transform pos: 24.5,94.5 parent: 2 - - uid: 7612 + - uid: 7550 components: - type: Transform pos: 25.5,92.5 parent: 2 - - uid: 7613 + - uid: 7551 components: - type: Transform pos: 29.5,91.5 parent: 2 - - uid: 7614 + - uid: 7552 components: - type: Transform pos: 22.5,94.5 parent: 2 - - uid: 7615 + - uid: 7553 components: - type: Transform pos: 23.5,94.5 parent: 2 - - uid: 7616 + - uid: 7554 components: - type: Transform pos: 25.5,94.5 parent: 2 - - uid: 7617 + - uid: 7555 components: - type: Transform pos: 28.5,93.5 parent: 2 - - uid: 7618 + - uid: 7556 components: - type: Transform pos: -45.5,2.5 parent: 2 - - uid: 7619 + - uid: 7557 components: - type: Transform pos: 22.5,92.5 parent: 2 - - uid: 7620 + - uid: 7558 components: - type: Transform pos: 28.5,88.5 parent: 2 - - uid: 7621 + - uid: 7559 components: - type: Transform pos: 24.5,100.5 parent: 2 - - uid: 7622 + - uid: 7560 components: - type: Transform pos: 35.5,94.5 parent: 2 - - uid: 7623 + - uid: 7561 components: - type: Transform pos: 21.5,87.5 parent: 2 - - uid: 7624 + - uid: 7562 components: - type: Transform pos: 26.5,95.5 parent: 2 - - uid: 7625 + - uid: 7563 components: - type: Transform pos: 27.5,95.5 parent: 2 - - uid: 7626 + - uid: 7564 components: - type: Transform pos: -44.5,2.5 parent: 2 - - uid: 7627 + - uid: 7565 components: - type: Transform pos: 31.5,98.5 parent: 2 - - uid: 7628 + - uid: 7566 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 7629 + - uid: 7567 components: - type: Transform pos: -43.5,-75.5 parent: 2 - - uid: 7630 + - uid: 7568 components: - type: Transform pos: 27.5,99.5 parent: 2 - - uid: 7631 + - uid: 7569 components: - type: Transform pos: 30.5,100.5 parent: 2 - - uid: 7632 + - uid: 7570 components: - type: Transform pos: 28.5,90.5 parent: 2 - - uid: 7633 + - uid: 7571 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 7634 + - uid: 7572 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 7635 + - uid: 7573 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 7636 + - uid: 7574 components: - type: Transform pos: 26.5,91.5 parent: 2 - - uid: 7637 + - uid: 7575 components: - type: Transform pos: 33.5,98.5 parent: 2 - - uid: 7638 + - uid: 7576 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 7639 + - uid: 7577 components: - type: Transform pos: 31.5,95.5 parent: 2 - - uid: 7640 + - uid: 7578 components: - type: Transform pos: 28.5,87.5 parent: 2 - - uid: 7641 + - uid: 7579 components: - type: Transform pos: 34.5,90.5 parent: 2 - - uid: 7642 + - uid: 7580 components: - type: Transform pos: 28.5,91.5 parent: 2 - - uid: 7643 + - uid: 7581 components: - type: Transform pos: 30.5,99.5 parent: 2 - - uid: 7644 + - uid: 7582 components: - type: Transform pos: -45.5,-74.5 parent: 2 - - uid: 7645 + - uid: 7583 components: - type: Transform pos: 34.5,92.5 parent: 2 - - uid: 7646 + - uid: 7584 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 7647 + - uid: 7585 components: - type: Transform pos: 30.5,90.5 parent: 2 - - uid: 7648 + - uid: 7586 components: - type: Transform pos: 33.5,90.5 parent: 2 - - uid: 7649 + - uid: 7587 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 7650 + - uid: 7588 components: - type: Transform pos: 28.5,102.5 parent: 2 - - uid: 7651 + - uid: 7589 components: - type: Transform pos: 30.5,91.5 parent: 2 - - uid: 7652 + - uid: 7590 components: - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 7653 + - uid: 7591 components: - type: Transform pos: 28.5,99.5 parent: 2 - - uid: 7654 + - uid: 7592 components: - type: Transform pos: 24.5,90.5 parent: 2 - - uid: 7655 + - uid: 7593 components: - type: Transform pos: 26.5,92.5 parent: 2 - - uid: 7656 + - uid: 7594 components: - type: Transform pos: 27.5,91.5 parent: 2 - - uid: 7657 + - uid: 7595 components: - type: Transform pos: 30.5,98.5 parent: 2 - - uid: 7658 + - uid: 7596 components: - type: Transform pos: 34.5,98.5 parent: 2 - - uid: 7659 + - uid: 7597 components: - type: Transform pos: 15.5,88.5 parent: 2 - - uid: 7660 + - uid: 7598 components: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 7661 + - uid: 7599 components: - type: Transform pos: 27.5,87.5 parent: 2 - - uid: 7662 + - uid: 7600 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 7663 + - uid: 7601 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 7664 + - uid: 7602 components: - type: Transform pos: 26.5,100.5 parent: 2 - - uid: 7665 + - uid: 7603 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 7666 + - uid: 7604 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7667 + - uid: 7605 components: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 7668 + - uid: 7606 components: - type: Transform pos: 34.5,96.5 parent: 2 - - uid: 7669 + - uid: 7607 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 7670 + - uid: 7608 components: - type: Transform pos: 3.5,-40.5 parent: 2 - - uid: 7671 + - uid: 7609 components: - type: Transform pos: 25.5,100.5 parent: 2 - - uid: 7672 + - uid: 7610 components: - type: Transform pos: 15.5,86.5 parent: 2 - - uid: 7673 + - uid: 7611 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 7674 + - uid: 7612 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 7675 + - uid: 7613 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 7676 + - uid: 7614 components: - type: Transform pos: -44.5,-3.5 parent: 2 - - uid: 7677 + - uid: 7615 components: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 7678 + - uid: 7616 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 7679 + - uid: 7617 components: - type: Transform pos: -41.5,-9.5 parent: 2 - - uid: 7680 + - uid: 7618 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 7681 + - uid: 7619 components: - type: Transform pos: -59.5,-5.5 parent: 2 - - uid: 7682 + - uid: 7620 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 7683 + - uid: 7621 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 7684 + - uid: 7622 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 7685 + - uid: 7623 components: - type: Transform pos: -50.5,53.5 parent: 2 - - uid: 7686 + - uid: 7624 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 7687 + - uid: 7625 components: - type: Transform pos: -44.5,-2.5 parent: 2 - - uid: 7688 + - uid: 7626 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 7689 + - uid: 7627 components: - type: Transform pos: -47.5,-2.5 parent: 2 - - uid: 7690 + - uid: 7628 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 7691 + - uid: 7629 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 7692 + - uid: 7630 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 7693 + - uid: 7631 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 7694 + - uid: 7632 components: - type: Transform pos: 10.5,87.5 parent: 2 - - uid: 7695 + - uid: 7633 components: - type: Transform pos: 10.5,86.5 parent: 2 - - uid: 7696 + - uid: 7634 components: - type: Transform pos: 10.5,84.5 parent: 2 - - uid: 7697 + - uid: 7635 components: - type: Transform pos: 10.5,83.5 parent: 2 - - uid: 7698 + - uid: 7636 components: - type: Transform pos: 10.5,82.5 parent: 2 - - uid: 7699 + - uid: 7637 components: - type: Transform pos: 10.5,85.5 parent: 2 - - uid: 7700 + - uid: 7638 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 7701 + - uid: 7639 components: - type: Transform pos: 11.5,81.5 parent: 2 - - uid: 7702 + - uid: 7640 components: - type: Transform pos: 11.5,80.5 parent: 2 - - uid: 7703 + - uid: 7641 components: - type: Transform pos: 11.5,79.5 parent: 2 - - uid: 7704 + - uid: 7642 components: - type: Transform pos: 11.5,78.5 parent: 2 - - uid: 7705 + - uid: 7643 components: - type: Transform pos: 11.5,77.5 parent: 2 - - uid: 7706 + - uid: 7644 components: - type: Transform pos: 11.5,76.5 parent: 2 - - uid: 7707 + - uid: 7645 components: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 7708 + - uid: 7646 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 7709 + - uid: 7647 components: - type: Transform pos: 12.5,74.5 parent: 2 - - uid: 7710 + - uid: 7648 components: - type: Transform pos: 12.5,73.5 parent: 2 - - uid: 7711 + - uid: 7649 components: - type: Transform pos: 12.5,72.5 parent: 2 - - uid: 7712 + - uid: 7650 components: - type: Transform pos: 13.5,72.5 parent: 2 - - uid: 7713 + - uid: 7651 components: - type: Transform pos: 14.5,72.5 parent: 2 - - uid: 7714 + - uid: 7652 components: - type: Transform pos: 14.5,71.5 parent: 2 - - uid: 7715 + - uid: 7653 components: - type: Transform pos: 14.5,70.5 parent: 2 - - uid: 7716 + - uid: 7654 components: - type: Transform pos: 14.5,69.5 parent: 2 - - uid: 7717 + - uid: 7655 components: - type: Transform pos: 14.5,68.5 parent: 2 - - uid: 7718 + - uid: 7656 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 7719 + - uid: 7657 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 7720 + - uid: 7658 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 7721 + - uid: 7659 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 7722 + - uid: 7660 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 7723 + - uid: 7661 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 7724 + - uid: 7662 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 7725 + - uid: 7663 components: - type: Transform pos: 10.5,58.5 parent: 2 - - uid: 7726 + - uid: 7664 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 7727 + - uid: 7665 components: - type: Transform pos: 10.5,60.5 parent: 2 - - uid: 7728 + - uid: 7666 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 7729 + - uid: 7667 components: - type: Transform pos: 10.5,62.5 parent: 2 - - uid: 7730 + - uid: 7668 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 7731 + - uid: 7669 components: - type: Transform pos: 10.5,64.5 parent: 2 - - uid: 7732 + - uid: 7670 components: - type: Transform pos: 11.5,64.5 parent: 2 - - uid: 7733 + - uid: 7671 components: - type: Transform pos: 12.5,64.5 parent: 2 - - uid: 7734 + - uid: 7672 components: - type: Transform pos: 13.5,64.5 parent: 2 - - uid: 7735 + - uid: 7673 components: - type: Transform pos: 14.5,64.5 parent: 2 - - uid: 7736 + - uid: 7674 components: - type: Transform pos: 14.5,65.5 parent: 2 - - uid: 7737 + - uid: 7675 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 7738 + - uid: 7676 components: - type: Transform pos: 14.5,67.5 parent: 2 - - uid: 7739 + - uid: 7677 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 7740 + - uid: 7678 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 7741 + - uid: 7679 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 7742 + - uid: 7680 components: - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 7743 + - uid: 7681 components: - type: Transform pos: -2.5,34.5 parent: 2 - - uid: 7744 + - uid: 7682 components: - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 7745 + - uid: 7683 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 7746 + - uid: 7684 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 7747 + - uid: 7685 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 7748 + - uid: 7686 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 7749 + - uid: 7687 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 7750 + - uid: 7688 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 7751 + - uid: 7689 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 7752 + - uid: 7690 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 7753 + - uid: 7691 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 7754 + - uid: 7692 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 7755 + - uid: 7693 components: - type: Transform pos: 0.50000006,25.5 parent: 2 - - uid: 7756 + - uid: 7694 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 7757 + - uid: 7695 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 7758 + - uid: 7696 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 7759 + - uid: 7697 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 7760 + - uid: 7698 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 7761 + - uid: 7699 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 7762 + - uid: 7700 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 7763 + - uid: 7701 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 7764 + - uid: 7702 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 7765 + - uid: 7703 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 7766 + - uid: 7704 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 7767 + - uid: 7705 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 7768 + - uid: 7706 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 7769 + - uid: 7707 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 7770 + - uid: 7708 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 7771 + - uid: 7709 components: - type: Transform pos: -18.5,25.5 parent: 2 - - uid: 7772 + - uid: 7710 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 7773 + - uid: 7711 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 7774 + - uid: 7712 components: - type: Transform pos: -18.5,22.5 parent: 2 - - uid: 7775 + - uid: 7713 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 7776 + - uid: 7714 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 7777 + - uid: 7715 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 7778 + - uid: 7716 components: - type: Transform pos: -16.5,23.5 parent: 2 - - uid: 7779 + - uid: 7717 components: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 7780 + - uid: 7718 components: - type: Transform pos: -14.5,23.5 parent: 2 - - uid: 7781 + - uid: 7719 components: - type: Transform pos: -13.5,23.5 parent: 2 - - uid: 7782 + - uid: 7720 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 7783 + - uid: 7721 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 7784 + - uid: 7722 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 7785 + - uid: 7723 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 7786 + - uid: 7724 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 7787 + - uid: 7725 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 7788 + - uid: 7726 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 7789 + - uid: 7727 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 7790 + - uid: 7728 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 7791 + - uid: 7729 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 7792 + - uid: 7730 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 7793 + - uid: 7731 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 7794 + - uid: 7732 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 7795 + - uid: 7733 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 7796 + - uid: 7734 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 7797 + - uid: 7735 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 7798 + - uid: 7736 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 7799 + - uid: 7737 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 7800 + - uid: 7738 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 7801 + - uid: 7739 components: - type: Transform pos: 13.5,-4.5 parent: 2 - - uid: 7802 + - uid: 7740 components: - type: Transform pos: 14.5,-4.5 parent: 2 - - uid: 7803 + - uid: 7741 components: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 7804 + - uid: 7742 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 7805 + - uid: 7743 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 7806 + - uid: 7744 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 7807 + - uid: 7745 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 7808 + - uid: 7746 components: - type: Transform pos: -39.5,-5.5 parent: 2 - - uid: 7809 + - uid: 7747 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 7810 + - uid: 7748 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 7811 + - uid: 7749 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 7812 + - uid: 7750 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 7813 + - uid: 7751 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 7814 + - uid: 7752 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 7815 + - uid: 7753 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - uid: 7816 + - uid: 7754 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 7817 + - uid: 7755 components: - type: Transform pos: -43.5,-12.5 parent: 2 - - uid: 7818 + - uid: 7756 components: - type: Transform pos: -43.5,-11.5 parent: 2 - - uid: 7819 + - uid: 7757 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 7820 + - uid: 7758 components: - type: Transform pos: -41.5,-11.5 parent: 2 - - uid: 7821 + - uid: 7759 components: - type: Transform pos: -41.5,-10.5 parent: 2 - - uid: 7822 + - uid: 7760 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 7823 + - uid: 7761 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 7824 + - uid: 7762 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 7825 + - uid: 7763 components: - type: Transform pos: -46.5,-0.5 parent: 2 - - uid: 7826 + - uid: 7764 components: - type: Transform pos: -44.5,-1.5 parent: 2 - - uid: 7827 + - uid: 7765 components: - type: Transform pos: -49.5,-2.5 parent: 2 - - uid: 7828 + - uid: 7766 components: - type: Transform pos: -48.5,-2.5 parent: 2 - - uid: 7829 + - uid: 7767 components: - type: Transform pos: -50.5,-2.5 parent: 2 - - uid: 7830 + - uid: 7768 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 7831 + - uid: 7769 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 7832 + - uid: 7770 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 7833 + - uid: 7771 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 7834 + - uid: 7772 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 7835 + - uid: 7773 components: - type: Transform pos: -43.5,-16.5 parent: 2 - - uid: 7836 + - uid: 7774 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 7837 + - uid: 7775 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 7838 + - uid: 7776 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 7839 + - uid: 7777 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 7840 + - uid: 7778 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 7841 + - uid: 7779 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 7842 + - uid: 7780 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 7843 + - uid: 7781 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 7844 + - uid: 7782 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 7845 + - uid: 7783 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 7846 + - uid: 7784 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 7847 + - uid: 7785 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 7848 + - uid: 7786 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 7849 + - uid: 7787 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 7850 + - uid: 7788 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 7851 + - uid: 7789 components: - type: Transform pos: -53.5,-20.5 parent: 2 - - uid: 7852 + - uid: 7790 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 7853 + - uid: 7791 components: - type: Transform pos: -53.5,-18.5 parent: 2 - - uid: 7854 + - uid: 7792 components: - type: Transform pos: -53.5,-17.5 parent: 2 - - uid: 7855 + - uid: 7793 components: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 7856 + - uid: 7794 components: - type: Transform pos: -53.5,-15.5 parent: 2 - - uid: 7857 + - uid: 7795 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 7858 + - uid: 7796 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 7859 + - uid: 7797 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 7860 + - uid: 7798 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 7861 + - uid: 7799 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 7862 + - uid: 7800 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 7863 + - uid: 7801 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 7864 + - uid: 7802 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 7865 + - uid: 7803 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 7866 + - uid: 7804 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 7867 + - uid: 7805 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 7868 + - uid: 7806 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 7869 + - uid: 7807 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 7870 + - uid: 7808 components: - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 7871 + - uid: 7809 components: - type: Transform pos: -80.5,-2.5 parent: 2 - - uid: 7872 + - uid: 7810 components: - type: Transform pos: -81.5,-2.5 parent: 2 - - uid: 7873 + - uid: 7811 components: - type: Transform pos: -82.5,-2.5 parent: 2 - - uid: 7874 + - uid: 7812 components: - type: Transform pos: -82.5,-1.5 parent: 2 - - uid: 7875 + - uid: 7813 components: - type: Transform pos: -97.5,-2.5 parent: 2 - - uid: 7876 + - uid: 7814 components: - type: Transform pos: -96.5,-2.5 parent: 2 - - uid: 7877 + - uid: 7815 components: - type: Transform pos: -95.5,-2.5 parent: 2 - - uid: 7878 + - uid: 7816 components: - type: Transform pos: -94.5,-2.5 parent: 2 - - uid: 7879 + - uid: 7817 components: - type: Transform pos: -93.5,-2.5 parent: 2 - - uid: 7880 + - uid: 7818 components: - type: Transform pos: -92.5,-2.5 parent: 2 - - uid: 7881 + - uid: 7819 components: - type: Transform pos: -91.5,-2.5 parent: 2 - - uid: 7882 + - uid: 7820 components: - type: Transform pos: -90.5,-2.5 parent: 2 - - uid: 7883 + - uid: 7821 components: - type: Transform pos: -89.5,-2.5 parent: 2 - - uid: 7884 + - uid: 7822 components: - type: Transform pos: -88.5,-2.5 parent: 2 - - uid: 7885 + - uid: 7823 components: - type: Transform pos: -87.5,-2.5 parent: 2 - - uid: 7886 + - uid: 7824 components: - type: Transform pos: -87.5,-3.5 parent: 2 - - uid: 7887 + - uid: 7825 components: - type: Transform pos: -87.5,-4.5 parent: 2 - - uid: 7888 + - uid: 7826 components: - type: Transform pos: -87.5,-5.5 parent: 2 - - uid: 7889 + - uid: 7827 components: - type: Transform pos: -87.5,-6.5 parent: 2 - - uid: 7890 + - uid: 7828 components: - type: Transform pos: -87.5,-7.5 parent: 2 - - uid: 7891 + - uid: 7829 components: - type: Transform pos: -87.5,-8.5 parent: 2 - - uid: 7892 + - uid: 7830 components: - type: Transform pos: -87.5,-9.5 parent: 2 - - uid: 7893 + - uid: 7831 components: - type: Transform pos: -87.5,-10.5 parent: 2 - - uid: 7894 + - uid: 7832 components: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 7895 + - uid: 7833 components: - type: Transform pos: -87.5,-12.5 parent: 2 - - uid: 7896 + - uid: 7834 components: - type: Transform pos: -88.5,-12.5 parent: 2 - - uid: 7897 + - uid: 7835 components: - type: Transform pos: -89.5,-12.5 parent: 2 - - uid: 7898 + - uid: 7836 components: - type: Transform pos: -90.5,-12.5 parent: 2 - - uid: 7899 + - uid: 7837 components: - type: Transform pos: -91.5,-12.5 parent: 2 - - uid: 7900 + - uid: 7838 components: - type: Transform pos: -92.5,-12.5 parent: 2 - - uid: 7901 + - uid: 7839 components: - type: Transform pos: -93.5,-12.5 parent: 2 - - uid: 7902 + - uid: 7840 components: - type: Transform pos: -94.5,-12.5 parent: 2 - - uid: 7903 + - uid: 7841 components: - type: Transform pos: -95.5,-12.5 parent: 2 - - uid: 7904 + - uid: 7842 components: - type: Transform pos: -96.5,-12.5 parent: 2 - - uid: 7905 + - uid: 7843 components: - type: Transform pos: -97.5,-12.5 parent: 2 - - uid: 7906 + - uid: 7844 components: - type: Transform pos: -97.5,-11.5 parent: 2 - - uid: 7907 + - uid: 7845 components: - type: Transform pos: -97.5,-10.5 parent: 2 - - uid: 7908 + - uid: 7846 components: - type: Transform pos: -97.5,-9.5 parent: 2 - - uid: 7909 + - uid: 7847 components: - type: Transform pos: -97.5,-8.5 parent: 2 - - uid: 7910 + - uid: 7848 components: - type: Transform pos: -97.5,-7.5 parent: 2 - - uid: 7911 + - uid: 7849 components: - type: Transform pos: -97.5,-6.5 parent: 2 - - uid: 7912 + - uid: 7850 components: - type: Transform pos: -97.5,-5.5 parent: 2 - - uid: 7913 + - uid: 7851 components: - type: Transform pos: -97.5,-4.5 parent: 2 - - uid: 7914 + - uid: 7852 components: - type: Transform pos: -97.5,-3.5 parent: 2 - - uid: 7915 + - uid: 7853 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 7916 + - uid: 7854 components: - type: Transform pos: -87.5,-1.5 parent: 2 - - uid: 7917 + - uid: 7855 components: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 7918 + - uid: 7856 components: - type: Transform pos: -84.5,-1.5 parent: 2 - - uid: 7919 + - uid: 7857 components: - type: Transform pos: -83.5,-1.5 parent: 2 - - uid: 7920 + - uid: 7858 components: - type: Transform pos: -78.5,-6.5 parent: 2 - - uid: 7921 + - uid: 7859 components: - type: Transform pos: -79.5,-3.5 parent: 2 - - uid: 7922 + - uid: 7860 components: - type: Transform pos: -79.5,-4.5 parent: 2 - - uid: 7923 + - uid: 7861 components: - type: Transform pos: -79.5,-5.5 parent: 2 - - uid: 7924 + - uid: 7862 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 7925 + - uid: 7863 components: - type: Transform pos: -77.5,-6.5 parent: 2 - - uid: 7926 + - uid: 7864 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 7927 + - uid: 7865 components: - type: Transform pos: -75.5,-6.5 parent: 2 - - uid: 7928 + - uid: 7866 components: - type: Transform pos: -74.5,-6.5 parent: 2 - - uid: 7929 + - uid: 7867 components: - type: Transform pos: -73.5,-6.5 parent: 2 - - uid: 7930 + - uid: 7868 components: - type: Transform pos: -72.5,-6.5 parent: 2 - - uid: 7931 + - uid: 7869 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 7932 + - uid: 7870 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 7933 + - uid: 7871 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 7934 + - uid: 7872 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 7935 + - uid: 7873 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 7936 + - uid: 7874 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 7937 + - uid: 7875 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 7938 + - uid: 7876 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 7939 + - uid: 7877 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 7940 + - uid: 7878 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 7941 + - uid: 7879 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 7942 + - uid: 7880 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 7943 + - uid: 7881 components: - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 7944 + - uid: 7882 components: - type: Transform pos: -54.5,-6.5 parent: 2 - - uid: 7945 + - uid: 7883 components: - type: Transform pos: -53.5,-6.5 parent: 2 - - uid: 7946 + - uid: 7884 components: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 7947 + - uid: 7885 components: - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 7948 + - uid: 7886 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 7949 + - uid: 7887 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 7950 + - uid: 7888 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 7951 + - uid: 7889 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 7952 + - uid: 7890 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 7953 + - uid: 7891 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 7954 + - uid: 7892 components: - type: Transform pos: -54.5,1.5 parent: 2 - - uid: 7955 + - uid: 7893 components: - type: Transform pos: -55.5,1.5 parent: 2 - - uid: 7956 + - uid: 7894 components: - type: Transform pos: -56.5,1.5 parent: 2 - - uid: 7957 + - uid: 7895 components: - type: Transform pos: -57.5,1.5 parent: 2 - - uid: 7958 + - uid: 7896 components: - type: Transform pos: -58.5,1.5 parent: 2 - - uid: 7959 + - uid: 7897 components: - type: Transform pos: -59.5,1.5 parent: 2 - - uid: 7960 + - uid: 7898 components: - type: Transform pos: -60.5,1.5 parent: 2 - - uid: 7961 + - uid: 7899 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 7962 + - uid: 7900 components: - type: Transform pos: -62.5,1.5 parent: 2 - - uid: 7963 + - uid: 7901 components: - type: Transform pos: -63.5,1.5 parent: 2 - - uid: 7964 + - uid: 7902 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 7965 + - uid: 7903 components: - type: Transform pos: -65.5,1.5 parent: 2 - - uid: 7966 + - uid: 7904 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 7967 + - uid: 7905 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 7968 + - uid: 7906 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 7969 + - uid: 7907 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 7970 + - uid: 7908 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 7971 + - uid: 7909 components: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 7972 + - uid: 7910 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 7973 + - uid: 7911 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 7974 + - uid: 7912 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 7975 + - uid: 7913 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 7976 + - uid: 7914 components: - type: Transform pos: -67.5,-1.5 parent: 2 - - uid: 7977 + - uid: 7915 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 7978 + - uid: 7916 components: - type: Transform pos: -66.5,1.5 parent: 2 - - uid: 7979 + - uid: 7917 components: - type: Transform pos: -50.5,52.5 parent: 2 - - uid: 7980 + - uid: 7918 components: - type: Transform pos: -50.5,51.5 parent: 2 - - uid: 7981 + - uid: 7919 components: - type: Transform pos: -50.5,50.5 parent: 2 - - uid: 7982 + - uid: 7920 components: - type: Transform pos: -50.5,49.5 parent: 2 - - uid: 7983 + - uid: 7921 components: - type: Transform pos: -51.5,51.5 parent: 2 - - uid: 7984 + - uid: 7922 components: - type: Transform pos: -49.5,51.5 parent: 2 - - uid: 7985 + - uid: 7923 components: - type: Transform pos: -65.5,66.5 parent: 2 - - uid: 7986 + - uid: 7924 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 7987 + - uid: 7925 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 7988 + - uid: 7926 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 7989 + - uid: 7927 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 7990 + - uid: 7928 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 7991 + - uid: 7929 components: - type: Transform pos: -18.5,13.5 parent: 2 - - uid: 7992 + - uid: 7930 components: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 7993 + - uid: 7931 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 7994 + - uid: 7932 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 7995 + - uid: 7933 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 7996 + - uid: 7934 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 7997 + - uid: 7935 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 7998 + - uid: 7936 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 7999 + - uid: 7937 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 8000 + - uid: 7938 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 8001 + - uid: 7939 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 8002 + - uid: 7940 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 8003 + - uid: 7941 components: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 8004 + - uid: 7942 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 8005 + - uid: 7943 components: - type: Transform pos: -24.5,5.5 parent: 2 - - uid: 8006 + - uid: 7944 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 8007 + - uid: 7945 components: - type: Transform pos: -26.5,5.5 parent: 2 - - uid: 8008 + - uid: 7946 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 8009 + - uid: 7947 components: - type: Transform pos: -28.5,5.5 parent: 2 - - uid: 8010 + - uid: 7948 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 8011 + - uid: 7949 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 8012 + - uid: 7950 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 8013 + - uid: 7951 components: - type: Transform pos: -32.5,5.5 parent: 2 - - uid: 8014 + - uid: 7952 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 8015 + - uid: 7953 components: - type: Transform pos: -34.5,5.5 parent: 2 - - uid: 8016 + - uid: 7954 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 8017 + - uid: 7955 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 8018 + - uid: 7956 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 8019 + - uid: 7957 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 8020 + - uid: 7958 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 8021 + - uid: 7959 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 8022 + - uid: 7960 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 8023 + - uid: 7961 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 8024 + - uid: 7962 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 8025 + - uid: 7963 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 8026 + - uid: 7964 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 8027 + - uid: 7965 components: - type: Transform pos: -41.5,3.5 parent: 2 - - uid: 8028 + - uid: 7966 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 8029 + - uid: 7967 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 8030 + - uid: 7968 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 8031 + - uid: 7969 components: - type: Transform pos: -46.5,6.5 parent: 2 - - uid: 8032 + - uid: 7970 components: - type: Transform pos: -45.5,6.5 parent: 2 - - uid: 8033 + - uid: 7971 components: - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 8034 + - uid: 7972 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 8035 + - uid: 7973 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 8036 + - uid: 7974 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 8037 + - uid: 7975 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 8038 + - uid: 7976 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 8039 + - uid: 7977 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 8040 + - uid: 7978 components: - type: Transform pos: -43.5,9.5 parent: 2 - - uid: 8041 + - uid: 7979 components: - type: Transform pos: -42.5,9.5 parent: 2 - - uid: 8042 + - uid: 7980 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 8043 + - uid: 7981 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 8044 + - uid: 7982 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 8045 + - uid: 7983 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 8046 + - uid: 7984 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 8047 + - uid: 7985 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 8048 + - uid: 7986 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 8049 + - uid: 7987 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 8050 + - uid: 7988 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 8051 + - uid: 7989 components: - type: Transform pos: -72.5,12.5 parent: 2 - - uid: 8052 + - uid: 7990 components: - type: Transform pos: -71.5,12.5 parent: 2 - - uid: 8053 + - uid: 7991 components: - type: Transform pos: -71.5,13.5 parent: 2 - - uid: 8054 + - uid: 7992 components: - type: Transform pos: -71.5,14.5 parent: 2 - - uid: 8055 + - uid: 7993 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 8056 + - uid: 7994 components: - type: Transform pos: -73.5,12.5 parent: 2 - - uid: 8057 + - uid: 7995 components: - type: Transform pos: -73.5,11.5 parent: 2 - - uid: 8058 + - uid: 7996 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 8059 + - uid: 7997 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 8060 + - uid: 7998 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 8061 + - uid: 7999 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 8062 + - uid: 8000 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 8063 + - uid: 8001 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 8064 + - uid: 8002 components: - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 8065 + - uid: 8003 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 8066 + - uid: 8004 components: - type: Transform pos: -64.5,15.5 parent: 2 - - uid: 8067 + - uid: 8005 components: - type: Transform pos: -63.5,15.5 parent: 2 - - uid: 8068 + - uid: 8006 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 8069 + - uid: 8007 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 8070 + - uid: 8008 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 8071 + - uid: 8009 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 8072 + - uid: 8010 components: - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 8073 + - uid: 8011 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 8074 + - uid: 8012 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 8075 + - uid: 8013 components: - type: Transform pos: -56.5,14.5 parent: 2 - - uid: 8076 + - uid: 8014 components: - type: Transform pos: -55.5,14.5 parent: 2 - - uid: 8077 + - uid: 8015 components: - type: Transform pos: -54.5,14.5 parent: 2 - - uid: 8078 + - uid: 8016 components: - type: Transform pos: -53.5,14.5 parent: 2 - - uid: 8079 + - uid: 8017 components: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 8080 + - uid: 8018 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 8081 + - uid: 8019 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 8082 + - uid: 8020 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 8083 + - uid: 8021 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 8084 + - uid: 8022 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 8085 + - uid: 8023 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 8086 + - uid: 8024 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 8087 + - uid: 8025 components: - type: Transform pos: -53.5,17.5 parent: 2 - - uid: 8088 + - uid: 8026 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 8089 + - uid: 8027 components: - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 8090 + - uid: 8028 components: - type: Transform pos: -53.5,20.5 parent: 2 - - uid: 8091 + - uid: 8029 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 8092 + - uid: 8030 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 8093 + - uid: 8031 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 8094 + - uid: 8032 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 8095 + - uid: 8033 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 8096 + - uid: 8034 components: - type: Transform pos: -55.5,24.5 parent: 2 - - uid: 8097 + - uid: 8035 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 8098 + - uid: 8036 components: - type: Transform pos: -58.5,44.5 parent: 2 - - uid: 8099 + - uid: 8037 components: - type: Transform pos: -44.5,44.5 parent: 2 - - uid: 8100 + - uid: 8038 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 8101 + - uid: 8039 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 8102 + - uid: 8040 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 8103 + - uid: 8041 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 8104 + - uid: 8042 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 8105 + - uid: 8043 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 8106 + - uid: 8044 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 8107 + - uid: 8045 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 8108 + - uid: 8046 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 8109 + - uid: 8047 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 8110 + - uid: 8048 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 8111 + - uid: 8049 components: - type: Transform pos: -57.5,46.5 parent: 2 - - uid: 8112 + - uid: 8050 components: - type: Transform pos: -57.5,47.5 parent: 2 - - uid: 8113 + - uid: 8051 components: - type: Transform pos: -57.5,48.5 parent: 2 - - uid: 8114 + - uid: 8052 components: - type: Transform pos: -57.5,49.5 parent: 2 - - uid: 8115 + - uid: 8053 components: - type: Transform pos: -57.5,50.5 parent: 2 - - uid: 8116 + - uid: 8054 components: - type: Transform pos: -57.5,51.5 parent: 2 - - uid: 8117 + - uid: 8055 components: - type: Transform pos: -57.5,52.5 parent: 2 - - uid: 8118 + - uid: 8056 components: - type: Transform pos: -57.5,53.5 parent: 2 - - uid: 8119 + - uid: 8057 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 8120 + - uid: 8058 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 8121 + - uid: 8059 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 8122 + - uid: 8060 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 8123 + - uid: 8061 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 8124 + - uid: 8062 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 8125 + - uid: 8063 components: - type: Transform pos: -58.5,61.5 parent: 2 - - uid: 8126 + - uid: 8064 components: - type: Transform pos: -58.5,62.5 parent: 2 - - uid: 8127 + - uid: 8065 components: - type: Transform pos: -58.5,63.5 parent: 2 - - uid: 8128 + - uid: 8066 components: - type: Transform pos: -59.5,63.5 parent: 2 - - uid: 8129 + - uid: 8067 components: - type: Transform pos: -57.5,63.5 parent: 2 - - uid: 8130 + - uid: 8068 components: - type: Transform pos: -60.5,63.5 parent: 2 - - uid: 8131 + - uid: 8069 components: - type: Transform pos: -57.5,61.5 parent: 2 - - uid: 8132 + - uid: 8070 components: - type: Transform pos: -57.5,60.5 parent: 2 - - uid: 8133 + - uid: 8071 components: - type: Transform pos: -57.5,59.5 parent: 2 - - uid: 8134 + - uid: 8072 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 8135 + - uid: 8073 components: - type: Transform pos: -59.5,59.5 parent: 2 - - uid: 8136 + - uid: 8074 components: - type: Transform pos: -59.5,60.5 parent: 2 - - uid: 8137 + - uid: 8075 components: - type: Transform pos: -75.5,67.5 parent: 2 - - uid: 8138 + - uid: 8076 components: - type: Transform pos: -58.5,64.5 parent: 2 - - uid: 8139 + - uid: 8077 components: - type: Transform pos: -58.5,65.5 parent: 2 - - uid: 8140 + - uid: 8078 components: - type: Transform pos: -58.5,66.5 parent: 2 - - uid: 8141 + - uid: 8079 components: - type: Transform pos: -59.5,66.5 parent: 2 - - uid: 8142 + - uid: 8080 components: - type: Transform pos: -60.5,66.5 parent: 2 - - uid: 8143 + - uid: 8081 components: - type: Transform pos: -61.5,66.5 parent: 2 - - uid: 8144 + - uid: 8082 components: - type: Transform pos: -62.5,66.5 parent: 2 - - uid: 8145 + - uid: 8083 components: - type: Transform pos: -63.5,66.5 parent: 2 - - uid: 8146 + - uid: 8084 components: - type: Transform pos: -66.5,66.5 parent: 2 - - uid: 8147 + - uid: 8085 components: - type: Transform pos: -67.5,66.5 parent: 2 - - uid: 8148 + - uid: 8086 components: - type: Transform pos: -68.5,66.5 parent: 2 - - uid: 8149 + - uid: 8087 components: - type: Transform pos: -69.5,66.5 parent: 2 - - uid: 8150 + - uid: 8088 components: - type: Transform pos: -70.5,66.5 parent: 2 - - uid: 8151 + - uid: 8089 components: - type: Transform pos: -71.5,66.5 parent: 2 - - uid: 8152 + - uid: 8090 components: - type: Transform pos: -72.5,66.5 parent: 2 - - uid: 8153 + - uid: 8091 components: - type: Transform pos: -73.5,66.5 parent: 2 - - uid: 8154 + - uid: 8092 components: - type: Transform pos: -74.5,66.5 parent: 2 - - uid: 8155 + - uid: 8093 components: - type: Transform pos: -75.5,66.5 parent: 2 - - uid: 8156 + - uid: 8094 components: - type: Transform pos: -75.5,68.5 parent: 2 - - uid: 8157 + - uid: 8095 components: - type: Transform pos: -75.5,69.5 parent: 2 - - uid: 8158 + - uid: 8096 components: - type: Transform pos: -75.5,70.5 parent: 2 - - uid: 8159 + - uid: 8097 components: - type: Transform pos: -75.5,71.5 parent: 2 - - uid: 8160 + - uid: 8098 components: - type: Transform pos: -75.5,72.5 parent: 2 - - uid: 8161 + - uid: 8099 components: - type: Transform pos: -75.5,73.5 parent: 2 - - uid: 8162 + - uid: 8100 components: - type: Transform pos: -75.5,74.5 parent: 2 - - uid: 8163 + - uid: 8101 components: - type: Transform pos: -75.5,75.5 parent: 2 - - uid: 8164 + - uid: 8102 components: - type: Transform pos: -75.5,76.5 parent: 2 - - uid: 8165 + - uid: 8103 components: - type: Transform pos: -75.5,77.5 parent: 2 - - uid: 8166 + - uid: 8104 components: - type: Transform pos: -75.5,78.5 parent: 2 - - uid: 8167 + - uid: 8105 components: - type: Transform pos: -75.5,79.5 parent: 2 - - uid: 8168 + - uid: 8106 components: - type: Transform pos: -75.5,80.5 parent: 2 - - uid: 8169 + - uid: 8107 components: - type: Transform pos: -75.5,81.5 parent: 2 - - uid: 8170 + - uid: 8108 components: - type: Transform pos: -75.5,82.5 parent: 2 - - uid: 8171 + - uid: 8109 components: - type: Transform pos: -75.5,83.5 parent: 2 - - uid: 8172 + - uid: 8110 components: - type: Transform pos: -75.5,84.5 parent: 2 - - uid: 8173 + - uid: 8111 components: - type: Transform pos: -76.5,81.5 parent: 2 - - uid: 8174 + - uid: 8112 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 8175 + - uid: 8113 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 8176 + - uid: 8114 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 8177 + - uid: 8115 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 8178 + - uid: 8116 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 8179 + - uid: 8117 components: - type: Transform pos: -81.5,82.5 parent: 2 - - uid: 8180 + - uid: 8118 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 8181 + - uid: 8119 components: - type: Transform pos: -81.5,80.5 parent: 2 - - uid: 8182 + - uid: 8120 components: - type: Transform pos: -80.5,82.5 parent: 2 - - uid: 8183 + - uid: 8121 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 8184 + - uid: 8122 components: - type: Transform pos: -80.5,80.5 parent: 2 - - uid: 8185 + - uid: 8123 components: - type: Transform pos: -79.5,82.5 parent: 2 - - uid: 8186 + - uid: 8124 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 8187 + - uid: 8125 components: - type: Transform pos: -79.5,80.5 parent: 2 - - uid: 8188 + - uid: 8126 components: - type: Transform pos: -78.5,82.5 parent: 2 - - uid: 8189 + - uid: 8127 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 8190 + - uid: 8128 components: - type: Transform pos: -78.5,80.5 parent: 2 - - uid: 8191 + - uid: 8129 components: - type: Transform pos: -77.5,82.5 parent: 2 - - uid: 8192 + - uid: 8130 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 8193 + - uid: 8131 components: - type: Transform pos: -77.5,80.5 parent: 2 - - uid: 8194 + - uid: 8132 components: - type: Transform pos: -73.5,82.5 parent: 2 - - uid: 8195 + - uid: 8133 components: - type: Transform pos: -73.5,81.5 parent: 2 - - uid: 8196 + - uid: 8134 components: - type: Transform pos: -73.5,80.5 parent: 2 - - uid: 8197 + - uid: 8135 components: - type: Transform pos: -72.5,82.5 parent: 2 - - uid: 8198 + - uid: 8136 components: - type: Transform pos: -72.5,81.5 parent: 2 - - uid: 8199 + - uid: 8137 components: - type: Transform pos: -72.5,80.5 parent: 2 - - uid: 8200 + - uid: 8138 components: - type: Transform pos: -71.5,82.5 parent: 2 - - uid: 8201 + - uid: 8139 components: - type: Transform pos: -71.5,81.5 parent: 2 - - uid: 8202 + - uid: 8140 components: - type: Transform pos: -71.5,80.5 parent: 2 - - uid: 8203 + - uid: 8141 components: - type: Transform pos: -70.5,82.5 parent: 2 - - uid: 8204 + - uid: 8142 components: - type: Transform pos: -70.5,81.5 parent: 2 - - uid: 8205 + - uid: 8143 components: - type: Transform pos: -70.5,80.5 parent: 2 - - uid: 8206 + - uid: 8144 components: - type: Transform pos: -69.5,82.5 parent: 2 - - uid: 8207 + - uid: 8145 components: - type: Transform pos: -69.5,81.5 parent: 2 - - uid: 8208 + - uid: 8146 components: - type: Transform pos: -69.5,80.5 parent: 2 - - uid: 8209 + - uid: 8147 components: - type: Transform pos: -69.5,78.5 parent: 2 - - uid: 8210 + - uid: 8148 components: - type: Transform pos: -69.5,77.5 parent: 2 - - uid: 8211 + - uid: 8149 components: - type: Transform pos: -69.5,76.5 parent: 2 - - uid: 8212 + - uid: 8150 components: - type: Transform pos: -70.5,78.5 parent: 2 - - uid: 8213 + - uid: 8151 components: - type: Transform pos: -70.5,77.5 parent: 2 - - uid: 8214 + - uid: 8152 components: - type: Transform pos: -70.5,76.5 parent: 2 - - uid: 8215 + - uid: 8153 components: - type: Transform pos: -71.5,78.5 parent: 2 - - uid: 8216 + - uid: 8154 components: - type: Transform pos: -71.5,77.5 parent: 2 - - uid: 8217 + - uid: 8155 components: - type: Transform pos: -71.5,76.5 parent: 2 - - uid: 8218 + - uid: 8156 components: - type: Transform pos: -72.5,78.5 parent: 2 - - uid: 8219 + - uid: 8157 components: - type: Transform pos: -72.5,77.5 parent: 2 - - uid: 8220 + - uid: 8158 components: - type: Transform pos: -72.5,76.5 parent: 2 - - uid: 8221 + - uid: 8159 components: - type: Transform pos: -73.5,78.5 parent: 2 - - uid: 8222 + - uid: 8160 components: - type: Transform pos: -73.5,77.5 parent: 2 - - uid: 8223 + - uid: 8161 components: - type: Transform pos: -73.5,76.5 parent: 2 - - uid: 8224 + - uid: 8162 components: - type: Transform pos: -74.5,77.5 parent: 2 - - uid: 8225 + - uid: 8163 components: - type: Transform pos: -74.5,81.5 parent: 2 - - uid: 8226 + - uid: 8164 components: - type: Transform pos: -81.5,78.5 parent: 2 - - uid: 8227 + - uid: 8165 components: - type: Transform pos: -81.5,77.5 parent: 2 - - uid: 8228 + - uid: 8166 components: - type: Transform pos: -81.5,76.5 parent: 2 - - uid: 8229 + - uid: 8167 components: - type: Transform pos: -80.5,78.5 parent: 2 - - uid: 8230 + - uid: 8168 components: - type: Transform pos: -80.5,77.5 parent: 2 - - uid: 8231 + - uid: 8169 components: - type: Transform pos: -80.5,76.5 parent: 2 - - uid: 8232 + - uid: 8170 components: - type: Transform pos: -79.5,78.5 parent: 2 - - uid: 8233 + - uid: 8171 components: - type: Transform pos: -79.5,77.5 parent: 2 - - uid: 8234 + - uid: 8172 components: - type: Transform pos: -79.5,76.5 parent: 2 - - uid: 8235 + - uid: 8173 components: - type: Transform pos: -78.5,78.5 parent: 2 - - uid: 8236 + - uid: 8174 components: - type: Transform pos: -78.5,77.5 parent: 2 - - uid: 8237 + - uid: 8175 components: - type: Transform pos: -78.5,76.5 parent: 2 - - uid: 8238 + - uid: 8176 components: - type: Transform pos: -77.5,78.5 parent: 2 - - uid: 8239 + - uid: 8177 components: - type: Transform pos: -77.5,77.5 parent: 2 - - uid: 8240 + - uid: 8178 components: - type: Transform pos: -77.5,76.5 parent: 2 - - uid: 8241 + - uid: 8179 components: - type: Transform pos: -76.5,77.5 parent: 2 - - uid: 8242 + - uid: 8180 components: - type: Transform pos: -82.5,74.5 parent: 2 - - uid: 8243 + - uid: 8181 components: - type: Transform pos: -82.5,73.5 parent: 2 - - uid: 8244 + - uid: 8182 components: - type: Transform pos: -82.5,72.5 parent: 2 - - uid: 8245 + - uid: 8183 components: - type: Transform pos: -81.5,74.5 parent: 2 - - uid: 8246 + - uid: 8184 components: - type: Transform pos: -81.5,73.5 parent: 2 - - uid: 8247 + - uid: 8185 components: - type: Transform pos: -81.5,72.5 parent: 2 - - uid: 8248 + - uid: 8186 components: - type: Transform pos: -80.5,74.5 parent: 2 - - uid: 8249 + - uid: 8187 components: - type: Transform pos: -80.5,73.5 parent: 2 - - uid: 8250 + - uid: 8188 components: - type: Transform pos: -80.5,72.5 parent: 2 - - uid: 8251 + - uid: 8189 components: - type: Transform pos: -79.5,74.5 parent: 2 - - uid: 8252 + - uid: 8190 components: - type: Transform pos: -79.5,73.5 parent: 2 - - uid: 8253 + - uid: 8191 components: - type: Transform pos: -79.5,72.5 parent: 2 - - uid: 8254 + - uid: 8192 components: - type: Transform pos: -78.5,74.5 parent: 2 - - uid: 8255 + - uid: 8193 components: - type: Transform pos: -78.5,73.5 parent: 2 - - uid: 8256 + - uid: 8194 components: - type: Transform pos: -78.5,72.5 parent: 2 - - uid: 8257 + - uid: 8195 components: - type: Transform pos: -77.5,73.5 parent: 2 - - uid: 8258 + - uid: 8196 components: - type: Transform pos: -76.5,73.5 parent: 2 - - uid: 8259 + - uid: 8197 components: - type: Transform pos: -81.5,70.5 parent: 2 - - uid: 8260 + - uid: 8198 components: - type: Transform pos: -81.5,69.5 parent: 2 - - uid: 8261 + - uid: 8199 components: - type: Transform pos: -81.5,68.5 parent: 2 - - uid: 8262 + - uid: 8200 components: - type: Transform pos: -80.5,70.5 parent: 2 - - uid: 8263 + - uid: 8201 components: - type: Transform pos: -80.5,69.5 parent: 2 - - uid: 8264 + - uid: 8202 components: - type: Transform pos: -80.5,68.5 parent: 2 - - uid: 8265 + - uid: 8203 components: - type: Transform pos: -79.5,70.5 parent: 2 - - uid: 8266 + - uid: 8204 components: - type: Transform pos: -79.5,69.5 parent: 2 - - uid: 8267 + - uid: 8205 components: - type: Transform pos: -79.5,68.5 parent: 2 - - uid: 8268 + - uid: 8206 components: - type: Transform pos: -78.5,70.5 parent: 2 - - uid: 8269 + - uid: 8207 components: - type: Transform pos: -78.5,69.5 parent: 2 - - uid: 8270 + - uid: 8208 components: - type: Transform pos: -78.5,68.5 parent: 2 - - uid: 8271 + - uid: 8209 components: - type: Transform pos: -77.5,70.5 parent: 2 - - uid: 8272 + - uid: 8210 components: - type: Transform pos: -77.5,69.5 parent: 2 - - uid: 8273 + - uid: 8211 components: - type: Transform pos: -77.5,68.5 parent: 2 - - uid: 8274 + - uid: 8212 components: - type: Transform pos: -76.5,69.5 parent: 2 - - uid: 8275 + - uid: 8213 components: - type: Transform pos: -73.5,70.5 parent: 2 - - uid: 8276 + - uid: 8214 components: - type: Transform pos: -73.5,69.5 parent: 2 - - uid: 8277 + - uid: 8215 components: - type: Transform pos: -73.5,68.5 parent: 2 - - uid: 8278 + - uid: 8216 components: - type: Transform pos: -72.5,70.5 parent: 2 - - uid: 8279 + - uid: 8217 components: - type: Transform pos: -72.5,69.5 parent: 2 - - uid: 8280 + - uid: 8218 components: - type: Transform pos: -72.5,68.5 parent: 2 - - uid: 8281 + - uid: 8219 components: - type: Transform pos: -71.5,70.5 parent: 2 - - uid: 8282 + - uid: 8220 components: - type: Transform pos: -71.5,69.5 parent: 2 - - uid: 8283 + - uid: 8221 components: - type: Transform pos: -71.5,68.5 parent: 2 - - uid: 8284 + - uid: 8222 components: - type: Transform pos: -70.5,70.5 parent: 2 - - uid: 8285 + - uid: 8223 components: - type: Transform pos: -70.5,69.5 parent: 2 - - uid: 8286 + - uid: 8224 components: - type: Transform pos: -70.5,68.5 parent: 2 - - uid: 8287 + - uid: 8225 components: - type: Transform pos: -69.5,70.5 parent: 2 - - uid: 8288 + - uid: 8226 components: - type: Transform pos: -69.5,69.5 parent: 2 - - uid: 8289 + - uid: 8227 components: - type: Transform pos: -69.5,68.5 parent: 2 - - uid: 8290 + - uid: 8228 components: - type: Transform pos: -74.5,69.5 parent: 2 - - uid: 8291 + - uid: 8229 components: - type: Transform pos: -74.5,73.5 parent: 2 - - uid: 8292 + - uid: 8230 components: - type: Transform pos: -73.5,73.5 parent: 2 - - uid: 8293 + - uid: 8231 components: - type: Transform pos: -72.5,74.5 parent: 2 - - uid: 8294 + - uid: 8232 components: - type: Transform pos: -72.5,73.5 parent: 2 - - uid: 8295 + - uid: 8233 components: - type: Transform pos: -72.5,72.5 parent: 2 - - uid: 8296 + - uid: 8234 components: - type: Transform pos: -71.5,74.5 parent: 2 - - uid: 8297 + - uid: 8235 components: - type: Transform pos: -71.5,73.5 parent: 2 - - uid: 8298 + - uid: 8236 components: - type: Transform pos: -71.5,72.5 parent: 2 - - uid: 8299 + - uid: 8237 components: - type: Transform pos: -70.5,74.5 parent: 2 - - uid: 8300 + - uid: 8238 components: - type: Transform pos: -70.5,73.5 parent: 2 - - uid: 8301 + - uid: 8239 components: - type: Transform pos: -70.5,72.5 parent: 2 - - uid: 8302 + - uid: 8240 components: - type: Transform pos: -69.5,74.5 parent: 2 - - uid: 8303 + - uid: 8241 components: - type: Transform pos: -69.5,73.5 parent: 2 - - uid: 8304 + - uid: 8242 components: - type: Transform pos: -69.5,72.5 parent: 2 - - uid: 8305 + - uid: 8243 components: - type: Transform pos: -68.5,74.5 parent: 2 - - uid: 8306 + - uid: 8244 components: - type: Transform pos: -68.5,73.5 parent: 2 - - uid: 8307 + - uid: 8245 components: - type: Transform pos: -68.5,72.5 parent: 2 - - uid: 8308 + - uid: 8246 components: - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 8309 + - uid: 8247 components: - type: Transform pos: -48.5,42.5 parent: 2 - - uid: 8310 + - uid: 8248 components: - type: Transform pos: -47.5,42.5 parent: 2 - - uid: 8311 + - uid: 8249 components: - type: Transform pos: -47.5,43.5 parent: 2 - - uid: 8312 + - uid: 8250 components: - type: Transform pos: -47.5,44.5 parent: 2 - - uid: 8313 + - uid: 8251 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 8314 + - uid: 8252 components: - type: Transform pos: -55.5,43.5 parent: 2 - - uid: 8315 + - uid: 8253 components: - type: Transform pos: -55.5,42.5 parent: 2 - - uid: 8316 + - uid: 8254 components: - type: Transform pos: -54.5,42.5 parent: 2 - - uid: 8317 + - uid: 8255 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 8318 + - uid: 8256 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 8319 + - uid: 8257 components: - type: Transform pos: -54.5,39.5 parent: 2 - - uid: 8320 + - uid: 8258 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 8321 + - uid: 8259 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 8322 + - uid: 8260 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 8323 + - uid: 8261 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 8324 + - uid: 8262 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 8325 + - uid: 8263 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 8326 + - uid: 8264 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 8327 + - uid: 8265 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 8328 + - uid: 8266 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 8329 + - uid: 8267 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 8330 + - uid: 8268 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 8331 + - uid: 8269 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 8332 + - uid: 8270 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 8333 + - uid: 8271 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 8334 + - uid: 8272 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 8335 + - uid: 8273 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 8336 + - uid: 8274 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 8337 + - uid: 8275 components: - type: Transform pos: -46.5,31.5 parent: 2 - - uid: 8338 + - uid: 8276 components: - type: Transform pos: -46.5,32.5 parent: 2 - - uid: 8339 + - uid: 8277 components: - type: Transform pos: -46.5,33.5 parent: 2 - - uid: 8340 + - uid: 8278 components: - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 8341 + - uid: 8279 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 8342 + - uid: 8280 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 8343 + - uid: 8281 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 8344 + - uid: 8282 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 8345 + - uid: 8283 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 8346 + - uid: 8284 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 8347 + - uid: 8285 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 8348 + - uid: 8286 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 8349 + - uid: 8287 components: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 8350 + - uid: 8288 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 8351 + - uid: 8289 components: - type: Transform pos: -53.5,-11.5 parent: 2 - - uid: 8352 + - uid: 8290 components: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 8353 + - uid: 8291 components: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 8354 + - uid: 8292 components: - type: Transform pos: -58.5,-5.5 parent: 2 - - uid: 8355 + - uid: 8293 components: - type: Transform pos: -55.5,-11.5 parent: 2 - - uid: 8356 + - uid: 8294 components: - type: Transform pos: -57.5,-11.5 parent: 2 - - uid: 8357 + - uid: 8295 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 8358 + - uid: 8296 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 8359 + - uid: 8297 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 8360 + - uid: 8298 components: - type: Transform pos: -59.5,-11.5 parent: 2 - - uid: 8361 + - uid: 8299 components: - type: Transform pos: -58.5,-11.5 parent: 2 - - uid: 8362 + - uid: 8300 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 8363 + - uid: 8301 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 8364 + - uid: 8302 components: - type: Transform pos: -59.5,-7.5 parent: 2 - - uid: 8365 + - uid: 8303 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 8366 + - uid: 8304 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 8367 + - uid: 8305 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 8368 + - uid: 8306 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 8369 + - uid: 8307 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 8370 + - uid: 8308 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 8371 + - uid: 8309 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 8372 + - uid: 8310 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 8373 + - uid: 8311 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 8374 + - uid: 8312 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 8375 + - uid: 8313 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 8376 + - uid: 8314 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 8377 + - uid: 8315 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 8378 + - uid: 8316 components: - type: Transform pos: -33.5,-53.5 parent: 2 - - uid: 8379 + - uid: 8317 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 8380 + - uid: 8318 components: - type: Transform pos: -33.5,-51.5 parent: 2 - - uid: 8381 + - uid: 8319 components: - type: Transform pos: -33.5,-50.5 parent: 2 - - uid: 8382 + - uid: 8320 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 8383 + - uid: 8321 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 8384 + - uid: 8322 components: - type: Transform pos: -34.5,-48.5 parent: 2 - - uid: 8385 + - uid: 8323 components: - type: Transform pos: -35.5,-48.5 parent: 2 - - uid: 8386 + - uid: 8324 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 8387 + - uid: 8325 components: - type: Transform pos: -37.5,-48.5 parent: 2 - - uid: 8388 + - uid: 8326 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 8389 + - uid: 8327 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 8390 + - uid: 8328 components: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 8391 + - uid: 8329 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 8392 + - uid: 8330 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 8393 + - uid: 8331 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 8394 + - uid: 8332 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 8395 + - uid: 8333 components: - type: Transform pos: -42.5,-45.5 parent: 2 - - uid: 8396 + - uid: 8334 components: - type: Transform pos: -42.5,-44.5 parent: 2 - - uid: 8397 + - uid: 8335 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 8398 + - uid: 8336 components: - type: Transform pos: -42.5,-42.5 parent: 2 - - uid: 8399 + - uid: 8337 components: - type: Transform pos: -42.5,-41.5 parent: 2 - - uid: 8400 + - uid: 8338 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 8401 + - uid: 8339 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 8402 + - uid: 8340 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 8403 + - uid: 8341 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 8404 + - uid: 8342 components: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 8405 + - uid: 8343 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 8406 + - uid: 8344 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 8407 + - uid: 8345 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 8408 + - uid: 8346 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 8409 + - uid: 8347 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 8410 + - uid: 8348 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 8411 + - uid: 8349 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 8412 + - uid: 8350 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 8413 + - uid: 8351 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 8414 + - uid: 8352 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 8415 + - uid: 8353 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 8416 + - uid: 8354 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 8417 + - uid: 8355 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 8418 + - uid: 8356 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 8419 + - uid: 8357 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 8420 + - uid: 8358 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 8421 + - uid: 8359 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 8422 + - uid: 8360 components: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 8423 + - uid: 8361 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 8424 + - uid: 8362 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 8425 + - uid: 8363 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 8426 + - uid: 8364 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 8427 + - uid: 8365 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 8428 + - uid: 8366 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 8429 + - uid: 8367 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 8430 + - uid: 8368 components: - type: Transform pos: -54.5,-24.5 parent: 2 - - uid: 8431 + - uid: 8369 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 8432 + - uid: 8370 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 8433 + - uid: 8371 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 8434 + - uid: 8372 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 8435 + - uid: 8373 components: - type: Transform pos: -25.5,-78.5 parent: 2 - - uid: 8436 + - uid: 8374 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 8437 + - uid: 8375 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 8438 + - uid: 8376 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 8439 + - uid: 8377 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 8440 + - uid: 8378 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 8441 + - uid: 8379 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 8442 + - uid: 8380 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 8443 + - uid: 8381 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 8444 + - uid: 8382 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 8445 + - uid: 8383 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 8446 + - uid: 8384 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 8447 + - uid: 8385 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 8448 + - uid: 8386 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 8449 + - uid: 8387 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 8450 + - uid: 8388 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 8451 + - uid: 8389 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 8452 + - uid: 8390 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 8453 + - uid: 8391 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 8454 + - uid: 8392 components: - type: Transform pos: -26.5,-60.5 parent: 2 - - uid: 8455 + - uid: 8393 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 8456 + - uid: 8394 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 8457 + - uid: 8395 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 8458 + - uid: 8396 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 8459 + - uid: 8397 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 8460 + - uid: 8398 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 8461 + - uid: 8399 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 8462 + - uid: 8400 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 8463 + - uid: 8401 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 8464 + - uid: 8402 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 8465 + - uid: 8403 components: - type: Transform pos: -14.5,-29.5 parent: 2 - - uid: 8466 + - uid: 8404 components: - type: Transform pos: -14.5,-30.5 parent: 2 - - uid: 8467 + - uid: 8405 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 8468 + - uid: 8406 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 8469 + - uid: 8407 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 8470 + - uid: 8408 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 8471 + - uid: 8409 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 8472 + - uid: 8410 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 8473 + - uid: 8411 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 8474 + - uid: 8412 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 8475 + - uid: 8413 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 8476 + - uid: 8414 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 8477 + - uid: 8415 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 8478 + - uid: 8416 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 8479 + - uid: 8417 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 8480 + - uid: 8418 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 8481 + - uid: 8419 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 8482 + - uid: 8420 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 8483 + - uid: 8421 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 8484 + - uid: 8422 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 8485 + - uid: 8423 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 8486 + - uid: 8424 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 8487 + - uid: 8425 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 8488 + - uid: 8426 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 8489 + - uid: 8427 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 8490 + - uid: 8428 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 8491 + - uid: 8429 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 8492 + - uid: 8430 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 8493 + - uid: 8431 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 8494 + - uid: 8432 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 8495 + - uid: 8433 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 8496 + - uid: 8434 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 8497 + - uid: 8435 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 8498 + - uid: 8436 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 8499 + - uid: 8437 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 8500 + - uid: 8438 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 8501 + - uid: 8439 components: - type: Transform pos: -23.5,-46.5 parent: 2 - - uid: 8502 + - uid: 8440 components: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 8503 + - uid: 8441 components: - type: Transform pos: -23.5,-48.5 parent: 2 - - uid: 8504 + - uid: 8442 components: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 8505 + - uid: 8443 components: - type: Transform pos: -23.5,-50.5 parent: 2 - - uid: 8506 + - uid: 8444 components: - type: Transform pos: -23.5,-51.5 parent: 2 - - uid: 8507 + - uid: 8445 components: - type: Transform pos: -23.5,-52.5 parent: 2 - - uid: 8508 + - uid: 8446 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 8509 + - uid: 8447 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 8510 + - uid: 8448 components: - type: Transform pos: -26.5,-52.5 parent: 2 - - uid: 8511 + - uid: 8449 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 8512 + - uid: 8450 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 8513 + - uid: 8451 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 8514 + - uid: 8452 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 8515 + - uid: 8453 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 8516 + - uid: 8454 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 8517 + - uid: 8455 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 8518 + - uid: 8456 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 8519 + - uid: 8457 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 8520 + - uid: 8458 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 8521 + - uid: 8459 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 8522 + - uid: 8460 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 8523 + - uid: 8461 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 8524 + - uid: 8462 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 8525 + - uid: 8463 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 8526 + - uid: 8464 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 8527 + - uid: 8465 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 8528 + - uid: 8466 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 8529 + - uid: 8467 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 8530 + - uid: 8468 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 8531 + - uid: 8469 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 8532 + - uid: 8470 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 8533 + - uid: 8471 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 8534 + - uid: 8472 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 8535 + - uid: 8473 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 8536 + - uid: 8474 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 8537 + - uid: 8475 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 8538 + - uid: 8476 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 8539 + - uid: 8477 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 8540 + - uid: 8478 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 8541 + - uid: 8479 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 8542 + - uid: 8480 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 8543 + - uid: 8481 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 8544 + - uid: 8482 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 8545 + - uid: 8483 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 8546 + - uid: 8484 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 8547 + - uid: 8485 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 8548 + - uid: 8486 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 8549 + - uid: 8487 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 8550 + - uid: 8488 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 8551 + - uid: 8489 components: - type: Transform pos: -41.5,15.5 parent: 2 - - uid: 8552 + - uid: 8490 components: - type: Transform pos: -41.5,16.5 parent: 2 - - uid: 8553 + - uid: 8491 components: - type: Transform pos: -41.5,17.5 parent: 2 - - uid: 8554 + - uid: 8492 components: - type: Transform pos: -41.5,18.5 parent: 2 - - uid: 8555 + - uid: 8493 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 8556 + - uid: 8494 components: - type: Transform pos: -41.5,20.5 parent: 2 - - uid: 8557 + - uid: 8495 components: - type: Transform pos: -41.5,21.5 parent: 2 - - uid: 8558 + - uid: 8496 components: - type: Transform pos: -41.5,22.5 parent: 2 - - uid: 8559 + - uid: 8497 components: - type: Transform pos: -41.5,23.5 parent: 2 - - uid: 8560 + - uid: 8498 components: - type: Transform pos: -41.5,24.5 parent: 2 - - uid: 8561 + - uid: 8499 components: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 8562 + - uid: 8500 components: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8563 + - uid: 8501 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 8564 + - uid: 8502 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 8565 + - uid: 8503 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 8566 + - uid: 8504 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 8567 + - uid: 8505 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 8568 + - uid: 8506 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 8569 + - uid: 8507 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 8570 + - uid: 8508 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 8571 + - uid: 8509 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 8572 + - uid: 8510 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 8573 + - uid: 8511 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 8574 + - uid: 8512 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 8575 + - uid: 8513 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 8576 + - uid: 8514 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 8577 + - uid: 8515 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 8578 + - uid: 8516 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 8579 + - uid: 8517 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 8580 + - uid: 8518 components: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 8581 + - uid: 8519 components: - type: Transform pos: -41.5,39.5 parent: 2 - - uid: 8582 + - uid: 8520 components: - type: Transform pos: -40.5,39.5 parent: 2 - - uid: 8583 + - uid: 8521 components: - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 8584 + - uid: 8522 components: - type: Transform pos: -37.5,40.5 parent: 2 - - uid: 8585 + - uid: 8523 components: - type: Transform pos: -37.5,39.5 parent: 2 - - uid: 8586 + - uid: 8524 components: - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 8587 + - uid: 8525 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 8588 + - uid: 8526 components: - type: Transform pos: -35.5,38.5 parent: 2 - - uid: 8589 + - uid: 8527 components: - type: Transform pos: -35.5,37.5 parent: 2 - - uid: 8590 + - uid: 8528 components: - type: Transform pos: -36.5,37.5 parent: 2 - - uid: 8591 + - uid: 8529 components: - type: Transform pos: -37.5,37.5 parent: 2 - - uid: 8592 + - uid: 8530 components: - type: Transform pos: -38.5,37.5 parent: 2 - - uid: 8593 + - uid: 8531 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 8594 + - uid: 8532 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 8595 + - uid: 8533 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 8596 + - uid: 8534 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 8597 + - uid: 8535 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 8598 + - uid: 8536 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 8599 + - uid: 8537 components: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 8600 + - uid: 8538 components: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 8601 + - uid: 8539 components: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 8602 + - uid: 8540 components: - type: Transform pos: 20.5,24.5 parent: 2 - - uid: 8603 + - uid: 8541 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 8604 + - uid: 8542 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 8605 + - uid: 8543 components: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 8606 + - uid: 8544 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 8607 + - uid: 8545 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 8608 + - uid: 8546 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 8609 + - uid: 8547 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 8610 + - uid: 8548 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 8611 + - uid: 8549 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 8612 + - uid: 8550 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 8613 + - uid: 8551 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 8614 + - uid: 8552 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 8615 + - uid: 8553 components: - type: Transform pos: 17.5,14.5 parent: 2 - - uid: 8616 + - uid: 8554 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 8617 + - uid: 8555 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 8618 + - uid: 8556 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 8619 + - uid: 8557 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 8620 + - uid: 8558 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 8621 + - uid: 8559 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 8622 + - uid: 8560 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 8623 + - uid: 8561 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 8624 + - uid: 8562 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 8625 + - uid: 8563 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 8626 + - uid: 8564 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 8627 + - uid: 8565 components: - type: Transform pos: 67.5,-0.5 parent: 2 - - uid: 8628 + - uid: 8566 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 8629 + - uid: 8567 components: - type: Transform pos: 76.5,-0.5 parent: 2 - - uid: 8630 + - uid: 8568 components: - type: Transform pos: 75.5,-0.5 parent: 2 - - uid: 8631 + - uid: 8569 components: - type: Transform pos: 74.5,-0.5 parent: 2 - - uid: 8632 + - uid: 8570 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 8633 + - uid: 8571 components: - type: Transform pos: 72.5,-0.5 parent: 2 - - uid: 8634 + - uid: 8572 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 8635 + - uid: 8573 components: - type: Transform pos: 70.5,-0.5 parent: 2 - - uid: 8636 + - uid: 8574 components: - type: Transform pos: 73.5,-2.5 parent: 2 - - uid: 8637 + - uid: 8575 components: - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 8638 + - uid: 8576 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 8639 + - uid: 8577 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 8640 + - uid: 8578 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 8641 + - uid: 8579 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 8642 + - uid: 8580 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 8643 + - uid: 8581 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 8644 + - uid: 8582 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 8645 + - uid: 8583 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 8646 + - uid: 8584 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 8647 + - uid: 8585 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 8648 + - uid: 8586 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 8649 + - uid: 8587 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 8650 + - uid: 8588 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 8651 + - uid: 8589 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 8652 + - uid: 8590 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 8653 + - uid: 8591 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 8654 + - uid: 8592 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 8655 + - uid: 8593 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 8656 + - uid: 8594 components: - type: Transform pos: 58.5,25.5 parent: 2 - - uid: 8657 + - uid: 8595 components: - type: Transform pos: 57.5,25.5 parent: 2 - - uid: 8658 + - uid: 8596 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 8659 + - uid: 8597 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 8660 + - uid: 8598 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 8661 + - uid: 8599 components: - type: Transform pos: 53.5,25.5 parent: 2 - - uid: 8662 + - uid: 8600 components: - type: Transform pos: 52.5,25.5 parent: 2 - - uid: 8663 + - uid: 8601 components: - type: Transform pos: 51.5,25.5 parent: 2 - - uid: 8664 + - uid: 8602 components: - type: Transform pos: 50.5,25.5 parent: 2 - - uid: 8665 + - uid: 8603 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 8666 + - uid: 8604 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 8667 + - uid: 8605 components: - type: Transform pos: 50.5,22.5 parent: 2 - - uid: 8668 + - uid: 8606 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 8669 + - uid: 8607 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 8670 + - uid: 8608 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 8671 + - uid: 8609 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 8672 + - uid: 8610 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 8673 + - uid: 8611 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 8674 + - uid: 8612 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 8675 + - uid: 8613 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 8676 + - uid: 8614 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 8677 + - uid: 8615 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 8678 + - uid: 8616 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 8679 + - uid: 8617 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 8680 + - uid: 8618 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 8681 + - uid: 8619 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8682 + - uid: 8620 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 8683 + - uid: 8621 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 8684 + - uid: 8622 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 8685 + - uid: 8623 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 8686 + - uid: 8624 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 8687 + - uid: 8625 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 8688 + - uid: 8626 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 8689 + - uid: 8627 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 8690 + - uid: 8628 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 8691 + - uid: 8629 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 8692 + - uid: 8630 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 8693 + - uid: 8631 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 8694 + - uid: 8632 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 8695 + - uid: 8633 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 8696 + - uid: 8634 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 8697 + - uid: 8635 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 8698 + - uid: 8636 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 8699 + - uid: 8637 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 8700 + - uid: 8638 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 8701 + - uid: 8639 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 8702 + - uid: 8640 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 8703 + - uid: 8641 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 8704 + - uid: 8642 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 8705 + - uid: 8643 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 8706 + - uid: 8644 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 8707 + - uid: 8645 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 8708 + - uid: 8646 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 8709 + - uid: 8647 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 8710 + - uid: 8648 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 8711 + - uid: 8649 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 8712 + - uid: 8650 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 8713 + - uid: 8651 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 8714 + - uid: 8652 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 8715 + - uid: 8653 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 8716 + - uid: 8654 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 8717 + - uid: 8655 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 8718 + - uid: 8656 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 8719 + - uid: 8657 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 8720 + - uid: 8658 components: - type: Transform pos: 18.5,5.5 parent: 2 - - uid: 8721 + - uid: 8659 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8722 + - uid: 8660 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8723 + - uid: 8661 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8724 + - uid: 8662 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 8725 + - uid: 8663 components: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 8726 + - uid: 8664 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 8727 + - uid: 8665 components: - type: Transform pos: 17.5,4.5 parent: 2 - - uid: 8728 + - uid: 8666 components: - type: Transform pos: 17.5,3.5 parent: 2 - - uid: 8729 + - uid: 8667 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 8730 + - uid: 8668 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 8731 + - uid: 8669 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 8732 + - uid: 8670 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 8733 + - uid: 8671 components: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 8734 + - uid: 8672 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 8735 + - uid: 8673 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 8736 + - uid: 8674 components: - type: Transform pos: 17.5,-4.5 parent: 2 - - uid: 8737 + - uid: 8675 components: - type: Transform pos: 17.5,-5.5 parent: 2 - - uid: 8738 + - uid: 8676 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 8739 + - uid: 8677 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 8740 + - uid: 8678 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 8741 + - uid: 8679 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 8742 + - uid: 8680 components: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 8743 + - uid: 8681 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 8744 + - uid: 8682 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 8745 + - uid: 8683 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 8746 + - uid: 8684 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 8747 + - uid: 8685 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 8748 + - uid: 8686 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 8749 + - uid: 8687 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 8750 + - uid: 8688 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 8751 + - uid: 8689 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 8752 + - uid: 8690 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 8753 + - uid: 8691 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 8754 + - uid: 8692 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 8755 + - uid: 8693 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 8756 + - uid: 8694 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 8757 + - uid: 8695 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 8758 + - uid: 8696 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 8759 + - uid: 8697 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 8760 + - uid: 8698 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 8761 + - uid: 8699 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 8762 + - uid: 8700 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 8763 + - uid: 8701 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 8764 + - uid: 8702 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 8765 + - uid: 8703 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 8766 + - uid: 8704 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 8767 + - uid: 8705 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 8768 + - uid: 8706 components: - type: Transform pos: 0.49999997,-19.5 parent: 2 - - uid: 8769 + - uid: 8707 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 8770 + - uid: 8708 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 8771 + - uid: 8709 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 8772 + - uid: 8710 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 8773 + - uid: 8711 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 8774 + - uid: 8712 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 8775 + - uid: 8713 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 8776 + - uid: 8714 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 8777 + - uid: 8715 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 8778 + - uid: 8716 components: - type: Transform pos: -9.5,-19.5 parent: 2 - - uid: 8779 + - uid: 8717 components: - type: Transform pos: -10.5,-19.5 parent: 2 - - uid: 8780 + - uid: 8718 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 8781 + - uid: 8719 components: - type: Transform pos: -12.5,-19.5 parent: 2 - - uid: 8782 + - uid: 8720 components: - type: Transform pos: -13.5,-19.5 parent: 2 - - uid: 8783 + - uid: 8721 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 8784 + - uid: 8722 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 8785 + - uid: 8723 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 8786 + - uid: 8724 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 8787 + - uid: 8725 components: - type: Transform pos: -18.5,-19.5 parent: 2 - - uid: 8788 + - uid: 8726 components: - type: Transform pos: -18.5,-18.5 parent: 2 - - uid: 8789 + - uid: 8727 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 8790 + - uid: 8728 components: - type: Transform pos: -18.5,-16.5 parent: 2 - - uid: 8791 + - uid: 8729 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 8792 + - uid: 8730 components: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 8793 + - uid: 8731 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 8794 + - uid: 8732 components: - type: Transform pos: -18.5,-12.5 parent: 2 - - uid: 8795 + - uid: 8733 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 8796 + - uid: 8734 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 8797 + - uid: 8735 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 8798 + - uid: 8736 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 8799 + - uid: 8737 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 8800 + - uid: 8738 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 8801 + - uid: 8739 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 8802 + - uid: 8740 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 8803 + - uid: 8741 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 8804 + - uid: 8742 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 8805 + - uid: 8743 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 8806 + - uid: 8744 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 8807 + - uid: 8745 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 8808 + - uid: 8746 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 8809 + - uid: 8747 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 8810 + - uid: 8748 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 8811 + - uid: 8749 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 8812 + - uid: 8750 components: - type: Transform pos: -42.5,-19.5 parent: 2 - - uid: 8813 + - uid: 8751 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 8814 + - uid: 8752 components: - type: Transform pos: -40.5,-19.5 parent: 2 - - uid: 8815 + - uid: 8753 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 8816 + - uid: 8754 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 8817 + - uid: 8755 components: - type: Transform pos: -37.5,-19.5 parent: 2 - - uid: 8818 + - uid: 8756 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 8819 + - uid: 8757 components: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 8820 + - uid: 8758 components: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 8821 + - uid: 8759 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 8822 + - uid: 8760 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 8823 + - uid: 8761 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 8824 + - uid: 8762 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 8825 + - uid: 8763 components: - type: Transform pos: -29.5,-19.5 parent: 2 - - uid: 8826 + - uid: 8764 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 8827 + - uid: 8765 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 8828 + - uid: 8766 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 8829 + - uid: 8767 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 8830 + - uid: 8768 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 8831 + - uid: 8769 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 8832 + - uid: 8770 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 8833 + - uid: 8771 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 8834 + - uid: 8772 components: - type: Transform pos: -20.5,-19.5 parent: 2 - - uid: 8835 + - uid: 8773 components: - type: Transform pos: -19.5,-19.5 parent: 2 - - uid: 8836 + - uid: 8774 components: - type: Transform pos: -14.5,-28.5 parent: 2 - - uid: 8837 + - uid: 8775 components: - type: Transform pos: -14.5,-27.5 parent: 2 - - uid: 8838 + - uid: 8776 components: - type: Transform pos: -14.5,-26.5 parent: 2 - - uid: 8839 + - uid: 8777 components: - type: Transform pos: -14.5,-25.5 parent: 2 - - uid: 8840 + - uid: 8778 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 8841 + - uid: 8779 components: - type: Transform pos: -13.5,-24.5 parent: 2 - - uid: 8842 + - uid: 8780 components: - type: Transform pos: -13.5,-23.5 parent: 2 - - uid: 8843 + - uid: 8781 components: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 8844 + - uid: 8782 components: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 8845 + - uid: 8783 components: - type: Transform pos: -13.5,-20.5 parent: 2 - - uid: 8846 + - uid: 8784 components: - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 8847 + - uid: 8785 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 8848 + - uid: 8786 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 8849 + - uid: 8787 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 8850 + - uid: 8788 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 8851 + - uid: 8789 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 8852 + - uid: 8790 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 8853 + - uid: 8791 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 8854 + - uid: 8792 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 8855 + - uid: 8793 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 8856 + - uid: 8794 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 8857 + - uid: 8795 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 8858 + - uid: 8796 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 8859 + - uid: 8797 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 8860 + - uid: 8798 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 8861 + - uid: 8799 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 8862 + - uid: 8800 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 8863 + - uid: 8801 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 8864 + - uid: 8802 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 8865 + - uid: 8803 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 8866 + - uid: 8804 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 8867 + - uid: 8805 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 8868 + - uid: 8806 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 8869 + - uid: 8807 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 8870 + - uid: 8808 components: - type: Transform pos: 48.5,-28.5 parent: 2 - - uid: 8871 + - uid: 8809 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 8872 + - uid: 8810 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 8873 + - uid: 8811 components: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 8874 + - uid: 8812 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 8875 + - uid: 8813 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 8876 + - uid: 8814 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 8877 + - uid: 8815 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 8878 + - uid: 8816 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 8879 + - uid: 8817 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 8880 + - uid: 8818 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 8881 + - uid: 8819 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 8882 + - uid: 8820 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 8883 + - uid: 8821 components: - type: Transform pos: 40.5,-23.5 parent: 2 - - uid: 8884 + - uid: 8822 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 8885 + - uid: 8823 components: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 8886 + - uid: 8824 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 8887 + - uid: 8825 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 8888 + - uid: 8826 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 8889 + - uid: 8827 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 8890 + - uid: 8828 components: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 8891 + - uid: 8829 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 8892 + - uid: 8830 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 8893 + - uid: 8831 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 8894 + - uid: 8832 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 8895 + - uid: 8833 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 8896 + - uid: 8834 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 8897 + - uid: 8835 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 8898 + - uid: 8836 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 8899 + - uid: 8837 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 8900 + - uid: 8838 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 8901 + - uid: 8839 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 8902 + - uid: 8840 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 8903 + - uid: 8841 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 8904 + - uid: 8842 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 8905 + - uid: 8843 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 8906 + - uid: 8844 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 8907 + - uid: 8845 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 8908 + - uid: 8846 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 8909 + - uid: 8847 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 8910 + - uid: 8848 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 8911 + - uid: 8849 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 8912 + - uid: 8850 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 8913 + - uid: 8851 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 8914 + - uid: 8852 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 8915 + - uid: 8853 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 8916 + - uid: 8854 components: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 8917 + - uid: 8855 components: - type: Transform pos: 53.5,-7.5 parent: 2 - - uid: 8918 + - uid: 8856 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 8919 + - uid: 8857 components: - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 8920 + - uid: 8858 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 8921 + - uid: 8859 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 8922 + - uid: 8860 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8923 + - uid: 8861 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 8924 + - uid: 8862 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 8925 + - uid: 8863 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 8926 + - uid: 8864 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 8927 + - uid: 8865 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 8928 + - uid: 8866 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 8929 + - uid: 8867 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 8930 + - uid: 8868 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 8931 + - uid: 8869 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 8932 + - uid: 8870 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 8933 + - uid: 8871 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 8934 + - uid: 8872 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 8935 + - uid: 8873 components: - type: Transform pos: 43.5,-7.5 parent: 2 - - uid: 8936 + - uid: 8874 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 8937 + - uid: 8875 components: - type: Transform pos: 41.5,-7.5 parent: 2 - - uid: 8938 + - uid: 8876 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 8939 + - uid: 8877 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 8940 + - uid: 8878 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 8941 + - uid: 8879 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 8942 + - uid: 8880 components: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 8943 + - uid: 8881 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 8944 + - uid: 8882 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 8945 + - uid: 8883 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 8946 + - uid: 8884 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 8947 + - uid: 8885 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 8948 + - uid: 8886 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 8949 + - uid: 8887 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 8950 + - uid: 8888 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 8951 + - uid: 8889 components: - type: Transform pos: 32.5,-11.5 parent: 2 - - uid: 8952 + - uid: 8890 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 8953 + - uid: 8891 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 8954 + - uid: 8892 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 8955 + - uid: 8893 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 8956 + - uid: 8894 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 8957 + - uid: 8895 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 8958 + - uid: 8896 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 8959 + - uid: 8897 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 8960 + - uid: 8898 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 8961 + - uid: 8899 components: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 8962 + - uid: 8900 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 8963 + - uid: 8901 components: - type: Transform pos: 21.5,-10.5 parent: 2 - - uid: 8964 + - uid: 8902 components: - type: Transform pos: 20.5,-10.5 parent: 2 - - uid: 8965 + - uid: 8903 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - uid: 8966 + - uid: 8904 components: - type: Transform pos: 18.5,-10.5 parent: 2 - - uid: 8967 + - uid: 8905 components: - type: Transform pos: 79.5,-44.5 parent: 2 - - uid: 8968 + - uid: 8906 components: - type: Transform pos: 79.5,-43.5 parent: 2 - - uid: 8969 + - uid: 8907 components: - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 8970 + - uid: 8908 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 8971 + - uid: 8909 components: - type: Transform pos: 78.5,-45.5 parent: 2 - - uid: 8972 + - uid: 8910 components: - type: Transform pos: 78.5,-44.5 parent: 2 - - uid: 8973 + - uid: 8911 components: - type: Transform pos: 79.5,-46.5 parent: 2 - - uid: 8974 + - uid: 8912 components: - type: Transform pos: 80.5,-46.5 parent: 2 - - uid: 8975 + - uid: 8913 components: - type: Transform pos: 81.5,-46.5 parent: 2 - - uid: 8976 + - uid: 8914 components: - type: Transform pos: 81.5,-45.5 parent: 2 - - uid: 8977 + - uid: 8915 components: - type: Transform pos: 81.5,-44.5 parent: 2 - - uid: 8978 + - uid: 8916 components: - type: Transform pos: 81.5,-43.5 parent: 2 - - uid: 8979 + - uid: 8917 components: - type: Transform pos: 81.5,-42.5 parent: 2 - - uid: 8980 + - uid: 8918 components: - type: Transform pos: 82.5,-44.5 parent: 2 - - uid: 8981 + - uid: 8919 components: - type: Transform pos: 83.5,-44.5 parent: 2 - - uid: 8982 + - uid: 8920 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 8983 + - uid: 8921 components: - type: Transform pos: 85.5,-44.5 parent: 2 - - uid: 8984 + - uid: 8922 components: - type: Transform pos: 86.5,-44.5 parent: 2 - - uid: 8985 + - uid: 8923 components: - type: Transform pos: 87.5,-44.5 parent: 2 - - uid: 8986 + - uid: 8924 components: - type: Transform pos: 88.5,-44.5 parent: 2 - - uid: 8987 + - uid: 8925 components: - type: Transform pos: 86.5,-43.5 parent: 2 - - uid: 8988 + - uid: 8926 components: - type: Transform pos: 84.5,-42.5 parent: 2 - - uid: 8989 + - uid: 8927 components: - type: Transform pos: 85.5,-42.5 parent: 2 - - uid: 8990 + - uid: 8928 components: - type: Transform pos: 86.5,-42.5 parent: 2 - - uid: 8991 + - uid: 8929 components: - type: Transform pos: 87.5,-42.5 parent: 2 - - uid: 8992 + - uid: 8930 components: - type: Transform pos: 88.5,-42.5 parent: 2 - - uid: 8993 + - uid: 8931 components: - type: Transform pos: 88.5,-46.5 parent: 2 - - uid: 8994 + - uid: 8932 components: - type: Transform pos: 87.5,-46.5 parent: 2 - - uid: 8995 + - uid: 8933 components: - type: Transform pos: 86.5,-46.5 parent: 2 - - uid: 8996 + - uid: 8934 components: - type: Transform pos: 85.5,-46.5 parent: 2 - - uid: 8997 + - uid: 8935 components: - type: Transform pos: 84.5,-46.5 parent: 2 - - uid: 8998 + - uid: 8936 components: - type: Transform pos: 86.5,-45.5 parent: 2 - - uid: 8999 + - uid: 8937 components: - type: Transform pos: 78.5,-48.5 parent: 2 - - uid: 9000 + - uid: 8938 components: - type: Transform pos: 78.5,-49.5 parent: 2 - - uid: 9001 + - uid: 8939 components: - type: Transform pos: 78.5,-50.5 parent: 2 - - uid: 9002 + - uid: 8940 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 9003 + - uid: 8941 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 9004 + - uid: 8942 components: - type: Transform pos: 79.5,-50.5 parent: 2 - - uid: 9005 + - uid: 8943 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 9006 + - uid: 8944 components: - type: Transform pos: 80.5,-49.5 parent: 2 - - uid: 9007 + - uid: 8945 components: - type: Transform pos: 80.5,-50.5 parent: 2 - - uid: 9008 + - uid: 8946 components: - type: Transform pos: 80.5,-51.5 parent: 2 - - uid: 9009 + - uid: 8947 components: - type: Transform pos: 80.5,-52.5 parent: 2 - - uid: 9010 + - uid: 8948 components: - type: Transform pos: 82.5,-48.5 parent: 2 - - uid: 9011 + - uid: 8949 components: - type: Transform pos: 82.5,-49.5 parent: 2 - - uid: 9012 + - uid: 8950 components: - type: Transform pos: 82.5,-50.5 parent: 2 - - uid: 9013 + - uid: 8951 components: - type: Transform pos: 82.5,-51.5 parent: 2 - - uid: 9014 + - uid: 8952 components: - type: Transform pos: 82.5,-52.5 parent: 2 - - uid: 9015 + - uid: 8953 components: - type: Transform pos: 81.5,-50.5 parent: 2 - - uid: 9016 + - uid: 8954 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 9017 + - uid: 8955 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 9018 + - uid: 8956 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 9019 + - uid: 8957 components: - type: Transform pos: 80.5,-40.5 parent: 2 - - uid: 9020 + - uid: 8958 components: - type: Transform pos: 80.5,-39.5 parent: 2 - - uid: 9021 + - uid: 8959 components: - type: Transform pos: 80.5,-38.5 parent: 2 - - uid: 9022 + - uid: 8960 components: - type: Transform pos: 80.5,-37.5 parent: 2 - - uid: 9023 + - uid: 8961 components: - type: Transform pos: 80.5,-36.5 parent: 2 - - uid: 9024 + - uid: 8962 components: - type: Transform pos: 79.5,-38.5 parent: 2 - - uid: 9025 + - uid: 8963 components: - type: Transform pos: 82.5,-36.5 parent: 2 - - uid: 9026 + - uid: 8964 components: - type: Transform pos: 82.5,-37.5 parent: 2 - - uid: 9027 + - uid: 8965 components: - type: Transform pos: 82.5,-38.5 parent: 2 - - uid: 9028 + - uid: 8966 components: - type: Transform pos: 82.5,-39.5 parent: 2 - - uid: 9029 + - uid: 8967 components: - type: Transform pos: 82.5,-40.5 parent: 2 - - uid: 9030 + - uid: 8968 components: - type: Transform pos: 81.5,-38.5 parent: 2 - - uid: 9031 + - uid: 8969 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 9032 + - uid: 8970 components: - type: Transform pos: 78.5,-37.5 parent: 2 - - uid: 9033 + - uid: 8971 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 9034 + - uid: 8972 components: - type: Transform pos: 78.5,-39.5 parent: 2 - - uid: 9035 + - uid: 8973 components: - type: Transform pos: 78.5,-40.5 parent: 2 - - uid: 9036 + - uid: 8974 components: - type: Transform pos: 52.5,-40.5 parent: 2 - - uid: 9037 + - uid: 8975 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 9038 + - uid: 8976 components: - type: Transform pos: 54.5,-40.5 parent: 2 - - uid: 9039 + - uid: 8977 components: - type: Transform pos: 55.5,-40.5 parent: 2 - - uid: 9040 + - uid: 8978 components: - type: Transform pos: 56.5,-40.5 parent: 2 - - uid: 9041 + - uid: 8979 components: - type: Transform pos: 57.5,-40.5 parent: 2 - - uid: 9042 + - uid: 8980 components: - type: Transform pos: 58.5,-40.5 parent: 2 - - uid: 9043 + - uid: 8981 components: - type: Transform pos: 21.5,25.5 parent: 2 - - uid: 9044 + - uid: 8982 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 9045 + - uid: 8983 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 9046 + - uid: 8984 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 9047 + - uid: 8985 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 9048 + - uid: 8986 components: - type: Transform pos: 21.5,30.5 parent: 2 - - uid: 9049 + - uid: 8987 components: - type: Transform pos: 21.5,31.5 parent: 2 - - uid: 9050 + - uid: 8988 components: - type: Transform pos: 22.5,31.5 parent: 2 - - uid: 9051 + - uid: 8989 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 9052 + - uid: 8990 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 9053 + - uid: 8991 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 9054 + - uid: 8992 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 9055 + - uid: 8993 components: - type: Transform pos: 21.5,33.5 parent: 2 - - uid: 9056 + - uid: 8994 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 9057 + - uid: 8995 components: - type: Transform pos: 21.5,35.5 parent: 2 - - uid: 9058 + - uid: 8996 components: - type: Transform pos: 21.5,36.5 parent: 2 - - uid: 9059 + - uid: 8997 components: - type: Transform pos: 20.5,36.5 parent: 2 - - uid: 9060 + - uid: 8998 components: - type: Transform pos: 19.5,36.5 parent: 2 - - uid: 9061 + - uid: 8999 components: - type: Transform pos: 18.5,36.5 parent: 2 - - uid: 9062 + - uid: 9000 components: - type: Transform pos: 17.5,36.5 parent: 2 - - uid: 9063 + - uid: 9001 components: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 9064 + - uid: 9002 components: - type: Transform pos: 15.5,36.5 parent: 2 - - uid: 9065 + - uid: 9003 components: - type: Transform pos: 14.5,36.5 parent: 2 - - uid: 9066 + - uid: 9004 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 9067 + - uid: 9005 components: - type: Transform pos: 12.5,36.5 parent: 2 - - uid: 9068 + - uid: 9006 components: - type: Transform pos: 11.5,36.5 parent: 2 - - uid: 9069 + - uid: 9007 components: - type: Transform pos: 10.5,36.5 parent: 2 - - uid: 9070 + - uid: 9008 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 9071 + - uid: 9009 components: - type: Transform pos: 10.5,38.5 parent: 2 - - uid: 9072 + - uid: 9010 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 9073 + - uid: 9011 components: - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 9074 + - uid: 9012 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 9075 + - uid: 9013 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 9076 + - uid: 9014 components: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 9077 + - uid: 9015 components: - type: Transform pos: 27.5,32.5 parent: 2 - - uid: 9078 + - uid: 9016 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 9079 + - uid: 9017 components: - type: Transform pos: 27.5,30.5 parent: 2 - - uid: 9080 + - uid: 9018 components: - type: Transform pos: 27.5,29.5 parent: 2 - - uid: 9081 + - uid: 9019 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 9082 + - uid: 9020 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 9083 + - uid: 9021 components: - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 9084 + - uid: 9022 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 9085 + - uid: 9023 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 9086 + - uid: 9024 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 9087 + - uid: 9025 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 9088 + - uid: 9026 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 9089 + - uid: 9027 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 9090 + - uid: 9028 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 9091 + - uid: 9029 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 9092 + - uid: 9030 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 9093 + - uid: 9031 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 9094 + - uid: 9032 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 9095 + - uid: 9033 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 9096 + - uid: 9034 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 9097 + - uid: 9035 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 9098 + - uid: 9036 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 9099 + - uid: 9037 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 9100 + - uid: 9038 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 9101 + - uid: 9039 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 9102 + - uid: 9040 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 9103 + - uid: 9041 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 9104 + - uid: 9042 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 9105 + - uid: 9043 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 9106 + - uid: 9044 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 9107 + - uid: 9045 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 9108 + - uid: 9046 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 9109 + - uid: 9047 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 9110 + - uid: 9048 components: - type: Transform pos: -123.5,26.5 parent: 2 - - uid: 9111 + - uid: 9049 components: - type: Transform pos: -122.5,26.5 parent: 2 - - uid: 9112 + - uid: 9050 components: - type: Transform pos: -121.5,26.5 parent: 2 - - uid: 9113 + - uid: 9051 components: - type: Transform pos: -121.5,25.5 parent: 2 - - uid: 9114 + - uid: 9052 components: - type: Transform pos: -121.5,24.5 parent: 2 - - uid: 9115 + - uid: 9053 components: - type: Transform pos: -122.5,24.5 parent: 2 - - uid: 9116 + - uid: 9054 components: - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 9117 + - uid: 9055 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 9118 + - uid: 9056 components: - type: Transform pos: -49.5,-80.5 parent: 2 - - uid: 9119 + - uid: 9057 components: - type: Transform pos: -49.5,-81.5 parent: 2 - - uid: 9120 + - uid: 9058 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 9121 + - uid: 9059 components: - type: Transform pos: -48.5,-80.5 parent: 2 - - uid: 9122 + - uid: 9060 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 9123 + - uid: 9061 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 9124 + - uid: 9062 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 9125 + - uid: 9063 components: - type: Transform pos: -47.5,-81.5 parent: 2 - - uid: 9126 + - uid: 9064 components: - type: Transform pos: -47.5,-82.5 parent: 2 - - uid: 9127 + - uid: 9065 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 9128 + - uid: 9066 components: - type: Transform pos: -46.5,-81.5 parent: 2 - - uid: 9129 + - uid: 9067 components: - type: Transform pos: -46.5,-82.5 parent: 2 - - uid: 9130 + - uid: 9068 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 9131 + - uid: 9069 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 9132 + - uid: 9070 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 9133 + - uid: 9071 components: - type: Transform pos: -48.5,-85.5 parent: 2 - - uid: 9134 + - uid: 9072 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 9135 + - uid: 9073 components: - type: Transform pos: -47.5,-84.5 parent: 2 - - uid: 9136 + - uid: 9074 components: - type: Transform pos: -47.5,-85.5 parent: 2 - - uid: 9137 + - uid: 9075 components: - type: Transform pos: -47.5,-86.5 parent: 2 - - uid: 9138 + - uid: 9076 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 9139 + - uid: 9077 components: - type: Transform pos: -46.5,-85.5 parent: 2 - - uid: 9140 + - uid: 9078 components: - type: Transform pos: -46.5,-86.5 parent: 2 - - uid: 9141 + - uid: 9079 components: - type: Transform pos: -45.5,-84.5 parent: 2 - - uid: 9142 + - uid: 9080 components: - type: Transform pos: -45.5,-85.5 parent: 2 - - uid: 9143 + - uid: 9081 components: - type: Transform pos: -45.5,-86.5 parent: 2 - - uid: 9144 + - uid: 9082 components: - type: Transform pos: -44.5,-84.5 parent: 2 - - uid: 9145 + - uid: 9083 components: - type: Transform pos: -44.5,-85.5 parent: 2 - - uid: 9146 + - uid: 9084 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 9147 + - uid: 9085 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 9148 + - uid: 9086 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 9149 + - uid: 9087 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 9150 + - uid: 9088 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 9151 + - uid: 9089 components: - type: Transform pos: -48.5,-89.5 parent: 2 - - uid: 9152 + - uid: 9090 components: - type: Transform pos: -48.5,-90.5 parent: 2 - - uid: 9153 + - uid: 9091 components: - type: Transform pos: -47.5,-88.5 parent: 2 - - uid: 9154 + - uid: 9092 components: - type: Transform pos: -47.5,-89.5 parent: 2 - - uid: 9155 + - uid: 9093 components: - type: Transform pos: -47.5,-90.5 parent: 2 - - uid: 9156 + - uid: 9094 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 9157 + - uid: 9095 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 9158 + - uid: 9096 components: - type: Transform pos: -46.5,-90.5 parent: 2 - - uid: 9159 + - uid: 9097 components: - type: Transform pos: -45.5,-88.5 parent: 2 - - uid: 9160 + - uid: 9098 components: - type: Transform pos: -45.5,-89.5 parent: 2 - - uid: 9161 + - uid: 9099 components: - type: Transform pos: -45.5,-90.5 parent: 2 - - uid: 9162 + - uid: 9100 components: - type: Transform pos: -50.5,-89.5 parent: 2 - - uid: 9163 + - uid: 9101 components: - type: Transform pos: -51.5,-93.5 parent: 2 - - uid: 9164 + - uid: 9102 components: - type: Transform pos: -51.5,-92.5 parent: 2 - - uid: 9165 + - uid: 9103 components: - type: Transform pos: -51.5,-91.5 parent: 2 - - uid: 9166 + - uid: 9104 components: - type: Transform pos: -51.5,-90.5 parent: 2 - - uid: 9167 + - uid: 9105 components: - type: Transform pos: -51.5,-89.5 parent: 2 - - uid: 9168 + - uid: 9106 components: - type: Transform pos: -51.5,-88.5 parent: 2 - - uid: 9169 + - uid: 9107 components: - type: Transform pos: -51.5,-87.5 parent: 2 - - uid: 9170 + - uid: 9108 components: - type: Transform pos: -51.5,-86.5 parent: 2 - - uid: 9171 + - uid: 9109 components: - type: Transform pos: -51.5,-85.5 parent: 2 - - uid: 9172 + - uid: 9110 components: - type: Transform pos: -51.5,-84.5 parent: 2 - - uid: 9173 + - uid: 9111 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 9174 + - uid: 9112 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 9175 + - uid: 9113 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 9176 + - uid: 9114 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 9177 + - uid: 9115 components: - type: Transform pos: -51.5,-79.5 parent: 2 - - uid: 9178 + - uid: 9116 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 9179 + - uid: 9117 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 9180 + - uid: 9118 components: - type: Transform pos: -51.5,-76.5 parent: 2 - - uid: 9181 + - uid: 9119 components: - type: Transform pos: -51.5,-75.5 parent: 2 - - uid: 9182 + - uid: 9120 components: - type: Transform pos: -51.5,-74.5 parent: 2 - - uid: 9183 + - uid: 9121 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 9184 + - uid: 9122 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 9185 + - uid: 9123 components: - type: Transform pos: -47.5,-74.5 parent: 2 - - uid: 9186 + - uid: 9124 components: - type: Transform pos: -46.5,-74.5 parent: 2 - - uid: 9187 + - uid: 9125 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 9188 + - uid: 9126 components: - type: Transform pos: -58.5,-84.5 parent: 2 - - uid: 9189 + - uid: 9127 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 9190 + - uid: 9128 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 9191 + - uid: 9129 components: - type: Transform pos: -57.5,-84.5 parent: 2 - - uid: 9192 + - uid: 9130 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 9193 + - uid: 9131 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 9194 + - uid: 9132 components: - type: Transform pos: -56.5,-84.5 parent: 2 - - uid: 9195 + - uid: 9133 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 9196 + - uid: 9134 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 9197 + - uid: 9135 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 9198 + - uid: 9136 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 9199 + - uid: 9137 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 9200 + - uid: 9138 components: - type: Transform pos: -54.5,-84.5 parent: 2 - - uid: 9201 + - uid: 9139 components: - type: Transform pos: -54.5,-85.5 parent: 2 - - uid: 9202 + - uid: 9140 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 9203 + - uid: 9141 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 9204 + - uid: 9142 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 9205 + - uid: 9143 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 9206 + - uid: 9144 components: - type: Transform pos: -54.5,-82.5 parent: 2 - - uid: 9207 + - uid: 9145 components: - type: Transform pos: -54.5,-81.5 parent: 2 - - uid: 9208 + - uid: 9146 components: - type: Transform pos: -54.5,-80.5 parent: 2 - - uid: 9209 + - uid: 9147 components: - type: Transform pos: -55.5,-82.5 parent: 2 - - uid: 9210 + - uid: 9148 components: - type: Transform pos: -55.5,-81.5 parent: 2 - - uid: 9211 + - uid: 9149 components: - type: Transform pos: -55.5,-80.5 parent: 2 - - uid: 9212 + - uid: 9150 components: - type: Transform pos: -56.5,-82.5 parent: 2 - - uid: 9213 + - uid: 9151 components: - type: Transform pos: -56.5,-81.5 parent: 2 - - uid: 9214 + - uid: 9152 components: - type: Transform pos: -56.5,-80.5 parent: 2 - - uid: 9215 + - uid: 9153 components: - type: Transform pos: -57.5,-82.5 parent: 2 - - uid: 9216 + - uid: 9154 components: - type: Transform pos: -57.5,-81.5 parent: 2 - - uid: 9217 + - uid: 9155 components: - type: Transform pos: -57.5,-80.5 parent: 2 - - uid: 9218 + - uid: 9156 components: - type: Transform pos: -57.5,-88.5 parent: 2 - - uid: 9219 + - uid: 9157 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 9220 + - uid: 9158 components: - type: Transform pos: -57.5,-90.5 parent: 2 - - uid: 9221 + - uid: 9159 components: - type: Transform pos: -56.5,-88.5 parent: 2 - - uid: 9222 + - uid: 9160 components: - type: Transform pos: -56.5,-89.5 parent: 2 - - uid: 9223 + - uid: 9161 components: - type: Transform pos: -56.5,-90.5 parent: 2 - - uid: 9224 + - uid: 9162 components: - type: Transform pos: -55.5,-88.5 parent: 2 - - uid: 9225 + - uid: 9163 components: - type: Transform pos: -55.5,-89.5 parent: 2 - - uid: 9226 + - uid: 9164 components: - type: Transform pos: -55.5,-90.5 parent: 2 - - uid: 9227 + - uid: 9165 components: - type: Transform pos: -54.5,-88.5 parent: 2 - - uid: 9228 + - uid: 9166 components: - type: Transform pos: -54.5,-89.5 parent: 2 - - uid: 9229 + - uid: 9167 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 9230 + - uid: 9168 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 9231 + - uid: 9169 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 9232 + - uid: 9170 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 9233 + - uid: 9171 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 9234 + - uid: 9172 components: - type: Transform pos: -52.5,-89.5 parent: 2 - - uid: 9235 + - uid: 9173 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 9236 + - uid: 9174 components: - type: Transform pos: -52.5,-85.5 parent: 2 - - uid: 9237 + - uid: 9175 components: - type: Transform pos: -52.5,-81.5 parent: 2 - - uid: 9238 + - uid: 9176 components: - type: Transform pos: -50.5,-81.5 parent: 2 - - uid: 9239 + - uid: 9177 components: - type: Transform pos: -50.5,-85.5 parent: 2 - - uid: 9240 + - uid: 9178 components: - type: Transform pos: -49.5,-85.5 parent: 2 - - uid: 9241 + - uid: 9179 components: - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 9242 + - uid: 9180 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 9243 + - uid: 9181 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 9244 + - uid: 9182 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 9245 + - uid: 9183 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 9246 + - uid: 9184 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 9247 + - uid: 9185 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 9248 + - uid: 9186 components: - type: Transform pos: -46.5,-2.5 parent: 2 - - uid: 9249 + - uid: 9187 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 9250 + - uid: 9188 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 9251 + - uid: 9189 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 9252 + - uid: 9190 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 9253 + - uid: 9191 components: - type: Transform pos: -19.5,-29.5 parent: 2 - - uid: 9254 + - uid: 9192 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9255 + - uid: 9193 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9256 + - uid: 9194 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 9257 + - uid: 9195 components: - type: Transform pos: 6.5,56.5 parent: 2 - - uid: 9258 + - uid: 9196 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 9259 + - uid: 9197 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 9260 + - uid: 9198 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 9261 + - uid: 9199 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 9262 + - uid: 9200 components: - type: Transform pos: 6.5,51.5 parent: 2 - - uid: 9263 + - uid: 9201 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 9264 + - uid: 9202 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 9265 + - uid: 9203 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 9266 + - uid: 9204 components: - type: Transform pos: 6.5,47.5 parent: 2 - - uid: 9267 + - uid: 9205 components: - type: Transform pos: 5.5,47.5 parent: 2 - - uid: 9268 + - uid: 9206 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 9269 + - uid: 9207 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 9270 + - uid: 9208 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 9271 + - uid: 9209 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 9272 + - uid: 9210 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 9273 + - uid: 9211 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 9274 + - uid: 9212 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 9275 + - uid: 9213 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 9276 + - uid: 9214 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 9277 + - uid: 9215 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 9278 + - uid: 9216 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 9279 + - uid: 9217 components: - type: Transform pos: 1.5,39.5 parent: 2 - - uid: 9280 + - uid: 9218 components: - type: Transform pos: 0.5,39.5 parent: 2 - - uid: 9281 + - uid: 9219 components: - type: Transform pos: 0.5,39.5 parent: 2 - - uid: 9282 + - uid: 9220 components: - type: Transform pos: 0.5,38.5 parent: 2 - - uid: 9283 + - uid: 9221 components: - type: Transform pos: 0.5,37.5 parent: 2 - - uid: 9284 + - uid: 9222 components: - type: Transform pos: 0.5,36.5 parent: 2 - - uid: 9285 + - uid: 9223 components: - type: Transform pos: 0.5,35.5 parent: 2 - - uid: 9286 + - uid: 9224 components: - type: Transform pos: 0.5,34.5 parent: 2 - - uid: 9287 + - uid: 9225 components: - type: Transform pos: 0.5,33.5 parent: 2 - - uid: 9288 + - uid: 9226 components: - type: Transform pos: 0.5,32.5 parent: 2 - - uid: 9289 + - uid: 9227 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 9290 + - uid: 9228 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 9291 + - uid: 9229 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 9292 + - uid: 9230 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 9293 + - uid: 9231 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 9294 + - uid: 9232 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 9295 + - uid: 9233 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 9296 + - uid: 9234 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 9297 + - uid: 9235 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 9298 + - uid: 9236 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 9299 + - uid: 9237 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 9300 + - uid: 9238 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 9301 + - uid: 9239 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 9302 + - uid: 9240 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 9303 + - uid: 9241 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 9304 + - uid: 9242 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 9305 + - uid: 9243 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 9306 + - uid: 9244 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 9307 + - uid: 9245 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 9308 + - uid: 9246 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 9309 + - uid: 9247 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 9310 + - uid: 9248 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 9311 + - uid: 9249 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 9312 + - uid: 9250 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 9313 + - uid: 9251 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 9314 + - uid: 9252 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 9315 + - uid: 9253 components: - type: Transform pos: -0.5,-21.5 parent: 2 - - uid: 9316 + - uid: 9254 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 9317 + - uid: 9255 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 9318 + - uid: 9256 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 9319 + - uid: 9257 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 9320 + - uid: 9258 components: - type: Transform pos: 51.5,-7.5 parent: 2 - - uid: 9321 + - uid: 9259 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 9322 + - uid: 9260 components: - type: Transform pos: 49.5,-7.5 parent: 2 - - uid: 9323 + - uid: 9261 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 9324 + - uid: 9262 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 9325 + - uid: 9263 components: - type: Transform pos: 45.5,-7.5 parent: 2 - - uid: 9326 + - uid: 9264 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 9327 + - uid: 9265 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 9328 + - uid: 9266 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 9329 + - uid: 9267 components: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 9330 + - uid: 9268 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 9331 + - uid: 9269 components: - type: Transform pos: 52.5,-0.5 parent: 2 - - uid: 9332 + - uid: 9270 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 9333 + - uid: 9271 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 9334 + - uid: 9272 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 9335 + - uid: 9273 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 9336 + - uid: 9274 components: - type: Transform pos: 20.5,17.5 parent: 2 - - uid: 9337 + - uid: 9275 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 9338 + - uid: 9276 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 9339 + - uid: 9277 components: - type: Transform pos: 21.5,21.5 parent: 2 - - uid: 9340 + - uid: 9278 components: - type: Transform pos: 24.5,20.5 parent: 2 - - uid: 9341 + - uid: 9279 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 9342 + - uid: 9280 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 9343 + - uid: 9281 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 9344 + - uid: 9282 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 9345 + - uid: 9283 components: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 9346 + - uid: 9284 components: - type: Transform pos: 21.5,23.5 parent: 2 - - uid: 9347 + - uid: 9285 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 9348 + - uid: 9286 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 9349 + - uid: 9287 components: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 9350 + - uid: 9288 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 9351 + - uid: 9289 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 9352 + - uid: 9290 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 9353 + - uid: 9291 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 9354 + - uid: 9292 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 9355 + - uid: 9293 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 38503 + - uid: 38330 components: - type: Transform pos: 0.5,2.5 - parent: 38484 - - uid: 38504 + parent: 38311 + - uid: 38331 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38505 + parent: 38311 + - uid: 38332 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38506 + parent: 38311 + - uid: 38333 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38507 + parent: 38311 + - uid: 38334 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38508 + parent: 38311 + - uid: 38335 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38509 + parent: 38311 + - uid: 38336 components: - type: Transform pos: 3.5,-0.5 - parent: 38484 - - uid: 38911 + parent: 38311 + - uid: 38738 components: - type: Transform pos: -22.5,25.5 - parent: 38584 - - uid: 38912 + parent: 38411 + - uid: 38739 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 38913 + parent: 38411 + - uid: 38740 components: - type: Transform pos: 8.5,7.5 - parent: 38584 - - uid: 38914 + parent: 38411 + - uid: 38741 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 38915 + parent: 38411 + - uid: 38742 components: - type: Transform pos: 8.5,6.5 - parent: 38584 - - uid: 38916 + parent: 38411 + - uid: 38743 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 38917 + parent: 38411 + - uid: 38744 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 38918 + parent: 38411 + - uid: 38745 components: - type: Transform pos: 8.5,5.5 - parent: 38584 - - uid: 38919 + parent: 38411 + - uid: 38746 components: - type: Transform pos: 9.5,5.5 - parent: 38584 - - uid: 38920 + parent: 38411 + - uid: 38747 components: - type: Transform pos: 8.5,4.5 - parent: 38584 + parent: 38411 - proto: CableHVStack entities: - - uid: 9356 + - uid: 9294 components: - type: Transform pos: -48.086647,11.574663 parent: 2 - - uid: 9357 + - uid: 9295 components: - type: Transform pos: -49.51845,47.584435 parent: 2 - proto: CableHVStack1 entities: - - uid: 9358 + - uid: 9296 components: - type: Transform rot: -1.5707953085339508 rad pos: 77.64752,-1.6855047 parent: 2 - - uid: 9359 + - uid: 9297 components: - type: Transform rot: -1.5707953085339508 rad pos: 58.58862,-40.883453 parent: 2 - - uid: 9360 + - uid: 9298 components: - type: Transform rot: 3.141593671850739 rad @@ -85242,16484 +85247,16484 @@ entities: parent: 2 - proto: CableMV entities: - - uid: 286 + - uid: 9299 components: - type: Transform pos: -56.5,-22.5 parent: 2 - - uid: 6732 + - uid: 9300 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 9361 + - uid: 9301 components: - type: Transform pos: 26.5,22.5 parent: 2 - - uid: 9362 + - uid: 9302 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 9363 + - uid: 9303 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 9364 + - uid: 9304 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 9365 + - uid: 9305 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 9366 + - uid: 9306 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 9367 + - uid: 9307 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 9368 + - uid: 9308 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 9369 + - uid: 9309 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 9370 + - uid: 9310 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 9371 + - uid: 9311 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 9372 + - uid: 9312 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 9373 + - uid: 9313 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 9374 + - uid: 9314 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 9375 + - uid: 9315 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 9376 + - uid: 9316 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 9377 + - uid: 9317 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 9378 + - uid: 9318 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 9379 + - uid: 9319 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 9380 + - uid: 9320 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 9381 + - uid: 9321 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 9382 + - uid: 9322 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 9383 + - uid: 9323 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 9384 + - uid: 9324 components: - type: Transform pos: 3.5,-11.5 parent: 2 - - uid: 9385 + - uid: 9325 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 9386 + - uid: 9326 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 9387 + - uid: 9327 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 9388 + - uid: 9328 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 9389 + - uid: 9329 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 9390 + - uid: 9330 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 9391 + - uid: 9331 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 9392 + - uid: 9332 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 9393 + - uid: 9333 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 9394 + - uid: 9334 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 9395 + - uid: 9335 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 9396 + - uid: 9336 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 9397 + - uid: 9337 components: - type: Transform pos: -67.5,-42.5 parent: 2 - - uid: 9398 + - uid: 9338 components: - type: Transform pos: 84.5,1.5 parent: 2 - - uid: 9399 + - uid: 9339 components: - type: Transform pos: -61.5,-47.5 parent: 2 - - uid: 9400 + - uid: 9340 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 9401 + - uid: 9341 components: - type: Transform pos: -60.5,-47.5 parent: 2 - - uid: 9402 + - uid: 9342 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 9403 + - uid: 9343 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 9404 + - uid: 9344 components: - type: Transform pos: 87.5,-5.5 parent: 2 - - uid: 9405 + - uid: 9345 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 9406 + - uid: 9346 components: - type: Transform pos: 83.5,-5.5 parent: 2 - - uid: 9407 + - uid: 9347 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 9408 + - uid: 9348 components: - type: Transform pos: 97.5,-4.5 parent: 2 - - uid: 9409 + - uid: 9349 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 9410 + - uid: 9350 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 9411 + - uid: 9351 components: - type: Transform pos: 89.5,-5.5 parent: 2 - - uid: 9412 + - uid: 9352 components: - type: Transform pos: 20.5,67.5 parent: 2 - - uid: 9413 + - uid: 9353 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 9414 + - uid: 9354 components: - type: Transform pos: 96.5,-4.5 parent: 2 - - uid: 9415 + - uid: 9355 components: - type: Transform pos: 98.5,6.5 parent: 2 - - uid: 9416 + - uid: 9356 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 9417 + - uid: 9357 components: - type: Transform pos: 84.5,-5.5 parent: 2 - - uid: 9418 + - uid: 9358 components: - type: Transform pos: 88.5,-5.5 parent: 2 - - uid: 9419 + - uid: 9359 components: - type: Transform pos: 98.5,7.5 parent: 2 - - uid: 9420 + - uid: 9360 components: - type: Transform pos: 92.5,9.5 parent: 2 - - uid: 9421 + - uid: 9361 components: - type: Transform pos: 76.5,-3.5 parent: 2 - - uid: 9422 + - uid: 9362 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 9423 + - uid: 9363 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 9424 + - uid: 9364 components: - type: Transform pos: 80.5,-5.5 parent: 2 - - uid: 9425 + - uid: 9365 components: - type: Transform pos: 79.5,-5.5 parent: 2 - - uid: 9426 + - uid: 9366 components: - type: Transform pos: 81.5,-5.5 parent: 2 - - uid: 9427 + - uid: 9367 components: - type: Transform pos: 85.5,-5.5 parent: 2 - - uid: 9428 + - uid: 9368 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 9429 + - uid: 9369 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 9430 + - uid: 9370 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 9431 + - uid: 9371 components: - type: Transform pos: -65.5,-42.5 parent: 2 - - uid: 9432 + - uid: 9372 components: - type: Transform pos: 75.5,1.5 parent: 2 - - uid: 9433 + - uid: 9373 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 9434 + - uid: 9374 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 9435 + - uid: 9375 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 9436 + - uid: 9376 components: - type: Transform pos: 98.5,8.5 parent: 2 - - uid: 9437 + - uid: 9377 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 9438 + - uid: 9378 components: - type: Transform pos: 92.5,8.5 parent: 2 - - uid: 9439 + - uid: 9379 components: - type: Transform pos: 81.5,-0.5 parent: 2 - - uid: 9440 + - uid: 9380 components: - type: Transform pos: 85.5,0.5 parent: 2 - - uid: 9441 + - uid: 9381 components: - type: Transform pos: 82.5,-1.5 parent: 2 - - uid: 9442 + - uid: 9382 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 9443 + - uid: 9383 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 9444 + - uid: 9384 components: - type: Transform pos: 94.5,8.5 parent: 2 - - uid: 9445 + - uid: 9385 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 9446 + - uid: 9386 components: - type: Transform pos: 96.5,-5.5 parent: 2 - - uid: 9447 + - uid: 9387 components: - type: Transform pos: 92.5,-5.5 parent: 2 - - uid: 9448 + - uid: 9388 components: - type: Transform pos: -41.5,48.5 parent: 2 - - uid: 9449 + - uid: 9389 components: - type: Transform pos: 95.5,-5.5 parent: 2 - - uid: 9450 + - uid: 9390 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 9451 + - uid: 9391 components: - type: Transform pos: -35.5,57.5 parent: 2 - - uid: 9452 + - uid: 9392 components: - type: Transform pos: -38.5,62.5 parent: 2 - - uid: 9453 + - uid: 9393 components: - type: Transform pos: -37.5,57.5 parent: 2 - - uid: 9454 + - uid: 9394 components: - type: Transform pos: -38.5,57.5 parent: 2 - - uid: 9455 + - uid: 9395 components: - type: Transform pos: -37.5,58.5 parent: 2 - - uid: 9456 + - uid: 9396 components: - type: Transform pos: -41.5,56.5 parent: 2 - - uid: 9457 + - uid: 9397 components: - type: Transform pos: -41.5,57.5 parent: 2 - - uid: 9458 + - uid: 9398 components: - type: Transform pos: 94.5,1.5 parent: 2 - - uid: 9459 + - uid: 9399 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 9460 + - uid: 9400 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 9461 + - uid: 9401 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 9462 + - uid: 9402 components: - type: Transform pos: -41.5,50.5 parent: 2 - - uid: 9463 + - uid: 9403 components: - type: Transform pos: -37.5,42.5 parent: 2 - - uid: 9464 + - uid: 9404 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 9465 + - uid: 9405 components: - type: Transform pos: 27.5,52.5 parent: 2 - - uid: 9466 + - uid: 9406 components: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 9467 + - uid: 9407 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 9468 + - uid: 9408 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 9469 + - uid: 9409 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 9470 + - uid: 9410 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 9471 + - uid: 9411 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 9472 + - uid: 9412 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 9473 + - uid: 9413 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 9474 + - uid: 9414 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 9475 + - uid: 9415 components: - type: Transform pos: -41.5,49.5 parent: 2 - - uid: 9476 + - uid: 9416 components: - type: Transform pos: 90.5,1.5 parent: 2 - - uid: 9477 + - uid: 9417 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 9478 + - uid: 9418 components: - type: Transform pos: 91.5,1.5 parent: 2 - - uid: 9479 + - uid: 9419 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 9480 + - uid: 9420 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 9481 + - uid: 9421 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 9482 + - uid: 9422 components: - type: Transform pos: 89.5,1.5 parent: 2 - - uid: 9483 + - uid: 9423 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 9484 + - uid: 9424 components: - type: Transform pos: 94.5,4.5 parent: 2 - - uid: 9485 + - uid: 9425 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 9486 + - uid: 9426 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 9487 + - uid: 9427 components: - type: Transform pos: 95.5,0.5 parent: 2 - - uid: 9488 + - uid: 9428 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 9489 + - uid: 9429 components: - type: Transform pos: 89.5,0.5 parent: 2 - - uid: 9490 + - uid: 9430 components: - type: Transform pos: 95.5,1.5 parent: 2 - - uid: 9491 + - uid: 9431 components: - type: Transform pos: 95.5,-0.5 parent: 2 - - uid: 9492 + - uid: 9432 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 9493 + - uid: 9433 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 9494 + - uid: 9434 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 9495 + - uid: 9435 components: - type: Transform pos: 78.5,-4.5 parent: 2 - - uid: 9496 + - uid: 9436 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 9497 + - uid: 9437 components: - type: Transform pos: 78.5,-5.5 parent: 2 - - uid: 9498 + - uid: 9438 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 9499 + - uid: 9439 components: - type: Transform pos: 76.5,1.5 parent: 2 - - uid: 9500 + - uid: 9440 components: - type: Transform pos: 98.5,-4.5 parent: 2 - - uid: 9501 + - uid: 9441 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 9502 + - uid: 9442 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 9503 + - uid: 9443 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 9504 + - uid: 9444 components: - type: Transform pos: 81.5,0.5 parent: 2 - - uid: 9505 + - uid: 9445 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 9506 + - uid: 9446 components: - type: Transform pos: 90.5,-1.5 parent: 2 - - uid: 9507 + - uid: 9447 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 9508 + - uid: 9448 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 9509 + - uid: 9449 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 9510 + - uid: 9450 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 9511 + - uid: 9451 components: - type: Transform pos: -41.5,46.5 parent: 2 - - uid: 9512 + - uid: 9452 components: - type: Transform pos: -41.5,43.5 parent: 2 - - uid: 9513 + - uid: 9453 components: - type: Transform pos: -40.5,39.5 parent: 2 - - uid: 9514 + - uid: 9454 components: - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 9515 + - uid: 9455 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 9516 + - uid: 9456 components: - type: Transform pos: -40.5,62.5 parent: 2 - - uid: 9517 + - uid: 9457 components: - type: Transform pos: -34.5,57.5 parent: 2 - - uid: 9518 + - uid: 9458 components: - type: Transform pos: -39.5,62.5 parent: 2 - - uid: 9519 + - uid: 9459 components: - type: Transform pos: -41.5,47.5 parent: 2 - - uid: 9520 + - uid: 9460 components: - type: Transform pos: -41.5,45.5 parent: 2 - - uid: 9521 + - uid: 9461 components: - type: Transform pos: -41.5,52.5 parent: 2 - - uid: 9522 + - uid: 9462 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 9523 + - uid: 9463 components: - type: Transform pos: 27.5,51.5 parent: 2 - - uid: 9524 + - uid: 9464 components: - type: Transform pos: 26.5,50.5 parent: 2 - - uid: 9525 + - uid: 9465 components: - type: Transform pos: -58.5,-34.5 parent: 2 - - uid: 9526 + - uid: 9466 components: - type: Transform pos: -41.5,51.5 parent: 2 - - uid: 9527 + - uid: 9467 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 9528 + - uid: 9468 components: - type: Transform pos: -7.5,69.5 parent: 2 - - uid: 9529 + - uid: 9469 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 9530 + - uid: 9470 components: - type: Transform pos: -41.5,54.5 parent: 2 - - uid: 9531 + - uid: 9471 components: - type: Transform pos: -39.5,42.5 parent: 2 - - uid: 9532 + - uid: 9472 components: - type: Transform pos: -40.5,42.5 parent: 2 - - uid: 9533 + - uid: 9473 components: - type: Transform pos: -41.5,44.5 parent: 2 - - uid: 9534 + - uid: 9474 components: - type: Transform pos: -36.5,57.5 parent: 2 - - uid: 9535 + - uid: 9475 components: - type: Transform pos: 74.5,1.5 parent: 2 - - uid: 9536 + - uid: 9476 components: - type: Transform pos: -39.5,57.5 parent: 2 - - uid: 9537 + - uid: 9477 components: - type: Transform pos: -37.5,60.5 parent: 2 - - uid: 9538 + - uid: 9478 components: - type: Transform pos: 94.5,13.5 parent: 2 - - uid: 9539 + - uid: 9479 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 9540 + - uid: 9480 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 9541 + - uid: 9481 components: - type: Transform pos: -18.5,-30.5 parent: 2 - - uid: 9542 + - uid: 9482 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 9543 + - uid: 9483 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 9544 + - uid: 9484 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9545 + - uid: 9485 components: - type: Transform pos: 98.5,-3.5 parent: 2 - - uid: 9546 + - uid: 9486 components: - type: Transform pos: 91.5,-5.5 parent: 2 - - uid: 9547 + - uid: 9487 components: - type: Transform pos: 98.5,-0.5 parent: 2 - - uid: 9548 + - uid: 9488 components: - type: Transform pos: -62.5,-46.5 parent: 2 - - uid: 9549 + - uid: 9489 components: - type: Transform pos: 98.5,-2.5 parent: 2 - - uid: 9550 + - uid: 9490 components: - type: Transform pos: 97.5,8.5 parent: 2 - - uid: 9551 + - uid: 9491 components: - type: Transform pos: 96.5,8.5 parent: 2 - - uid: 9552 + - uid: 9492 components: - type: Transform pos: 95.5,8.5 parent: 2 - - uid: 9553 + - uid: 9493 components: - type: Transform pos: 96.5,-0.5 parent: 2 - - uid: 9554 + - uid: 9494 components: - type: Transform pos: 94.5,-5.5 parent: 2 - - uid: 9555 + - uid: 9495 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 9556 + - uid: 9496 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 9557 + - uid: 9497 components: - type: Transform pos: 81.5,-1.5 parent: 2 - - uid: 9558 + - uid: 9498 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 9559 + - uid: 9499 components: - type: Transform pos: 80.5,2.5 parent: 2 - - uid: 9560 + - uid: 9500 components: - type: Transform pos: 92.5,1.5 parent: 2 - - uid: 9561 + - uid: 9501 components: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 9562 + - uid: 9502 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 9563 + - uid: 9503 components: - type: Transform pos: 85.5,-0.5 parent: 2 - - uid: 9564 + - uid: 9504 components: - type: Transform pos: 94.5,3.5 parent: 2 - - uid: 9565 + - uid: 9505 components: - type: Transform pos: 93.5,1.5 parent: 2 - - uid: 9566 + - uid: 9506 components: - type: Transform pos: 88.5,1.5 parent: 2 - - uid: 9567 + - uid: 9507 components: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 9568 + - uid: 9508 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 9569 + - uid: 9509 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 9570 + - uid: 9510 components: - type: Transform pos: -61.5,-46.5 parent: 2 - - uid: 9571 + - uid: 9511 components: - type: Transform pos: 89.5,-1.5 parent: 2 - - uid: 9572 + - uid: 9512 components: - type: Transform pos: 93.5,13.5 parent: 2 - - uid: 9573 + - uid: 9513 components: - type: Transform pos: -67.5,-40.5 parent: 2 - - uid: 9574 + - uid: 9514 components: - type: Transform pos: 89.5,-0.5 parent: 2 - - uid: 9575 + - uid: 9515 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 9576 + - uid: 9516 components: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 9577 + - uid: 9517 components: - type: Transform pos: 85.5,2.5 parent: 2 - - uid: 9578 + - uid: 9518 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 9579 + - uid: 9519 components: - type: Transform pos: 0.49999997,-14.5 parent: 2 - - uid: 9580 + - uid: 9520 components: - type: Transform pos: 98.5,3.5 parent: 2 - - uid: 9581 + - uid: 9521 components: - type: Transform pos: -41.5,42.5 parent: 2 - - uid: 9582 + - uid: 9522 components: - type: Transform pos: -41.5,55.5 parent: 2 - - uid: 9583 + - uid: 9523 components: - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 9584 + - uid: 9524 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 9585 + - uid: 9525 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 9586 + - uid: 9526 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 9587 + - uid: 9527 components: - type: Transform pos: 11.5,88.5 parent: 2 - - uid: 9588 + - uid: 9528 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 9589 + - uid: 9529 components: - type: Transform pos: 20.5,66.5 parent: 2 - - uid: 9590 + - uid: 9530 components: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 9591 + - uid: 9531 components: - type: Transform pos: 18.5,66.5 parent: 2 - - uid: 9592 + - uid: 9532 components: - type: Transform pos: 17.5,66.5 parent: 2 - - uid: 9593 + - uid: 9533 components: - type: Transform pos: 16.5,66.5 parent: 2 - - uid: 9594 + - uid: 9534 components: - type: Transform pos: 15.5,66.5 parent: 2 - - uid: 9595 + - uid: 9535 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 9596 + - uid: 9536 components: - type: Transform pos: 14.5,65.5 parent: 2 - - uid: 9597 + - uid: 9537 components: - type: Transform pos: 14.5,64.5 parent: 2 - - uid: 9598 + - uid: 9538 components: - type: Transform pos: 13.5,64.5 parent: 2 - - uid: 9599 + - uid: 9539 components: - type: Transform pos: 12.5,64.5 parent: 2 - - uid: 9600 + - uid: 9540 components: - type: Transform pos: 11.5,64.5 parent: 2 - - uid: 9601 + - uid: 9541 components: - type: Transform pos: 10.5,64.5 parent: 2 - - uid: 9602 + - uid: 9542 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 9603 + - uid: 9543 components: - type: Transform pos: 10.5,62.5 parent: 2 - - uid: 9604 + - uid: 9544 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 9605 + - uid: 9545 components: - type: Transform pos: 10.5,60.5 parent: 2 - - uid: 9606 + - uid: 9546 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 9607 + - uid: 9547 components: - type: Transform pos: 10.5,58.5 parent: 2 - - uid: 9608 + - uid: 9548 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 9609 + - uid: 9549 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 9610 + - uid: 9550 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 9611 + - uid: 9551 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 9612 + - uid: 9552 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 9613 + - uid: 9553 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 9614 + - uid: 9554 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 9615 + - uid: 9555 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 9616 + - uid: 9556 components: - type: Transform pos: 24.5,57.5 parent: 2 - - uid: 9617 + - uid: 9557 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 9618 + - uid: 9558 components: - type: Transform pos: 23.5,56.5 parent: 2 - - uid: 9619 + - uid: 9559 components: - type: Transform pos: 22.5,56.5 parent: 2 - - uid: 9620 + - uid: 9560 components: - type: Transform pos: 21.5,56.5 parent: 2 - - uid: 9621 + - uid: 9561 components: - type: Transform pos: 20.5,56.5 parent: 2 - - uid: 9622 + - uid: 9562 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 9623 + - uid: 9563 components: - type: Transform pos: 18.5,56.5 parent: 2 - - uid: 9624 + - uid: 9564 components: - type: Transform pos: 17.5,56.5 parent: 2 - - uid: 9625 + - uid: 9565 components: - type: Transform pos: 16.5,56.5 parent: 2 - - uid: 9626 + - uid: 9566 components: - type: Transform pos: 15.5,56.5 parent: 2 - - uid: 9627 + - uid: 9567 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 9628 + - uid: 9568 components: - type: Transform pos: 13.5,56.5 parent: 2 - - uid: 9629 + - uid: 9569 components: - type: Transform pos: 12.5,56.5 parent: 2 - - uid: 9630 + - uid: 9570 components: - type: Transform pos: 11.5,56.5 parent: 2 - - uid: 9631 + - uid: 9571 components: - type: Transform pos: 10.5,56.5 parent: 2 - - uid: 9632 + - uid: 9572 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 9633 + - uid: 9573 components: - type: Transform pos: 17.5,63.5 parent: 2 - - uid: 9634 + - uid: 9574 components: - type: Transform pos: 17.5,62.5 parent: 2 - - uid: 9635 + - uid: 9575 components: - type: Transform pos: 17.5,61.5 parent: 2 - - uid: 9636 + - uid: 9576 components: - type: Transform pos: 16.5,61.5 parent: 2 - - uid: 9637 + - uid: 9577 components: - type: Transform pos: 15.5,61.5 parent: 2 - - uid: 9638 + - uid: 9578 components: - type: Transform pos: 14.5,61.5 parent: 2 - - uid: 9639 + - uid: 9579 components: - type: Transform pos: 13.5,61.5 parent: 2 - - uid: 9640 + - uid: 9580 components: - type: Transform pos: 12.5,61.5 parent: 2 - - uid: 9641 + - uid: 9581 components: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 9642 + - uid: 9582 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 9643 + - uid: 9583 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 9644 + - uid: 9584 components: - type: Transform pos: 5.5,57.5 parent: 2 - - uid: 9645 + - uid: 9585 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 9646 + - uid: 9586 components: - type: Transform pos: 5.5,59.5 parent: 2 - - uid: 9647 + - uid: 9587 components: - type: Transform pos: 5.5,60.5 parent: 2 - - uid: 9648 + - uid: 9588 components: - type: Transform pos: 4.5,60.5 parent: 2 - - uid: 9649 + - uid: 9589 components: - type: Transform pos: 3.5,60.5 parent: 2 - - uid: 9650 + - uid: 9590 components: - type: Transform pos: 2.5,60.5 parent: 2 - - uid: 9651 + - uid: 9591 components: - type: Transform pos: 1.5,60.5 parent: 2 - - uid: 9652 + - uid: 9592 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 9653 + - uid: 9593 components: - type: Transform pos: 1.5,62.5 parent: 2 - - uid: 9654 + - uid: 9594 components: - type: Transform pos: 1.5,63.5 parent: 2 - - uid: 9655 + - uid: 9595 components: - type: Transform pos: 1.5,64.5 parent: 2 - - uid: 9656 + - uid: 9596 components: - type: Transform pos: 1.5,65.5 parent: 2 - - uid: 9657 + - uid: 9597 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 9658 + - uid: 9598 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 9659 + - uid: 9599 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 9660 + - uid: 9600 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 9661 + - uid: 9601 components: - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 9662 + - uid: 9602 components: - type: Transform pos: -2.5,34.5 parent: 2 - - uid: 9663 + - uid: 9603 components: - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 9664 + - uid: 9604 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 9665 + - uid: 9605 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 9666 + - uid: 9606 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 9667 + - uid: 9607 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 9668 + - uid: 9608 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 9669 + - uid: 9609 components: - type: Transform pos: 0.49999997,32.5 parent: 2 - - uid: 9670 + - uid: 9610 components: - type: Transform pos: 0.49999997,33.5 parent: 2 - - uid: 9671 + - uid: 9611 components: - type: Transform pos: 0.49999997,34.5 parent: 2 - - uid: 9672 + - uid: 9612 components: - type: Transform pos: 0.49999997,35.5 parent: 2 - - uid: 9673 + - uid: 9613 components: - type: Transform pos: 0.50000006,36.5 parent: 2 - - uid: 9674 + - uid: 9614 components: - type: Transform pos: 0.50000006,37.5 parent: 2 - - uid: 9675 + - uid: 9615 components: - type: Transform pos: 0.50000006,38.5 parent: 2 - - uid: 9676 + - uid: 9616 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 9677 + - uid: 9617 components: - type: Transform pos: 1.5,39.5 parent: 2 - - uid: 9678 + - uid: 9618 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 9679 + - uid: 9619 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 9680 + - uid: 9620 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 9681 + - uid: 9621 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 9682 + - uid: 9622 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 9683 + - uid: 9623 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 9684 + - uid: 9624 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 9685 + - uid: 9625 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 9686 + - uid: 9626 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 9687 + - uid: 9627 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 9688 + - uid: 9628 components: - type: Transform pos: 3.5,48.5 parent: 2 - - uid: 9689 + - uid: 9629 components: - type: Transform pos: 3.5,49.5 parent: 2 - - uid: 9690 + - uid: 9630 components: - type: Transform pos: 3.5,50.5 parent: 2 - - uid: 9691 + - uid: 9631 components: - type: Transform pos: 3.5,51.5 parent: 2 - - uid: 9692 + - uid: 9632 components: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 9693 + - uid: 9633 components: - type: Transform pos: 3.5,53.5 parent: 2 - - uid: 9694 + - uid: 9634 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 9695 + - uid: 9635 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 9696 + - uid: 9636 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 9697 + - uid: 9637 components: - type: Transform pos: 1.5,51.5 parent: 2 - - uid: 9698 + - uid: 9638 components: - type: Transform pos: 0.50000006,51.5 parent: 2 - - uid: 9699 + - uid: 9639 components: - type: Transform pos: -0.5,51.5 parent: 2 - - uid: 9700 + - uid: 9640 components: - type: Transform pos: -1.5,51.5 parent: 2 - - uid: 9701 + - uid: 9641 components: - type: Transform pos: -2.5,51.5 parent: 2 - - uid: 9702 + - uid: 9642 components: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 9703 + - uid: 9643 components: - type: Transform pos: -2.5,49.5 parent: 2 - - uid: 9704 + - uid: 9644 components: - type: Transform pos: -3.5,49.5 parent: 2 - - uid: 9705 + - uid: 9645 components: - type: Transform pos: -4.5,49.5 parent: 2 - - uid: 9706 + - uid: 9646 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 9707 + - uid: 9647 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 9708 + - uid: 9648 components: - type: Transform pos: -5.5,49.5 parent: 2 - - uid: 9709 + - uid: 9649 components: - type: Transform pos: -6.5,49.5 parent: 2 - - uid: 9710 + - uid: 9650 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 9711 + - uid: 9651 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 9712 + - uid: 9652 components: - type: Transform pos: -0.5,40.5 parent: 2 - - uid: 9713 + - uid: 9653 components: - type: Transform pos: 1.5,38.5 parent: 2 - - uid: 9714 + - uid: 9654 components: - type: Transform pos: -1.5,40.5 parent: 2 - - uid: 9715 + - uid: 9655 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 9716 + - uid: 9656 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 9717 + - uid: 9657 components: - type: Transform pos: -2.5,39.5 parent: 2 - - uid: 9718 + - uid: 9658 components: - type: Transform pos: -2.5,38.5 parent: 2 - - uid: 9719 + - uid: 9659 components: - type: Transform pos: -2.5,37.5 parent: 2 - - uid: 9720 + - uid: 9660 components: - type: Transform pos: -3.5,37.5 parent: 2 - - uid: 9721 + - uid: 9661 components: - type: Transform pos: -4.5,37.5 parent: 2 - - uid: 9722 + - uid: 9662 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 9723 + - uid: 9663 components: - type: Transform pos: -6.5,38.5 parent: 2 - - uid: 9724 + - uid: 9664 components: - type: Transform pos: -6.5,39.5 parent: 2 - - uid: 9725 + - uid: 9665 components: - type: Transform pos: -6.5,40.5 parent: 2 - - uid: 9726 + - uid: 9666 components: - type: Transform pos: -6.5,41.5 parent: 2 - - uid: 9727 + - uid: 9667 components: - type: Transform pos: -6.5,42.5 parent: 2 - - uid: 9728 + - uid: 9668 components: - type: Transform pos: -6.5,43.5 parent: 2 - - uid: 9729 + - uid: 9669 components: - type: Transform pos: -6.5,44.5 parent: 2 - - uid: 9730 + - uid: 9670 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 9731 + - uid: 9671 components: - type: Transform pos: -6.5,46.5 parent: 2 - - uid: 9732 + - uid: 9672 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 9733 + - uid: 9673 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 9734 + - uid: 9674 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 9735 + - uid: 9675 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 9736 + - uid: 9676 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 9737 + - uid: 9677 components: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 9738 + - uid: 9678 components: - type: Transform pos: -5.5,30.5 parent: 2 - - uid: 9739 + - uid: 9679 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 9740 + - uid: 9680 components: - type: Transform pos: -37.5,61.5 parent: 2 - - uid: 9741 + - uid: 9681 components: - type: Transform pos: -37.5,40.5 parent: 2 - - uid: 9742 + - uid: 9682 components: - type: Transform pos: -37.5,39.5 parent: 2 - - uid: 9743 + - uid: 9683 components: - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 9744 + - uid: 9684 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 9745 + - uid: 9685 components: - type: Transform pos: -35.5,40.5 parent: 2 - - uid: 9746 + - uid: 9686 components: - type: Transform pos: -35.5,41.5 parent: 2 - - uid: 9747 + - uid: 9687 components: - type: Transform pos: -35.5,42.5 parent: 2 - - uid: 9748 + - uid: 9688 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 9749 + - uid: 9689 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 9750 + - uid: 9690 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 9751 + - uid: 9691 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 9752 + - uid: 9692 components: - type: Transform pos: -37.5,59.5 parent: 2 - - uid: 9753 + - uid: 9693 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 9754 + - uid: 9694 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 9755 + - uid: 9695 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 9756 + - uid: 9696 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 9757 + - uid: 9697 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 9758 + - uid: 9698 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 9759 + - uid: 9699 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 9760 + - uid: 9700 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 9761 + - uid: 9701 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 9762 + - uid: 9702 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 9763 + - uid: 9703 components: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 9764 + - uid: 9704 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 9765 + - uid: 9705 components: - type: Transform pos: 9.5,1.5 parent: 2 - - uid: 9766 + - uid: 9706 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 9767 + - uid: 9707 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 9768 + - uid: 9708 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 9769 + - uid: 9709 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 9770 + - uid: 9710 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 9771 + - uid: 9711 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 9772 + - uid: 9712 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 9773 + - uid: 9713 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 9774 + - uid: 9714 components: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 9775 + - uid: 9715 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 9776 + - uid: 9716 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 9777 + - uid: 9717 components: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 9778 + - uid: 9718 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 9779 + - uid: 9719 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 9780 + - uid: 9720 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 9781 + - uid: 9721 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 9782 + - uid: 9722 components: - type: Transform pos: 8.5,12.5 parent: 2 - - uid: 9783 + - uid: 9723 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 9784 + - uid: 9724 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 9785 + - uid: 9725 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 9786 + - uid: 9726 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 9787 + - uid: 9727 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 9788 + - uid: 9728 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 9789 + - uid: 9729 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 9790 + - uid: 9730 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 9791 + - uid: 9731 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 9792 + - uid: 9732 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 9793 + - uid: 9733 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 9794 + - uid: 9734 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 9795 + - uid: 9735 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 9796 + - uid: 9736 components: - type: Transform pos: 0.49999997,16.5 parent: 2 - - uid: 9797 + - uid: 9737 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 9798 + - uid: 9738 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 9799 + - uid: 9739 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 9800 + - uid: 9740 components: - type: Transform pos: 3.5,15.5 parent: 2 - - uid: 9801 + - uid: 9741 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 9802 + - uid: 9742 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 9803 + - uid: 9743 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 9804 + - uid: 9744 components: - type: Transform pos: 6.5,14.5 parent: 2 - - uid: 9805 + - uid: 9745 components: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 9806 + - uid: 9746 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 9807 + - uid: 9747 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 9808 + - uid: 9748 components: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 9809 + - uid: 9749 components: - type: Transform pos: -6.5,14.5 parent: 2 - - uid: 9810 + - uid: 9750 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 9811 + - uid: 9751 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 9812 + - uid: 9752 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 9813 + - uid: 9753 components: - type: Transform pos: -9.5,13.5 parent: 2 - - uid: 9814 + - uid: 9754 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 9815 + - uid: 9755 components: - type: Transform pos: -9.5,11.5 parent: 2 - - uid: 9816 + - uid: 9756 components: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 9817 + - uid: 9757 components: - type: Transform pos: -11.5,11.5 parent: 2 - - uid: 9818 + - uid: 9758 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 9819 + - uid: 9759 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9820 + - uid: 9760 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 9821 + - uid: 9761 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 9822 + - uid: 9762 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 9823 + - uid: 9763 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9824 + - uid: 9764 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9825 + - uid: 9765 components: - type: Transform pos: -10.5,6.5 parent: 2 - - uid: 9826 + - uid: 9766 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 9827 + - uid: 9767 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 9828 + - uid: 9768 components: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 9829 + - uid: 9769 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 9830 + - uid: 9770 components: - type: Transform pos: -0.5,8.5 parent: 2 - - uid: 9831 + - uid: 9771 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 9832 + - uid: 9772 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 9833 + - uid: 9773 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 9834 + - uid: 9774 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 9835 + - uid: 9775 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 9836 + - uid: 9776 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 9837 + - uid: 9777 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 9838 + - uid: 9778 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 9839 + - uid: 9779 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 9840 + - uid: 9780 components: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 9841 + - uid: 9781 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 9842 + - uid: 9782 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 9843 + - uid: 9783 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 9844 + - uid: 9784 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 9845 + - uid: 9785 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 9846 + - uid: 9786 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 9847 + - uid: 9787 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 9848 + - uid: 9788 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 9849 + - uid: 9789 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 9850 + - uid: 9790 components: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 9851 + - uid: 9791 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 9852 + - uid: 9792 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 9853 + - uid: 9793 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 9854 + - uid: 9794 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 9855 + - uid: 9795 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 9856 + - uid: 9796 components: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 9857 + - uid: 9797 components: - type: Transform pos: -10.5,0.5 parent: 2 - - uid: 9858 + - uid: 9798 components: - type: Transform pos: -10.5,-0.5 parent: 2 - - uid: 9859 + - uid: 9799 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 9860 + - uid: 9800 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 9861 + - uid: 9801 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 9862 + - uid: 9802 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - uid: 9863 + - uid: 9803 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 9864 + - uid: 9804 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 9865 + - uid: 9805 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 9866 + - uid: 9806 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 9867 + - uid: 9807 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 9868 + - uid: 9808 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 9869 + - uid: 9809 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 9870 + - uid: 9810 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 9871 + - uid: 9811 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 9872 + - uid: 9812 components: - type: Transform pos: 8.5,-6.5 parent: 2 - - uid: 9873 + - uid: 9813 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 9874 + - uid: 9814 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 9875 + - uid: 9815 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 9876 + - uid: 9816 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 9877 + - uid: 9817 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 9878 + - uid: 9818 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 9879 + - uid: 9819 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 9880 + - uid: 9820 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 9881 + - uid: 9821 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 9882 + - uid: 9822 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 9883 + - uid: 9823 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 9884 + - uid: 9824 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 9885 + - uid: 9825 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 9886 + - uid: 9826 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 9887 + - uid: 9827 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 9888 + - uid: 9828 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 9889 + - uid: 9829 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 9890 + - uid: 9830 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 9891 + - uid: 9831 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 9892 + - uid: 9832 components: - type: Transform pos: 0.50000006,-13.5 parent: 2 - - uid: 9893 + - uid: 9833 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 9894 + - uid: 9834 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 9895 + - uid: 9835 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 9896 + - uid: 9836 components: - type: Transform pos: -39.5,-5.5 parent: 2 - - uid: 9897 + - uid: 9837 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 9898 + - uid: 9838 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 9899 + - uid: 9839 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 9900 + - uid: 9840 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 9901 + - uid: 9841 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - uid: 9902 + - uid: 9842 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 9903 + - uid: 9843 components: - type: Transform pos: -36.5,-1.5 parent: 2 - - uid: 9904 + - uid: 9844 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 9905 + - uid: 9845 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 9906 + - uid: 9846 components: - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 9907 + - uid: 9847 components: - type: Transform pos: -34.5,-3.5 parent: 2 - - uid: 9908 + - uid: 9848 components: - type: Transform pos: -33.5,-3.5 parent: 2 - - uid: 9909 + - uid: 9849 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 9910 + - uid: 9850 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 9911 + - uid: 9851 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 9912 + - uid: 9852 components: - type: Transform pos: -27.5,-1.5 parent: 2 - - uid: 9913 + - uid: 9853 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 9914 + - uid: 9854 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 9915 + - uid: 9855 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 9916 + - uid: 9856 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 9917 + - uid: 9857 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 9918 + - uid: 9858 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 9919 + - uid: 9859 components: - type: Transform pos: -28.5,-2.5 parent: 2 - - uid: 9920 + - uid: 9860 components: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 9921 + - uid: 9861 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 9922 + - uid: 9862 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 9923 + - uid: 9863 components: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 9924 + - uid: 9864 components: - type: Transform pos: -26.5,-5.5 parent: 2 - - uid: 9925 + - uid: 9865 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 9926 + - uid: 9866 components: - type: Transform pos: -24.5,-5.5 parent: 2 - - uid: 9927 + - uid: 9867 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 9928 + - uid: 9868 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 9929 + - uid: 9869 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 9930 + - uid: 9870 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 9931 + - uid: 9871 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 9932 + - uid: 9872 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 9933 + - uid: 9873 components: - type: Transform pos: -22.5,-10.5 parent: 2 - - uid: 9934 + - uid: 9874 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 9935 + - uid: 9875 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 9936 + - uid: 9876 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 9937 + - uid: 9877 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 9938 + - uid: 9878 components: - type: Transform pos: -22.5,-15.5 parent: 2 - - uid: 9939 + - uid: 9879 components: - type: Transform pos: -23.5,-15.5 parent: 2 - - uid: 9940 + - uid: 9880 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 9941 + - uid: 9881 components: - type: Transform pos: 32.5,28.5 parent: 2 - - uid: 9942 + - uid: 9882 components: - type: Transform pos: -31.5,37.5 parent: 2 - - uid: 9943 + - uid: 9883 components: - type: Transform pos: -37.5,62.5 parent: 2 - - uid: 9944 + - uid: 9884 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 9945 + - uid: 9885 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 9946 + - uid: 9886 components: - type: Transform pos: 78.5,-42.5 parent: 2 - - uid: 9947 + - uid: 9887 components: - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 9948 + - uid: 9888 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 9949 + - uid: 9889 components: - type: Transform pos: 71.5,-15.5 parent: 2 - - uid: 9950 + - uid: 9890 components: - type: Transform pos: 71.5,-16.5 parent: 2 - - uid: 9951 + - uid: 9891 components: - type: Transform pos: 71.5,-17.5 parent: 2 - - uid: 9952 + - uid: 9892 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 9953 + - uid: 9893 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 9954 + - uid: 9894 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 9955 + - uid: 9895 components: - type: Transform pos: 68.5,-18.5 parent: 2 - - uid: 9956 + - uid: 9896 components: - type: Transform pos: 67.5,-18.5 parent: 2 - - uid: 9957 + - uid: 9897 components: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 9958 + - uid: 9898 components: - type: Transform pos: 65.5,-18.5 parent: 2 - - uid: 9959 + - uid: 9899 components: - type: Transform pos: 64.5,-18.5 parent: 2 - - uid: 9960 + - uid: 9900 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 9981 + - uid: 9901 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 9982 + - uid: 9902 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 9983 + - uid: 9903 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 9984 + - uid: 9904 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 9985 + - uid: 9905 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 9986 + - uid: 9906 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 9987 + - uid: 9907 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 9988 + - uid: 9908 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 9989 + - uid: 9909 components: - type: Transform pos: -30.5,23.5 parent: 2 - - uid: 9990 + - uid: 9910 components: - type: Transform pos: -31.5,23.5 parent: 2 - - uid: 9991 + - uid: 9911 components: - type: Transform pos: -32.5,23.5 parent: 2 - - uid: 9992 + - uid: 9912 components: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 9993 + - uid: 9913 components: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 9994 + - uid: 9914 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 9995 + - uid: 9915 components: - type: Transform pos: -35.5,24.5 parent: 2 - - uid: 9996 + - uid: 9916 components: - type: Transform pos: -35.5,25.5 parent: 2 - - uid: 9997 + - uid: 9917 components: - type: Transform pos: -35.5,26.5 parent: 2 - - uid: 9998 + - uid: 9918 components: - type: Transform pos: -34.5,26.5 parent: 2 - - uid: 9999 + - uid: 9919 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 10000 + - uid: 9920 components: - type: Transform pos: -32.5,26.5 parent: 2 - - uid: 10001 + - uid: 9921 components: - type: Transform pos: -31.5,26.5 parent: 2 - - uid: 10002 + - uid: 9922 components: - type: Transform pos: -30.5,26.5 parent: 2 - - uid: 10003 + - uid: 9923 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 10004 + - uid: 9924 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 10005 + - uid: 9925 components: - type: Transform pos: -30.5,29.5 parent: 2 - - uid: 10006 + - uid: 9926 components: - type: Transform pos: -30.5,30.5 parent: 2 - - uid: 10007 + - uid: 9927 components: - type: Transform pos: -30.5,31.5 parent: 2 - - uid: 10008 + - uid: 9928 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 10009 + - uid: 9929 components: - type: Transform pos: -30.5,33.5 parent: 2 - - uid: 10010 + - uid: 9930 components: - type: Transform pos: -30.5,34.5 parent: 2 - - uid: 10011 + - uid: 9931 components: - type: Transform pos: -30.5,35.5 parent: 2 - - uid: 10012 + - uid: 9932 components: - type: Transform pos: -30.5,36.5 parent: 2 - - uid: 10013 + - uid: 9933 components: - type: Transform pos: -30.5,37.5 parent: 2 - - uid: 10014 + - uid: 9934 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 10015 + - uid: 9935 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 10016 + - uid: 9936 components: - type: Transform pos: -29.5,37.5 parent: 2 - - uid: 10017 + - uid: 9937 components: - type: Transform pos: -29.5,38.5 parent: 2 - - uid: 10018 + - uid: 9938 components: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 10019 + - uid: 9939 components: - type: Transform pos: -29.5,40.5 parent: 2 - - uid: 10020 + - uid: 9940 components: - type: Transform pos: -29.5,41.5 parent: 2 - - uid: 10021 + - uid: 9941 components: - type: Transform pos: -29.5,42.5 parent: 2 - - uid: 10022 + - uid: 9942 components: - type: Transform pos: -28.5,42.5 parent: 2 - - uid: 10023 + - uid: 9943 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 10024 + - uid: 9944 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 10025 + - uid: 9945 components: - type: Transform pos: -30.5,42.5 parent: 2 - - uid: 10026 + - uid: 9946 components: - type: Transform pos: -31.5,42.5 parent: 2 - - uid: 10027 + - uid: 9947 components: - type: Transform pos: -31.5,43.5 parent: 2 - - uid: 10028 + - uid: 9948 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 10029 + - uid: 9949 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 10030 + - uid: 9950 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 10031 + - uid: 9951 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 10032 + - uid: 9952 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 10033 + - uid: 9953 components: - type: Transform pos: -41.5,39.5 parent: 2 - - uid: 10034 + - uid: 9954 components: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 10035 + - uid: 9955 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 10036 + - uid: 9956 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 10037 + - uid: 9957 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 10038 + - uid: 9958 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 10039 + - uid: 9959 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 10040 + - uid: 9960 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 10041 + - uid: 9961 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 10042 + - uid: 9962 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 10043 + - uid: 9963 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 10044 + - uid: 9964 components: - type: Transform pos: -41.5,34.5 parent: 2 - - uid: 10045 + - uid: 9965 components: - type: Transform pos: -40.5,34.5 parent: 2 - - uid: 10046 + - uid: 9966 components: - type: Transform pos: -39.5,34.5 parent: 2 - - uid: 10047 + - uid: 9967 components: - type: Transform pos: -38.5,34.5 parent: 2 - - uid: 10048 + - uid: 9968 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 10049 + - uid: 9969 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 10050 + - uid: 9970 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 10051 + - uid: 9971 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 10052 + - uid: 9972 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 10053 + - uid: 9973 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 10054 + - uid: 9974 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 10055 + - uid: 9975 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 10056 + - uid: 9976 components: - type: Transform pos: -41.5,28.5 parent: 2 - - uid: 10057 + - uid: 9977 components: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 10058 + - uid: 9978 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 10059 + - uid: 9979 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 10060 + - uid: 9980 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 10061 + - uid: 9981 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 10062 + - uid: 9982 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 10063 + - uid: 9983 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 10064 + - uid: 9984 components: - type: Transform pos: -33.5,57.5 parent: 2 - - uid: 10065 + - uid: 9985 components: - type: Transform pos: -32.5,57.5 parent: 2 - - uid: 10066 + - uid: 9986 components: - type: Transform pos: -31.5,57.5 parent: 2 - - uid: 10067 + - uid: 9987 components: - type: Transform pos: -30.5,57.5 parent: 2 - - uid: 10068 + - uid: 9988 components: - type: Transform pos: -29.5,57.5 parent: 2 - - uid: 10069 + - uid: 9989 components: - type: Transform pos: -28.5,57.5 parent: 2 - - uid: 10070 + - uid: 9990 components: - type: Transform pos: -27.5,57.5 parent: 2 - - uid: 10071 + - uid: 9991 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 10072 + - uid: 9992 components: - type: Transform pos: -26.5,65.5 parent: 2 - - uid: 10073 + - uid: 9993 components: - type: Transform pos: -26.5,64.5 parent: 2 - - uid: 10074 + - uid: 9994 components: - type: Transform pos: -26.5,63.5 parent: 2 - - uid: 10075 + - uid: 9995 components: - type: Transform pos: -26.5,62.5 parent: 2 - - uid: 10076 + - uid: 9996 components: - type: Transform pos: -26.5,61.5 parent: 2 - - uid: 10077 + - uid: 9997 components: - type: Transform pos: -26.5,60.5 parent: 2 - - uid: 10078 + - uid: 9998 components: - type: Transform pos: -27.5,60.5 parent: 2 - - uid: 10079 + - uid: 9999 components: - type: Transform pos: -27.5,59.5 parent: 2 - - uid: 10080 + - uid: 10000 components: - type: Transform pos: -27.5,58.5 parent: 2 - - uid: 10081 + - uid: 10001 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 10082 + - uid: 10002 components: - type: Transform pos: -30.5,65.5 parent: 2 - - uid: 10083 + - uid: 10003 components: - type: Transform pos: -30.5,64.5 parent: 2 - - uid: 10084 + - uid: 10004 components: - type: Transform pos: -30.5,63.5 parent: 2 - - uid: 10085 + - uid: 10005 components: - type: Transform pos: -30.5,62.5 parent: 2 - - uid: 10086 + - uid: 10006 components: - type: Transform pos: -30.5,61.5 parent: 2 - - uid: 10087 + - uid: 10007 components: - type: Transform pos: -30.5,60.5 parent: 2 - - uid: 10088 + - uid: 10008 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 10089 + - uid: 10009 components: - type: Transform pos: -30.5,58.5 parent: 2 - - uid: 10090 + - uid: 10010 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 10091 + - uid: 10011 components: - type: Transform pos: -30.5,83.5 parent: 2 - - uid: 10092 + - uid: 10012 components: - type: Transform pos: -29.5,83.5 parent: 2 - - uid: 10093 + - uid: 10013 components: - type: Transform pos: -29.5,82.5 parent: 2 - - uid: 10094 + - uid: 10014 components: - type: Transform pos: -29.5,81.5 parent: 2 - - uid: 10095 + - uid: 10015 components: - type: Transform pos: -29.5,80.5 parent: 2 - - uid: 10096 + - uid: 10016 components: - type: Transform pos: -29.5,79.5 parent: 2 - - uid: 10097 + - uid: 10017 components: - type: Transform pos: -29.5,78.5 parent: 2 - - uid: 10098 + - uid: 10018 components: - type: Transform pos: -29.5,77.5 parent: 2 - - uid: 10099 + - uid: 10019 components: - type: Transform pos: -29.5,76.5 parent: 2 - - uid: 10100 + - uid: 10020 components: - type: Transform pos: -29.5,75.5 parent: 2 - - uid: 10101 + - uid: 10021 components: - type: Transform pos: -29.5,74.5 parent: 2 - - uid: 10102 + - uid: 10022 components: - type: Transform pos: -29.5,73.5 parent: 2 - - uid: 10103 + - uid: 10023 components: - type: Transform pos: -29.5,72.5 parent: 2 - - uid: 10104 + - uid: 10024 components: - type: Transform pos: -29.5,71.5 parent: 2 - - uid: 10105 + - uid: 10025 components: - type: Transform pos: -29.5,70.5 parent: 2 - - uid: 10106 + - uid: 10026 components: - type: Transform pos: -29.5,69.5 parent: 2 - - uid: 10107 + - uid: 10027 components: - type: Transform pos: -29.5,68.5 parent: 2 - - uid: 10108 + - uid: 10028 components: - type: Transform pos: -28.5,68.5 parent: 2 - - uid: 10109 + - uid: 10029 components: - type: Transform pos: -27.5,68.5 parent: 2 - - uid: 10110 + - uid: 10030 components: - type: Transform pos: -26.5,68.5 parent: 2 - - uid: 10111 + - uid: 10031 components: - type: Transform pos: -25.5,68.5 parent: 2 - - uid: 10112 + - uid: 10032 components: - type: Transform pos: -24.5,68.5 parent: 2 - - uid: 10113 + - uid: 10033 components: - type: Transform pos: -23.5,68.5 parent: 2 - - uid: 10114 + - uid: 10034 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 10115 + - uid: 10035 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 10116 + - uid: 10036 components: - type: Transform pos: -20.5,68.5 parent: 2 - - uid: 10117 + - uid: 10037 components: - type: Transform pos: -19.5,68.5 parent: 2 - - uid: 10118 + - uid: 10038 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 10119 + - uid: 10039 components: - type: Transform pos: -17.5,68.5 parent: 2 - - uid: 10120 + - uid: 10040 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 10121 + - uid: 10041 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 10122 + - uid: 10042 components: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 10123 + - uid: 10043 components: - type: Transform pos: -13.5,68.5 parent: 2 - - uid: 10124 + - uid: 10044 components: - type: Transform pos: -12.5,68.5 parent: 2 - - uid: 10125 + - uid: 10045 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 10126 + - uid: 10046 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 10127 + - uid: 10047 components: - type: Transform pos: -11.5,70.5 parent: 2 - - uid: 10128 + - uid: 10048 components: - type: Transform pos: -11.5,71.5 parent: 2 - - uid: 10129 + - uid: 10049 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 10130 + - uid: 10050 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 10131 + - uid: 10051 components: - type: Transform pos: -11.5,74.5 parent: 2 - - uid: 10132 + - uid: 10052 components: - type: Transform pos: -11.5,75.5 parent: 2 - - uid: 10133 + - uid: 10053 components: - type: Transform pos: -11.5,76.5 parent: 2 - - uid: 10134 + - uid: 10054 components: - type: Transform pos: -11.5,77.5 parent: 2 - - uid: 10135 + - uid: 10055 components: - type: Transform pos: -11.5,78.5 parent: 2 - - uid: 10136 + - uid: 10056 components: - type: Transform pos: -11.5,79.5 parent: 2 - - uid: 10137 + - uid: 10057 components: - type: Transform pos: -11.5,80.5 parent: 2 - - uid: 10138 + - uid: 10058 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 10139 + - uid: 10059 components: - type: Transform pos: -11.5,82.5 parent: 2 - - uid: 10140 + - uid: 10060 components: - type: Transform pos: -11.5,83.5 parent: 2 - - uid: 10141 + - uid: 10061 components: - type: Transform pos: -12.5,83.5 parent: 2 - - uid: 10142 + - uid: 10062 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 10143 + - uid: 10063 components: - type: Transform pos: 2.5,64.5 parent: 2 - - uid: 10144 + - uid: 10064 components: - type: Transform pos: 3.5,64.5 parent: 2 - - uid: 10145 + - uid: 10065 components: - type: Transform pos: 4.5,64.5 parent: 2 - - uid: 10146 + - uid: 10066 components: - type: Transform pos: 5.5,64.5 parent: 2 - - uid: 10147 + - uid: 10067 components: - type: Transform pos: 6.5,64.5 parent: 2 - - uid: 10148 + - uid: 10068 components: - type: Transform pos: 6.5,65.5 parent: 2 - - uid: 10149 + - uid: 10069 components: - type: Transform pos: 6.5,66.5 parent: 2 - - uid: 10150 + - uid: 10070 components: - type: Transform pos: 6.5,67.5 parent: 2 - - uid: 10151 + - uid: 10071 components: - type: Transform pos: 6.5,68.5 parent: 2 - - uid: 10152 + - uid: 10072 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 10153 + - uid: 10073 components: - type: Transform pos: 4.5,68.5 parent: 2 - - uid: 10154 + - uid: 10074 components: - type: Transform pos: 3.5,68.5 parent: 2 - - uid: 10155 + - uid: 10075 components: - type: Transform pos: 2.5,68.5 parent: 2 - - uid: 10156 + - uid: 10076 components: - type: Transform pos: 1.5,68.5 parent: 2 - - uid: 10157 + - uid: 10077 components: - type: Transform pos: 0.49999997,68.5 parent: 2 - - uid: 10158 + - uid: 10078 components: - type: Transform pos: -0.5,68.5 parent: 2 - - uid: 10159 + - uid: 10079 components: - type: Transform pos: -1.5,68.5 parent: 2 - - uid: 10160 + - uid: 10080 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 10161 + - uid: 10081 components: - type: Transform pos: -3.5,68.5 parent: 2 - - uid: 10162 + - uid: 10082 components: - type: Transform pos: -4.5,68.5 parent: 2 - - uid: 10163 + - uid: 10083 components: - type: Transform pos: -5.5,68.5 parent: 2 - - uid: 10164 + - uid: 10084 components: - type: Transform pos: -6.5,68.5 parent: 2 - - uid: 10165 + - uid: 10085 components: - type: Transform pos: -7.5,68.5 parent: 2 - - uid: 10166 + - uid: 10086 components: - type: Transform pos: -8.5,68.5 parent: 2 - - uid: 10167 + - uid: 10087 components: - type: Transform pos: -9.5,68.5 parent: 2 - - uid: 10168 + - uid: 10088 components: - type: Transform pos: -10.5,68.5 parent: 2 - - uid: 10169 + - uid: 10089 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 10170 + - uid: 10090 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 10171 + - uid: 10091 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 10172 + - uid: 10092 components: - type: Transform pos: -4.5,66.5 parent: 2 - - uid: 10173 + - uid: 10093 components: - type: Transform pos: -4.5,65.5 parent: 2 - - uid: 10174 + - uid: 10094 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 10175 + - uid: 10095 components: - type: Transform pos: -4.5,63.5 parent: 2 - - uid: 10176 + - uid: 10096 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 10177 + - uid: 10097 components: - type: Transform pos: -4.5,61.5 parent: 2 - - uid: 10178 + - uid: 10098 components: - type: Transform pos: -4.5,60.5 parent: 2 - - uid: 10179 + - uid: 10099 components: - type: Transform pos: -4.5,59.5 parent: 2 - - uid: 10180 + - uid: 10100 components: - type: Transform pos: -4.5,58.5 parent: 2 - - uid: 10181 + - uid: 10101 components: - type: Transform pos: -4.5,57.5 parent: 2 - - uid: 10182 + - uid: 10102 components: - type: Transform pos: -3.5,57.5 parent: 2 - - uid: 10183 + - uid: 10103 components: - type: Transform pos: -2.5,57.5 parent: 2 - - uid: 10184 + - uid: 10104 components: - type: Transform pos: -1.5,57.5 parent: 2 - - uid: 10185 + - uid: 10105 components: - type: Transform pos: -0.5,57.5 parent: 2 - - uid: 10186 + - uid: 10106 components: - type: Transform pos: -0.5,58.5 parent: 2 - - uid: 10187 + - uid: 10107 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 10188 + - uid: 10108 components: - type: Transform pos: -31.5,44.5 parent: 2 - - uid: 10189 + - uid: 10109 components: - type: Transform pos: -31.5,45.5 parent: 2 - - uid: 10190 + - uid: 10110 components: - type: Transform pos: -31.5,46.5 parent: 2 - - uid: 10191 + - uid: 10111 components: - type: Transform pos: -30.5,46.5 parent: 2 - - uid: 10192 + - uid: 10112 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 10193 + - uid: 10113 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 10194 + - uid: 10114 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 10195 + - uid: 10115 components: - type: Transform pos: -26.5,46.5 parent: 2 - - uid: 10196 + - uid: 10116 components: - type: Transform pos: -26.5,47.5 parent: 2 - - uid: 10197 + - uid: 10117 components: - type: Transform pos: -25.5,47.5 parent: 2 - - uid: 10198 + - uid: 10118 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 10199 + - uid: 10119 components: - type: Transform pos: -25.5,49.5 parent: 2 - - uid: 10200 + - uid: 10120 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 10201 + - uid: 10121 components: - type: Transform pos: -25.5,51.5 parent: 2 - - uid: 10202 + - uid: 10122 components: - type: Transform pos: -25.5,52.5 parent: 2 - - uid: 10203 + - uid: 10123 components: - type: Transform pos: -25.5,53.5 parent: 2 - - uid: 10204 + - uid: 10124 components: - type: Transform pos: -24.5,53.5 parent: 2 - - uid: 10205 + - uid: 10125 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 10206 + - uid: 10126 components: - type: Transform pos: -32.5,46.5 parent: 2 - - uid: 10207 + - uid: 10127 components: - type: Transform pos: -33.5,46.5 parent: 2 - - uid: 10208 + - uid: 10128 components: - type: Transform pos: -33.5,47.5 parent: 2 - - uid: 10209 + - uid: 10129 components: - type: Transform pos: -33.5,48.5 parent: 2 - - uid: 10210 + - uid: 10130 components: - type: Transform pos: -33.5,49.5 parent: 2 - - uid: 10211 + - uid: 10131 components: - type: Transform pos: -34.5,49.5 parent: 2 - - uid: 10212 + - uid: 10132 components: - type: Transform pos: -35.5,49.5 parent: 2 - - uid: 10213 + - uid: 10133 components: - type: Transform pos: -36.5,49.5 parent: 2 - - uid: 10214 + - uid: 10134 components: - type: Transform pos: -37.5,49.5 parent: 2 - - uid: 10215 + - uid: 10135 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 10216 + - uid: 10136 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 10217 + - uid: 10137 components: - type: Transform pos: -36.5,56.5 parent: 2 - - uid: 10218 + - uid: 10138 components: - type: Transform pos: -36.5,55.5 parent: 2 - - uid: 10219 + - uid: 10139 components: - type: Transform pos: -36.5,54.5 parent: 2 - - uid: 10220 + - uid: 10140 components: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 10221 + - uid: 10141 components: - type: Transform pos: -38.5,54.5 parent: 2 - - uid: 10222 + - uid: 10142 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 10223 + - uid: 10143 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 10224 + - uid: 10144 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 10225 + - uid: 10145 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 10226 + - uid: 10146 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 10227 + - uid: 10147 components: - type: Transform pos: -16.5,52.5 parent: 2 - - uid: 10228 + - uid: 10148 components: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 10229 + - uid: 10149 components: - type: Transform pos: -18.5,52.5 parent: 2 - - uid: 10230 + - uid: 10150 components: - type: Transform pos: -18.5,51.5 parent: 2 - - uid: 10231 + - uid: 10151 components: - type: Transform pos: -18.5,50.5 parent: 2 - - uid: 10232 + - uid: 10152 components: - type: Transform pos: -18.5,49.5 parent: 2 - - uid: 10233 + - uid: 10153 components: - type: Transform pos: -18.5,48.5 parent: 2 - - uid: 10234 + - uid: 10154 components: - type: Transform pos: -18.5,47.5 parent: 2 - - uid: 10235 + - uid: 10155 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 10236 + - uid: 10156 components: - type: Transform pos: -19.5,46.5 parent: 2 - - uid: 10237 + - uid: 10157 components: - type: Transform pos: -20.5,46.5 parent: 2 - - uid: 10238 + - uid: 10158 components: - type: Transform pos: -21.5,46.5 parent: 2 - - uid: 10239 + - uid: 10159 components: - type: Transform pos: -21.5,45.5 parent: 2 - - uid: 10240 + - uid: 10160 components: - type: Transform pos: -21.5,44.5 parent: 2 - - uid: 10241 + - uid: 10161 components: - type: Transform pos: -21.5,43.5 parent: 2 - - uid: 10242 + - uid: 10162 components: - type: Transform pos: -21.5,42.5 parent: 2 - - uid: 10243 + - uid: 10163 components: - type: Transform pos: -21.5,41.5 parent: 2 - - uid: 10244 + - uid: 10164 components: - type: Transform pos: -21.5,40.5 parent: 2 - - uid: 10245 + - uid: 10165 components: - type: Transform pos: -21.5,39.5 parent: 2 - - uid: 10246 + - uid: 10166 components: - type: Transform pos: -21.5,38.5 parent: 2 - - uid: 10247 + - uid: 10167 components: - type: Transform pos: -21.5,37.5 parent: 2 - - uid: 10248 + - uid: 10168 components: - type: Transform pos: -21.5,36.5 parent: 2 - - uid: 10249 + - uid: 10169 components: - type: Transform pos: -20.5,36.5 parent: 2 - - uid: 10250 + - uid: 10170 components: - type: Transform pos: -19.5,36.5 parent: 2 - - uid: 10251 + - uid: 10171 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 10252 + - uid: 10172 components: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 10253 + - uid: 10173 components: - type: Transform pos: -18.5,34.5 parent: 2 - - uid: 10254 + - uid: 10174 components: - type: Transform pos: -18.5,33.5 parent: 2 - - uid: 10255 + - uid: 10175 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 10256 + - uid: 10176 components: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 10257 + - uid: 10177 components: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 10258 + - uid: 10178 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 10259 + - uid: 10179 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 10260 + - uid: 10180 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 10261 + - uid: 10181 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 10262 + - uid: 10182 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 10263 + - uid: 10183 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 10264 + - uid: 10184 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 10265 + - uid: 10185 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 10266 + - uid: 10186 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 10267 + - uid: 10187 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 10268 + - uid: 10188 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 10269 + - uid: 10189 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 10270 + - uid: 10190 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 10271 + - uid: 10191 components: - type: Transform pos: -30.5,22.5 parent: 2 - - uid: 10272 + - uid: 10192 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 10273 + - uid: 10193 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 10274 + - uid: 10194 components: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 10275 + - uid: 10195 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 10276 + - uid: 10196 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 10277 + - uid: 10197 components: - type: Transform pos: -29.5,17.5 parent: 2 - - uid: 10278 + - uid: 10198 components: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 10279 + - uid: 10199 components: - type: Transform pos: -27.5,17.5 parent: 2 - - uid: 10280 + - uid: 10200 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 10281 + - uid: 10201 components: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 10282 + - uid: 10202 components: - type: Transform pos: -24.5,17.5 parent: 2 - - uid: 10283 + - uid: 10203 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 10284 + - uid: 10204 components: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 10285 + - uid: 10205 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 10286 + - uid: 10206 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 10287 + - uid: 10207 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 10288 + - uid: 10208 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 10289 + - uid: 10209 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 10290 + - uid: 10210 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 10291 + - uid: 10211 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 10292 + - uid: 10212 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 10293 + - uid: 10213 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 10294 + - uid: 10214 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 10295 + - uid: 10215 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 10296 + - uid: 10216 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 10297 + - uid: 10217 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 10298 + - uid: 10218 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 10299 + - uid: 10219 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 10300 + - uid: 10220 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 10301 + - uid: 10221 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 10302 + - uid: 10222 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 10303 + - uid: 10223 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 10304 + - uid: 10224 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 10305 + - uid: 10225 components: - type: Transform pos: 0.50000006,25.5 parent: 2 - - uid: 10306 + - uid: 10226 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 10307 + - uid: 10227 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 10308 + - uid: 10228 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 10309 + - uid: 10229 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 10310 + - uid: 10230 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 10311 + - uid: 10231 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 10312 + - uid: 10232 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 10313 + - uid: 10233 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 10314 + - uid: 10234 components: - type: Transform pos: 25.5,50.5 parent: 2 - - uid: 10315 + - uid: 10235 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 10316 + - uid: 10236 components: - type: Transform pos: 22.5,31.5 parent: 2 - - uid: 10317 + - uid: 10237 components: - type: Transform pos: 22.5,30.5 parent: 2 - - uid: 10318 + - uid: 10238 components: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 10319 + - uid: 10239 components: - type: Transform pos: 23.5,29.5 parent: 2 - - uid: 10320 + - uid: 10240 components: - type: Transform pos: 24.5,29.5 parent: 2 - - uid: 10321 + - uid: 10241 components: - type: Transform pos: 25.5,29.5 parent: 2 - - uid: 10322 + - uid: 10242 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 10323 + - uid: 10243 components: - type: Transform pos: 26.5,28.5 parent: 2 - - uid: 10324 + - uid: 10244 components: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 10325 + - uid: 10245 components: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 10326 + - uid: 10246 components: - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 10327 + - uid: 10247 components: - type: Transform pos: 26.5,30.5 parent: 2 - - uid: 10328 + - uid: 10248 components: - type: Transform pos: 26.5,31.5 parent: 2 - - uid: 10329 + - uid: 10249 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 10330 + - uid: 10250 components: - type: Transform pos: 28.5,31.5 parent: 2 - - uid: 10331 + - uid: 10251 components: - type: Transform pos: 29.5,31.5 parent: 2 - - uid: 10332 + - uid: 10252 components: - type: Transform pos: 30.5,31.5 parent: 2 - - uid: 10333 + - uid: 10253 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 10334 + - uid: 10254 components: - type: Transform pos: 31.5,30.5 parent: 2 - - uid: 10335 + - uid: 10255 components: - type: Transform pos: 31.5,29.5 parent: 2 - - uid: 10336 + - uid: 10256 components: - type: Transform pos: 31.5,28.5 parent: 2 - - uid: 10337 + - uid: 10257 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 10338 + - uid: 10258 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 10339 + - uid: 10259 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 10340 + - uid: 10260 components: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 10341 + - uid: 10261 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 10342 + - uid: 10262 components: - type: Transform pos: 34.5,31.5 parent: 2 - - uid: 10343 + - uid: 10263 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 10344 + - uid: 10264 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 10345 + - uid: 10265 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 10346 + - uid: 10266 components: - type: Transform pos: 37.5,30.5 parent: 2 - - uid: 10347 + - uid: 10267 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 10348 + - uid: 10268 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 10349 + - uid: 10269 components: - type: Transform pos: 33.5,39.5 parent: 2 - - uid: 10350 + - uid: 10270 components: - type: Transform pos: 33.5,38.5 parent: 2 - - uid: 10351 + - uid: 10271 components: - type: Transform pos: 34.5,37.5 parent: 2 - - uid: 10352 + - uid: 10272 components: - type: Transform pos: 33.5,37.5 parent: 2 - - uid: 10353 + - uid: 10273 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 10354 + - uid: 10274 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 10355 + - uid: 10275 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 10356 + - uid: 10276 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 10357 + - uid: 10277 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 10358 + - uid: 10278 components: - type: Transform pos: 35.5,33.5 parent: 2 - - uid: 10359 + - uid: 10279 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 10360 + - uid: 10280 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 10361 + - uid: 10281 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 10362 + - uid: 10282 components: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 10363 + - uid: 10283 components: - type: Transform pos: 29.5,36.5 parent: 2 - - uid: 10364 + - uid: 10284 components: - type: Transform pos: 28.5,36.5 parent: 2 - - uid: 10365 + - uid: 10285 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 10366 + - uid: 10286 components: - type: Transform pos: 26.5,36.5 parent: 2 - - uid: 10367 + - uid: 10287 components: - type: Transform pos: 25.5,36.5 parent: 2 - - uid: 10368 + - uid: 10288 components: - type: Transform pos: 24.5,36.5 parent: 2 - - uid: 10369 + - uid: 10289 components: - type: Transform pos: 23.5,36.5 parent: 2 - - uid: 10370 + - uid: 10290 components: - type: Transform pos: 22.5,36.5 parent: 2 - - uid: 10371 + - uid: 10291 components: - type: Transform pos: 21.5,36.5 parent: 2 - - uid: 10372 + - uid: 10292 components: - type: Transform pos: 21.5,35.5 parent: 2 - - uid: 10373 + - uid: 10293 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 10374 + - uid: 10294 components: - type: Transform pos: 21.5,33.5 parent: 2 - - uid: 10375 + - uid: 10295 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 10376 + - uid: 10296 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 10377 + - uid: 10297 components: - type: Transform pos: 9.5,54.5 parent: 2 - - uid: 10378 + - uid: 10298 components: - type: Transform pos: 9.5,53.5 parent: 2 - - uid: 10379 + - uid: 10299 components: - type: Transform pos: 10.5,53.5 parent: 2 - - uid: 10380 + - uid: 10300 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 10381 + - uid: 10301 components: - type: Transform pos: 20.5,49.5 parent: 2 - - uid: 10382 + - uid: 10302 components: - type: Transform pos: 20.5,48.5 parent: 2 - - uid: 10383 + - uid: 10303 components: - type: Transform pos: 20.5,47.5 parent: 2 - - uid: 10384 + - uid: 10304 components: - type: Transform pos: 20.5,46.5 parent: 2 - - uid: 10385 + - uid: 10305 components: - type: Transform pos: 20.5,45.5 parent: 2 - - uid: 10386 + - uid: 10306 components: - type: Transform pos: 19.5,45.5 parent: 2 - - uid: 10387 + - uid: 10307 components: - type: Transform pos: 18.5,45.5 parent: 2 - - uid: 10388 + - uid: 10308 components: - type: Transform pos: 17.5,45.5 parent: 2 - - uid: 10389 + - uid: 10309 components: - type: Transform pos: 16.5,45.5 parent: 2 - - uid: 10390 + - uid: 10310 components: - type: Transform pos: 15.5,45.5 parent: 2 - - uid: 10391 + - uid: 10311 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 10392 + - uid: 10312 components: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 10393 + - uid: 10313 components: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 10394 + - uid: 10314 components: - type: Transform pos: 11.5,45.5 parent: 2 - - uid: 10395 + - uid: 10315 components: - type: Transform pos: 10.5,45.5 parent: 2 - - uid: 10396 + - uid: 10316 components: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 10397 + - uid: 10317 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 10398 + - uid: 10318 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 10399 + - uid: 10319 components: - type: Transform pos: 10.5,44.5 parent: 2 - - uid: 10400 + - uid: 10320 components: - type: Transform pos: 10.5,43.5 parent: 2 - - uid: 10401 + - uid: 10321 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 10402 + - uid: 10322 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 10403 + - uid: 10323 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 10404 + - uid: 10324 components: - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 10405 + - uid: 10325 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 10406 + - uid: 10326 components: - type: Transform pos: 10.5,38.5 parent: 2 - - uid: 10407 + - uid: 10327 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 10408 + - uid: 10328 components: - type: Transform pos: 10.5,36.5 parent: 2 - - uid: 10409 + - uid: 10329 components: - type: Transform pos: 10.5,35.5 parent: 2 - - uid: 10410 + - uid: 10330 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 10411 + - uid: 10331 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 10412 + - uid: 10332 components: - type: Transform pos: 7.5,36.5 parent: 2 - - uid: 10413 + - uid: 10333 components: - type: Transform pos: 7.5,35.5 parent: 2 - - uid: 10414 + - uid: 10334 components: - type: Transform pos: 8.5,35.5 parent: 2 - - uid: 10415 + - uid: 10335 components: - type: Transform pos: 9.5,35.5 parent: 2 - - uid: 10416 + - uid: 10336 components: - type: Transform pos: 6.5,35.5 parent: 2 - - uid: 10417 + - uid: 10337 components: - type: Transform pos: 5.5,35.5 parent: 2 - - uid: 10418 + - uid: 10338 components: - type: Transform pos: 4.5,35.5 parent: 2 - - uid: 10419 + - uid: 10339 components: - type: Transform pos: 4.5,34.5 parent: 2 - - uid: 10420 + - uid: 10340 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 10421 + - uid: 10341 components: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 10422 + - uid: 10342 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 10423 + - uid: 10343 components: - type: Transform pos: 4.5,30.5 parent: 2 - - uid: 10424 + - uid: 10344 components: - type: Transform pos: 4.5,29.5 parent: 2 - - uid: 10425 + - uid: 10345 components: - type: Transform pos: 6.5,29.5 parent: 2 - - uid: 10426 + - uid: 10346 components: - type: Transform pos: 7.5,29.5 parent: 2 - - uid: 10427 + - uid: 10347 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 10428 + - uid: 10348 components: - type: Transform pos: 7.5,30.5 parent: 2 - - uid: 10429 + - uid: 10349 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 10430 + - uid: 10350 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 10431 + - uid: 10351 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 10432 + - uid: 10352 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 10433 + - uid: 10353 components: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 10434 + - uid: 10354 components: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 10435 + - uid: 10355 components: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 10436 + - uid: 10356 components: - type: Transform pos: 21.5,25.5 parent: 2 - - uid: 10437 + - uid: 10357 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 10438 + - uid: 10358 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 10439 + - uid: 10359 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 10440 + - uid: 10360 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 10441 + - uid: 10361 components: - type: Transform pos: 24.5,50.5 parent: 2 - - uid: 10442 + - uid: 10362 components: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 10443 + - uid: 10363 components: - type: Transform pos: 22.5,50.5 parent: 2 - - uid: 10444 + - uid: 10364 components: - type: Transform pos: 21.5,50.5 parent: 2 - - uid: 10445 + - uid: 10365 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 10446 + - uid: 10366 components: - type: Transform pos: 11.5,53.5 parent: 2 - - uid: 10447 + - uid: 10367 components: - type: Transform pos: 12.5,53.5 parent: 2 - - uid: 10448 + - uid: 10368 components: - type: Transform pos: 13.5,53.5 parent: 2 - - uid: 10449 + - uid: 10369 components: - type: Transform pos: 14.5,53.5 parent: 2 - - uid: 10450 + - uid: 10370 components: - type: Transform pos: 15.5,53.5 parent: 2 - - uid: 10451 + - uid: 10371 components: - type: Transform pos: 16.5,53.5 parent: 2 - - uid: 10452 + - uid: 10372 components: - type: Transform pos: 17.5,53.5 parent: 2 - - uid: 10453 + - uid: 10373 components: - type: Transform pos: 18.5,53.5 parent: 2 - - uid: 10454 + - uid: 10374 components: - type: Transform pos: 19.5,53.5 parent: 2 - - uid: 10455 + - uid: 10375 components: - type: Transform pos: 20.5,52.5 parent: 2 - - uid: 10456 + - uid: 10376 components: - type: Transform pos: 20.5,51.5 parent: 2 - - uid: 10457 + - uid: 10377 components: - type: Transform pos: 20.5,53.5 parent: 2 - - uid: 10458 + - uid: 10378 components: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 10459 + - uid: 10379 components: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 10460 + - uid: 10380 components: - type: Transform pos: 76.5,-0.5 parent: 2 - - uid: 10461 + - uid: 10381 components: - type: Transform pos: 75.5,-0.5 parent: 2 - - uid: 10462 + - uid: 10382 components: - type: Transform pos: 74.5,-0.5 parent: 2 - - uid: 10463 + - uid: 10383 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 10464 + - uid: 10384 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 10465 + - uid: 10385 components: - type: Transform pos: 73.5,1.5 parent: 2 - - uid: 10466 + - uid: 10386 components: - type: Transform pos: 73.5,2.5 parent: 2 - - uid: 10467 + - uid: 10387 components: - type: Transform pos: 73.5,3.5 parent: 2 - - uid: 10468 + - uid: 10388 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 10469 + - uid: 10389 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 10470 + - uid: 10390 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 10471 + - uid: 10391 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 10472 + - uid: 10392 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 10473 + - uid: 10393 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 10474 + - uid: 10394 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 10475 + - uid: 10395 components: - type: Transform pos: 92.5,20.5 parent: 2 - - uid: 10476 + - uid: 10396 components: - type: Transform pos: 92.5,19.5 parent: 2 - - uid: 10477 + - uid: 10397 components: - type: Transform pos: 92.5,18.5 parent: 2 - - uid: 10478 + - uid: 10398 components: - type: Transform pos: 92.5,17.5 parent: 2 - - uid: 10479 + - uid: 10399 components: - type: Transform pos: 92.5,16.5 parent: 2 - - uid: 10480 + - uid: 10400 components: - type: Transform pos: 92.5,15.5 parent: 2 - - uid: 10481 + - uid: 10401 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 10482 + - uid: 10402 components: - type: Transform pos: 92.5,13.5 parent: 2 - - uid: 10483 + - uid: 10403 components: - type: Transform pos: 91.5,13.5 parent: 2 - - uid: 10484 + - uid: 10404 components: - type: Transform pos: 90.5,13.5 parent: 2 - - uid: 10485 + - uid: 10405 components: - type: Transform pos: 89.5,13.5 parent: 2 - - uid: 10486 + - uid: 10406 components: - type: Transform pos: 88.5,13.5 parent: 2 - - uid: 10487 + - uid: 10407 components: - type: Transform pos: 87.5,13.5 parent: 2 - - uid: 10488 + - uid: 10408 components: - type: Transform pos: 86.5,13.5 parent: 2 - - uid: 10489 + - uid: 10409 components: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 10490 + - uid: 10410 components: - type: Transform pos: 84.5,13.5 parent: 2 - - uid: 10491 + - uid: 10411 components: - type: Transform pos: 83.5,13.5 parent: 2 - - uid: 10492 + - uid: 10412 components: - type: Transform pos: 83.5,12.5 parent: 2 - - uid: 10493 + - uid: 10413 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 10494 + - uid: 10414 components: - type: Transform pos: 83.5,10.5 parent: 2 - - uid: 10495 + - uid: 10415 components: - type: Transform pos: 84.5,10.5 parent: 2 - - uid: 10496 + - uid: 10416 components: - type: Transform pos: 85.5,10.5 parent: 2 - - uid: 10497 + - uid: 10417 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 10498 + - uid: 10418 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 10499 + - uid: 10419 components: - type: Transform pos: 82.5,10.5 parent: 2 - - uid: 10500 + - uid: 10420 components: - type: Transform pos: 82.5,9.5 parent: 2 - - uid: 10501 + - uid: 10421 components: - type: Transform pos: 80.5,9.5 parent: 2 - - uid: 10502 + - uid: 10422 components: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 10503 + - uid: 10423 components: - type: Transform pos: 78.5,9.5 parent: 2 - - uid: 10504 + - uid: 10424 components: - type: Transform pos: 77.5,9.5 parent: 2 - - uid: 10505 + - uid: 10425 components: - type: Transform pos: 76.5,9.5 parent: 2 - - uid: 10506 + - uid: 10426 components: - type: Transform pos: 75.5,9.5 parent: 2 - - uid: 10507 + - uid: 10427 components: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 10508 + - uid: 10428 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 10509 + - uid: 10429 components: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 10510 + - uid: 10430 components: - type: Transform pos: 73.5,10.5 parent: 2 - - uid: 10511 + - uid: 10431 components: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 10512 + - uid: 10432 components: - type: Transform pos: 73.5,12.5 parent: 2 - - uid: 10513 + - uid: 10433 components: - type: Transform pos: 73.5,13.5 parent: 2 - - uid: 10514 + - uid: 10434 components: - type: Transform pos: 72.5,13.5 parent: 2 - - uid: 10515 + - uid: 10435 components: - type: Transform pos: 71.5,13.5 parent: 2 - - uid: 10516 + - uid: 10436 components: - type: Transform pos: 70.5,13.5 parent: 2 - - uid: 10517 + - uid: 10437 components: - type: Transform pos: 69.5,13.5 parent: 2 - - uid: 10518 + - uid: 10438 components: - type: Transform pos: 69.5,14.5 parent: 2 - - uid: 10519 + - uid: 10439 components: - type: Transform pos: 69.5,15.5 parent: 2 - - uid: 10520 + - uid: 10440 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 10521 + - uid: 10441 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 10522 + - uid: 10442 components: - type: Transform pos: 72.5,5.5 parent: 2 - - uid: 10523 + - uid: 10443 components: - type: Transform pos: 73.5,5.5 parent: 2 - - uid: 10524 + - uid: 10444 components: - type: Transform pos: 73.5,6.5 parent: 2 - - uid: 10525 + - uid: 10445 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 10526 + - uid: 10446 components: - type: Transform pos: 73.5,8.5 parent: 2 - - uid: 10527 + - uid: 10447 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 10528 + - uid: 10448 components: - type: Transform pos: 73.5,4.5 parent: 2 - - uid: 10529 + - uid: 10449 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 10530 + - uid: 10450 components: - type: Transform pos: 73.5,15.5 parent: 2 - - uid: 10531 + - uid: 10451 components: - type: Transform pos: 73.5,16.5 parent: 2 - - uid: 10532 + - uid: 10452 components: - type: Transform pos: 73.5,17.5 parent: 2 - - uid: 10533 + - uid: 10453 components: - type: Transform pos: 73.5,18.5 parent: 2 - - uid: 10534 + - uid: 10454 components: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 10535 + - uid: 10455 components: - type: Transform pos: 73.5,20.5 parent: 2 - - uid: 10536 + - uid: 10456 components: - type: Transform pos: 73.5,21.5 parent: 2 - - uid: 10537 + - uid: 10457 components: - type: Transform pos: 73.5,22.5 parent: 2 - - uid: 10538 + - uid: 10458 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 10539 + - uid: 10459 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 10540 + - uid: 10460 components: - type: Transform pos: 85.5,7.5 parent: 2 - - uid: 10541 + - uid: 10461 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 10542 + - uid: 10462 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 10543 + - uid: 10463 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 10544 + - uid: 10464 components: - type: Transform pos: 85.5,5.5 parent: 2 - - uid: 10545 + - uid: 10465 components: - type: Transform pos: 98.5,4.5 parent: 2 - - uid: 10546 + - uid: 10466 components: - type: Transform pos: 98.5,2.5 parent: 2 - - uid: 10547 + - uid: 10467 components: - type: Transform pos: 98.5,0.5 parent: 2 - - uid: 10548 + - uid: 10468 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 10549 + - uid: 10469 components: - type: Transform pos: 98.5,-1.5 parent: 2 - - uid: 10550 + - uid: 10470 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 10551 + - uid: 10471 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 10552 + - uid: 10472 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 10553 + - uid: 10473 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 10554 + - uid: 10474 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 10555 + - uid: 10475 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 10556 + - uid: 10476 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 10557 + - uid: 10477 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 10558 + - uid: 10478 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 10559 + - uid: 10479 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 10560 + - uid: 10480 components: - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 10561 + - uid: 10481 components: - type: Transform pos: 74.5,-3.5 parent: 2 - - uid: 10562 + - uid: 10482 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 10563 + - uid: 10483 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 10564 + - uid: 10484 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 10565 + - uid: 10485 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 10566 + - uid: 10486 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 10567 + - uid: 10487 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 10568 + - uid: 10488 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 10569 + - uid: 10489 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 10570 + - uid: 10490 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 10571 + - uid: 10491 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 10572 + - uid: 10492 components: - type: Transform pos: 67.5,-0.5 parent: 2 - - uid: 10573 + - uid: 10493 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 10574 + - uid: 10494 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 10575 + - uid: 10495 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 10576 + - uid: 10496 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 10577 + - uid: 10497 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 10578 + - uid: 10498 components: - type: Transform pos: 65.5,28.5 parent: 2 - - uid: 10579 + - uid: 10499 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 10580 + - uid: 10500 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 10581 + - uid: 10501 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 10582 + - uid: 10502 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 10583 + - uid: 10503 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 10584 + - uid: 10504 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 10585 + - uid: 10505 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 10586 + - uid: 10506 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 10587 + - uid: 10507 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 10588 + - uid: 10508 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 10589 + - uid: 10509 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 10590 + - uid: 10510 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 10591 + - uid: 10511 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 10592 + - uid: 10512 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 10593 + - uid: 10513 components: - type: Transform pos: 58.5,25.5 parent: 2 - - uid: 10594 + - uid: 10514 components: - type: Transform pos: 57.5,25.5 parent: 2 - - uid: 10595 + - uid: 10515 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 10596 + - uid: 10516 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 10597 + - uid: 10517 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 10598 + - uid: 10518 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 10599 + - uid: 10519 components: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 10600 + - uid: 10520 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 10601 + - uid: 10521 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 10602 + - uid: 10522 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 10603 + - uid: 10523 components: - type: Transform pos: 37.5,20.5 parent: 2 - - uid: 10604 + - uid: 10524 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 10605 + - uid: 10525 components: - type: Transform pos: 39.5,20.5 parent: 2 - - uid: 10606 + - uid: 10526 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 10607 + - uid: 10527 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 10608 + - uid: 10528 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 10609 + - uid: 10529 components: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 10610 + - uid: 10530 components: - type: Transform pos: 44.5,20.5 parent: 2 - - uid: 10611 + - uid: 10531 components: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 10612 + - uid: 10532 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 10613 + - uid: 10533 components: - type: Transform pos: 54.5,26.5 parent: 2 - - uid: 10614 + - uid: 10534 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 10615 + - uid: 10535 components: - type: Transform pos: 54.5,28.5 parent: 2 - - uid: 10616 + - uid: 10536 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 10617 + - uid: 10537 components: - type: Transform pos: 54.5,27.5 parent: 2 - - uid: 10618 + - uid: 10538 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 10619 + - uid: 10539 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 10620 + - uid: 10540 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 10621 + - uid: 10541 components: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 10622 + - uid: 10542 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 10623 + - uid: 10543 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 10624 + - uid: 10544 components: - type: Transform pos: 29.5,7.5 parent: 2 - - uid: 10625 + - uid: 10545 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 10626 + - uid: 10546 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 10627 + - uid: 10547 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 10628 + - uid: 10548 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 10629 + - uid: 10549 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 10630 + - uid: 10550 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 10631 + - uid: 10551 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 10632 + - uid: 10552 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 10633 + - uid: 10553 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 10634 + - uid: 10554 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 10635 + - uid: 10555 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 10636 + - uid: 10556 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 10637 + - uid: 10557 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 10638 + - uid: 10558 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 10639 + - uid: 10559 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 10640 + - uid: 10560 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 10641 + - uid: 10561 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 10642 + - uid: 10562 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 10643 + - uid: 10563 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 10644 + - uid: 10564 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 10645 + - uid: 10565 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 10646 + - uid: 10566 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 10647 + - uid: 10567 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 10648 + - uid: 10568 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 10649 + - uid: 10569 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 10650 + - uid: 10570 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 10651 + - uid: 10571 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 10652 + - uid: 10572 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 10653 + - uid: 10573 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 10654 + - uid: 10574 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 10655 + - uid: 10575 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 10656 + - uid: 10576 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 10657 + - uid: 10577 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 10658 + - uid: 10578 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 10659 + - uid: 10579 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 10660 + - uid: 10580 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 10661 + - uid: 10581 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 10662 + - uid: 10582 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 10663 + - uid: 10583 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 10664 + - uid: 10584 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 10665 + - uid: 10585 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 10666 + - uid: 10586 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 10667 + - uid: 10587 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 10668 + - uid: 10588 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 10669 + - uid: 10589 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 10670 + - uid: 10590 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 10671 + - uid: 10591 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 10672 + - uid: 10592 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 10673 + - uid: 10593 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 10674 + - uid: 10594 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 10675 + - uid: 10595 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 10676 + - uid: 10596 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 10677 + - uid: 10597 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 10678 + - uid: 10598 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 10679 + - uid: 10599 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 10680 + - uid: 10600 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 10681 + - uid: 10601 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 10682 + - uid: 10602 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 10683 + - uid: 10603 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 10684 + - uid: 10604 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 10685 + - uid: 10605 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 10686 + - uid: 10606 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 10687 + - uid: 10607 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 10688 + - uid: 10608 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 10689 + - uid: 10609 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 10690 + - uid: 10610 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 10691 + - uid: 10611 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 10692 + - uid: 10612 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 10693 + - uid: 10613 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 10694 + - uid: 10614 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 10695 + - uid: 10615 components: - type: Transform pos: 45.5,23.5 parent: 2 - - uid: 10696 + - uid: 10616 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 10697 + - uid: 10617 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 10698 + - uid: 10618 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 10699 + - uid: 10619 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 10700 + - uid: 10620 components: - type: Transform pos: 56.5,19.5 parent: 2 - - uid: 10701 + - uid: 10621 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 10702 + - uid: 10622 components: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 10703 + - uid: 10623 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 10704 + - uid: 10624 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 10705 + - uid: 10625 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 10706 + - uid: 10626 components: - type: Transform pos: 52.5,17.5 parent: 2 - - uid: 10707 + - uid: 10627 components: - type: Transform pos: 51.5,17.5 parent: 2 - - uid: 10708 + - uid: 10628 components: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 10709 + - uid: 10629 components: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 10710 + - uid: 10630 components: - type: Transform pos: 49.5,16.5 parent: 2 - - uid: 10711 + - uid: 10631 components: - type: Transform pos: 48.5,16.5 parent: 2 - - uid: 10712 + - uid: 10632 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 10713 + - uid: 10633 components: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 10714 + - uid: 10634 components: - type: Transform pos: 50.5,12.5 parent: 2 - - uid: 10715 + - uid: 10635 components: - type: Transform pos: 51.5,12.5 parent: 2 - - uid: 10716 + - uid: 10636 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 10717 + - uid: 10637 components: - type: Transform pos: 53.5,12.5 parent: 2 - - uid: 10718 + - uid: 10638 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 10719 + - uid: 10639 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 10720 + - uid: 10640 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 10721 + - uid: 10641 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 10722 + - uid: 10642 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 10723 + - uid: 10643 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 10724 + - uid: 10644 components: - type: Transform pos: 55.5,9.5 parent: 2 - - uid: 10725 + - uid: 10645 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 10726 + - uid: 10646 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 10727 + - uid: 10647 components: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 10728 + - uid: 10648 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 10729 + - uid: 10649 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 10730 + - uid: 10650 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 10731 + - uid: 10651 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 10732 + - uid: 10652 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 10733 + - uid: 10653 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 10734 + - uid: 10654 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 10735 + - uid: 10655 components: - type: Transform pos: 49.5,4.5 parent: 2 - - uid: 10736 + - uid: 10656 components: - type: Transform pos: 48.5,4.5 parent: 2 - - uid: 10737 + - uid: 10657 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 10738 + - uid: 10658 components: - type: Transform pos: 56.5,4.5 parent: 2 - - uid: 10739 + - uid: 10659 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 10740 + - uid: 10660 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 10741 + - uid: 10661 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 10742 + - uid: 10662 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 10743 + - uid: 10663 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 10744 + - uid: 10664 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 10745 + - uid: 10665 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 10746 + - uid: 10666 components: - type: Transform pos: 55.5,-10.5 parent: 2 - - uid: 10747 + - uid: 10667 components: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 10748 + - uid: 10668 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 10749 + - uid: 10669 components: - type: Transform pos: 58.5,-10.5 parent: 2 - - uid: 10750 + - uid: 10670 components: - type: Transform pos: 59.5,-10.5 parent: 2 - - uid: 10751 + - uid: 10671 components: - type: Transform pos: 60.5,-10.5 parent: 2 - - uid: 10752 + - uid: 10672 components: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 10753 + - uid: 10673 components: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 10754 + - uid: 10674 components: - type: Transform pos: 63.5,-10.5 parent: 2 - - uid: 10755 + - uid: 10675 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 10756 + - uid: 10676 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 10757 + - uid: 10677 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 10758 + - uid: 10678 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 10759 + - uid: 10679 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 10760 + - uid: 10680 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 10761 + - uid: 10681 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 10762 + - uid: 10682 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 10763 + - uid: 10683 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 10764 + - uid: 10684 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 10765 + - uid: 10685 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 10766 + - uid: 10686 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 10767 + - uid: 10687 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 10768 + - uid: 10688 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 10769 + - uid: 10689 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 10770 + - uid: 10690 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 10771 + - uid: 10691 components: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 10772 + - uid: 10692 components: - type: Transform pos: 63.5,-28.5 parent: 2 - - uid: 10773 + - uid: 10693 components: - type: Transform pos: 62.5,-28.5 parent: 2 - - uid: 10774 + - uid: 10694 components: - type: Transform pos: 61.5,-28.5 parent: 2 - - uid: 10775 + - uid: 10695 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 10776 + - uid: 10696 components: - type: Transform pos: 59.5,-28.5 parent: 2 - - uid: 10777 + - uid: 10697 components: - type: Transform pos: 58.5,-28.5 parent: 2 - - uid: 10778 + - uid: 10698 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 10779 + - uid: 10699 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 10780 + - uid: 10700 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 10781 + - uid: 10701 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 10782 + - uid: 10702 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 10783 + - uid: 10703 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 10784 + - uid: 10704 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 10785 + - uid: 10705 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 10786 + - uid: 10706 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 10787 + - uid: 10707 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 10788 + - uid: 10708 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 10789 + - uid: 10709 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 10790 + - uid: 10710 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 10791 + - uid: 10711 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 10792 + - uid: 10712 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 10793 + - uid: 10713 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 10794 + - uid: 10714 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 10795 + - uid: 10715 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 10796 + - uid: 10716 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 10797 + - uid: 10717 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 10798 + - uid: 10718 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 10799 + - uid: 10719 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 10800 + - uid: 10720 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 10801 + - uid: 10721 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 10802 + - uid: 10722 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 10803 + - uid: 10723 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 10804 + - uid: 10724 components: - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 10805 + - uid: 10725 components: - type: Transform pos: 62.5,-16.5 parent: 2 - - uid: 10806 + - uid: 10726 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 10807 + - uid: 10727 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 10808 + - uid: 10728 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 10809 + - uid: 10729 components: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 10810 + - uid: 10730 components: - type: Transform pos: 57.5,-16.5 parent: 2 - - uid: 10811 + - uid: 10731 components: - type: Transform pos: 56.5,-16.5 parent: 2 - - uid: 10812 + - uid: 10732 components: - type: Transform pos: 56.5,-17.5 parent: 2 - - uid: 10813 + - uid: 10733 components: - type: Transform pos: 56.5,-18.5 parent: 2 - - uid: 10814 + - uid: 10734 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 10815 + - uid: 10735 components: - type: Transform pos: 54.5,-18.5 parent: 2 - - uid: 10816 + - uid: 10736 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 10817 + - uid: 10737 components: - type: Transform pos: 52.5,-18.5 parent: 2 - - uid: 10818 + - uid: 10738 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 10819 + - uid: 10739 components: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 10820 + - uid: 10740 components: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 10821 + - uid: 10741 components: - type: Transform pos: 48.5,-18.5 parent: 2 - - uid: 10822 + - uid: 10742 components: - type: Transform pos: 47.5,-18.5 parent: 2 - - uid: 10823 + - uid: 10743 components: - type: Transform pos: 46.5,-18.5 parent: 2 - - uid: 10824 + - uid: 10744 components: - type: Transform pos: 45.5,-18.5 parent: 2 - - uid: 10825 + - uid: 10745 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 10826 + - uid: 10746 components: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 10827 + - uid: 10747 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 10828 + - uid: 10748 components: - type: Transform pos: 41.5,-18.5 parent: 2 - - uid: 10829 + - uid: 10749 components: - type: Transform pos: 41.5,-17.5 parent: 2 - - uid: 10830 + - uid: 10750 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 10831 + - uid: 10751 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 10832 + - uid: 10752 components: - type: Transform pos: 41.5,-14.5 parent: 2 - - uid: 10833 + - uid: 10753 components: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 10834 + - uid: 10754 components: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 10835 + - uid: 10755 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 10836 + - uid: 10756 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 10837 + - uid: 10757 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 10838 + - uid: 10758 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 10839 + - uid: 10759 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 10840 + - uid: 10760 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 10841 + - uid: 10761 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 10842 + - uid: 10762 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 10843 + - uid: 10763 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 10844 + - uid: 10764 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 10845 + - uid: 10765 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 10846 + - uid: 10766 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 10847 + - uid: 10767 components: - type: Transform pos: 32.5,-11.5 parent: 2 - - uid: 10848 + - uid: 10768 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 10849 + - uid: 10769 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 10850 + - uid: 10770 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 10851 + - uid: 10771 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 10852 + - uid: 10772 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 10853 + - uid: 10773 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 10854 + - uid: 10774 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 10855 + - uid: 10775 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 10856 + - uid: 10776 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 10857 + - uid: 10777 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 10858 + - uid: 10778 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 10859 + - uid: 10779 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 10860 + - uid: 10780 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 10861 + - uid: 10781 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 10862 + - uid: 10782 components: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 10863 + - uid: 10783 components: - type: Transform pos: 36.5,-1.5 parent: 2 - - uid: 10864 + - uid: 10784 components: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 10865 + - uid: 10785 components: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 10866 + - uid: 10786 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 10867 + - uid: 10787 components: - type: Transform pos: 38.5,-3.5 parent: 2 - - uid: 10868 + - uid: 10788 components: - type: Transform pos: 37.5,-3.5 parent: 2 - - uid: 10869 + - uid: 10789 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 10870 + - uid: 10790 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 10871 + - uid: 10791 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 10872 + - uid: 10792 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 10873 + - uid: 10793 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 10874 + - uid: 10794 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 10875 + - uid: 10795 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 10876 + - uid: 10796 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 10877 + - uid: 10797 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 10878 + - uid: 10798 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 10879 + - uid: 10799 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 10880 + - uid: 10800 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 10881 + - uid: 10801 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 10882 + - uid: 10802 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 10883 + - uid: 10803 components: - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 10884 + - uid: 10804 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 10885 + - uid: 10805 components: - type: Transform pos: 53.5,-7.5 parent: 2 - - uid: 10886 + - uid: 10806 components: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 10887 + - uid: 10807 components: - type: Transform pos: 37.5,1.5 parent: 2 - - uid: 10888 + - uid: 10808 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 10889 + - uid: 10809 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 10890 + - uid: 10810 components: - type: Transform pos: 33.5,1.5 parent: 2 - - uid: 10891 + - uid: 10811 components: - type: Transform pos: 32.5,1.5 parent: 2 - - uid: 10892 + - uid: 10812 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 10893 + - uid: 10813 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 10894 + - uid: 10814 components: - type: Transform pos: 29.5,1.5 parent: 2 - - uid: 10895 + - uid: 10815 components: - type: Transform pos: 28.5,1.5 parent: 2 - - uid: 10896 + - uid: 10816 components: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 10897 + - uid: 10817 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 10898 + - uid: 10818 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 10899 + - uid: 10819 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 10900 + - uid: 10820 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 10901 + - uid: 10821 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 10902 + - uid: 10822 components: - type: Transform pos: 52.5,-0.5 parent: 2 - - uid: 10903 + - uid: 10823 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 10904 + - uid: 10824 components: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 10905 + - uid: 10825 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 10906 + - uid: 10826 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 10907 + - uid: 10827 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 10908 + - uid: 10828 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 10909 + - uid: 10829 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 10910 + - uid: 10830 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 10911 + - uid: 10831 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 10912 + - uid: 10832 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 10913 + - uid: 10833 components: - type: Transform pos: 61.5,-3.5 parent: 2 - - uid: 10914 + - uid: 10834 components: - type: Transform pos: 62.5,-3.5 parent: 2 - - uid: 10915 + - uid: 10835 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 10916 + - uid: 10836 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 10917 + - uid: 10837 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 10918 + - uid: 10838 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 10919 + - uid: 10839 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 10920 + - uid: 10840 components: - type: Transform pos: 25.5,-13.5 parent: 2 - - uid: 10921 + - uid: 10841 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 10922 + - uid: 10842 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 10923 + - uid: 10843 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 10924 + - uid: 10844 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 10925 + - uid: 10845 components: - type: Transform pos: 28.5,-13.5 parent: 2 - - uid: 10926 + - uid: 10846 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 10927 + - uid: 10847 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 10928 + - uid: 10848 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 10929 + - uid: 10849 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 10930 + - uid: 10850 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 10931 + - uid: 10851 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 10932 + - uid: 10852 components: - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 10933 + - uid: 10853 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 10934 + - uid: 10854 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 10935 + - uid: 10855 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 10936 + - uid: 10856 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 10937 + - uid: 10857 components: - type: Transform pos: -47.5,4.5 parent: 2 - - uid: 10938 + - uid: 10858 components: - type: Transform pos: -48.5,4.5 parent: 2 - - uid: 10939 + - uid: 10859 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 10940 + - uid: 10860 components: - type: Transform pos: -48.5,2.5 parent: 2 - - uid: 10941 + - uid: 10861 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 10942 + - uid: 10862 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 10943 + - uid: 10863 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 10944 + - uid: 10864 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 10945 + - uid: 10865 components: - type: Transform pos: -58.5,-0.5 parent: 2 - - uid: 10946 + - uid: 10866 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 10947 + - uid: 10867 components: - type: Transform pos: -56.5,-0.5 parent: 2 - - uid: 10948 + - uid: 10868 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 10949 + - uid: 10869 components: - type: Transform pos: -54.5,-0.5 parent: 2 - - uid: 10950 + - uid: 10870 components: - type: Transform pos: -53.5,-0.5 parent: 2 - - uid: 10951 + - uid: 10871 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 10952 + - uid: 10872 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 10953 + - uid: 10873 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 10954 + - uid: 10874 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 10955 + - uid: 10875 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 10956 + - uid: 10876 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 10957 + - uid: 10877 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 10958 + - uid: 10878 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 10959 + - uid: 10879 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 10960 + - uid: 10880 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 10961 + - uid: 10881 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 10962 + - uid: 10882 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 10963 + - uid: 10883 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 10964 + - uid: 10884 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 10965 + - uid: 10885 components: - type: Transform pos: -51.5,12.5 parent: 2 - - uid: 10966 + - uid: 10886 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 10967 + - uid: 10887 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 10968 + - uid: 10888 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 10969 + - uid: 10889 components: - type: Transform pos: -47.5,12.5 parent: 2 - - uid: 10970 + - uid: 10890 components: - type: Transform pos: -46.5,12.5 parent: 2 - - uid: 10971 + - uid: 10891 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 10972 + - uid: 10892 components: - type: Transform pos: -46.5,14.5 parent: 2 - - uid: 10973 + - uid: 10893 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 10974 + - uid: 10894 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 10975 + - uid: 10895 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 10976 + - uid: 10896 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 10977 + - uid: 10897 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 10978 + - uid: 10898 components: - type: Transform pos: -61.5,10.5 parent: 2 - - uid: 10979 + - uid: 10899 components: - type: Transform pos: -60.5,10.5 parent: 2 - - uid: 10980 + - uid: 10900 components: - type: Transform pos: -59.5,10.5 parent: 2 - - uid: 10981 + - uid: 10901 components: - type: Transform pos: -58.5,10.5 parent: 2 - - uid: 10982 + - uid: 10902 components: - type: Transform pos: -57.5,10.5 parent: 2 - - uid: 10983 + - uid: 10903 components: - type: Transform pos: -56.5,10.5 parent: 2 - - uid: 10984 + - uid: 10904 components: - type: Transform pos: -55.5,10.5 parent: 2 - - uid: 10985 + - uid: 10905 components: - type: Transform pos: -54.5,10.5 parent: 2 - - uid: 10986 + - uid: 10906 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 10987 + - uid: 10907 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 10988 + - uid: 10908 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 10989 + - uid: 10909 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 10990 + - uid: 10910 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 10991 + - uid: 10911 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 10992 + - uid: 10912 components: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 10993 + - uid: 10913 components: - type: Transform pos: -58.5,-8.5 parent: 2 - - uid: 10994 + - uid: 10914 components: - type: Transform pos: -57.5,-8.5 parent: 2 - - uid: 10995 + - uid: 10915 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 10996 + - uid: 10916 components: - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 10997 + - uid: 10917 components: - type: Transform pos: -54.5,-8.5 parent: 2 - - uid: 10998 + - uid: 10918 components: - type: Transform pos: -53.5,-8.5 parent: 2 - - uid: 10999 + - uid: 10919 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 11000 + - uid: 10920 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 11001 + - uid: 10921 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 11002 + - uid: 10922 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 11003 + - uid: 10923 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 11004 + - uid: 10924 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 11005 + - uid: 10925 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 11006 + - uid: 10926 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 11007 + - uid: 10927 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 11008 + - uid: 10928 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 11009 + - uid: 10929 components: - type: Transform pos: -65.5,-5.5 parent: 2 - - uid: 11010 + - uid: 10930 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 11011 + - uid: 10931 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 11012 + - uid: 10932 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 11013 + - uid: 10933 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 11014 + - uid: 10934 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 11015 + - uid: 10935 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 11016 + - uid: 10936 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 11017 + - uid: 10937 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 11018 + - uid: 10938 components: - type: Transform pos: -68.5,2.5 parent: 2 - - uid: 11019 + - uid: 10939 components: - type: Transform pos: -68.5,1.5 parent: 2 - - uid: 11020 + - uid: 10940 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 11021 + - uid: 10941 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 11022 + - uid: 10942 components: - type: Transform pos: -68.5,-1.5 parent: 2 - - uid: 11023 + - uid: 10943 components: - type: Transform pos: -68.5,-2.5 parent: 2 - - uid: 11024 + - uid: 10944 components: - type: Transform pos: -68.5,-4.5 parent: 2 - - uid: 11025 + - uid: 10945 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 11026 + - uid: 10946 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 11027 + - uid: 10947 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 11028 + - uid: 10948 components: - type: Transform pos: -68.5,-5.5 parent: 2 - - uid: 11029 + - uid: 10949 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 11030 + - uid: 10950 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 11031 + - uid: 10951 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 11032 + - uid: 10952 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 11033 + - uid: 10953 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 11034 + - uid: 10954 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 11035 + - uid: 10955 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 11036 + - uid: 10956 components: - type: Transform pos: -57.5,20.5 parent: 2 - - uid: 11037 + - uid: 10957 components: - type: Transform pos: -57.5,19.5 parent: 2 - - uid: 11038 + - uid: 10958 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 11039 + - uid: 10959 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 11040 + - uid: 10960 components: - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 11041 + - uid: 10961 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 11042 + - uid: 10962 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 11043 + - uid: 10963 components: - type: Transform pos: -57.5,13.5 parent: 2 - - uid: 11044 + - uid: 10964 components: - type: Transform pos: -57.5,12.5 parent: 2 - - uid: 11045 + - uid: 10965 components: - type: Transform pos: -57.5,11.5 parent: 2 - - uid: 11046 + - uid: 10966 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 11047 + - uid: 10967 components: - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 11048 + - uid: 10968 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 11049 + - uid: 10969 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 11050 + - uid: 10970 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 11051 + - uid: 10971 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 11052 + - uid: 10972 components: - type: Transform pos: -62.5,16.5 parent: 2 - - uid: 11053 + - uid: 10973 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 11054 + - uid: 10974 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 11055 + - uid: 10975 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 11056 + - uid: 10976 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 11057 + - uid: 10977 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 11058 + - uid: 10978 components: - type: Transform pos: -77.5,15.5 parent: 2 - - uid: 11059 + - uid: 10979 components: - type: Transform pos: -76.5,15.5 parent: 2 - - uid: 11060 + - uid: 10980 components: - type: Transform pos: -75.5,15.5 parent: 2 - - uid: 11061 + - uid: 10981 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 11062 + - uid: 10982 components: - type: Transform pos: -73.5,15.5 parent: 2 - - uid: 11063 + - uid: 10983 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 11064 + - uid: 10984 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 11065 + - uid: 10985 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 11066 + - uid: 10986 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 11067 + - uid: 10987 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 11068 + - uid: 10988 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 11069 + - uid: 10989 components: - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 11070 + - uid: 10990 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 11071 + - uid: 10991 components: - type: Transform pos: -64.5,15.5 parent: 2 - - uid: 11072 + - uid: 10992 components: - type: Transform pos: -63.5,15.5 parent: 2 - - uid: 11073 + - uid: 10993 components: - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 11074 + - uid: 10994 components: - type: Transform pos: -123.5,23.5 parent: 2 - - uid: 11075 + - uid: 10995 components: - type: Transform pos: -122.5,23.5 parent: 2 - - uid: 11076 + - uid: 10996 components: - type: Transform pos: -121.5,23.5 parent: 2 - - uid: 11077 + - uid: 10997 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 11078 + - uid: 10998 components: - type: Transform pos: -119.5,23.5 parent: 2 - - uid: 11079 + - uid: 10999 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 11080 + - uid: 11000 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 11081 + - uid: 11001 components: - type: Transform pos: -118.5,22.5 parent: 2 - - uid: 11082 + - uid: 11002 components: - type: Transform pos: -118.5,21.5 parent: 2 - - uid: 11083 + - uid: 11003 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 11084 + - uid: 11004 components: - type: Transform pos: -118.5,24.5 parent: 2 - - uid: 11085 + - uid: 11005 components: - type: Transform pos: -118.5,25.5 parent: 2 - - uid: 11086 + - uid: 11006 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 11087 + - uid: 11007 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 11088 + - uid: 11008 components: - type: Transform pos: -118.5,28.5 parent: 2 - - uid: 11089 + - uid: 11009 components: - type: Transform pos: -118.5,29.5 parent: 2 - - uid: 11090 + - uid: 11010 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 11091 + - uid: 11011 components: - type: Transform pos: -118.5,31.5 parent: 2 - - uid: 11092 + - uid: 11012 components: - type: Transform pos: -118.5,32.5 parent: 2 - - uid: 11093 + - uid: 11013 components: - type: Transform pos: -118.5,33.5 parent: 2 - - uid: 11094 + - uid: 11014 components: - type: Transform pos: -118.5,34.5 parent: 2 - - uid: 11095 + - uid: 11015 components: - type: Transform pos: -118.5,35.5 parent: 2 - - uid: 11096 + - uid: 11016 components: - type: Transform pos: -118.5,36.5 parent: 2 - - uid: 11097 + - uid: 11017 components: - type: Transform pos: -118.5,37.5 parent: 2 - - uid: 11098 + - uid: 11018 components: - type: Transform pos: -118.5,38.5 parent: 2 - - uid: 11099 + - uid: 11019 components: - type: Transform pos: -118.5,39.5 parent: 2 - - uid: 11100 + - uid: 11020 components: - type: Transform pos: -118.5,40.5 parent: 2 - - uid: 11101 + - uid: 11021 components: - type: Transform pos: -118.5,41.5 parent: 2 - - uid: 11102 + - uid: 11022 components: - type: Transform pos: -118.5,42.5 parent: 2 - - uid: 11103 + - uid: 11023 components: - type: Transform pos: -118.5,43.5 parent: 2 - - uid: 11104 + - uid: 11024 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 11105 + - uid: 11025 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 11106 + - uid: 11026 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 11107 + - uid: 11027 components: - type: Transform pos: -118.5,47.5 parent: 2 - - uid: 11108 + - uid: 11028 components: - type: Transform pos: -118.5,48.5 parent: 2 - - uid: 11109 + - uid: 11029 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 11110 + - uid: 11030 components: - type: Transform pos: -118.5,50.5 parent: 2 - - uid: 11111 + - uid: 11031 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 11112 + - uid: 11032 components: - type: Transform pos: -119.5,40.5 parent: 2 - - uid: 11113 + - uid: 11033 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 11114 + - uid: 11034 components: - type: Transform pos: -121.5,40.5 parent: 2 - - uid: 11115 + - uid: 11035 components: - type: Transform pos: -122.5,40.5 parent: 2 - - uid: 11116 + - uid: 11036 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 11117 + - uid: 11037 components: - type: Transform pos: -123.5,41.5 parent: 2 - - uid: 11118 + - uid: 11038 components: - type: Transform pos: -123.5,42.5 parent: 2 - - uid: 11119 + - uid: 11039 components: - type: Transform pos: -123.5,43.5 parent: 2 - - uid: 11120 + - uid: 11040 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 11121 + - uid: 11041 components: - type: Transform pos: -117.5,40.5 parent: 2 - - uid: 11122 + - uid: 11042 components: - type: Transform pos: -116.5,40.5 parent: 2 - - uid: 11123 + - uid: 11043 components: - type: Transform pos: -115.5,40.5 parent: 2 - - uid: 11124 + - uid: 11044 components: - type: Transform pos: -114.5,40.5 parent: 2 - - uid: 11125 + - uid: 11045 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 11126 + - uid: 11046 components: - type: Transform pos: -113.5,41.5 parent: 2 - - uid: 11127 + - uid: 11047 components: - type: Transform pos: -113.5,42.5 parent: 2 - - uid: 11128 + - uid: 11048 components: - type: Transform pos: -113.5,43.5 parent: 2 - - uid: 11129 + - uid: 11049 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 11130 + - uid: 11050 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 11131 + - uid: 11051 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 11132 + - uid: 11052 components: - type: Transform pos: -69.5,11.5 parent: 2 - - uid: 11133 + - uid: 11053 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 11134 + - uid: 11054 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 11135 + - uid: 11055 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 11136 + - uid: 11056 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 11137 + - uid: 11057 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 11138 + - uid: 11058 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 11139 + - uid: 11059 components: - type: Transform pos: -65.5,56.5 parent: 2 - - uid: 11140 + - uid: 11060 components: - type: Transform pos: -65.5,55.5 parent: 2 - - uid: 11141 + - uid: 11061 components: - type: Transform pos: -64.5,55.5 parent: 2 - - uid: 11142 + - uid: 11062 components: - type: Transform pos: -63.5,55.5 parent: 2 - - uid: 11143 + - uid: 11063 components: - type: Transform pos: -62.5,55.5 parent: 2 - - uid: 11144 + - uid: 11064 components: - type: Transform pos: -61.5,55.5 parent: 2 - - uid: 11145 + - uid: 11065 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 11146 + - uid: 11066 components: - type: Transform pos: -61.5,57.5 parent: 2 - - uid: 11147 + - uid: 11067 components: - type: Transform pos: -60.5,57.5 parent: 2 - - uid: 11148 + - uid: 11068 components: - type: Transform pos: -59.5,57.5 parent: 2 - - uid: 11149 + - uid: 11069 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 11150 + - uid: 11070 components: - type: Transform pos: -57.5,60.5 parent: 2 - - uid: 11151 + - uid: 11071 components: - type: Transform pos: -58.5,60.5 parent: 2 - - uid: 11152 + - uid: 11072 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 11153 + - uid: 11073 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 11154 + - uid: 11074 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 11155 + - uid: 11075 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 11156 + - uid: 11076 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 11157 + - uid: 11077 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 11158 + - uid: 11078 components: - type: Transform pos: -58.5,52.5 parent: 2 - - uid: 11159 + - uid: 11079 components: - type: Transform pos: -58.5,51.5 parent: 2 - - uid: 11160 + - uid: 11080 components: - type: Transform pos: -58.5,50.5 parent: 2 - - uid: 11161 + - uid: 11081 components: - type: Transform pos: -58.5,49.5 parent: 2 - - uid: 11162 + - uid: 11082 components: - type: Transform pos: -58.5,48.5 parent: 2 - - uid: 11163 + - uid: 11083 components: - type: Transform pos: -58.5,47.5 parent: 2 - - uid: 11164 + - uid: 11084 components: - type: Transform pos: -58.5,46.5 parent: 2 - - uid: 11165 + - uid: 11085 components: - type: Transform pos: -58.5,45.5 parent: 2 - - uid: 11166 + - uid: 11086 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 11167 + - uid: 11087 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 11168 + - uid: 11088 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 11169 + - uid: 11089 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 11170 + - uid: 11090 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 11171 + - uid: 11091 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 11172 + - uid: 11092 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 11173 + - uid: 11093 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 11174 + - uid: 11094 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 11175 + - uid: 11095 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 11176 + - uid: 11096 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 11177 + - uid: 11097 components: - type: Transform pos: -46.5,45.5 parent: 2 - - uid: 11178 + - uid: 11098 components: - type: Transform pos: -45.5,45.5 parent: 2 - - uid: 11179 + - uid: 11099 components: - type: Transform pos: -44.5,45.5 parent: 2 - - uid: 11180 + - uid: 11100 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 11181 + - uid: 11101 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 11182 + - uid: 11102 components: - type: Transform pos: -44.5,47.5 parent: 2 - - uid: 11183 + - uid: 11103 components: - type: Transform pos: -44.5,46.5 parent: 2 - - uid: 11184 + - uid: 11104 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 11185 + - uid: 11105 components: - type: Transform pos: -49.5,39.5 parent: 2 - - uid: 11186 + - uid: 11106 components: - type: Transform pos: -49.5,40.5 parent: 2 - - uid: 11187 + - uid: 11107 components: - type: Transform pos: -49.5,41.5 parent: 2 - - uid: 11188 + - uid: 11108 components: - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 11189 + - uid: 11109 components: - type: Transform pos: -50.5,41.5 parent: 2 - - uid: 11190 + - uid: 11110 components: - type: Transform pos: -51.5,41.5 parent: 2 - - uid: 11191 + - uid: 11111 components: - type: Transform pos: -52.5,41.5 parent: 2 - - uid: 11192 + - uid: 11112 components: - type: Transform pos: -53.5,41.5 parent: 2 - - uid: 11193 + - uid: 11113 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 11194 + - uid: 11114 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 11195 + - uid: 11115 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 11196 + - uid: 11116 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 11197 + - uid: 11117 components: - type: Transform pos: -58.5,41.5 parent: 2 - - uid: 11198 + - uid: 11118 components: - type: Transform pos: -59.5,41.5 parent: 2 - - uid: 11199 + - uid: 11119 components: - type: Transform pos: -60.5,41.5 parent: 2 - - uid: 11200 + - uid: 11120 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 11201 + - uid: 11121 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 11202 + - uid: 11122 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 11203 + - uid: 11123 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 11204 + - uid: 11124 components: - type: Transform pos: -56.5,38.5 parent: 2 - - uid: 11205 + - uid: 11125 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 11206 + - uid: 11126 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 11207 + - uid: 11127 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 11208 + - uid: 11128 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 11209 + - uid: 11129 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 11210 + - uid: 11130 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 11211 + - uid: 11131 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 11212 + - uid: 11132 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 11213 + - uid: 11133 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 11214 + - uid: 11134 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 11215 + - uid: 11135 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 11216 + - uid: 11136 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 11217 + - uid: 11137 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 11218 + - uid: 11138 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 11219 + - uid: 11139 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 11220 + - uid: 11140 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 11221 + - uid: 11141 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 11222 + - uid: 11142 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 11223 + - uid: 11143 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 11224 + - uid: 11144 components: - type: Transform pos: -46.5,31.5 parent: 2 - - uid: 11225 + - uid: 11145 components: - type: Transform pos: -46.5,32.5 parent: 2 - - uid: 11226 + - uid: 11146 components: - type: Transform pos: -46.5,33.5 parent: 2 - - uid: 11227 + - uid: 11147 components: - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 11228 + - uid: 11148 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 11229 + - uid: 11149 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 11230 + - uid: 11150 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 11231 + - uid: 11151 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 11232 + - uid: 11152 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 11233 + - uid: 11153 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 11234 + - uid: 11154 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 11235 + - uid: 11155 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 11236 + - uid: 11156 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 11237 + - uid: 11157 components: - type: Transform pos: -55.5,24.5 parent: 2 - - uid: 11238 + - uid: 11158 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 11239 + - uid: 11159 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 11240 + - uid: 11160 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 11241 + - uid: 11161 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 11242 + - uid: 11162 components: - type: Transform pos: -51.5,25.5 parent: 2 - - uid: 11243 + - uid: 11163 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 11244 + - uid: 11164 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 11245 + - uid: 11165 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 11246 + - uid: 11166 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 11247 + - uid: 11167 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 11248 + - uid: 11168 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 11249 + - uid: 11169 components: - type: Transform pos: -50.5,21.5 parent: 2 - - uid: 11250 + - uid: 11170 components: - type: Transform pos: -49.5,21.5 parent: 2 - - uid: 11251 + - uid: 11171 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 11252 + - uid: 11172 components: - type: Transform pos: -47.5,21.5 parent: 2 - - uid: 11253 + - uid: 11173 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 11254 + - uid: 11174 components: - type: Transform pos: -47.5,23.5 parent: 2 - - uid: 11255 + - uid: 11175 components: - type: Transform pos: -46.5,23.5 parent: 2 - - uid: 11256 + - uid: 11176 components: - type: Transform pos: -45.5,23.5 parent: 2 - - uid: 11257 + - uid: 11177 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 11258 + - uid: 11178 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 11259 + - uid: 11179 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 11260 + - uid: 11180 components: - type: Transform pos: -25.5,-78.5 parent: 2 - - uid: 11261 + - uid: 11181 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 11262 + - uid: 11182 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 11263 + - uid: 11183 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 11264 + - uid: 11184 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 11265 + - uid: 11185 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 11266 + - uid: 11186 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 11267 + - uid: 11187 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 11268 + - uid: 11188 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 11269 + - uid: 11189 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 11270 + - uid: 11190 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 11271 + - uid: 11191 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 11272 + - uid: 11192 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 11273 + - uid: 11193 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 11274 + - uid: 11194 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 11275 + - uid: 11195 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 11276 + - uid: 11196 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 11277 + - uid: 11197 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 11278 + - uid: 11198 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 11279 + - uid: 11199 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 11280 + - uid: 11200 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 11281 + - uid: 11201 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 11282 + - uid: 11202 components: - type: Transform pos: -23.5,-62.5 parent: 2 - - uid: 11283 + - uid: 11203 components: - type: Transform pos: -23.5,-63.5 parent: 2 - - uid: 11284 + - uid: 11204 components: - type: Transform pos: -23.5,-64.5 parent: 2 - - uid: 11285 + - uid: 11205 components: - type: Transform pos: -23.5,-65.5 parent: 2 - - uid: 11286 + - uid: 11206 components: - type: Transform pos: -23.5,-66.5 parent: 2 - - uid: 11287 + - uid: 11207 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 11288 + - uid: 11208 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 11289 + - uid: 11209 components: - type: Transform pos: -23.5,-69.5 parent: 2 - - uid: 11290 + - uid: 11210 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 11291 + - uid: 11211 components: - type: Transform pos: -22.5,-72.5 parent: 2 - - uid: 11292 + - uid: 11212 components: - type: Transform pos: -22.5,-73.5 parent: 2 - - uid: 11293 + - uid: 11213 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 11294 + - uid: 11214 components: - type: Transform pos: -22.5,-75.5 parent: 2 - - uid: 11295 + - uid: 11215 components: - type: Transform pos: -22.5,-76.5 parent: 2 - - uid: 11296 + - uid: 11216 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 11297 + - uid: 11217 components: - type: Transform pos: -22.5,-78.5 parent: 2 - - uid: 11298 + - uid: 11218 components: - type: Transform pos: -22.5,-79.5 parent: 2 - - uid: 11299 + - uid: 11219 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 11300 + - uid: 11220 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 11301 + - uid: 11221 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 11302 + - uid: 11222 components: - type: Transform pos: -22.5,-65.5 parent: 2 - - uid: 11303 + - uid: 11223 components: - type: Transform pos: -21.5,-65.5 parent: 2 - - uid: 11304 + - uid: 11224 components: - type: Transform pos: -20.5,-65.5 parent: 2 - - uid: 11305 + - uid: 11225 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 11306 + - uid: 11226 components: - type: Transform pos: -18.5,-65.5 parent: 2 - - uid: 11307 + - uid: 11227 components: - type: Transform pos: -17.5,-65.5 parent: 2 - - uid: 11308 + - uid: 11228 components: - type: Transform pos: -16.5,-65.5 parent: 2 - - uid: 11309 + - uid: 11229 components: - type: Transform pos: -15.5,-65.5 parent: 2 - - uid: 11310 + - uid: 11230 components: - type: Transform pos: -15.5,-64.5 parent: 2 - - uid: 11311 + - uid: 11231 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 11312 + - uid: 11232 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 11313 + - uid: 11233 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 11314 + - uid: 11234 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 11315 + - uid: 11235 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 11316 + - uid: 11236 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 11317 + - uid: 11237 components: - type: Transform pos: -18.5,-61.5 parent: 2 - - uid: 11318 + - uid: 11238 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 11319 + - uid: 11239 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 11320 + - uid: 11240 components: - type: Transform pos: -26.5,-60.5 parent: 2 - - uid: 11321 + - uid: 11241 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 11322 + - uid: 11242 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 11323 + - uid: 11243 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 11324 + - uid: 11244 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 11325 + - uid: 11245 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 11326 + - uid: 11246 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 11327 + - uid: 11247 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 11328 + - uid: 11248 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 11329 + - uid: 11249 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 11330 + - uid: 11250 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 11331 + - uid: 11251 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 11332 + - uid: 11252 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 11333 + - uid: 11253 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 11334 + - uid: 11254 components: - type: Transform pos: -36.5,-58.5 parent: 2 - - uid: 11335 + - uid: 11255 components: - type: Transform pos: -36.5,-59.5 parent: 2 - - uid: 11336 + - uid: 11256 components: - type: Transform pos: -36.5,-60.5 parent: 2 - - uid: 11337 + - uid: 11257 components: - type: Transform pos: -36.5,-61.5 parent: 2 - - uid: 11338 + - uid: 11258 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 11339 + - uid: 11259 components: - type: Transform pos: -36.5,-63.5 parent: 2 - - uid: 11340 + - uid: 11260 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 11341 + - uid: 11261 components: - type: Transform pos: -36.5,-65.5 parent: 2 - - uid: 11342 + - uid: 11262 components: - type: Transform pos: -37.5,-65.5 parent: 2 - - uid: 11343 + - uid: 11263 components: - type: Transform pos: -38.5,-65.5 parent: 2 - - uid: 11344 + - uid: 11264 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 11345 + - uid: 11265 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 11346 + - uid: 11266 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 11347 + - uid: 11267 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 11348 + - uid: 11268 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 11349 + - uid: 11269 components: - type: Transform pos: -29.5,-70.5 parent: 2 - - uid: 11350 + - uid: 11270 components: - type: Transform pos: -30.5,-70.5 parent: 2 - - uid: 11351 + - uid: 11271 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 11352 + - uid: 11272 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 11353 + - uid: 11273 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 11354 + - uid: 11274 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 11355 + - uid: 11275 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 11356 + - uid: 11276 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 11357 + - uid: 11277 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 11358 + - uid: 11278 components: - type: Transform pos: -30.5,-74.5 parent: 2 - - uid: 11359 + - uid: 11279 components: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 11360 + - uid: 11280 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 11361 + - uid: 11281 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 11362 + - uid: 11282 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 11363 + - uid: 11283 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 11364 + - uid: 11284 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 11365 + - uid: 11285 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 11366 + - uid: 11286 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 11367 + - uid: 11287 components: - type: Transform pos: -33.5,-53.5 parent: 2 - - uid: 11368 + - uid: 11288 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 11369 + - uid: 11289 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 11370 + - uid: 11290 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 11371 + - uid: 11291 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 11372 + - uid: 11292 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 11373 + - uid: 11293 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 11374 + - uid: 11294 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 11375 + - uid: 11295 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 11376 + - uid: 11296 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 11377 + - uid: 11297 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 11378 + - uid: 11298 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 11379 + - uid: 11299 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 11380 + - uid: 11300 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 11381 + - uid: 11301 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 11382 + - uid: 11302 components: - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 11383 + - uid: 11303 components: - type: Transform pos: -34.5,-52.5 parent: 2 - - uid: 11384 + - uid: 11304 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 11385 + - uid: 11305 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 11386 + - uid: 11306 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 11387 + - uid: 11307 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 11388 + - uid: 11308 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 11389 + - uid: 11309 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 11390 + - uid: 11310 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 11391 + - uid: 11311 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 11392 + - uid: 11312 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 11393 + - uid: 11313 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 11394 + - uid: 11314 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 11395 + - uid: 11315 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 11396 + - uid: 11316 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 11397 + - uid: 11317 components: - type: Transform pos: -28.5,-33.5 parent: 2 - - uid: 11398 + - uid: 11318 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 11399 + - uid: 11319 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 11400 + - uid: 11320 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 11401 + - uid: 11321 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 11402 + - uid: 11322 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 11403 + - uid: 11323 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 11404 + - uid: 11324 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 11405 + - uid: 11325 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 11406 + - uid: 11326 components: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 11407 + - uid: 11327 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 11408 + - uid: 11328 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 11409 + - uid: 11329 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 11410 + - uid: 11330 components: - type: Transform pos: -32.5,-46.5 parent: 2 - - uid: 11411 + - uid: 11331 components: - type: Transform pos: -32.5,-45.5 parent: 2 - - uid: 11412 + - uid: 11332 components: - type: Transform pos: -32.5,-44.5 parent: 2 - - uid: 11413 + - uid: 11333 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 11414 + - uid: 11334 components: - type: Transform pos: -32.5,-42.5 parent: 2 - - uid: 11415 + - uid: 11335 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 11416 + - uid: 11336 components: - type: Transform pos: -32.5,-40.5 parent: 2 - - uid: 11417 + - uid: 11337 components: - type: Transform pos: -32.5,-39.5 parent: 2 - - uid: 11418 + - uid: 11338 components: - type: Transform pos: -32.5,-38.5 parent: 2 - - uid: 11419 + - uid: 11339 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 11420 + - uid: 11340 components: - type: Transform pos: -30.5,-38.5 parent: 2 - - uid: 11421 + - uid: 11341 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 11422 + - uid: 11342 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 11423 + - uid: 11343 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 11424 + - uid: 11344 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 11425 + - uid: 11345 components: - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 11426 + - uid: 11346 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 11427 + - uid: 11347 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 11428 + - uid: 11348 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 11429 + - uid: 11349 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 11430 + - uid: 11350 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 11431 + - uid: 11351 components: - type: Transform pos: -23.5,-35.5 parent: 2 - - uid: 11432 + - uid: 11352 components: - type: Transform pos: -23.5,-36.5 parent: 2 - - uid: 11433 + - uid: 11353 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - uid: 11434 + - uid: 11354 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 11435 + - uid: 11355 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 11436 + - uid: 11356 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 11437 + - uid: 11357 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 11438 + - uid: 11358 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 11439 + - uid: 11359 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 11440 + - uid: 11360 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 11441 + - uid: 11361 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 11442 + - uid: 11362 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 11443 + - uid: 11363 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 11444 + - uid: 11364 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 11445 + - uid: 11365 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 11446 + - uid: 11366 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 11447 + - uid: 11367 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 11448 + - uid: 11368 components: - type: Transform pos: -30.5,-45.5 parent: 2 - - uid: 11449 + - uid: 11369 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 11450 + - uid: 11370 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 11451 + - uid: 11371 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 11452 + - uid: 11372 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 11453 + - uid: 11373 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 11454 + - uid: 11374 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 11455 + - uid: 11375 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 11456 + - uid: 11376 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 11457 + - uid: 11377 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 11458 + - uid: 11378 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 11459 + - uid: 11379 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 11460 + - uid: 11380 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 11461 + - uid: 11381 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 11462 + - uid: 11382 components: - type: Transform pos: -18.5,-38.5 parent: 2 - - uid: 11463 + - uid: 11383 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 11464 + - uid: 11384 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 11465 + - uid: 11385 components: - type: Transform pos: -16.5,-39.5 parent: 2 - - uid: 11466 + - uid: 11386 components: - type: Transform pos: -15.5,-39.5 parent: 2 - - uid: 11467 + - uid: 11387 components: - type: Transform pos: -14.5,-39.5 parent: 2 - - uid: 11468 + - uid: 11388 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 11469 + - uid: 11389 components: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 11470 + - uid: 11390 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 11471 + - uid: 11391 components: - type: Transform pos: -13.5,-36.5 parent: 2 - - uid: 11472 + - uid: 11392 components: - type: Transform pos: -13.5,-35.5 parent: 2 - - uid: 11473 + - uid: 11393 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 11474 + - uid: 11394 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 11475 + - uid: 11395 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 11476 + - uid: 11396 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 11477 + - uid: 11397 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 11478 + - uid: 11398 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 11479 + - uid: 11399 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 11480 + - uid: 11400 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 11481 + - uid: 11401 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 11482 + - uid: 11402 components: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 11483 + - uid: 11403 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 11484 + - uid: 11404 components: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 11485 + - uid: 11405 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 11486 + - uid: 11406 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 11487 + - uid: 11407 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 11488 + - uid: 11408 components: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 11489 + - uid: 11409 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 11490 + - uid: 11410 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 11491 + - uid: 11411 components: - type: Transform pos: -8.5,-30.5 parent: 2 - - uid: 11492 + - uid: 11412 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 11493 + - uid: 11413 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 11494 + - uid: 11414 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 11495 + - uid: 11415 components: - type: Transform pos: -12.5,-40.5 parent: 2 - - uid: 11496 + - uid: 11416 components: - type: Transform pos: -11.5,-40.5 parent: 2 - - uid: 11497 + - uid: 11417 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 11498 + - uid: 11418 components: - type: Transform pos: -13.5,-41.5 parent: 2 - - uid: 11499 + - uid: 11419 components: - type: Transform pos: -10.5,-39.5 parent: 2 - - uid: 11500 + - uid: 11420 components: - type: Transform pos: -10.5,-38.5 parent: 2 - - uid: 11501 + - uid: 11421 components: - type: Transform pos: -10.5,-37.5 parent: 2 - - uid: 11502 + - uid: 11422 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 11503 + - uid: 11423 components: - type: Transform pos: -13.5,-42.5 parent: 2 - - uid: 11504 + - uid: 11424 components: - type: Transform pos: -13.5,-43.5 parent: 2 - - uid: 11505 + - uid: 11425 components: - type: Transform pos: -13.5,-44.5 parent: 2 - - uid: 11506 + - uid: 11426 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 11507 + - uid: 11427 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 11508 + - uid: 11428 components: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 11509 + - uid: 11429 components: - type: Transform pos: -13.5,-48.5 parent: 2 - - uid: 11510 + - uid: 11430 components: - type: Transform pos: -13.5,-49.5 parent: 2 - - uid: 11511 + - uid: 11431 components: - type: Transform pos: -12.5,-49.5 parent: 2 - - uid: 11512 + - uid: 11432 components: - type: Transform pos: -11.5,-49.5 parent: 2 - - uid: 11513 + - uid: 11433 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 11514 + - uid: 11434 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 11515 + - uid: 11435 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 11516 + - uid: 11436 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 11517 + - uid: 11437 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 11518 + - uid: 11438 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 11519 + - uid: 11439 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 11520 + - uid: 11440 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 11521 + - uid: 11441 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 11522 + - uid: 11442 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 11523 + - uid: 11443 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 11524 + - uid: 11444 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 11525 + - uid: 11445 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 11526 + - uid: 11446 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 11527 + - uid: 11447 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 11528 + - uid: 11448 components: - type: Transform pos: -5.5,-42.5 parent: 2 - - uid: 11529 + - uid: 11449 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 11530 + - uid: 11450 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 11531 + - uid: 11451 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 11532 + - uid: 11452 components: - type: Transform pos: -7.5,-40.5 parent: 2 - - uid: 11533 + - uid: 11453 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 11534 + - uid: 11454 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 11535 + - uid: 11455 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - uid: 11536 + - uid: 11456 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 11537 + - uid: 11457 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 11538 + - uid: 11458 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 11539 + - uid: 11459 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 11540 + - uid: 11460 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 11541 + - uid: 11461 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 11542 + - uid: 11462 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 11543 + - uid: 11463 components: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 11544 + - uid: 11464 components: - type: Transform pos: -22.5,-25.5 parent: 2 - - uid: 11545 + - uid: 11465 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 11546 + - uid: 11466 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 11547 + - uid: 11467 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 11548 + - uid: 11468 components: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 11549 + - uid: 11469 components: - type: Transform pos: -22.5,-29.5 parent: 2 - - uid: 11550 + - uid: 11470 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 11551 + - uid: 11471 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 11552 + - uid: 11472 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 11553 + - uid: 11473 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 11554 + - uid: 11474 components: - type: Transform pos: -13.5,-50.5 parent: 2 - - uid: 11555 + - uid: 11475 components: - type: Transform pos: -14.5,-50.5 parent: 2 - - uid: 11556 + - uid: 11476 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 11557 + - uid: 11477 components: - type: Transform pos: -16.5,-50.5 parent: 2 - - uid: 11558 + - uid: 11478 components: - type: Transform pos: -15.5,-51.5 parent: 2 - - uid: 11559 + - uid: 11479 components: - type: Transform pos: -15.5,-52.5 parent: 2 - - uid: 11560 + - uid: 11480 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 11561 + - uid: 11481 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 11562 + - uid: 11482 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 11563 + - uid: 11483 components: - type: Transform pos: -15.5,-53.5 parent: 2 - - uid: 11564 + - uid: 11484 components: - type: Transform pos: -15.5,-54.5 parent: 2 - - uid: 11565 + - uid: 11485 components: - type: Transform pos: -15.5,-55.5 parent: 2 - - uid: 11566 + - uid: 11486 components: - type: Transform pos: -15.5,-56.5 parent: 2 - - uid: 11567 + - uid: 11487 components: - type: Transform pos: -16.5,-56.5 parent: 2 - - uid: 11568 + - uid: 11488 components: - type: Transform pos: -17.5,-56.5 parent: 2 - - uid: 11569 + - uid: 11489 components: - type: Transform pos: -18.5,-56.5 parent: 2 - - uid: 11570 + - uid: 11490 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 11571 + - uid: 11491 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 11572 + - uid: 11492 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 11573 + - uid: 11493 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 11574 + - uid: 11494 components: - type: Transform pos: -4.5,-57.5 parent: 2 - - uid: 11575 + - uid: 11495 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 11576 + - uid: 11496 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 11577 + - uid: 11497 components: - type: Transform pos: -14.5,-65.5 parent: 2 - - uid: 11578 + - uid: 11498 components: - type: Transform pos: -13.5,-65.5 parent: 2 - - uid: 11579 + - uid: 11499 components: - type: Transform pos: -12.5,-65.5 parent: 2 - - uid: 11580 + - uid: 11500 components: - type: Transform pos: -11.5,-65.5 parent: 2 - - uid: 11581 + - uid: 11501 components: - type: Transform pos: -10.5,-65.5 parent: 2 - - uid: 11582 + - uid: 11502 components: - type: Transform pos: -9.5,-65.5 parent: 2 - - uid: 11583 + - uid: 11503 components: - type: Transform pos: -8.5,-65.5 parent: 2 - - uid: 11584 + - uid: 11504 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 11585 + - uid: 11505 components: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 11586 + - uid: 11506 components: - type: Transform pos: -6.5,-64.5 parent: 2 - - uid: 11587 + - uid: 11507 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 11588 + - uid: 11508 components: - type: Transform pos: -4.5,-64.5 parent: 2 - - uid: 11589 + - uid: 11509 components: - type: Transform pos: -3.5,-64.5 parent: 2 - - uid: 11590 + - uid: 11510 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 11591 + - uid: 11511 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 11592 + - uid: 11512 components: - type: Transform pos: -6.5,-56.5 parent: 2 - - uid: 11593 + - uid: 11513 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 11594 + - uid: 11514 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 11595 + - uid: 11515 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 11596 + - uid: 11516 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 11597 + - uid: 11517 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - uid: 11598 + - uid: 11518 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 11599 + - uid: 11519 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 11600 + - uid: 11520 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 11601 + - uid: 11521 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 11602 + - uid: 11522 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 11603 + - uid: 11523 components: - type: Transform pos: -9.5,-62.5 parent: 2 - - uid: 11604 + - uid: 11524 components: - type: Transform pos: -9.5,-63.5 parent: 2 - - uid: 11605 + - uid: 11525 components: - type: Transform pos: -9.5,-64.5 parent: 2 - - uid: 11606 + - uid: 11526 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 11607 + - uid: 11527 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 11608 + - uid: 11528 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 11609 + - uid: 11529 components: - type: Transform pos: 5.5,-74.5 parent: 2 - - uid: 11610 + - uid: 11530 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 11611 + - uid: 11531 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 11612 + - uid: 11532 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 11613 + - uid: 11533 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 11614 + - uid: 11534 components: - type: Transform pos: 5.5,-69.5 parent: 2 - - uid: 11615 + - uid: 11535 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 11616 + - uid: 11536 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 11617 + - uid: 11537 components: - type: Transform pos: 5.5,-66.5 parent: 2 - - uid: 11618 + - uid: 11538 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 11619 + - uid: 11539 components: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 11620 + - uid: 11540 components: - type: Transform pos: 3.5,-65.5 parent: 2 - - uid: 11621 + - uid: 11541 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 11622 + - uid: 11542 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 11623 + - uid: 11543 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 11624 + - uid: 11544 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 11625 + - uid: 11545 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 11626 + - uid: 11546 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 11627 + - uid: 11547 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 11628 + - uid: 11548 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 11629 + - uid: 11549 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 11630 + - uid: 11550 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 11631 + - uid: 11551 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 11632 + - uid: 11552 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 11633 + - uid: 11553 components: - type: Transform pos: 24.5,-19.5 parent: 2 - - uid: 11634 + - uid: 11554 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 11635 + - uid: 11555 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 11636 + - uid: 11556 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 11637 + - uid: 11557 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 11638 + - uid: 11558 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 11639 + - uid: 11559 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 11640 + - uid: 11560 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 11641 + - uid: 11561 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 11642 + - uid: 11562 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 11643 + - uid: 11563 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 11644 + - uid: 11564 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 11645 + - uid: 11565 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 11646 + - uid: 11566 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 11647 + - uid: 11567 components: - type: Transform pos: 33.5,-22.5 parent: 2 - - uid: 11648 + - uid: 11568 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 11649 + - uid: 11569 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 11650 + - uid: 11570 components: - type: Transform pos: 30.5,-22.5 parent: 2 - - uid: 11651 + - uid: 11571 components: - type: Transform pos: 29.5,-22.5 parent: 2 - - uid: 11652 + - uid: 11572 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 11653 + - uid: 11573 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 11654 + - uid: 11574 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 11655 + - uid: 11575 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 11656 + - uid: 11576 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 11657 + - uid: 11577 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 11658 + - uid: 11578 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 11659 + - uid: 11579 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 11660 + - uid: 11580 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 11661 + - uid: 11581 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 11662 + - uid: 11582 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 11663 + - uid: 11583 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 11664 + - uid: 11584 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 11665 + - uid: 11585 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 11666 + - uid: 11586 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 11667 + - uid: 11587 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 11668 + - uid: 11588 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 11669 + - uid: 11589 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 11670 + - uid: 11590 components: - type: Transform pos: 31.5,-34.5 parent: 2 - - uid: 11671 + - uid: 11591 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 11672 + - uid: 11592 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 11673 + - uid: 11593 components: - type: Transform pos: 34.5,-34.5 parent: 2 - - uid: 11674 + - uid: 11594 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 11675 + - uid: 11595 components: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 11676 + - uid: 11596 components: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 11677 + - uid: 11597 components: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 11678 + - uid: 11598 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 11679 + - uid: 11599 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 11680 + - uid: 11600 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 11681 + - uid: 11601 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 11682 + - uid: 11602 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 11683 + - uid: 11603 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 11684 + - uid: 11604 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 11685 + - uid: 11605 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 11686 + - uid: 11606 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 11687 + - uid: 11607 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 11688 + - uid: 11608 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 11689 + - uid: 11609 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 11690 + - uid: 11610 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 11691 + - uid: 11611 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 11692 + - uid: 11612 components: - type: Transform pos: 30.5,-39.5 parent: 2 - - uid: 11693 + - uid: 11613 components: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 11694 + - uid: 11614 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 11695 + - uid: 11615 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 11696 + - uid: 11616 components: - type: Transform pos: 34.5,-39.5 parent: 2 - - uid: 11697 + - uid: 11617 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 11698 + - uid: 11618 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 11699 + - uid: 11619 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 11700 + - uid: 11620 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 11701 + - uid: 11621 components: - type: Transform pos: 26.5,-34.5 parent: 2 - - uid: 11702 + - uid: 11622 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 11703 + - uid: 11623 components: - type: Transform pos: 24.5,-34.5 parent: 2 - - uid: 11704 + - uid: 11624 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 11705 + - uid: 11625 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 11706 + - uid: 11626 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 11707 + - uid: 11627 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 11708 + - uid: 11628 components: - type: Transform pos: 19.5,-34.5 parent: 2 - - uid: 11709 + - uid: 11629 components: - type: Transform pos: 18.5,-34.5 parent: 2 - - uid: 11710 + - uid: 11630 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 11711 + - uid: 11631 components: - type: Transform pos: 16.5,-34.5 parent: 2 - - uid: 11712 + - uid: 11632 components: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 11713 + - uid: 11633 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 11714 + - uid: 11634 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 11715 + - uid: 11635 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 11716 + - uid: 11636 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 11717 + - uid: 11637 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 11718 + - uid: 11638 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 11719 + - uid: 11639 components: - type: Transform pos: 9.5,-35.5 parent: 2 - - uid: 11720 + - uid: 11640 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 11721 + - uid: 11641 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 11722 + - uid: 11642 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 11723 + - uid: 11643 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 11724 + - uid: 11644 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 11725 + - uid: 11645 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 11726 + - uid: 11646 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 11727 + - uid: 11647 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 11728 + - uid: 11648 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 11729 + - uid: 11649 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 11730 + - uid: 11650 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 11731 + - uid: 11651 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 11732 + - uid: 11652 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 11733 + - uid: 11653 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 11734 + - uid: 11654 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 11735 + - uid: 11655 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 11736 + - uid: 11656 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 11737 + - uid: 11657 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 11738 + - uid: 11658 components: - type: Transform pos: 4.5,-41.5 parent: 2 - - uid: 11739 + - uid: 11659 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 11740 + - uid: 11660 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 11741 + - uid: 11661 components: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 11742 + - uid: 11662 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 11743 + - uid: 11663 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 11744 + - uid: 11664 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 11745 + - uid: 11665 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 11746 + - uid: 11666 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 11747 + - uid: 11667 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 11748 + - uid: 11668 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 11749 + - uid: 11669 components: - type: Transform pos: 7.5,-49.5 parent: 2 - - uid: 11750 + - uid: 11670 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 11751 + - uid: 11671 components: - type: Transform pos: 6.5,-50.5 parent: 2 - - uid: 11752 + - uid: 11672 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 11753 + - uid: 11673 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 11754 + - uid: 11674 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 11755 + - uid: 11675 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 11756 + - uid: 11676 components: - type: Transform pos: 14.5,-38.5 parent: 2 - - uid: 11757 + - uid: 11677 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 11758 + - uid: 11678 components: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 11759 + - uid: 11679 components: - type: Transform pos: 12.5,-39.5 parent: 2 - - uid: 11760 + - uid: 11680 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 11761 + - uid: 11681 components: - type: Transform pos: 10.5,-39.5 parent: 2 - - uid: 11762 + - uid: 11682 components: - type: Transform pos: 9.5,-39.5 parent: 2 - - uid: 11763 + - uid: 11683 components: - type: Transform pos: 9.5,-40.5 parent: 2 - - uid: 11764 + - uid: 11684 components: - type: Transform pos: 9.5,-41.5 parent: 2 - - uid: 11765 + - uid: 11685 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 11766 + - uid: 11686 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 11767 + - uid: 11687 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 11768 + - uid: 11688 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 11769 + - uid: 11689 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 11770 + - uid: 11690 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 11771 + - uid: 11691 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 11772 + - uid: 11692 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 11773 + - uid: 11693 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 11774 + - uid: 11694 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 11775 + - uid: 11695 components: - type: Transform pos: 24.5,-50.5 parent: 2 - - uid: 11776 + - uid: 11696 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 11777 + - uid: 11697 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 11778 + - uid: 11698 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 11779 + - uid: 11699 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 11780 + - uid: 11700 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 11781 + - uid: 11701 components: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 11782 + - uid: 11702 components: - type: Transform pos: 22.5,-47.5 parent: 2 - - uid: 11783 + - uid: 11703 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 11784 + - uid: 11704 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 11785 + - uid: 11705 components: - type: Transform pos: 22.5,-44.5 parent: 2 - - uid: 11786 + - uid: 11706 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 11787 + - uid: 11707 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 11788 + - uid: 11708 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 11789 + - uid: 11709 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 11790 + - uid: 11710 components: - type: Transform pos: 19.5,-43.5 parent: 2 - - uid: 11791 + - uid: 11711 components: - type: Transform pos: 18.5,-43.5 parent: 2 - - uid: 11792 + - uid: 11712 components: - type: Transform pos: 17.5,-43.5 parent: 2 - - uid: 11793 + - uid: 11713 components: - type: Transform pos: 17.5,-42.5 parent: 2 - - uid: 11794 + - uid: 11714 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 11795 + - uid: 11715 components: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 11796 + - uid: 11716 components: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 11797 + - uid: 11717 components: - type: Transform pos: 16.5,-39.5 parent: 2 - - uid: 11798 + - uid: 11718 components: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 11799 + - uid: 11719 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 11800 + - uid: 11720 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 11801 + - uid: 11721 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 11802 + - uid: 11722 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 11803 + - uid: 11723 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 11804 + - uid: 11724 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 11805 + - uid: 11725 components: - type: Transform pos: 11.5,-59.5 parent: 2 - - uid: 11806 + - uid: 11726 components: - type: Transform pos: 10.5,-59.5 parent: 2 - - uid: 11807 + - uid: 11727 components: - type: Transform pos: 10.5,-58.5 parent: 2 - - uid: 11808 + - uid: 11728 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 11809 + - uid: 11729 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 11810 + - uid: 11730 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 11811 + - uid: 11731 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 11812 + - uid: 11732 components: - type: Transform pos: 10.5,-53.5 parent: 2 - - uid: 11813 + - uid: 11733 components: - type: Transform pos: 10.5,-52.5 parent: 2 - - uid: 11814 + - uid: 11734 components: - type: Transform pos: 10.5,-51.5 parent: 2 - - uid: 11815 + - uid: 11735 components: - type: Transform pos: 10.5,-50.5 parent: 2 - - uid: 11816 + - uid: 11736 components: - type: Transform pos: 9.5,-50.5 parent: 2 - - uid: 11817 + - uid: 11737 components: - type: Transform pos: 8.5,-50.5 parent: 2 - - uid: 11818 + - uid: 11738 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 11819 + - uid: 11739 components: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 11820 + - uid: 11740 components: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 11821 + - uid: 11741 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 11822 + - uid: 11742 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 11823 + - uid: 11743 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 11824 + - uid: 11744 components: - type: Transform pos: 17.5,-44.5 parent: 2 - - uid: 11825 + - uid: 11745 components: - type: Transform pos: 17.5,-45.5 parent: 2 - - uid: 11826 + - uid: 11746 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 11827 + - uid: 11747 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 11828 + - uid: 11748 components: - type: Transform pos: 17.5,-48.5 parent: 2 - - uid: 11829 + - uid: 11749 components: - type: Transform pos: 17.5,-49.5 parent: 2 - - uid: 11830 + - uid: 11750 components: - type: Transform pos: 16.5,-49.5 parent: 2 - - uid: 11831 + - uid: 11751 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 11832 + - uid: 11752 components: - type: Transform pos: 14.5,-49.5 parent: 2 - - uid: 11833 + - uid: 11753 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 11834 + - uid: 11754 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 11835 + - uid: 11755 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 11836 + - uid: 11756 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 11837 + - uid: 11757 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 11838 + - uid: 11758 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 11839 + - uid: 11759 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 11840 + - uid: 11760 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 11841 + - uid: 11761 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 11842 + - uid: 11762 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 11843 + - uid: 11763 components: - type: Transform pos: 16.5,-30.5 parent: 2 - - uid: 11844 + - uid: 11764 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 11845 + - uid: 11765 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 11846 + - uid: 11766 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 11847 + - uid: 11767 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 11848 + - uid: 11768 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 11849 + - uid: 11769 components: - type: Transform pos: 48.5,-28.5 parent: 2 - - uid: 11850 + - uid: 11770 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 11851 + - uid: 11771 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 11852 + - uid: 11772 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 11853 + - uid: 11773 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 11854 + - uid: 11774 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 11855 + - uid: 11775 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 11856 + - uid: 11776 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 11857 + - uid: 11777 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 11858 + - uid: 11778 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 11859 + - uid: 11779 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 11860 + - uid: 11780 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 11861 + - uid: 11781 components: - type: Transform pos: 49.5,-46.5 parent: 2 - - uid: 11862 + - uid: 11782 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 11863 + - uid: 11783 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 11864 + - uid: 11784 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 11865 + - uid: 11785 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 11866 + - uid: 11786 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 11867 + - uid: 11787 components: - type: Transform pos: 43.5,-19.5 parent: 2 - - uid: 11868 + - uid: 11788 components: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 11869 + - uid: 11789 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 11870 + - uid: 11790 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 11871 + - uid: 11791 components: - type: Transform pos: 47.5,-20.5 parent: 2 - - uid: 11872 + - uid: 11792 components: - type: Transform pos: 47.5,-19.5 parent: 2 - - uid: 11873 + - uid: 11793 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 11874 + - uid: 11794 components: - type: Transform pos: 53.5,-20.5 parent: 2 - - uid: 11875 + - uid: 11795 components: - type: Transform pos: 53.5,-19.5 parent: 2 - - uid: 11876 + - uid: 11796 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 11877 + - uid: 11797 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 11878 + - uid: 11798 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 11879 + - uid: 11799 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 11880 + - uid: 11800 components: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 11881 + - uid: 11801 components: - type: Transform pos: 51.5,-16.5 parent: 2 - - uid: 11882 + - uid: 11802 components: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 11883 + - uid: 11803 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 11884 + - uid: 11804 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 11885 + - uid: 11805 components: - type: Transform pos: 45.5,-13.5 parent: 2 - - uid: 11886 + - uid: 11806 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 11887 + - uid: 11807 components: - type: Transform pos: 45.5,-15.5 parent: 2 - - uid: 11888 + - uid: 11808 components: - type: Transform pos: 46.5,-15.5 parent: 2 - - uid: 11889 + - uid: 11809 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 11890 + - uid: 11810 components: - type: Transform pos: 46.5,-17.5 parent: 2 - - uid: 11891 + - uid: 11811 components: - type: Transform pos: 46.5,-18.5 parent: 2 - - uid: 11892 + - uid: 11812 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 11893 + - uid: 11813 components: - type: Transform pos: -4.5,-55.5 parent: 2 - - uid: 11894 + - uid: 11814 components: - type: Transform pos: -3.5,-55.5 parent: 2 - - uid: 11895 + - uid: 11815 components: - type: Transform pos: -2.5,-55.5 parent: 2 - - uid: 11896 + - uid: 11816 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 11897 + - uid: 11817 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 11898 + - uid: 11818 components: - type: Transform pos: 0.49999997,-55.5 parent: 2 - - uid: 11899 + - uid: 11819 components: - type: Transform pos: 0.50000006,-56.5 parent: 2 - - uid: 11900 + - uid: 11820 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 11901 + - uid: 11821 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 11902 + - uid: 11822 components: - type: Transform pos: 0.50000006,-44.5 parent: 2 - - uid: 11903 + - uid: 11823 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 11904 + - uid: 11824 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 11905 + - uid: 11825 components: - type: Transform pos: -0.49999997,-47.5 parent: 2 - - uid: 11906 + - uid: 11826 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 11907 + - uid: 11827 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 11908 + - uid: 11828 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 11909 + - uid: 11829 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 11910 + - uid: 11830 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 11911 + - uid: 11831 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 11912 + - uid: 11832 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 11913 + - uid: 11833 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 11914 + - uid: 11834 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 11915 + - uid: 11835 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 11916 + - uid: 11836 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 11917 + - uid: 11837 components: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 11918 + - uid: 11838 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 11919 + - uid: 11839 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 11920 + - uid: 11840 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 11921 + - uid: 11841 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 11922 + - uid: 11842 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 11923 + - uid: 11843 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 11924 + - uid: 11844 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 11925 + - uid: 11845 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 11926 + - uid: 11846 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 11927 + - uid: 11847 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 11928 + - uid: 11848 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 11929 + - uid: 11849 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 11930 + - uid: 11850 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 11931 + - uid: 11851 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 11932 + - uid: 11852 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 11933 + - uid: 11853 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 11934 + - uid: 11854 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 11935 + - uid: 11855 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 11936 + - uid: 11856 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 11937 + - uid: 11857 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 11938 + - uid: 11858 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 11939 + - uid: 11859 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 11940 + - uid: 11860 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 11941 + - uid: 11861 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 11942 + - uid: 11862 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 11943 + - uid: 11863 components: - type: Transform pos: -9.5,-25.5 parent: 2 - - uid: 11944 + - uid: 11864 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 11945 + - uid: 11865 components: - type: Transform pos: -11.5,-25.5 parent: 2 - - uid: 11946 + - uid: 11866 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 11947 + - uid: 11867 components: - type: Transform pos: -12.5,-26.5 parent: 2 - - uid: 11948 + - uid: 11868 components: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 11949 + - uid: 11869 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 11950 + - uid: 11870 components: - type: Transform pos: -12.5,-29.5 parent: 2 - - uid: 11951 + - uid: 11871 components: - type: Transform pos: -12.5,-30.5 parent: 2 - - uid: 11952 + - uid: 11872 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 11953 + - uid: 11873 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 11954 + - uid: 11874 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 11955 + - uid: 11875 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 11956 + - uid: 11876 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 11957 + - uid: 11877 components: - type: Transform pos: 8.5,-23.5 parent: 2 - - uid: 11958 + - uid: 11878 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 11959 + - uid: 11879 components: - type: Transform pos: 8.5,-25.5 parent: 2 - - uid: 11960 + - uid: 11880 components: - type: Transform pos: 9.5,-25.5 parent: 2 - - uid: 11961 + - uid: 11881 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 11962 + - uid: 11882 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 11963 + - uid: 11883 components: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 11964 + - uid: 11884 components: - type: Transform pos: 13.5,-25.5 parent: 2 - - uid: 11965 + - uid: 11885 components: - type: Transform pos: 14.5,-25.5 parent: 2 - - uid: 11966 + - uid: 11886 components: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 11967 + - uid: 11887 components: - type: Transform pos: 16.5,-25.5 parent: 2 - - uid: 11968 + - uid: 11888 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 11969 + - uid: 11889 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 11970 + - uid: 11890 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 11971 + - uid: 11891 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 11972 + - uid: 11892 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 11973 + - uid: 11893 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 11974 + - uid: 11894 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 11975 + - uid: 11895 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 11976 + - uid: 11896 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 11977 + - uid: 11897 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 11978 + - uid: 11898 components: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 11979 + - uid: 11899 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 11980 + - uid: 11900 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 11981 + - uid: 11901 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 11982 + - uid: 11902 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 11983 + - uid: 11903 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 11984 + - uid: 11904 components: - type: Transform pos: -7.5,-25.5 parent: 2 - - uid: 11985 + - uid: 11905 components: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 11986 + - uid: 11906 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 11987 + - uid: 11907 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 11988 + - uid: 11908 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 11989 + - uid: 11909 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 11990 + - uid: 11910 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 11991 + - uid: 11911 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 11992 + - uid: 11912 components: - type: Transform pos: -20.5,-1.5 parent: 2 - - uid: 11993 + - uid: 11913 components: - type: Transform pos: -19.5,-1.5 parent: 2 - - uid: 11994 + - uid: 11914 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 11995 + - uid: 11915 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 11996 + - uid: 11916 components: - type: Transform pos: -17.5,-2.5 parent: 2 - - uid: 11997 + - uid: 11917 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 11998 + - uid: 11918 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 11999 + - uid: 11919 components: - type: Transform pos: -45.5,12.5 parent: 2 - - uid: 12000 + - uid: 11920 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 12001 + - uid: 11921 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 12002 + - uid: 11922 components: - type: Transform pos: -42.5,12.5 parent: 2 - - uid: 12003 + - uid: 11923 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 12004 + - uid: 11924 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 12005 + - uid: 11925 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 12006 + - uid: 11926 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 12007 + - uid: 11927 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 12008 + - uid: 11928 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 12009 + - uid: 11929 components: - type: Transform pos: -35.5,16.5 parent: 2 - - uid: 12010 + - uid: 11930 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 12011 + - uid: 11931 components: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 12012 + - uid: 11932 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 12013 + - uid: 11933 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 12014 + - uid: 11934 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 12015 + - uid: 11935 components: - type: Transform pos: -35.5,10.5 parent: 2 - - uid: 12016 + - uid: 11936 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 12017 + - uid: 11937 components: - type: Transform pos: -35.5,8.5 parent: 2 - - uid: 12018 + - uid: 11938 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 12019 + - uid: 11939 components: - type: Transform pos: -35.5,6.5 parent: 2 - - uid: 12020 + - uid: 11940 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 12021 + - uid: 11941 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 12022 + - uid: 11942 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 12023 + - uid: 11943 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 12024 + - uid: 11944 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 12025 + - uid: 11945 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 12026 + - uid: 11946 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 12027 + - uid: 11947 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 12028 + - uid: 11948 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 12029 + - uid: 11949 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 12030 + - uid: 11950 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 12031 + - uid: 11951 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 12032 + - uid: 11952 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 12033 + - uid: 11953 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 12034 + - uid: 11954 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 12035 + - uid: 11955 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 12036 + - uid: 11956 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 12037 + - uid: 11957 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 12038 + - uid: 11958 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 12039 + - uid: 11959 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 12040 + - uid: 11960 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 12041 + - uid: 11961 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 12042 + - uid: 11962 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12043 + - uid: 11963 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 12044 + - uid: 11964 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 12045 + - uid: 11965 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 12046 + - uid: 11966 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 12047 + - uid: 11967 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 12048 + - uid: 11968 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 12049 + - uid: 11969 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 12051 + - uid: 11970 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12052 + - uid: 11971 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 12053 + - uid: 11972 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12054 + - uid: 11973 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 12055 + - uid: 11974 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12056 + - uid: 11975 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12057 + - uid: 11976 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12058 + - uid: 11977 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 12059 + - uid: 11978 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 12060 + - uid: 11979 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 12061 + - uid: 11980 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12062 + - uid: 11981 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12063 + - uid: 11982 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 12064 + - uid: 11983 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 12065 + - uid: 11984 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 12066 + - uid: 11985 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 12067 + - uid: 11986 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 12068 + - uid: 11987 components: - type: Transform pos: -68.5,-30.5 parent: 2 - - uid: 12069 + - uid: 11988 components: - type: Transform pos: -69.5,-30.5 parent: 2 - - uid: 12070 + - uid: 11989 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 12071 + - uid: 11990 components: - type: Transform pos: -71.5,-30.5 parent: 2 - - uid: 12072 + - uid: 11991 components: - type: Transform pos: -72.5,-30.5 parent: 2 - - uid: 12073 + - uid: 11992 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 12074 + - uid: 11993 components: - type: Transform pos: -73.5,-29.5 parent: 2 - - uid: 12075 + - uid: 11994 components: - type: Transform pos: -73.5,-28.5 parent: 2 - - uid: 12076 + - uid: 11995 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 12077 + - uid: 11996 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 12078 + - uid: 11997 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 12079 + - uid: 11998 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 12080 + - uid: 11999 components: - type: Transform pos: -73.5,-23.5 parent: 2 - - uid: 12081 + - uid: 12000 components: - type: Transform pos: -73.5,-22.5 parent: 2 - - uid: 12082 + - uid: 12001 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 12083 + - uid: 12002 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 12084 + - uid: 12003 components: - type: Transform pos: -64.5,-42.5 parent: 2 - - uid: 12085 + - uid: 12004 components: - type: Transform pos: -61.5,-42.5 parent: 2 - - uid: 12086 + - uid: 12005 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 12087 + - uid: 12006 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 12088 + - uid: 12007 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 12089 + - uid: 12008 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 12090 + - uid: 12009 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 12091 + - uid: 12010 components: - type: Transform pos: -58.5,-33.5 parent: 2 - - uid: 12092 + - uid: 12011 components: - type: Transform pos: -58.5,-32.5 parent: 2 - - uid: 12093 + - uid: 12012 components: - type: Transform pos: -58.5,-31.5 parent: 2 - - uid: 12094 + - uid: 12013 components: - type: Transform pos: -58.5,-30.5 parent: 2 - - uid: 12095 + - uid: 12014 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 12096 + - uid: 12015 components: - type: Transform pos: -60.5,-30.5 parent: 2 - - uid: 12097 + - uid: 12016 components: - type: Transform pos: -61.5,-30.5 parent: 2 - - uid: 12098 + - uid: 12017 components: - type: Transform pos: -62.5,-30.5 parent: 2 - - uid: 12099 + - uid: 12018 components: - type: Transform pos: -63.5,-30.5 parent: 2 - - uid: 12100 + - uid: 12019 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 12101 + - uid: 12020 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 12102 + - uid: 12021 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 12103 + - uid: 12022 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 12104 + - uid: 12023 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 12105 + - uid: 12024 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 12106 + - uid: 12025 components: - type: Transform pos: -49.5,-39.5 parent: 2 - - uid: 12107 + - uid: 12026 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 12108 + - uid: 12027 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 12109 + - uid: 12028 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 12110 + - uid: 12029 components: - type: Transform pos: -46.5,-41.5 parent: 2 - - uid: 12111 + - uid: 12030 components: - type: Transform pos: -46.5,-42.5 parent: 2 - - uid: 12112 + - uid: 12031 components: - type: Transform pos: -46.5,-43.5 parent: 2 - - uid: 12113 + - uid: 12032 components: - type: Transform pos: -46.5,-44.5 parent: 2 - - uid: 12114 + - uid: 12033 components: - type: Transform pos: -46.5,-45.5 parent: 2 - - uid: 12115 + - uid: 12034 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 12116 + - uid: 12035 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 12117 + - uid: 12036 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 12118 + - uid: 12037 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 12119 + - uid: 12038 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 12120 + - uid: 12039 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 12121 + - uid: 12040 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 12122 + - uid: 12041 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 12123 + - uid: 12042 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 12124 + - uid: 12043 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 12125 + - uid: 12044 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 12126 + - uid: 12045 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 12127 + - uid: 12046 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 12128 + - uid: 12047 components: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 12129 + - uid: 12048 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 12130 + - uid: 12049 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 12131 + - uid: 12050 components: - type: Transform pos: -55.5,-30.5 parent: 2 - - uid: 12132 + - uid: 12051 components: - type: Transform pos: -56.5,-30.5 parent: 2 - - uid: 12133 + - uid: 12052 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 12134 + - uid: 12053 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 12135 + - uid: 12054 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 12136 + - uid: 12055 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 12137 + - uid: 12056 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 12138 + - uid: 12057 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 12139 + - uid: 12058 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 12140 + - uid: 12059 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 12141 + - uid: 12060 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 12142 + - uid: 12061 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 12143 + - uid: 12062 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 12144 + - uid: 12063 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 12145 + - uid: 12064 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 12146 + - uid: 12065 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 12147 + - uid: 12066 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 12148 + - uid: 12067 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 12149 + - uid: 12068 components: - type: Transform pos: -62.5,-42.5 parent: 2 - - uid: 12150 + - uid: 12069 components: - type: Transform pos: -63.5,-42.5 parent: 2 - - uid: 12151 + - uid: 12070 components: - type: Transform pos: -66.5,-45.5 parent: 2 - - uid: 12152 + - uid: 12071 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 12153 + - uid: 12072 components: - type: Transform pos: -67.5,-39.5 parent: 2 - - uid: 12154 + - uid: 12073 components: - type: Transform pos: -67.5,-44.5 parent: 2 - - uid: 12155 + - uid: 12074 components: - type: Transform pos: -60.5,-42.5 parent: 2 - - uid: 12156 + - uid: 12075 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 12157 + - uid: 12076 components: - type: Transform pos: -65.5,-45.5 parent: 2 - - uid: 12158 + - uid: 12077 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 12159 + - uid: 12078 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 12160 + - uid: 12079 components: - type: Transform pos: 28.5,-34.5 parent: 2 - - uid: 12161 + - uid: 12080 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 12162 + - uid: 12081 components: - type: Transform pos: 31.5,-33.5 parent: 2 - - uid: 12163 + - uid: 12082 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 12164 + - uid: 12083 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 12165 + - uid: 12084 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 12166 + - uid: 12085 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 12167 + - uid: 12086 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 12168 + - uid: 12087 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 12169 + - uid: 12088 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 12170 + - uid: 12089 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 12171 + - uid: 12090 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 12172 + - uid: 12091 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 12173 + - uid: 12092 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 12174 + - uid: 12093 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 12175 + - uid: 12094 components: - type: Transform pos: -30.5,-13.5 parent: 2 - - uid: 12176 + - uid: 12095 components: - type: Transform pos: -29.5,-13.5 parent: 2 - - uid: 12177 + - uid: 12096 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 12178 + - uid: 12097 components: - type: Transform pos: -27.5,-13.5 parent: 2 - - uid: 12179 + - uid: 12098 components: - type: Transform pos: -27.5,-14.5 parent: 2 - - uid: 12180 + - uid: 12099 components: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 12181 + - uid: 12100 components: - type: Transform pos: -27.5,-16.5 parent: 2 - - uid: 12182 + - uid: 12101 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 12183 + - uid: 12102 components: - type: Transform pos: -27.5,-18.5 parent: 2 - - uid: 12184 + - uid: 12103 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 12185 + - uid: 12104 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 12186 + - uid: 12105 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 12187 + - uid: 12106 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 12188 + - uid: 12107 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 12189 + - uid: 12108 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 12190 + - uid: 12109 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 12191 + - uid: 12110 components: - type: Transform pos: -23.5,-17.5 parent: 2 - - uid: 12192 + - uid: 12111 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 12193 + - uid: 12112 components: - type: Transform pos: 95.5,13.5 parent: 2 - - uid: 12194 + - uid: 12113 components: - type: Transform pos: 96.5,13.5 parent: 2 - - uid: 12195 + - uid: 12114 components: - type: Transform pos: 96.5,14.5 parent: 2 - - uid: 12196 + - uid: 12115 components: - type: Transform pos: 97.5,14.5 parent: 2 - - uid: 12197 + - uid: 12116 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 12198 + - uid: 12117 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 12199 + - uid: 12118 components: - type: Transform pos: 103.5,-8.5 parent: 2 - - uid: 12200 + - uid: 12119 components: - type: Transform pos: 101.5,-7.5 parent: 2 - - uid: 12201 + - uid: 12120 components: - type: Transform pos: 99.5,-7.5 parent: 2 - - uid: 12202 + - uid: 12121 components: - type: Transform pos: 76.5,-4.5 parent: 2 - - uid: 12203 + - uid: 12122 components: - type: Transform pos: 75.5,-4.5 parent: 2 - - uid: 12204 + - uid: 12123 components: - type: Transform pos: 75.5,-5.5 parent: 2 - - uid: 12205 + - uid: 12124 components: - type: Transform pos: 74.5,-5.5 parent: 2 - - uid: 12206 + - uid: 12125 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 12207 + - uid: 12126 components: - type: Transform pos: 76.5,-8.5 parent: 2 - - uid: 12208 + - uid: 12127 components: - type: Transform pos: 77.5,-8.5 parent: 2 - - uid: 12209 + - uid: 12128 components: - type: Transform pos: 78.5,-8.5 parent: 2 - - uid: 12210 + - uid: 12129 components: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 12211 + - uid: 12130 components: - type: Transform pos: 80.5,-8.5 parent: 2 - - uid: 12212 + - uid: 12131 components: - type: Transform pos: 81.5,-8.5 parent: 2 - - uid: 12213 + - uid: 12132 components: - type: Transform pos: 82.5,-8.5 parent: 2 - - uid: 12214 + - uid: 12133 components: - type: Transform pos: 83.5,-8.5 parent: 2 - - uid: 12215 + - uid: 12134 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 12216 + - uid: 12135 components: - type: Transform pos: 86.5,-9.5 parent: 2 - - uid: 12217 + - uid: 12136 components: - type: Transform pos: 87.5,-9.5 parent: 2 - - uid: 12218 + - uid: 12137 components: - type: Transform pos: 93.5,-9.5 parent: 2 - - uid: 12219 + - uid: 12138 components: - type: Transform pos: 92.5,-9.5 parent: 2 - - uid: 12220 + - uid: 12139 components: - type: Transform pos: 88.5,-9.5 parent: 2 - - uid: 12221 + - uid: 12140 components: - type: Transform pos: 89.5,-9.5 parent: 2 - - uid: 12222 + - uid: 12141 components: - type: Transform pos: 90.5,-9.5 parent: 2 - - uid: 12223 + - uid: 12142 components: - type: Transform pos: 91.5,-9.5 parent: 2 - - uid: 12224 + - uid: 12143 components: - type: Transform pos: 93.5,-8.5 parent: 2 - - uid: 12225 + - uid: 12144 components: - type: Transform pos: 94.5,-8.5 parent: 2 - - uid: 12226 + - uid: 12145 components: - type: Transform pos: 95.5,-8.5 parent: 2 - - uid: 12227 + - uid: 12146 components: - type: Transform pos: 96.5,-8.5 parent: 2 - - uid: 12228 + - uid: 12147 components: - type: Transform pos: 97.5,-8.5 parent: 2 - - uid: 12229 + - uid: 12148 components: - type: Transform pos: 98.5,-7.5 parent: 2 - - uid: 12230 + - uid: 12149 components: - type: Transform pos: 98.5,-8.5 parent: 2 - - uid: 12231 + - uid: 12150 components: - type: Transform pos: 102.5,-8.5 parent: 2 - - uid: 12232 + - uid: 12151 components: - type: Transform pos: 103.5,-8.5 parent: 2 - - uid: 12233 + - uid: 12152 components: - type: Transform pos: 104.5,-8.5 parent: 2 - - uid: 12234 + - uid: 12153 components: - type: Transform pos: 104.5,-7.5 parent: 2 - - uid: 12235 + - uid: 12154 components: - type: Transform pos: 104.5,-6.5 parent: 2 - - uid: 12236 + - uid: 12155 components: - type: Transform pos: 104.5,-5.5 parent: 2 - - uid: 12237 + - uid: 12156 components: - type: Transform pos: 104.5,-4.5 parent: 2 - - uid: 12238 + - uid: 12157 components: - type: Transform pos: 104.5,-3.5 parent: 2 - - uid: 12239 + - uid: 12158 components: - type: Transform pos: 104.5,-2.5 parent: 2 - - uid: 12240 + - uid: 12159 components: - type: Transform pos: 104.5,-1.5 parent: 2 - - uid: 12241 + - uid: 12160 components: - type: Transform pos: 104.5,-0.5 parent: 2 - - uid: 12242 + - uid: 12161 components: - type: Transform pos: 104.5,0.5 parent: 2 - - uid: 12243 + - uid: 12162 components: - type: Transform pos: 104.5,1.5 parent: 2 - - uid: 12244 + - uid: 12163 components: - type: Transform pos: 104.5,2.5 parent: 2 - - uid: 12245 + - uid: 12164 components: - type: Transform pos: 104.5,3.5 parent: 2 - - uid: 12246 + - uid: 12165 components: - type: Transform pos: 103.5,3.5 parent: 2 - - uid: 12247 + - uid: 12166 components: - type: Transform pos: 102.5,3.5 parent: 2 - - uid: 12248 + - uid: 12167 components: - type: Transform pos: 102.5,4.5 parent: 2 - - uid: 12249 + - uid: 12168 components: - type: Transform pos: 102.5,5.5 parent: 2 - - uid: 12250 + - uid: 12169 components: - type: Transform pos: 102.5,6.5 parent: 2 - - uid: 12251 + - uid: 12170 components: - type: Transform pos: 102.5,6.5 parent: 2 - - uid: 12252 + - uid: 12171 components: - type: Transform pos: 101.5,7.5 parent: 2 - - uid: 12253 + - uid: 12172 components: - type: Transform pos: 100.5,7.5 parent: 2 - - uid: 12254 + - uid: 12173 components: - type: Transform pos: 99.5,7.5 parent: 2 - - uid: 12255 + - uid: 12174 components: - type: Transform pos: 102.5,7.5 parent: 2 - - uid: 12256 + - uid: 12175 components: - type: Transform pos: 84.5,-9.5 parent: 2 - - uid: 12257 + - uid: 12176 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 12258 + - uid: 12177 components: - type: Transform pos: 85.5,-9.5 parent: 2 - - uid: 12259 + - uid: 12178 components: - type: Transform pos: 100.5,-7.5 parent: 2 - - uid: 12260 + - uid: 12179 components: - type: Transform pos: 102.5,-8.5 parent: 2 - - uid: 12261 + - uid: 12180 components: - type: Transform pos: 102.5,-7.5 parent: 2 - - uid: 12262 + - uid: 12181 components: - type: Transform pos: 75.5,2.5 parent: 2 - - uid: 12263 + - uid: 12182 components: - type: Transform pos: 75.5,0.5 parent: 2 - - uid: 12264 + - uid: 12183 components: - type: Transform pos: 93.5,10.5 parent: 2 - - uid: 12265 + - uid: 12184 components: - type: Transform pos: 94.5,10.5 parent: 2 - - uid: 12266 + - uid: 12185 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 12267 + - uid: 12186 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 12268 + - uid: 12187 components: - type: Transform pos: -62.5,-32.5 parent: 2 - - uid: 12269 + - uid: 12188 components: - type: Transform pos: -62.5,-33.5 parent: 2 - - uid: 12270 + - uid: 12189 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 12271 + - uid: 12190 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 12272 + - uid: 12191 components: - type: Transform pos: -63.5,-35.5 parent: 2 - - uid: 12273 + - uid: 12192 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 12274 + - uid: 12193 components: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 12275 + - uid: 12194 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 12276 + - uid: 12195 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 12277 + - uid: 12196 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 12278 + - uid: 12197 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 12279 + - uid: 12198 components: - type: Transform pos: -77.5,4.5 parent: 2 - - uid: 12280 + - uid: 12199 components: - type: Transform pos: -76.5,14.5 parent: 2 - - uid: 12281 + - uid: 12200 components: - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 12282 + - uid: 12201 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 12283 + - uid: 12202 components: - type: Transform pos: -76.5,7.5 parent: 2 - - uid: 12284 + - uid: 12203 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 12285 + - uid: 12204 components: - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 12286 + - uid: 12205 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 12287 + - uid: 12206 components: - type: Transform pos: -76.5,4.5 parent: 2 - - uid: 12288 + - uid: 12207 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 12289 + - uid: 12208 components: - type: Transform pos: -76.5,11.5 parent: 2 - - uid: 12290 + - uid: 12209 components: - type: Transform pos: -76.5,9.5 parent: 2 - - uid: 12291 + - uid: 12210 components: - type: Transform pos: -76.5,13.5 parent: 2 - - uid: 12292 + - uid: 12211 components: - type: Transform pos: -79.5,4.5 parent: 2 - - uid: 12293 + - uid: 12212 components: - type: Transform pos: -80.5,4.5 parent: 2 - - uid: 12294 + - uid: 12213 components: - type: Transform pos: -81.5,4.5 parent: 2 - - uid: 12295 + - uid: 12214 components: - type: Transform pos: -82.5,4.5 parent: 2 - - uid: 12296 + - uid: 12215 components: - type: Transform pos: -83.5,4.5 parent: 2 - - uid: 12297 + - uid: 12216 components: - type: Transform pos: -84.5,4.5 parent: 2 - - uid: 12298 + - uid: 12217 components: - type: Transform pos: -85.5,4.5 parent: 2 - - uid: 12299 + - uid: 12218 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 12300 + - uid: 12219 components: - type: Transform pos: -87.5,4.5 parent: 2 - - uid: 12301 + - uid: 12220 components: - type: Transform pos: -88.5,4.5 parent: 2 - - uid: 12302 + - uid: 12221 components: - type: Transform pos: -89.5,4.5 parent: 2 - - uid: 12303 + - uid: 12222 components: - type: Transform pos: -90.5,4.5 parent: 2 - - uid: 12304 + - uid: 12223 components: - type: Transform pos: -91.5,4.5 parent: 2 - - uid: 12305 + - uid: 12224 components: - type: Transform pos: -92.5,4.5 parent: 2 - - uid: 12306 + - uid: 12225 components: - type: Transform pos: -93.5,4.5 parent: 2 - - uid: 12307 + - uid: 12226 components: - type: Transform pos: -94.5,4.5 parent: 2 - - uid: 12308 + - uid: 12227 components: - type: Transform pos: -95.5,4.5 parent: 2 - - uid: 12309 + - uid: 12228 components: - type: Transform pos: -96.5,4.5 parent: 2 - - uid: 12310 + - uid: 12229 components: - type: Transform pos: -97.5,4.5 parent: 2 - - uid: 12311 + - uid: 12230 components: - type: Transform pos: -98.5,4.5 parent: 2 - - uid: 12312 + - uid: 12231 components: - type: Transform pos: -99.5,4.5 parent: 2 - - uid: 12313 + - uid: 12232 components: - type: Transform pos: -100.5,4.5 parent: 2 - - uid: 12314 + - uid: 12233 components: - type: Transform pos: -102.5,4.5 parent: 2 - - uid: 12315 + - uid: 12234 components: - type: Transform pos: -100.5,6.5 parent: 2 - - uid: 12316 + - uid: 12235 components: - type: Transform pos: -99.5,6.5 parent: 2 - - uid: 12317 + - uid: 12236 components: - type: Transform pos: -98.5,6.5 parent: 2 - - uid: 12318 + - uid: 12237 components: - type: Transform pos: -97.5,6.5 parent: 2 - - uid: 12319 + - uid: 12238 components: - type: Transform pos: -96.5,6.5 parent: 2 - - uid: 12320 + - uid: 12239 components: - type: Transform pos: -95.5,6.5 parent: 2 - - uid: 12321 + - uid: 12240 components: - type: Transform pos: -94.5,6.5 parent: 2 - - uid: 12322 + - uid: 12241 components: - type: Transform pos: -93.5,6.5 parent: 2 - - uid: 12323 + - uid: 12242 components: - type: Transform pos: -92.5,6.5 parent: 2 - - uid: 12324 + - uid: 12243 components: - type: Transform pos: -91.5,6.5 parent: 2 - - uid: 12325 + - uid: 12244 components: - type: Transform pos: -90.5,6.5 parent: 2 - - uid: 12326 + - uid: 12245 components: - type: Transform pos: -89.5,6.5 parent: 2 - - uid: 12327 + - uid: 12246 components: - type: Transform pos: -88.5,6.5 parent: 2 - - uid: 12328 + - uid: 12247 components: - type: Transform pos: -87.5,6.5 parent: 2 - - uid: 12329 + - uid: 12248 components: - type: Transform pos: -86.5,6.5 parent: 2 - - uid: 12330 + - uid: 12249 components: - type: Transform pos: -85.5,6.5 parent: 2 - - uid: 12331 + - uid: 12250 components: - type: Transform pos: -84.5,6.5 parent: 2 - - uid: 12332 + - uid: 12251 components: - type: Transform pos: -83.5,6.5 parent: 2 - - uid: 12333 + - uid: 12252 components: - type: Transform pos: -82.5,6.5 parent: 2 - - uid: 12334 + - uid: 12253 components: - type: Transform pos: -81.5,6.5 parent: 2 - - uid: 12335 + - uid: 12254 components: - type: Transform pos: -80.5,6.5 parent: 2 - - uid: 12336 + - uid: 12255 components: - type: Transform pos: -79.5,6.5 parent: 2 - - uid: 12337 + - uid: 12256 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 12338 + - uid: 12257 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 12339 + - uid: 12258 components: - type: Transform pos: -102.5,3.5 parent: 2 - - uid: 12340 + - uid: 12259 components: - type: Transform pos: -102.5,5.5 parent: 2 - - uid: 12341 + - uid: 12260 components: - type: Transform pos: -103.5,3.5 parent: 2 - - uid: 12342 + - uid: 12261 components: - type: Transform pos: -100.5,2.5 parent: 2 - - uid: 12343 + - uid: 12262 components: - type: Transform pos: -100.5,1.5 parent: 2 - - uid: 12344 + - uid: 12263 components: - type: Transform pos: -101.5,1.5 parent: 2 - - uid: 12345 + - uid: 12264 components: - type: Transform pos: -100.5,3.5 parent: 2 - - uid: 12346 + - uid: 12265 components: - type: Transform pos: -102.5,1.5 parent: 2 - - uid: 12347 + - uid: 12266 components: - type: Transform pos: -103.5,1.5 parent: 2 - - uid: 12348 + - uid: 12267 components: - type: Transform pos: -103.5,0.5 parent: 2 - - uid: 12349 + - uid: 12268 components: - type: Transform pos: -103.5,-0.5 parent: 2 - - uid: 12350 + - uid: 12269 components: - type: Transform pos: -104.5,3.5 parent: 2 - - uid: 12351 + - uid: 12270 components: - type: Transform pos: -105.5,3.5 parent: 2 - - uid: 12352 + - uid: 12271 components: - type: Transform pos: -105.5,2.5 parent: 2 - - uid: 12353 + - uid: 12272 components: - type: Transform pos: -105.5,1.5 parent: 2 - - uid: 12354 + - uid: 12273 components: - type: Transform pos: -105.5,0.5 parent: 2 - - uid: 12355 + - uid: 12274 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 12356 + - uid: 12275 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 12357 + - uid: 12276 components: - type: Transform pos: -105.5,-1.5 parent: 2 - - uid: 12358 + - uid: 12277 components: - type: Transform pos: -105.5,-2.5 parent: 2 - - uid: 12359 + - uid: 12278 components: - type: Transform pos: -105.5,-3.5 parent: 2 - - uid: 12360 + - uid: 12279 components: - type: Transform pos: -105.5,-4.5 parent: 2 - - uid: 12361 + - uid: 12280 components: - type: Transform pos: -105.5,-5.5 parent: 2 - - uid: 12362 + - uid: 12281 components: - type: Transform pos: -105.5,-6.5 parent: 2 - - uid: 12363 + - uid: 12282 components: - type: Transform pos: -105.5,-7.5 parent: 2 - - uid: 12364 + - uid: 12283 components: - type: Transform pos: -105.5,-8.5 parent: 2 - - uid: 12365 + - uid: 12284 components: - type: Transform pos: -105.5,-9.5 parent: 2 - - uid: 12366 + - uid: 12285 components: - type: Transform pos: -105.5,-10.5 parent: 2 - - uid: 12367 + - uid: 12286 components: - type: Transform pos: -105.5,-11.5 parent: 2 - - uid: 12368 + - uid: 12287 components: - type: Transform pos: -105.5,-12.5 parent: 2 - - uid: 12369 + - uid: 12288 components: - type: Transform pos: -105.5,-13.5 parent: 2 - - uid: 12370 + - uid: 12289 components: - type: Transform pos: -105.5,-14.5 parent: 2 - - uid: 12371 + - uid: 12290 components: - type: Transform pos: -105.5,-15.5 parent: 2 - - uid: 12372 + - uid: 12291 components: - type: Transform pos: -105.5,-16.5 parent: 2 - - uid: 12373 + - uid: 12292 components: - type: Transform pos: -105.5,-17.5 parent: 2 - - uid: 12374 + - uid: 12293 components: - type: Transform pos: -105.5,-18.5 parent: 2 - - uid: 12375 + - uid: 12294 components: - type: Transform pos: -104.5,-18.5 parent: 2 - - uid: 12376 + - uid: 12295 components: - type: Transform pos: -103.5,-18.5 parent: 2 - - uid: 12377 + - uid: 12296 components: - type: Transform pos: -102.5,-18.5 parent: 2 - - uid: 12378 + - uid: 12297 components: - type: Transform pos: -102.5,-19.5 parent: 2 - - uid: 12379 + - uid: 12298 components: - type: Transform pos: -102.5,-19.5 parent: 2 - - uid: 12380 + - uid: 12299 components: - type: Transform pos: -102.5,-20.5 parent: 2 - - uid: 12381 + - uid: 12300 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12382 + - uid: 12301 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12383 + - uid: 12302 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12384 + - uid: 12303 components: - type: Transform pos: -101.5,-21.5 parent: 2 - - uid: 12385 + - uid: 12304 components: - type: Transform pos: -100.5,-21.5 parent: 2 - - uid: 12386 + - uid: 12305 components: - type: Transform pos: -99.5,-21.5 parent: 2 - - uid: 12387 + - uid: 12306 components: - type: Transform pos: -98.5,-21.5 parent: 2 - - uid: 12388 + - uid: 12307 components: - type: Transform pos: -97.5,-21.5 parent: 2 - - uid: 12389 + - uid: 12308 components: - type: Transform pos: -96.5,-21.5 parent: 2 - - uid: 12390 + - uid: 12309 components: - type: Transform pos: -95.5,-21.5 parent: 2 - - uid: 12391 + - uid: 12310 components: - type: Transform pos: -94.5,-21.5 parent: 2 - - uid: 12392 + - uid: 12311 components: - type: Transform pos: -93.5,-21.5 parent: 2 - - uid: 12393 + - uid: 12312 components: - type: Transform pos: -92.5,-21.5 parent: 2 - - uid: 12394 + - uid: 12313 components: - type: Transform pos: -91.5,-21.5 parent: 2 - - uid: 12395 + - uid: 12314 components: - type: Transform pos: -90.5,-21.5 parent: 2 - - uid: 12396 + - uid: 12315 components: - type: Transform pos: -89.5,-21.5 parent: 2 - - uid: 12397 + - uid: 12316 components: - type: Transform pos: -88.5,-21.5 parent: 2 - - uid: 12398 + - uid: 12317 components: - type: Transform pos: -87.5,-21.5 parent: 2 - - uid: 12399 + - uid: 12318 components: - type: Transform pos: -86.5,-21.5 parent: 2 - - uid: 12400 + - uid: 12319 components: - type: Transform pos: -85.5,-21.5 parent: 2 - - uid: 12401 + - uid: 12320 components: - type: Transform pos: -84.5,-21.5 parent: 2 - - uid: 12402 + - uid: 12321 components: - type: Transform pos: -83.5,-21.5 parent: 2 - - uid: 12403 + - uid: 12322 components: - type: Transform pos: -82.5,-21.5 parent: 2 - - uid: 12404 + - uid: 12323 components: - type: Transform pos: -78.5,-21.5 parent: 2 - - uid: 12405 + - uid: 12324 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 12406 + - uid: 12325 components: - type: Transform pos: -83.5,-19.5 parent: 2 - - uid: 12407 + - uid: 12326 components: - type: Transform pos: -84.5,-19.5 parent: 2 - - uid: 12408 + - uid: 12327 components: - type: Transform pos: -85.5,-19.5 parent: 2 - - uid: 12409 + - uid: 12328 components: - type: Transform pos: -86.5,-19.5 parent: 2 - - uid: 12410 + - uid: 12329 components: - type: Transform pos: -87.5,-19.5 parent: 2 - - uid: 12411 + - uid: 12330 components: - type: Transform pos: -88.5,-19.5 parent: 2 - - uid: 12412 + - uid: 12331 components: - type: Transform pos: -89.5,-19.5 parent: 2 - - uid: 12413 + - uid: 12332 components: - type: Transform pos: -90.5,-19.5 parent: 2 - - uid: 12414 + - uid: 12333 components: - type: Transform pos: -91.5,-19.5 parent: 2 - - uid: 12415 + - uid: 12334 components: - type: Transform pos: -92.5,-19.5 parent: 2 - - uid: 12416 + - uid: 12335 components: - type: Transform pos: -93.5,-19.5 parent: 2 - - uid: 12417 + - uid: 12336 components: - type: Transform pos: -94.5,-19.5 parent: 2 - - uid: 12418 + - uid: 12337 components: - type: Transform pos: -95.5,-19.5 parent: 2 - - uid: 12419 + - uid: 12338 components: - type: Transform pos: -96.5,-19.5 parent: 2 - - uid: 12420 + - uid: 12339 components: - type: Transform pos: -97.5,-19.5 parent: 2 - - uid: 12421 + - uid: 12340 components: - type: Transform pos: -98.5,-19.5 parent: 2 - - uid: 12422 + - uid: 12341 components: - type: Transform pos: -99.5,-19.5 parent: 2 - - uid: 12423 + - uid: 12342 components: - type: Transform pos: -100.5,-19.5 parent: 2 - - uid: 12424 + - uid: 12343 components: - type: Transform pos: -100.5,-18.5 parent: 2 - - uid: 12425 + - uid: 12344 components: - type: Transform pos: -100.5,-17.5 parent: 2 - - uid: 12426 + - uid: 12345 components: - type: Transform pos: -100.5,-16.5 parent: 2 - - uid: 12427 + - uid: 12346 components: - type: Transform pos: -101.5,-16.5 parent: 2 - - uid: 12428 + - uid: 12347 components: - type: Transform pos: -102.5,-16.5 parent: 2 - - uid: 12429 + - uid: 12348 components: - type: Transform pos: -103.5,-16.5 parent: 2 - - uid: 12430 + - uid: 12349 components: - type: Transform pos: -103.5,-15.5 parent: 2 - - uid: 12431 + - uid: 12350 components: - type: Transform pos: -103.5,-14.5 parent: 2 - - uid: 12432 + - uid: 12351 components: - type: Transform pos: -103.5,-13.5 parent: 2 - - uid: 12433 + - uid: 12352 components: - type: Transform pos: -103.5,-12.5 parent: 2 - - uid: 12434 + - uid: 12353 components: - type: Transform pos: -103.5,-11.5 parent: 2 - - uid: 12435 + - uid: 12354 components: - type: Transform pos: -103.5,-10.5 parent: 2 - - uid: 12436 + - uid: 12355 components: - type: Transform pos: -103.5,-9.5 parent: 2 - - uid: 12437 + - uid: 12356 components: - type: Transform pos: -103.5,-8.5 parent: 2 - - uid: 12438 + - uid: 12357 components: - type: Transform pos: -103.5,-7.5 parent: 2 - - uid: 12439 + - uid: 12358 components: - type: Transform pos: -103.5,-6.5 parent: 2 - - uid: 12440 + - uid: 12359 components: - type: Transform pos: -103.5,-5.5 parent: 2 - - uid: 12441 + - uid: 12360 components: - type: Transform pos: -103.5,-4.5 parent: 2 - - uid: 12442 + - uid: 12361 components: - type: Transform pos: -103.5,-3.5 parent: 2 - - uid: 12443 + - uid: 12362 components: - type: Transform pos: -103.5,-2.5 parent: 2 - - uid: 12444 + - uid: 12363 components: - type: Transform pos: -103.5,-1.5 parent: 2 - - uid: 12445 + - uid: 12364 components: - type: Transform pos: -103.5,-0.5 parent: 2 - - uid: 12446 + - uid: 12365 components: - type: Transform pos: -103.5,0.5 parent: 2 - - uid: 12447 + - uid: 12366 components: - type: Transform pos: -103.5,1.5 parent: 2 - - uid: 12448 + - uid: 12367 components: - type: Transform pos: -102.5,6.5 parent: 2 - - uid: 12449 + - uid: 12368 components: - type: Transform pos: -101.5,6.5 parent: 2 - - uid: 12450 + - uid: 12369 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 12451 + - uid: 12370 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 12452 + - uid: 12371 components: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 12453 + - uid: 12372 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 12454 + - uid: 12373 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 12455 + - uid: 12374 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 12456 + - uid: 12375 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 12457 + - uid: 12376 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 12458 + - uid: 12377 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 12459 + - uid: 12378 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 12460 + - uid: 12379 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 12461 + - uid: 12380 components: - type: Transform pos: 78.5,6.5 parent: 2 - - uid: 12462 + - uid: 12381 components: - type: Transform pos: 78.5,5.5 parent: 2 - - uid: 12463 + - uid: 12382 components: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 12464 + - uid: 12383 components: - type: Transform pos: 78.5,3.5 parent: 2 - - uid: 12465 + - uid: 12384 components: - type: Transform pos: 78.5,2.5 parent: 2 - - uid: 12466 + - uid: 12385 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 12467 + - uid: 12386 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 12468 + - uid: 12387 components: - type: Transform pos: 65.5,30.5 parent: 2 - - uid: 12469 + - uid: 12388 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 12470 + - uid: 12389 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 12471 + - uid: 12390 components: - type: Transform pos: 54.5,32.5 parent: 2 - - uid: 12472 + - uid: 12391 components: - type: Transform pos: 54.5,31.5 parent: 2 - - uid: 12473 + - uid: 12392 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 12474 + - uid: 12393 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 12475 + - uid: 12394 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 12476 + - uid: 12395 components: - type: Transform pos: -17.5,-50.5 parent: 2 - - uid: 12477 + - uid: 12396 components: - type: Transform pos: -18.5,-50.5 parent: 2 - - uid: 12478 + - uid: 12397 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 12479 + - uid: 12398 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 12480 + - uid: 12399 components: - type: Transform pos: 34.5,-50.5 parent: 2 - - uid: 12481 + - uid: 12400 components: - type: Transform pos: 34.5,-49.5 parent: 2 - - uid: 12482 + - uid: 12401 components: - type: Transform pos: 33.5,-49.5 parent: 2 - - uid: 12483 + - uid: 12402 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 12484 + - uid: 12403 components: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 12485 + - uid: 12404 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 12486 + - uid: 12405 components: - type: Transform pos: 29.5,-49.5 parent: 2 - - uid: 12487 + - uid: 12406 components: - type: Transform pos: 28.5,-49.5 parent: 2 - - uid: 12488 + - uid: 12407 components: - type: Transform pos: 27.5,-49.5 parent: 2 - - uid: 12489 + - uid: 12408 components: - type: Transform pos: 27.5,-48.5 parent: 2 - - uid: 12490 + - uid: 12409 components: - type: Transform pos: 27.5,-47.5 parent: 2 - - uid: 12491 + - uid: 12410 components: - type: Transform pos: 27.5,-46.5 parent: 2 - - uid: 12492 + - uid: 12411 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 12493 + - uid: 12412 components: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 12494 + - uid: 12413 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 12495 + - uid: 12414 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 12496 + - uid: 12415 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 12497 + - uid: 12416 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 12498 + - uid: 12417 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 12499 + - uid: 12418 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 12500 + - uid: 12419 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 12501 + - uid: 12420 components: - type: Transform pos: 5.5,-62.5 parent: 2 - - uid: 12502 + - uid: 12421 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 12503 + - uid: 12422 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 12504 + - uid: 12423 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 12505 + - uid: 12424 components: - type: Transform pos: 5.5,-58.5 parent: 2 - - uid: 12506 + - uid: 12425 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 12507 + - uid: 12426 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 12508 + - uid: 12427 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 12509 + - uid: 12428 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 12510 + - uid: 12429 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 12511 + - uid: 12430 components: - type: Transform pos: 62.5,28.5 parent: 2 - - uid: 12512 + - uid: 12431 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 12513 + - uid: 12432 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 12514 + - uid: 12433 components: - type: Transform pos: 63.5,28.5 parent: 2 - - uid: 12515 + - uid: 12434 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 12516 + - uid: 12435 components: - type: Transform pos: 43.5,-5.5 parent: 2 - - uid: 12517 + - uid: 12436 components: - type: Transform pos: 25.5,22.5 parent: 2 - - uid: 12518 + - uid: 12437 components: - type: Transform pos: 22.5,22.5 parent: 2 - - uid: 12519 + - uid: 12438 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 12520 + - uid: 12439 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 12521 + - uid: 12440 components: - type: Transform pos: 23.5,22.5 parent: 2 - - uid: 12522 + - uid: 12441 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 12523 + - uid: 12442 components: - type: Transform pos: 21.5,23.5 parent: 2 - - uid: 12524 + - uid: 12443 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 12525 + - uid: 12444 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 12526 + - uid: 12445 components: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 12527 + - uid: 12446 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 12528 + - uid: 12447 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 12529 + - uid: 12448 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 33762 + - uid: 12449 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 34832 + - uid: 12450 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 38510 + - uid: 38337 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38511 + parent: 38311 + - uid: 38338 components: - type: Transform pos: 3.5,-0.5 - parent: 38484 - - uid: 38512 + parent: 38311 + - uid: 38339 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38513 + parent: 38311 + - uid: 38340 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38514 + parent: 38311 + - uid: 38341 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38515 + parent: 38311 + - uid: 38342 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38516 + parent: 38311 + - uid: 38343 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 38517 + parent: 38311 + - uid: 38344 components: - type: Transform pos: -0.5,0.5 - parent: 38484 - - uid: 38518 + parent: 38311 + - uid: 38345 components: - type: Transform pos: -0.5,-0.5 - parent: 38484 - - uid: 38921 + parent: 38311 + - uid: 38748 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 - - uid: 38922 + parent: 38411 + - uid: 38749 components: - type: Transform pos: 4.5,0.5 - parent: 38584 - - uid: 38923 + parent: 38411 + - uid: 38750 components: - type: Transform pos: 4.5,-1.5 - parent: 38584 - - uid: 38924 + parent: 38411 + - uid: 38751 components: - type: Transform pos: -12.5,-1.5 - parent: 38584 - - uid: 38925 + parent: 38411 + - uid: 38752 components: - type: Transform pos: -4.5,3.5 - parent: 38584 - - uid: 38926 + parent: 38411 + - uid: 38753 components: - type: Transform pos: 4.5,-2.5 - parent: 38584 - - uid: 38927 + parent: 38411 + - uid: 38754 components: - type: Transform pos: -12.5,6.5 - parent: 38584 - - uid: 38928 + parent: 38411 + - uid: 38755 components: - type: Transform pos: -12.5,3.5 - parent: 38584 - - uid: 38929 + parent: 38411 + - uid: 38756 components: - type: Transform pos: 8.5,1.5 - parent: 38584 - - uid: 38930 + parent: 38411 + - uid: 38757 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38931 + parent: 38411 + - uid: 38758 components: - type: Transform pos: -12.5,0.5 - parent: 38584 - - uid: 38932 + parent: 38411 + - uid: 38759 components: - type: Transform pos: -12.5,1.5 - parent: 38584 - - uid: 38933 + parent: 38411 + - uid: 38760 components: - type: Transform pos: -12.5,-3.5 - parent: 38584 - - uid: 38934 + parent: 38411 + - uid: 38761 components: - type: Transform pos: -12.5,9.5 - parent: 38584 - - uid: 38935 + parent: 38411 + - uid: 38762 components: - type: Transform pos: -10.5,9.5 - parent: 38584 - - uid: 38936 + parent: 38411 + - uid: 38763 components: - type: Transform pos: -9.5,9.5 - parent: 38584 - - uid: 38937 + parent: 38411 + - uid: 38764 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38938 + parent: 38411 + - uid: 38765 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 38939 + parent: 38411 + - uid: 38766 components: - type: Transform pos: 10.5,-3.5 - parent: 38584 - - uid: 38940 + parent: 38411 + - uid: 38767 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38941 + parent: 38411 + - uid: 38768 components: - type: Transform pos: 8.5,-4.5 - parent: 38584 - - uid: 38942 + parent: 38411 + - uid: 38769 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 38943 + parent: 38411 + - uid: 38770 components: - type: Transform pos: -5.5,0.5 - parent: 38584 - - uid: 38944 + parent: 38411 + - uid: 38771 components: - type: Transform pos: -5.5,-0.5 - parent: 38584 - - uid: 38945 + parent: 38411 + - uid: 38772 components: - type: Transform pos: 10.5,-4.5 - parent: 38584 - - uid: 38946 + parent: 38411 + - uid: 38773 components: - type: Transform pos: -8.5,9.5 - parent: 38584 - - uid: 38947 + parent: 38411 + - uid: 38774 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 38948 + parent: 38411 + - uid: 38775 components: - type: Transform pos: -21.5,26.5 - parent: 38584 - - uid: 38949 + parent: 38411 + - uid: 38776 components: - type: Transform pos: -21.5,27.5 - parent: 38584 - - uid: 38950 + parent: 38411 + - uid: 38777 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 38951 + parent: 38411 + - uid: 38778 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 38952 + parent: 38411 + - uid: 38779 components: - type: Transform pos: 8.5,2.5 - parent: 38584 - - uid: 38953 + parent: 38411 + - uid: 38780 components: - type: Transform pos: -6.5,2.5 - parent: 38584 - - uid: 38954 + parent: 38411 + - uid: 38781 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 38955 + parent: 38411 + - uid: 38782 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38956 + parent: 38411 + - uid: 38783 components: - type: Transform pos: -5.5,2.5 - parent: 38584 - - uid: 38957 + parent: 38411 + - uid: 38784 components: - type: Transform pos: 2.5,3.5 - parent: 38584 - - uid: 38958 + parent: 38411 + - uid: 38785 components: - type: Transform pos: -2.5,2.5 - parent: 38584 - - uid: 38959 + parent: 38411 + - uid: 38786 components: - type: Transform pos: -3.5,2.5 - parent: 38584 - - uid: 38960 + parent: 38411 + - uid: 38787 components: - type: Transform pos: -1.5,2.5 - parent: 38584 - - uid: 38961 + parent: 38411 + - uid: 38788 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 38962 + parent: 38411 + - uid: 38789 components: - type: Transform pos: 4.5,-4.5 - parent: 38584 - - uid: 38963 + parent: 38411 + - uid: 38790 components: - type: Transform pos: -8.5,2.5 - parent: 38584 - - uid: 38964 + parent: 38411 + - uid: 38791 components: - type: Transform pos: -12.5,5.5 - parent: 38584 - - uid: 38965 + parent: 38411 + - uid: 38792 components: - type: Transform pos: -11.5,2.5 - parent: 38584 - - uid: 38966 + parent: 38411 + - uid: 38793 components: - type: Transform pos: -7.5,2.5 - parent: 38584 - - uid: 38967 + parent: 38411 + - uid: 38794 components: - type: Transform pos: 4.5,-0.5 - parent: 38584 - - uid: 38968 + parent: 38411 + - uid: 38795 components: - type: Transform pos: -16.5,-2.5 - parent: 38584 - - uid: 38969 + parent: 38411 + - uid: 38796 components: - type: Transform pos: -7.5,-1.5 - parent: 38584 - - uid: 38970 + parent: 38411 + - uid: 38797 components: - type: Transform pos: -12.5,8.5 - parent: 38584 - - uid: 38971 + parent: 38411 + - uid: 38798 components: - type: Transform pos: -6.5,-1.5 - parent: 38584 - - uid: 38972 + parent: 38411 + - uid: 38799 components: - type: Transform pos: 9.5,-4.5 - parent: 38584 - - uid: 38973 + parent: 38411 + - uid: 38800 components: - type: Transform pos: -12.5,4.5 - parent: 38584 - - uid: 38974 + parent: 38411 + - uid: 38801 components: - type: Transform pos: -12.5,-2.5 - parent: 38584 - - uid: 38975 + parent: 38411 + - uid: 38802 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 - - uid: 38976 + parent: 38411 + - uid: 38803 components: - type: Transform pos: 0.5,3.5 - parent: 38584 - - uid: 38977 + parent: 38411 + - uid: 38804 components: - type: Transform pos: 4.5,1.5 - parent: 38584 - - uid: 38978 + parent: 38411 + - uid: 38805 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38979 + parent: 38411 + - uid: 38806 components: - type: Transform pos: 10.5,-1.5 - parent: 38584 - - uid: 38980 + parent: 38411 + - uid: 38807 components: - type: Transform pos: -5.5,-1.5 - parent: 38584 - - uid: 38981 + parent: 38411 + - uid: 38808 components: - type: Transform pos: 10.5,-2.5 - parent: 38584 - - uid: 38982 + parent: 38411 + - uid: 38809 components: - type: Transform pos: -11.5,9.5 - parent: 38584 - - uid: 38983 + parent: 38411 + - uid: 38810 components: - type: Transform pos: 7.5,1.5 - parent: 38584 - - uid: 38984 + parent: 38411 + - uid: 38811 components: - type: Transform pos: 8.5,3.5 - parent: 38584 - - uid: 38985 + parent: 38411 + - uid: 38812 components: - type: Transform pos: 4.5,3.5 - parent: 38584 - - uid: 38986 + parent: 38411 + - uid: 38813 components: - type: Transform pos: -12.5,2.5 - parent: 38584 - - uid: 38987 + parent: 38411 + - uid: 38814 components: - type: Transform pos: -4.5,4.5 - parent: 38584 - - uid: 38988 + parent: 38411 + - uid: 38815 components: - type: Transform pos: 5.5,1.5 - parent: 38584 - - uid: 38989 + parent: 38411 + - uid: 38816 components: - type: Transform pos: -9.5,2.5 - parent: 38584 - - uid: 38990 + parent: 38411 + - uid: 38817 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38991 + parent: 38411 + - uid: 38818 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38992 + parent: 38411 + - uid: 38819 components: - type: Transform pos: 3.5,3.5 - parent: 38584 - - uid: 38993 + parent: 38411 + - uid: 38820 components: - type: Transform pos: -1.5,-2.5 - parent: 38584 - - uid: 38994 + parent: 38411 + - uid: 38821 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 38995 + parent: 38411 + - uid: 38822 components: - type: Transform pos: 5.5,-4.5 - parent: 38584 - - uid: 38996 + parent: 38411 + - uid: 38823 components: - type: Transform pos: 4.5,-3.5 - parent: 38584 - - uid: 38997 + parent: 38411 + - uid: 38824 components: - type: Transform pos: 6.5,-4.5 - parent: 38584 - - uid: 38998 + parent: 38411 + - uid: 38825 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38999 + parent: 38411 + - uid: 38826 components: - type: Transform pos: -16.5,-3.5 - parent: 38584 - - uid: 39000 + parent: 38411 + - uid: 38827 components: - type: Transform pos: -14.5,-3.5 - parent: 38584 - - uid: 39001 + parent: 38411 + - uid: 38828 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 - - uid: 39002 + parent: 38411 + - uid: 38829 components: - type: Transform pos: -0.5,-5.5 - parent: 38584 - - uid: 39003 + parent: 38411 + - uid: 38830 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 39004 + parent: 38411 + - uid: 38831 components: - type: Transform pos: -13.5,-3.5 - parent: 38584 - - uid: 39005 + parent: 38411 + - uid: 38832 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 39006 + parent: 38411 + - uid: 38833 components: - type: Transform pos: 7.5,-4.5 - parent: 38584 - - uid: 39007 + parent: 38411 + - uid: 38834 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 39008 + parent: 38411 + - uid: 38835 components: - type: Transform pos: -1.5,-5.5 - parent: 38584 - - uid: 39009 + parent: 38411 + - uid: 38836 components: - type: Transform pos: 6.5,1.5 - parent: 38584 - - uid: 39010 + parent: 38411 + - uid: 38837 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 39011 + parent: 38411 + - uid: 38838 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 39012 + parent: 38411 + - uid: 38839 components: - type: Transform pos: -0.5,3.5 - parent: 38584 - - uid: 39013 + parent: 38411 + - uid: 38840 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 - - uid: 39014 + parent: 38411 + - uid: 38841 components: - type: Transform pos: -1.5,-3.5 - parent: 38584 - - uid: 39015 + parent: 38411 + - uid: 38842 components: - type: Transform pos: -15.5,-3.5 - parent: 38584 - - uid: 39016 + parent: 38411 + - uid: 38843 components: - type: Transform pos: -1.5,0.5 - parent: 38584 - - uid: 39017 + parent: 38411 + - uid: 38844 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 - - uid: 39018 + parent: 38411 + - uid: 38845 components: - type: Transform pos: -10.5,7.5 - parent: 38584 - - uid: 39019 + parent: 38411 + - uid: 38846 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 39020 + parent: 38411 + - uid: 38847 components: - type: Transform pos: -11.5,7.5 - parent: 38584 - - uid: 39021 + parent: 38411 + - uid: 38848 components: - type: Transform pos: 8.5,4.5 - parent: 38584 - - uid: 39022 + parent: 38411 + - uid: 38849 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 39023 + parent: 38411 + - uid: 38850 components: - type: Transform pos: 7.5,4.5 - parent: 38584 - - uid: 39024 + parent: 38411 + - uid: 38851 components: - type: Transform pos: 1.5,3.5 - parent: 38584 - - uid: 39025 + parent: 38411 + - uid: 38852 components: - type: Transform pos: 4.5,2.5 - parent: 38584 - - uid: 39026 + parent: 38411 + - uid: 38853 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 39027 + parent: 38411 + - uid: 38854 components: - type: Transform pos: -10.5,1.5 - parent: 38584 - - uid: 39028 + parent: 38411 + - uid: 38855 components: - type: Transform pos: -10.5,0.5 - parent: 38584 - - uid: 39029 + parent: 38411 + - uid: 38856 components: - type: Transform pos: -10.5,-0.5 - parent: 38584 - - uid: 39030 + parent: 38411 + - uid: 38857 components: - type: Transform pos: -9.5,-0.5 - parent: 38584 - - uid: 39031 + parent: 38411 + - uid: 38858 components: - type: Transform pos: -9.5,-1.5 - parent: 38584 - - uid: 39032 + parent: 38411 + - uid: 38859 components: - type: Transform pos: -9.5,-2.5 - parent: 38584 - - uid: 39033 + parent: 38411 + - uid: 38860 components: - type: Transform pos: -9.5,-3.5 - parent: 38584 - - uid: 39034 + parent: 38411 + - uid: 38861 components: - type: Transform pos: -9.5,-4.5 - parent: 38584 - - uid: 39035 + parent: 38411 + - uid: 38862 components: - type: Transform pos: -8.5,-4.5 - parent: 38584 - - uid: 39036 + parent: 38411 + - uid: 38863 components: - type: Transform pos: -8.5,-5.5 - parent: 38584 - - uid: 39037 + parent: 38411 + - uid: 38864 components: - type: Transform pos: -8.5,-6.5 - parent: 38584 - - uid: 39038 + parent: 38411 + - uid: 38865 components: - type: Transform pos: -8.5,-6.5 - parent: 38584 - - uid: 39039 + parent: 38411 + - uid: 38866 components: - type: Transform pos: -8.5,-7.5 - parent: 38584 - - uid: 39040 + parent: 38411 + - uid: 38867 components: - type: Transform pos: -9.5,-7.5 - parent: 38584 - - uid: 39041 + parent: 38411 + - uid: 38868 components: - type: Transform pos: -10.5,-8.5 - parent: 38584 - - uid: 39042 + parent: 38411 + - uid: 38869 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 - - uid: 39043 + parent: 38411 + - uid: 38870 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39044 + parent: 38411 + - uid: 38871 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39045 + parent: 38411 + - uid: 38872 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39046 + parent: 38411 + - uid: 38873 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39047 + parent: 38411 + - uid: 38874 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 39048 + parent: 38411 + - uid: 38875 components: - type: Transform pos: -17.5,-8.5 - parent: 38584 - - uid: 39049 + parent: 38411 + - uid: 38876 components: - type: Transform pos: -18.5,-8.5 - parent: 38584 + parent: 38411 - proto: CableMVStack entities: - - uid: 12530 + - uid: 12451 components: - type: Transform pos: -47.789772,11.574663 parent: 2 - proto: CableMVStack1 entities: - - uid: 12531 + - uid: 12452 components: - type: Transform rot: 3.141593671850739 rad pos: 9.176718,72.34477 parent: 2 - - uid: 12532 + - uid: 12453 components: - type: Transform rot: -1.5707953085339508 rad pos: 74.60467,-7.6676617 parent: 2 - - uid: 12533 + - uid: 12454 components: - type: Transform rot: 3.141593671850739 rad pos: 75.66717,-8.480163 parent: 2 - - uid: 12534 + - uid: 12455 components: - type: Transform rot: 1.5707973450558423 rad @@ -101727,37 +101732,37 @@ entities: parent: 2 - proto: CableTerminal entities: - - uid: 12535 + - uid: 12456 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-29.5 parent: 2 - - uid: 12536 + - uid: 12457 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,61.5 parent: 2 - - uid: 12537 + - uid: 12458 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,31.5 parent: 2 - - uid: 12538 + - uid: 12459 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-3.5 parent: 2 - - uid: 12539 + - uid: 12460 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 - - uid: 12540 + - uid: 12461 components: - type: Transform rot: 1.5707963267948966 rad @@ -101767,13 +101772,13 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12541 + - uid: 12462 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,1.5 parent: 2 - - uid: 12542 + - uid: 12463 components: - type: Transform pos: -59.5,61.5 @@ -101782,13 +101787,13 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12543 + - uid: 12464 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,12.5 parent: 2 - - uid: 12544 + - uid: 12465 components: - type: Transform rot: -1.5707963267948966 rad @@ -101798,25 +101803,25 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12545 + - uid: 12466 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,2.5 parent: 2 - - uid: 12546 + - uid: 12467 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 - - uid: 12547 + - uid: 12468 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-0.5 parent: 2 - - uid: 12548 + - uid: 12469 components: - type: Transform rot: 1.5707963267948966 rad @@ -101826,42 +101831,42 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12549 + - uid: 12470 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-12.5 parent: 2 - - uid: 12550 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-44.5 parent: 2 - - uid: 12551 + - uid: 12472 components: - type: Transform pos: -121.5,25.5 parent: 2 - - uid: 12552 + - uid: 12473 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 39050 + - uid: 38877 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 39051 + parent: 38411 + - uid: 38878 components: - type: Transform pos: 8.5,6.5 - parent: 38584 + parent: 38411 - proto: CandleGreenSmallInfinite entities: - - uid: 12553 + - uid: 12474 components: - type: Transform rot: 3.141593671850739 rad @@ -101869,7 +101874,7 @@ entities: parent: 2 - proto: CandleInfinite entities: - - uid: 12554 + - uid: 12475 components: - type: Transform rot: 3.141593671850739 rad @@ -101877,7 +101882,7 @@ entities: parent: 2 - proto: CandleRedInfinite entities: - - uid: 12555 + - uid: 12476 components: - type: Transform rot: 3.141593671850739 rad @@ -101885,1095 +101890,1095 @@ entities: parent: 2 - proto: CannabisSeeds entities: - - uid: 12556 + - uid: 12477 components: - type: Transform pos: -38.5,32.5 parent: 2 - proto: CapacitorStockPart entities: - - uid: 1073 + - uid: 1063 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1074 + - uid: 1064 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12557 + - uid: 12478 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 12558 + - uid: 12479 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 12559 + - uid: 12480 components: - type: Transform pos: -7.5,-39.5 parent: 2 - proto: CaptainIDCard entities: - - uid: 12560 + - uid: 12481 components: - type: Transform pos: 7.44547,0.9202859 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 12561 + - uid: 12482 components: - type: Transform pos: -30.5,-50.5 parent: 2 - - uid: 12562 + - uid: 12483 components: - type: Transform pos: 77.5,23.5 parent: 2 - - uid: 12563 + - uid: 12484 components: - type: Transform pos: -30.5,-49.5 parent: 2 - type: Lock locked: False - - uid: 12564 + - uid: 12485 components: - type: Transform pos: -40.5,-50.5 parent: 2 - - uid: 12565 + - uid: 12486 components: - type: Transform pos: -70.5,41.5 parent: 2 - proto: Carpet entities: - - uid: 12566 + - uid: 12487 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-16.5 parent: 2 - - uid: 12567 + - uid: 12488 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 - - uid: 12568 + - uid: 12489 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-15.5 parent: 2 - - uid: 12569 + - uid: 12490 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-16.5 parent: 2 - - uid: 12570 + - uid: 12491 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-14.5 parent: 2 - - uid: 12571 + - uid: 12492 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 12572 + - uid: 12493 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 12573 + - uid: 12494 components: - type: Transform pos: -12.5,10.5 parent: 2 - - uid: 12574 + - uid: 12495 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 12575 + - uid: 12496 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 12576 + - uid: 12497 components: - type: Transform pos: -9.5,10.5 parent: 2 - - uid: 12577 + - uid: 12498 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 12578 + - uid: 12499 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 12579 + - uid: 12500 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 12580 + - uid: 12501 components: - type: Transform pos: -13.5,8.5 parent: 2 - - uid: 12581 + - uid: 12502 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 12582 + - uid: 12503 components: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 12583 + - uid: 12504 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 12584 + - uid: 12505 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 12585 + - uid: 12506 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 12586 + - uid: 12507 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 12587 + - uid: 12508 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 12588 + - uid: 12509 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 12589 + - uid: 12510 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 12590 + - uid: 12511 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 12591 + - uid: 12512 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 12592 + - uid: 12513 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 - - uid: 12593 + - uid: 12514 components: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 12594 + - uid: 12515 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 12595 + - uid: 12516 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-13.5 parent: 2 - - uid: 12596 + - uid: 12517 components: - type: Transform pos: 32.5,10.5 parent: 2 - - uid: 12597 + - uid: 12518 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-14.5 parent: 2 - - uid: 12598 + - uid: 12519 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-15.5 parent: 2 - - uid: 12599 + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-14.5 parent: 2 - - uid: 12600 + - uid: 12521 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 12601 + - uid: 12522 components: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 12602 + - uid: 12523 components: - type: Transform pos: 31.5,10.5 parent: 2 - - uid: 12603 + - uid: 12524 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 - - uid: 12604 + - uid: 12525 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 12605 + - uid: 12526 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 12606 + - uid: 12527 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 12607 + - uid: 12528 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 12608 + - uid: 12529 components: - type: Transform pos: 8.5,6.5 parent: 2 - - uid: 12609 + - uid: 12530 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 12610 + - uid: 12531 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 - - uid: 12611 + - uid: 12532 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 12612 + - uid: 12533 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-16.5 parent: 2 - - uid: 12613 + - uid: 12534 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 12614 + - uid: 12535 components: - type: Transform pos: -32.5,-67.5 parent: 2 - - uid: 12615 + - uid: 12536 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 12616 + - uid: 12537 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 12617 + - uid: 12538 components: - type: Transform pos: -32.5,-66.5 parent: 2 - - uid: 12618 + - uid: 12539 components: - type: Transform pos: -30.5,-66.5 parent: 2 - - uid: 12619 + - uid: 12540 components: - type: Transform pos: -30.5,-67.5 parent: 2 - - uid: 12620 + - uid: 12541 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 12621 + - uid: 12542 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 12622 + - uid: 12543 components: - type: Transform pos: -113.5,32.5 parent: 2 - - uid: 12623 + - uid: 12544 components: - type: Transform pos: -112.5,32.5 parent: 2 - proto: CarpetBlack entities: - - uid: 12624 + - uid: 12545 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 - - uid: 12625 + - uid: 12546 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,10.5 parent: 2 - - uid: 12626 + - uid: 12547 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 12627 + - uid: 12548 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2 - - uid: 12628 + - uid: 12549 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 12629 + - uid: 12550 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 - - uid: 12630 + - uid: 12551 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 - - uid: 12631 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,9.5 parent: 2 - - uid: 12632 + - uid: 12553 components: - type: Transform pos: -27.5,-7.5 parent: 2 - - uid: 12633 + - uid: 12554 components: - type: Transform pos: -22.5,-11.5 parent: 2 - - uid: 12634 + - uid: 12555 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 12635 + - uid: 12556 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 12636 + - uid: 12557 components: - type: Transform pos: 40.5,19.5 parent: 2 - - uid: 12637 + - uid: 12558 components: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 12638 + - uid: 12559 components: - type: Transform pos: 40.5,21.5 parent: 2 - - uid: 12639 + - uid: 12560 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 12640 + - uid: 12561 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 12641 + - uid: 12562 components: - type: Transform pos: 42.5,19.5 parent: 2 - - uid: 12642 + - uid: 12563 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-44.5 parent: 2 - - uid: 12643 + - uid: 12564 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-45.5 parent: 2 - - uid: 12644 + - uid: 12565 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 12645 + - uid: 12566 components: - type: Transform pos: 15.5,-51.5 parent: 2 - - uid: 12646 + - uid: 12567 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 12647 + - uid: 12568 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-45.5 parent: 2 - - uid: 12648 + - uid: 12569 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 12649 + - uid: 12570 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 12650 + - uid: 12571 components: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 12651 + - uid: 12572 components: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 12652 + - uid: 12573 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-44.5 parent: 2 - - uid: 12653 + - uid: 12574 components: - type: Transform pos: -27.5,-8.5 parent: 2 - - uid: 12654 + - uid: 12575 components: - type: Transform pos: 15.5,-52.5 parent: 2 - - uid: 12655 + - uid: 12576 components: - type: Transform pos: 17.5,-52.5 parent: 2 - - uid: 12656 + - uid: 12577 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 12657 + - uid: 12578 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-51.5 parent: 2 - - uid: 12658 + - uid: 12579 components: - type: Transform pos: 16.5,-51.5 parent: 2 - - uid: 12659 + - uid: 12580 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-45.5 parent: 2 - - uid: 12660 + - uid: 12581 components: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 12661 + - uid: 12582 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 12662 + - uid: 12583 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-8.5 parent: 2 - - uid: 12663 + - uid: 12584 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-8.5 parent: 2 - - uid: 12664 + - uid: 12585 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-7.5 parent: 2 - - uid: 12665 + - uid: 12586 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-7.5 parent: 2 - - uid: 12666 + - uid: 12587 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-44.5 parent: 2 - - uid: 12667 + - uid: 12588 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 - - uid: 12668 + - uid: 12589 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 2 - - uid: 12669 + - uid: 12590 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 2 - - uid: 12670 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - uid: 12671 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 2 - - uid: 12672 + - uid: 12593 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 12673 + - uid: 12594 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 2 - - uid: 12674 + - uid: 12595 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,9.5 parent: 2 - - uid: 12675 + - uid: 12596 components: - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 39052 + - uid: 38879 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,27.5 - parent: 38584 - - uid: 39053 + parent: 38411 + - uid: 38880 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,27.5 - parent: 38584 + parent: 38411 - proto: CarpetChapel entities: - - uid: 12676 + - uid: 12597 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-69.5 parent: 2 - - uid: 12677 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 - - uid: 12678 + - uid: 12599 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-69.5 parent: 2 - - uid: 12679 + - uid: 12600 components: - type: Transform pos: -20.5,-74.5 parent: 2 - - uid: 12680 + - uid: 12601 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 12681 + - uid: 12602 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-72.5 parent: 2 - - uid: 12682 + - uid: 12603 components: - type: Transform pos: -15.5,-72.5 parent: 2 - - uid: 12683 + - uid: 12604 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 12684 + - uid: 12605 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-67.5 parent: 2 - - uid: 12685 + - uid: 12606 components: - type: Transform pos: -20.5,-72.5 parent: 2 - - uid: 12686 + - uid: 12607 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 - - uid: 12687 + - uid: 12608 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 - - uid: 12688 + - uid: 12609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-68.5 parent: 2 - - uid: 12689 + - uid: 12610 components: - type: Transform pos: -13.5,-68.5 parent: 2 - - uid: 12690 + - uid: 12611 components: - type: Transform pos: -15.5,-68.5 parent: 2 - - uid: 12691 + - uid: 12612 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-71.5 parent: 2 - - uid: 12692 + - uid: 12613 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-71.5 parent: 2 - - uid: 12693 + - uid: 12614 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-68.5 parent: 2 - - uid: 12694 + - uid: 12615 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 12695 + - uid: 12616 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-71.5 parent: 2 - - uid: 12696 + - uid: 12617 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 12697 + - uid: 12618 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-70.5 parent: 2 - - uid: 12698 + - uid: 12619 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 12699 + - uid: 12620 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-72.5 parent: 2 - - uid: 12700 + - uid: 12621 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 12701 + - uid: 12622 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-67.5 parent: 2 - - uid: 12702 + - uid: 12623 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 12703 + - uid: 12624 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-71.5 parent: 2 - - uid: 12704 + - uid: 12625 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 - - uid: 12705 + - uid: 12626 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-69.5 parent: 2 - - uid: 12706 + - uid: 12627 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-69.5 parent: 2 - - uid: 12707 + - uid: 12628 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-71.5 parent: 2 - - uid: 12708 + - uid: 12629 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-74.5 parent: 2 - - uid: 12709 + - uid: 12630 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 - - uid: 12710 + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-74.5 parent: 2 - - uid: 12711 + - uid: 12632 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-72.5 parent: 2 - - uid: 12712 + - uid: 12633 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-71.5 parent: 2 - - uid: 12713 + - uid: 12634 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-67.5 parent: 2 - - uid: 12714 + - uid: 12635 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-69.5 parent: 2 - - uid: 12715 + - uid: 12636 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-73.5 parent: 2 - - uid: 12716 + - uid: 12637 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-67.5 parent: 2 - - uid: 12717 + - uid: 12638 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-70.5 parent: 2 - - uid: 12718 + - uid: 12639 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 - - uid: 12719 + - uid: 12640 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-69.5 parent: 2 - - uid: 12720 + - uid: 12641 components: - type: Transform pos: -13.5,-74.5 parent: 2 - - uid: 12721 + - uid: 12642 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-67.5 parent: 2 - - uid: 12722 + - uid: 12643 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 12723 + - uid: 12644 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-69.5 parent: 2 - - uid: 12724 + - uid: 12645 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-67.5 parent: 2 - - uid: 12725 + - uid: 12646 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-69.5 parent: 2 - - uid: 12726 + - uid: 12647 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-73.5 parent: 2 - - uid: 12727 + - uid: 12648 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-70.5 parent: 2 - - uid: 12728 + - uid: 12649 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-71.5 parent: 2 - - uid: 12729 + - uid: 12650 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 - - uid: 12730 + - uid: 12651 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-71.5 parent: 2 - - uid: 12731 + - uid: 12652 components: - type: Transform pos: -20.5,-70.5 parent: 2 - proto: CarpetCyan entities: - - uid: 12732 + - uid: 12653 components: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 12733 + - uid: 12654 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 12734 + - uid: 12655 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 12735 + - uid: 12656 components: - type: Transform pos: -3.5,1.5 parent: 2 - proto: CarpetOrange entities: - - uid: 12736 + - uid: 12657 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-25.5 parent: 2 - - uid: 12737 + - uid: 12658 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 - - uid: 12738 + - uid: 12659 components: - type: Transform pos: -28.5,19.5 parent: 2 - - uid: 12739 + - uid: 12660 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 12740 + - uid: 12661 components: - type: Transform pos: -26.5,19.5 parent: 2 - - uid: 12741 + - uid: 12662 components: - type: Transform pos: -28.5,20.5 parent: 2 - - uid: 12742 + - uid: 12663 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 12743 + - uid: 12664 components: - type: Transform pos: -28.5,21.5 parent: 2 - - uid: 12744 + - uid: 12665 components: - type: Transform pos: -26.5,21.5 parent: 2 - - uid: 12745 + - uid: 12666 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 12746 + - uid: 12667 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 12747 + - uid: 12668 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-25.5 parent: 2 - - uid: 12748 + - uid: 12669 components: - type: Transform rot: 3.141592653589793 rad @@ -102981,67 +102986,67 @@ entities: parent: 2 - proto: CarpetPink entities: - - uid: 12749 + - uid: 12670 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-48.5 parent: 2 - - uid: 12750 + - uid: 12671 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-49.5 parent: 2 - - uid: 12751 + - uid: 12672 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 12752 + - uid: 12673 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,62.5 parent: 2 - - uid: 12753 + - uid: 12674 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,62.5 parent: 2 - - uid: 12754 + - uid: 12675 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,62.5 parent: 2 - - uid: 12755 + - uid: 12676 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 12756 + - uid: 12677 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 12757 + - uid: 12678 components: - type: Transform pos: -58.5,-50.5 parent: 2 - - uid: 12758 + - uid: 12679 components: - type: Transform pos: -57.5,-49.5 parent: 2 - - uid: 12759 + - uid: 12680 components: - type: Transform pos: -57.5,-50.5 parent: 2 - - uid: 12760 + - uid: 12681 components: - type: Transform rot: 1.5707963267948966 rad @@ -103049,73 +103054,73 @@ entities: parent: 2 - proto: CarpetSBlue entities: - - uid: 12761 + - uid: 12682 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,2.5 parent: 2 - - uid: 12762 + - uid: 12683 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,3.5 parent: 2 - - uid: 12763 + - uid: 12684 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 - - uid: 12764 + - uid: 12685 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 parent: 2 - - uid: 12765 + - uid: 12686 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 parent: 2 - - uid: 12766 + - uid: 12687 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,1.5 parent: 2 - - uid: 12767 + - uid: 12688 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,2.5 parent: 2 - - uid: 12768 + - uid: 12689 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 2 - - uid: 12769 + - uid: 12690 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 - - uid: 12770 + - uid: 12691 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,3.5 parent: 2 - - uid: 12771 + - uid: 12692 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 - - uid: 12772 + - uid: 12693 components: - type: Transform rot: 1.5707963267948966 rad @@ -103123,8021 +103128,8021 @@ entities: parent: 2 - proto: CarpetWhite entities: - - uid: 870 + - uid: 12694 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-23.5 parent: 2 - - uid: 6734 + - uid: 12695 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-25.5 parent: 2 - - uid: 6736 + - uid: 12696 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-24.5 parent: 2 - - uid: 6737 + - uid: 12697 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 6738 + - uid: 12698 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-25.5 parent: 2 - - uid: 6740 + - uid: 12699 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 6744 + - uid: 12700 components: - type: Transform pos: -60.5,-24.5 parent: 2 - - uid: 6747 + - uid: 12701 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-25.5 parent: 2 - - uid: 9965 + - uid: 12702 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-25.5 parent: 2 - - uid: 9970 + - uid: 12703 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-25.5 parent: 2 - - uid: 15046 + - uid: 12704 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 17440 + - uid: 12705 components: - type: Transform pos: -63.5,-23.5 parent: 2 - - uid: 17732 + - uid: 12706 components: - type: Transform pos: -63.5,-24.5 parent: 2 - - uid: 31829 + - uid: 12707 components: - type: Transform pos: -60.5,-23.5 parent: 2 - - uid: 31830 + - uid: 12708 components: - type: Transform pos: -59.5,-23.5 parent: 2 - proto: Catwalk entities: - - uid: 2846 + - uid: 12709 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 2847 + - uid: 12710 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 2848 + - uid: 12711 components: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 2849 + - uid: 12712 components: - type: Transform pos: -70.5,0.5 parent: 2 - - uid: 2850 + - uid: 12713 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 2851 + - uid: 12714 components: - type: Transform pos: -70.5,-1.5 parent: 2 - - uid: 2852 + - uid: 12715 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 2853 + - uid: 12716 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 2854 + - uid: 12717 components: - type: Transform pos: -68.5,-1.5 parent: 2 - - uid: 6735 + - uid: 12718 components: - type: Transform pos: -63.5,-28.5 parent: 2 - - uid: 9961 + - uid: 12719 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 9962 + - uid: 12720 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 9963 + - uid: 12721 components: - type: Transform pos: -67.5,-1.5 parent: 2 - - uid: 12773 + - uid: 12722 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-40.5 parent: 2 - - uid: 12774 + - uid: 12723 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 12775 + - uid: 12724 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-18.5 parent: 2 - - uid: 12776 + - uid: 12725 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,30.5 parent: 2 - - uid: 12777 + - uid: 12726 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,31.5 parent: 2 - - uid: 12778 + - uid: 12727 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,32.5 parent: 2 - - uid: 12779 + - uid: 12728 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-43.5 parent: 2 - - uid: 12780 + - uid: 12729 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,31.5 parent: 2 - - uid: 12781 + - uid: 12730 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,27.5 parent: 2 - - uid: 12782 + - uid: 12731 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,26.5 parent: 2 - - uid: 12783 + - uid: 12732 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,27.5 parent: 2 - - uid: 12784 + - uid: 12733 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,25.5 parent: 2 - - uid: 12785 + - uid: 12734 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,26.5 parent: 2 - - uid: 12786 + - uid: 12735 components: - type: Transform pos: -58.5,30.5 parent: 2 - - uid: 12787 + - uid: 12736 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,27.5 parent: 2 - - uid: 12788 + - uid: 12737 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,26.5 parent: 2 - - uid: 12789 + - uid: 12738 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,27.5 parent: 2 - - uid: 12790 + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,22.5 parent: 2 - - uid: 12791 + - uid: 12740 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,23.5 parent: 2 - - uid: 12792 + - uid: 12741 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,24.5 parent: 2 - - uid: 12793 + - uid: 12742 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,22.5 parent: 2 - - uid: 12794 + - uid: 12743 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,28.5 parent: 2 - - uid: 12795 + - uid: 12744 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,27.5 parent: 2 - - uid: 12796 + - uid: 12745 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 12797 + - uid: 12746 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 12798 + - uid: 12747 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-41.5 parent: 2 - - uid: 12799 + - uid: 12748 components: - type: Transform pos: -57.5,27.5 parent: 2 - - uid: 12800 + - uid: 12749 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 12801 + - uid: 12750 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,29.5 parent: 2 - - uid: 12802 + - uid: 12751 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 12803 + - uid: 12752 components: - type: Transform pos: -57.5,30.5 parent: 2 - - uid: 12804 + - uid: 12753 components: - type: Transform pos: -57.5,29.5 parent: 2 - - uid: 12805 + - uid: 12754 components: - type: Transform pos: -55.5,29.5 parent: 2 - - uid: 12806 + - uid: 12755 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,34.5 parent: 2 - - uid: 12807 + - uid: 12756 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,34.5 parent: 2 - - uid: 12808 + - uid: 12757 components: - type: Transform pos: -56.5,29.5 parent: 2 - - uid: 12809 + - uid: 12758 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,30.5 parent: 2 - - uid: 12810 + - uid: 12759 components: - type: Transform pos: -57.5,28.5 parent: 2 - - uid: 12811 + - uid: 12760 components: - type: Transform pos: -56.5,30.5 parent: 2 - - uid: 12812 + - uid: 12761 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 12813 + - uid: 12762 components: - type: Transform pos: -55.5,27.5 parent: 2 - - uid: 12814 + - uid: 12763 components: - type: Transform pos: -55.5,30.5 parent: 2 - - uid: 12815 + - uid: 12764 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,23.5 parent: 2 - - uid: 12816 + - uid: 12765 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,28.5 parent: 2 - - uid: 12817 + - uid: 12766 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,26.5 parent: 2 - - uid: 12818 + - uid: 12767 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,26.5 parent: 2 - - uid: 12819 + - uid: 12768 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 12820 + - uid: 12769 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,26.5 parent: 2 - - uid: 12821 + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,63.5 parent: 2 - - uid: 12822 + - uid: 12771 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 12823 + - uid: 12772 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 12824 + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,99.5 parent: 2 - - uid: 12825 + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,95.5 parent: 2 - - uid: 12826 + - uid: 12775 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,23.5 parent: 2 - - uid: 12827 + - uid: 12776 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,24.5 parent: 2 - - uid: 12828 + - uid: 12777 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,24.5 parent: 2 - - uid: 12829 + - uid: 12778 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,25.5 parent: 2 - - uid: 12830 + - uid: 12779 components: - type: Transform pos: -59.5,30.5 parent: 2 - - uid: 12831 + - uid: 12780 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 - - uid: 12832 + - uid: 12781 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-10.5 parent: 2 - - uid: 12833 + - uid: 12782 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-11.5 parent: 2 - - uid: 12834 + - uid: 12783 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,91.5 parent: 2 - - uid: 12835 + - uid: 12784 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 12836 + - uid: 12785 components: - type: Transform pos: -54.5,27.5 parent: 2 - - uid: 12837 + - uid: 12786 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 12838 + - uid: 12787 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 12839 + - uid: 12788 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 12840 + - uid: 12789 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 12841 + - uid: 12790 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 12842 + - uid: 12791 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,31.5 parent: 2 - - uid: 12843 + - uid: 12792 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 12844 + - uid: 12793 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,91.5 parent: 2 - - uid: 12845 + - uid: 12794 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 12846 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-17.5 parent: 2 - - uid: 12847 + - uid: 12796 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 12848 + - uid: 12797 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,57.5 parent: 2 - - uid: 12849 + - uid: 12798 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-10.5 parent: 2 - - uid: 12850 + - uid: 12799 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 12851 + - uid: 12800 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,65.5 parent: 2 - - uid: 12852 + - uid: 12801 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 12853 + - uid: 12802 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,64.5 parent: 2 - - uid: 12854 + - uid: 12803 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,57.5 parent: 2 - - uid: 12855 + - uid: 12804 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 12856 + - uid: 12805 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,61.5 parent: 2 - - uid: 12857 + - uid: 12806 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-42.5 parent: 2 - - uid: 12859 + - uid: 12807 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-19.5 parent: 2 - - uid: 12860 + - uid: 12808 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 12861 + - uid: 12809 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-3.5 parent: 2 - - uid: 12862 + - uid: 12810 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-22.5 parent: 2 - - uid: 12863 + - uid: 12811 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,62.5 parent: 2 - - uid: 12864 + - uid: 12812 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,63.5 parent: 2 - - uid: 12865 + - uid: 12813 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,64.5 parent: 2 - - uid: 12866 + - uid: 12814 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,66.5 parent: 2 - - uid: 12867 + - uid: 12815 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 - - uid: 12868 + - uid: 12816 components: - type: Transform pos: -55.5,40.5 parent: 2 - - uid: 12869 + - uid: 12817 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-30.5 parent: 2 - - uid: 12870 + - uid: 12818 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,59.5 parent: 2 - - uid: 12871 + - uid: 12819 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,61.5 parent: 2 - - uid: 12872 + - uid: 12820 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-20.5 parent: 2 - - uid: 12873 + - uid: 12821 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,49.5 parent: 2 - - uid: 12874 + - uid: 12822 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,61.5 parent: 2 - - uid: 12875 + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,60.5 parent: 2 - - uid: 12876 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,64.5 parent: 2 - - uid: 12877 + - uid: 12825 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12878 + - uid: 12826 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 12879 + - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,44.5 parent: 2 - - uid: 12880 + - uid: 12828 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,66.5 parent: 2 - - uid: 12881 + - uid: 12829 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,99.5 parent: 2 - - uid: 12882 + - uid: 12830 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,48.5 parent: 2 - - uid: 12883 + - uid: 12831 components: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 12884 + - uid: 12832 components: - type: Transform pos: -48.5,-33.5 parent: 2 - - uid: 12885 + - uid: 12833 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 12886 + - uid: 12834 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,23.5 parent: 2 - - uid: 12887 + - uid: 12835 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - - uid: 12888 + - uid: 12836 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,63.5 parent: 2 - - uid: 12889 + - uid: 12837 components: - type: Transform pos: -59.5,36.5 parent: 2 - - uid: 12890 + - uid: 12838 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,59.5 parent: 2 - - uid: 12891 + - uid: 12839 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 12892 + - uid: 12840 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,71.5 parent: 2 - - uid: 12893 + - uid: 12841 components: - type: Transform pos: -47.5,-75.5 parent: 2 - - uid: 12894 + - uid: 12842 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 - - uid: 12895 + - uid: 12843 components: - type: Transform pos: -47.5,-76.5 parent: 2 - - uid: 12896 + - uid: 12844 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 - - uid: 12897 + - uid: 12845 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-27.5 parent: 2 - - uid: 12898 + - uid: 12846 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 - - uid: 12899 + - uid: 12847 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,99.5 parent: 2 - - uid: 12900 + - uid: 12848 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-8.5 parent: 2 - - uid: 12901 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-13.5 parent: 2 - - uid: 12902 + - uid: 12850 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-33.5 parent: 2 - - uid: 12903 + - uid: 12851 components: - type: Transform pos: -49.5,-33.5 parent: 2 - - uid: 12904 + - uid: 12852 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 12905 + - uid: 12853 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 12906 + - uid: 12854 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-30.5 parent: 2 - - uid: 12907 + - uid: 12855 components: - type: Transform pos: -46.5,-76.5 parent: 2 - - uid: 12908 + - uid: 12856 components: - type: Transform pos: -27.5,-67.5 parent: 2 - - uid: 12909 + - uid: 12857 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,32.5 parent: 2 - - uid: 12910 + - uid: 12858 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-3.5 parent: 2 - - uid: 12911 + - uid: 12859 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,63.5 parent: 2 - - uid: 12912 + - uid: 12860 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,62.5 parent: 2 - - uid: 12913 + - uid: 12861 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,39.5 parent: 2 - - uid: 12914 + - uid: 12862 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,45.5 parent: 2 - - uid: 12915 + - uid: 12863 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 12916 + - uid: 12864 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-14.5 parent: 2 - - uid: 12917 + - uid: 12865 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-20.5 parent: 2 - - uid: 12918 + - uid: 12866 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,63.5 parent: 2 - - uid: 12919 + - uid: 12867 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,31.5 parent: 2 - - uid: 12920 + - uid: 12868 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,31.5 parent: 2 - - uid: 12921 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 - - uid: 12922 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,26.5 parent: 2 - - uid: 12923 + - uid: 12871 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,64.5 parent: 2 - - uid: 12924 + - uid: 12872 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,64.5 parent: 2 - - uid: 12925 + - uid: 12873 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,63.5 parent: 2 - - uid: 12926 + - uid: 12874 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,59.5 parent: 2 - - uid: 12927 + - uid: 12875 components: - type: Transform pos: -45.5,-76.5 parent: 2 - - uid: 12928 + - uid: 12876 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-19.5 parent: 2 - - uid: 12929 + - uid: 12877 components: - type: Transform pos: -45.5,-77.5 parent: 2 - - uid: 12930 + - uid: 12878 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,59.5 parent: 2 - - uid: 12931 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 - - uid: 12932 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-19.5 parent: 2 - - uid: 12933 + - uid: 12881 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 12934 + - uid: 12882 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-11.5 parent: 2 - - uid: 12935 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 - - uid: 12936 + - uid: 12884 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,56.5 parent: 2 - - uid: 12937 + - uid: 12885 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,29.5 parent: 2 - - uid: 12938 + - uid: 12886 components: - type: Transform pos: -27.5,-68.5 parent: 2 - - uid: 12939 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-13.5 parent: 2 - - uid: 12940 + - uid: 12888 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 12941 + - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 - - uid: 12942 + - uid: 12890 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 2 - - uid: 12943 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,47.5 parent: 2 - - uid: 12944 + - uid: 12892 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,43.5 parent: 2 - - uid: 12945 + - uid: 12893 components: - type: Transform pos: -91.5,-13.5 parent: 2 - - uid: 12946 + - uid: 12894 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 12947 + - uid: 12895 components: - type: Transform pos: -44.5,-77.5 parent: 2 - - uid: 12948 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - uid: 12949 + - uid: 12897 components: - type: Transform pos: -90.5,-13.5 parent: 2 - - uid: 12950 + - uid: 12898 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-41.5 parent: 2 - - uid: 12951 + - uid: 12899 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 12952 + - uid: 12900 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,39.5 parent: 2 - - uid: 12953 + - uid: 12901 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-30.5 parent: 2 - - uid: 12954 + - uid: 12902 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 2 - - uid: 12955 + - uid: 12903 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-30.5 parent: 2 - - uid: 12956 + - uid: 12904 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,14.5 parent: 2 - - uid: 12957 + - uid: 12905 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-5.5 parent: 2 - - uid: 12958 + - uid: 12906 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 12959 + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 - - uid: 12960 + - uid: 12908 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-19.5 parent: 2 - - uid: 12961 + - uid: 12909 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-19.5 parent: 2 - - uid: 12962 + - uid: 12910 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,70.5 parent: 2 - - uid: 12963 + - uid: 12911 components: - type: Transform pos: -59.5,34.5 parent: 2 - - uid: 12964 + - uid: 12912 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-32.5 parent: 2 - - uid: 12965 + - uid: 12913 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,64.5 parent: 2 - - uid: 12966 + - uid: 12914 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-21.5 parent: 2 - - uid: 12967 + - uid: 12915 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-9.5 parent: 2 - - uid: 12968 + - uid: 12916 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 12969 + - uid: 12917 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 12970 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-19.5 parent: 2 - - uid: 12971 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - uid: 12972 + - uid: 12920 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,53.5 parent: 2 - - uid: 12973 + - uid: 12921 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,56.5 parent: 2 - - uid: 12974 + - uid: 12922 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 - - uid: 12975 + - uid: 12923 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,72.5 parent: 2 - - uid: 12976 + - uid: 12924 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,25.5 parent: 2 - - uid: 12977 + - uid: 12925 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-46.5 parent: 2 - - uid: 12978 + - uid: 12926 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-50.5 parent: 2 - - uid: 12979 + - uid: 12927 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-28.5 parent: 2 - - uid: 12980 + - uid: 12928 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-30.5 parent: 2 - - uid: 12981 + - uid: 12929 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,56.5 parent: 2 - - uid: 12982 + - uid: 12930 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,44.5 parent: 2 - - uid: 12983 + - uid: 12931 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-19.5 parent: 2 - - uid: 12984 + - uid: 12932 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-19.5 parent: 2 - - uid: 12985 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,62.5 parent: 2 - - uid: 12986 + - uid: 12934 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-30.5 parent: 2 - - uid: 12987 + - uid: 12935 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 12988 + - uid: 12936 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,56.5 parent: 2 - - uid: 12989 + - uid: 12937 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,56.5 parent: 2 - - uid: 12990 + - uid: 12938 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12991 + - uid: 12939 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,57.5 parent: 2 - - uid: 12992 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-4.5 parent: 2 - - uid: 12993 + - uid: 12941 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-23.5 parent: 2 - - uid: 12994 + - uid: 12942 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,23.5 parent: 2 - - uid: 12995 + - uid: 12943 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-21.5 parent: 2 - - uid: 12996 + - uid: 12944 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-22.5 parent: 2 - - uid: 12997 + - uid: 12945 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,47.5 parent: 2 - - uid: 12998 + - uid: 12946 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,64.5 parent: 2 - - uid: 12999 + - uid: 12947 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 - - uid: 13000 + - uid: 12948 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 13001 + - uid: 12949 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,54.5 parent: 2 - - uid: 13002 + - uid: 12950 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 - - uid: 13003 + - uid: 12951 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-30.5 parent: 2 - - uid: 13004 + - uid: 12952 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-19.5 parent: 2 - - uid: 13005 + - uid: 12953 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-19.5 parent: 2 - - uid: 13006 + - uid: 12954 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,69.5 parent: 2 - - uid: 13007 + - uid: 12955 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,34.5 parent: 2 - - uid: 13008 + - uid: 12956 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,58.5 parent: 2 - - uid: 13009 + - uid: 12957 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 2 - - uid: 13010 + - uid: 12958 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,58.5 parent: 2 - - uid: 13011 + - uid: 12959 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - - uid: 13012 + - uid: 12960 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,47.5 parent: 2 - - uid: 13013 + - uid: 12961 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,25.5 parent: 2 - - uid: 13014 + - uid: 12962 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,23.5 parent: 2 - - uid: 13015 + - uid: 12963 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-46.5 parent: 2 - - uid: 13016 + - uid: 12964 components: - type: Transform pos: -55.5,-40.5 parent: 2 - - uid: 13017 + - uid: 12965 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 13018 + - uid: 12966 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-46.5 parent: 2 - - uid: 13019 + - uid: 12967 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-27.5 parent: 2 - - uid: 13020 + - uid: 12968 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-51.5 parent: 2 - - uid: 13021 + - uid: 12969 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,12.5 parent: 2 - - uid: 13022 + - uid: 12970 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-19.5 parent: 2 - - uid: 13023 + - uid: 12971 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,34.5 parent: 2 - - uid: 13024 + - uid: 12972 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 13025 + - uid: 12973 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-31.5 parent: 2 - - uid: 13026 + - uid: 12974 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-30.5 parent: 2 - - uid: 13027 + - uid: 12975 components: - type: Transform pos: -21.5,-83.5 parent: 2 - - uid: 13028 + - uid: 12976 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,46.5 parent: 2 - - uid: 13029 + - uid: 12977 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-26.5 parent: 2 - - uid: 13030 + - uid: 12978 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-22.5 parent: 2 - - uid: 13031 + - uid: 12979 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,30.5 parent: 2 - - uid: 13032 + - uid: 12980 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,57.5 parent: 2 - - uid: 13033 + - uid: 12981 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-12.5 parent: 2 - - uid: 13034 + - uid: 12982 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 - - uid: 13035 + - uid: 12983 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,65.5 parent: 2 - - uid: 13036 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,64.5 parent: 2 - - uid: 13037 + - uid: 12985 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-21.5 parent: 2 - - uid: 13038 + - uid: 12986 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-21.5 parent: 2 - - uid: 13039 + - uid: 12987 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-40.5 parent: 2 - - uid: 13040 + - uid: 12988 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-15.5 parent: 2 - - uid: 13041 + - uid: 12989 components: - type: Transform pos: -24.5,-83.5 parent: 2 - - uid: 13042 + - uid: 12990 components: - type: Transform pos: -23.5,-83.5 parent: 2 - - uid: 13043 + - uid: 12991 components: - type: Transform pos: -22.5,-83.5 parent: 2 - - uid: 13044 + - uid: 12992 components: - type: Transform pos: -89.5,-13.5 parent: 2 - - uid: 13045 + - uid: 12993 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 13046 + - uid: 12994 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-19.5 parent: 2 - - uid: 13047 + - uid: 12995 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-21.5 parent: 2 - - uid: 13048 + - uid: 12996 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,33.5 parent: 2 - - uid: 13049 + - uid: 12997 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 - - uid: 13050 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,99.5 parent: 2 - - uid: 13051 + - uid: 12999 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,45.5 parent: 2 - - uid: 13052 + - uid: 13000 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,60.5 parent: 2 - - uid: 13053 + - uid: 13001 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-2.5 parent: 2 - - uid: 13054 + - uid: 13002 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-42.5 parent: 2 - - uid: 13055 + - uid: 13003 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 - - uid: 13056 + - uid: 13004 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-19.5 parent: 2 - - uid: 13057 + - uid: 13005 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 13058 + - uid: 13006 components: - type: Transform pos: -59.5,35.5 parent: 2 - - uid: 13059 + - uid: 13007 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 - - uid: 13060 + - uid: 13008 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 13061 + - uid: 13009 components: - type: Transform pos: -19.5,-83.5 parent: 2 - - uid: 13062 + - uid: 13010 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-19.5 parent: 2 - - uid: 13063 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,34.5 parent: 2 - - uid: 13064 + - uid: 13012 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,64.5 parent: 2 - - uid: 13065 + - uid: 13013 components: - type: Transform pos: -18.5,-83.5 parent: 2 - - uid: 13066 + - uid: 13014 components: - type: Transform pos: -17.5,-83.5 parent: 2 - - uid: 13067 + - uid: 13015 components: - type: Transform pos: -75.5,80.5 parent: 2 - - uid: 13068 + - uid: 13016 components: - type: Transform pos: -16.5,-83.5 parent: 2 - - uid: 13069 + - uid: 13017 components: - type: Transform pos: -15.5,-84.5 parent: 2 - - uid: 13070 + - uid: 13018 components: - type: Transform pos: -14.5,-84.5 parent: 2 - - uid: 13071 + - uid: 13019 components: - type: Transform pos: -13.5,-84.5 parent: 2 - - uid: 13072 + - uid: 13020 components: - type: Transform pos: -12.5,-84.5 parent: 2 - - uid: 13073 + - uid: 13021 components: - type: Transform pos: -80.5,69.5 parent: 2 - - uid: 13074 + - uid: 13022 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 13075 + - uid: 13023 components: - type: Transform pos: -75.5,78.5 parent: 2 - - uid: 13076 + - uid: 13024 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 13077 + - uid: 13025 components: - type: Transform pos: -75.5,66.5 parent: 2 - - uid: 13078 + - uid: 13026 components: - type: Transform pos: -75.5,79.5 parent: 2 - - uid: 13079 + - uid: 13027 components: - type: Transform pos: -60.5,-54.5 parent: 2 - - uid: 13080 + - uid: 13028 components: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 13081 + - uid: 13029 components: - type: Transform pos: -76.5,77.5 parent: 2 - - uid: 13082 + - uid: 13030 components: - type: Transform pos: -45.5,-85.5 parent: 2 - - uid: 13083 + - uid: 13031 components: - type: Transform pos: -43.5,-57.5 parent: 2 - - uid: 13084 + - uid: 13032 components: - type: Transform pos: 67.5,-51.5 parent: 2 - - uid: 13085 + - uid: 13033 components: - type: Transform pos: 69.5,-51.5 parent: 2 - - uid: 13086 + - uid: 13034 components: - type: Transform pos: -79.5,77.5 parent: 2 - - uid: 13087 + - uid: 13035 components: - type: Transform pos: 68.5,-51.5 parent: 2 - - uid: 13088 + - uid: 13036 components: - type: Transform pos: -88.5,13.5 parent: 2 - - uid: 13089 + - uid: 13037 components: - type: Transform pos: -43.5,-54.5 parent: 2 - - uid: 13090 + - uid: 13038 components: - type: Transform pos: -53.5,-52.5 parent: 2 - - uid: 13091 + - uid: 13039 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 13092 + - uid: 13040 components: - type: Transform pos: 30.5,19.5 parent: 2 - - uid: 13093 + - uid: 13041 components: - type: Transform pos: -74.5,69.5 parent: 2 - - uid: 13094 + - uid: 13042 components: - type: Transform pos: 22.5,87.5 parent: 2 - - uid: 13095 + - uid: 13043 components: - type: Transform pos: 27.5,87.5 parent: 2 - - uid: 13096 + - uid: 13044 components: - type: Transform pos: 26.5,87.5 parent: 2 - - uid: 13097 + - uid: 13045 components: - type: Transform pos: -59.5,66.5 parent: 2 - - uid: 13098 + - uid: 13046 components: - type: Transform pos: 23.5,87.5 parent: 2 - - uid: 13099 + - uid: 13047 components: - type: Transform pos: -72.5,77.5 parent: 2 - - uid: 13100 + - uid: 13048 components: - type: Transform pos: -70.5,69.5 parent: 2 - - uid: 13101 + - uid: 13049 components: - type: Transform pos: -69.5,69.5 parent: 2 - - uid: 13102 + - uid: 13050 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-8.5 parent: 2 - - uid: 13103 + - uid: 13051 components: - type: Transform pos: -85.5,14.5 parent: 2 - - uid: 13104 + - uid: 13052 components: - type: Transform pos: -63.5,66.5 parent: 2 - - uid: 13105 + - uid: 13053 components: - type: Transform pos: -54.5,-81.5 parent: 2 - - uid: 13106 + - uid: 13054 components: - type: Transform pos: -55.5,-81.5 parent: 2 - - uid: 13107 + - uid: 13055 components: - type: Transform pos: -62.5,66.5 parent: 2 - - uid: 13108 + - uid: 13056 components: - type: Transform pos: -60.5,66.5 parent: 2 - - uid: 13109 + - uid: 13057 components: - type: Transform pos: -75.5,82.5 parent: 2 - - uid: 13110 + - uid: 13058 components: - type: Transform pos: -75.5,81.5 parent: 2 - - uid: 13111 + - uid: 13059 components: - type: Transform pos: -43.5,60.5 parent: 2 - - uid: 13112 + - uid: 13060 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 13113 + - uid: 13061 components: - type: Transform pos: -12.5,-83.5 parent: 2 - - uid: 13114 + - uid: 13062 components: - type: Transform pos: 28.5,97.5 parent: 2 - - uid: 13115 + - uid: 13063 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,37.5 parent: 2 - - uid: 13116 + - uid: 13064 components: - type: Transform pos: -11.5,-83.5 parent: 2 - - uid: 13117 + - uid: 13065 components: - type: Transform pos: -88.5,-13.5 parent: 2 - - uid: 13118 + - uid: 13066 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 13119 + - uid: 13067 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,43.5 parent: 2 - - uid: 13120 + - uid: 13068 components: - type: Transform pos: -10.5,-83.5 parent: 2 - - uid: 13121 + - uid: 13069 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-44.5 parent: 2 - - uid: 13122 + - uid: 13070 components: - type: Transform pos: -94.5,-13.5 parent: 2 - - uid: 13123 + - uid: 13071 components: - type: Transform pos: -93.5,-4.5 parent: 2 - - uid: 13124 + - uid: 13072 components: - type: Transform pos: -96.5,-13.5 parent: 2 - - uid: 13125 + - uid: 13073 components: - type: Transform pos: -91.5,-3.5 parent: 2 - - uid: 13126 + - uid: 13074 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 13127 + - uid: 13075 components: - type: Transform pos: -43.5,57.5 parent: 2 - - uid: 13128 + - uid: 13076 components: - type: Transform pos: -86.5,-10.5 parent: 2 - - uid: 13129 + - uid: 13077 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-71.5 parent: 2 - - uid: 13130 + - uid: 13078 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-56.5 parent: 2 - - uid: 13131 + - uid: 13079 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 2 - - uid: 13132 + - uid: 13080 components: - type: Transform pos: -89.5,-1.5 parent: 2 - - uid: 13133 + - uid: 13081 components: - type: Transform pos: -88.5,-8.5 parent: 2 - - uid: 13134 + - uid: 13082 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 2 - - uid: 13135 + - uid: 13083 components: - type: Transform pos: -88.5,-6.5 parent: 2 - - uid: 13136 + - uid: 13084 components: - type: Transform pos: -89.5,-6.5 parent: 2 - - uid: 13137 + - uid: 13085 components: - type: Transform pos: -98.5,-10.5 parent: 2 - - uid: 13138 + - uid: 13086 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-30.5 parent: 2 - - uid: 13139 + - uid: 13087 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-21.5 parent: 2 - - uid: 13140 + - uid: 13088 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-42.5 parent: 2 - - uid: 13141 + - uid: 13089 components: - type: Transform pos: -98.5,-8.5 parent: 2 - - uid: 13142 + - uid: 13090 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-54.5 parent: 2 - - uid: 13143 + - uid: 13091 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 - - uid: 13144 + - uid: 13092 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-55.5 parent: 2 - - uid: 13145 + - uid: 13093 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-54.5 parent: 2 - - uid: 13146 + - uid: 13094 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 - - uid: 13147 + - uid: 13095 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-44.5 parent: 2 - - uid: 13149 + - uid: 13096 components: - type: Transform pos: -51.5,-92.5 parent: 2 - - uid: 13150 + - uid: 13097 components: - type: Transform pos: -70.5,77.5 parent: 2 - - uid: 13151 + - uid: 13098 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-35.5 parent: 2 - - uid: 13152 + - uid: 13099 components: - type: Transform pos: -91.5,-1.5 parent: 2 - - uid: 13154 + - uid: 13100 components: - type: Transform pos: -90.5,-1.5 parent: 2 - - uid: 13156 + - uid: 13101 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-76.5 parent: 2 - - uid: 13157 + - uid: 13102 components: - type: Transform pos: -92.5,-1.5 parent: 2 - - uid: 13158 + - uid: 13103 components: - type: Transform pos: -95.5,-1.5 parent: 2 - - uid: 13159 + - uid: 13104 components: - type: Transform pos: -59.5,33.5 parent: 2 - - uid: 13160 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,33.5 parent: 2 - - uid: 13161 + - uid: 13106 components: - type: Transform pos: -98.5,-5.5 parent: 2 - - uid: 13162 + - uid: 13107 components: - type: Transform pos: -98.5,-6.5 parent: 2 - - uid: 13163 + - uid: 13108 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-43.5 parent: 2 - - uid: 13164 + - uid: 13109 components: - type: Transform pos: -98.5,-9.5 parent: 2 - - uid: 13165 + - uid: 13110 components: - type: Transform pos: -91.5,-10.5 parent: 2 - - uid: 13166 + - uid: 13111 components: - type: Transform pos: -97.5,-1.5 parent: 2 - - uid: 13167 + - uid: 13112 components: - type: Transform pos: -93.5,-1.5 parent: 2 - - uid: 13168 + - uid: 13113 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,31.5 parent: 2 - - uid: 13169 + - uid: 13114 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-40.5 parent: 2 - - uid: 13170 + - uid: 13115 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 - - uid: 13171 + - uid: 13116 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-39.5 parent: 2 - - uid: 13172 + - uid: 13117 components: - type: Transform pos: -69.5,66.5 parent: 2 - - uid: 13173 + - uid: 13118 components: - type: Transform pos: -51.5,-79.5 parent: 2 - - uid: 13174 + - uid: 13119 components: - type: Transform pos: 29.5,99.5 parent: 2 - - uid: 13175 + - uid: 13120 components: - type: Transform pos: -56.5,42.5 parent: 2 - - uid: 13176 + - uid: 13121 components: - type: Transform pos: -45.5,61.5 parent: 2 - - uid: 13177 + - uid: 13122 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,42.5 parent: 2 - - uid: 13178 + - uid: 13123 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-22.5 parent: 2 - - uid: 13179 + - uid: 13124 components: - type: Transform pos: -91.5,-11.5 parent: 2 - - uid: 13181 + - uid: 13125 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-31.5 parent: 2 - - uid: 13182 + - uid: 13126 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 - - uid: 13183 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 2 - - uid: 13184 + - uid: 13128 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 13185 + - uid: 13129 components: - type: Transform pos: -86.5,14.5 parent: 2 - - uid: 13186 + - uid: 13130 components: - type: Transform pos: -52.5,-81.5 parent: 2 - - uid: 13187 + - uid: 13131 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,44.5 parent: 2 - - uid: 13188 + - uid: 13132 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,33.5 parent: 2 - - uid: 13189 + - uid: 13133 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,26.5 parent: 2 - - uid: 13190 + - uid: 13134 components: - type: Transform pos: -38.5,-75.5 parent: 2 - - uid: 13191 + - uid: 13135 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-30.5 parent: 2 - - uid: 13192 + - uid: 13136 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-54.5 parent: 2 - - uid: 13193 + - uid: 13137 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 13194 + - uid: 13138 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 - - uid: 13195 + - uid: 13139 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 13196 + - uid: 13140 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 - - uid: 13197 + - uid: 13141 components: - type: Transform pos: -91.5,-4.5 parent: 2 - - uid: 13198 + - uid: 13142 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,38.5 parent: 2 - - uid: 13199 + - uid: 13143 components: - type: Transform pos: -98.5,-1.5 parent: 2 - - uid: 13200 + - uid: 13144 components: - type: Transform pos: -95.5,-6.5 parent: 2 - - uid: 13201 + - uid: 13145 components: - type: Transform pos: -86.5,-5.5 parent: 2 - - uid: 13202 + - uid: 13146 components: - type: Transform pos: -59.5,37.5 parent: 2 - - uid: 13204 + - uid: 13147 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - uid: 13205 + - uid: 13148 components: - type: Transform pos: -96.5,-6.5 parent: 2 - - uid: 13206 + - uid: 13149 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,42.5 parent: 2 - - uid: 13207 + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,41.5 parent: 2 - - uid: 13208 + - uid: 13151 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,32.5 parent: 2 - - uid: 13209 + - uid: 13152 components: - type: Transform pos: -86.5,-8.5 parent: 2 - - uid: 13210 + - uid: 13153 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 13211 + - uid: 13154 components: - type: Transform pos: -98.5,-4.5 parent: 2 - - uid: 13212 + - uid: 13155 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,30.5 parent: 2 - - uid: 13213 + - uid: 13156 components: - type: Transform pos: -86.5,-4.5 parent: 2 - - uid: 13214 + - uid: 13157 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-18.5 parent: 2 - - uid: 13216 + - uid: 13158 components: - type: Transform pos: -86.5,-6.5 parent: 2 - - uid: 13217 + - uid: 13159 components: - type: Transform pos: -95.5,-8.5 parent: 2 - - uid: 13218 + - uid: 13160 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,37.5 parent: 2 - - uid: 13219 + - uid: 13161 components: - type: Transform pos: -51.5,-75.5 parent: 2 - - uid: 13220 + - uid: 13162 components: - type: Transform pos: -51.5,-84.5 parent: 2 - - uid: 13221 + - uid: 13163 components: - type: Transform pos: -66.5,66.5 parent: 2 - - uid: 13222 + - uid: 13164 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,99.5 parent: 2 - - uid: 13223 + - uid: 13165 components: - type: Transform pos: -67.5,66.5 parent: 2 - - uid: 13224 + - uid: 13166 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 13225 + - uid: 13167 components: - type: Transform pos: -52.5,-89.5 parent: 2 - - uid: 13226 + - uid: 13168 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 13227 + - uid: 13169 components: - type: Transform pos: -53.5,-58.5 parent: 2 - - uid: 13228 + - uid: 13170 components: - type: Transform pos: -48.5,-85.5 parent: 2 - - uid: 13229 + - uid: 13171 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 13230 + - uid: 13172 components: - type: Transform pos: -54.5,-58.5 parent: 2 - - uid: 13231 + - uid: 13173 components: - type: Transform pos: -70.5,73.5 parent: 2 - - uid: 13232 + - uid: 13174 components: - type: Transform pos: -56.5,-81.5 parent: 2 - - uid: 13233 + - uid: 13175 components: - type: Transform pos: -57.5,-81.5 parent: 2 - - uid: 13234 + - uid: 13176 components: - type: Transform pos: -75.5,72.5 parent: 2 - - uid: 13235 + - uid: 13177 components: - type: Transform pos: -75.5,71.5 parent: 2 - - uid: 13236 + - uid: 13178 components: - type: Transform pos: -75.5,70.5 parent: 2 - - uid: 13237 + - uid: 13179 components: - type: Transform pos: -72.5,69.5 parent: 2 - - uid: 13238 + - uid: 13180 components: - type: Transform pos: -71.5,69.5 parent: 2 - - uid: 13239 + - uid: 13181 components: - type: Transform pos: -49.5,-66.5 parent: 2 - - uid: 13240 + - uid: 13182 components: - type: Transform pos: 28.5,93.5 parent: 2 - - uid: 13241 + - uid: 13183 components: - type: Transform pos: 28.5,95.5 parent: 2 - - uid: 13242 + - uid: 13184 components: - type: Transform pos: -48.5,-89.5 parent: 2 - - uid: 13243 + - uid: 13185 components: - type: Transform pos: -47.5,-89.5 parent: 2 - - uid: 13244 + - uid: 13186 components: - type: Transform pos: -75.5,83.5 parent: 2 - - uid: 13245 + - uid: 13187 components: - type: Transform pos: 28.5,90.5 parent: 2 - - uid: 13246 + - uid: 13188 components: - type: Transform pos: 28.5,89.5 parent: 2 - - uid: 13247 + - uid: 13189 components: - type: Transform pos: 28.5,88.5 parent: 2 - - uid: 13248 + - uid: 13190 components: - type: Transform pos: 29.5,91.5 parent: 2 - - uid: 13249 + - uid: 13191 components: - type: Transform pos: 27.5,91.5 parent: 2 - - uid: 13250 + - uid: 13192 components: - type: Transform pos: 27.5,95.5 parent: 2 - - uid: 13251 + - uid: 13193 components: - type: Transform pos: -76.5,81.5 parent: 2 - - uid: 13252 + - uid: 13194 components: - type: Transform pos: -80.5,77.5 parent: 2 - - uid: 13253 + - uid: 13195 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 13254 + - uid: 13196 components: - type: Transform pos: -71.5,81.5 parent: 2 - - uid: 13255 + - uid: 13197 components: - type: Transform pos: -74.5,81.5 parent: 2 - - uid: 13256 + - uid: 13198 components: - type: Transform pos: -51.5,-87.5 parent: 2 - - uid: 13257 + - uid: 13199 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 13258 + - uid: 13200 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,44.5 parent: 2 - - uid: 13259 + - uid: 13201 components: - type: Transform pos: -51.5,-86.5 parent: 2 - - uid: 13260 + - uid: 13202 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-40.5 parent: 2 - - uid: 13261 + - uid: 13203 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 - - uid: 13262 + - uid: 13204 components: - type: Transform pos: -75.5,73.5 parent: 2 - - uid: 13263 + - uid: 13205 components: - type: Transform pos: -73.5,69.5 parent: 2 - - uid: 13264 + - uid: 13206 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,30.5 parent: 2 - - uid: 13265 + - uid: 13207 components: - type: Transform pos: -62.5,-50.5 parent: 2 - - uid: 13266 + - uid: 13208 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-10.5 parent: 2 - - uid: 13267 + - uid: 13209 components: - type: Transform pos: -73.5,73.5 parent: 2 - - uid: 13268 + - uid: 13210 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 13269 + - uid: 13211 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 13270 + - uid: 13212 components: - type: Transform pos: 20.5,87.5 parent: 2 - - uid: 13271 + - uid: 13213 components: - type: Transform pos: -51.5,-58.5 parent: 2 - - uid: 13272 + - uid: 13214 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,44.5 parent: 2 - - uid: 13273 + - uid: 13215 components: - type: Transform pos: -78.5,73.5 parent: 2 - - uid: 13274 + - uid: 13216 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,41.5 parent: 2 - - uid: 13275 + - uid: 13217 components: - type: Transform pos: -43.5,61.5 parent: 2 - - uid: 13276 + - uid: 13218 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 13277 + - uid: 13219 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,27.5 parent: 2 - - uid: 13278 + - uid: 13220 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,54.5 parent: 2 - - uid: 13279 + - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-46.5 parent: 2 - - uid: 13280 + - uid: 13222 components: - type: Transform pos: -92.5,-13.5 parent: 2 - - uid: 13281 + - uid: 13223 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 - - uid: 13282 + - uid: 13224 components: - type: Transform pos: -86.5,-9.5 parent: 2 - - uid: 13283 + - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-73.5 parent: 2 - - uid: 13284 + - uid: 13226 components: - type: Transform pos: -93.5,-13.5 parent: 2 - - uid: 13285 + - uid: 13227 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-54.5 parent: 2 - - uid: 13286 + - uid: 13228 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 - - uid: 13287 + - uid: 13229 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-46.5 parent: 2 - - uid: 13288 + - uid: 13230 components: - type: Transform pos: -35.5,45.5 parent: 2 - - uid: 13289 + - uid: 13231 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 13290 + - uid: 13232 components: - type: Transform pos: -52.5,-54.5 parent: 2 - - uid: 13291 + - uid: 13233 components: - type: Transform pos: -49.5,-85.5 parent: 2 - - uid: 13292 + - uid: 13234 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 13293 + - uid: 13235 components: - type: Transform pos: -61.5,-50.5 parent: 2 - - uid: 13294 + - uid: 13236 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-36.5 parent: 2 - - uid: 13295 + - uid: 13237 components: - type: Transform pos: -51.5,-66.5 parent: 2 - - uid: 13296 + - uid: 13238 components: - type: Transform pos: -47.5,-74.5 parent: 2 - - uid: 13297 + - uid: 13239 components: - type: Transform pos: -81.5,73.5 parent: 2 - - uid: 13298 + - uid: 13240 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 13299 + - uid: 13241 components: - type: Transform pos: -52.5,-66.5 parent: 2 - - uid: 13300 + - uid: 13242 components: - type: Transform pos: -80.5,73.5 parent: 2 - - uid: 13301 + - uid: 13243 components: - type: Transform pos: -76.5,69.5 parent: 2 - - uid: 13302 + - uid: 13244 components: - type: Transform pos: -75.5,75.5 parent: 2 - - uid: 13303 + - uid: 13245 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 13304 + - uid: 13246 components: - type: Transform pos: 30.5,95.5 parent: 2 - - uid: 13305 + - uid: 13247 components: - type: Transform pos: -52.5,-58.5 parent: 2 - - uid: 13306 + - uid: 13248 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,29.5 parent: 2 - - uid: 13307 + - uid: 13249 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 13308 + - uid: 13250 components: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 13309 + - uid: 13251 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 13310 + - uid: 13252 components: - type: Transform pos: -73.5,-40.5 parent: 2 - - uid: 13311 + - uid: 13253 components: - type: Transform pos: -50.5,-62.5 parent: 2 - - uid: 13312 + - uid: 13254 components: - type: Transform pos: -83.5,14.5 parent: 2 - - uid: 13313 + - uid: 13255 components: - type: Transform pos: -93.5,-10.5 parent: 2 - - uid: 13314 + - uid: 13256 components: - type: Transform pos: -84.5,14.5 parent: 2 - - uid: 13315 + - uid: 13257 components: - type: Transform pos: -74.5,-40.5 parent: 2 - - uid: 13316 + - uid: 13258 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 13317 + - uid: 13259 components: - type: Transform pos: -62.5,-54.5 parent: 2 - - uid: 13318 + - uid: 13260 components: - type: Transform pos: -81.5,69.5 parent: 2 - - uid: 13319 + - uid: 13261 components: - type: Transform pos: -46.5,-81.5 parent: 2 - - uid: 13320 + - uid: 13262 components: - type: Transform pos: -54.5,-56.5 parent: 2 - - uid: 13321 + - uid: 13263 components: - type: Transform pos: -52.5,-56.5 parent: 2 - - uid: 13322 + - uid: 13264 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 13323 + - uid: 13265 components: - type: Transform pos: -54.5,-54.5 parent: 2 - - uid: 13324 + - uid: 13266 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-17.5 parent: 2 - - uid: 13325 + - uid: 13267 components: - type: Transform pos: -59.5,32.5 parent: 2 - - uid: 13326 + - uid: 13268 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,30.5 parent: 2 - - uid: 13327 + - uid: 13269 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-30.5 parent: 2 - - uid: 13328 + - uid: 13270 components: - type: Transform pos: 30.5,18.5 parent: 2 - - uid: 13329 + - uid: 13271 components: - type: Transform pos: -51.5,-90.5 parent: 2 - - uid: 13330 + - uid: 13272 components: - type: Transform pos: -61.5,66.5 parent: 2 - - uid: 13331 + - uid: 13273 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 13332 + - uid: 13274 components: - type: Transform pos: -72.5,81.5 parent: 2 - - uid: 13333 + - uid: 13275 components: - type: Transform pos: -50.5,-69.5 parent: 2 - - uid: 13334 + - uid: 13276 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-74.5 parent: 2 - - uid: 13335 + - uid: 13277 components: - type: Transform pos: -73.5,77.5 parent: 2 - - uid: 13336 + - uid: 13278 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-55.5 parent: 2 - - uid: 13337 + - uid: 13279 components: - type: Transform pos: -96.5,-8.5 parent: 2 - - uid: 13338 + - uid: 13280 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,56.5 parent: 2 - - uid: 13339 + - uid: 13281 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-20.5 parent: 2 - - uid: 13340 + - uid: 13282 components: - type: Transform pos: -43.5,59.5 parent: 2 - - uid: 13341 + - uid: 13283 components: - type: Transform pos: -45.5,59.5 parent: 2 - - uid: 13342 + - uid: 13284 components: - type: Transform pos: -78.5,-41.5 parent: 2 - - uid: 13343 + - uid: 13285 components: - type: Transform pos: 28.5,98.5 parent: 2 - - uid: 13344 + - uid: 13286 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-46.5 parent: 2 - - uid: 13345 + - uid: 13287 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 - - uid: 13346 + - uid: 13288 components: - type: Transform pos: -65.5,66.5 parent: 2 - - uid: 13347 + - uid: 13289 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 13348 + - uid: 13290 components: - type: Transform pos: -51.5,-69.5 parent: 2 - - uid: 13349 + - uid: 13291 components: - type: Transform pos: -75.5,69.5 parent: 2 - - uid: 13350 + - uid: 13292 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-7.5 parent: 2 - - uid: 13351 + - uid: 13293 components: - type: Transform pos: -73.5,81.5 parent: 2 - - uid: 13352 + - uid: 13294 components: - type: Transform pos: -70.5,81.5 parent: 2 - - uid: 13353 + - uid: 13295 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 13354 + - uid: 13296 components: - type: Transform pos: 28.5,99.5 parent: 2 - - uid: 13355 + - uid: 13297 components: - type: Transform pos: -71.5,73.5 parent: 2 - - uid: 13356 + - uid: 13298 components: - type: Transform pos: -55.5,-89.5 parent: 2 - - uid: 13357 + - uid: 13299 components: - type: Transform pos: -54.5,-89.5 parent: 2 - - uid: 13358 + - uid: 13300 components: - type: Transform pos: -69.5,81.5 parent: 2 - - uid: 13359 + - uid: 13301 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-54.5 parent: 2 - - uid: 13360 + - uid: 13302 components: - type: Transform pos: -77.5,-41.5 parent: 2 - - uid: 13361 + - uid: 13303 components: - type: Transform pos: -88.5,-1.5 parent: 2 - - uid: 13362 + - uid: 13304 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,27.5 parent: 2 - - uid: 13363 + - uid: 13305 components: - type: Transform pos: -76.5,-41.5 parent: 2 - - uid: 13364 + - uid: 13306 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 13365 + - uid: 13307 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 13366 + - uid: 13308 components: - type: Transform pos: -45.5,-89.5 parent: 2 - - uid: 13367 + - uid: 13309 components: - type: Transform pos: 28.5,100.5 parent: 2 - - uid: 13368 + - uid: 13310 components: - type: Transform pos: 28.5,101.5 parent: 2 - - uid: 13369 + - uid: 13311 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-40.5 parent: 2 - - uid: 13370 + - uid: 13312 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-10.5 parent: 2 - - uid: 13371 + - uid: 13313 components: - type: Transform pos: -74.5,-43.5 parent: 2 - - uid: 13372 + - uid: 13314 components: - type: Transform pos: -68.5,66.5 parent: 2 - - uid: 13373 + - uid: 13315 components: - type: Transform pos: -51.5,-76.5 parent: 2 - - uid: 13374 + - uid: 13316 components: - type: Transform pos: -88.5,11.5 parent: 2 - - uid: 13375 + - uid: 13317 components: - type: Transform pos: -59.5,31.5 parent: 2 - - uid: 13376 + - uid: 13318 components: - type: Transform pos: -98.5,-2.5 parent: 2 - - uid: 13377 + - uid: 13319 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,37.5 parent: 2 - - uid: 13378 + - uid: 13320 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-55.5 parent: 2 - - uid: 13379 + - uid: 13321 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-54.5 parent: 2 - - uid: 13380 + - uid: 13322 components: - type: Transform pos: -98.5,-7.5 parent: 2 - - uid: 13381 + - uid: 13323 components: - type: Transform pos: 28.5,96.5 parent: 2 - - uid: 13382 + - uid: 13324 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-30.5 parent: 2 - - uid: 13383 + - uid: 13325 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-12.5 parent: 2 - - uid: 13384 + - uid: 13326 components: - type: Transform pos: -50.5,-66.5 parent: 2 - - uid: 13385 + - uid: 13327 components: - type: Transform pos: -98.5,-12.5 parent: 2 - - uid: 13386 + - uid: 13328 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-13.5 parent: 2 - - uid: 13387 + - uid: 13329 components: - type: Transform pos: 28.5,87.5 parent: 2 - - uid: 13388 + - uid: 13330 components: - type: Transform pos: -87.5,14.5 parent: 2 - - uid: 13389 + - uid: 13331 components: - type: Transform pos: -43.5,-56.5 parent: 2 - - uid: 13390 + - uid: 13332 components: - type: Transform pos: -49.5,-74.5 parent: 2 - - uid: 13391 + - uid: 13333 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-55.5 parent: 2 - - uid: 13392 + - uid: 13334 components: - type: Transform pos: 21.5,87.5 parent: 2 - - uid: 13393 + - uid: 13335 components: - type: Transform pos: -86.5,-13.5 parent: 2 - - uid: 13394 + - uid: 13336 components: - type: Transform pos: -98.5,-13.5 parent: 2 - - uid: 13395 + - uid: 13337 components: - type: Transform pos: -93.5,-3.5 parent: 2 - - uid: 13396 + - uid: 13338 components: - type: Transform pos: -45.5,62.5 parent: 2 - - uid: 13397 + - uid: 13339 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-56.5 parent: 2 - - uid: 13398 + - uid: 13340 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 13399 + - uid: 13341 components: - type: Transform pos: -87.5,-1.5 parent: 2 - - uid: 13400 + - uid: 13342 components: - type: Transform pos: -72.5,73.5 parent: 2 - - uid: 13401 + - uid: 13343 components: - type: Transform pos: -56.5,-89.5 parent: 2 - - uid: 13402 + - uid: 13344 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 13403 + - uid: 13345 components: - type: Transform pos: -73.5,66.5 parent: 2 - - uid: 13404 + - uid: 13346 components: - type: Transform pos: 28.5,102.5 parent: 2 - - uid: 13405 + - uid: 13347 components: - type: Transform pos: -75.5,76.5 parent: 2 - - uid: 13406 + - uid: 13348 components: - type: Transform pos: -43.5,62.5 parent: 2 - - uid: 13407 + - uid: 13349 components: - type: Transform pos: -78.5,77.5 parent: 2 - - uid: 13408 + - uid: 13350 components: - type: Transform pos: -73.5,-43.5 parent: 2 - - uid: 13409 + - uid: 13351 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-23.5 parent: 2 - - uid: 13410 + - uid: 13352 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-46.5 parent: 2 - - uid: 13411 + - uid: 13353 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2 - - uid: 13412 + - uid: 13354 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-10.5 parent: 2 - - uid: 13413 + - uid: 13355 components: - type: Transform pos: -64.5,66.5 parent: 2 - - uid: 13414 + - uid: 13356 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 13415 + - uid: 13357 components: - type: Transform pos: -16.5,-84.5 parent: 2 - - uid: 13416 + - uid: 13358 components: - type: Transform pos: -52.5,-85.5 parent: 2 - - uid: 13417 + - uid: 13359 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,32.5 parent: 2 - - uid: 13418 + - uid: 13360 components: - type: Transform pos: -77.5,77.5 parent: 2 - - uid: 13419 + - uid: 13361 components: - type: Transform pos: -63.5,-50.5 parent: 2 - - uid: 13420 + - uid: 13362 components: - type: Transform pos: -45.5,60.5 parent: 2 - - uid: 13421 + - uid: 13363 components: - type: Transform pos: -51.5,-85.5 parent: 2 - - uid: 13422 + - uid: 13364 components: - type: Transform pos: -75.5,74.5 parent: 2 - - uid: 13423 + - uid: 13365 components: - type: Transform pos: 28.5,92.5 parent: 2 - - uid: 13424 + - uid: 13366 components: - type: Transform pos: -51.5,-74.5 parent: 2 - - uid: 13425 + - uid: 13367 components: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 13426 + - uid: 13368 components: - type: Transform pos: -75.5,67.5 parent: 2 - - uid: 13427 + - uid: 13369 components: - type: Transform pos: -77.5,69.5 parent: 2 - - uid: 13428 + - uid: 13370 components: - type: Transform pos: -46.5,-85.5 parent: 2 - - uid: 13429 + - uid: 13371 components: - type: Transform pos: -79.5,69.5 parent: 2 - - uid: 13430 + - uid: 13372 components: - type: Transform pos: -50.5,-89.5 parent: 2 - - uid: 13431 + - uid: 13373 components: - type: Transform pos: -69.5,73.5 parent: 2 - - uid: 13432 + - uid: 13374 components: - type: Transform pos: -50.5,-85.5 parent: 2 - - uid: 13433 + - uid: 13375 components: - type: Transform pos: -82.5,73.5 parent: 2 - - uid: 13434 + - uid: 13376 components: - type: Transform pos: -79.5,73.5 parent: 2 - - uid: 13435 + - uid: 13377 components: - type: Transform pos: -44.5,59.5 parent: 2 - - uid: 13436 + - uid: 13378 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,37.5 parent: 2 - - uid: 13437 + - uid: 13379 components: - type: Transform pos: -95.5,-13.5 parent: 2 - - uid: 13438 + - uid: 13380 components: - type: Transform pos: -98.5,-3.5 parent: 2 - - uid: 13439 + - uid: 13381 components: - type: Transform pos: -89.5,-8.5 parent: 2 - - uid: 13440 + - uid: 13382 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-72.5 parent: 2 - - uid: 13441 + - uid: 13383 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 - - uid: 13442 + - uid: 13384 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 13443 + - uid: 13385 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,25.5 parent: 2 - - uid: 13444 + - uid: 13386 components: - type: Transform pos: 25.5,71.5 parent: 2 - - uid: 13445 + - uid: 13387 components: - type: Transform pos: -81.5,77.5 parent: 2 - - uid: 13446 + - uid: 13388 components: - type: Transform pos: -71.5,66.5 parent: 2 - - uid: 13447 + - uid: 13389 components: - type: Transform pos: -86.5,-3.5 parent: 2 - - uid: 13448 + - uid: 13390 components: - type: Transform pos: 33.5,62.5 parent: 2 - - uid: 13449 + - uid: 13391 components: - type: Transform pos: -45.5,-56.5 parent: 2 - - uid: 13450 + - uid: 13392 components: - type: Transform pos: -50.5,-81.5 parent: 2 - - uid: 13451 + - uid: 13393 components: - type: Transform pos: -86.5,-12.5 parent: 2 - - uid: 13452 + - uid: 13394 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 13453 + - uid: 13395 components: - type: Transform pos: -97.5,-13.5 parent: 2 - - uid: 13454 + - uid: 13396 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,55.5 parent: 2 - - uid: 13455 + - uid: 13397 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 13456 + - uid: 13398 components: - type: Transform pos: -75.5,77.5 parent: 2 - - uid: 13457 + - uid: 13399 components: - type: Transform pos: 28.5,94.5 parent: 2 - - uid: 13458 + - uid: 13400 components: - type: Transform pos: -52.5,-62.5 parent: 2 - - uid: 13459 + - uid: 13401 components: - type: Transform pos: -51.5,-88.5 parent: 2 - - uid: 13460 + - uid: 13402 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 13461 + - uid: 13403 components: - type: Transform pos: 29.5,95.5 parent: 2 - - uid: 13462 + - uid: 13404 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 13463 + - uid: 13405 components: - type: Transform pos: -77.5,73.5 parent: 2 - - uid: 13464 + - uid: 13406 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-20.5 parent: 2 - - uid: 13465 + - uid: 13407 components: - type: Transform pos: 23.5,60.5 parent: 2 - - uid: 13466 + - uid: 13408 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-11.5 parent: 2 - - uid: 13467 + - uid: 13409 components: - type: Transform pos: 10.5,93.5 parent: 2 - - uid: 13468 + - uid: 13410 components: - type: Transform pos: -74.5,73.5 parent: 2 - - uid: 13469 + - uid: 13411 components: - type: Transform pos: 70.5,-51.5 parent: 2 - - uid: 13470 + - uid: 13412 components: - type: Transform pos: -53.5,-62.5 parent: 2 - - uid: 13471 + - uid: 13413 components: - type: Transform pos: -76.5,73.5 parent: 2 - - uid: 13472 + - uid: 13414 components: - type: Transform pos: -45.5,-54.5 parent: 2 - - uid: 13473 + - uid: 13415 components: - type: Transform pos: -93.5,-11.5 parent: 2 - - uid: 13474 + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 - - uid: 13475 + - uid: 13417 components: - type: Transform pos: -72.5,66.5 parent: 2 - - uid: 13476 + - uid: 13418 components: - type: Transform pos: -49.5,-69.5 parent: 2 - - uid: 13477 + - uid: 13419 components: - type: Transform pos: 33.5,60.5 parent: 2 - - uid: 13478 + - uid: 13420 components: - type: Transform pos: 26.5,95.5 parent: 2 - - uid: 13479 + - uid: 13421 components: - type: Transform pos: -74.5,66.5 parent: 2 - - uid: 13480 + - uid: 13422 components: - type: Transform pos: -69.5,77.5 parent: 2 - - uid: 13481 + - uid: 13423 components: - type: Transform pos: -49.5,-81.5 parent: 2 - - uid: 13482 + - uid: 13424 components: - type: Transform pos: -98.5,-11.5 parent: 2 - - uid: 13483 + - uid: 13425 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 - - uid: 13484 + - uid: 13426 components: - type: Transform pos: -47.5,-85.5 parent: 2 - - uid: 13485 + - uid: 13427 components: - type: Transform pos: -68.5,73.5 parent: 2 - - uid: 13486 + - uid: 13428 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-19.5 parent: 2 - - uid: 13487 + - uid: 13429 components: - type: Transform pos: -87.5,-13.5 parent: 2 - - uid: 13488 + - uid: 13430 components: - type: Transform pos: -96.5,-1.5 parent: 2 - - uid: 13489 + - uid: 13431 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 13490 + - uid: 13432 components: - type: Transform pos: -75.5,68.5 parent: 2 - - uid: 13491 + - uid: 13433 components: - type: Transform pos: 25.5,70.5 parent: 2 - - uid: 13492 + - uid: 13434 components: - type: Transform pos: -51.5,-91.5 parent: 2 - - uid: 13493 + - uid: 13435 components: - type: Transform pos: -71.5,77.5 parent: 2 - - uid: 13494 + - uid: 13436 components: - type: Transform pos: 27.5,99.5 parent: 2 - - uid: 13495 + - uid: 13437 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 13496 + - uid: 13438 components: - type: Transform pos: -44.5,-85.5 parent: 2 - - uid: 13497 + - uid: 13439 components: - type: Transform pos: -88.5,12.5 parent: 2 - - uid: 13498 + - uid: 13440 components: - type: Transform pos: 25.5,87.5 parent: 2 - - uid: 13499 + - uid: 13441 components: - type: Transform pos: 24.5,87.5 parent: 2 - - uid: 13500 + - uid: 13442 components: - type: Transform pos: -94.5,-1.5 parent: 2 - - uid: 13501 + - uid: 13443 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 13502 + - uid: 13444 components: - type: Transform pos: -86.5,-2.5 parent: 2 - - uid: 13503 + - uid: 13445 components: - type: Transform pos: -74.5,77.5 parent: 2 - - uid: 13504 + - uid: 13446 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 - - uid: 13505 + - uid: 13447 components: - type: Transform pos: -88.5,15.5 parent: 2 - - uid: 13506 + - uid: 13448 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 - - uid: 13507 + - uid: 13449 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-10.5 parent: 2 - - uid: 13508 + - uid: 13450 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 2 - - uid: 13509 + - uid: 13451 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-36.5 parent: 2 - - uid: 13510 + - uid: 13452 components: - type: Transform pos: -88.5,14.5 parent: 2 - - uid: 13511 + - uid: 13453 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 13512 + - uid: 13454 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,25.5 parent: 2 - - uid: 13513 + - uid: 13455 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 13514 + - uid: 13456 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,28.5 parent: 2 - - uid: 13515 + - uid: 13457 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-34.5 parent: 2 - - uid: 13516 + - uid: 13458 components: - type: Transform pos: -55.5,-34.5 parent: 2 - - uid: 13517 + - uid: 13459 components: - type: Transform pos: -55.5,-35.5 parent: 2 - - uid: 13518 + - uid: 13460 components: - type: Transform pos: -55.5,-36.5 parent: 2 - - uid: 13519 + - uid: 13461 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 13520 + - uid: 13462 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 13521 + - uid: 13463 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 13522 + - uid: 13464 components: - type: Transform pos: -47.5,-39.5 parent: 2 - - uid: 13523 + - uid: 13465 components: - type: Transform pos: -46.5,-39.5 parent: 2 - - uid: 13524 + - uid: 13466 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 13525 + - uid: 13467 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 13526 + - uid: 13468 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 13527 + - uid: 13469 components: - type: Transform pos: 28.5,91.5 parent: 2 - - uid: 13528 + - uid: 13470 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 13529 + - uid: 13471 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-40.5 parent: 2 - - uid: 13530 + - uid: 13472 components: - type: Transform pos: 10.5,92.5 parent: 2 - - uid: 13531 + - uid: 13473 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 13532 + - uid: 13474 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 13533 + - uid: 13475 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 13534 + - uid: 13476 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 2 - - uid: 13535 + - uid: 13477 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,53.5 parent: 2 - - uid: 13536 + - uid: 13478 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 13537 + - uid: 13479 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 13538 + - uid: 13480 components: - type: Transform pos: -54.5,-85.5 parent: 2 - - uid: 13539 + - uid: 13481 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-54.5 parent: 2 - - uid: 13540 + - uid: 13482 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-20.5 parent: 2 - - uid: 13541 + - uid: 13483 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-21.5 parent: 2 - - uid: 13542 + - uid: 13484 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-19.5 parent: 2 - - uid: 13543 + - uid: 13485 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-54.5 parent: 2 - - uid: 13544 + - uid: 13486 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-53.5 parent: 2 - - uid: 13545 + - uid: 13487 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-46.5 parent: 2 - - uid: 13546 + - uid: 13488 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-52.5 parent: 2 - - uid: 13547 + - uid: 13489 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-46.5 parent: 2 - - uid: 13548 + - uid: 13490 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-46.5 parent: 2 - - uid: 13549 + - uid: 13491 components: - type: Transform pos: -51.5,-89.5 parent: 2 - - uid: 13550 + - uid: 13492 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 - - uid: 13551 + - uid: 13493 components: - type: Transform pos: -47.5,-81.5 parent: 2 - - uid: 13552 + - uid: 13494 components: - type: Transform pos: -70.5,66.5 parent: 2 - - uid: 13553 + - uid: 13495 components: - type: Transform pos: -78.5,69.5 parent: 2 - - uid: 13554 + - uid: 13496 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-10.5 parent: 2 - - uid: 13555 + - uid: 13497 components: - type: Transform pos: -64.5,-50.5 parent: 2 - - uid: 13556 + - uid: 13498 components: - type: Transform pos: 16.5,-60.5 parent: 2 - - uid: 13557 + - uid: 13499 components: - type: Transform pos: 18.5,-58.5 parent: 2 - - uid: 13558 + - uid: 13500 components: - type: Transform pos: 19.5,-58.5 parent: 2 - - uid: 13559 + - uid: 13501 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 13560 + - uid: 13502 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 13561 + - uid: 13503 components: - type: Transform pos: 22.5,-58.5 parent: 2 - - uid: 13562 + - uid: 13504 components: - type: Transform pos: 23.5,-58.5 parent: 2 - - uid: 13563 + - uid: 13505 components: - type: Transform pos: 13.5,-80.5 parent: 2 - - uid: 13564 + - uid: 13506 components: - type: Transform pos: 12.5,-65.5 parent: 2 - - uid: 13565 + - uid: 13507 components: - type: Transform pos: 17.5,78.5 parent: 2 - - uid: 13566 + - uid: 13508 components: - type: Transform pos: 57.5,-40.5 parent: 2 - - uid: 13567 + - uid: 13509 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-40.5 parent: 2 - - uid: 13568 + - uid: 13510 components: - type: Transform pos: -88.5,16.5 parent: 2 - - uid: 13569 + - uid: 13511 components: - type: Transform pos: -89.5,23.5 parent: 2 - - uid: 13570 + - uid: 13512 components: - type: Transform pos: -88.5,17.5 parent: 2 - - uid: 13571 + - uid: 13513 components: - type: Transform pos: -88.5,18.5 parent: 2 - - uid: 13572 + - uid: 13514 components: - type: Transform pos: -88.5,19.5 parent: 2 - - uid: 13573 + - uid: 13515 components: - type: Transform pos: -88.5,20.5 parent: 2 - - uid: 13574 + - uid: 13516 components: - type: Transform pos: -88.5,21.5 parent: 2 - - uid: 13575 + - uid: 13517 components: - type: Transform pos: -88.5,22.5 parent: 2 - - uid: 13576 + - uid: 13518 components: - type: Transform pos: -88.5,23.5 parent: 2 - - uid: 13577 + - uid: 13519 components: - type: Transform pos: -90.5,23.5 parent: 2 - - uid: 13578 + - uid: 13520 components: - type: Transform pos: -91.5,23.5 parent: 2 - - uid: 13579 + - uid: 13521 components: - type: Transform pos: -92.5,23.5 parent: 2 - - uid: 13580 + - uid: 13522 components: - type: Transform pos: -93.5,23.5 parent: 2 - - uid: 13581 + - uid: 13523 components: - type: Transform pos: -94.5,23.5 parent: 2 - - uid: 13582 + - uid: 13524 components: - type: Transform pos: -95.5,23.5 parent: 2 - - uid: 13583 + - uid: 13525 components: - type: Transform pos: -96.5,23.5 parent: 2 - - uid: 13584 + - uid: 13526 components: - type: Transform pos: -97.5,23.5 parent: 2 - - uid: 13585 + - uid: 13527 components: - type: Transform pos: -98.5,23.5 parent: 2 - - uid: 13586 + - uid: 13528 components: - type: Transform pos: -99.5,23.5 parent: 2 - - uid: 13587 + - uid: 13529 components: - type: Transform pos: -100.5,23.5 parent: 2 - - uid: 13588 + - uid: 13530 components: - type: Transform pos: -101.5,23.5 parent: 2 - - uid: 13589 + - uid: 13531 components: - type: Transform pos: -102.5,23.5 parent: 2 - - uid: 13590 + - uid: 13532 components: - type: Transform pos: -103.5,23.5 parent: 2 - - uid: 13591 + - uid: 13533 components: - type: Transform pos: -104.5,23.5 parent: 2 - - uid: 13592 + - uid: 13534 components: - type: Transform pos: -105.5,23.5 parent: 2 - - uid: 13593 + - uid: 13535 components: - type: Transform pos: -106.5,23.5 parent: 2 - - uid: 13594 + - uid: 13536 components: - type: Transform pos: -107.5,23.5 parent: 2 - - uid: 13595 + - uid: 13537 components: - type: Transform pos: -108.5,23.5 parent: 2 - - uid: 13596 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 13597 + - uid: 13539 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 13598 + - uid: 13540 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 - - uid: 13599 + - uid: 13541 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 - - uid: 13600 + - uid: 13542 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-13.5 parent: 2 - - uid: 13601 + - uid: 13543 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-12.5 parent: 2 - - uid: 13602 + - uid: 13544 components: - type: Transform pos: 8.5,-84.5 parent: 2 - - uid: 13603 + - uid: 13545 components: - type: Transform pos: 9.5,-84.5 parent: 2 - - uid: 13604 + - uid: 13546 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 13605 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,57.5 parent: 2 - - uid: 13606 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-40.5 parent: 2 - - uid: 13607 + - uid: 13549 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-71.5 parent: 2 - - uid: 13608 + - uid: 13550 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-40.5 parent: 2 - - uid: 13609 + - uid: 13551 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 13610 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,42.5 parent: 2 - - uid: 13611 + - uid: 13553 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,26.5 parent: 2 - - uid: 13612 + - uid: 13554 components: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 13613 + - uid: 13555 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 13614 + - uid: 13556 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,42.5 parent: 2 - - uid: 13615 + - uid: 13557 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,55.5 parent: 2 - - uid: 13616 + - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,29.5 parent: 2 - - uid: 13617 + - uid: 13559 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 13618 + - uid: 13560 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 13619 + - uid: 13561 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,95.5 parent: 2 - - uid: 13620 + - uid: 13562 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-38.5 parent: 2 - - uid: 13621 + - uid: 13563 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-48.5 parent: 2 - - uid: 13622 + - uid: 13564 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 13623 + - uid: 13565 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 13624 + - uid: 13566 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 13625 + - uid: 13567 components: - type: Transform pos: -27.5,-58.5 parent: 2 - - uid: 13626 + - uid: 13568 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,91.5 parent: 2 - - uid: 13627 + - uid: 13569 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-26.5 parent: 2 - - uid: 13628 + - uid: 13570 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,91.5 parent: 2 - - uid: 13629 + - uid: 13571 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-49.5 parent: 2 - - uid: 13630 + - uid: 13572 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-24.5 parent: 2 - - uid: 13631 + - uid: 13573 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 13632 + - uid: 13574 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,16.5 parent: 2 - - uid: 13633 + - uid: 13575 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 13634 + - uid: 13576 components: - type: Transform pos: -11.5,-61.5 parent: 2 - - uid: 13635 + - uid: 13577 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,42.5 parent: 2 - - uid: 13636 + - uid: 13578 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 - - uid: 13637 + - uid: 13579 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,47.5 parent: 2 - - uid: 13638 + - uid: 13580 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,30.5 parent: 2 - - uid: 13639 + - uid: 13581 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,30.5 parent: 2 - - uid: 13640 + - uid: 13582 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,99.5 parent: 2 - - uid: 13641 + - uid: 13583 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2 - - uid: 13642 + - uid: 13584 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 - - uid: 13643 + - uid: 13585 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,23.5 parent: 2 - - uid: 13644 + - uid: 13586 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 13645 + - uid: 13587 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,95.5 parent: 2 - - uid: 13646 + - uid: 13588 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,95.5 parent: 2 - - uid: 13647 + - uid: 13589 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-23.5 parent: 2 - - uid: 13648 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,26.5 parent: 2 - - uid: 13649 + - uid: 13591 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 13650 + - uid: 13592 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,36.5 parent: 2 - - uid: 13651 + - uid: 13593 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 13652 + - uid: 13594 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,34.5 parent: 2 - - uid: 13653 + - uid: 13595 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,91.5 parent: 2 - - uid: 13654 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,50.5 parent: 2 - - uid: 13655 + - uid: 13597 components: - type: Transform pos: -27.5,-60.5 parent: 2 - - uid: 13656 + - uid: 13598 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,95.5 parent: 2 - - uid: 13657 + - uid: 13599 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 - - uid: 13658 + - uid: 13600 components: - type: Transform pos: -31.5,-18.5 parent: 2 - - uid: 13659 + - uid: 13601 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,91.5 parent: 2 - - uid: 13660 + - uid: 13602 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,99.5 parent: 2 - - uid: 13661 + - uid: 13603 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,91.5 parent: 2 - - uid: 13662 + - uid: 13604 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,38.5 parent: 2 - - uid: 13663 + - uid: 13605 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 13664 + - uid: 13606 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,57.5 parent: 2 - - uid: 13665 + - uid: 13607 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,57.5 parent: 2 - - uid: 13666 + - uid: 13608 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 - - uid: 13667 + - uid: 13609 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-19.5 parent: 2 - - uid: 13668 + - uid: 13610 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,36.5 parent: 2 - - uid: 13669 + - uid: 13611 components: - type: Transform pos: -23.5,-60.5 parent: 2 - - uid: 13670 + - uid: 13612 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 13671 + - uid: 13613 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,57.5 parent: 2 - - uid: 13672 + - uid: 13614 components: - type: Transform pos: -24.5,-60.5 parent: 2 - - uid: 13673 + - uid: 13615 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 13674 + - uid: 13616 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 - - uid: 13675 + - uid: 13617 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 13676 + - uid: 13618 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 13677 + - uid: 13619 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,57.5 parent: 2 - - uid: 13678 + - uid: 13620 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,52.5 parent: 2 - - uid: 13679 + - uid: 13621 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 - - uid: 13680 + - uid: 13622 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 13681 + - uid: 13623 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,61.5 parent: 2 - - uid: 13682 + - uid: 13624 components: - type: Transform pos: -27.5,-66.5 parent: 2 - - uid: 13683 + - uid: 13625 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,55.5 parent: 2 - - uid: 13684 + - uid: 13626 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - uid: 13685 + - uid: 13627 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 13686 + - uid: 13628 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,17.5 parent: 2 - - uid: 13687 + - uid: 13629 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 13688 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,57.5 parent: 2 - - uid: 13689 + - uid: 13631 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,57.5 parent: 2 - - uid: 13690 + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,91.5 parent: 2 - - uid: 13691 + - uid: 13633 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-28.5 parent: 2 - - uid: 13692 + - uid: 13634 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,17.5 parent: 2 - - uid: 13693 + - uid: 13635 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 13694 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 - - uid: 13695 + - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,17.5 parent: 2 - - uid: 13696 + - uid: 13638 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 - - uid: 13697 + - uid: 13639 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,55.5 parent: 2 - - uid: 13698 + - uid: 13640 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 13699 + - uid: 13641 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 13700 + - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,56.5 parent: 2 - - uid: 13701 + - uid: 13643 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 13702 + - uid: 13644 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - uid: 13703 + - uid: 13645 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,27.5 parent: 2 - - uid: 13704 + - uid: 13646 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,51.5 parent: 2 - - uid: 13705 + - uid: 13647 components: - type: Transform pos: -16.5,-61.5 parent: 2 - - uid: 13706 + - uid: 13648 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,95.5 parent: 2 - - uid: 13707 + - uid: 13649 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,35.5 parent: 2 - - uid: 13708 + - uid: 13650 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 - - uid: 13709 + - uid: 13651 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,95.5 parent: 2 - - uid: 13710 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,95.5 parent: 2 - - uid: 13711 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,95.5 parent: 2 - - uid: 13712 + - uid: 13654 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-22.5 parent: 2 - - uid: 13713 + - uid: 13655 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-27.5 parent: 2 - - uid: 13714 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,29.5 parent: 2 - - uid: 13715 + - uid: 13657 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,43.5 parent: 2 - - uid: 13716 + - uid: 13658 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-28.5 parent: 2 - - uid: 13717 + - uid: 13659 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 13718 + - uid: 13660 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 - - uid: 13719 + - uid: 13661 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,42.5 parent: 2 - - uid: 13720 + - uid: 13662 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 13721 + - uid: 13663 components: - type: Transform pos: -33.5,-18.5 parent: 2 - - uid: 13722 + - uid: 13664 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-19.5 parent: 2 - - uid: 13723 + - uid: 13665 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,29.5 parent: 2 - - uid: 13724 + - uid: 13666 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,17.5 parent: 2 - - uid: 13725 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,37.5 parent: 2 - - uid: 13726 + - uid: 13668 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 13727 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,57.5 parent: 2 - - uid: 13728 + - uid: 13670 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,99.5 parent: 2 - - uid: 13729 + - uid: 13671 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-48.5 parent: 2 - - uid: 13730 + - uid: 13672 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-48.5 parent: 2 - - uid: 13731 + - uid: 13673 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-48.5 parent: 2 - - uid: 13732 + - uid: 13674 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-45.5 parent: 2 - - uid: 13733 + - uid: 13675 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-48.5 parent: 2 - - uid: 13734 + - uid: 13676 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-48.5 parent: 2 - - uid: 13735 + - uid: 13677 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 - - uid: 13736 + - uid: 13678 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 - - uid: 13737 + - uid: 13679 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 13738 + - uid: 13680 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-48.5 parent: 2 - - uid: 13739 + - uid: 13681 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,57.5 parent: 2 - - uid: 13740 + - uid: 13682 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 13741 + - uid: 13683 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,57.5 parent: 2 - - uid: 13742 + - uid: 13684 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,28.5 parent: 2 - - uid: 13743 + - uid: 13685 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,95.5 parent: 2 - - uid: 13744 + - uid: 13686 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-28.5 parent: 2 - - uid: 13745 + - uid: 13687 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,30.5 parent: 2 - - uid: 13746 + - uid: 13688 components: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 13747 + - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,29.5 parent: 2 - - uid: 13748 + - uid: 13690 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-21.5 parent: 2 - - uid: 13749 + - uid: 13691 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-19.5 parent: 2 - - uid: 13750 + - uid: 13692 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-25.5 parent: 2 - - uid: 13751 + - uid: 13693 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,99.5 parent: 2 - - uid: 13752 + - uid: 13694 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,48.5 parent: 2 - - uid: 13753 + - uid: 13695 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-28.5 parent: 2 - - uid: 13754 + - uid: 13696 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,99.5 parent: 2 - - uid: 13755 + - uid: 13697 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,30.5 parent: 2 - - uid: 13756 + - uid: 13698 components: - type: Transform pos: -12.5,-61.5 parent: 2 - - uid: 13757 + - uid: 13699 components: - type: Transform pos: -32.5,-18.5 parent: 2 - - uid: 13758 + - uid: 13700 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,91.5 parent: 2 - - uid: 13759 + - uid: 13701 components: - type: Transform pos: -25.5,-60.5 parent: 2 - - uid: 13760 + - uid: 13702 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,54.5 parent: 2 - - uid: 13761 + - uid: 13703 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 13762 + - uid: 13704 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 13763 + - uid: 13705 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-19.5 parent: 2 - - uid: 13764 + - uid: 13706 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,91.5 parent: 2 - - uid: 13765 + - uid: 13707 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 - - uid: 13766 + - uid: 13708 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 13767 + - uid: 13709 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,42.5 parent: 2 - - uid: 13768 + - uid: 13710 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 13769 + - uid: 13711 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 13770 + - uid: 13712 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - - uid: 13771 + - uid: 13713 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-35.5 parent: 2 - - uid: 13772 + - uid: 13714 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-34.5 parent: 2 - - uid: 13773 + - uid: 13715 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-40.5 parent: 2 - - uid: 13774 + - uid: 13716 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-37.5 parent: 2 - - uid: 13775 + - uid: 13717 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-39.5 parent: 2 - - uid: 13776 + - uid: 13718 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-33.5 parent: 2 - - uid: 13777 + - uid: 13719 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-36.5 parent: 2 - - uid: 13778 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,56.5 parent: 2 - - uid: 13779 + - uid: 13721 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,56.5 parent: 2 - - uid: 13780 + - uid: 13722 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,31.5 parent: 2 - - uid: 13781 + - uid: 13723 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 13782 + - uid: 13724 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-70.5 parent: 2 - - uid: 13783 + - uid: 13725 components: - type: Transform pos: -47.5,-33.5 parent: 2 - - uid: 13784 + - uid: 13726 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 13785 + - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-70.5 parent: 2 - - uid: 13786 + - uid: 13728 components: - type: Transform pos: -33.5,-69.5 parent: 2 - - uid: 13787 + - uid: 13729 components: - type: Transform pos: -68.5,23.5 parent: 2 - - uid: 13788 + - uid: 13730 components: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 13789 + - uid: 13731 components: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 13790 + - uid: 13732 components: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 13791 + - uid: 13733 components: - type: Transform pos: -68.5,24.5 parent: 2 - - uid: 13792 + - uid: 13734 components: - type: Transform pos: -68.5,25.5 parent: 2 - - uid: 13793 + - uid: 13735 components: - type: Transform pos: -69.5,25.5 parent: 2 - - uid: 13794 + - uid: 13736 components: - type: Transform pos: -70.5,25.5 parent: 2 - - uid: 13795 + - uid: 13737 components: - type: Transform pos: -71.5,25.5 parent: 2 - - uid: 13796 + - uid: 13738 components: - type: Transform pos: -71.5,24.5 parent: 2 - - uid: 13797 + - uid: 13739 components: - type: Transform pos: -71.5,23.5 parent: 2 - - uid: 13798 + - uid: 13740 components: - type: Transform pos: -71.5,22.5 parent: 2 - - uid: 13799 + - uid: 13741 components: - type: Transform pos: -74.5,26.5 parent: 2 - - uid: 13800 + - uid: 13742 components: - type: Transform pos: -74.5,27.5 parent: 2 - - uid: 13801 + - uid: 13743 components: - type: Transform pos: -68.5,21.5 parent: 2 - - uid: 13802 + - uid: 13744 components: - type: Transform pos: -74.5,28.5 parent: 2 - - uid: 13803 + - uid: 13745 components: - type: Transform pos: -74.5,29.5 parent: 2 - - uid: 13804 + - uid: 13746 components: - type: Transform pos: -68.5,26.5 parent: 2 - - uid: 13805 + - uid: 13747 components: - type: Transform pos: -68.5,27.5 parent: 2 - - uid: 13806 + - uid: 13748 components: - type: Transform pos: -68.5,28.5 parent: 2 - - uid: 13807 + - uid: 13749 components: - type: Transform pos: -68.5,29.5 parent: 2 - - uid: 13808 + - uid: 13750 components: - type: Transform pos: -68.5,30.5 parent: 2 - - uid: 13809 + - uid: 13751 components: - type: Transform pos: -68.5,31.5 parent: 2 - - uid: 13810 + - uid: 13752 components: - type: Transform pos: -74.5,30.5 parent: 2 - - uid: 13811 + - uid: 13753 components: - type: Transform pos: -74.5,31.5 parent: 2 - - uid: 13812 + - uid: 13754 components: - type: Transform pos: -74.5,32.5 parent: 2 - - uid: 13813 + - uid: 13755 components: - type: Transform pos: -74.5,34.5 parent: 2 - - uid: 13814 + - uid: 13756 components: - type: Transform pos: -74.5,35.5 parent: 2 - - uid: 13815 + - uid: 13757 components: - type: Transform pos: -74.5,33.5 parent: 2 - - uid: 13816 + - uid: 13758 components: - type: Transform pos: -68.5,32.5 parent: 2 - - uid: 13817 + - uid: 13759 components: - type: Transform pos: -68.5,33.5 parent: 2 - - uid: 13818 + - uid: 13760 components: - type: Transform pos: -68.5,35.5 parent: 2 - - uid: 13819 + - uid: 13761 components: - type: Transform pos: -68.5,34.5 parent: 2 - - uid: 13820 + - uid: 13762 components: - type: Transform pos: -68.5,36.5 parent: 2 - - uid: 13821 + - uid: 13763 components: - type: Transform pos: -68.5,37.5 parent: 2 - - uid: 13822 + - uid: 13764 components: - type: Transform pos: -68.5,38.5 parent: 2 - - uid: 13823 + - uid: 13765 components: - type: Transform pos: -68.5,39.5 parent: 2 - - uid: 13824 + - uid: 13766 components: - type: Transform pos: -74.5,36.5 parent: 2 - - uid: 13825 + - uid: 13767 components: - type: Transform pos: -74.5,37.5 parent: 2 - - uid: 13826 + - uid: 13768 components: - type: Transform pos: -74.5,38.5 parent: 2 - - uid: 13827 + - uid: 13769 components: - type: Transform pos: -74.5,39.5 parent: 2 - - uid: 13828 + - uid: 13770 components: - type: Transform pos: -68.5,40.5 parent: 2 - - uid: 13829 + - uid: 13771 components: - type: Transform pos: -68.5,41.5 parent: 2 - - uid: 13830 + - uid: 13772 components: - type: Transform pos: -68.5,42.5 parent: 2 - - uid: 13831 + - uid: 13773 components: - type: Transform pos: -68.5,43.5 parent: 2 - - uid: 13832 + - uid: 13774 components: - type: Transform pos: -74.5,40.5 parent: 2 - - uid: 13833 + - uid: 13775 components: - type: Transform pos: -74.5,41.5 parent: 2 - - uid: 13834 + - uid: 13776 components: - type: Transform pos: -74.5,42.5 parent: 2 - - uid: 13835 + - uid: 13777 components: - type: Transform pos: -74.5,43.5 parent: 2 - - uid: 13836 + - uid: 13778 components: - type: Transform pos: -74.5,44.5 parent: 2 - - uid: 13837 + - uid: 13779 components: - type: Transform pos: -68.5,44.5 parent: 2 - - uid: 13838 + - uid: 13780 components: - type: Transform pos: -68.5,45.5 parent: 2 - - uid: 13839 + - uid: 13781 components: - type: Transform pos: -74.5,45.5 parent: 2 - - uid: 13840 + - uid: 13782 components: - type: Transform pos: -74.5,46.5 parent: 2 - - uid: 13841 + - uid: 13783 components: - type: Transform pos: -74.5,47.5 parent: 2 - - uid: 13842 + - uid: 13784 components: - type: Transform pos: -74.5,48.5 parent: 2 - - uid: 13843 + - uid: 13785 components: - type: Transform pos: -68.5,46.5 parent: 2 - - uid: 13844 + - uid: 13786 components: - type: Transform pos: -68.5,47.5 parent: 2 - - uid: 13845 + - uid: 13787 components: - type: Transform pos: -68.5,48.5 parent: 2 - - uid: 13846 + - uid: 13788 components: - type: Transform pos: -68.5,49.5 parent: 2 - - uid: 13847 + - uid: 13789 components: - type: Transform pos: -68.5,50.5 parent: 2 - - uid: 13848 + - uid: 13790 components: - type: Transform pos: -68.5,51.5 parent: 2 - - uid: 13849 + - uid: 13791 components: - type: Transform pos: -74.5,49.5 parent: 2 - - uid: 13850 + - uid: 13792 components: - type: Transform pos: -74.5,50.5 parent: 2 - - uid: 13851 + - uid: 13793 components: - type: Transform pos: -74.5,51.5 parent: 2 - - uid: 13852 + - uid: 13794 components: - type: Transform pos: -74.5,52.5 parent: 2 - - uid: 13853 + - uid: 13795 components: - type: Transform pos: -73.5,52.5 parent: 2 - - uid: 13854 + - uid: 13796 components: - type: Transform pos: -68.5,52.5 parent: 2 - - uid: 13855 + - uid: 13797 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 13856 + - uid: 13798 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 13857 + - uid: 13799 components: - type: Transform pos: 0.49999997,32.5 parent: 2 - - uid: 13858 + - uid: 13800 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 13859 + - uid: 13801 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 2 - - uid: 13860 + - uid: 13802 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-0.5 parent: 2 - - uid: 13861 + - uid: 13803 components: - type: Transform pos: -23.5,17.5 parent: 2 - - uid: 13862 + - uid: 13804 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 13863 + - uid: 13805 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 13864 + - uid: 13806 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 13865 + - uid: 13807 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 - - uid: 13866 + - uid: 13808 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-3.5 parent: 2 - - uid: 13867 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-3.5 parent: 2 - - uid: 13868 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-2.5 parent: 2 - - uid: 13869 + - uid: 13811 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-2.5 parent: 2 - - uid: 13870 + - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-3.5 parent: 2 - - uid: 13871 + - uid: 13813 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-1.5 parent: 2 - - uid: 13872 + - uid: 13814 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-1.5 parent: 2 - - uid: 13873 + - uid: 13815 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 13874 + - uid: 13816 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 13875 + - uid: 13817 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 13876 + - uid: 13818 components: - type: Transform pos: 28.5,24.5 parent: 2 - - uid: 13877 + - uid: 13819 components: - type: Transform pos: 27.5,24.5 parent: 2 - - uid: 13878 + - uid: 13820 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-8.5 parent: 2 - - uid: 13879 + - uid: 13821 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 - - uid: 13880 + - uid: 13822 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-35.5 parent: 2 - - uid: 13881 + - uid: 13823 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-7.5 parent: 2 - - uid: 13882 + - uid: 13824 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-10.5 parent: 2 - - uid: 13883 + - uid: 13825 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-34.5 parent: 2 - - uid: 13884 + - uid: 13826 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-9.5 parent: 2 - - uid: 13885 + - uid: 13827 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-7.5 parent: 2 - - uid: 13886 + - uid: 13828 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-6.5 parent: 2 - - uid: 13887 + - uid: 13829 components: - type: Transform pos: -54.5,-51.5 parent: 2 - - uid: 13888 + - uid: 13830 components: - type: Transform pos: -55.5,-52.5 parent: 2 - - uid: 13889 + - uid: 13831 components: - type: Transform pos: -57.5,-52.5 parent: 2 - - uid: 13890 + - uid: 13832 components: - type: Transform pos: -56.5,-52.5 parent: 2 - - uid: 13891 + - uid: 13833 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 13892 + - uid: 13834 components: - type: Transform pos: -59.5,-52.5 parent: 2 - - uid: 13893 + - uid: 13835 components: - type: Transform pos: -60.5,-52.5 parent: 2 - - uid: 13894 + - uid: 13836 components: - type: Transform pos: -61.5,-52.5 parent: 2 - - uid: 13895 + - uid: 13837 components: - type: Transform pos: -61.5,-51.5 parent: 2 - - uid: 13896 + - uid: 13838 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-55.5 parent: 2 - - uid: 13897 + - uid: 13839 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 2 - - uid: 13898 + - uid: 13840 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-55.5 parent: 2 - - uid: 13899 + - uid: 13841 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 - - uid: 13900 + - uid: 13842 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 - - uid: 13901 + - uid: 13843 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-39.5 parent: 2 - - uid: 13902 + - uid: 13844 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,43.5 parent: 2 - - uid: 13903 + - uid: 13845 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 13904 + - uid: 13846 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 13905 + - uid: 13847 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 25024 + - uid: 13848 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-24.5 parent: 2 - - uid: 31896 + - uid: 13849 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 - - uid: 34520 + - uid: 13850 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-29.5 parent: 2 - - uid: 34831 + - uid: 13851 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-27.5 parent: 2 - - uid: 39054 + - uid: 38881 components: - type: Transform pos: -4.5,27.5 - parent: 38584 - - uid: 39055 + parent: 38411 + - uid: 38882 components: - type: Transform pos: -6.5,26.5 - parent: 38584 - - uid: 39056 + parent: 38411 + - uid: 38883 components: - type: Transform pos: -6.5,28.5 - parent: 38584 - - uid: 39057 + parent: 38411 + - uid: 38884 components: - type: Transform pos: -5.5,28.5 - parent: 38584 - - uid: 39058 + parent: 38411 + - uid: 38885 components: - type: Transform pos: -4.5,30.5 - parent: 38584 - - uid: 39059 + parent: 38411 + - uid: 38886 components: - type: Transform pos: -6.5,29.5 - parent: 38584 - - uid: 39060 + parent: 38411 + - uid: 38887 components: - type: Transform pos: -5.5,27.5 - parent: 38584 - - uid: 39061 + parent: 38411 + - uid: 38888 components: - type: Transform pos: -2.5,22.5 - parent: 38584 - - uid: 39062 + parent: 38411 + - uid: 38889 components: - type: Transform pos: -1.5,22.5 - parent: 38584 - - uid: 39063 + parent: 38411 + - uid: 38890 components: - type: Transform pos: 0.5,17.5 - parent: 38584 - - uid: 39064 + parent: 38411 + - uid: 38891 components: - type: Transform pos: -6.5,25.5 - parent: 38584 - - uid: 39065 + parent: 38411 + - uid: 38892 components: - type: Transform pos: -22.5,25.5 - parent: 38584 - - uid: 39066 + parent: 38411 + - uid: 38893 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 39067 + parent: 38411 + - uid: 38894 components: - type: Transform pos: -8.5,15.5 - parent: 38584 - - uid: 39068 + parent: 38411 + - uid: 38895 components: - type: Transform pos: 0.5,16.5 - parent: 38584 - - uid: 39069 + parent: 38411 + - uid: 38896 components: - type: Transform pos: -8.5,14.5 - parent: 38584 - - uid: 39070 + parent: 38411 + - uid: 38897 components: - type: Transform pos: -5.5,26.5 - parent: 38584 - - uid: 39071 + parent: 38411 + - uid: 38898 components: - type: Transform pos: -5.5,34.5 - parent: 38584 - - uid: 39072 + parent: 38411 + - uid: 38899 components: - type: Transform pos: -10.5,34.5 - parent: 38584 - - uid: 39073 + parent: 38411 + - uid: 38900 components: - type: Transform pos: -8.5,34.5 - parent: 38584 - - uid: 39074 + parent: 38411 + - uid: 38901 components: - type: Transform pos: -8.5,30.5 - parent: 38584 - - uid: 39075 + parent: 38411 + - uid: 38902 components: - type: Transform pos: -6.5,34.5 - parent: 38584 - - uid: 39076 + parent: 38411 + - uid: 38903 components: - type: Transform pos: 8.5,7.5 - parent: 38584 - - uid: 39077 + parent: 38411 + - uid: 38904 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 39078 + parent: 38411 + - uid: 38905 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 39079 + parent: 38411 + - uid: 38906 components: - type: Transform pos: 8.5,6.5 - parent: 38584 - - uid: 39080 + parent: 38411 + - uid: 38907 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 39081 + parent: 38411 + - uid: 38908 components: - type: Transform pos: 10.5,6.5 - parent: 38584 - - uid: 39082 + parent: 38411 + - uid: 38909 components: - type: Transform pos: 11.5,7.5 - parent: 38584 - - uid: 39083 + parent: 38411 + - uid: 38910 components: - type: Transform pos: -6.5,35.5 - parent: 38584 + parent: 38411 - proto: Chair entities: - - uid: 13906 + - uid: 13852 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,31.5 parent: 2 - - uid: 13907 + - uid: 13853 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,32.5 parent: 2 - - uid: 13908 + - uid: 13854 components: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 13909 + - uid: 13855 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-25.5 parent: 2 - - uid: 13910 + - uid: 13856 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 13911 + - uid: 13857 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,22.5 parent: 2 - - uid: 13912 + - uid: 13858 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,23.5 parent: 2 - - uid: 13913 + - uid: 13859 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,89.5 parent: 2 - - uid: 13914 + - uid: 13860 components: - type: Transform pos: -31.5,69.5 parent: 2 - - uid: 13915 + - uid: 13861 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,66.5 parent: 2 - - uid: 13916 + - uid: 13862 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,81.5 parent: 2 - - uid: 13917 + - uid: 13863 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,81.5 parent: 2 - - uid: 13918 + - uid: 13864 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,91.5 parent: 2 - - uid: 13919 + - uid: 13865 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,80.5 parent: 2 - - uid: 13920 + - uid: 13866 components: - type: Transform pos: 58.5,-14.5 parent: 2 - - uid: 13921 + - uid: 13867 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 13922 + - uid: 13868 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 13923 + - uid: 13869 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-27.5 parent: 2 - - uid: 13924 + - uid: 13870 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-28.5 parent: 2 - - uid: 13925 + - uid: 13871 components: - type: Transform pos: -48.5,33.5 parent: 2 - - uid: 13926 + - uid: 13872 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,28.5 parent: 2 - - uid: 13927 + - uid: 13873 components: - type: Transform pos: 58.5,-14.5 parent: 2 - - uid: 13928 + - uid: 13874 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,29.5 parent: 2 - - uid: 13929 + - uid: 13875 components: - type: Transform pos: -47.5,33.5 parent: 2 - - uid: 13930 + - uid: 13876 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 - - uid: 13931 + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-73.5 parent: 2 - - uid: 13932 + - uid: 13878 components: - type: Transform pos: -4.5,-67.5 parent: 2 - - uid: 13933 + - uid: 13879 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 2 - - uid: 13934 + - uid: 13880 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-27.5 parent: 2 - - uid: 13935 + - uid: 13881 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,80.5 parent: 2 - - uid: 13936 + - uid: 13882 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,80.5 parent: 2 - - uid: 13937 + - uid: 13883 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 - - uid: 13938 + - uid: 13884 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,81.5 parent: 2 - - uid: 13939 + - uid: 13885 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-28.5 parent: 2 - - uid: 13940 + - uid: 13886 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-67.5 parent: 2 - - uid: 13942 + - uid: 13887 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,81.5 parent: 2 - - uid: 13943 + - uid: 13888 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 2 - - uid: 13944 + - uid: 13889 components: - type: Transform pos: -22.5,-38.5 parent: 2 - - uid: 13945 + - uid: 13890 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,19.5 parent: 2 - - uid: 13946 + - uid: 13891 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,89.5 parent: 2 - - uid: 13947 + - uid: 13892 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,17.5 parent: 2 - - uid: 13948 + - uid: 13893 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,24.5 parent: 2 - - uid: 13949 + - uid: 13894 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,22.5 parent: 2 - - uid: 13950 + - uid: 13895 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,24.5 parent: 2 - - uid: 13951 + - uid: 13896 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,24.5 parent: 2 - - uid: 13952 + - uid: 13897 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 13953 + - uid: 13898 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 - - uid: 13954 + - uid: 13899 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,80.5 parent: 2 - - uid: 13955 + - uid: 13900 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 - - uid: 13956 + - uid: 13901 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-71.5 parent: 2 - - uid: 13957 + - uid: 13902 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,47.5 parent: 2 - - uid: 13958 + - uid: 13903 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 13959 + - uid: 13904 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 - - uid: 13960 + - uid: 13905 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-4.5 parent: 2 - - uid: 13961 + - uid: 13906 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-68.5 parent: 2 - - uid: 13962 + - uid: 13907 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-7.5 parent: 2 - - uid: 13963 + - uid: 13908 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,4.5 parent: 2 - - uid: 13964 + - uid: 13909 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 - - uid: 13965 + - uid: 13910 components: - type: Transform pos: -56.5,13.5 parent: 2 - - uid: 13966 + - uid: 13911 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-6.5 parent: 2 - - uid: 13967 + - uid: 13912 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-65.5 parent: 2 - - uid: 13968 + - uid: 13913 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,79.5 parent: 2 - - uid: 13969 + - uid: 13914 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-13.5 parent: 2 - - uid: 13970 + - uid: 13915 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,89.5 parent: 2 - - uid: 13971 + - uid: 13916 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,88.5 parent: 2 - - uid: 13972 + - uid: 13917 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-66.5 parent: 2 - - uid: 13974 + - uid: 13918 components: - type: Transform pos: -55.5,13.5 parent: 2 - - uid: 13975 + - uid: 13919 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,11.5 parent: 2 - - uid: 13976 + - uid: 13920 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,11.5 parent: 2 - - uid: 13977 + - uid: 13921 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,11.5 parent: 2 - - uid: 13978 + - uid: 13922 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-40.5 parent: 2 - - uid: 13979 + - uid: 13923 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,22.5 parent: 2 - - uid: 13980 + - uid: 13924 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,22.5 parent: 2 - - uid: 13981 + - uid: 13925 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,11.5 parent: 2 - - uid: 13983 + - uid: 13926 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-24.5 parent: 2 - - uid: 13984 + - uid: 13927 components: - type: Transform pos: 34.5,-43.5 parent: 2 - - uid: 13985 + - uid: 13928 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-2.5 parent: 2 - - uid: 13986 + - uid: 13929 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,1.5 parent: 2 - - uid: 13987 + - uid: 13930 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-71.5 parent: 2 - - uid: 13988 + - uid: 13931 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 - - uid: 13989 + - uid: 13932 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,64.5 parent: 2 - - uid: 13990 + - uid: 13933 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-72.5 parent: 2 - - uid: 13991 + - uid: 13934 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 13992 + - uid: 13935 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 13993 + - uid: 13936 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 13994 + - uid: 13937 components: - type: Transform pos: -11.5,-22.5 parent: 2 - - uid: 13995 + - uid: 13938 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 - - uid: 13996 + - uid: 13939 components: - type: Transform pos: -51.5,13.5 parent: 2 - - uid: 13997 + - uid: 13940 components: - type: Transform pos: -14.5,-22.5 parent: 2 - - uid: 13998 + - uid: 13941 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 2 - - uid: 13999 + - uid: 13942 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-72.5 parent: 2 - - uid: 14000 + - uid: 13943 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-79.5 parent: 2 - - uid: 14001 + - uid: 13944 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,87.5 parent: 2 - - uid: 14002 + - uid: 13945 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,91.5 parent: 2 - - uid: 14003 + - uid: 13946 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,89.5 parent: 2 - - uid: 14004 + - uid: 13947 components: - type: Transform pos: 75.5,28.5 parent: 2 - - uid: 14005 + - uid: 13948 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 - - uid: 14006 + - uid: 13949 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 - - uid: 14007 + - uid: 13950 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-70.5 parent: 2 - - uid: 14008 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,11.5 parent: 2 - - uid: 14009 + - uid: 13952 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-80.5 parent: 2 - - uid: 14010 + - uid: 13953 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,11.5 parent: 2 - - uid: 14011 + - uid: 13954 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 parent: 2 - - uid: 14012 + - uid: 13955 components: - type: Transform pos: 13.5,-22.5 parent: 2 - - uid: 14013 + - uid: 13956 components: - type: Transform pos: 25.5,1.5 parent: 2 - - uid: 14014 + - uid: 13957 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-48.5 parent: 2 - - uid: 14015 + - uid: 13958 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 - - uid: 14016 + - uid: 13959 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,0.5 parent: 2 - - uid: 14017 + - uid: 13960 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-66.5 parent: 2 - - uid: 14018 + - uid: 13961 components: - type: Transform pos: 74.5,-38.5 parent: 2 - - uid: 14019 + - uid: 13962 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 14020 + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 - - uid: 14021 + - uid: 13964 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,2.5 parent: 2 - - uid: 14022 + - uid: 13965 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 - - uid: 14023 + - uid: 13966 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-5.5 parent: 2 - - uid: 14024 + - uid: 13967 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 - - uid: 14025 + - uid: 13968 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-0.5 parent: 2 - - uid: 14026 + - uid: 13969 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-44.5 parent: 2 - - uid: 14027 + - uid: 13970 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 - - uid: 14028 + - uid: 13971 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 2 - - uid: 14029 + - uid: 13972 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 - - uid: 14030 + - uid: 13973 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-0.5 parent: 2 - - uid: 14031 + - uid: 13974 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,46.5 parent: 2 - - uid: 14032 + - uid: 13975 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,46.5 parent: 2 - - uid: 14033 + - uid: 13976 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-6.5 parent: 2 - - uid: 14034 + - uid: 13977 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 - - uid: 14035 + - uid: 13978 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,46.5 parent: 2 - - uid: 14036 + - uid: 13979 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 14037 + - uid: 13980 components: - type: Transform pos: 7.5,49.5 parent: 2 - - uid: 14038 + - uid: 13981 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-7.5 parent: 2 - - uid: 14039 + - uid: 13982 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-65.5 parent: 2 - - uid: 14040 + - uid: 13983 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,12.5 parent: 2 - - uid: 14041 + - uid: 13984 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-15.5 parent: 2 - - uid: 14042 + - uid: 13985 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 2 - - uid: 14043 + - uid: 13986 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - - uid: 14044 + - uid: 13987 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-65.5 parent: 2 - - uid: 14045 + - uid: 13988 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-73.5 parent: 2 - - uid: 14046 + - uid: 13989 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-69.5 parent: 2 - - uid: 14047 + - uid: 13990 components: - type: Transform pos: 29.5,2.5 parent: 2 - - uid: 14048 + - uid: 13991 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,91.5 parent: 2 - - uid: 14049 + - uid: 13992 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,63.5 parent: 2 - - uid: 14050 + - uid: 13993 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-65.5 parent: 2 - - uid: 14051 + - uid: 13994 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-4.5 parent: 2 - - uid: 14052 + - uid: 13995 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,63.5 parent: 2 - - uid: 14053 + - uid: 13996 components: - type: Transform pos: -5.5,-67.5 parent: 2 - - uid: 14054 + - uid: 13997 components: - type: Transform pos: -54.5,13.5 parent: 2 - - uid: 14055 + - uid: 13998 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 14056 + - uid: 13999 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 14057 + - uid: 14000 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,77.5 parent: 2 - - uid: 14058 + - uid: 14001 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-49.5 parent: 2 - - uid: 14059 + - uid: 14002 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,9.5 parent: 2 - - uid: 14060 + - uid: 14003 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 - - uid: 14061 + - uid: 14004 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-26.5 parent: 2 - - uid: 14062 + - uid: 14005 components: - type: Transform pos: -39.5,-8.5 parent: 2 - - uid: 14063 + - uid: 14006 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 - - uid: 14064 + - uid: 14007 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 14065 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,78.5 parent: 2 - - uid: 14066 + - uid: 14009 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,1.5 parent: 2 - - uid: 14067 + - uid: 14010 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,22.5 parent: 2 - - uid: 14068 + - uid: 14011 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 - - uid: 14069 + - uid: 14012 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,8.5 parent: 2 - - uid: 14070 + - uid: 14013 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-44.5 parent: 2 - - uid: 14071 + - uid: 14014 components: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 14072 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-74.5 parent: 2 - - uid: 14073 + - uid: 14016 components: - type: Transform pos: 10.5,-76.5 parent: 2 - - uid: 14074 + - uid: 14017 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-71.5 parent: 2 - - uid: 14075 + - uid: 14018 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-71.5 parent: 2 - - uid: 14076 + - uid: 14019 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 14077 + - uid: 14020 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 14078 + - uid: 14021 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 - - uid: 14079 + - uid: 14022 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 - - uid: 14080 + - uid: 14023 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 - - uid: 14081 + - uid: 14024 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 - - uid: 14082 + - uid: 14025 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-71.5 parent: 2 - - uid: 14083 + - uid: 14026 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-70.5 parent: 2 - - uid: 14084 + - uid: 14027 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 14085 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-81.5 parent: 2 - - uid: 14086 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-81.5 parent: 2 - - uid: 14087 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-81.5 parent: 2 - - uid: 14088 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-26.5 parent: 2 - - uid: 14089 + - uid: 14032 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-77.5 parent: 2 - - uid: 14090 + - uid: 14033 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 14091 + - uid: 14034 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-77.5 parent: 2 - - uid: 14092 + - uid: 14035 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 - - uid: 14093 + - uid: 14036 components: - type: Transform pos: 30.5,-44.5 parent: 2 - - uid: 14094 + - uid: 14037 components: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 14095 + - uid: 14038 components: - type: Transform pos: 33.5,-44.5 parent: 2 - - uid: 14096 + - uid: 14039 components: - type: Transform pos: 31.5,-44.5 parent: 2 - - uid: 14097 + - uid: 14040 components: - type: Transform pos: 34.5,-44.5 parent: 2 - - uid: 14098 + - uid: 14041 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,18.5 parent: 2 - - uid: 14099 + - uid: 14042 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,19.5 parent: 2 - - uid: 14100 + - uid: 14043 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,18.5 parent: 2 - - uid: 14101 + - uid: 14044 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,20.5 parent: 2 - - uid: 14102 + - uid: 14045 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,20.5 parent: 2 - - uid: 14103 + - uid: 14046 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,19.5 parent: 2 - - uid: 14104 + - uid: 14047 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,18.5 parent: 2 - - uid: 14105 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,12.5 parent: 2 - - uid: 14106 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,12.5 parent: 2 - - uid: 14107 + - uid: 14050 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,12.5 parent: 2 - - uid: 14108 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,12.5 parent: 2 - - uid: 14109 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,12.5 parent: 2 - - uid: 14110 + - uid: 14053 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,19.5 parent: 2 - - uid: 14111 + - uid: 14054 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,18.5 parent: 2 - - uid: 14112 + - uid: 14055 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,17.5 parent: 2 - - uid: 14113 + - uid: 14056 components: - type: Transform pos: 58.5,-11.5 parent: 2 - - uid: 14114 + - uid: 14057 components: - type: Transform pos: 60.5,-11.5 parent: 2 - - uid: 14115 + - uid: 14058 components: - type: Transform pos: -12.5,59.5 parent: 2 - - uid: 14116 + - uid: 14059 components: - type: Transform pos: -10.5,59.5 parent: 2 - - uid: 14117 + - uid: 14060 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,66.5 parent: 2 - - uid: 14118 + - uid: 14061 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,66.5 parent: 2 - - uid: 14119 + - uid: 14062 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,89.5 parent: 2 - - uid: 14120 + - uid: 14063 components: - type: Transform pos: 7.5,85.5 parent: 2 - - uid: 14121 + - uid: 14064 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,83.5 parent: 2 - - uid: 14122 + - uid: 14065 components: - type: Transform pos: -11.5,59.5 parent: 2 - - uid: 14123 + - uid: 14066 components: - type: Transform pos: -10.5,59.5 parent: 2 - - uid: 14124 + - uid: 14067 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,66.5 parent: 2 - - uid: 14125 + - uid: 14068 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,91.5 parent: 2 - - uid: 14126 + - uid: 14069 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,67.5 parent: 2 - - uid: 14127 + - uid: 14070 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-24.5 parent: 2 - - uid: 14128 + - uid: 14071 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-24.5 parent: 2 - - uid: 14129 + - uid: 14072 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-24.5 parent: 2 - - uid: 14130 + - uid: 14073 components: - type: Transform pos: 57.5,-12.5 parent: 2 - - uid: 14131 + - uid: 14074 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-28.5 parent: 2 - - uid: 14132 + - uid: 14075 components: - type: Transform pos: 61.5,-12.5 parent: 2 - - uid: 14133 + - uid: 14076 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-28.5 parent: 2 - - uid: 14134 + - uid: 14077 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 14135 + - uid: 14078 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,61.5 parent: 2 - - uid: 14136 + - uid: 14079 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-25.5 parent: 2 - - uid: 14137 + - uid: 14080 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-27.5 parent: 2 - - uid: 14138 + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-25.5 parent: 2 - - uid: 14139 + - uid: 14082 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-27.5 parent: 2 - - uid: 14140 + - uid: 14083 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,61.5 parent: 2 - - uid: 14141 + - uid: 14084 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 - - uid: 14142 + - uid: 14085 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 14143 + - uid: 14086 components: - type: Transform pos: 59.5,-11.5 parent: 2 - - uid: 14144 + - uid: 14087 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-27.5 parent: 2 - - uid: 14145 + - uid: 14088 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-27.5 parent: 2 - - uid: 14146 + - uid: 14089 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-25.5 parent: 2 - - uid: 14147 + - uid: 14090 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-25.5 parent: 2 - - uid: 14148 + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-25.5 parent: 2 - - uid: 14149 + - uid: 14092 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-25.5 parent: 2 - - uid: 14150 + - uid: 14093 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-24.5 parent: 2 - - uid: 14151 + - uid: 14094 components: - type: Transform pos: 58.5,-15.5 parent: 2 - - uid: 14152 + - uid: 14095 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14153 + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-25.5 parent: 2 - - uid: 14154 + - uid: 14097 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14155 + - uid: 14098 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-26.5 parent: 2 - - uid: 14156 + - uid: 14099 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-26.5 parent: 2 - - uid: 14157 + - uid: 14100 components: - type: Transform pos: 58.5,-12.5 parent: 2 - - uid: 14158 + - uid: 14101 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 14159 + - uid: 14102 components: - type: Transform pos: 60.5,-13.5 parent: 2 - - uid: 14160 + - uid: 14103 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 14161 + - uid: 14104 components: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 14162 + - uid: 14105 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14163 + - uid: 14106 components: - type: Transform pos: 61.5,-13.5 parent: 2 - - uid: 14164 + - uid: 14107 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-26.5 parent: 2 - - uid: 14165 + - uid: 14108 components: - type: Transform pos: 58.5,-13.5 parent: 2 - - uid: 14166 + - uid: 14109 components: - type: Transform pos: 59.5,-13.5 parent: 2 - - uid: 14167 + - uid: 14110 components: - type: Transform pos: 60.5,-12.5 parent: 2 - - uid: 14168 + - uid: 14111 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14169 + - uid: 14112 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,63.5 parent: 2 - - uid: 14170 + - uid: 14113 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-26.5 parent: 2 - - uid: 14171 + - uid: 14114 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,64.5 parent: 2 - - uid: 14172 + - uid: 14115 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,62.5 parent: 2 - - uid: 14173 + - uid: 14116 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,62.5 parent: 2 - - uid: 14174 + - uid: 14117 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 14175 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,26.5 parent: 2 - - uid: 14176 + - uid: 14119 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,26.5 parent: 2 - - uid: 14177 + - uid: 14120 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,26.5 parent: 2 - - uid: 14178 + - uid: 14121 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,24.5 parent: 2 - - uid: 14179 + - uid: 14122 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,26.5 parent: 2 - - uid: 14180 + - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad @@ -111145,7 +111150,7 @@ entities: parent: 2 - proto: ChairBrass entities: - - uid: 14181 + - uid: 14124 components: - type: Transform rot: 3.141592653589793 rad @@ -111153,182 +111158,182 @@ entities: parent: 2 - proto: ChairCarp entities: - - uid: 9967 + - uid: 14125 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-24.5 parent: 2 - - uid: 9968 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-24.5 parent: 2 - - uid: 14182 + - uid: 14127 components: - type: Transform pos: 20.5,63.5 parent: 2 - - uid: 14183 + - uid: 14128 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-31.5 parent: 2 - - uid: 25504 + - uid: 14129 components: - type: Transform pos: -61.5,-23.5 parent: 2 - proto: ChairFolding entities: - - uid: 14184 + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-1.5 parent: 2 - - uid: 14185 + - uid: 14131 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,28.5 parent: 2 - - uid: 14186 + - uid: 14132 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,1.5 parent: 2 - - uid: 14190 + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-50.5 parent: 2 - - uid: 14191 + - uid: 14134 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-16.5 parent: 2 - - uid: 14194 + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,58.5 parent: 2 - - uid: 14195 + - uid: 14136 components: - type: Transform pos: -29.5,-46.5 parent: 2 - - uid: 14196 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-0.5 parent: 2 - - uid: 14197 + - uid: 14138 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-1.5 parent: 2 - - uid: 14198 + - uid: 14139 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,57.5 parent: 2 - - uid: 14199 + - uid: 14140 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - uid: 14200 + - uid: 14141 components: - type: Transform rot: -1.5707953085339508 rad pos: 96.3055,2.6715565 parent: 2 - - uid: 14201 + - uid: 14142 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 94.61799,3.390307 parent: 2 - - uid: 14202 + - uid: 14143 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.43049,3.312182 parent: 2 - - uid: 14203 + - uid: 14144 components: - type: Transform rot: 1.5707973450558423 rad pos: 93.64925,2.640307 parent: 2 - - uid: 14204 + - uid: 14145 components: - type: Transform rot: 3.141593671850739 rad pos: 94.64925,1.7809321 parent: 2 - - uid: 14205 + - uid: 14146 components: - type: Transform rot: 3.141593671850739 rad pos: 95.46175,1.9371818 parent: 2 - - uid: 14206 + - uid: 14147 components: - type: Transform rot: 3.141593671850739 rad pos: -43.48623,-65.371765 parent: 2 - - uid: 14207 + - uid: 14148 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.123295,26.821814 parent: 2 - - uid: 14208 + - uid: 14149 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.10767,25.946814 parent: 2 - - uid: 14209 + - uid: 14150 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.168484,27.644085 parent: 2 - - uid: 39084 + - uid: 38911 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,43.5 - parent: 38584 + parent: 38411 - proto: ChairFoldingSpawnFolded entities: - - uid: 14210 + - uid: 14151 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.516994,-6.432411 parent: 2 - - uid: 14211 + - uid: 14152 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.548244,-6.276161 parent: 2 - - uid: 14212 + - uid: 14153 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -111336,175 +111341,175 @@ entities: parent: 2 - proto: ChairGreyscale entities: - - uid: 14213 + - uid: 14154 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,22.5 parent: 2 - - uid: 14214 + - uid: 14155 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 - - uid: 14215 + - uid: 14156 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,24.5 parent: 2 - - uid: 14216 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,23.5 parent: 2 - - uid: 14217 + - uid: 14158 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,24.5 parent: 2 - - uid: 14218 + - uid: 14159 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,21.5 parent: 2 - - uid: 14219 + - uid: 14160 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,21.5 parent: 2 - - uid: 14220 + - uid: 14161 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,23.5 parent: 2 - - uid: 14221 + - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,22.5 parent: 2 - - uid: 14222 + - uid: 14163 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,22.5 parent: 2 - - uid: 14223 + - uid: 14164 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,21.5 parent: 2 - - uid: 14224 + - uid: 14165 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,37.5 parent: 2 - - uid: 14225 + - uid: 14166 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,34.5 parent: 2 - - uid: 14226 + - uid: 14167 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,32.5 parent: 2 - - uid: 14227 + - uid: 14168 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,34.5 parent: 2 - - uid: 14228 + - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,37.5 parent: 2 - - uid: 14229 + - uid: 14170 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,35.5 parent: 2 - - uid: 14230 + - uid: 14171 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,31.5 parent: 2 - - uid: 14231 + - uid: 14172 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,38.5 parent: 2 - - uid: 14232 + - uid: 14173 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 - - uid: 14233 + - uid: 14174 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,38.5 parent: 2 - - uid: 14234 + - uid: 14175 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,35.5 parent: 2 - - uid: 14235 + - uid: 14176 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,31.5 parent: 2 - - uid: 14236 + - uid: 14177 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-10.5 parent: 2 - - uid: 14237 + - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,21.5 parent: 2 - - uid: 14238 + - uid: 14179 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 - - uid: 14239 + - uid: 14180 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 - - uid: 14240 + - uid: 14181 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,23.5 parent: 2 - - uid: 14241 + - uid: 14182 components: - type: Transform rot: 1.5707963267948966 rad @@ -111512,1407 +111517,1407 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 14242 + - uid: 14183 components: - type: Transform pos: 66.51117,-3.6487164 parent: 2 - - uid: 14243 + - uid: 14184 components: - type: Transform rot: 3.141593671850739 rad pos: 88.42397,6.7841988 parent: 2 - - uid: 14244 + - uid: 14185 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.399817,0.6220567 parent: 2 - - uid: 14245 + - uid: 14186 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 - - uid: 14246 + - uid: 14187 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,9.5 parent: 2 - - uid: 14247 + - uid: 14188 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,22.5 parent: 2 - - uid: 14248 + - uid: 14189 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 - - uid: 14249 + - uid: 14190 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-13.5 parent: 2 - - uid: 14250 + - uid: 14191 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 2 - - uid: 14251 + - uid: 14192 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,8.5 parent: 2 - - uid: 14252 + - uid: 14193 components: - type: Transform pos: -31.5,-11.5 parent: 2 - - uid: 14253 + - uid: 14194 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 - - uid: 14254 + - uid: 14195 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,27.5 parent: 2 - - uid: 14255 + - uid: 14196 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-9.5 parent: 2 - - uid: 14256 + - uid: 14197 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 14257 + - uid: 14198 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 2 - - uid: 14258 + - uid: 14199 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,2.5 parent: 2 - - uid: 14259 + - uid: 14200 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 - - uid: 14260 + - uid: 14201 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,19.5 parent: 2 - - uid: 14261 + - uid: 14202 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 - - uid: 14262 + - uid: 14203 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 14263 + - uid: 14204 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-14.5 parent: 2 - - uid: 14264 + - uid: 14205 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,9.5 parent: 2 - - uid: 14265 + - uid: 14206 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 2 - - uid: 14266 + - uid: 14207 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,4.5 parent: 2 - - uid: 14267 + - uid: 14208 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,86.5 parent: 2 - - uid: 14268 + - uid: 14209 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 14269 + - uid: 14210 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 - - uid: 14270 + - uid: 14211 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-46.5 parent: 2 - - uid: 14271 + - uid: 14212 components: - type: Transform pos: 11.5,-51.5 parent: 2 - - uid: 14272 + - uid: 14213 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,1.5 parent: 2 - - uid: 14273 + - uid: 14214 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-75.5 parent: 2 - - uid: 14274 + - uid: 14215 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-29.5 parent: 2 - - uid: 14275 + - uid: 14216 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,15.5 parent: 2 - - uid: 14276 + - uid: 14217 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 2 - - uid: 14277 + - uid: 14218 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 14278 + - uid: 14219 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 - - uid: 14279 + - uid: 14220 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,38.5 parent: 2 - - uid: 14280 + - uid: 14221 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,17.5 parent: 2 - - uid: 14281 + - uid: 14222 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 2 - - uid: 14282 + - uid: 14223 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-59.5 parent: 2 - - uid: 14283 + - uid: 14224 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,43.5 parent: 2 - - uid: 14284 + - uid: 14225 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 14285 + - uid: 14226 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 - - uid: 14286 + - uid: 14227 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,18.5 parent: 2 - - uid: 14287 + - uid: 14228 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 2 - - uid: 14288 + - uid: 14229 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-54.5 parent: 2 - - uid: 14289 + - uid: 14230 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - uid: 14290 + - uid: 14231 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,10.5 parent: 2 - - uid: 14291 + - uid: 14232 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 2 - - uid: 14292 + - uid: 14233 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,36.5 parent: 2 - - uid: 14293 + - uid: 14234 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 14294 + - uid: 14235 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-80.5 parent: 2 - - uid: 14295 + - uid: 14236 components: - type: Transform pos: -14.5,-78.5 parent: 2 - - uid: 14296 + - uid: 14237 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,1.5 parent: 2 - - uid: 14297 + - uid: 14238 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 - - uid: 14298 + - uid: 14239 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 - - uid: 14299 + - uid: 14240 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,21.5 parent: 2 - - uid: 14300 + - uid: 14241 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-15.5 parent: 2 - - uid: 14301 + - uid: 14242 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 2 - - uid: 14302 + - uid: 14243 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 - - uid: 14303 + - uid: 14244 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,20.5 parent: 2 - - uid: 14304 + - uid: 14245 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 14305 + - uid: 14246 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-52.5 parent: 2 - - uid: 14306 + - uid: 14247 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 14307 + - uid: 14248 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 - - uid: 14308 + - uid: 14249 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-50.5 parent: 2 - - uid: 14309 + - uid: 14250 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,37.5 parent: 2 - - uid: 14310 + - uid: 14251 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-26.5 parent: 2 - - uid: 14311 + - uid: 14252 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-23.5 parent: 2 - - uid: 14312 + - uid: 14253 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 14313 + - uid: 14254 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-0.5 parent: 2 - - uid: 14314 + - uid: 14255 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-0.5 parent: 2 - - uid: 14315 + - uid: 14256 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-2.5 parent: 2 - - uid: 14316 + - uid: 14257 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 14317 + - uid: 14258 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 14318 + - uid: 14259 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,20.5 parent: 2 - - uid: 14319 + - uid: 14260 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 14320 + - uid: 14261 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,15.5 parent: 2 - - uid: 14321 + - uid: 14262 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,37.5 parent: 2 - - uid: 14322 + - uid: 14263 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 - - uid: 14323 + - uid: 14264 components: - type: Transform pos: 48.5,-24.5 parent: 2 - - uid: 14324 + - uid: 14265 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,35.5 parent: 2 - - uid: 14325 + - uid: 14266 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 - - uid: 14326 + - uid: 14267 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,62.5 parent: 2 - - uid: 14327 + - uid: 14268 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,27.5 parent: 2 - - uid: 14328 + - uid: 14269 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 - - uid: 14329 + - uid: 14270 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 - - uid: 14330 + - uid: 14271 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 - - uid: 14331 + - uid: 14272 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-37.5 parent: 2 - - uid: 14332 + - uid: 14273 components: - type: Transform pos: -11.47343,-0.62564135 parent: 2 - - uid: 14333 + - uid: 14274 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.399817,0.6220567 parent: 2 - - uid: 14334 + - uid: 14275 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.524817,0.6220567 parent: 2 - - uid: 14335 + - uid: 14276 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.53509253,61.69526 parent: 2 - - uid: 14336 + - uid: 14277 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.496967,-39.310917 parent: 2 - - uid: 14337 + - uid: 14278 components: - type: Transform rot: 1.5707973450558423 rad pos: 88.51772,5.1279488 parent: 2 - - uid: 14338 + - uid: 14279 components: - type: Transform rot: 3.141593671850739 rad pos: -50.978703,-35.88624 parent: 2 - - uid: 14339 + - uid: 14280 components: - type: Transform pos: -46.51411,0.54027236 parent: 2 - - uid: 14340 + - uid: 14281 components: - type: Transform rot: 3.141592653589793 rad pos: 45.53433,-4.487782 parent: 2 - - uid: 14341 + - uid: 14282 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.241432,-2.815143 parent: 2 - - uid: 14342 + - uid: 14283 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.81918,-4.264469 parent: 2 - - uid: 14343 + - uid: 14284 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.241432,-3.9342427 parent: 2 - - uid: 14344 + - uid: 14285 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.69076,-2.7784514 parent: 2 - - uid: 14345 + - uid: 14286 components: - type: Transform rot: 3.141592653589793 rad pos: 46.525005,-4.3777065 parent: 2 - - uid: 14346 + - uid: 14287 components: - type: Transform pos: 45.534325,-2.2862744 parent: 2 - - uid: 14347 + - uid: 14288 components: - type: Transform pos: 46.396584,-2.3229663 parent: 2 - - uid: 14348 + - uid: 14289 components: - type: Transform pos: 57.585953,-2.5824502 parent: 2 - - uid: 14349 + - uid: 14290 components: - type: Transform pos: 58.37483,-2.398991 parent: 2 - - uid: 14350 + - uid: 14291 components: - type: Transform rot: 3.141592653589793 rad pos: 57.512573,-4.2335806 parent: 2 - - uid: 14351 + - uid: 14292 components: - type: Transform rot: 3.141592653589793 rad pos: 58.576633,-4.196889 parent: 2 - - uid: 14352 + - uid: 14293 components: - type: Transform pos: 21.748638,22.021212 parent: 2 - - uid: 14353 + - uid: 14294 components: - type: Transform pos: 22.592388,22.14621 parent: 2 - - uid: 14354 + - uid: 14295 components: - type: Transform pos: 23.436138,22.099337 parent: 2 - - uid: 14355 + - uid: 14296 components: - type: Transform pos: 25.670513,22.068085 parent: 2 - - uid: 14356 + - uid: 14297 components: - type: Transform pos: 26.592388,22.068085 parent: 2 - - uid: 14357 + - uid: 14298 components: - type: Transform pos: 27.404888,22.11496 parent: 2 - - uid: 14358 + - uid: 14299 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.0684392,38.965813 parent: 2 - - uid: 39085 + - uid: 38912 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,33.5 - parent: 38584 - - uid: 39086 + parent: 38411 + - uid: 38913 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 38584 - - uid: 39087 + parent: 38411 + - uid: 38914 components: - type: Transform pos: 3.495472,1.5606384 - parent: 38584 + parent: 38411 - proto: ChairOfficeLight entities: - - uid: 14359 + - uid: 14300 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 14360 + - uid: 14301 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,0.5 parent: 2 - - uid: 14361 + - uid: 14302 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,29.5 parent: 2 - - uid: 14362 + - uid: 14303 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-3.5 parent: 2 - - uid: 14363 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-59.5 parent: 2 - - uid: 14364 + - uid: 14305 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 - - uid: 14365 + - uid: 14306 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-30.5 parent: 2 - - uid: 14366 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-26.5 parent: 2 - - uid: 14367 + - uid: 14308 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-56.5 parent: 2 - - uid: 14368 + - uid: 14309 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-47.5 parent: 2 - - uid: 14369 + - uid: 14310 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,7.5 parent: 2 - - uid: 14370 + - uid: 14311 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-66.5 parent: 2 - - uid: 14371 + - uid: 14312 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 14372 + - uid: 14313 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-68.5 parent: 2 - - uid: 14373 + - uid: 14314 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-42.5 parent: 2 - - uid: 14374 + - uid: 14315 components: - type: Transform pos: -17.5,-40.5 parent: 2 - - uid: 14375 + - uid: 14316 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-29.5 parent: 2 - - uid: 14376 + - uid: 14317 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-47.5 parent: 2 - - uid: 14377 + - uid: 14318 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,31.5 parent: 2 - - uid: 14378 + - uid: 14319 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 14379 + - uid: 14320 components: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 14380 + - uid: 14321 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,8.5 parent: 2 - - uid: 14381 + - uid: 14322 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-19.5 parent: 2 - - uid: 14382 + - uid: 14323 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-60.5 parent: 2 - - uid: 14383 + - uid: 14324 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,8.5 parent: 2 - - uid: 14384 + - uid: 14325 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 2 - - uid: 14385 + - uid: 14326 components: - type: Transform pos: -24.5,50.5 parent: 2 - - uid: 14386 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,52.5 parent: 2 - - uid: 14387 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-49.5 parent: 2 - - uid: 14388 + - uid: 14329 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-34.5 parent: 2 - - uid: 14389 + - uid: 14330 components: - type: Transform pos: 23.5,-45.5 parent: 2 - - uid: 14390 + - uid: 14331 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-34.5 parent: 2 - - uid: 14391 + - uid: 14332 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-44.5 parent: 2 - - uid: 14392 + - uid: 14333 components: - type: Transform pos: 41.5,-73.5 parent: 2 - - uid: 14393 + - uid: 14334 components: - type: Transform pos: 35.5,-40.5 parent: 2 - - uid: 14394 + - uid: 14335 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-40.5 parent: 2 - - uid: 14395 + - uid: 14336 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 - - uid: 14396 + - uid: 14337 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 14397 + - uid: 14338 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-44.5 parent: 2 - - uid: 14398 + - uid: 14339 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 14399 + - uid: 14340 components: - type: Transform pos: -26.5,46.5 parent: 2 - - uid: 14400 + - uid: 14341 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 96.438934,13.171649 parent: 2 - - uid: 14401 + - uid: 14342 components: - type: Transform rot: 3.141593671850739 rad pos: 80.04495,-1.9447366 parent: 2 - - uid: 14402 + - uid: 14343 components: - type: Transform rot: 3.141593671850739 rad pos: 84.0137,-1.9447374 parent: 2 - - uid: 14403 + - uid: 14344 components: - type: Transform rot: 3.141593671850739 rad pos: 87.99808,-1.8978634 parent: 2 - - uid: 14404 + - uid: 14345 components: - type: Transform rot: 3.141593671850739 rad pos: -58.24252,-44.004616 parent: 2 - - uid: 14405 + - uid: 14346 components: - type: Transform pos: 57.26572,30.393097 parent: 2 - - uid: 14406 + - uid: 14347 components: - type: Transform pos: 51.961086,30.41755 parent: 2 - proto: ChairPilotSeat entities: - - uid: 38519 + - uid: 38346 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 - parent: 38484 - - uid: 38520 + parent: 38311 + - uid: 38347 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38521 + parent: 38311 + - uid: 38348 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38522 + parent: 38311 + - uid: 38349 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38523 + parent: 38311 + - uid: 38350 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 39088 + parent: 38311 + - uid: 38915 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,19.5 - parent: 38584 + parent: 38411 - proto: ChairRitual entities: - - uid: 14407 + - uid: 14348 components: - type: Transform pos: -34.286114,-74.28132 parent: 2 - - uid: 14408 + - uid: 14349 components: - type: Transform pos: -30.66586,-73.92663 parent: 2 - - uid: 14409 + - uid: 14350 components: - type: Transform pos: -33.063053,-73.93886 parent: 2 - - uid: 14410 + - uid: 14351 components: - type: Transform pos: -33.686817,-73.278404 parent: 2 - - uid: 14411 + - uid: 14352 components: - type: Transform pos: -31.791075,-74.41585 parent: 2 - - uid: 14412 + - uid: 14353 components: - type: Transform pos: -31.411924,-73.327324 parent: 2 - proto: ChairWood entities: - - uid: 14413 + - uid: 14354 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.8492327,53.653503 parent: 2 - - uid: 14414 + - uid: 14355 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.8965049,45.78206 parent: 2 - - uid: 14415 + - uid: 14356 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,44.5 parent: 2 - - uid: 14416 + - uid: 14357 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 14417 + - uid: 14358 components: - type: Transform pos: -15.5,-68.5 parent: 2 - - uid: 14418 + - uid: 14359 components: - type: Transform pos: -17.5,-68.5 parent: 2 - - uid: 14419 + - uid: 14360 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 14420 + - uid: 14361 components: - type: Transform pos: -20.5,-69.5 parent: 2 - - uid: 14421 + - uid: 14362 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 14422 + - uid: 14363 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 14423 + - uid: 14364 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 14424 + - uid: 14365 components: - type: Transform pos: -18.5,-69.5 parent: 2 - - uid: 14425 + - uid: 14366 components: - type: Transform pos: -17.5,-69.5 parent: 2 - - uid: 14426 + - uid: 14367 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-52.5 parent: 2 - - uid: 14427 + - uid: 14368 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-53.5 parent: 2 - - uid: 14428 + - uid: 14369 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 - - uid: 14429 + - uid: 14370 components: - type: Transform pos: -12.5,-68.5 parent: 2 - - uid: 14430 + - uid: 14371 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 14431 + - uid: 14372 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.563258,46.649433 parent: 2 - - uid: 14432 + - uid: 14373 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 14433 + - uid: 14374 components: - type: Transform pos: -13.5,-68.5 parent: 2 - - uid: 14434 + - uid: 14375 components: - type: Transform pos: -14.5,-69.5 parent: 2 - - uid: 14435 + - uid: 14376 components: - type: Transform pos: -3.4907331,42.184048 parent: 2 - - uid: 14436 + - uid: 14377 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.563247,36.74413 parent: 2 - - uid: 14437 + - uid: 14378 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-7.5 parent: 2 - - uid: 14438 + - uid: 14379 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-8.5 parent: 2 - - uid: 14439 + - uid: 14380 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.485122,38.76386 parent: 2 - - uid: 14440 + - uid: 14381 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.500747,36.759758 parent: 2 - - uid: 14441 + - uid: 14382 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.500759,46.665062 parent: 2 - - uid: 14442 + - uid: 14383 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.453872,38.748238 parent: 2 - - uid: 14443 + - uid: 14384 components: - type: Transform pos: -15.5,-69.5 parent: 2 - - uid: 14444 + - uid: 14385 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 14445 + - uid: 14386 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 14446 + - uid: 14387 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 14447 + - uid: 14388 components: - type: Transform pos: -14.5,-68.5 parent: 2 - - uid: 14448 + - uid: 14389 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-51.5 parent: 2 - - uid: 14449 + - uid: 14390 components: - type: Transform pos: -13.5,-69.5 parent: 2 - - uid: 14450 + - uid: 14391 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-7.5 parent: 2 - - uid: 14451 + - uid: 14392 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 2 - - uid: 14452 + - uid: 14393 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 14453 + - uid: 14394 components: - type: Transform pos: -122.5,33.5 parent: 2 - - uid: 14454 + - uid: 14395 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,31.5 parent: 2 - - uid: 14455 + - uid: 14396 components: - type: Transform pos: -20.5,-70.5 parent: 2 - - uid: 14456 + - uid: 14397 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,27.5 parent: 2 - - uid: 14457 + - uid: 14398 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,28.5 parent: 2 - - uid: 39089 + - uid: 38916 components: - type: Transform pos: -14.365667,-4.690674 - parent: 38584 - - uid: 39090 + parent: 38411 + - uid: 38917 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.350042,-5.300049 - parent: 38584 - - uid: 39091 + parent: 38411 + - uid: 38918 components: - type: Transform pos: -13.709417,-4.721924 - parent: 38584 - - uid: 39092 + parent: 38411 + - uid: 38919 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.740667,-5.331299 - parent: 38584 - - uid: 39093 + parent: 38411 + - uid: 38920 components: - type: Transform rot: 3.141592653589793 rad pos: -13.662542,-5.909424 - parent: 38584 - - uid: 39094 + parent: 38411 + - uid: 38921 components: - type: Transform rot: 3.141592653589793 rad pos: -14.396917,-5.971924 - parent: 38584 + parent: 38411 - proto: CheapLighter entities: - - uid: 14458 + - uid: 14399 components: - type: Transform rot: -1.5707953085339508 rad pos: -74.0946,-35.44862 parent: 2 - - uid: 39095 + - uid: 38922 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.610121,5.726898 - parent: 38584 - - uid: 39096 + parent: 38411 + - uid: 38923 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.531996,5.492523 - parent: 38584 + parent: 38411 - proto: CheapRollerBed entities: - - uid: 14459 + - uid: 14400 components: - type: Transform pos: 2.5292196,-49.44199 parent: 2 - - uid: 14460 + - uid: 14401 components: - type: Transform pos: 45.5,-30.5 parent: 2 - type: Physics canCollide: False - - uid: 14461 + - uid: 14402 components: - type: Transform pos: 33.5,-41.5 parent: 2 - - uid: 14462 + - uid: 14403 components: - type: Transform pos: 47.5,-30.5 parent: 2 - type: Physics canCollide: False - - uid: 14463 + - uid: 14404 components: - type: Transform pos: 18.524715,-23.354324 parent: 2 - type: Physics canCollide: False - - uid: 14464 + - uid: 14405 components: - type: Transform pos: 17.493465,-23.354118 parent: 2 - type: Physics canCollide: False - - uid: 14465 + - uid: 14406 components: - type: Transform pos: 2.5268502,-40.29957 parent: 2 - type: Physics canCollide: False - - uid: 14466 + - uid: 14407 components: - type: Transform pos: 6.5348835,-13.351544 parent: 2 - proto: CheapRollerBedSpawnFolded entities: - - uid: 14467 + - uid: 14408 components: - type: Transform pos: 24.247139,-26.420021 parent: 2 - - uid: 14468 + - uid: 14409 components: - type: Transform pos: 24.262762,-27.091896 parent: 2 - proto: ChemDispenser entities: - - uid: 14469 + - uid: 14410 components: - type: Transform pos: 3.5,-33.5 @@ -112935,7 +112940,7 @@ entities: showEnts: False occludes: True ent: null - - uid: 14470 + - uid: 14411 components: - type: Transform pos: 6.5,-29.5 @@ -112960,46 +112965,46 @@ entities: ent: null - proto: ChemicalPayload entities: - - uid: 14471 + - uid: 14412 components: - type: Transform pos: -6.654764,-46.34208 parent: 2 - - uid: 14472 + - uid: 14413 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - - uid: 14473 + - uid: 14414 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - - uid: 14474 + - uid: 14415 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - proto: ChemistryHotplate entities: - - uid: 14475 + - uid: 14416 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 14476 + - uid: 14417 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 14477 + - uid: 14418 components: - type: Transform pos: 63.5,30.5 parent: 2 - proto: ChemMaster entities: - - uid: 14478 + - uid: 14419 components: - type: Transform pos: 4.5,-29.5 @@ -113026,7 +113031,7 @@ entities: showEnts: False occludes: True ent: null - - uid: 14479 + - uid: 14420 components: - type: Transform pos: 3.5,-35.5 @@ -113053,51 +113058,51 @@ entities: showEnts: False occludes: True ent: null - - uid: 14480 + - uid: 14421 components: - type: Transform pos: -32.5,45.5 parent: 2 - proto: ChessBoard entities: - - uid: 14481 + - uid: 14422 components: - type: Transform pos: -31.521072,68.62613 parent: 2 - - uid: 14482 + - uid: 14423 components: - type: Transform pos: -31.999136,-13.284749 parent: 2 - - uid: 14483 + - uid: 14424 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.540379,-77.35887 parent: 2 - - uid: 14484 + - uid: 14425 components: - type: Transform pos: 63.66099,-25.833206 parent: 2 - proto: CigarCase entities: - - uid: 14485 + - uid: 14426 components: - type: Transform pos: 36.502167,-9.505364 parent: 2 - type: Physics canCollide: False - - uid: 14486 + - uid: 14427 components: - type: Transform pos: -76.360794,-0.4243784 parent: 2 - proto: Cigarette entities: - - uid: 9964 + - uid: 14428 components: - type: Transform rot: -1.5707963267948966 rad @@ -113105,74 +113110,74 @@ entities: parent: 2 - proto: CigaretteSpent entities: - - uid: 6745 + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad pos: -60.30316,-23.38285 parent: 2 - - uid: 14487 + - uid: 14430 components: - type: Transform pos: -18.792145,56.784576 parent: 2 - - uid: 14488 + - uid: 14431 components: - type: Transform pos: -4.220675,56.874905 parent: 2 - - uid: 14490 + - uid: 14432 components: - type: Transform rot: 3.141592653589793 rad pos: -27.606853,-28.286798 parent: 2 - - uid: 14491 + - uid: 14433 components: - type: Transform pos: 25.112226,-16.579811 parent: 2 - - uid: 14492 + - uid: 14434 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.874308,-30.625107 parent: 2 - - uid: 14493 + - uid: 14435 components: - type: Transform pos: 9.577554,-11.391624 parent: 2 - - uid: 14494 + - uid: 14436 components: - type: Transform rot: 3.141592653589793 rad pos: 0.25211835,-45.352993 parent: 2 - - uid: 14495 + - uid: 14437 components: - type: Transform rot: 3.141592653589793 rad pos: -1.0373211,-57.28495 parent: 2 - - uid: 14496 + - uid: 14438 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.953518,0.0045550466 parent: 2 - - uid: 14497 + - uid: 14439 components: - type: Transform pos: -46.327656,-33.127026 parent: 2 - - uid: 14498 + - uid: 14440 components: - type: Transform rot: 3.141592653589793 rad pos: -22.800909,10.6530485 parent: 2 - - uid: 14499 + - uid: 14441 components: - type: Transform pos: 52.32608,23.745909 @@ -113202,80 +113207,80 @@ entities: - type: InsideEntityStorage - proto: CigarGold entities: - - uid: 14500 + - uid: 14442 components: - type: Transform pos: -15.43277,10.848992 parent: 2 - type: Physics canCollide: False - - uid: 14501 + - uid: 14443 components: - type: Transform pos: -15.55777,10.942742 parent: 2 - type: Physics canCollide: False - - uid: 14502 + - uid: 14444 components: - type: Transform pos: 41.683758,19.570614 parent: 2 - type: Physics canCollide: False - - uid: 14503 + - uid: 14445 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.51288,-0.6245712 parent: 2 - - uid: 14504 + - uid: 14446 components: - type: Transform pos: 12.463764,9.66757 parent: 2 - type: Physics canCollide: False - - uid: 14505 + - uid: 14447 components: - type: Transform pos: -63.249516,6.58782 parent: 2 - type: Physics canCollide: False - - uid: 14506 + - uid: 14448 components: - type: Transform pos: 12.588764,9.57382 parent: 2 - type: Physics canCollide: False - - uid: 14507 + - uid: 14449 components: - type: Transform pos: 41.558758,19.633179 parent: 2 - type: Physics canCollide: False - - uid: 14508 + - uid: 14450 components: - type: Transform pos: 31.391697,10.8042965 parent: 2 - - uid: 14509 + - uid: 14451 components: - type: Transform pos: -63.374516,6.65032 parent: 2 - type: Physics canCollide: False - - uid: 14510 + - uid: 14452 components: - type: Transform rot: 3.141592653589793 rad pos: 53.501812,31.041586 parent: 2 - - uid: 14511 + - uid: 14453 components: - type: Transform rot: 3.141592653589793 rad @@ -113283,26 +113288,26 @@ entities: parent: 2 - proto: CigarGoldCase entities: - - uid: 14512 + - uid: 14454 components: - type: Transform pos: 23.613783,12.589763 parent: 2 - - uid: 14513 + - uid: 14455 components: - type: Transform pos: -2.4250343,12.791277 parent: 2 - type: Physics canCollide: False - - uid: 14515 + - uid: 14457 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14520 + - uid: 14462 components: - type: Transform rot: 1.5707963267948966 rad @@ -113310,14 +113315,14 @@ entities: parent: 2 - proto: CigarGoldSpent entities: - - uid: 14521 + - uid: 14463 components: - type: Transform pos: 59.593765,27.848354 parent: 2 - proto: CigarSpent entities: - - uid: 14522 + - uid: 14464 components: - type: Transform rot: 3.141592653589793 rad @@ -113325,452 +113330,452 @@ entities: parent: 2 - proto: CigCartonBlack entities: - - uid: 14523 + - uid: 14465 components: - type: Transform pos: -46.55135,-32.313488 parent: 2 - proto: CigCartonMixed entities: - - uid: 14524 + - uid: 14466 components: - type: Transform pos: -0.5251062,-10.303878 parent: 2 - - uid: 39097 + - uid: 38924 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.375746,6.398773 - parent: 38584 + parent: 38411 - proto: CigPackBlack entities: - - uid: 14525 + - uid: 14467 components: - type: Transform pos: -46.379475,-32.516613 parent: 2 - - uid: 14526 + - uid: 14468 components: - type: Transform pos: -46.660725,-32.532238 parent: 2 - - uid: 39098 + - uid: 38925 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.547621,6.133148 - parent: 38584 + parent: 38411 - proto: CigPackBlue entities: - - uid: 39099 + - uid: 38926 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.703871,6.398773 - parent: 38584 + parent: 38411 - proto: CigPackSyndicate entities: - - uid: 14527 + - uid: 14469 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -46.197323,-32.47747 parent: 2 - - uid: 39101 + - uid: 38928 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CircuitImprinter entities: - - uid: 14528 + - uid: 14470 components: - type: Transform pos: -3.5,-31.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 14530 + - uid: 14471 components: - type: Transform pos: 0.5,55.5 parent: 2 - - uid: 39107 + - uid: 38934 components: - type: Transform pos: -12.5,14.5 - parent: 38584 + parent: 38411 - proto: ClockworkGrilleBroken entities: - - uid: 14531 + - uid: 14472 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,6.5 parent: 2 - - uid: 14532 + - uid: 14473 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,4.5 parent: 2 - - uid: 14533 + - uid: 14474 components: - type: Transform pos: -92.5,-20.5 parent: 2 - - uid: 14534 + - uid: 14475 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,3.5 parent: 2 - - uid: 14535 + - uid: 14476 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,5.5 parent: 2 - - uid: 14536 + - uid: 14477 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,4.5 parent: 2 - - uid: 14537 + - uid: 14478 components: - type: Transform pos: -105.5,-12.5 parent: 2 - - uid: 14538 + - uid: 14479 components: - type: Transform pos: -103.5,-11.5 parent: 2 - - uid: 14539 + - uid: 14480 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,-11.5 parent: 2 - - uid: 14540 + - uid: 14481 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,-19.5 parent: 2 - - uid: 14541 + - uid: 14482 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-21.5 parent: 2 - - uid: 14542 + - uid: 14483 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-12.5 parent: 2 - - uid: 14543 + - uid: 14484 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,-11.5 parent: 2 - - uid: 14544 + - uid: 14485 components: - type: Transform pos: 78.5,-7.5 parent: 2 - - uid: 14545 + - uid: 14486 components: - type: Transform pos: 93.5,-7.5 parent: 2 - - uid: 14546 + - uid: 14487 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-8.5 parent: 2 - - uid: 14547 + - uid: 14488 components: - type: Transform pos: 92.5,-8.5 parent: 2 - - uid: 14548 + - uid: 14489 components: - type: Transform pos: 91.5,-8.5 parent: 2 - - uid: 14549 + - uid: 14490 components: - type: Transform pos: 89.5,-8.5 parent: 2 - - uid: 14550 + - uid: 14491 components: - type: Transform pos: 93.5,-7.5 parent: 2 - - uid: 14551 + - uid: 14492 components: - type: Transform pos: 80.5,-7.5 parent: 2 - - uid: 14552 + - uid: 14493 components: - type: Transform pos: 77.5,-7.5 parent: 2 - - uid: 14553 + - uid: 14494 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-8.5 parent: 2 - - uid: 14554 + - uid: 14495 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-6.5 parent: 2 - - uid: 14555 + - uid: 14496 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,2.5 parent: 2 - - uid: 14556 + - uid: 14497 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,3.5 parent: 2 - - uid: 14557 + - uid: 14498 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,4.5 parent: 2 - - uid: 14558 + - uid: 14499 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,5.5 parent: 2 - - uid: 14559 + - uid: 14500 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,6.5 parent: 2 - - uid: 14560 + - uid: 14501 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 14561 + - uid: 14502 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,6.5 parent: 2 - - uid: 14562 + - uid: 14503 components: - type: Transform pos: 81.5,-7.5 parent: 2 - - uid: 14563 + - uid: 14504 components: - type: Transform pos: 82.5,-7.5 parent: 2 - - uid: 14564 + - uid: 14505 components: - type: Transform pos: 83.5,-7.5 parent: 2 - - uid: 14565 + - uid: 14506 components: - type: Transform pos: 84.5,-7.5 parent: 2 - - uid: 14566 + - uid: 14507 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-8.5 parent: 2 - - uid: 14567 + - uid: 14508 components: - type: Transform pos: 85.5,-8.5 parent: 2 - - uid: 14568 + - uid: 14509 components: - type: Transform pos: 86.5,-8.5 parent: 2 - - uid: 14569 + - uid: 14510 components: - type: Transform pos: 87.5,-8.5 parent: 2 - - uid: 14570 + - uid: 14511 components: - type: Transform pos: 88.5,-8.5 parent: 2 - - uid: 14571 + - uid: 14512 components: - type: Transform pos: 90.5,-8.5 parent: 2 - - uid: 14572 + - uid: 14513 components: - type: Transform pos: 94.5,-7.5 parent: 2 - - uid: 14573 + - uid: 14514 components: - type: Transform pos: 95.5,-7.5 parent: 2 - - uid: 14574 + - uid: 14515 components: - type: Transform pos: 96.5,-7.5 parent: 2 - - uid: 14575 + - uid: 14516 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,-7.5 parent: 2 - - uid: 14576 + - uid: 14517 components: - type: Transform pos: 97.5,-7.5 parent: 2 - - uid: 14577 + - uid: 14518 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-7.5 parent: 2 - - uid: 14578 + - uid: 14519 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-6.5 parent: 2 - - uid: 14579 + - uid: 14520 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-5.5 parent: 2 - - uid: 14580 + - uid: 14521 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-4.5 parent: 2 - - uid: 14581 + - uid: 14522 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-3.5 parent: 2 - - uid: 14582 + - uid: 14523 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-2.5 parent: 2 - - uid: 14583 + - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-1.5 parent: 2 - - uid: 14584 + - uid: 14525 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-0.5 parent: 2 - - uid: 14585 + - uid: 14526 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,0.5 parent: 2 - - uid: 14586 + - uid: 14527 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,1.5 parent: 2 - - uid: 14587 + - uid: 14528 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,2.5 parent: 2 - - uid: 14588 + - uid: 14529 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,2.5 parent: 2 - - uid: 14589 + - uid: 14530 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,6.5 parent: 2 - - uid: 14590 + - uid: 14531 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,6.5 parent: 2 - - uid: 14591 + - uid: 14532 components: - type: Transform pos: 98.5,-6.5 parent: 2 - - uid: 14592 + - uid: 14533 components: - type: Transform pos: 99.5,-6.5 parent: 2 - - uid: 14593 + - uid: 14534 components: - type: Transform pos: 100.5,-6.5 parent: 2 - - uid: 14594 + - uid: 14535 components: - type: Transform pos: 101.5,-6.5 parent: 2 - - uid: 14595 + - uid: 14536 components: - type: Transform pos: 102.5,-6.5 parent: 2 - - uid: 14596 + - uid: 14537 components: - type: Transform pos: 103.5,-7.5 parent: 2 - - uid: 14597 + - uid: 14538 components: - type: Transform rot: -1.5707963267948966 rad @@ -113778,36 +113783,36 @@ entities: parent: 2 - proto: CloningPod entities: - - uid: 14598 + - uid: 14539 components: - type: Transform pos: 8.5,-37.5 parent: 2 - proto: ClosetBluespace entities: - - uid: 14599 + - uid: 14540 components: - type: Transform pos: -38.500004,-13.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 14600 + - uid: 14541 components: - type: Transform pos: 61.5,6.5 parent: 2 - - uid: 14601 + - uid: 14542 components: - type: Transform pos: 63.5,6.5 parent: 2 - - uid: 14602 + - uid: 14543 components: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 14603 + - uid: 14544 components: - type: Transform pos: -7.5,-48.5 @@ -113830,19 +113835,19 @@ entities: - 0 - 0 - 0 - - uid: 14604 + - uid: 14545 components: - type: Transform pos: -29.5,-41.5 parent: 2 - - uid: 14605 + - uid: 14546 components: - type: Transform pos: 59.5,6.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 14606 + - uid: 14547 components: - type: Transform pos: -32.5,25.5 @@ -113865,14 +113870,14 @@ entities: - 0 - 0 - 0 - - uid: 14607 + - uid: 14548 components: - type: Transform pos: 61.5,30.5 parent: 2 - proto: ClosetEmergency entities: - - uid: 14608 + - uid: 14549 components: - type: Transform pos: -31.5,82.5 @@ -113895,39 +113900,39 @@ entities: - 0 - 0 - 0 - - uid: 14609 + - uid: 14550 components: - type: Transform pos: -27.5,82.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 14610 + - uid: 14551 components: - type: Transform pos: 4.5,81.5 parent: 2 - - uid: 14611 + - uid: 14552 components: - type: Transform pos: -9.5,82.5 parent: 2 - - uid: 14612 + - uid: 14553 components: - type: Transform pos: -9.5,88.5 parent: 2 - - uid: 14613 + - uid: 14554 components: - type: Transform pos: 4.5,80.5 parent: 2 - - uid: 14614 + - uid: 14555 components: - type: Transform pos: -51.5,20.5 parent: 2 - - uid: 14615 + - uid: 14556 components: - type: Transform pos: -57.5,64.5 @@ -113938,13 +113943,13 @@ entities: showEnts: False occludes: True ents: - - 14616 - - 14617 + - 14557 + - 14558 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14618 + - uid: 14559 components: - type: Transform pos: -12.5,98.5 @@ -113967,7 +113972,7 @@ entities: - 0 - 0 - 0 - - uid: 14619 + - uid: 14560 components: - type: Transform pos: -31.5,88.5 @@ -113990,7 +113995,7 @@ entities: - 0 - 0 - 0 - - uid: 14620 + - uid: 14561 components: - type: Transform pos: -18.5,-21.5 @@ -114013,7 +114018,7 @@ entities: - 0 - 0 - 0 - - uid: 14621 + - uid: 14562 components: - type: Transform pos: 4.5,-67.5 @@ -114036,7 +114041,7 @@ entities: - 0 - 0 - 0 - - uid: 14622 + - uid: 14563 components: - type: Transform pos: 4.5,-73.5 @@ -114059,7 +114064,7 @@ entities: - 0 - 0 - 0 - - uid: 14623 + - uid: 14564 components: - type: Transform pos: -10.5,-71.5 @@ -114082,7 +114087,7 @@ entities: - 0 - 0 - 0 - - uid: 14624 + - uid: 14565 components: - type: Transform pos: -76.5,-25.5 @@ -114105,17 +114110,17 @@ entities: - 0 - 0 - 0 - - uid: 14625 + - uid: 14566 components: - type: Transform pos: 29.5,32.5 parent: 2 - - uid: 14626 + - uid: 14567 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 14627 + - uid: 14568 components: - type: Transform pos: -43.5,41.5 @@ -114138,12 +114143,12 @@ entities: - 0 - 0 - 0 - - uid: 14628 + - uid: 14569 components: - type: Transform pos: -42.5,-0.5 parent: 2 - - uid: 14629 + - uid: 14570 components: - type: Transform pos: 28.5,-61.5 @@ -114166,7 +114171,7 @@ entities: - 0 - 0 - 0 - - uid: 14630 + - uid: 14571 components: - type: Transform pos: -1.5,27.5 @@ -114189,7 +114194,7 @@ entities: - 0 - 0 - 0 - - uid: 14631 + - uid: 14572 components: - type: Transform pos: -2.5,-60.5 @@ -114212,7 +114217,7 @@ entities: - 0 - 0 - 0 - - uid: 14632 + - uid: 14573 components: - type: Transform pos: -15.5,-29.5 @@ -114235,7 +114240,7 @@ entities: - 0 - 0 - 0 - - uid: 14633 + - uid: 14574 components: - type: Transform pos: -30.5,98.5 @@ -114258,7 +114263,7 @@ entities: - 0 - 0 - 0 - - uid: 14634 + - uid: 14575 components: - type: Transform pos: 33.5,-18.5 @@ -114281,7 +114286,7 @@ entities: - 0 - 0 - 0 - - uid: 14635 + - uid: 14576 components: - type: Transform pos: -60.5,-17.5 @@ -114304,7 +114309,7 @@ entities: - 0 - 0 - 0 - - uid: 14636 + - uid: 14577 components: - type: Transform pos: -15.5,-31.5 @@ -114327,12 +114332,12 @@ entities: - 0 - 0 - 0 - - uid: 14637 + - uid: 14578 components: - type: Transform pos: -34.5,-51.5 parent: 2 - - uid: 14638 + - uid: 14579 components: - type: Transform pos: -79.5,15.499999 @@ -114355,7 +114360,7 @@ entities: - 0 - 0 - 0 - - uid: 14639 + - uid: 14580 components: - type: Transform pos: 9.5,90.5 @@ -114378,7 +114383,7 @@ entities: - 0 - 0 - 0 - - uid: 14640 + - uid: 14581 components: - type: Transform pos: -46.5,-39.5 @@ -114401,7 +114406,7 @@ entities: - 0 - 0 - 0 - - uid: 14641 + - uid: 14582 components: - type: Transform pos: -67.5,-31.5 @@ -114424,7 +114429,7 @@ entities: - 0 - 0 - 0 - - uid: 14642 + - uid: 14583 components: - type: Transform pos: -32.5,-49.5 @@ -114447,7 +114452,7 @@ entities: - 0 - 0 - 0 - - uid: 14643 + - uid: 14584 components: - type: Transform pos: 70.5,-40.5 @@ -114470,7 +114475,7 @@ entities: - 0 - 0 - 0 - - uid: 14644 + - uid: 14585 components: - type: Transform pos: -21.5,58.5 @@ -114493,7 +114498,7 @@ entities: - 0 - 0 - 0 - - uid: 14645 + - uid: 14586 components: - type: Transform pos: 8.5,-58.5 @@ -114516,7 +114521,7 @@ entities: - 0 - 0 - 0 - - uid: 14646 + - uid: 14587 components: - type: Transform pos: -115.5,26.5 @@ -114539,76 +114544,76 @@ entities: - 0 - 0 - 0 - - uid: 14647 + - uid: 14588 components: - type: Transform pos: -57.5,-38.5 parent: 2 - - uid: 14648 + - uid: 14589 components: - type: Transform pos: -27.5,88.5 parent: 2 - - uid: 14649 + - uid: 14590 components: - type: Transform pos: -13.5,88.5 parent: 2 - - uid: 14650 + - uid: 14591 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 14651 + - uid: 14592 components: - type: Transform pos: -13.5,82.5 parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 14652 + - uid: 14593 components: - type: Transform pos: -37.5,-69.5 parent: 2 - - uid: 14653 + - uid: 14594 components: - type: Transform pos: -51.5,25.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 14654 + - uid: 14595 components: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 14655 + - uid: 14596 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 14656 + - uid: 14597 components: - type: Transform pos: -9.5,92.5 parent: 2 - - uid: 14657 + - uid: 14598 components: - type: Transform pos: -13.5,79.5 parent: 2 - - uid: 14658 + - uid: 14599 components: - type: Transform pos: -9.5,79.5 parent: 2 - - uid: 14659 + - uid: 14600 components: - type: Transform pos: 4.5,79.5 parent: 2 - - uid: 14660 + - uid: 14601 components: - type: Transform pos: -31.5,92.5 @@ -114631,7 +114636,7 @@ entities: - 0 - 0 - 0 - - uid: 14661 + - uid: 14602 components: - type: Transform pos: -43.5,40.5 @@ -114654,7 +114659,7 @@ entities: - 0 - 0 - 0 - - uid: 14662 + - uid: 14603 components: - type: Transform pos: 4.5,-68.5 @@ -114677,7 +114682,7 @@ entities: - 0 - 0 - 0 - - uid: 14663 + - uid: 14604 components: - type: Transform pos: -44.5,44.5 @@ -114700,7 +114705,7 @@ entities: - 0 - 0 - 0 - - uid: 14664 + - uid: 14605 components: - type: Transform pos: -50.5,44.5 @@ -114723,7 +114728,7 @@ entities: - 0 - 0 - 0 - - uid: 14665 + - uid: 14606 components: - type: Transform pos: 2.5,42.5 @@ -114752,12 +114757,12 @@ entities: showEnts: False occludes: True ents: - - 14666 + - 14607 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14667 + - uid: 14608 components: - type: Transform pos: 22.5,-22.5 @@ -114780,7 +114785,7 @@ entities: - 0 - 0 - 0 - - uid: 14668 + - uid: 14609 components: - type: Transform pos: -21.5,57.5 @@ -114803,7 +114808,7 @@ entities: - 0 - 0 - 0 - - uid: 14669 + - uid: 14610 components: - type: Transform pos: -43.5,50.5 @@ -114826,7 +114831,7 @@ entities: - 0 - 0 - 0 - - uid: 14670 + - uid: 14611 components: - type: Transform pos: 4.5,82.5 @@ -114849,12 +114854,12 @@ entities: - 0 - 0 - 0 - - uid: 14671 + - uid: 14612 components: - type: Transform pos: -42.5,-1.5 parent: 2 - - uid: 14672 + - uid: 14613 components: - type: Transform pos: 53.5,-30.5 @@ -114877,7 +114882,7 @@ entities: - 0 - 0 - 0 - - uid: 14673 + - uid: 14614 components: - type: Transform pos: -11.5,-30.5 @@ -114900,7 +114905,7 @@ entities: - 0 - 0 - 0 - - uid: 14674 + - uid: 14615 components: - type: Transform pos: -31.5,61.5 @@ -114923,7 +114928,7 @@ entities: - 0 - 0 - 0 - - uid: 14675 + - uid: 14616 components: - type: Transform pos: -11.5,-29.5 @@ -114946,7 +114951,7 @@ entities: - 0 - 0 - 0 - - uid: 14676 + - uid: 14617 components: - type: Transform pos: -31.5,79.5 @@ -114969,12 +114974,12 @@ entities: - 0 - 0 - 0 - - uid: 14677 + - uid: 14618 components: - type: Transform pos: -3.5,-50.5 parent: 2 - - uid: 14678 + - uid: 14619 components: - type: Transform pos: -2.5,-61.5 @@ -114997,12 +115002,12 @@ entities: - 0 - 0 - 0 - - uid: 14679 + - uid: 14620 components: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 14680 + - uid: 14621 components: - type: Transform pos: -10.5,-74.5 @@ -115025,7 +115030,7 @@ entities: - 0 - 0 - 0 - - uid: 14681 + - uid: 14622 components: - type: Transform pos: 47.5,-41.5 @@ -115048,7 +115053,7 @@ entities: - 0 - 0 - 0 - - uid: 14682 + - uid: 14623 components: - type: Transform pos: -34.5,-49.5 @@ -115077,12 +115082,12 @@ entities: showEnts: False occludes: True ents: - - 14683 + - 14624 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14684 + - uid: 14625 components: - type: Transform pos: 1.5,-55.5 @@ -115105,7 +115110,7 @@ entities: - 0 - 0 - 0 - - uid: 14685 + - uid: 14626 components: - type: Transform pos: -19.5,-21.5 @@ -115128,51 +115133,51 @@ entities: - 0 - 0 - 0 - - uid: 14686 + - uid: 14627 components: - type: Transform pos: -57.5,-37.5 parent: 2 - - uid: 14687 + - uid: 14628 components: - type: Transform pos: -27.5,92.5 parent: 2 - - uid: 14688 + - uid: 14629 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 14689 + - uid: 14630 components: - type: Transform pos: -13.5,92.5 parent: 2 - - uid: 14690 + - uid: 14631 components: - type: Transform pos: -27.5,79.5 parent: 2 - - uid: 14691 + - uid: 14632 components: - type: Transform pos: -68.5,-31.5 parent: 2 - proto: ClosetJanitor entities: - - uid: 14692 + - uid: 14633 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 14693 + - uid: 14634 components: - type: Transform pos: 65.5,-29.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 1868 + - uid: 1872 components: - type: Transform pos: 4.5,53.5 @@ -115201,40 +115206,40 @@ entities: showEnts: False occludes: True ents: - - 1871 - - 1872 - - 1870 - - 1873 - - 1878 - - 1869 - 1875 - 1876 - 1874 - 1877 + - 1882 + - 1873 + - 1879 + - 1880 + - 1878 + - 1881 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetL3JanitorFilled entities: - - uid: 14694 + - uid: 14635 components: - type: Transform pos: 4.5,54.5 parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 14695 + - uid: 14636 components: - type: Transform pos: -27.5,-37.5 parent: 2 - - uid: 14696 + - uid: 14637 components: - type: Transform pos: -27.5,-38.5 parent: 2 - - uid: 14697 + - uid: 14638 components: - type: Transform pos: -11.5,-31.5 @@ -115259,7 +115264,7 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: - - uid: 14698 + - uid: 14639 components: - type: Transform pos: 70.5,-2.5 @@ -115282,7 +115287,7 @@ entities: - 0 - 0 - 0 - - uid: 14699 + - uid: 14640 components: - type: Transform pos: 70.5,-4.5 @@ -115305,7 +115310,7 @@ entities: - 0 - 0 - 0 - - uid: 14700 + - uid: 14641 components: - type: Transform pos: 69.5,-4.5 @@ -115330,7 +115335,7 @@ entities: - 0 - proto: ClosetL3VirologyFilled entities: - - uid: 14701 + - uid: 14642 components: - type: Transform pos: 26.5,-61.5 @@ -115353,7 +115358,7 @@ entities: - 0 - 0 - 0 - - uid: 14702 + - uid: 14643 components: - type: Transform pos: 32.5,-68.5 @@ -115376,7 +115381,7 @@ entities: - 0 - 0 - 0 - - uid: 14703 + - uid: 14644 components: - type: Transform pos: 27.5,-61.5 @@ -115401,24 +115406,24 @@ entities: - 0 - proto: ClosetLegal entities: - - uid: 14704 + - uid: 14645 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 14705 + - uid: 14646 components: - type: Transform pos: 65.5,-11.5 parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 14706 + - uid: 14647 components: - type: Transform pos: -35.5,-79.5 parent: 2 - - uid: 14707 + - uid: 14648 components: - type: Transform pos: -26.5,-76.5 @@ -115447,17 +115452,17 @@ entities: showEnts: False occludes: True ents: - - 14708 + - 14649 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14709 + - uid: 14650 components: - type: Transform pos: -31.5,58.5 parent: 2 - - uid: 14710 + - uid: 14651 components: - type: Transform pos: -21.5,-21.5 @@ -115486,12 +115491,12 @@ entities: showEnts: False occludes: True ents: - - 14711 + - 14652 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14712 + - uid: 14653 components: - type: Transform pos: 5.5,56.5 @@ -115514,7 +115519,7 @@ entities: - 0 - 0 - 0 - - uid: 14713 + - uid: 14654 components: - type: Transform pos: 21.5,-55.5 @@ -115543,12 +115548,12 @@ entities: showEnts: False occludes: True ents: - - 14714 + - 14655 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14715 + - uid: 14656 components: - type: Transform pos: -24.5,27.5 @@ -115571,12 +115576,12 @@ entities: - 0 - 0 - 0 - - uid: 14716 + - uid: 14657 components: - type: Transform pos: -40.5,50.5 parent: 2 - - uid: 14717 + - uid: 14658 components: - type: Transform pos: 4.5,-55.5 @@ -115599,7 +115604,7 @@ entities: - 0 - 0 - 0 - - uid: 14718 + - uid: 14659 components: - type: Transform pos: -73.5,-22.5 @@ -115628,12 +115633,12 @@ entities: showEnts: False occludes: True ents: - - 14719 + - 14660 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14720 + - uid: 14661 components: - type: Transform pos: 41.5,-25.5 @@ -115662,12 +115667,12 @@ entities: showEnts: False occludes: True ents: - - 14721 + - 14662 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14722 + - uid: 14663 components: - type: Transform pos: 34.5,-4.5 @@ -115690,7 +115695,7 @@ entities: - 0 - 0 - 0 - - uid: 14723 + - uid: 14664 components: - type: Transform pos: -77.5,-20.5 @@ -115713,7 +115718,7 @@ entities: - 0 - 0 - 0 - - uid: 14724 + - uid: 14665 components: - type: Transform pos: -18.5,-62.5 @@ -115736,7 +115741,7 @@ entities: - 0 - 0 - 0 - - uid: 14725 + - uid: 14666 components: - type: Transform pos: 25.5,61.5 @@ -115765,12 +115770,12 @@ entities: showEnts: False occludes: True ents: - - 14726 + - 14667 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14727 + - uid: 14668 components: - type: Transform pos: 25.5,59.5 @@ -115793,7 +115798,7 @@ entities: - 0 - 0 - 0 - - uid: 14728 + - uid: 14669 components: - type: Transform pos: 40.5,-47.5 @@ -115816,7 +115821,7 @@ entities: - 0 - 0 - 0 - - uid: 14729 + - uid: 14670 components: - type: Transform pos: -38.5,2.5 @@ -115839,12 +115844,12 @@ entities: - 0 - 0 - 0 - - uid: 14730 + - uid: 14671 components: - type: Transform pos: -32.5,-53.5 parent: 2 - - uid: 14731 + - uid: 14672 components: - type: Transform pos: -52.5,-22.5 @@ -115873,12 +115878,12 @@ entities: showEnts: False occludes: True ents: - - 14732 + - 14673 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14733 + - uid: 14674 components: - type: Transform pos: -45.5,-37.5 @@ -115901,7 +115906,7 @@ entities: - 0 - 0 - 0 - - uid: 14734 + - uid: 14675 components: - type: Transform pos: -43.5,-46.5 @@ -115924,7 +115929,7 @@ entities: - 0 - 0 - 0 - - uid: 14735 + - uid: 14676 components: - type: Transform pos: -39.5,-75.5 @@ -115947,7 +115952,7 @@ entities: - 0 - 0 - 0 - - uid: 14736 + - uid: 14677 components: - type: Transform pos: 35.5,-23.5 @@ -115970,7 +115975,7 @@ entities: - 0 - 0 - 0 - - uid: 14737 + - uid: 14678 components: - type: Transform pos: 40.5,-37.5 @@ -115993,7 +115998,7 @@ entities: - 0 - 0 - 0 - - uid: 14738 + - uid: 14679 components: - type: Transform pos: 48.5,-47.5 @@ -116016,7 +116021,7 @@ entities: - 0 - 0 - 0 - - uid: 14739 + - uid: 14680 components: - type: Transform pos: 48.5,-27.5 @@ -116045,12 +116050,12 @@ entities: showEnts: False occludes: True ents: - - 14740 + - 14681 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14741 + - uid: 14682 components: - type: Transform pos: 43.5,-27.5 @@ -116073,7 +116078,7 @@ entities: - 0 - 0 - 0 - - uid: 14742 + - uid: 14683 components: - type: Transform pos: 36.5,-46.5 @@ -116096,7 +116101,7 @@ entities: - 0 - 0 - 0 - - uid: 14743 + - uid: 14684 components: - type: Transform pos: 18.5,-55.5 @@ -116119,79 +116124,79 @@ entities: - 0 - 0 - 0 - - uid: 14744 + - uid: 14685 components: - type: Transform pos: -57.5,-33.5 parent: 2 - - uid: 14745 + - uid: 14686 components: - type: Transform pos: -34.5,-69.5 parent: 2 - - uid: 14746 + - uid: 14687 components: - type: Transform pos: -35.5,-69.5 parent: 2 - - uid: 14747 + - uid: 14688 components: - type: Transform pos: -28.5,-58.5 parent: 2 - - uid: 14748 + - uid: 14689 components: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 14749 + - uid: 14690 components: - type: Transform pos: -35.500004,-17.5 parent: 2 - - uid: 14750 + - uid: 14691 components: - type: Transform pos: -48.5,-21.5 parent: 2 - - uid: 14751 + - uid: 14692 components: - type: Transform pos: -55.500004,-24.5 parent: 2 - - uid: 14752 + - uid: 14693 components: - type: Transform pos: -60.5,-31.5 parent: 2 - - uid: 14754 + - uid: 14694 components: - type: Transform pos: -61.5,-20.5 parent: 2 - - uid: 14755 + - uid: 14695 components: - type: Transform pos: -40.500004,1.4999999 parent: 2 - - uid: 14756 + - uid: 14696 components: - type: Transform pos: 34.499996,-54.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 14757 + - uid: 14697 components: - type: Transform pos: -62.5,2.5 parent: 2 - - uid: 14758 + - uid: 14698 components: - type: Transform pos: -63.5,2.5 parent: 2 - - uid: 14759 + - uid: 14699 components: - type: Transform pos: -57.5,44.5 @@ -116214,7 +116219,7 @@ entities: - 0 - 0 - 0 - - uid: 14760 + - uid: 14700 components: - type: Transform pos: -43.5,52.5 @@ -116237,7 +116242,7 @@ entities: - 0 - 0 - 0 - - uid: 14761 + - uid: 14701 components: - type: Transform pos: -55.5,-3.5 @@ -116260,7 +116265,7 @@ entities: - 0 - 0 - 0 - - uid: 14762 + - uid: 14702 components: - type: Transform pos: -56.5,-3.5 @@ -116283,7 +116288,7 @@ entities: - 0 - 0 - 0 - - uid: 14763 + - uid: 14703 components: - type: Transform pos: -50.5,6.5 @@ -116306,7 +116311,7 @@ entities: - 0 - 0 - 0 - - uid: 14764 + - uid: 14704 components: - type: Transform pos: -58.5,44.5 @@ -116329,7 +116334,7 @@ entities: - 0 - 0 - 0 - - uid: 14765 + - uid: 14705 components: - type: Transform pos: -51.5,40.5 @@ -116352,12 +116357,12 @@ entities: - 0 - 0 - 0 - - uid: 14766 + - uid: 14706 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 14767 + - uid: 14707 components: - type: Transform pos: -14.5,-55.5 @@ -116380,7 +116385,7 @@ entities: - 0 - 0 - 0 - - uid: 14768 + - uid: 14708 components: - type: Transform pos: 75.5,-45.5 @@ -116403,7 +116408,7 @@ entities: - 0 - 0 - 0 - - uid: 14769 + - uid: 14709 components: - type: Transform pos: -52.5,40.5 @@ -116426,12 +116431,12 @@ entities: - 0 - 0 - 0 - - uid: 14770 + - uid: 14710 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - uid: 14771 + - uid: 14711 components: - type: Transform pos: -53.5,4.5 @@ -116454,7 +116459,7 @@ entities: - 0 - 0 - 0 - - uid: 14772 + - uid: 14712 components: - type: Transform pos: -69.5,10.5 @@ -116477,14 +116482,14 @@ entities: - 0 - 0 - 0 - - uid: 14773 + - uid: 14713 components: - type: Transform pos: -77.5,1.5 parent: 2 - proto: ClosetSteelBase entities: - - uid: 14774 + - uid: 14714 components: - type: Transform pos: 8.5,-40.5 @@ -116507,7 +116512,7 @@ entities: - 0 - 0 - 0 - - uid: 14775 + - uid: 14715 components: - type: Transform pos: 76.5,23.5 @@ -116530,7 +116535,7 @@ entities: - 0 - 0 - 0 - - uid: 14776 + - uid: 14716 components: - type: Transform pos: 35.5,-6.5 @@ -116553,7 +116558,7 @@ entities: - 0 - 0 - 0 - - uid: 14777 + - uid: 14717 components: - type: Transform pos: 36.5,-6.5 @@ -116576,7 +116581,7 @@ entities: - 0 - 0 - 0 - - uid: 14778 + - uid: 14718 components: - type: Transform pos: 38.5,-66.5 @@ -116605,13 +116610,13 @@ entities: showEnts: False occludes: True ents: - - 14779 - - 14780 + - 14719 + - 14720 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14781 + - uid: 14721 components: - type: Transform pos: 42.5,-66.5 @@ -116659,7 +116664,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 14782 + - uid: 14722 components: - type: Transform pos: 13.5,-57.5 @@ -116682,7 +116687,7 @@ entities: - 0 - 0 - 0 - - uid: 14783 + - uid: 14723 components: - type: Transform pos: 12.5,-57.5 @@ -116705,7 +116710,7 @@ entities: - 0 - 0 - 0 - - uid: 14784 + - uid: 14724 components: - type: Transform pos: 11.5,-57.5 @@ -116728,7 +116733,7 @@ entities: - 0 - 0 - 0 - - uid: 14785 + - uid: 14725 components: - type: Transform pos: 34.5,-49.5 @@ -116751,7 +116756,7 @@ entities: - 0 - 0 - 0 - - uid: 14786 + - uid: 14726 components: - type: Transform pos: 34.5,-6.5 @@ -116774,7 +116779,7 @@ entities: - 0 - 0 - 0 - - uid: 14787 + - uid: 14727 components: - type: Transform pos: 43.5,-35.5 @@ -116797,7 +116802,7 @@ entities: - 0 - 0 - 0 - - uid: 14788 + - uid: 14728 components: - type: Transform pos: -55.5,-43.5 @@ -116826,37 +116831,37 @@ entities: showEnts: False occludes: True ents: - - 14790 - - 14789 - - 14792 - - 14791 + - 14730 + - 14729 + - 14732 + - 14731 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14793 + - uid: 14733 components: - type: Transform pos: 65.5,-9.5 parent: 2 - - uid: 14794 + - uid: 14734 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 14795 + - uid: 14735 components: - type: Transform pos: 6.5,-11.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 14796 + - uid: 14736 components: - type: Transform pos: -77.5,-25.5 parent: 2 - - uid: 14797 + - uid: 14737 components: - type: Transform pos: -56.5,17.5 @@ -116885,13 +116890,13 @@ entities: showEnts: False occludes: True ents: - - 14799 - - 14798 + - 14739 + - 14738 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14800 + - uid: 14740 components: - type: Transform pos: -55.5,-11.5 @@ -116914,7 +116919,7 @@ entities: - 0 - 0 - 0 - - uid: 14801 + - uid: 14741 components: - type: Transform pos: 11.5,85.5 @@ -116937,7 +116942,7 @@ entities: - 0 - 0 - 0 - - uid: 14802 + - uid: 14742 components: - type: Transform pos: 24.5,10.5 @@ -116960,7 +116965,7 @@ entities: - 0 - 0 - 0 - - uid: 14803 + - uid: 14743 components: - type: Transform pos: 11.5,84.5 @@ -116983,7 +116988,7 @@ entities: - 0 - 0 - 0 - - uid: 14804 + - uid: 14744 components: - type: Transform pos: -56.5,-11.5 @@ -117006,7 +117011,7 @@ entities: - 0 - 0 - 0 - - uid: 14805 + - uid: 14745 components: - type: Transform pos: -53.5,6.5 @@ -117029,7 +117034,7 @@ entities: - 0 - 0 - 0 - - uid: 14806 + - uid: 14746 components: - type: Transform pos: 23.5,10.5 @@ -117052,12 +117057,12 @@ entities: - 0 - 0 - 0 - - uid: 14807 + - uid: 14747 components: - type: Transform pos: -22.5,-47.5 parent: 2 - - uid: 14808 + - uid: 14748 components: - type: Transform pos: -50.5,4.5 @@ -117082,7 +117087,7 @@ entities: - 0 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 14809 + - uid: 14749 components: - type: Transform pos: 11.5,-2.5 @@ -117107,44 +117112,44 @@ entities: - 0 - proto: ClothingBackpackBrigmedic entities: - - uid: 14811 + - uid: 14751 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelBrigmedic entities: - - uid: 14812 + - uid: 14752 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelClown entities: - - uid: 14827 + - uid: 14767 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelMilitary entities: - - uid: 14839 + - uid: 14779 components: - type: Transform pos: -39.5,56.5 parent: 2 - proto: ClothingBackpackDuffelMime entities: - - uid: 14841 + - uid: 14781 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: GroupExamine @@ -117169,7 +117174,7 @@ entities: - type: InsideEntityStorage - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 14860 + - uid: 14801 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117177,7 +117182,7 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicateCarpSuit entities: - - uid: 14861 + - uid: 14802 components: - type: Transform pos: -74.452286,-31.415848 @@ -117203,7 +117208,7 @@ entities: title: null - proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 14862 + - uid: 14803 components: - type: Transform pos: 99.50743,-1.3897237 @@ -117229,46 +117234,46 @@ entities: title: null - proto: ClothingBackpackDuffelVirology entities: - - uid: 14863 + - uid: 14804 components: - type: Transform pos: 39.371994,-59.285408 parent: 2 - proto: ClothingBackpackIan entities: - - uid: 14864 + - uid: 14805 components: - type: Transform pos: -40.652157,-59.44616 parent: 2 - proto: ClothingBackpackMime entities: - - uid: 14842 + - uid: 14782 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSatchelBrigmedic entities: - - uid: 14813 + - uid: 14753 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSatchelClown entities: - - uid: 14828 + - uid: 14768 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14865 + - uid: 14806 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117276,88 +117281,88 @@ entities: parent: 2 - proto: ClothingBackpackSatchelLeather entities: - - uid: 14866 + - uid: 14807 components: - type: Transform pos: 38.42007,-13.187743 parent: 2 - proto: ClothingBackpackSatchelMime entities: - - uid: 14843 + - uid: 14783 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSyndicate entities: - - uid: 39102 + - uid: 38929 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltChampion entities: - - uid: 14867 + - uid: 14808 components: - type: Transform pos: 63.481087,-20.497055 parent: 2 - - uid: 14868 + - uid: 14809 components: - type: Transform pos: 63.65296,-20.13768 parent: 2 - - uid: 14869 + - uid: 14810 components: - type: Transform pos: 26.459219,12.402003 parent: 2 - proto: ClothingBeltJanitorFilled entities: - - uid: 1870 + - uid: 1874 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1871 + - uid: 1875 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltMedical entities: - - uid: 14814 + - uid: 14754 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltPlantFilled entities: - - uid: 14870 + - uid: 14811 components: - type: Transform pos: -34.420864,52.3301 parent: 2 - - uid: 14871 + - uid: 14812 components: - type: Transform pos: -34.610645,52.66603 parent: 2 - - uid: 39108 + - uid: 38935 components: - type: Transform pos: -21.581953,-2.861847 - parent: 38584 + parent: 38411 - proto: ClothingBeltSecurityFilled entities: - uid: 21 @@ -117369,19 +117374,19 @@ entities: - type: InsideEntityStorage - proto: ClothingBeltStorageWaistbag entities: - - uid: 14872 + - uid: 14813 components: - type: Transform pos: 38.466946,-9.531493 parent: 2 - proto: ClothingBeltUtility entities: - - uid: 14873 + - uid: 14814 components: - type: Transform pos: 9.527449,86.09863 parent: 2 - - uid: 14874 + - uid: 14815 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117389,38 +117394,38 @@ entities: parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 14875 + - uid: 14816 components: - type: Transform pos: -47.542614,28.682962 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 14798 + - uid: 14738 components: - type: Transform - parent: 14797 + parent: 14737 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14876 + - uid: 14817 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 14877 + - uid: 14818 components: - type: Transform pos: -33.5,60.5 parent: 2 - - uid: 14878 + - uid: 14819 components: - type: Transform pos: -49.5,-16.5 parent: 2 - type: Physics canCollide: False - - uid: 14879 + - uid: 14820 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117428,64 +117433,64 @@ entities: parent: 2 - proto: ClothingEyesBinoclardLenses entities: - - uid: 14880 + - uid: 14821 components: - type: Transform pos: -21.485056,-7.1794715 parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 14881 + - uid: 14822 components: - type: Transform pos: 73.36917,23.696793 parent: 2 - proto: ClothingEyesGlasses entities: - - uid: 14882 + - uid: 14823 components: - type: Transform pos: -36.412228,63.676514 parent: 2 - - uid: 14883 + - uid: 14824 components: - type: Transform pos: 28.440517,-26.436743 parent: 2 - - uid: 14884 + - uid: 14825 components: - type: Transform pos: 28.378017,-26.327368 parent: 2 - - uid: 14885 + - uid: 14826 components: - type: Transform pos: 29.542643,-1.1786702 parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: - - uid: 14886 + - uid: 14827 components: - type: Transform pos: 20.8171,62.763203 parent: 2 - proto: ClothingEyesGlassesMercenary entities: - - uid: 14616 + - uid: 14557 components: - type: Transform - parent: 14615 + parent: 14556 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14887 + - uid: 14828 components: - type: Transform pos: -36.385307,-54.463394 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 14888 + - uid: 14829 components: - type: Transform pos: -49.5,-12.5 @@ -117501,197 +117506,197 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14889 + - uid: 14830 components: - type: Transform pos: -78.5,1.5 parent: 2 - - uid: 14890 + - uid: 14831 components: - type: Transform pos: 34.431522,0.096880555 parent: 2 - - uid: 14896 + - uid: 14843 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingEyesHudDiagnostic entities: - - uid: 14905 + - uid: 14846 components: - type: Transform pos: -75.5,9.5 parent: 2 - - uid: 14906 + - uid: 14847 components: - type: Transform pos: 15.542948,77.507545 parent: 2 - - uid: 14907 + - uid: 14848 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14908 + - uid: 14849 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14909 + - uid: 14850 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14910 + - uid: 14851 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - proto: ClothingEyesHudMedical entities: - - uid: 14911 + - uid: 14852 components: - type: Transform pos: 30.585972,-26.50681 parent: 2 - - uid: 14912 + - uid: 14853 components: - type: Transform pos: 22.578123,-46.395374 parent: 2 - - uid: 14913 + - uid: 14854 components: - type: Transform pos: 30.710972,-26.428684 parent: 2 - - uid: 14914 + - uid: 14855 components: - type: Transform pos: 30.804722,-26.334932 parent: 2 - proto: ClothingEyesSalesman entities: - - uid: 14915 + - uid: 14856 components: - type: Transform pos: 34.52355,-29.358326 parent: 2 - proto: ClothingHandsGlovesAerostatic entities: - - uid: 14917 + - uid: 14858 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 14923 + - uid: 14864 components: - type: Transform pos: 55.321033,-16.213081 parent: 2 - - uid: 14924 + - uid: 14865 components: - type: Transform pos: 55.696033,-16.134956 parent: 2 - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 14925 + - uid: 14866 components: - type: Transform pos: 55.33666,-15.541207 parent: 2 - - uid: 14926 + - uid: 14867 components: - type: Transform pos: 55.727283,-15.384956 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 14927 + - uid: 14868 components: - type: Transform pos: 55.27416,-16.588081 parent: 2 - - uid: 14928 + - uid: 14869 components: - type: Transform pos: 55.64916,-16.509956 parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 14929 + - uid: 14870 components: - type: Transform pos: 55.30541,-15.884956 parent: 2 - - uid: 14930 + - uid: 14871 components: - type: Transform pos: 55.77416,-15.759956 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 14931 + - uid: 14872 components: - type: Transform pos: 14.491442,39.55459 parent: 2 - type: Physics canCollide: False - - uid: 14932 + - uid: 14873 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 14933 + - uid: 14874 components: - type: Transform pos: 33.5,32.5 parent: 2 - - uid: 14934 + - uid: 14875 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 14935 + - uid: 14876 components: - type: Transform pos: 53.542866,-53.372818 parent: 2 - type: Physics canCollide: False - - uid: 14936 + - uid: 14877 components: - type: Transform pos: 49.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 14937 + - uid: 14878 components: - type: Transform pos: 14.491442,39.71084 parent: 2 - type: Physics canCollide: False - - uid: 14938 + - uid: 14879 components: - type: Transform pos: -49.94571,-48.294197 parent: 2 - - uid: 14939 + - uid: 14880 components: - type: Transform pos: -22.50142,-44.5684 parent: 2 - - uid: 14940 + - uid: 14881 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117699,24 +117704,24 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorBrown entities: - - uid: 14941 + - uid: 14882 components: - type: Transform pos: 27.46601,36.112278 parent: 2 - - uid: 14942 + - uid: 14883 components: - type: Transform pos: -35.445805,-62.467285 parent: 2 - proto: ClothingHandsGlovesColorOrange entities: - - uid: 14943 + - uid: 14884 components: - type: Transform pos: 0.6084916,50.72592 parent: 2 - - uid: 14944 + - uid: 14885 components: - type: Transform pos: -77.531624,-30.35354 @@ -117725,93 +117730,103 @@ entities: canCollide: False - proto: ClothingHandsGlovesColorPurple entities: - - uid: 14945 + - uid: 14886 components: - type: Transform pos: 0.55345386,50.3957 parent: 2 - proto: ClothingHandsGlovesColorWhite entities: - - uid: 14946 + - uid: 14887 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 14948 + - uid: 14889 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15680 + components: + - type: Transform + pos: -0.31098497,50.690018 + parent: 2 + - uid: 38308 + components: + - type: Transform + pos: 0.03276498,50.736893 + parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 14799 + - uid: 14739 components: - type: Transform - parent: 14797 + parent: 14737 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14951 + - uid: 14892 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 14952 + - uid: 14893 components: - type: Transform pos: -45.44088,-13.045986 parent: 2 - - uid: 14953 + - uid: 14894 components: - type: Transform pos: -35.5,21.5 parent: 2 - - uid: 14954 + - uid: 14895 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 14955 + - uid: 14896 components: - type: Transform pos: -49.5,-12.5 parent: 2 - - uid: 14957 + - uid: 14898 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14961 + - uid: 14902 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14965 + - uid: 14906 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14968 + - uid: 14909 components: - type: Transform pos: 54.5,-42.5 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 14969 + - uid: 14910 components: - type: Transform pos: -41.49198,-55.389194 parent: 2 - - uid: 14970 + - uid: 14911 components: - type: Transform pos: 20.524391,10.520571 @@ -117825,42 +117840,42 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14971 + - uid: 14912 components: - type: Transform pos: 70.5,8.5 parent: 2 - - uid: 14973 + - uid: 14913 components: - type: Transform pos: 100.565186,-1.6605401 parent: 2 - - uid: 39109 - components: - - type: Transform - pos: 13.998112,19.283295 - parent: 38584 - - uid: 40936 + - uid: 14914 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.01646,-26.201363 parent: 2 + - uid: 38936 + components: + - type: Transform + pos: 13.998112,19.283295 + parent: 38411 - proto: ClothingHandsGlovesFingerlessInsulated entities: - - uid: 14974 + - uid: 14915 components: - type: Transform pos: 29.53348,59.58545 parent: 2 - proto: ClothingHandsGlovesHop entities: - - uid: 14975 + - uid: 14916 components: - type: Transform pos: -41.5,61.5 parent: 2 - - uid: 14976 + - uid: 14917 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117868,76 +117883,76 @@ entities: parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 14977 + - uid: 14918 components: - type: Transform pos: 3.3556955,-52.53906 parent: 2 - - uid: 14978 + - uid: 14919 components: - type: Transform pos: 33.512875,-52.369106 parent: 2 - type: Physics canCollide: False - - uid: 14979 + - uid: 14920 components: - type: Transform pos: 26.501759,9.535522 parent: 2 - - uid: 14980 + - uid: 14921 components: - type: Transform pos: -25.48231,-31.481985 parent: 2 - type: Physics canCollide: False - - uid: 14981 + - uid: 14922 components: - type: Transform pos: 6.5106626,-42.76824 parent: 2 - - uid: 14982 + - uid: 14923 components: - type: Transform pos: 45.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 14983 + - uid: 14924 components: - type: Transform pos: 27.495026,67.60358 parent: 2 - type: Physics canCollide: False - - uid: 14984 + - uid: 14925 components: - type: Transform pos: -3.4906864,-22.43212 parent: 2 - type: Physics canCollide: False - - uid: 14985 + - uid: 14926 components: - type: Transform pos: 3.8132644,-52.53906 parent: 2 - - uid: 14986 + - uid: 14927 components: - type: Transform pos: 3.666549,-13.525673 parent: 2 - proto: ClothingHandsGlovesLeather entities: - - uid: 14987 + - uid: 14928 components: - type: Transform pos: -25.485296,54.53175 parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 14988 + - uid: 14929 components: - type: Transform rot: 3.141592653589793 rad @@ -117945,38 +117960,38 @@ entities: parent: 2 - proto: ClothingHandsMercGlovesCombat entities: - - uid: 14617 + - uid: 14558 components: - type: Transform - parent: 14615 + parent: 14556 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14990 + - uid: 14931 components: - type: Transform - parent: 14989 + parent: 14930 - type: Physics canCollide: False - proto: ClothingHeadBandBlack entities: - - uid: 14991 + - uid: 14932 components: - type: Transform pos: -50.609512,-48.24995 parent: 2 - proto: ClothingHeadBandMerc entities: - - uid: 14683 + - uid: 14624 components: - type: Transform - parent: 14682 + parent: 14623 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatAnimalCat entities: - - uid: 14992 + - uid: 14933 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117984,7 +117999,7 @@ entities: parent: 2 - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 14993 + - uid: 14934 components: - type: Transform pos: 39.473694,-49.477642 @@ -117993,7 +118008,7 @@ entities: canCollide: False - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 14994 + - uid: 14935 components: - type: Transform pos: -51.484074,-22.45441 @@ -118002,7 +118017,7 @@ entities: canCollide: False - proto: ClothingHeadHatBeaverHat entities: - - uid: 14995 + - uid: 14936 components: - type: Transform pos: 11.610336,68.17239 @@ -118019,7 +118034,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14996 + - uid: 14937 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118027,52 +118042,52 @@ entities: parent: 2 - proto: ClothingHeadHatBeretBrigmedic entities: - - uid: 14998 + - uid: 14939 components: - type: Transform - parent: 14997 + parent: 14938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14999 + - uid: 14940 components: - type: Transform - parent: 14997 + parent: 14938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15001 + - uid: 14942 components: - type: Transform - parent: 15000 + parent: 14941 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15002 + - uid: 14943 components: - type: Transform pos: 26.16902,-24.54952 parent: 2 - - uid: 15003 + - uid: 14944 components: - type: Transform pos: 25.512768,-24.26827 parent: 2 - proto: ClothingHeadHatBeretEngineering entities: - - uid: 15004 + - uid: 14945 components: - type: Transform pos: -54.4179,-9.596214 parent: 2 - - uid: 15005 + - uid: 14946 components: - type: Transform pos: -56.24604,-13.244306 parent: 2 - proto: ClothingHeadHatBeretMedic entities: - - uid: 15006 + - uid: 14947 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118080,21 +118095,21 @@ entities: parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 15007 + - uid: 14948 components: - type: Transform pos: -20.530878,-38.289 parent: 2 - proto: ClothingHeadHatBeretSecurityMedic entities: - - uid: 14815 + - uid: 14755 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15008 + - uid: 14949 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118102,86 +118117,86 @@ entities: parent: 2 - proto: ClothingHeadHatBeretWarden entities: - - uid: 15010 + - uid: 14951 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatBlacksoft entities: - - uid: 15017 + - uid: 14958 components: - type: Transform pos: 17.44001,28.793232 parent: 2 - proto: ClothingHeadHatBowlerHat entities: - - uid: 15019 + - uid: 14960 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15025 + - uid: 14966 components: - type: Transform pos: -23.507126,23.627884 parent: 2 - - uid: 15026 + - uid: 14967 components: - type: Transform pos: 43.480366,-50.404068 parent: 2 - type: Physics canCollide: False - - uid: 15027 + - uid: 14968 components: - type: Transform pos: 20.17384,62.727947 parent: 2 - proto: ClothingHeadHatBunny entities: - - uid: 15028 + - uid: 14969 components: - type: Transform pos: 43.54777,15.417131 parent: 2 - - uid: 15029 + - uid: 14970 components: - type: Transform pos: 25.547163,17.707092 parent: 2 - - uid: 15030 + - uid: 14971 components: - type: Transform pos: 25.547163,17.472717 parent: 2 - - uid: 39110 + - uid: 38937 components: - type: Transform pos: 7.506109,-1.439148 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatCapWardenAlt entities: - - uid: 15011 + - uid: 14952 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatCardborg entities: - - uid: 14666 + - uid: 14607 components: - type: Transform - parent: 14665 + parent: 14606 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15031 + - uid: 14972 components: - type: Transform pos: 47.511616,-54.529068 @@ -118190,65 +118205,65 @@ entities: canCollide: False - proto: ClothingHeadHatCargosoft entities: - - uid: 15032 + - uid: 14973 components: - type: Transform pos: 17.440012,28.027607 parent: 2 - proto: ClothingHeadHatCasa entities: - - uid: 15033 + - uid: 14974 components: - type: Transform pos: -50.54699,-44.048893 parent: 2 - - uid: 15034 + - uid: 14975 components: - type: Transform pos: -52.47938,-45.096096 parent: 2 - proto: ClothingHeadHatChef entities: - - uid: 15035 + - uid: 14976 components: - type: Transform pos: 22.545242,65.61058 parent: 2 - type: Physics canCollide: False - - uid: 15036 + - uid: 14977 components: - type: Transform pos: -28.69005,32.65273 parent: 2 - - uid: 39111 + - uid: 38938 components: - type: Transform pos: -15.459048,-1.2791443 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatCone entities: - - uid: 434 + - uid: 14978 components: - type: Transform pos: 75.668,-18.767076 parent: 2 - - uid: 2797 + - uid: 14979 components: - type: Transform pos: 75.60551,-21.735826 parent: 2 - - uid: 2799 + - uid: 14980 components: - type: Transform pos: 75.63676,-21.095201 parent: 2 - - uid: 2800 + - uid: 14981 components: - type: Transform pos: 75.71488,-18.063951 parent: 2 - - uid: 15040 + - uid: 14982 components: - type: Transform pos: -56.52692,-17.587082 @@ -118257,159 +118272,166 @@ entities: canCollide: False - proto: ClothingHeadHatCowboyBrown entities: - - uid: 15041 + - uid: 14983 components: - type: Transform pos: 51.58269,29.669313 parent: 2 - proto: ClothingHeadHatFedoraBrown entities: - - uid: 1838 + - uid: 1842 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatFedoraGrey entities: - - uid: 15020 + - uid: 14961 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15042 + - uid: 14984 components: - type: Transform pos: -21.532356,19.607018 parent: 2 - proto: ClothingHeadHatFlowerWreath entities: - - uid: 15043 + - uid: 14985 components: - type: Transform pos: 71.87246,-17.56805 parent: 2 - - uid: 15044 + - uid: 14986 components: - type: Transform pos: 71.65119,-17.641798 parent: 2 - proto: ClothingHeadHatHardhatBlue entities: - - uid: 1297 + - uid: 14987 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.3602,-23.591988 parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 38310 + components: + - type: Transform + pos: -11.483725,-0.2599206 + parent: 2 - proto: ClothingHeadHatMimesoft entities: - - uid: 14844 + - uid: 14784 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatOrangesoft entities: - - uid: 15048 + - uid: 14988 components: - type: Transform pos: 17.486885,28.418232 parent: 2 - proto: ClothingHeadHatPaper entities: - - uid: 15049 + - uid: 14989 components: - type: Transform pos: -52.608284,-42.366573 parent: 2 - - uid: 15050 + - uid: 14990 components: - type: Transform pos: -52.40177,-42.51407 parent: 2 - proto: ClothingHeadHatPartyBlue entities: - - uid: 39112 + - uid: 38939 components: - type: Transform pos: -15.318423,-5.3572693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyGreen entities: - - uid: 39113 + - uid: 38940 components: - type: Transform pos: -12.724673,-5.3885193 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyRed entities: - - uid: 39114 + - uid: 38941 components: - type: Transform pos: -13.724673,-4.6697693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyWaterCup entities: - - uid: 15051 + - uid: 14991 components: - type: Transform pos: -26.689962,43.860317 parent: 2 - - uid: 15052 + - uid: 14992 components: - type: Transform pos: -26.314962,43.797817 parent: 2 - - uid: 15053 + - uid: 14993 components: - type: Transform pos: -26.846212,43.641567 parent: 2 - - uid: 15054 + - uid: 14994 components: - type: Transform pos: -26.518087,43.547817 parent: 2 - proto: ClothingHeadHatPartyYellow entities: - - uid: 39115 + - uid: 38942 components: - type: Transform pos: -14.412173,-5.9822693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPurplesoft entities: - - uid: 1872 + - uid: 1876 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatPurplesoftFlipped entities: - - uid: 1873 + - uid: 1877 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatRichard entities: - - uid: 1390 + - uid: 1394 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 34040 + - uid: 14995 components: - type: Transform pos: -61.5176,-23.48128 @@ -118419,74 +118441,74 @@ entities: radius: 3 - proto: ClothingHeadHatSecsoft entities: - - uid: 15055 + - uid: 14996 components: - type: Transform pos: 50.520054,-2.4849172 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: - - uid: 15056 + - uid: 14997 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 46.64194,-27.677853 parent: 2 - - uid: 15057 + - uid: 14998 components: - type: Transform pos: 4.0855947,-52.240982 parent: 2 - proto: ClothingHeadHatSyndie entities: - - uid: 2801 + - uid: 14999 components: - type: Transform pos: -77.52902,-3.0487504 parent: 2 - - uid: 15058 + - uid: 15000 components: - type: Transform pos: 100.429306,-1.9990987 parent: 2 - - uid: 39103 + - uid: 38930 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatUshanka entities: - - uid: 15059 + - uid: 15001 components: - type: Transform pos: 70.485535,-41.48498 parent: 2 - proto: ClothingHeadHatWarden entities: - - uid: 15012 + - uid: 14953 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatWelding entities: - - uid: 15060 + - uid: 15002 components: - type: Transform pos: -10.523207,-43.260536 parent: 2 - - uid: 15061 + - uid: 15003 components: - type: Transform pos: -49.5,-16.5 parent: 2 - type: Physics canCollide: False - - uid: 15062 + - uid: 15004 components: - type: Transform pos: -22.5,15.499999 @@ -118495,136 +118517,136 @@ entities: canCollide: False - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 15063 + - uid: 15005 components: - type: Transform pos: -10.742213,-43.474052 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 15064 + - uid: 15006 components: - type: Transform pos: -59.520313,42.482796 parent: 2 - type: Physics canCollide: False - - uid: 15065 + - uid: 15007 components: - type: Transform pos: 55.630886,-47.44692 parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 15066 + - uid: 15008 components: - type: Transform pos: -79.500916,13.625097 parent: 2 - - uid: 15067 + - uid: 15009 components: - type: Transform pos: 11.554202,-3.2498593 parent: 2 - proto: ClothingHeadHatYellowsoft entities: - - uid: 15068 + - uid: 15010 components: - type: Transform pos: 17.533762,27.715107 parent: 2 - proto: ClothingHeadHelmetCult entities: - - uid: 15069 + - uid: 15011 components: - type: Transform pos: -30.480253,-72.3255 parent: 2 - proto: ClothingHeadHelmetERTJanitor entities: - - uid: 1874 + - uid: 1878 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetEVA entities: - - uid: 39116 + - uid: 38943 components: - type: Transform pos: -14.5,36.5 - parent: 38584 - - uid: 39117 + parent: 38411 + - uid: 38944 components: - type: Transform pos: 12.87703,19.666779 - parent: 38584 + parent: 38411 - proto: ClothingHeadHelmetEVALarge entities: - - uid: 15070 + - uid: 15012 components: - type: Transform pos: 70.5,-49.5 parent: 2 - proto: ClothingHeadHelmetFire entities: - - uid: 15071 + - uid: 15013 components: - type: Transform pos: -29.5,-44.5 parent: 2 - proto: ClothingHeadHelmetPodWars entities: - - uid: 15072 + - uid: 15014 components: - type: Transform pos: -21.007933,-81.30595 parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 15073 + - uid: 15015 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - - uid: 15074 + - uid: 15016 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - - uid: 15075 + - uid: 15017 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - proto: ClothingHeadHelmetSecurityMedic entities: - - uid: 14816 + - uid: 14756 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetSwat entities: - - uid: 15076 + - uid: 15018 components: - type: Transform pos: 70.5,10.5 parent: 2 - proto: ClothingHeadNurseHat entities: - - uid: 15077 + - uid: 15019 components: - type: MetaData name: шапочка горничной - type: Transform pos: 0.027392589,50.83607 parent: 2 - - uid: 15078 + - uid: 15020 components: - type: MetaData desc: Для настоящих мужчин @@ -118634,7 +118656,7 @@ entities: parent: 2 - proto: ClothingHeadPyjamaSyndicatePink entities: - - uid: 15079 + - uid: 15021 components: - type: Transform rot: -1.5707953085339508 rad @@ -118642,7 +118664,7 @@ entities: parent: 2 - proto: ClothingHeadPyjamaSyndicateRed entities: - - uid: 15080 + - uid: 15022 components: - type: MetaData desc: Чтобы держать твою милую голову в тепле. @@ -118652,75 +118674,75 @@ entities: parent: 2 - proto: ClothingHeadsetBrigmedic entities: - - uid: 14817 + - uid: 14757 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadsetMining entities: - - uid: 15081 + - uid: 15023 components: - type: Transform pos: 33.407036,38.515415 parent: 2 - - uid: 15082 + - uid: 15024 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.662888,38.307953 parent: 2 - - uid: 39118 + - uid: 38945 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.640516,16.618439 - parent: 38584 + parent: 38411 - proto: ClothingMaskBandBlack entities: - - uid: 15083 + - uid: 15025 components: - type: Transform pos: -50.521004,-48.42694 parent: 2 - proto: ClothingMaskBat entities: - - uid: 15084 + - uid: 15026 components: - type: Transform pos: 10.709117,67.608955 parent: 2 - proto: ClothingMaskBear entities: - - uid: 15085 + - uid: 15027 components: - type: Transform pos: -3.1418045,0.1992526 parent: 2 - proto: ClothingMaskBee entities: - - uid: 15086 + - uid: 15028 components: - type: Transform pos: 48.406803,-25.420956 parent: 2 - proto: ClothingMaskBreath entities: - - uid: 15087 + - uid: 15029 components: - type: Transform pos: -40.586826,-13.385798 parent: 2 - type: Physics canCollide: False - - uid: 15088 + - uid: 15030 components: - type: Transform pos: 29.476248,60.442265 parent: 2 - - uid: 15089 + - uid: 15031 components: - type: Transform pos: -49.53151,20.5579 @@ -118729,14 +118751,14 @@ entities: canCollide: False - proto: ClothingMaskClown entities: - - uid: 14829 + - uid: 14769 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15090 + - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad @@ -118744,100 +118766,100 @@ entities: parent: 2 - proto: ClothingMaskClownBanana entities: - - uid: 14830 + - uid: 14770 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15091 + - uid: 15033 components: - type: Transform pos: -40.53833,-69.601776 parent: 2 - proto: ClothingMaskFox entities: - - uid: 15092 + - uid: 15034 components: - type: Transform pos: 10.886129,67.41721 parent: 2 - - uid: 15093 + - uid: 15035 components: - type: Transform pos: -4.823427,1.9396657 parent: 2 - proto: ClothingMaskGas entities: - - uid: 15094 + - uid: 15036 components: - type: Transform pos: -29.5,-44.5 parent: 2 - - uid: 15095 + - uid: 15037 components: - type: Transform pos: -18.498352,-32.40024 parent: 2 - - uid: 15096 + - uid: 15038 components: - type: Transform rot: 6.283185307179586 rad pos: -30.528467,-31.360748 parent: 2 - - uid: 15097 + - uid: 15039 components: - type: Transform rot: 6.283185307179586 rad pos: -29.768051,-31.44414 parent: 2 - - uid: 15098 + - uid: 15040 components: - type: Transform pos: -44.506374,-30.442978 parent: 2 - type: Physics canCollide: False - - uid: 15099 + - uid: 15041 components: - type: Transform pos: 49.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 15100 + - uid: 15042 components: - type: Transform pos: -40.5,3.5 parent: 2 - type: Physics canCollide: False - - uid: 15101 + - uid: 15043 components: - type: Transform pos: -39.517647,-50.443714 parent: 2 - type: Physics canCollide: False - - uid: 15102 + - uid: 15044 components: - type: Transform pos: -35.451183,-35.34068 parent: 2 - proto: ClothingMaskGasAtmos entities: - - uid: 15103 + - uid: 15045 components: - type: Transform pos: -60.561146,22.612343 parent: 2 - - uid: 15105 + - uid: 15046 components: - type: Transform pos: -62.433693,8.033986 parent: 2 - - uid: 40937 + - uid: 15047 components: - type: Transform rot: -1.5707963267948966 rad @@ -118845,155 +118867,155 @@ entities: parent: 2 - proto: ClothingMaskGasMerc entities: - - uid: 15106 + - uid: 15048 components: - type: Transform pos: -34.478718,-2.3417118 parent: 2 - proto: ClothingMaskGasSwat entities: - - uid: 15107 + - uid: 15049 components: - type: Transform pos: 68.5,10.5 parent: 2 - proto: ClothingMaskGasVoiceChameleon entities: - - uid: 15108 + - uid: 15050 components: - type: Transform pos: -24.500002,15.5 parent: 2 - proto: ClothingMaskJackal entities: - - uid: 15109 + - uid: 15051 components: - type: Transform pos: 11.299159,67.653206 parent: 2 - proto: ClothingMaskMime entities: - - uid: 14845 + - uid: 14785 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskMuzzle entities: - - uid: 14779 + - uid: 14719 components: - type: Transform - parent: 14778 + parent: 14718 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15110 + - uid: 15052 components: - type: Transform pos: 42.5,-66.5 parent: 2 - - uid: 15111 + - uid: 15053 components: - type: Transform pos: 73.37959,23.53001 parent: 2 - - uid: 15112 + - uid: 15054 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.8122,19.013836 parent: 2 - - uid: 39119 + - uid: 38946 components: - type: Transform rot: 3.141592653589793 rad pos: 3.4404716,34.765015 - parent: 38584 + parent: 38411 - proto: ClothingMaskSadMime entities: - - uid: 14846 + - uid: 14786 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 14847 + - uid: 14787 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyClown entities: - - uid: 14831 + - uid: 14771 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15113 + - uid: 15055 components: - type: Transform pos: 47.621845,-53.26381 parent: 2 - proto: ClothingMaskSexyMime entities: - - uid: 14848 + - uid: 14788 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15114 + - uid: 15056 components: - type: Transform pos: -5.3621683,26.622637 parent: 2 - - uid: 39120 + - uid: 38947 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5029716,34.733765 - parent: 38584 + parent: 38411 - proto: ClothingMaskSterile entities: - - uid: 15115 + - uid: 15057 components: - type: Transform pos: 6.4998994,-42.29039 parent: 2 - - uid: 15116 + - uid: 15058 components: - type: Transform rot: 3.141592653589793 rad pos: 13.401516,-44.661903 parent: 2 - - uid: 15117 + - uid: 15059 components: - type: Transform pos: 45.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 15118 + - uid: 15060 components: - type: Transform pos: 4.0884237,-13.635049 parent: 2 - - uid: 15119 + - uid: 15061 components: - type: Transform pos: 3.5965211,-52.177906 parent: 2 - - uid: 15120 + - uid: 15062 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119001,31 +119023,31 @@ entities: parent: 2 - proto: ClothingNeckBling entities: - - uid: 14516 + - uid: 14458 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15121 + - uid: 15063 components: - type: Transform pos: 25.709219,12.558254 parent: 2 - - uid: 15122 + - uid: 15064 components: - type: Transform pos: 25.599844,12.542628 parent: 2 - - uid: 15123 + - uid: 15065 components: - type: Transform pos: 25.318594,12.495754 parent: 2 - proto: ClothingNeckCloakAce entities: - - uid: 15124 + - uid: 15066 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119033,60 +119055,60 @@ entities: parent: 2 - proto: ClothingNeckCloakBi entities: - - uid: 15125 + - uid: 15067 components: - type: Transform pos: -55.703693,-37.289703 parent: 2 - - uid: 15126 + - uid: 15068 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 89.51352,-4.435248 parent: 2 - - uid: 15127 + - uid: 15069 components: - type: Transform pos: 51.496376,-25.427755 parent: 2 - proto: ClothingNeckCloakEnby entities: - - uid: 15128 + - uid: 15070 components: - type: Transform pos: 51.558907,-13.44254 parent: 2 - proto: ClothingNeckCloakGay entities: - - uid: 15129 + - uid: 15071 components: - type: Transform pos: -55.33888,-37.444935 parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - - uid: 15130 + - uid: 15072 components: - type: Transform pos: 43.456936,-24.711899 parent: 2 - proto: ClothingNeckCloakHerald entities: - - uid: 15131 + - uid: 15073 components: - type: Transform pos: 43.496037,-54.385834 parent: 2 - proto: ClothingNeckCloakIntersex entities: - - uid: 15132 + - uid: 15074 components: - type: Transform pos: -55.58888,-37.632435 parent: 2 - proto: ClothingNeckCloakLesbian entities: - - uid: 15133 + - uid: 15075 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119094,37 +119116,37 @@ entities: parent: 2 - proto: ClothingNeckCloakMiner entities: - - uid: 15134 + - uid: 15076 components: - type: Transform pos: -55.51422,-50.568737 parent: 2 - - uid: 15135 + - uid: 15077 components: - type: Transform pos: -102.4832,-18.476238 parent: 2 - - uid: 39121 + - uid: 38948 components: - type: Transform pos: -11.5,19.5 - parent: 38584 + parent: 38411 - proto: ClothingNeckCloakTrans entities: - - uid: 15136 + - uid: 15078 components: - type: Transform rot: 3.141592653589793 rad pos: -41.501427,-71.51004 parent: 2 - - uid: 15137 + - uid: 15079 components: - type: Transform pos: 49.497066,-22.42234 parent: 2 - proto: ClothingNeckCloakVoid entities: - - uid: 15138 + - uid: 15080 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119132,113 +119154,113 @@ entities: parent: 2 - proto: ClothingNeckClownmedal entities: - - uid: 15139 + - uid: 15081 components: - type: Transform pos: 40.95823,23.521482 parent: 2 - proto: ClothingNeckHeadphones entities: - - uid: 15140 + - uid: 15082 components: - type: Transform pos: 56.742912,15.760529 parent: 2 - - uid: 15141 + - uid: 15083 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15142 + - uid: 15084 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15143 + - uid: 15085 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15144 + - uid: 15086 components: - type: Transform pos: 56.727287,15.588654 parent: 2 - - uid: 15145 + - uid: 15087 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15146 + - uid: 15088 components: - type: Transform pos: 56.733246,15.377708 parent: 2 - - uid: 15147 + - uid: 15089 components: - type: Transform pos: -58.5,-49.5 parent: 2 - proto: ClothingNeckHorrific entities: - - uid: 15021 + - uid: 14962 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingNeckMantleCap entities: - - uid: 15148 + - uid: 15090 components: - type: Transform pos: 13.52143,0.6648903 parent: 2 - proto: ClothingNeckMantleCE entities: - - uid: 15149 + - uid: 15091 components: - type: Transform pos: -58.490314,5.5715113 parent: 2 - proto: ClothingNeckMantleCMO entities: - - uid: 15150 + - uid: 15092 components: - type: Transform pos: 24.487383,-50.378414 parent: 2 - proto: ClothingNeckMantleHOP entities: - - uid: 15151 + - uid: 15093 components: - type: Transform pos: -15.52096,-3.4409883 parent: 2 - proto: ClothingNeckMantleHOS entities: - - uid: 15152 + - uid: 15094 components: - type: Transform pos: 36.564354,22.725296 parent: 2 - proto: ClothingNeckMantleRD entities: - - uid: 15153 + - uid: 15095 components: - type: Transform pos: -16.468708,-45.430428 parent: 2 - proto: ClothingNeckNanoTrasenPin entities: - - uid: 15154 + - uid: 15096 components: - type: Transform pos: 71.252914,-17.538551 parent: 2 - proto: ClothingNeckScarfStripedBlack entities: - - uid: 15155 + - uid: 15097 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119246,64 +119268,64 @@ entities: parent: 2 - proto: ClothingNeckScarfStripedSyndieGreen entities: - - uid: 14900 + - uid: 14837 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckScarfStripedSyndieRed entities: - - uid: 2808 - components: - - type: Transform - pos: -77.48215,-3.5331254 - parent: 2 - - uid: 14904 + - uid: 14834 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15098 + components: + - type: Transform + pos: -77.48215,-3.5331254 + parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 9974 + - uid: 14789 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 13203 + - uid: 15099 components: - type: Transform pos: -5.6434183,26.544512 parent: 2 - proto: ClothingNeckStethoscope entities: - - uid: 15156 + - uid: 15100 components: - type: Transform pos: 14.568494,-58.43179 parent: 2 - - uid: 15157 + - uid: 15101 components: - type: Transform pos: 32.043938,-26.529804 parent: 2 - - uid: 15158 + - uid: 15102 components: - type: Transform pos: 31.84081,-26.48293 parent: 2 - - uid: 15159 + - uid: 15103 components: - type: Transform pos: 21.703972,-42.332386 parent: 2 - - uid: 15160 + - uid: 15104 components: - type: Transform pos: 47.5,-35.5 @@ -119312,36 +119334,36 @@ entities: canCollide: False - proto: ClothingNeckStoleChaplain entities: - - uid: 15161 + - uid: 15105 components: - type: Transform pos: -21.513214,-79.44685 parent: 2 - proto: ClothingNeckSyndicakePin entities: - - uid: 14893 + - uid: 14845 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39104 + - uid: 38931 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckTieDet entities: - - uid: 15022 + - uid: 14963 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15162 + - uid: 15106 components: - type: Transform pos: 36.449116,-50.524494 @@ -119350,30 +119372,30 @@ entities: canCollide: False - proto: ClothingNeckTieRed entities: - - uid: 15023 + - uid: 14964 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingNeckTieSci entities: - - uid: 15024 + - uid: 14965 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingOuterAerostaticBomberJacket entities: - - uid: 14918 + - uid: 14859 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15163 + - uid: 15107 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119381,43 +119403,43 @@ entities: parent: 2 - proto: ClothingOuterApronChef entities: - - uid: 15164 + - uid: 15108 components: - type: Transform pos: 22.545242,65.64183 parent: 2 - type: Physics canCollide: False - - uid: 15165 + - uid: 15109 components: - type: Transform pos: -28.37068,32.64315 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 15166 + - uid: 15110 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15167 + - uid: 15111 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15168 + - uid: 15112 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15169 + - uid: 15113 components: - type: Transform pos: 61.5,7.5 parent: 2 - proto: ClothingOuterArmorHeavy entities: - - uid: 15170 + - uid: 15114 components: - type: Transform pos: 69.5,10.5 @@ -119453,41 +119475,41 @@ entities: title: null - proto: ClothingOuterArmorReflective entities: - - uid: 15171 + - uid: 15115 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 15172 + - uid: 15116 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 15173 + - uid: 15117 components: - type: Transform pos: 61.5,8.5 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 15174 + - uid: 15118 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - - uid: 15175 + - uid: 15119 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - - uid: 15176 + - uid: 15120 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - proto: ClothingOuterCardborg entities: - - uid: 15177 + - uid: 15121 components: - type: Transform pos: 47.511616,-54.497818 @@ -119496,7 +119518,7 @@ entities: canCollide: False - proto: ClothingOuterCoatAMG entities: - - uid: 15178 + - uid: 15122 components: - type: Transform pos: 38.485973,-72.53411 @@ -119510,7 +119532,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15179 + - uid: 15123 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119518,14 +119540,14 @@ entities: parent: 2 - proto: ClothingOuterCoatExpensive entities: - - uid: 15180 + - uid: 15124 components: - type: Transform pos: 20.5,63.5 parent: 2 - proto: ClothingOuterCoatJensen entities: - - uid: 15181 + - uid: 15125 components: - type: Transform rot: -1.5707963267948966 rad @@ -119533,158 +119555,158 @@ entities: parent: 2 - proto: ClothingOuterCoatLabSecurityMedic entities: - - uid: 14818 + - uid: 14758 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatWardenAlt entities: - - uid: 15013 + - uid: 14954 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterDogi entities: - - uid: 15182 + - uid: 15126 components: - type: Transform pos: -55.5,-44.5 parent: 2 - proto: ClothingOuterHardsuitBrigmedic entities: - - uid: 14819 + - uid: 14759 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitClown entities: - - uid: 14832 + - uid: 14772 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitMime entities: - - uid: 14849 + - uid: 14790 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitSalvage entities: - - uid: 39122 + - uid: 38949 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,16.5 - parent: 38584 + parent: 38411 - proto: ClothingOuterHardsuitSyndicate entities: - - uid: 39123 + - uid: 38950 components: - type: Transform pos: -14.5,36.5 - parent: 38584 + parent: 38411 - proto: ClothingOuterHoodieBlack entities: - - uid: 15183 + - uid: 15127 components: - type: Transform pos: -50.255486,-48.44169 parent: 2 - proto: ClothingOuterRobesCult entities: - - uid: 15184 + - uid: 15128 components: - type: Transform pos: -30.609613,-76.48932 parent: 2 - proto: ClothingOuterStraightjacket entities: - - uid: 14780 + - uid: 14720 components: - type: Transform - parent: 14778 + parent: 14718 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15185 + - uid: 15129 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.45677,-66.6926 parent: 2 - - uid: 15186 + - uid: 15130 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.470066,2.4219537 parent: 2 - - uid: 15187 + - uid: 15131 components: - type: Transform pos: 70.371666,18.826336 parent: 2 - proto: ClothingOuterSuitCarp entities: - - uid: 15188 + - uid: 15132 components: - type: Transform pos: 25.5,67.5 parent: 2 - proto: ClothingOuterSuitEmergency entities: - - uid: 15189 + - uid: 15133 components: - type: Transform pos: 69.5,-49.5 parent: 2 - proto: ClothingOuterSuitFire entities: - - uid: 15190 + - uid: 15134 components: - type: Transform pos: -29.5,-44.5 parent: 2 - proto: ClothingOuterSuitIan entities: - - uid: 15191 + - uid: 15135 components: - type: Transform pos: -40.26674,-59.435745 parent: 2 - proto: ClothingOuterVestArmorMedSec entities: - - uid: 14820 + - uid: 14760 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - - uid: 15192 + - uid: 15136 components: - type: Transform pos: 20.535162,10.5619135 parent: 2 - type: Physics canCollide: False - - uid: 15193 + - uid: 15137 components: - type: Transform pos: 49.5,-37.5 @@ -119693,57 +119715,57 @@ entities: canCollide: False - proto: ClothingOuterVestSecurityMedic entities: - - uid: 14821 + - uid: 14761 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterCoat entities: - - uid: 15194 + - uid: 15138 components: - type: Transform pos: -30.328856,28.425974 parent: 2 - proto: ClothingOuterWinterMime entities: - - uid: 14850 + - uid: 14791 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterSyndie entities: - - uid: 14902 + - uid: 14842 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingRandomSpawner entities: - - uid: 15195 + - uid: 15139 components: - type: Transform pos: 11.345603,70.69221 parent: 2 - - uid: 15196 + - uid: 15140 components: - type: Transform pos: 11.6524935,70.487724 parent: 2 - - uid: 15197 + - uid: 15141 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.70558,-20.529505 parent: 2 - - uid: 15198 + - uid: 15142 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119751,16 +119773,16 @@ entities: parent: 2 - proto: ClothingShoesAerostatic entities: - - uid: 14919 + - uid: 14860 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCombatFilled entities: - - uid: 15199 + - uid: 15143 components: - type: Transform pos: 36.193935,21.963104 @@ -119776,48 +119798,48 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsLaceup entities: - - uid: 15200 + - uid: 15144 components: - type: Transform pos: -49.50318,-48.500687 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 14958 + - uid: 14899 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14962 + - uid: 14903 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14966 + - uid: 14907 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15201 + - uid: 15145 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.64907,-14.485182 parent: 2 - - uid: 15202 + - uid: 15146 components: - type: Transform pos: -45.534843,-13.538627 parent: 2 - type: Physics canCollide: False - - uid: 15203 + - uid: 15147 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119825,7 +119847,7 @@ entities: parent: 2 - proto: ClothingShoesBootsPerformer entities: - - uid: 15204 + - uid: 15148 components: - type: Transform rot: 6.283185307179586 rad @@ -119833,37 +119855,37 @@ entities: parent: 2 - proto: ClothingShoesBootsWinterSyndicate entities: - - uid: 14894 + - uid: 14840 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39105 + - uid: 38932 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesChef entities: - - uid: 15205 + - uid: 15149 components: - type: Transform pos: -32.67555,29.368694 parent: 2 - proto: ClothingShoesClownBanana entities: - - uid: 15206 + - uid: 15150 components: - type: Transform pos: -40.55056,-69.51617 parent: 2 - proto: ClothingShoesColorGreen entities: - - uid: 15207 + - uid: 15151 components: - type: MetaData desc: Поношенные салатовые кеды. @@ -119873,30 +119895,30 @@ entities: parent: 2 - proto: ClothingShoesCult entities: - - uid: 15208 + - uid: 15152 components: - type: Transform pos: -35.632423,-77.37206 parent: 2 - proto: ClothingShoesGaloshes entities: - - uid: 1875 + - uid: 1879 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1876 + - uid: 1880 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesGreenLizardskin entities: - - uid: 15209 + - uid: 15153 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119904,55 +119926,55 @@ entities: parent: 2 - proto: ClothingShoesSchoolBlack entities: - - uid: 14789 + - uid: 14729 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSchoolWhite entities: - - uid: 14790 + - uid: 14730 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSlippers entities: - - uid: 14897 + - uid: 14844 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15210 + - uid: 15154 components: - type: Transform pos: 49.5,-16.5 parent: 2 - proto: ClothingShoesSwat entities: - - uid: 15211 + - uid: 15155 components: - type: Transform pos: 68.5,8.5 parent: 2 - proto: ClothingShoesTourist entities: - - uid: 14949 + - uid: 14890 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesWizard entities: - - uid: 15212 + - uid: 15156 components: - type: MetaData desc: Японские деревянные сандалии. @@ -119960,7 +119982,7 @@ entities: - type: Transform pos: -45.41999,-48.686264 parent: 2 - - uid: 15213 + - uid: 15157 components: - type: MetaData desc: Японские деревянные сандалии. @@ -119968,138 +119990,138 @@ entities: - type: Transform pos: -46.688583,-48.627266 parent: 2 - - uid: 15215 + - uid: 15159 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15220 + - uid: 15164 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15225 + - uid: 15169 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUnderSocksCoder entities: - - uid: 15229 + - uid: 15173 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.679985,7.456685 parent: 2 - - uid: 15230 + - uid: 15174 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 15231 + - uid: 15175 components: - type: Transform pos: -29.321905,-69.36804 parent: 2 - proto: ClothingUniformJumpskirtBrigmedic entities: - - uid: 14822 + - uid: 14762 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtDetectiveGrey entities: - - uid: 15232 + - uid: 15176 components: - type: Transform pos: -36.5,59.5 parent: 2 - proto: ClothingUniformJumpskirtElegantMaid entities: - - uid: 14950 + - uid: 14891 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15233 + - uid: 15177 components: - type: Transform pos: 0.036769398,50.45079 parent: 2 - - uid: 15234 + - uid: 15178 components: - type: Transform pos: -0.33014846,50.450794 parent: 2 - proto: ClothingUniformJumpskirtHoSParadeMale entities: - - uid: 15236 + - uid: 15180 components: - type: Transform - parent: 15235 + parent: 15179 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 15238 + - uid: 15182 components: - type: Transform pos: 53.54969,-25.345713 parent: 2 - - uid: 15239 + - uid: 15183 components: - type: Transform pos: -0.29345667,50.450794 parent: 2 - proto: ClothingUniformJumpskirtJanitor entities: - - uid: 1877 + - uid: 1881 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1878 + - uid: 1882 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtMime entities: - - uid: 14851 + - uid: 14792 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPerformer entities: - - uid: 15240 + - uid: 15184 components: - type: Transform rot: 6.283185307179586 rad @@ -120107,198 +120129,198 @@ entities: parent: 2 - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 15242 + - uid: 15186 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15243 + - uid: 15187 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15247 + - uid: 15191 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15248 + - uid: 15192 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtSchool entities: - - uid: 14791 + - uid: 14731 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14792 + - uid: 14732 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitAerostatic entities: - - uid: 14920 + - uid: 14861 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitBrigmedic entities: - - uid: 14823 + - uid: 14763 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - - uid: 14833 + - uid: 14773 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClownBanana entities: - - uid: 14834 + - uid: 14774 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15251 + - uid: 15195 components: - type: Transform pos: -40.58059,-69.534195 parent: 2 - proto: ClothingUniformJumpsuitColorBlack entities: - - uid: 15252 + - uid: 15196 components: - type: Transform pos: -49.827705,-48.589184 parent: 2 - proto: ClothingUniformJumpsuitDetective entities: - - uid: 1839 + - uid: 1843 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitDetectiveGrey entities: - - uid: 15253 + - uid: 15197 components: - type: Transform pos: -36.5,59.5 parent: 2 - proto: ClothingUniformJumpsuitHoSParadeMale entities: - - uid: 15237 + - uid: 15181 components: - type: Transform - parent: 15235 + parent: 15179 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitKimono entities: - - uid: 15254 + - uid: 15198 components: - type: Transform pos: -46.6148,-48.380947 parent: 2 - - uid: 15255 + - uid: 15199 components: - type: Transform pos: -45.355076,-48.42951 parent: 2 - proto: ClothingUniformJumpsuitLoungewear entities: - - uid: 15256 + - uid: 15200 components: - type: Transform pos: -55.444347,-45.36158 parent: 2 - proto: ClothingUniformJumpsuitMime entities: - - uid: 14852 + - uid: 14793 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNanotrasen entities: - - uid: 15257 + - uid: 15201 components: - type: Transform pos: 6.542385,-83.541824 parent: 2 - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 15244 + - uid: 15188 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15245 + - uid: 15189 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15249 + - uid: 15193 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15250 + - uid: 15194 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateBlack entities: - - uid: 2807 + - uid: 15202 components: - type: Transform pos: -77.5134,-3.5800004 parent: 2 - proto: ClothingUniformJumpsuitRepairmanNT entities: - - uid: 15258 + - uid: 15203 components: - type: Transform rot: 1.5707973450558423 rad @@ -120306,7 +120328,7 @@ entities: parent: 2 - proto: ClothingUniformJumpsuitRepairmanSyndie entities: - - uid: 15259 + - uid: 15204 components: - type: Transform pos: -34.717594,-33.68413 @@ -120322,21 +120344,21 @@ entities: - type: InsideEntityStorage - proto: ClothingUniformJumpsuitSyndieFormal entities: - - uid: 39106 + - uid: 38933 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClownRecorder entities: - - uid: 15260 + - uid: 15205 components: - type: Transform pos: -8.497296,31.748924 parent: 2 - - uid: 15261 + - uid: 15206 components: - type: Transform rot: -1.5707953085339508 rad @@ -120344,927 +120366,927 @@ entities: parent: 2 - proto: Cobweb1 entities: - - uid: 15262 + - uid: 15207 components: - type: Transform pos: -41.5,-16.5 parent: 2 - - uid: 15263 + - uid: 15208 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 - - uid: 15264 + - uid: 15209 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-16.5 parent: 2 - - uid: 15265 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-17.5 parent: 2 - - uid: 15266 + - uid: 15211 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-17.5 parent: 2 - - uid: 15267 + - uid: 15212 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-17.5 parent: 2 - - uid: 15268 + - uid: 15213 components: - type: Transform pos: -41.5,-13.5 parent: 2 - - uid: 15269 + - uid: 15214 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-17.5 parent: 2 - - uid: 15270 + - uid: 15215 components: - type: Transform pos: -36.5,-72.5 parent: 2 - - uid: 15271 + - uid: 15216 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-62.5 parent: 2 - - uid: 15272 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-16.5 parent: 2 - - uid: 15273 + - uid: 15218 components: - type: Transform pos: -39.5,-17.5 parent: 2 - - uid: 15274 + - uid: 15219 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 2 - - uid: 15275 + - uid: 15220 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-16.5 parent: 2 - - uid: 15276 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.5 parent: 2 - - uid: 15277 + - uid: 15222 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 15278 + - uid: 15223 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,5.5 parent: 2 - - uid: 15279 + - uid: 15224 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,6.5 parent: 2 - - uid: 15280 + - uid: 15225 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-33.5 parent: 2 - - uid: 15281 + - uid: 15226 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 15282 + - uid: 15227 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - - uid: 15283 + - uid: 15228 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-35.5 parent: 2 - - uid: 15284 + - uid: 15229 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 15285 + - uid: 15230 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 15286 + - uid: 15231 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 15287 + - uid: 15232 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 - - uid: 15288 + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 15289 + - uid: 15234 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15290 + - uid: 15235 components: - type: Transform pos: -71.5,-39.5 parent: 2 - - uid: 15291 + - uid: 15236 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-47.5 parent: 2 - - uid: 15292 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-34.5 parent: 2 - - uid: 15293 + - uid: 15238 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-34.5 parent: 2 - - uid: 40983 + - uid: 15239 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-28.5 parent: 2 - - uid: 40984 + - uid: 15240 components: - type: Transform pos: -70.5,-25.5 parent: 2 - - uid: 40985 + - uid: 15241 components: - type: Transform pos: -69.5,-22.5 parent: 2 - - uid: 40986 + - uid: 15242 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-22.5 parent: 2 - - uid: 40987 + - uid: 15243 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-24.5 parent: 2 - - uid: 40994 + - uid: 15244 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-29.5 parent: 2 - - uid: 40995 + - uid: 15245 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 - - uid: 40996 + - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 40997 + - uid: 15247 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 - - uid: 40998 + - uid: 15248 components: - type: Transform pos: -70.5,-29.5 parent: 2 - - uid: 40999 + - uid: 15249 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-28.5 parent: 2 - - uid: 41000 + - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-26.5 parent: 2 - - uid: 41001 + - uid: 15251 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 41002 + - uid: 15252 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-26.5 parent: 2 - - uid: 41003 + - uid: 15253 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-23.5 parent: 2 - - uid: 41004 + - uid: 15254 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 - - uid: 41005 + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-23.5 parent: 2 - - uid: 41012 + - uid: 15256 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-27.5 parent: 2 - - uid: 41013 + - uid: 15257 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 41014 + - uid: 15258 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 41015 + - uid: 15259 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-27.5 parent: 2 - - uid: 41025 + - uid: 15260 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-27.5 parent: 2 - - uid: 41026 + - uid: 15261 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-27.5 parent: 2 - - uid: 41027 + - uid: 15262 components: - type: Transform pos: -70.5,-27.5 parent: 2 - - uid: 41028 + - uid: 15263 components: - type: Transform pos: -69.5,-28.5 parent: 2 - proto: Cobweb2 entities: - - uid: 15294 + - uid: 15264 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 - - uid: 15295 + - uid: 15265 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-16.5 parent: 2 - - uid: 15296 + - uid: 15266 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-14.5 parent: 2 - - uid: 15297 + - uid: 15267 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-15.5 parent: 2 - - uid: 15298 + - uid: 15268 components: - type: Transform pos: -38.5,-13.5 parent: 2 - - uid: 15299 + - uid: 15269 components: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 15300 + - uid: 15270 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-64.5 parent: 2 - - uid: 15301 + - uid: 15271 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-78.5 parent: 2 - - uid: 15302 + - uid: 15272 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-61.5 parent: 2 - - uid: 15303 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-15.5 parent: 2 - - uid: 15304 + - uid: 15274 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 - - uid: 15305 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 2 - - uid: 15306 + - uid: 15276 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 15307 + - uid: 15277 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 15308 + - uid: 15278 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-62.5 parent: 2 - - uid: 15309 + - uid: 15279 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-78.5 parent: 2 - - uid: 15310 + - uid: 15280 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15311 + - uid: 15281 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 15312 + - uid: 15282 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-36.5 parent: 2 - - uid: 15313 + - uid: 15283 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-34.5 parent: 2 - - uid: 15314 + - uid: 15284 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-36.5 parent: 2 - - uid: 15315 + - uid: 15285 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-33.5 parent: 2 - - uid: 15316 + - uid: 15286 components: - type: Transform pos: 100.5,-1.5 parent: 2 - - uid: 15317 + - uid: 15287 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,10.5 parent: 2 - - uid: 15318 + - uid: 15288 components: - type: Transform pos: 77.5,-1.5 parent: 2 - - uid: 15319 + - uid: 15289 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,4.5 parent: 2 - - uid: 15320 + - uid: 15290 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 15321 + - uid: 15291 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 15322 + - uid: 15292 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-35.5 parent: 2 - - uid: 15323 + - uid: 15293 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-36.5 parent: 2 - - uid: 15324 + - uid: 15294 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-35.5 parent: 2 - - uid: 15325 + - uid: 15295 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-35.5 parent: 2 - - uid: 15326 + - uid: 15296 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 15327 + - uid: 15297 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-34.5 parent: 2 - - uid: 15328 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 - - uid: 15329 + - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15330 + - uid: 15300 components: - type: Transform pos: -61.5,-39.5 parent: 2 - - uid: 15331 + - uid: 15301 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-42.5 parent: 2 - - uid: 15332 + - uid: 15302 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 - - uid: 15333 + - uid: 15303 components: - type: Transform pos: -70.5,-34.5 parent: 2 - - uid: 40988 + - uid: 15304 components: - type: Transform pos: -67.5,-25.5 parent: 2 - - uid: 40989 + - uid: 15305 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 40990 + - uid: 15306 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-28.5 parent: 2 - - uid: 40991 + - uid: 15307 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-29.5 parent: 2 - - uid: 40992 + - uid: 15308 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-29.5 parent: 2 - - uid: 40993 + - uid: 15309 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 41006 + - uid: 15310 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-24.5 parent: 2 - - uid: 41007 + - uid: 15311 components: - type: Transform pos: -69.5,-24.5 parent: 2 - - uid: 41008 + - uid: 15312 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-27.5 parent: 2 - - uid: 41009 + - uid: 15313 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-28.5 parent: 2 - - uid: 41010 + - uid: 15314 components: - type: Transform pos: -71.5,-28.5 parent: 2 - - uid: 41011 + - uid: 15315 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-26.5 parent: 2 - - uid: 41029 + - uid: 15316 components: - type: Transform pos: -70.5,-28.5 parent: 2 - proto: CombatKnife entities: - - uid: 15334 + - uid: 15317 components: - type: Transform pos: -20.695433,-81.44657 parent: 2 - proto: ComfyChair entities: - - uid: 15335 + - uid: 15318 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-9.5 parent: 2 - - uid: 15336 + - uid: 15319 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,16.5 parent: 2 - - uid: 15337 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,16.5 parent: 2 - - uid: 15338 + - uid: 15321 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-8.5 parent: 2 - - uid: 15339 + - uid: 15322 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,16.5 parent: 2 - - uid: 15340 + - uid: 15323 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-52.5 parent: 2 - - uid: 15341 + - uid: 15324 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 2 - - uid: 15342 + - uid: 15325 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 15343 + - uid: 15326 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 15344 + - uid: 15327 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2 - - uid: 15345 + - uid: 15328 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,9.5 parent: 2 - - uid: 15346 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 2 - - uid: 15347 + - uid: 15330 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,8.5 parent: 2 - - uid: 15348 + - uid: 15331 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 2 - - uid: 15349 + - uid: 15332 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 2 - - uid: 15350 + - uid: 15333 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 - - uid: 15351 + - uid: 15334 components: - type: Transform pos: -12.5,10.5 parent: 2 - - uid: 15352 + - uid: 15335 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 15353 + - uid: 15336 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 15354 + - uid: 15337 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,16.5 parent: 2 - - uid: 15355 + - uid: 15338 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,61.5 parent: 2 - - uid: 15356 + - uid: 15339 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 15357 + - uid: 15340 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,47.5 parent: 2 - - uid: 15358 + - uid: 15341 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-38.5 parent: 2 - - uid: 15359 + - uid: 15342 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-77.5 parent: 2 - - uid: 15360 + - uid: 15343 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 2 - - uid: 15361 + - uid: 15344 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,46.5 parent: 2 - - uid: 15362 + - uid: 15345 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,20.5 parent: 2 - - uid: 15363 + - uid: 15346 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 - - uid: 15364 + - uid: 15347 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 parent: 2 - - uid: 15365 + - uid: 15348 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-44.5 parent: 2 - - uid: 15366 + - uid: 15349 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 15367 + - uid: 15350 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - - uid: 15368 + - uid: 15351 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-30.5 parent: 2 - - uid: 15369 + - uid: 15352 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-9.5 parent: 2 - - uid: 15370 + - uid: 15353 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-30.5 parent: 2 - - uid: 15371 + - uid: 15354 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-66.5 parent: 2 - - uid: 15372 + - uid: 15355 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-67.5 parent: 2 - - uid: 15373 + - uid: 15356 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-66.5 parent: 2 - - uid: 15374 + - uid: 15357 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-67.5 parent: 2 - - uid: 15375 + - uid: 15358 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-41.5 parent: 2 - - uid: 15376 + - uid: 15359 components: - type: Transform pos: -70.5,-39.5 parent: 2 - - uid: 15377 + - uid: 15360 components: - type: Transform pos: -66.5,-39.5 parent: 2 - - uid: 15378 + - uid: 15361 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-41.5 parent: 2 - - uid: 15379 + - uid: 15362 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-44.5 parent: 2 - - uid: 15380 + - uid: 15363 components: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 15381 + - uid: 15364 components: - type: Transform pos: 54.5,31.5 parent: 2 - proto: CommsComputerCircuitboard entities: - - uid: 15382 + - uid: 15365 components: - type: Transform pos: -35.485302,19.5736 @@ -121273,29 +121295,29 @@ entities: canCollide: False - proto: ComputerAlert entities: - - uid: 15383 + - uid: 15366 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 15384 + - uid: 15367 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,18.5 parent: 2 - - uid: 15385 + - uid: 15368 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,6.5 parent: 2 - - uid: 15386 + - uid: 15369 components: - type: Transform pos: -59.5,20.5 parent: 2 - - uid: 15387 + - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad @@ -121303,13 +121325,13 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 15388 + - uid: 15371 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-46.5 parent: 2 - - uid: 15389 + - uid: 15372 components: - type: Transform rot: 1.5707963267948966 rad @@ -121317,179 +121339,179 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 25276: + 25131: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 15390 + - uid: 15373 components: - type: Transform pos: -1.5,-13.5 parent: 2 - - uid: 15391 + - uid: 15374 components: - type: Transform pos: 47.5,-13.5 parent: 2 - - uid: 15392 + - uid: 15375 components: - type: Transform pos: 36.5,-43.5 parent: 2 - - uid: 15393 + - uid: 15376 components: - type: Transform pos: 45.5,-37.5 parent: 2 - proto: ComputerBroken entities: - - uid: 15394 + - uid: 15377 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-76.5 parent: 2 - - uid: 15395 + - uid: 15378 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-29.5 parent: 2 - - uid: 15396 + - uid: 15379 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,62.5 parent: 2 - - uid: 15397 + - uid: 15380 components: - type: Transform pos: -40.5,-35.5 parent: 2 - - uid: 15398 + - uid: 15381 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 - - uid: 15399 + - uid: 15382 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-19.5 parent: 2 - - uid: 15400 + - uid: 15383 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-19.5 parent: 2 - - uid: 15401 + - uid: 15384 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-37.5 parent: 2 - - uid: 15402 + - uid: 15385 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-44.5 parent: 2 - - uid: 15403 + - uid: 15386 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-29.5 parent: 2 - - uid: 15404 + - uid: 15387 components: - type: Transform pos: -37.5,-59.5 parent: 2 - - uid: 15405 + - uid: 15388 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-39.5 parent: 2 - - uid: 15406 + - uid: 15389 components: - type: Transform pos: -67.5,-34.5 parent: 2 - - uid: 15407 + - uid: 15390 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-31.5 parent: 2 - - uid: 15408 + - uid: 15391 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 39124 + - uid: 38951 components: - type: Transform pos: -21.5,34.5 - parent: 38584 - - uid: 39125 + parent: 38411 + - uid: 38952 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,19.5 - parent: 38584 - - uid: 39126 + parent: 38411 + - uid: 38953 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 38584 + parent: 38411 - proto: ComputerCargoBounty entities: - - uid: 15409 + - uid: 15392 components: - type: Transform pos: 16.5,39.5 parent: 2 - proto: ComputerCargoOrders entities: - - uid: 15410 + - uid: 15393 components: - type: Transform pos: -3.5,18.5 parent: 2 - - uid: 15411 + - uid: 15394 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,50.5 parent: 2 - - uid: 15412 + - uid: 15395 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 - - uid: 15413 + - uid: 15396 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,33.5 parent: 2 - - uid: 15414 + - uid: 15397 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 15415 + - uid: 15398 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 - - uid: 15416 + - uid: 15399 components: - type: Transform rot: 1.5707963267948966 rad @@ -121497,7 +121519,7 @@ entities: parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 15417 + - uid: 15400 components: - type: Transform rot: -1.5707963267948966 rad @@ -121505,66 +121527,66 @@ entities: parent: 2 - proto: ComputerComms entities: - - uid: 15418 + - uid: 15401 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,5.5 parent: 2 - - uid: 15419 + - uid: 15402 components: - type: Transform pos: -0.5,14.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 15420 + - uid: 15403 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-4.5 parent: 2 - - uid: 15421 + - uid: 15404 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-28.5 parent: 2 - - uid: 15422 + - uid: 15405 components: - type: Transform pos: 50.5,9.5 parent: 2 - - uid: 15423 + - uid: 15406 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 - - uid: 15424 + - uid: 15407 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 - - uid: 15425 + - uid: 15408 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-48.5 parent: 2 - - uid: 15426 + - uid: 15409 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,62.5 parent: 2 - - uid: 15427 + - uid: 15410 components: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 15428 + - uid: 15411 components: - type: Transform rot: 1.5707963267948966 rad @@ -121572,70 +121594,70 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 15429 + - uid: 15412 components: - type: Transform pos: 51.5,9.5 parent: 2 - - uid: 15430 + - uid: 15413 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,1.5 parent: 2 - - uid: 15431 + - uid: 15414 components: - type: Transform pos: -1.5,18.5 parent: 2 - - uid: 15432 + - uid: 15415 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 15433 + - uid: 15416 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-55.5 parent: 2 - - uid: 15434 + - uid: 15417 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,21.5 parent: 2 - - uid: 15435 + - uid: 15418 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-29.5 parent: 2 - - uid: 15436 + - uid: 15419 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-4.5 parent: 2 - - uid: 15437 + - uid: 15420 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,9.5 parent: 2 - - uid: 15438 + - uid: 15421 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,9.5 parent: 2 - - uid: 15439 + - uid: 15422 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 2 - - uid: 15440 + - uid: 15423 components: - type: Transform rot: 3.141592653589793 rad @@ -121643,18 +121665,18 @@ entities: parent: 2 - proto: ComputerFrame entities: - - uid: 15441 + - uid: 15424 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,45.5 parent: 2 - - uid: 15442 + - uid: 15425 components: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 15443 + - uid: 15426 components: - type: Transform rot: 3.141592653589793 rad @@ -121662,13 +121684,13 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 15444 + - uid: 15427 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 2 - - uid: 15445 + - uid: 15428 components: - type: Transform rot: 3.141592653589793 rad @@ -121676,7 +121698,7 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 15446 + - uid: 15429 components: - type: Transform rot: -1.5707963267948966 rad @@ -121684,19 +121706,19 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 15447 + - uid: 15430 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-47.5 parent: 2 - - uid: 15448 + - uid: 15431 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 - - uid: 15449 + - uid: 15432 components: - type: Transform rot: 3.141592653589793 rad @@ -121704,59 +121726,59 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 15450 + - uid: 15433 components: - type: Transform pos: -19.5,-29.5 parent: 2 - - uid: 15451 + - uid: 15434 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-0.5 parent: 2 - - uid: 15452 + - uid: 15435 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,63.5 parent: 2 - - uid: 15453 + - uid: 15436 components: - type: Transform pos: 3.5,18.5 parent: 2 - - uid: 15454 + - uid: 15437 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 2 - - uid: 15455 + - uid: 15438 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-40.5 parent: 2 - - uid: 15456 + - uid: 15439 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-9.5 parent: 2 - - uid: 15457 + - uid: 15440 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,88.5 parent: 2 - - uid: 15458 + - uid: 15441 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,8.5 parent: 2 - - uid: 15459 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad @@ -121764,69 +121786,69 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 15460 + - uid: 15443 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,89.5 parent: 2 - - uid: 15461 + - uid: 15444 components: - type: Transform pos: 0.5,18.5 parent: 2 - - uid: 15462 + - uid: 15445 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-81.5 parent: 2 - - uid: 15463 + - uid: 15446 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 39127 + - uid: 38954 components: - type: Transform pos: 3.5,2.5 - parent: 38584 + parent: 38411 - proto: ComputerResearchAndDevelopment entities: - - uid: 15464 + - uid: 15447 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 15465 + - uid: 15448 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 15466 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 - - uid: 15467 + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 2 - - uid: 15468 + - uid: 15451 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 15469 + - uid: 15452 components: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 15470 + - uid: 15453 components: - type: Transform rot: 1.5707963267948966 rad @@ -121834,7 +121856,7 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 15471 + - uid: 15454 components: - type: Transform rot: -1.5707963267948966 rad @@ -121842,7 +121864,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 15472 + - uid: 15455 components: - type: Transform rot: -1.5707963267948966 rad @@ -121850,21 +121872,21 @@ entities: parent: 2 - proto: ComputerShuttle entities: - - uid: 38524 + - uid: 38351 components: - type: Transform pos: 1.5,4.5 - parent: 38484 + parent: 38311 - proto: ComputerShuttleCargo entities: - - uid: 15473 + - uid: 15456 components: - type: Transform pos: 17.5,39.5 parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 15474 + - uid: 15457 components: - type: Transform rot: -1.5707963267948966 rad @@ -121872,25 +121894,25 @@ entities: parent: 2 - proto: ComputerSolarControl entities: - - uid: 15475 + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,63.5 parent: 2 - - uid: 15476 + - uid: 15459 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-75.5 parent: 2 - - uid: 15477 + - uid: 15460 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,86.5 parent: 2 - - uid: 15478 + - uid: 15461 components: - type: Transform rot: -1.5707963267948966 rad @@ -121898,53 +121920,53 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 15479 + - uid: 15462 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,2.5 parent: 2 - - uid: 15480 + - uid: 15463 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,7.5 parent: 2 - - uid: 15481 + - uid: 15464 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 2 - - uid: 15482 + - uid: 15465 components: - type: Transform pos: 2.5,18.5 parent: 2 - - uid: 15483 + - uid: 15466 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 - - uid: 15484 + - uid: 15467 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 15485 + - uid: 15468 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 - - uid: 15486 + - uid: 15469 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-29.5 parent: 2 - - uid: 15487 + - uid: 15470 components: - type: Transform rot: -1.5707963267948966 rad @@ -121952,70 +121974,70 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 15488 + - uid: 15471 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,62.5 parent: 2 - - uid: 15489 + - uid: 15472 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,8.5 parent: 2 - - uid: 15490 + - uid: 15473 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-59.5 parent: 2 - - uid: 15491 + - uid: 15474 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 2 - - uid: 15492 + - uid: 15475 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,31.5 parent: 2 - - uid: 15493 + - uid: 15476 components: - type: Transform pos: 11.5,44.5 parent: 2 - - uid: 15494 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 - - uid: 15495 + - uid: 15478 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 15496 + - uid: 15479 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-30.5 parent: 2 - - uid: 15497 + - uid: 15480 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 15498 + - uid: 15481 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,8.5 parent: 2 - - uid: 15499 + - uid: 15482 components: - type: Transform rot: -1.5707963267948966 rad @@ -122023,7 +122045,7 @@ entities: parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 15500 + - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad @@ -122031,7 +122053,7 @@ entities: parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 15501 + - uid: 15484 components: - type: Transform rot: 1.5707963267948966 rad @@ -122039,44 +122061,44 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 15502 + - uid: 15485 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,7.5 parent: 2 - - uid: 15503 + - uid: 15486 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 15504 + - uid: 15487 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 2 - - uid: 15505 + - uid: 15488 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 15506 + - uid: 15489 components: - type: Transform pos: 47.5,-22.5 parent: 2 - - uid: 15507 + - uid: 15490 components: - type: Transform pos: 45.5,-24.5 parent: 2 - - uid: 15508 + - uid: 15491 components: - type: Transform pos: -1.5,37.5 parent: 2 - - uid: 15509 + - uid: 15492 components: - type: Transform rot: -1.5707963267948966 rad @@ -122084,30 +122106,30 @@ entities: parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 15510 + - uid: 15493 components: - type: Transform pos: 12.5,-5.5 parent: 2 - - uid: 15511 + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-9.5 parent: 2 - - uid: 15512 + - uid: 15495 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-10.5 parent: 2 - - uid: 15513 + - uid: 15496 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-9.5 parent: 2 - - uid: 15514 + - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad @@ -122115,362 +122137,362 @@ entities: parent: 2 - proto: ConvertAltarSpawner entities: - - uid: 15515 + - uid: 15498 components: - type: Transform pos: -16.5,-73.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 15516 + - uid: 15499 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,48.5 parent: 2 - - uid: 15517 + - uid: 15500 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,48.5 parent: 2 - - uid: 15518 + - uid: 15501 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,48.5 parent: 2 - - uid: 15519 + - uid: 15502 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,48.5 parent: 2 - - uid: 15520 + - uid: 15503 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,48.5 parent: 2 - - uid: 15521 + - uid: 15504 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,48.5 parent: 2 - - uid: 15522 + - uid: 15505 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,57.5 parent: 2 - - uid: 15523 + - uid: 15506 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,48.5 parent: 2 - - uid: 15524 + - uid: 15507 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 15525 + - uid: 15508 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,48.5 parent: 2 - - uid: 15526 + - uid: 15509 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,47.5 parent: 2 - - uid: 15527 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,52.5 parent: 2 - - uid: 15528 + - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,52.5 parent: 2 - - uid: 15529 + - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,52.5 parent: 2 - - uid: 15530 + - uid: 15513 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,52.5 parent: 2 - - uid: 15531 + - uid: 15514 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,52.5 parent: 2 - - uid: 15532 + - uid: 15515 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,52.5 parent: 2 - - uid: 15533 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,52.5 parent: 2 - - uid: 15534 + - uid: 15517 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,52.5 parent: 2 - - uid: 15535 + - uid: 15518 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,52.5 parent: 2 - - uid: 15536 + - uid: 15519 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,52.5 parent: 2 - - uid: 15537 + - uid: 15520 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,52.5 parent: 2 - - uid: 15538 + - uid: 15521 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,42.5 parent: 2 - - uid: 15539 + - uid: 15522 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,52.5 parent: 2 - - uid: 15540 + - uid: 15523 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,59.5 parent: 2 - - uid: 15541 + - uid: 15524 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,61.5 parent: 2 - - uid: 15542 + - uid: 15525 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,61.5 parent: 2 - - uid: 15543 + - uid: 15526 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,46.5 parent: 2 - - uid: 15544 + - uid: 15527 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,58.5 parent: 2 - - uid: 15545 + - uid: 15528 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,57.5 parent: 2 - - uid: 15546 + - uid: 15529 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,48.5 parent: 2 - - uid: 15547 + - uid: 15530 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,52.5 parent: 2 - - uid: 15548 + - uid: 15531 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,53.5 parent: 2 - - uid: 15549 + - uid: 15532 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,48.5 parent: 2 - - uid: 15550 + - uid: 15533 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,58.5 parent: 2 - - uid: 15551 + - uid: 15534 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,42.5 parent: 2 - - uid: 15552 + - uid: 15535 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 2 - - uid: 15553 + - uid: 15536 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,58.5 parent: 2 - - uid: 15554 + - uid: 15537 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,60.5 parent: 2 - - uid: 15555 + - uid: 15538 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,45.5 parent: 2 - - uid: 15556 + - uid: 15539 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,52.5 parent: 2 - - uid: 15557 + - uid: 15540 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,52.5 parent: 2 - - uid: 15558 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,61.5 parent: 2 - - uid: 15559 + - uid: 15542 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,44.5 parent: 2 - - uid: 15560 + - uid: 15543 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,48.5 parent: 2 - - uid: 15561 + - uid: 15544 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,48.5 parent: 2 - - uid: 15562 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,48.5 parent: 2 - - uid: 15563 + - uid: 15546 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,48.5 parent: 2 - - uid: 15564 + - uid: 15547 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,57.5 parent: 2 - - uid: 15565 + - uid: 15548 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,57.5 parent: 2 - - uid: 15566 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,57.5 parent: 2 - - uid: 15567 + - uid: 15550 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,61.5 parent: 2 - - uid: 15568 + - uid: 15551 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,58.5 parent: 2 - - uid: 15569 + - uid: 15552 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,61.5 parent: 2 - - uid: 15570 + - uid: 15553 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,61.5 parent: 2 - - uid: 15571 + - uid: 15554 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,58.5 parent: 2 - - uid: 39128 + - uid: 38955 components: - type: Transform pos: 0.5,2.5 - parent: 38584 - - uid: 39129 + parent: 38411 + - uid: 38956 components: - type: Transform pos: 0.5,1.5 - parent: 38584 + parent: 38411 - proto: CounterWoodFrame entities: - - uid: 15572 + - uid: 15555 components: - type: Transform rot: 3.141592653589793 rad @@ -122478,12 +122500,12 @@ entities: parent: 2 - proto: CowToolboxFilled entities: - - uid: 15573 + - uid: 15556 components: - type: Transform pos: -45.2872,-42.39937 parent: 2 - - uid: 15574 + - uid: 15557 components: - type: Transform rot: 3.141592653589793 rad @@ -122491,21 +122513,21 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 15575 + - uid: 15558 components: - type: Transform pos: -29.567314,-69.63001 parent: 2 - proto: CrateArtifactContainer entities: - - uid: 15576 + - uid: 15559 components: - type: Transform pos: -32.5,-46.5 parent: 2 - proto: CrateChemistrySupplies entities: - - uid: 15577 + - uid: 15560 components: - type: Transform pos: 22.5,-30.5 @@ -122534,14 +122556,14 @@ entities: - 0 - proto: CrateEmergencyAdvancedKit entities: - - uid: 15578 + - uid: 15561 components: - type: Transform pos: -29.5,-17.5 parent: 2 - proto: CrateEmergencyInternals entities: - - uid: 15579 + - uid: 15562 components: - type: Transform pos: -24.5,15.5 @@ -122593,7 +122615,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 15580 + - uid: 15563 components: - type: Transform pos: 21.5,-30.5 @@ -122620,7 +122642,7 @@ entities: - 0 - 0 - 0 - - uid: 15581 + - uid: 15564 components: - type: Transform pos: 12.5,80.5 @@ -122645,55 +122667,55 @@ entities: - 0 - proto: CrateEmptySpawner entities: - - uid: 15582 + - uid: 15565 components: - type: Transform pos: 22.5,41.5 parent: 2 - - uid: 15583 + - uid: 15566 components: - type: Transform pos: 26.5,-20.5 parent: 2 - - uid: 15584 + - uid: 15567 components: - type: Transform pos: 9.5,58.5 parent: 2 - - uid: 15585 + - uid: 15568 components: - type: Transform pos: 36.5,-52.5 parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 15586 + - uid: 15569 components: - type: Transform pos: -75.5,-3.5 parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 15587 + - uid: 15570 components: - type: Transform pos: -71.5,-11.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 15588 + - uid: 15571 components: - type: Transform pos: -72.5,-10.5 parent: 2 - - uid: 15589 + - uid: 15572 components: - type: Transform pos: -72.5,-9.5 parent: 2 - proto: CrateEngineeringSecure entities: - - uid: 1071 + - uid: 1061 components: - type: Transform pos: 16.5,77.5 @@ -122722,14 +122744,14 @@ entities: showEnts: False occludes: True ents: - - 1074 - - 1072 - - 1073 + - 1064 + - 1062 + - 1063 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15590 + - uid: 15573 components: - type: MetaData name: ящик топлива для генераторов @@ -122760,80 +122782,80 @@ entities: showEnts: False occludes: True ents: - - 15594 - - 15593 - - 15592 - - 15591 + - 15577 + - 15576 + - 15575 + - 15574 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringTeslaCoil entities: - - uid: 15595 + - uid: 15578 components: - type: Transform pos: -72.5,-12.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 15596 + - uid: 15579 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 15597 + - uid: 15580 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 15598 + - uid: 15581 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 15599 + - uid: 15582 components: - type: Transform pos: 10.5,50.5 parent: 2 - - uid: 15600 + - uid: 15583 components: - type: Transform pos: 16.5,41.5 parent: 2 - - uid: 15601 + - uid: 15584 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 15602 + - uid: 15585 components: - type: Transform pos: 9.5,59.5 parent: 2 - - uid: 15603 + - uid: 15586 components: - type: Transform pos: 12.5,50.5 parent: 2 - proto: CrateFoodPizzaLarge entities: - - uid: 15604 + - uid: 15587 components: - type: Transform pos: -55.500004,-28.5 parent: 2 - proto: CrateFoodSoftdrinksLarge entities: - - uid: 15605 + - uid: 15588 components: - type: Transform pos: 17.5,29.5 parent: 2 - proto: CrateFreezer entities: - - uid: 15606 + - uid: 15589 components: - type: Transform pos: 25.5,67.5 @@ -122885,7 +122907,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 15607 + - uid: 15590 components: - type: Transform pos: 97.5,-3.5 @@ -122896,20 +122918,20 @@ entities: showEnts: False occludes: True ents: - - 15616 - - 15615 - - 15614 - - 15613 - - 15612 - - 15611 - - 15610 - - 15609 - - 15608 + - 15599 + - 15598 + - 15597 + - 15596 + - 15595 + - 15594 + - 15593 + - 15592 + - 15591 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15617 + - uid: 15600 components: - type: Transform pos: 32.5,-65.5 @@ -122936,7 +122958,7 @@ entities: - 0 - 0 - 0 - - uid: 15618 + - uid: 15601 components: - type: Transform pos: 44.5,-37.5 @@ -122965,13 +122987,13 @@ entities: showEnts: False occludes: True ents: - - 15620 - - 15619 + - 15603 + - 15602 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15621 + - uid: 15604 components: - type: Transform pos: -67.5,56.5 @@ -123000,24 +123022,24 @@ entities: showEnts: False occludes: True ents: - - 15624 - - 15630 - - 15629 - - 15623 - - 15628 - - 15627 - - 15626 - - 15625 - - 15622 + - 15607 + - 15613 + - 15612 + - 15606 + - 15611 + - 15610 + - 15609 + - 15608 + - 15605 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 39130 + - uid: 38957 components: - type: Transform pos: -18.5,43.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -123042,19 +123064,19 @@ entities: showEnts: False occludes: True ents: - - 39136 - - 39135 - - 39134 - - 39133 - - 39132 - - 39131 + - 38963 + - 38962 + - 38961 + - 38960 + - 38959 + - 38958 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateFunBoardGames entities: - - uid: 15631 + - uid: 15614 components: - type: Transform pos: 3.5,-55.5 @@ -123077,69 +123099,69 @@ entities: - 0 - 0 - 0 - - uid: 15632 + - uid: 15615 components: - type: Transform pos: -31.5,-69.5 parent: 2 - proto: CrateFunDartsSet entities: - - uid: 15633 + - uid: 15616 components: - type: Transform pos: -42.500004,-9.5 parent: 2 - proto: CrateFunInstrumentsSpecial entities: - - uid: 15634 + - uid: 15617 components: - type: Transform pos: -37.5,-62.5 parent: 2 - proto: CrateFunInstrumentsVariety entities: - - uid: 39137 + - uid: 38964 components: - type: Transform pos: -10.5,-4.5 - parent: 38584 + parent: 38411 - proto: CrateFunInstrumentsWoodwind entities: - - uid: 15635 + - uid: 15618 components: - type: Transform pos: -42.5,-8.500001 parent: 2 - proto: CrateFunLizardPlushieBulk entities: - - uid: 15636 + - uid: 15619 components: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 15637 + - uid: 15620 components: - type: Transform pos: -113.50001,33.5 parent: 2 - - uid: 15638 + - uid: 15621 components: - type: Transform pos: -112.50001,33.5 parent: 2 - - uid: 15639 + - uid: 15622 components: - type: Transform pos: 17.5,30.5 parent: 2 - proto: CrateFunParty entities: - - uid: 15640 + - uid: 15623 components: - type: Transform pos: -1.5,39.5 parent: 2 - - uid: 15641 + - uid: 15624 components: - type: Transform pos: -65.5,-47.5 @@ -123162,26 +123184,26 @@ entities: - 0 - 0 - 0 - - uid: 15642 + - uid: 15625 components: - type: Transform pos: -1.5,38.5 parent: 2 - - uid: 15643 + - uid: 15626 components: - type: Transform pos: -33.5,-60.5 parent: 2 - proto: CrateFunPlushie entities: - - uid: 15644 + - uid: 15627 components: - type: Transform pos: -44.5,-32.5 parent: 2 - proto: CrateFunToyBox entities: - - uid: 15645 + - uid: 15628 components: - type: Transform pos: 86.50001,7.5 @@ -123204,19 +123226,19 @@ entities: - 0 - 0 - 0 - - uid: 15646 + - uid: 15629 components: - type: Transform pos: -52.5,-32.5 parent: 2 - - uid: 39138 + - uid: 38965 components: - type: Transform pos: -9.5,-5.5 - parent: 38584 + parent: 38411 - proto: CrateGenericSteel entities: - - uid: 15647 + - uid: 15630 components: - type: Transform pos: -24.5,-21.5 @@ -123243,7 +123265,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15648 + - uid: 15631 components: - type: Transform pos: 13.5,-54.5 @@ -123270,7 +123292,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15649 + - uid: 15632 components: - type: Transform pos: -56.5,-17.5 @@ -123297,7 +123319,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15650 + - uid: 15633 components: - type: Transform pos: -26.5,-75.5 @@ -123326,7 +123348,7 @@ entities: showEnts: False occludes: True ents: - - 15651 + - 15634 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -123335,7 +123357,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15652 + - uid: 15635 components: - type: Transform pos: 52.5,3.5 @@ -123364,14 +123386,14 @@ entities: showEnts: False occludes: True ents: - - 15653 - - 15655 - - 15654 + - 15636 + - 15638 + - 15637 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15656 + - uid: 15639 components: - type: Transform pos: -58.5,-20.5 @@ -123398,7 +123420,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15657 + - uid: 15640 components: - type: Transform pos: 24.5,54.5 @@ -123425,7 +123447,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15658 + - uid: 15641 components: - type: Transform pos: 25.5,54.5 @@ -123452,66 +123474,66 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15659 + - uid: 15642 components: - type: Transform pos: 30.5,-54.5 parent: 2 - proto: CrateHydroponics entities: - - uid: 15660 + - uid: 15643 components: - type: Transform pos: -24.5,53.5 parent: 2 - proto: CrateHydroponicsSeeds entities: - - uid: 15661 + - uid: 15644 components: - type: Transform pos: -36.5,45.5 parent: 2 - proto: CrateHydroSecure entities: - - uid: 15662 + - uid: 15645 components: - type: Transform pos: -26.5,55.5 parent: 2 - - uid: 15663 + - uid: 15646 components: - type: Transform pos: -36.5,46.5 parent: 2 - proto: CrateInternals entities: - - uid: 15664 + - uid: 15647 components: - type: Transform pos: 6.5,-15.5 parent: 2 - proto: CrateMaterialCardboard entities: - - uid: 15665 + - uid: 15648 components: - type: Transform pos: 52.5,-27.5 parent: 2 - proto: CrateMaterialPaper entities: - - uid: 15666 + - uid: 15649 components: - type: Transform pos: 43.499996,-47.5 parent: 2 - - uid: 39139 + - uid: 38966 components: - type: Transform pos: 1.5,-5.5 - parent: 38584 + parent: 38411 - proto: CrateMedical entities: - - uid: 879 + - uid: 871 components: - type: Transform pos: 60.5,-3.5 @@ -123540,20 +123562,20 @@ entities: showEnts: False occludes: True ents: - - 880 - - 884 - - 881 - - 886 - - 885 - - 882 - - 883 + - 872 + - 876 + - 873 + - 878 + - 877 + - 874 + - 875 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateMedicalScrubs entities: - - uid: 15667 + - uid: 15650 components: - type: Transform pos: 11.5,-40.5 @@ -123576,7 +123598,7 @@ entities: - 0 - 0 - 0 - - uid: 15668 + - uid: 15651 components: - type: Transform pos: 20.5,-37.5 @@ -123601,31 +123623,31 @@ entities: - 0 - proto: CrateMedicalSecure entities: - - uid: 15669 + - uid: 15652 components: - type: Transform pos: 40.5,-44.5 parent: 2 - - uid: 15670 + - uid: 15653 components: - type: Transform pos: -47.5,-39.5 parent: 2 - proto: CrateMedicalSupplies entities: - - uid: 39140 + - uid: 38967 components: - type: Transform pos: -8.5,-1.5 - parent: 38584 + parent: 38411 - proto: CrateMedicalSurgery entities: - - uid: 15671 + - uid: 15654 components: - type: Transform pos: 45.5,-27.5 parent: 2 - - uid: 15672 + - uid: 15655 components: - type: Transform pos: 31.5,-46.5 @@ -123650,21 +123672,21 @@ entities: - 0 - proto: CrateNPCCow entities: - - uid: 15673 + - uid: 15656 components: - type: Transform pos: -33.5,43.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 15674 + - uid: 15657 components: - type: Transform pos: 3.5,12.5 parent: 2 - proto: CratePlastic entities: - - uid: 15675 + - uid: 15658 components: - type: Transform pos: 27.5,59.5 @@ -123687,7 +123709,7 @@ entities: - 0 - 0 - 0 - - uid: 15676 + - uid: 15659 components: - type: Transform pos: 27.5,60.5 @@ -123712,54 +123734,59 @@ entities: - 0 - proto: CrateRodentCage entities: - - uid: 15677 + - uid: 15660 components: - type: Transform pos: -50.5,-39.5 parent: 2 - proto: CrateSecurityBiosuit entities: - - uid: 39141 + - uid: 38968 components: - type: Transform pos: 11.5,-7.5 - parent: 38584 + parent: 38411 - proto: CrateServiceBooks entities: - - uid: 15678 + - uid: 15661 components: - type: Transform pos: 53.5,-27.5 parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 15679 + - uid: 15662 components: - type: Transform pos: -37.5,63.5 parent: 2 - - uid: 15680 + - uid: 15663 components: - type: Transform pos: 44.499996,-47.5 parent: 2 - proto: CrateServiceGuidebooks entities: - - uid: 15681 + - uid: 15664 components: - type: Transform pos: 81.50001,4.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 15682 + - uid: 15665 components: - type: Transform pos: 21.5,49.5 parent: 2 + - uid: 30580 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 - proto: CrateServiceReplacementLights entities: - - uid: 15683 + - uid: 15666 components: - type: Transform pos: 16.5,45.5 @@ -123784,14 +123811,14 @@ entities: - 0 - proto: CrateStoneGrave entities: - - uid: 15684 + - uid: 15667 components: - type: Transform pos: -109.5,46.5 parent: 2 - proto: CrateSyndicate entities: - - uid: 14891 + - uid: 14832 components: - type: Transform pos: 41.499996,-2.5 @@ -123820,43 +123847,43 @@ entities: showEnts: False occludes: True ents: - - 14892 - - 14904 - - 14903 - - 14896 - - 14899 - - 14895 - - 14902 - - 14898 - - 14893 - - 14897 - - 14900 - - 14894 - - 14901 + - 14843 + - 14838 + - 14834 + - 14839 + - 14836 + - 14840 + - 14837 + - 14844 + - 14845 + - 14833 + - 14842 + - 14835 + - 14841 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateToyBox entities: - - uid: 15685 + - uid: 15668 components: - type: Transform pos: 11.5,66.5 parent: 2 - - uid: 15686 + - uid: 15669 components: - type: Transform pos: -33.5,-69.5 parent: 2 - - uid: 15687 + - uid: 15670 components: - type: Transform pos: 49.499996,-47.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 15688 + - uid: 15671 components: - type: Transform pos: -45.5,-46.5 @@ -123879,29 +123906,29 @@ entities: - 0 - 0 - 0 - - uid: 15689 + - uid: 15672 components: - type: Transform pos: -59.5,-33.5 parent: 2 - - uid: 15690 + - uid: 15673 components: - type: Transform pos: -27.5,39.5 parent: 2 - - uid: 15691 + - uid: 15674 components: - type: Transform pos: 31.5,56.5 parent: 2 - - uid: 15692 + - uid: 15675 components: - type: Transform pos: 31.5,57.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 15693 + - uid: 15676 components: - type: Transform pos: -37.5,-54.5 @@ -123924,16 +123951,16 @@ entities: - 0 - 0 - 0 - - uid: 15694 + - uid: 15677 components: - type: Transform pos: 0.5,56.5 parent: 2 - - uid: 39142 + - uid: 38969 components: - type: Transform pos: -16.5,32.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -123954,38 +123981,33 @@ entities: - 0 - proto: CrateTrashCartJani entities: - - uid: 15695 - components: - - type: Transform - pos: 4.5,50.5 - parent: 2 - - uid: 15696 + - uid: 15679 components: - type: Transform pos: -1.5,56.5 parent: 2 - - uid: 15697 + - uid: 38304 components: - type: Transform - pos: 4.5,51.5 + pos: 4.5,52.5 parent: 2 - proto: CrateVendingMachineRestockAutoDrobeFilled entities: - - uid: 15698 + - uid: 15681 components: - type: Transform pos: -50.5,-22.5 parent: 2 - proto: CrateVendingMachineRestockHappyHonkFilled entities: - - uid: 15699 + - uid: 15682 components: - type: Transform pos: -37.5,-3.5 parent: 2 - proto: CrayonBlack entities: - - uid: 15700 + - uid: 15683 components: - type: Transform rot: 1.5707963267948966 rad @@ -123993,50 +124015,50 @@ entities: parent: 2 - proto: CrayonBox entities: - - uid: 15701 + - uid: 15684 components: - type: Transform pos: -4.504109,26.61277 parent: 2 - - uid: 15702 + - uid: 15685 components: - type: Transform pos: 36.502167,-10.380364 parent: 2 - type: Physics canCollide: False - - uid: 15703 + - uid: 15686 components: - type: Transform pos: -12.505997,-81.42869 parent: 2 - type: Physics canCollide: False - - uid: 15704 + - uid: 15687 components: - type: Transform pos: -34.169643,-10.397047 parent: 2 - - uid: 15706 + - uid: 15689 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15714 + - uid: 15697 components: - type: Transform rot: 1.5707973450558423 rad pos: 79.29495,-1.4134865 parent: 2 - - uid: 15715 + - uid: 15698 components: - type: Transform rot: 1.5707973450558423 rad pos: 83.29495,-1.4134874 parent: 2 - - uid: 15716 + - uid: 15699 components: - type: Transform rot: 1.5707973450558423 rad @@ -124044,7 +124066,7 @@ entities: parent: 2 - proto: CrayonMime entities: - - uid: 15717 + - uid: 15700 components: - type: Transform rot: 1.5707963267948966 rad @@ -124052,20 +124074,20 @@ entities: parent: 2 - proto: CrayonPurple entities: - - uid: 15718 + - uid: 15701 components: - type: Transform pos: 53.63272,-37.217556 parent: 2 - proto: CrayonRainbow entities: - - uid: 15719 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad pos: 56.19522,-38.696724 parent: 2 - - uid: 15720 + - uid: 15703 components: - type: Transform rot: -1.5707953085339508 rad @@ -124073,33 +124095,33 @@ entities: parent: 2 - proto: CrayonRed entities: - - uid: 15721 + - uid: 15704 components: - type: Transform pos: 73.56891,-45.23019 parent: 2 - - uid: 15722 + - uid: 15705 components: - type: Transform pos: 73.64703,-45.245815 parent: 2 - - uid: 15723 + - uid: 15706 components: - type: Transform pos: 73.78766,-45.38644 parent: 2 - - uid: 15724 + - uid: 15707 components: - type: Transform pos: 73.72516,-45.339565 parent: 2 - - uid: 15725 + - uid: 15708 components: - type: Transform rot: 3.141592653589793 rad pos: 54.14314,-34.498806 parent: 2 - - uid: 15726 + - uid: 15709 components: - type: Transform rot: -1.5707963267948966 rad @@ -124107,7 +124129,7 @@ entities: parent: 2 - proto: Crematorium entities: - - uid: 15727 + - uid: 15710 components: - type: Transform rot: 1.5707963267948966 rad @@ -124133,14 +124155,14 @@ entities: - 0 - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 15728 + - uid: 15711 components: - type: Transform pos: -34.459133,19.569752 parent: 2 - proto: CrewMonitoringServer entities: - - uid: 15729 + - uid: 15712 components: - type: Transform pos: -124.5,36.5 @@ -124150,208 +124172,214 @@ entities: available: False - proto: Crowbar entities: - - uid: 15730 + - uid: 15713 components: - type: Transform pos: -33.5,8.5 parent: 2 - - uid: 15731 + - uid: 15714 components: - type: Transform pos: -22.5,-45.5 parent: 2 - - uid: 15732 + - uid: 15715 components: - type: Transform pos: -35.52931,-35.24693 parent: 2 - - uid: 15733 + - uid: 15716 components: - type: Transform rot: 3.141592653589793 rad pos: 7.506043,-48.954784 parent: 2 - - uid: 15734 + - uid: 15717 components: - type: Transform pos: -44.506374,-30.442978 parent: 2 - type: Physics canCollide: False - - uid: 15735 + - uid: 15718 components: - type: Transform pos: -69.46426,12.496543 parent: 2 - type: Physics canCollide: False - - uid: 15736 + - uid: 15719 components: - type: Transform pos: -45.5,-11.5 parent: 2 - type: Physics canCollide: False - - uid: 15737 + - uid: 15720 components: - type: Transform pos: -7.3657737,-61.45761 parent: 2 - type: Physics canCollide: False - - uid: 15738 + - uid: 15721 components: - type: Transform pos: 2.544464,65.46228 parent: 2 - type: Physics canCollide: False - - uid: 15739 + - uid: 15722 components: - type: Transform pos: 78.44689,8.815404 parent: 2 - - uid: 15741 + - uid: 15724 components: - type: MetaData desc: Многофункциональный инструмент для открывания дверей и борьбы с межпространственными захватчиками. Посыпаный алмазной струшкой. name: лом с алмазным напылением - type: Transform - parent: 15740 + parent: 15723 - type: Physics canCollide: False - - uid: 15742 + - uid: 15725 components: - type: MetaData name: монтировка с алмазным напылением - type: Transform - parent: 15740 + parent: 15723 - type: Physics canCollide: False - - uid: 15743 + - uid: 15726 components: - type: Transform pos: -39.486397,-50.506275 parent: 2 - type: Physics canCollide: False - - uid: 15744 + - uid: 15727 components: - type: Transform pos: -57.502308,-13.465677 parent: 2 - type: Physics canCollide: False - - uid: 15745 + - uid: 15728 components: - type: Transform pos: -24.473108,-66.50455 parent: 2 - type: Physics canCollide: False - - uid: 15746 + - uid: 15729 components: - type: Transform rot: 3.141592653589793 rad pos: 36.367867,-68.083046 parent: 2 - - uid: 15747 + - uid: 15730 components: - type: Transform pos: -21.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 15748 + - uid: 15731 components: - type: Transform pos: -56.635643,-1.4630084 parent: 2 - type: Physics canCollide: False - - uid: 15749 + - uid: 15732 components: - type: Transform pos: -18.545227,-32.384617 parent: 2 + - uid: 38305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.4373999,-37.47665 + parent: 2 - proto: CrowbarRed entities: - - uid: 15750 + - uid: 15733 components: - type: Transform pos: 74.5,-4.5 parent: 2 - - uid: 15751 + - uid: 15734 components: - type: Transform pos: 9.521271,64.44338 parent: 2 - type: Physics canCollide: False - - uid: 15752 + - uid: 15735 components: - type: Transform pos: 15.5,-54.5 parent: 2 - type: Physics canCollide: False - - uid: 15753 + - uid: 15736 components: - type: Transform pos: 9.598661,84.47283 parent: 2 - type: Physics canCollide: False - - uid: 15754 + - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.250557,57.466568 parent: 2 - - uid: 15755 + - uid: 15738 components: - type: Transform rot: 3.141592653589793 rad pos: -25.54941,-31.15223 parent: 2 - - uid: 15756 + - uid: 15739 components: - type: Transform pos: -22.533308,-60.389385 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 15757 + - uid: 15740 components: - type: Transform pos: 49.5,-13.5 parent: 2 - - uid: 15758 + - uid: 15741 components: - type: Transform pos: 38.5,-44.5 parent: 2 - - uid: 15759 + - uid: 15742 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-15.5 parent: 2 - - uid: 15760 + - uid: 15743 components: - type: Transform pos: 38.5,-43.5 parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 15761 + - uid: 15744 components: - type: Transform pos: 49.5,-15.5 parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 15762 + - uid: 15745 components: - type: Transform rot: 3.141592653589793 rad @@ -124359,50 +124387,50 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 15763 + - uid: 15746 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 15764 + - uid: 15747 components: - type: Transform pos: 23.5,-37.5 parent: 2 - proto: CultAltarSpawner entities: - - uid: 15765 + - uid: 15748 components: - type: Transform pos: -32.5,-77.5 parent: 2 - proto: CurtainsBlackOpen entities: - - uid: 15766 + - uid: 15749 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 15767 + - uid: 15750 components: - type: Transform pos: 98.5,12.5 parent: 2 - proto: CurtainsGreenOpen entities: - - uid: 15768 + - uid: 15751 components: - type: Transform pos: -113.5,33.5 parent: 2 - - uid: 15769 + - uid: 15752 components: - type: Transform pos: -112.5,33.5 parent: 2 - proto: CurtainsOrangeOpen entities: - - uid: 15770 + - uid: 15753 components: - type: Transform rot: 3.141592653589793 rad @@ -124410,29 +124438,29 @@ entities: parent: 2 - proto: CurtainSpawner entities: - - uid: 15771 + - uid: 15754 components: - type: Transform pos: -74.5,-21.5 parent: 2 - proto: CurtainsPinkOpen entities: - - uid: 15772 + - uid: 15755 components: - type: Transform pos: -58.5,-50.5 parent: 2 - - uid: 15773 + - uid: 15756 components: - type: Transform pos: -57.5,-50.5 parent: 2 - - uid: 15774 + - uid: 15757 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 15775 + - uid: 15758 components: - type: Transform rot: 1.5707963267948966 rad @@ -124440,44 +124468,44 @@ entities: parent: 2 - proto: CurtainsPurple entities: - - uid: 15776 + - uid: 15759 components: - type: Transform pos: -10.5,27.5 parent: 2 - - uid: 15777 + - uid: 15760 components: - type: Transform pos: -10.5,28.5 parent: 2 - - uid: 15778 + - uid: 15761 components: - type: Transform pos: -10.5,32.5 parent: 2 - - uid: 15779 + - uid: 15762 components: - type: Transform pos: -10.5,33.5 parent: 2 - - uid: 15780 + - uid: 15763 components: - type: Transform pos: -10.5,29.5 parent: 2 - - uid: 15781 + - uid: 15764 components: - type: Transform pos: -10.5,31.5 parent: 2 - - uid: 15782 + - uid: 15765 components: - type: Transform pos: -10.5,30.5 parent: 2 - proto: CurtainsPurpleOpen entities: - - uid: 15783 + - uid: 15766 components: - type: Transform rot: 3.141592653589793 rad @@ -124485,7 +124513,7 @@ entities: parent: 2 - proto: CurtainsRedOpen entities: - - uid: 15784 + - uid: 15767 components: - type: Transform rot: -1.5707963267948966 rad @@ -124493,67 +124521,67 @@ entities: parent: 2 - proto: CurtainsWhite entities: - - uid: 39143 + - uid: 38970 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,7.5 - parent: 38584 + parent: 38411 - proto: CurtainsWhiteOpen entities: - - uid: 15785 + - uid: 15768 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,6.5 parent: 2 - - uid: 15786 + - uid: 15769 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,4.5 parent: 2 - - uid: 39144 + - uid: 38971 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 - parent: 38584 - - uid: 39145 + parent: 38411 + - uid: 38972 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 - parent: 38584 - - uid: 39146 + parent: 38411 + - uid: 38973 components: - type: Transform pos: 3.5,-9.5 - parent: 38584 + parent: 38411 - proto: CyberPen entities: - - uid: 15787 + - uid: 15770 components: - type: Transform rot: 3.141593671850739 rad pos: -36.596897,63.51953 parent: 2 - - uid: 39147 + - uid: 38974 components: - type: Transform rot: 3.141592653589793 rad pos: -20.754562,33.469177 - parent: 38584 + parent: 38411 - proto: DawInstrument entities: - - uid: 15788 + - uid: 15771 components: - type: Transform pos: -5.5,54.5 parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 15789 + - uid: 15772 components: - type: Transform pos: -118.5,33.5 @@ -124564,7 +124592,7 @@ entities: location: Спутник ИИ - proto: DefaultStationBeaconAME entities: - - uid: 15790 + - uid: 15773 components: - type: Transform pos: -69.5,-0.5 @@ -124575,7 +124603,7 @@ entities: location: Инженерный - Генераторная - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 15791 + - uid: 15774 components: - type: Transform pos: -17.5,-57.5 @@ -124586,7 +124614,7 @@ entities: location: РнД - Аномалии - proto: DefaultStationBeaconArmory entities: - - uid: 15792 + - uid: 15775 components: - type: Transform pos: 62.5,6.5 @@ -124597,7 +124625,7 @@ entities: location: Сб - оружиейная - proto: DefaultStationBeaconArrivals entities: - - uid: 15793 + - uid: 15776 components: - type: Transform pos: -11.5,69.5 @@ -124608,7 +124636,7 @@ entities: location: Прибытие - proto: DefaultStationBeaconArtifactLab entities: - - uid: 15794 + - uid: 15777 components: - type: Transform pos: -28.5,-41.5 @@ -124619,7 +124647,7 @@ entities: location: Научный - Артефакты - proto: DefaultStationBeaconBar entities: - - uid: 15795 + - uid: 15778 components: - type: Transform pos: -10.5,41.5 @@ -124630,7 +124658,7 @@ entities: location: Сервис - Бар - proto: DefaultStationBeaconBotany entities: - - uid: 15796 + - uid: 15779 components: - type: Transform pos: -29.5,50.5 @@ -124641,7 +124669,7 @@ entities: location: Сервис - Гидропоника - proto: DefaultStationBeaconBridge entities: - - uid: 15797 + - uid: 15780 components: - type: Transform pos: -0.5,16.5 @@ -124652,7 +124680,7 @@ entities: location: Мостик - proto: DefaultStationBeaconBrig entities: - - uid: 15798 + - uid: 15781 components: - type: Transform pos: 47.5,7.5 @@ -124663,7 +124691,7 @@ entities: location: Бриг - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 15799 + - uid: 15782 components: - type: Transform pos: 9.5,3.5 @@ -124674,7 +124702,7 @@ entities: location: Мостик - Комната капитана - proto: DefaultStationBeaconCargoBay entities: - - uid: 15800 + - uid: 15783 components: - type: Transform pos: 37.5,50.5 @@ -124685,7 +124713,7 @@ entities: location: Карго - доки - proto: DefaultStationBeaconCERoom entities: - - uid: 15801 + - uid: 15784 components: - type: Transform pos: -63.5,7.5 @@ -124696,7 +124724,7 @@ entities: location: Инженерный - Офис старшего инженера - proto: DefaultStationBeaconChapel entities: - - uid: 15802 + - uid: 15785 components: - type: Transform pos: -16.5,-70.5 @@ -124707,7 +124735,7 @@ entities: location: Сервис - Церковь - proto: DefaultStationBeaconChemistry entities: - - uid: 15803 + - uid: 15786 components: - type: Transform pos: 5.5,-32.5 @@ -124718,7 +124746,7 @@ entities: location: Медотсек - Химия - proto: DefaultStationBeaconCMORoom entities: - - uid: 15804 + - uid: 15787 components: - type: Transform pos: 22.5,-45.5 @@ -124729,7 +124757,7 @@ entities: location: Медотсек - Кабинет главрача - proto: DefaultStationBeaconCourtroom entities: - - uid: 15805 + - uid: 15788 components: - type: Transform pos: 26.5,-1.5 @@ -124740,7 +124768,7 @@ entities: location: Зал суда - proto: DefaultStationBeaconCryonics entities: - - uid: 15806 + - uid: 15789 components: - type: Transform pos: 22.5,-39.5 @@ -124751,7 +124779,7 @@ entities: location: Медотсек - криогеника - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 15807 + - uid: 15790 components: - type: Transform pos: 30.5,10.5 @@ -124762,7 +124790,7 @@ entities: location: СБ - Офис детектива - proto: DefaultStationBeaconDisposals entities: - - uid: 15808 + - uid: 15791 components: - type: Transform pos: 28.5,59.5 @@ -124773,7 +124801,7 @@ entities: location: Мусоросброс - proto: DefaultStationBeaconDorms entities: - - uid: 15809 + - uid: 15792 components: - type: Transform pos: 48.5,-19.5 @@ -124784,7 +124812,7 @@ entities: location: Дормы - Дормы - proto: DefaultStationBeaconEngineering entities: - - uid: 15810 + - uid: 15793 components: - type: Transform pos: -53.5,11.5 @@ -124795,7 +124823,7 @@ entities: location: Инженерный отдел - proto: DefaultStationBeaconEvac entities: - - uid: 15811 + - uid: 15794 components: - type: Transform pos: -4.5,-72.5 @@ -124806,7 +124834,7 @@ entities: location: Отбытие - proto: DefaultStationBeaconEVAStorage entities: - - uid: 15812 + - uid: 15795 components: - type: Transform pos: -11.5,-13.5 @@ -124817,7 +124845,7 @@ entities: location: Командование - Хранение EVA - proto: DefaultStationBeaconGravGen entities: - - uid: 15813 + - uid: 15796 components: - type: Transform pos: -71.5,7.5 @@ -124828,7 +124856,7 @@ entities: location: Инженерный - Гравитационный генератор - proto: DefaultStationBeaconHOPOffice entities: - - uid: 15814 + - uid: 15797 components: - type: Transform pos: -10.5,1.5 @@ -124839,7 +124867,7 @@ entities: location: Мостик - Глава персонала - proto: DefaultStationBeaconHOSRoom entities: - - uid: 15815 + - uid: 15798 components: - type: Transform pos: 40.5,20.5 @@ -124850,7 +124878,7 @@ entities: location: Сб - кабинет ГСБ - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 15816 + - uid: 15799 components: - type: Transform pos: 1.5,52.5 @@ -124861,7 +124889,7 @@ entities: location: Комната уборщика - proto: DefaultStationBeaconKitchen entities: - - uid: 15817 + - uid: 15800 components: - type: Transform pos: -30.5,35.5 @@ -124872,7 +124900,7 @@ entities: location: Сервис - Кухня - proto: DefaultStationBeaconLawOffice entities: - - uid: 15818 + - uid: 15801 components: - type: Transform pos: 35.5,0.5 @@ -124883,7 +124911,7 @@ entities: location: Офис агента внутренних дел - proto: DefaultStationBeaconLibrary entities: - - uid: 15819 + - uid: 15802 components: - type: Transform pos: -28.5,-3.5 @@ -124894,7 +124922,7 @@ entities: location: Библиотека - Центральный зал - proto: DefaultStationBeaconMedbay entities: - - uid: 15820 + - uid: 15803 components: - type: Transform pos: 8.5,-25.5 @@ -124905,7 +124933,7 @@ entities: location: Медотсек - Лобби - proto: DefaultStationBeaconMorgue entities: - - uid: 15821 + - uid: 15804 components: - type: Transform pos: 7.5,-50.5 @@ -124916,7 +124944,7 @@ entities: location: Медотсек - Морг - proto: DefaultStationBeaconPermaBrig entities: - - uid: 15822 + - uid: 15805 components: - type: Transform pos: 91.5,1.5 @@ -124928,7 +124956,7 @@ entities: location: Пермабриг - proto: DefaultStationBeaconQMRoom entities: - - uid: 15823 + - uid: 15806 components: - type: Transform pos: 26.5,36.5 @@ -124939,7 +124967,7 @@ entities: location: Снабжение - Офис квартирмейстер - proto: DefaultStationBeaconRDRoom entities: - - uid: 15824 + - uid: 15807 components: - type: Transform pos: -18.5,-40.5 @@ -124950,7 +124978,7 @@ entities: location: Научный - Офис научного руководителя - proto: DefaultStationBeaconSalvage entities: - - uid: 15825 + - uid: 15808 components: - type: Transform pos: 23.5,29.5 @@ -124961,7 +124989,7 @@ entities: location: Карго - утилизаторная - proto: DefaultStationBeaconScience entities: - - uid: 15826 + - uid: 15809 components: - type: Transform pos: -6.5,-32.5 @@ -124972,7 +125000,7 @@ entities: location: Научный - РНД - proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 15827 + - uid: 15810 components: - type: Transform pos: 6.5,-59.5 @@ -124981,7 +125009,7 @@ entities: text: КПП - type: WarpPoint location: Отбытие - КПП - - uid: 15828 + - uid: 15811 components: - type: Transform pos: 2.5,63.5 @@ -124992,7 +125020,7 @@ entities: location: Прибытие - Контрольно-пропускной пункт - proto: DefaultStationBeaconServerRoom entities: - - uid: 15829 + - uid: 15812 components: - type: Transform pos: -19.5,-52.5 @@ -125003,7 +125031,7 @@ entities: location: Научный - серверная - proto: DefaultStationBeaconSolars entities: - - uid: 15830 + - uid: 15813 components: - type: Transform pos: 28.5,95.5 @@ -125012,7 +125040,7 @@ entities: text: Соляры - type: WarpPoint location: Соляры - Северо-восток - - uid: 15831 + - uid: 15814 components: - type: Transform pos: -75.5,73.5 @@ -125021,7 +125049,7 @@ entities: text: Соляры - type: WarpPoint location: Соляры - Северо-Запад - - uid: 15832 + - uid: 15815 components: - type: Transform pos: -51.5,-85.5 @@ -125032,7 +125060,7 @@ entities: location: Соляры - Юго-западные - proto: DefaultStationBeaconSupply entities: - - uid: 15833 + - uid: 15816 components: - type: Transform pos: 6.5,30.5 @@ -125043,7 +125071,7 @@ entities: location: Снабжение - Холл - proto: DefaultStationBeaconSurgery entities: - - uid: 15834 + - uid: 15817 components: - type: Transform pos: 32.5,-48.5 @@ -125054,7 +125082,7 @@ entities: location: Медбей - операционная - proto: DefaultStationBeaconTEG entities: - - uid: 15835 + - uid: 15818 components: - type: Transform pos: -51.5,50.5 @@ -125065,7 +125093,7 @@ entities: location: Атмос ТЭГ - proto: DefaultStationBeaconTheater entities: - - uid: 15836 + - uid: 15819 components: - type: Transform pos: -12.5,30.5 @@ -125077,7 +125105,7 @@ entities: location: Сцена - proto: DefaultStationBeaconToolRoom entities: - - uid: 15837 + - uid: 15820 components: - type: Transform pos: -26.5,12.5 @@ -125088,7 +125116,7 @@ entities: location: Инженерный - Основное хранилище инструментов - proto: DefaultStationBeaconWardensOffice entities: - - uid: 15838 + - uid: 15821 components: - type: Transform pos: 53.5,6.5 @@ -125099,120 +125127,120 @@ entities: location: СБ - смотритель - proto: DefibrillatorCabinetFilled entities: - - uid: 15839 + - uid: 15822 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 15840 + - uid: 15823 components: - type: Transform pos: 62.5,-1.5 parent: 2 - - uid: 15841 + - uid: 15824 components: - type: Transform pos: 37.5,-36.5 parent: 2 - - uid: 15842 + - uid: 15825 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-63.5 parent: 2 - - uid: 15843 + - uid: 15826 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 - - uid: 15844 + - uid: 15827 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,64.5 parent: 2 - - uid: 15845 + - uid: 15828 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 2 - - uid: 15846 + - uid: 15829 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - uid: 15847 + - uid: 15830 components: - type: Transform pos: 13.5,-41.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 15848 + - uid: 15831 components: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 15849 + - uid: 15832 components: - type: Transform pos: 68.5,7.5 parent: 2 - - uid: 15850 + - uid: 15833 components: - type: Transform pos: 70.5,7.5 parent: 2 - - uid: 15851 + - uid: 15834 components: - type: Transform pos: 8.5,-65.5 parent: 2 - - uid: 15852 + - uid: 15835 components: - type: Transform pos: 9.5,-65.5 parent: 2 - - uid: 15853 + - uid: 15836 components: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 15854 + - uid: 15837 components: - type: Transform pos: 9.5,-64.5 parent: 2 - - uid: 15855 + - uid: 15838 components: - type: Transform pos: 8.5,-63.5 parent: 2 - - uid: 15856 + - uid: 15839 components: - type: Transform pos: 9.5,-63.5 parent: 2 - proto: DeskBell entities: - - uid: 15857 + - uid: 15840 components: - type: Transform pos: -14.452139,4.661233 parent: 2 - - uid: 15858 + - uid: 15841 components: - type: Transform pos: -27.526104,38.624985 parent: 2 - - uid: 15859 + - uid: 15842 components: - type: Transform pos: -23.478344,51.650402 parent: 2 - - uid: 15860 + - uid: 15843 components: - type: Transform pos: -5.5,-28.5 @@ -125220,14 +125248,14 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 15861 + - uid: 15844 components: - type: Transform pos: 9.476555,32.663494 parent: 2 - proto: DiceBag entities: - - uid: 15862 + - uid: 15845 components: - type: Transform pos: 34.408886,-31.340927 @@ -125236,778 +125264,778 @@ entities: canCollide: False - proto: DiseaseDiagnoser entities: - - uid: 15863 + - uid: 15846 components: - type: Transform pos: 29.5,-65.5 parent: 2 - proto: DisposalBend entities: - - uid: 15864 + - uid: 15847 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,12.5 parent: 2 - - uid: 15865 + - uid: 15848 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,20.5 parent: 2 - - uid: 15866 + - uid: 15849 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 15867 + - uid: 15850 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,48.5 parent: 2 - - uid: 15868 + - uid: 15851 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 - - uid: 15869 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,33.5 parent: 2 - - uid: 15870 + - uid: 15853 components: - type: Transform pos: -29.5,33.5 parent: 2 - - uid: 15871 + - uid: 15854 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,36.5 parent: 2 - - uid: 15872 + - uid: 15855 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,28.5 parent: 2 - - uid: 15873 + - uid: 15856 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,28.5 parent: 2 - - uid: 15874 + - uid: 15857 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,57.5 parent: 2 - - uid: 15875 + - uid: 15858 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,56.5 parent: 2 - - uid: 15876 + - uid: 15859 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-19.5 parent: 2 - - uid: 15877 + - uid: 15860 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 - - uid: 15878 + - uid: 15861 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 15879 + - uid: 15862 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,47.5 parent: 2 - - uid: 15880 + - uid: 15863 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,37.5 parent: 2 - - uid: 15881 + - uid: 15864 components: - type: Transform pos: 36.5,-73.5 parent: 2 - - uid: 15882 + - uid: 15865 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-68.5 parent: 2 - - uid: 15883 + - uid: 15866 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-73.5 parent: 2 - - uid: 15884 + - uid: 15867 components: - type: Transform pos: 35.5,-68.5 parent: 2 - - uid: 15885 + - uid: 15868 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 15886 + - uid: 15869 components: - type: Transform pos: 42.5,30.5 parent: 2 - - uid: 15887 + - uid: 15870 components: - type: Transform pos: -46.5,21.5 parent: 2 - - uid: 15888 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,36.5 parent: 2 - - uid: 15889 + - uid: 15872 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-79.5 parent: 2 - - uid: 15890 + - uid: 15873 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,45.5 parent: 2 - - uid: 15891 + - uid: 15874 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,4.5 parent: 2 - - uid: 15892 + - uid: 15875 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 15893 + - uid: 15876 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,18.5 parent: 2 - - uid: 15894 + - uid: 15877 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,31.5 parent: 2 - - uid: 15895 + - uid: 15878 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,57.5 parent: 2 - - uid: 15896 + - uid: 15879 components: - type: Transform pos: -54.5,42.5 parent: 2 - - uid: 15897 + - uid: 15880 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,42.5 parent: 2 - - uid: 15898 + - uid: 15881 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,27.5 parent: 2 - - uid: 15899 + - uid: 15882 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,34.5 parent: 2 - - uid: 15900 + - uid: 15883 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 15901 + - uid: 15884 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,55.5 parent: 2 - - uid: 15902 + - uid: 15885 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,30.5 parent: 2 - - uid: 15903 + - uid: 15886 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 15904 + - uid: 15887 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,55.5 parent: 2 - - uid: 15905 + - uid: 15888 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 15906 + - uid: 15889 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,45.5 parent: 2 - - uid: 15907 + - uid: 15890 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 15908 + - uid: 15891 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 15909 + - uid: 15892 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 15910 + - uid: 15893 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,24.5 parent: 2 - - uid: 15911 + - uid: 15894 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,14.5 parent: 2 - - uid: 15912 + - uid: 15895 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 - - uid: 15913 + - uid: 15896 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,10.5 parent: 2 - - uid: 15914 + - uid: 15897 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,56.5 parent: 2 - - uid: 15915 + - uid: 15898 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 15916 + - uid: 15899 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,82.5 parent: 2 - - uid: 15917 + - uid: 15900 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,68.5 parent: 2 - - uid: 15918 + - uid: 15901 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,68.5 parent: 2 - - uid: 15919 + - uid: 15902 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,68.5 parent: 2 - - uid: 15920 + - uid: 15903 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 15921 + - uid: 15904 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,65.5 parent: 2 - - uid: 15922 + - uid: 15905 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,65.5 parent: 2 - - uid: 15923 + - uid: 15906 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,61.5 parent: 2 - - uid: 15924 + - uid: 15907 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,46.5 parent: 2 - - uid: 15925 + - uid: 15908 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,36.5 parent: 2 - - uid: 15926 + - uid: 15909 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,33.5 parent: 2 - - uid: 15927 + - uid: 15910 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 15928 + - uid: 15911 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 15929 + - uid: 15912 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 15930 + - uid: 15913 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,12.5 parent: 2 - - uid: 15931 + - uid: 15914 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-64.5 parent: 2 - - uid: 15932 + - uid: 15915 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,-79.5 parent: 2 - - uid: 15933 + - uid: 15916 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 15934 + - uid: 15917 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 - - uid: 15935 + - uid: 15918 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-77.5 parent: 2 - - uid: 15936 + - uid: 15919 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 15937 + - uid: 15920 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-27.5 parent: 2 - - uid: 15938 + - uid: 15921 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-34.5 parent: 2 - - uid: 15939 + - uid: 15922 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 15940 + - uid: 15923 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 - - uid: 15941 + - uid: 15924 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 - - uid: 15942 + - uid: 15925 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-34.5 parent: 2 - - uid: 15943 + - uid: 15926 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-46.5 parent: 2 - - uid: 15944 + - uid: 15927 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 - - uid: 15945 + - uid: 15928 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 - - uid: 15946 + - uid: 15929 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-39.5 parent: 2 - - uid: 15947 + - uid: 15930 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-45.5 parent: 2 - - uid: 15948 + - uid: 15931 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-45.5 parent: 2 - - uid: 15949 + - uid: 15932 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - - uid: 15950 + - uid: 15933 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 15951 + - uid: 15934 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-52.5 parent: 2 - - uid: 15952 + - uid: 15935 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-53.5 parent: 2 - - uid: 15953 + - uid: 15936 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-57.5 parent: 2 - - uid: 15954 + - uid: 15937 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 - - uid: 15955 + - uid: 15938 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 - - uid: 15956 + - uid: 15939 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 - - uid: 15957 + - uid: 15940 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 15958 + - uid: 15941 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-34.5 parent: 2 - - uid: 15959 + - uid: 15942 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-19.5 parent: 2 - - uid: 15960 + - uid: 15943 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 - - uid: 15961 + - uid: 15944 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-11.5 parent: 2 - - uid: 15962 + - uid: 15945 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-11.5 parent: 2 - - uid: 15963 + - uid: 15946 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-2.5 parent: 2 - - uid: 15964 + - uid: 15947 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 - - uid: 15965 + - uid: 15948 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,9.5 parent: 2 - - uid: 15966 + - uid: 15949 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 15967 + - uid: 15950 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,4.5 parent: 2 - - uid: 15968 + - uid: 15951 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,4.5 parent: 2 - - uid: 15969 + - uid: 15952 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 15970 + - uid: 15953 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,25.5 parent: 2 - - uid: 15971 + - uid: 15954 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,22.5 parent: 2 - - uid: 15972 + - uid: 15955 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,22.5 parent: 2 - - uid: 15973 + - uid: 15956 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 - - uid: 15974 + - uid: 15957 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,12.5 parent: 2 - - uid: 15975 + - uid: 15958 components: - type: Transform pos: -9.5,30.5 parent: 2 - - uid: 15976 + - uid: 15959 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,5.5 parent: 2 - - uid: 15977 + - uid: 15960 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 15978 + - uid: 15961 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 15979 + - uid: 15962 components: - type: Transform pos: 56.5,-9.5 parent: 2 - - uid: 15980 + - uid: 15963 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-29.5 parent: 2 - - uid: 15981 + - uid: 15964 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-20.5 parent: 2 - - uid: 15982 + - uid: 15965 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-18.5 parent: 2 - - uid: 15983 + - uid: 15966 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 - - uid: 15984 + - uid: 15967 components: - type: Transform pos: 56.5,-20.5 parent: 2 - - uid: 15985 + - uid: 15968 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 15986 + - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - uid: 15987 + - uid: 15970 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-11.5 parent: 2 - - uid: 15988 + - uid: 15971 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 15989 + - uid: 15972 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 15990 + - uid: 15973 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 - - uid: 15991 + - uid: 15974 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 - - uid: 15992 + - uid: 15975 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-22.5 parent: 2 - - uid: 15993 + - uid: 15976 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 - - uid: 15994 + - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 - - uid: 15995 + - uid: 15978 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,28.5 parent: 2 - - uid: 15996 + - uid: 15979 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 - - uid: 15997 + - uid: 15980 components: - type: Transform rot: 3.141592653589793 rad @@ -126015,198 +126043,198 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 15998 + - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 - - uid: 15999 + - uid: 15982 components: - type: Transform pos: 4.5,34.5 parent: 2 - - uid: 16000 + - uid: 15983 components: - type: Transform pos: 4.5,27.5 parent: 2 - - uid: 16001 + - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,47.5 parent: 2 - - uid: 16002 + - uid: 15985 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 16003 + - uid: 15986 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,12.5 parent: 2 - - uid: 16004 + - uid: 15987 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 16005 + - uid: 15988 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 2 - - uid: 16006 + - uid: 15989 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 - - uid: 16007 + - uid: 15990 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 16008 + - uid: 15991 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 - - uid: 16009 + - uid: 15992 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,57.5 parent: 2 - - uid: 16010 + - uid: 15993 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,57.5 parent: 2 - - uid: 16011 + - uid: 15994 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,50.5 parent: 2 - - uid: 16012 + - uid: 15995 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,30.5 parent: 2 - - uid: 16013 + - uid: 15996 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 2 - - uid: 16014 + - uid: 15997 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 2 - - uid: 16015 + - uid: 15998 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-19.5 parent: 2 - - uid: 16016 + - uid: 15999 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 - - uid: 16017 + - uid: 16000 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-61.5 parent: 2 - - uid: 16018 + - uid: 16001 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-79.5 parent: 2 - - uid: 16019 + - uid: 16002 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 - - uid: 16020 + - uid: 16003 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - - uid: 16021 + - uid: 16004 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-49.5 parent: 2 - - uid: 16022 + - uid: 16005 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 - - uid: 16023 + - uid: 16006 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-37.5 parent: 2 - - uid: 16024 + - uid: 16007 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-45.5 parent: 2 - - uid: 16025 + - uid: 16008 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 - - uid: 16026 + - uid: 16009 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 - - uid: 16027 + - uid: 16010 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 16028 + - uid: 16011 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 16029 + - uid: 16012 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,4.5 parent: 2 - - uid: 16030 + - uid: 16013 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-34.5 parent: 2 - - uid: 16031 + - uid: 16014 components: - type: Transform rot: -1.5707963267948966 rad @@ -126214,148 +126242,148 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 16032 + - uid: 16015 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,36.5 parent: 2 - - uid: 16033 + - uid: 16016 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,46.5 parent: 2 - - uid: 16034 + - uid: 16017 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,36.5 parent: 2 - - uid: 16035 + - uid: 16018 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 16036 + - uid: 16019 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,33.5 parent: 2 - - uid: 16037 + - uid: 16020 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 2 - - uid: 16038 + - uid: 16021 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,57.5 parent: 2 - - uid: 16039 + - uid: 16022 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,48.5 parent: 2 - - uid: 16040 + - uid: 16023 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 2 - - uid: 16041 + - uid: 16024 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 - - uid: 16042 + - uid: 16025 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-2.5 parent: 2 - - uid: 16043 + - uid: 16026 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-19.5 parent: 2 - - uid: 16044 + - uid: 16027 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-19.5 parent: 2 - - uid: 16045 + - uid: 16028 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,14.5 parent: 2 - - uid: 16046 + - uid: 16029 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,12.5 parent: 2 - - uid: 16047 + - uid: 16030 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-63.5 parent: 2 - - uid: 16048 + - uid: 16031 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-34.5 parent: 2 - - uid: 16049 + - uid: 16032 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-39.5 parent: 2 - - uid: 16050 + - uid: 16033 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-52.5 parent: 2 - - uid: 16051 + - uid: 16034 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 16052 + - uid: 16035 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,22.5 parent: 2 - - uid: 16053 + - uid: 16036 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 16054 + - uid: 16037 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,10.5 parent: 2 - - uid: 16055 + - uid: 16038 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,12.5 parent: 2 - - uid: 16056 + - uid: 16039 components: - type: Transform rot: 3.141592653589793 rad @@ -126363,6404 +126391,6404 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 16057 + - uid: 16040 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 16058 + - uid: 16041 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,12.5 parent: 2 - - uid: 16059 + - uid: 16042 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,12.5 parent: 2 - - uid: 16060 + - uid: 16043 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,31.5 parent: 2 - - uid: 16061 + - uid: 16044 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-41.5 parent: 2 - - uid: 16062 + - uid: 16045 components: - type: Transform pos: -26.5,31.5 parent: 2 - - uid: 16063 + - uid: 16046 components: - type: Transform pos: -30.5,31.5 parent: 2 - - uid: 16064 + - uid: 16047 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,25.5 parent: 2 - - uid: 16065 + - uid: 16048 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,33.5 parent: 2 - - uid: 16066 + - uid: 16049 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,30.5 parent: 2 - - uid: 16067 + - uid: 16050 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,35.5 parent: 2 - - uid: 16068 + - uid: 16051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,29.5 parent: 2 - - uid: 16069 + - uid: 16052 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,26.5 parent: 2 - - uid: 16070 + - uid: 16053 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,36.5 parent: 2 - - uid: 16071 + - uid: 16054 components: - type: Transform pos: -16.5,56.5 parent: 2 - - uid: 16072 + - uid: 16055 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,33.5 parent: 2 - - uid: 16073 + - uid: 16056 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,36.5 parent: 2 - - uid: 16074 + - uid: 16057 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,36.5 parent: 2 - - uid: 16075 + - uid: 16058 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,32.5 parent: 2 - - uid: 16076 + - uid: 16059 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,33.5 parent: 2 - - uid: 16077 + - uid: 16060 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,36.5 parent: 2 - - uid: 16078 + - uid: 16061 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,56.5 parent: 2 - - uid: 16079 + - uid: 16062 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,27.5 parent: 2 - - uid: 16080 + - uid: 16063 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,36.5 parent: 2 - - uid: 16081 + - uid: 16064 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,36.5 parent: 2 - - uid: 16082 + - uid: 16065 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,36.5 parent: 2 - - uid: 16083 + - uid: 16066 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,36.5 parent: 2 - - uid: 16084 + - uid: 16067 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,36.5 parent: 2 - - uid: 16085 + - uid: 16068 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,36.5 parent: 2 - - uid: 16086 + - uid: 16069 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-31.5 parent: 2 - - uid: 16087 + - uid: 16070 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-23.5 parent: 2 - - uid: 16088 + - uid: 16071 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-33.5 parent: 2 - - uid: 16089 + - uid: 16072 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 16090 + - uid: 16073 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,28.5 parent: 2 - - uid: 16091 + - uid: 16074 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 16092 + - uid: 16075 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-20.5 parent: 2 - - uid: 16093 + - uid: 16076 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,14.5 parent: 2 - - uid: 16094 + - uid: 16077 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-28.5 parent: 2 - - uid: 16095 + - uid: 16078 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,42.5 parent: 2 - - uid: 16096 + - uid: 16079 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 16097 + - uid: 16080 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - uid: 16098 + - uid: 16081 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 2 - - uid: 16099 + - uid: 16082 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 2 - - uid: 16100 + - uid: 16083 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,43.5 parent: 2 - - uid: 16101 + - uid: 16084 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,44.5 parent: 2 - - uid: 16102 + - uid: 16085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 16103 + - uid: 16086 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 2 - - uid: 16104 + - uid: 16087 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-38.5 parent: 2 - - uid: 16105 + - uid: 16088 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - - uid: 16106 + - uid: 16089 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 16107 + - uid: 16090 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-36.5 parent: 2 - - uid: 16108 + - uid: 16091 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-39.5 parent: 2 - - uid: 16109 + - uid: 16092 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - uid: 16110 + - uid: 16093 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 16111 + - uid: 16094 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-37.5 parent: 2 - - uid: 16112 + - uid: 16095 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 - - uid: 16113 + - uid: 16096 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,41.5 parent: 2 - - uid: 16114 + - uid: 16097 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 2 - - uid: 16115 + - uid: 16098 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,14.5 parent: 2 - - uid: 16116 + - uid: 16099 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,14.5 parent: 2 - - uid: 16117 + - uid: 16100 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-51.5 parent: 2 - - uid: 16118 + - uid: 16101 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-51.5 parent: 2 - - uid: 16119 + - uid: 16102 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-68.5 parent: 2 - - uid: 16120 + - uid: 16103 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 2 - - uid: 16121 + - uid: 16104 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,14.5 parent: 2 - - uid: 16122 + - uid: 16105 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 2 - - uid: 16123 + - uid: 16106 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-28.5 parent: 2 - - uid: 16124 + - uid: 16107 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 16125 + - uid: 16108 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 16126 + - uid: 16109 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 2 - - uid: 16127 + - uid: 16110 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-26.5 parent: 2 - - uid: 16128 + - uid: 16111 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,6.5 parent: 2 - - uid: 16129 + - uid: 16112 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-56.5 parent: 2 - - uid: 16130 + - uid: 16113 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,9.5 parent: 2 - - uid: 16131 + - uid: 16114 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,7.5 parent: 2 - - uid: 16132 + - uid: 16115 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,47.5 parent: 2 - - uid: 16133 + - uid: 16116 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,47.5 parent: 2 - - uid: 16134 + - uid: 16117 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 16135 + - uid: 16118 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 16136 + - uid: 16119 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,39.5 parent: 2 - - uid: 16137 + - uid: 16120 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-68.5 parent: 2 - - uid: 16138 + - uid: 16121 components: - type: Transform pos: 35.5,-69.5 parent: 2 - - uid: 16139 + - uid: 16122 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 - - uid: 16140 + - uid: 16123 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-35.5 parent: 2 - - uid: 16141 + - uid: 16124 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,14.5 parent: 2 - - uid: 16142 + - uid: 16125 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-51.5 parent: 2 - - uid: 16143 + - uid: 16126 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,14.5 parent: 2 - - uid: 16144 + - uid: 16127 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 2 - - uid: 16145 + - uid: 16128 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - - uid: 16146 + - uid: 16129 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - - uid: 16147 + - uid: 16130 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 16148 + - uid: 16131 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-68.5 parent: 2 - - uid: 16149 + - uid: 16132 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-51.5 parent: 2 - - uid: 16150 + - uid: 16133 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-68.5 parent: 2 - - uid: 16151 + - uid: 16134 components: - type: Transform pos: 35.5,-71.5 parent: 2 - - uid: 16152 + - uid: 16135 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-68.5 parent: 2 - - uid: 16153 + - uid: 16136 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 16154 + - uid: 16137 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 16155 + - uid: 16138 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,40.5 parent: 2 - - uid: 16156 + - uid: 16139 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 16157 + - uid: 16140 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 16158 + - uid: 16141 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,30.5 parent: 2 - - uid: 16159 + - uid: 16142 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - uid: 16160 + - uid: 16143 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,43.5 parent: 2 - - uid: 16161 + - uid: 16144 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,44.5 parent: 2 - - uid: 16162 + - uid: 16145 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 16163 + - uid: 16146 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 16164 + - uid: 16147 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,45.5 parent: 2 - - uid: 16165 + - uid: 16148 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,46.5 parent: 2 - - uid: 16166 + - uid: 16149 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,14.5 parent: 2 - - uid: 16167 + - uid: 16150 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,8.5 parent: 2 - - uid: 16168 + - uid: 16151 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 - - uid: 16169 + - uid: 16152 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,29.5 parent: 2 - - uid: 16170 + - uid: 16153 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 16171 + - uid: 16154 components: - type: Transform pos: 35.5,-70.5 parent: 2 - - uid: 16172 + - uid: 16155 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-28.5 parent: 2 - - uid: 16173 + - uid: 16156 components: - type: Transform pos: -42.5,-31.5 parent: 2 - - uid: 16174 + - uid: 16157 components: - type: Transform pos: -38.5,-31.5 parent: 2 - - uid: 16175 + - uid: 16158 components: - type: Transform pos: -34.5,-31.5 parent: 2 - - uid: 16176 + - uid: 16159 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 16177 + - uid: 16160 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 16178 + - uid: 16161 components: - type: Transform pos: -40.5,-23.5 parent: 2 - - uid: 16179 + - uid: 16162 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,14.5 parent: 2 - - uid: 16180 + - uid: 16163 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - - uid: 16181 + - uid: 16164 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 - - uid: 16182 + - uid: 16165 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,14.5 parent: 2 - - uid: 16183 + - uid: 16166 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,14.5 parent: 2 - - uid: 16184 + - uid: 16167 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,14.5 parent: 2 - - uid: 16185 + - uid: 16168 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 16186 + - uid: 16169 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,14.5 parent: 2 - - uid: 16187 + - uid: 16170 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-34.5 parent: 2 - - uid: 16188 + - uid: 16171 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,17.5 parent: 2 - - uid: 16189 + - uid: 16172 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,18.5 parent: 2 - - uid: 16190 + - uid: 16173 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,25.5 parent: 2 - - uid: 16191 + - uid: 16174 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,31.5 parent: 2 - - uid: 16192 + - uid: 16175 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,10.5 parent: 2 - - uid: 16193 + - uid: 16176 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,42.5 parent: 2 - - uid: 16194 + - uid: 16177 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,21.5 parent: 2 - - uid: 16195 + - uid: 16178 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 16196 + - uid: 16179 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,32.5 parent: 2 - - uid: 16197 + - uid: 16180 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,31.5 parent: 2 - - uid: 16198 + - uid: 16181 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,10.5 parent: 2 - - uid: 16199 + - uid: 16182 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,45.5 parent: 2 - - uid: 16200 + - uid: 16183 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,36.5 parent: 2 - - uid: 16201 + - uid: 16184 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 16202 + - uid: 16185 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,14.5 parent: 2 - - uid: 16203 + - uid: 16186 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,40.5 parent: 2 - - uid: 16204 + - uid: 16187 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,39.5 parent: 2 - - uid: 16205 + - uid: 16188 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,44.5 parent: 2 - - uid: 16206 + - uid: 16189 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,43.5 parent: 2 - - uid: 16207 + - uid: 16190 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,41.5 parent: 2 - - uid: 16208 + - uid: 16191 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,14.5 parent: 2 - - uid: 16209 + - uid: 16192 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,48.5 parent: 2 - - uid: 16210 + - uid: 16193 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 16211 + - uid: 16194 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,33.5 parent: 2 - - uid: 16212 + - uid: 16195 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 - - uid: 16213 + - uid: 16196 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,30.5 parent: 2 - - uid: 16214 + - uid: 16197 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,30.5 parent: 2 - - uid: 16215 + - uid: 16198 components: - type: Transform pos: -57.5,13.5 parent: 2 - - uid: 16216 + - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,14.5 parent: 2 - - uid: 16217 + - uid: 16200 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,48.5 parent: 2 - - uid: 16218 + - uid: 16201 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 16219 + - uid: 16202 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,48.5 parent: 2 - - uid: 16220 + - uid: 16203 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,34.5 parent: 2 - - uid: 16221 + - uid: 16204 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,45.5 parent: 2 - - uid: 16222 + - uid: 16205 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - uid: 16223 + - uid: 16206 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,35.5 parent: 2 - - uid: 16224 + - uid: 16207 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,10.5 parent: 2 - - uid: 16225 + - uid: 16208 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,31.5 parent: 2 - - uid: 16226 + - uid: 16209 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,14.5 parent: 2 - - uid: 16227 + - uid: 16210 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,45.5 parent: 2 - - uid: 16228 + - uid: 16211 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 - - uid: 16229 + - uid: 16212 components: - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 16230 + - uid: 16213 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,48.5 parent: 2 - - uid: 16231 + - uid: 16214 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,14.5 parent: 2 - - uid: 16232 + - uid: 16215 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,28.5 parent: 2 - - uid: 16233 + - uid: 16216 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,45.5 parent: 2 - - uid: 16234 + - uid: 16217 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,48.5 parent: 2 - - uid: 16235 + - uid: 16218 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,10.5 parent: 2 - - uid: 16236 + - uid: 16219 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 16237 + - uid: 16220 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 16238 + - uid: 16221 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,45.5 parent: 2 - - uid: 16239 + - uid: 16222 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,14.5 parent: 2 - - uid: 16240 + - uid: 16223 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,45.5 parent: 2 - - uid: 16241 + - uid: 16224 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,48.5 parent: 2 - - uid: 16242 + - uid: 16225 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 16243 + - uid: 16226 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,45.5 parent: 2 - - uid: 16244 + - uid: 16227 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,45.5 parent: 2 - - uid: 16245 + - uid: 16228 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,48.5 parent: 2 - - uid: 16246 + - uid: 16229 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 - - uid: 16247 + - uid: 16230 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 - - uid: 16248 + - uid: 16231 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 - - uid: 16249 + - uid: 16232 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,56.5 parent: 2 - - uid: 16250 + - uid: 16233 components: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 16251 + - uid: 16234 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,48.5 parent: 2 - - uid: 16252 + - uid: 16235 components: - type: Transform pos: -29.5,49.5 parent: 2 - - uid: 16253 + - uid: 16236 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,53.5 parent: 2 - - uid: 16254 + - uid: 16237 components: - type: Transform pos: -29.5,51.5 parent: 2 - - uid: 16255 + - uid: 16238 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,38.5 parent: 2 - - uid: 16256 + - uid: 16239 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,53.5 parent: 2 - - uid: 16257 + - uid: 16240 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,53.5 parent: 2 - - uid: 16258 + - uid: 16241 components: - type: Transform pos: -29.5,50.5 parent: 2 - - uid: 16259 + - uid: 16242 components: - type: Transform pos: -29.5,52.5 parent: 2 - - uid: 16260 + - uid: 16243 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,53.5 parent: 2 - - uid: 16261 + - uid: 16244 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,48.5 parent: 2 - - uid: 16262 + - uid: 16245 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,30.5 parent: 2 - - uid: 16263 + - uid: 16246 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 16264 + - uid: 16247 components: - type: Transform pos: -54.5,39.5 parent: 2 - - uid: 16265 + - uid: 16248 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,55.5 parent: 2 - - uid: 16266 + - uid: 16249 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,45.5 parent: 2 - - uid: 16267 + - uid: 16250 components: - type: Transform pos: -55.5,43.5 parent: 2 - - uid: 16268 + - uid: 16251 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,46.5 parent: 2 - - uid: 16269 + - uid: 16252 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,24.5 parent: 2 - - uid: 16270 + - uid: 16253 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 - - uid: 16271 + - uid: 16254 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,55.5 parent: 2 - - uid: 16272 + - uid: 16255 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,54.5 parent: 2 - - uid: 16273 + - uid: 16256 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,10.5 parent: 2 - - uid: 16274 + - uid: 16257 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,20.5 parent: 2 - - uid: 16275 + - uid: 16258 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,23.5 parent: 2 - - uid: 16276 + - uid: 16259 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - uid: 16277 + - uid: 16260 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,52.5 parent: 2 - - uid: 16278 + - uid: 16261 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,45.5 parent: 2 - - uid: 16279 + - uid: 16262 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,49.5 parent: 2 - - uid: 16280 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,57.5 parent: 2 - - uid: 16281 + - uid: 16264 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,55.5 parent: 2 - - uid: 16282 + - uid: 16265 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,24.5 parent: 2 - - uid: 16283 + - uid: 16266 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,50.5 parent: 2 - - uid: 16284 + - uid: 16267 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 16285 + - uid: 16268 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,10.5 parent: 2 - - uid: 16286 + - uid: 16269 components: - type: Transform pos: -26.5,32.5 parent: 2 - - uid: 16287 + - uid: 16270 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,30.5 parent: 2 - - uid: 16288 + - uid: 16271 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,10.5 parent: 2 - - uid: 16289 + - uid: 16272 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,57.5 parent: 2 - - uid: 16290 + - uid: 16273 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,55.5 parent: 2 - - uid: 16291 + - uid: 16274 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,56.5 parent: 2 - - uid: 16292 + - uid: 16275 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,22.5 parent: 2 - - uid: 16293 + - uid: 16276 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,53.5 parent: 2 - - uid: 16294 + - uid: 16277 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,19.5 parent: 2 - - uid: 16295 + - uid: 16278 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,55.5 parent: 2 - - uid: 16296 + - uid: 16279 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 16297 + - uid: 16280 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,12.5 parent: 2 - - uid: 16298 + - uid: 16281 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 16299 + - uid: 16282 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 16300 + - uid: 16283 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,47.5 parent: 2 - - uid: 16301 + - uid: 16284 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,35.5 parent: 2 - - uid: 16302 + - uid: 16285 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,55.5 parent: 2 - - uid: 16303 + - uid: 16286 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 16304 + - uid: 16287 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,31.5 parent: 2 - - uid: 16305 + - uid: 16288 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 16306 + - uid: 16289 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,48.5 parent: 2 - - uid: 16307 + - uid: 16290 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 16308 + - uid: 16291 components: - type: Transform pos: -49.5,13.5 parent: 2 - - uid: 16309 + - uid: 16292 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 16310 + - uid: 16293 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,30.5 parent: 2 - - uid: 16311 + - uid: 16294 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,30.5 parent: 2 - - uid: 16312 + - uid: 16295 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,36.5 parent: 2 - - uid: 16313 + - uid: 16296 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,31.5 parent: 2 - - uid: 16314 + - uid: 16297 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,30.5 parent: 2 - - uid: 16315 + - uid: 16298 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,31.5 parent: 2 - - uid: 16316 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,21.5 parent: 2 - - uid: 16317 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,33.5 parent: 2 - - uid: 16318 + - uid: 16301 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,30.5 parent: 2 - - uid: 16319 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,31.5 parent: 2 - - uid: 16320 + - uid: 16303 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,10.5 parent: 2 - - uid: 16321 + - uid: 16304 components: - type: Transform pos: 25.5,37.5 parent: 2 - - uid: 16322 + - uid: 16305 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,36.5 parent: 2 - - uid: 16323 + - uid: 16306 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,36.5 parent: 2 - - uid: 16324 + - uid: 16307 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 - - uid: 16325 + - uid: 16308 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,21.5 parent: 2 - - uid: 16326 + - uid: 16309 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,33.5 parent: 2 - - uid: 16327 + - uid: 16310 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,33.5 parent: 2 - - uid: 16328 + - uid: 16311 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 - - uid: 16329 + - uid: 16312 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,51.5 parent: 2 - - uid: 16330 + - uid: 16313 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,45.5 parent: 2 - - uid: 16331 + - uid: 16314 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,10.5 parent: 2 - - uid: 16332 + - uid: 16315 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,21.5 parent: 2 - - uid: 16333 + - uid: 16316 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 - - uid: 16334 + - uid: 16317 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 16335 + - uid: 16318 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,36.5 parent: 2 - - uid: 16336 + - uid: 16319 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,36.5 parent: 2 - - uid: 16337 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,30.5 parent: 2 - - uid: 16338 + - uid: 16321 components: - type: Transform pos: 42.5,29.5 parent: 2 - - uid: 16339 + - uid: 16322 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,10.5 parent: 2 - - uid: 16340 + - uid: 16323 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 - - uid: 16341 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,30.5 parent: 2 - - uid: 16342 + - uid: 16325 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,33.5 parent: 2 - - uid: 16343 + - uid: 16326 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,36.5 parent: 2 - - uid: 16344 + - uid: 16327 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 2 - - uid: 16345 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,30.5 parent: 2 - - uid: 16346 + - uid: 16329 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 16347 + - uid: 16330 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 16348 + - uid: 16331 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,10.5 parent: 2 - - uid: 16349 + - uid: 16332 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,56.5 parent: 2 - - uid: 16350 + - uid: 16333 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,56.5 parent: 2 - - uid: 16351 + - uid: 16334 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,56.5 parent: 2 - - uid: 16352 + - uid: 16335 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,56.5 parent: 2 - - uid: 16353 + - uid: 16336 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,56.5 parent: 2 - - uid: 16354 + - uid: 16337 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,56.5 parent: 2 - - uid: 16355 + - uid: 16338 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,56.5 parent: 2 - - uid: 16356 + - uid: 16339 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,56.5 parent: 2 - - uid: 16357 + - uid: 16340 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,56.5 parent: 2 - - uid: 16358 + - uid: 16341 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,56.5 parent: 2 - - uid: 16359 + - uid: 16342 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,56.5 parent: 2 - - uid: 16360 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,56.5 parent: 2 - - uid: 16361 + - uid: 16344 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,57.5 parent: 2 - - uid: 16362 + - uid: 16345 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,57.5 parent: 2 - - uid: 16363 + - uid: 16346 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,57.5 parent: 2 - - uid: 16364 + - uid: 16347 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,57.5 parent: 2 - - uid: 16365 + - uid: 16348 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,57.5 parent: 2 - - uid: 16366 + - uid: 16349 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,57.5 parent: 2 - - uid: 16367 + - uid: 16350 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,57.5 parent: 2 - - uid: 16368 + - uid: 16351 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,57.5 parent: 2 - - uid: 16369 + - uid: 16352 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,57.5 parent: 2 - - uid: 16370 + - uid: 16353 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,57.5 parent: 2 - - uid: 16371 + - uid: 16354 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,53.5 parent: 2 - - uid: 16372 + - uid: 16355 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,54.5 parent: 2 - - uid: 16373 + - uid: 16356 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,55.5 parent: 2 - - uid: 16374 + - uid: 16357 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,56.5 parent: 2 - - uid: 16375 + - uid: 16358 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,81.5 parent: 2 - - uid: 16376 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,80.5 parent: 2 - - uid: 16377 + - uid: 16360 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,79.5 parent: 2 - - uid: 16378 + - uid: 16361 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,78.5 parent: 2 - - uid: 16379 + - uid: 16362 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,77.5 parent: 2 - - uid: 16380 + - uid: 16363 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,76.5 parent: 2 - - uid: 16381 + - uid: 16364 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,75.5 parent: 2 - - uid: 16382 + - uid: 16365 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,74.5 parent: 2 - - uid: 16383 + - uid: 16366 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,73.5 parent: 2 - - uid: 16384 + - uid: 16367 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,72.5 parent: 2 - - uid: 16385 + - uid: 16368 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,71.5 parent: 2 - - uid: 16386 + - uid: 16369 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,70.5 parent: 2 - - uid: 16387 + - uid: 16370 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,69.5 parent: 2 - - uid: 16388 + - uid: 16371 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,82.5 parent: 2 - - uid: 16389 + - uid: 16372 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,68.5 parent: 2 - - uid: 16390 + - uid: 16373 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,68.5 parent: 2 - - uid: 16391 + - uid: 16374 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,68.5 parent: 2 - - uid: 16392 + - uid: 16375 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,68.5 parent: 2 - - uid: 16393 + - uid: 16376 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,68.5 parent: 2 - - uid: 16394 + - uid: 16377 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,68.5 parent: 2 - - uid: 16395 + - uid: 16378 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,68.5 parent: 2 - - uid: 16396 + - uid: 16379 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,68.5 parent: 2 - - uid: 16397 + - uid: 16380 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,68.5 parent: 2 - - uid: 16398 + - uid: 16381 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,68.5 parent: 2 - - uid: 16399 + - uid: 16382 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,67.5 parent: 2 - - uid: 16400 + - uid: 16383 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,66.5 parent: 2 - - uid: 16401 + - uid: 16384 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,65.5 parent: 2 - - uid: 16402 + - uid: 16385 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,64.5 parent: 2 - - uid: 16403 + - uid: 16386 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,63.5 parent: 2 - - uid: 16404 + - uid: 16387 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,62.5 parent: 2 - - uid: 16405 + - uid: 16388 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,61.5 parent: 2 - - uid: 16406 + - uid: 16389 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,60.5 parent: 2 - - uid: 16407 + - uid: 16390 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,59.5 parent: 2 - - uid: 16408 + - uid: 16391 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,58.5 parent: 2 - - uid: 16409 + - uid: 16392 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,57.5 parent: 2 - - uid: 16410 + - uid: 16393 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,57.5 parent: 2 - - uid: 16411 + - uid: 16394 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,57.5 parent: 2 - - uid: 16412 + - uid: 16395 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,57.5 parent: 2 - - uid: 16413 + - uid: 16396 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,57.5 parent: 2 - - uid: 16414 + - uid: 16397 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,57.5 parent: 2 - - uid: 16415 + - uid: 16398 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,57.5 parent: 2 - - uid: 16416 + - uid: 16399 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,57.5 parent: 2 - - uid: 16417 + - uid: 16400 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,57.5 parent: 2 - - uid: 16418 + - uid: 16401 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,57.5 parent: 2 - - uid: 16419 + - uid: 16402 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,57.5 parent: 2 - - uid: 16420 + - uid: 16403 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,57.5 parent: 2 - - uid: 16421 + - uid: 16404 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 - - uid: 16422 + - uid: 16405 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,57.5 parent: 2 - - uid: 16423 + - uid: 16406 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,57.5 parent: 2 - - uid: 16424 + - uid: 16407 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,58.5 parent: 2 - - uid: 16425 + - uid: 16408 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,59.5 parent: 2 - - uid: 16426 + - uid: 16409 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 - - uid: 16427 + - uid: 16410 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 - - uid: 16428 + - uid: 16411 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 - - uid: 16429 + - uid: 16412 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,63.5 parent: 2 - - uid: 16430 + - uid: 16413 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,64.5 parent: 2 - - uid: 16431 + - uid: 16414 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,65.5 parent: 2 - - uid: 16432 + - uid: 16415 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,66.5 parent: 2 - - uid: 16433 + - uid: 16416 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,67.5 parent: 2 - - uid: 16434 + - uid: 16417 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 2 - - uid: 16435 + - uid: 16418 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,68.5 parent: 2 - - uid: 16436 + - uid: 16419 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,68.5 parent: 2 - - uid: 16437 + - uid: 16420 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,68.5 parent: 2 - - uid: 16438 + - uid: 16421 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,68.5 parent: 2 - - uid: 16439 + - uid: 16422 components: - type: Transform pos: -24.5,67.5 parent: 2 - - uid: 16440 + - uid: 16423 components: - type: Transform pos: -24.5,66.5 parent: 2 - - uid: 16441 + - uid: 16424 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,62.5 parent: 2 - - uid: 16442 + - uid: 16425 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,63.5 parent: 2 - - uid: 16443 + - uid: 16426 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,64.5 parent: 2 - - uid: 16444 + - uid: 16427 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,65.5 parent: 2 - - uid: 16445 + - uid: 16428 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,56.5 parent: 2 - - uid: 16446 + - uid: 16429 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,55.5 parent: 2 - - uid: 16447 + - uid: 16430 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,54.5 parent: 2 - - uid: 16448 + - uid: 16431 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,53.5 parent: 2 - - uid: 16449 + - uid: 16432 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,52.5 parent: 2 - - uid: 16450 + - uid: 16433 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,51.5 parent: 2 - - uid: 16451 + - uid: 16434 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,49.5 parent: 2 - - uid: 16452 + - uid: 16435 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,47.5 parent: 2 - - uid: 16453 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,45.5 parent: 2 - - uid: 16454 + - uid: 16437 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,46.5 parent: 2 - - uid: 16455 + - uid: 16438 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,46.5 parent: 2 - - uid: 16456 + - uid: 16439 components: - type: Transform pos: -21.5,45.5 parent: 2 - - uid: 16457 + - uid: 16440 components: - type: Transform pos: -21.5,44.5 parent: 2 - - uid: 16458 + - uid: 16441 components: - type: Transform pos: -21.5,43.5 parent: 2 - - uid: 16459 + - uid: 16442 components: - type: Transform pos: -21.5,42.5 parent: 2 - - uid: 16460 + - uid: 16443 components: - type: Transform pos: -21.5,41.5 parent: 2 - - uid: 16461 + - uid: 16444 components: - type: Transform pos: -21.5,40.5 parent: 2 - - uid: 16462 + - uid: 16445 components: - type: Transform pos: -21.5,39.5 parent: 2 - - uid: 16463 + - uid: 16446 components: - type: Transform pos: -21.5,38.5 parent: 2 - - uid: 16464 + - uid: 16447 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 - - uid: 16465 + - uid: 16448 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 2 - - uid: 16466 + - uid: 16449 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,34.5 parent: 2 - - uid: 16467 + - uid: 16450 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,32.5 parent: 2 - - uid: 16468 + - uid: 16451 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,31.5 parent: 2 - - uid: 16469 + - uid: 16452 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,29.5 parent: 2 - - uid: 16470 + - uid: 16453 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,28.5 parent: 2 - - uid: 16471 + - uid: 16454 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,27.5 parent: 2 - - uid: 16472 + - uid: 16455 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 2 - - uid: 16473 + - uid: 16456 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 2 - - uid: 16474 + - uid: 16457 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 2 - - uid: 16475 + - uid: 16458 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 - - uid: 16476 + - uid: 16459 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 - - uid: 16477 + - uid: 16460 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,21.5 parent: 2 - - uid: 16478 + - uid: 16461 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,20.5 parent: 2 - - uid: 16479 + - uid: 16462 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,19.5 parent: 2 - - uid: 16480 + - uid: 16463 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,18.5 parent: 2 - - uid: 16481 + - uid: 16464 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 - - uid: 16482 + - uid: 16465 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,16.5 parent: 2 - - uid: 16483 + - uid: 16466 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 - - uid: 16484 + - uid: 16467 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2 - - uid: 16485 + - uid: 16468 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,12.5 parent: 2 - - uid: 16486 + - uid: 16469 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,11.5 parent: 2 - - uid: 16487 + - uid: 16470 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,10.5 parent: 2 - - uid: 16488 + - uid: 16471 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 - - uid: 16489 + - uid: 16472 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,8.5 parent: 2 - - uid: 16490 + - uid: 16473 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 - - uid: 16491 + - uid: 16474 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 2 - - uid: 16492 + - uid: 16475 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,4.5 parent: 2 - - uid: 16493 + - uid: 16476 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,3.5 parent: 2 - - uid: 16494 + - uid: 16477 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,2.5 parent: 2 - - uid: 16495 + - uid: 16478 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 2 - - uid: 16496 + - uid: 16479 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 2 - - uid: 16497 + - uid: 16480 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-0.5 parent: 2 - - uid: 16498 + - uid: 16481 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 2 - - uid: 16499 + - uid: 16482 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 - - uid: 16500 + - uid: 16483 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 2 - - uid: 16501 + - uid: 16484 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 - - uid: 16502 + - uid: 16485 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 - - uid: 16503 + - uid: 16486 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 - - uid: 16504 + - uid: 16487 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 - - uid: 16505 + - uid: 16488 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 - - uid: 16506 + - uid: 16489 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 - - uid: 16507 + - uid: 16490 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 - - uid: 16508 + - uid: 16491 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 - - uid: 16509 + - uid: 16492 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 - - uid: 16510 + - uid: 16493 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-15.5 parent: 2 - - uid: 16511 + - uid: 16494 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-16.5 parent: 2 - - uid: 16512 + - uid: 16495 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-17.5 parent: 2 - - uid: 16513 + - uid: 16496 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-18.5 parent: 2 - - uid: 16514 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-19.5 parent: 2 - - uid: 16515 + - uid: 16498 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-19.5 parent: 2 - - uid: 16516 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-19.5 parent: 2 - - uid: 16517 + - uid: 16500 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 2 - - uid: 16518 + - uid: 16501 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-19.5 parent: 2 - - uid: 16519 + - uid: 16502 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-19.5 parent: 2 - - uid: 16520 + - uid: 16503 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-19.5 parent: 2 - - uid: 16521 + - uid: 16504 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-19.5 parent: 2 - - uid: 16522 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-19.5 parent: 2 - - uid: 16523 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 2 - - uid: 16524 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 - - uid: 16525 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-19.5 parent: 2 - - uid: 16526 + - uid: 16509 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-19.5 parent: 2 - - uid: 16527 + - uid: 16510 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-19.5 parent: 2 - - uid: 16528 + - uid: 16511 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 - - uid: 16529 + - uid: 16512 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.49999997,-19.5 parent: 2 - - uid: 16530 + - uid: 16513 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - - uid: 16531 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 - - uid: 16532 + - uid: 16515 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-19.5 parent: 2 - - uid: 16533 + - uid: 16516 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-19.5 parent: 2 - - uid: 16534 + - uid: 16517 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 2 - - uid: 16535 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 16536 + - uid: 16519 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 16537 + - uid: 16520 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-19.5 parent: 2 - - uid: 16538 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-19.5 parent: 2 - - uid: 16539 + - uid: 16522 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 - - uid: 16540 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 - - uid: 16541 + - uid: 16524 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 - - uid: 16542 + - uid: 16525 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 - - uid: 16543 + - uid: 16526 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 - - uid: 16544 + - uid: 16527 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 16545 + - uid: 16528 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 16546 + - uid: 16529 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 16547 + - uid: 16530 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 16548 + - uid: 16531 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 16549 + - uid: 16532 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 16550 + - uid: 16533 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 16551 + - uid: 16534 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 16552 + - uid: 16535 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 16553 + - uid: 16536 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 16554 + - uid: 16537 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 16555 + - uid: 16538 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 16556 + - uid: 16539 components: - type: Transform pos: 17.5,-5.5 parent: 2 - - uid: 16557 + - uid: 16540 components: - type: Transform pos: 17.5,-4.5 parent: 2 - - uid: 16558 + - uid: 16541 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 16559 + - uid: 16542 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 16560 + - uid: 16543 components: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 16561 + - uid: 16544 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 16562 + - uid: 16545 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 16563 + - uid: 16546 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 16564 + - uid: 16547 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 16565 + - uid: 16548 components: - type: Transform pos: 17.5,3.5 parent: 2 - - uid: 16566 + - uid: 16549 components: - type: Transform pos: 17.5,4.5 parent: 2 - - uid: 16567 + - uid: 16550 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 16568 + - uid: 16551 components: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 16569 + - uid: 16552 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 16570 + - uid: 16553 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 16571 + - uid: 16554 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 16572 + - uid: 16555 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 16573 + - uid: 16556 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 16574 + - uid: 16557 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 16575 + - uid: 16558 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 16576 + - uid: 16559 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 16577 + - uid: 16560 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 16578 + - uid: 16561 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 16579 + - uid: 16562 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 16580 + - uid: 16563 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 16581 + - uid: 16564 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 16582 + - uid: 16565 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 16583 + - uid: 16566 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,23.5 parent: 2 - - uid: 16584 + - uid: 16567 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,23.5 parent: 2 - - uid: 16585 + - uid: 16568 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 16586 + - uid: 16569 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 - - uid: 16587 + - uid: 16570 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 - - uid: 16588 + - uid: 16571 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 - - uid: 16589 + - uid: 16572 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 - - uid: 16590 + - uid: 16573 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 - - uid: 16591 + - uid: 16574 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 - - uid: 16592 + - uid: 16575 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 - - uid: 16593 + - uid: 16576 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 - - uid: 16594 + - uid: 16577 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 - - uid: 16595 + - uid: 16578 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 - - uid: 16596 + - uid: 16579 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,23.5 parent: 2 - - uid: 16597 + - uid: 16580 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 2 - - uid: 16598 + - uid: 16581 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,23.5 parent: 2 - - uid: 16599 + - uid: 16582 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,23.5 parent: 2 - - uid: 16600 + - uid: 16583 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,23.5 parent: 2 - - uid: 16601 + - uid: 16584 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,23.5 parent: 2 - - uid: 16602 + - uid: 16585 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,23.5 parent: 2 - - uid: 16603 + - uid: 16586 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,23.5 parent: 2 - - uid: 16604 + - uid: 16587 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 2 - - uid: 16605 + - uid: 16588 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 2 - - uid: 16606 + - uid: 16589 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,23.5 parent: 2 - - uid: 16607 + - uid: 16590 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 - - uid: 16608 + - uid: 16591 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 2 - - uid: 16609 + - uid: 16592 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,23.5 parent: 2 - - uid: 16610 + - uid: 16593 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,23.5 parent: 2 - - uid: 16611 + - uid: 16594 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,23.5 parent: 2 - - uid: 16612 + - uid: 16595 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 - - uid: 16613 + - uid: 16596 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,23.5 parent: 2 - - uid: 16614 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,23.5 parent: 2 - - uid: 16615 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,23.5 parent: 2 - - uid: 16616 + - uid: 16599 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,23.5 parent: 2 - - uid: 16617 + - uid: 16600 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,12.5 parent: 2 - - uid: 16618 + - uid: 16601 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 - - uid: 16619 + - uid: 16602 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,12.5 parent: 2 - - uid: 16620 + - uid: 16603 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 2 - - uid: 16621 + - uid: 16604 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,12.5 parent: 2 - - uid: 16622 + - uid: 16605 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,12.5 parent: 2 - - uid: 16623 + - uid: 16606 components: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 16624 + - uid: 16607 components: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 16625 + - uid: 16608 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 16626 + - uid: 16609 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-47.5 parent: 2 - - uid: 16627 + - uid: 16610 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 - - uid: 16628 + - uid: 16611 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 - - uid: 16629 + - uid: 16612 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 - - uid: 16630 + - uid: 16613 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 - - uid: 16631 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 - - uid: 16632 + - uid: 16615 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - uid: 16633 + - uid: 16616 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-54.5 parent: 2 - - uid: 16634 + - uid: 16617 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-55.5 parent: 2 - - uid: 16635 + - uid: 16618 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-56.5 parent: 2 - - uid: 16636 + - uid: 16619 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-57.5 parent: 2 - - uid: 16637 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-58.5 parent: 2 - - uid: 16638 + - uid: 16621 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-59.5 parent: 2 - - uid: 16639 + - uid: 16622 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - - uid: 16640 + - uid: 16623 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-62.5 parent: 2 - - uid: 16641 + - uid: 16624 components: - type: Transform pos: 0.49999997,-65.5 parent: 2 - - uid: 16642 + - uid: 16625 components: - type: Transform pos: 0.49999997,-66.5 parent: 2 - - uid: 16643 + - uid: 16626 components: - type: Transform pos: 0.49999997,-67.5 parent: 2 - - uid: 16644 + - uid: 16627 components: - type: Transform pos: 0.50000006,-68.5 parent: 2 - - uid: 16645 + - uid: 16628 components: - type: Transform pos: 0.49999997,-69.5 parent: 2 - - uid: 16646 + - uid: 16629 components: - type: Transform pos: 0.50000006,-70.5 parent: 2 - - uid: 16647 + - uid: 16630 components: - type: Transform pos: 0.49999997,-71.5 parent: 2 - - uid: 16648 + - uid: 16631 components: - type: Transform pos: 0.50000006,-72.5 parent: 2 - - uid: 16649 + - uid: 16632 components: - type: Transform pos: 0.49999997,-73.5 parent: 2 - - uid: 16650 + - uid: 16633 components: - type: Transform pos: 0.50000006,-74.5 parent: 2 - - uid: 16651 + - uid: 16634 components: - type: Transform pos: 0.49999997,-75.5 parent: 2 - - uid: 16652 + - uid: 16635 components: - type: Transform pos: 0.49999997,-76.5 parent: 2 - - uid: 16653 + - uid: 16636 components: - type: Transform pos: 0.49999997,-77.5 parent: 2 - - uid: 16654 + - uid: 16637 components: - type: Transform pos: 0.49999997,-78.5 parent: 2 - - uid: 16655 + - uid: 16638 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-79.5 parent: 2 - - uid: 16656 + - uid: 16639 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 16657 + - uid: 16640 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-80.5 parent: 2 - - uid: 16658 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-63.5 parent: 2 - - uid: 16659 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.50000006,-61.5 parent: 2 - - uid: 16660 + - uid: 16643 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 - - uid: 16661 + - uid: 16644 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 16662 + - uid: 16645 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 16663 + - uid: 16646 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-77.5 parent: 2 - - uid: 16664 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-77.5 parent: 2 - - uid: 16665 + - uid: 16648 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-77.5 parent: 2 - - uid: 16666 + - uid: 16649 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - - uid: 16667 + - uid: 16650 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-77.5 parent: 2 - - uid: 16668 + - uid: 16651 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-77.5 parent: 2 - - uid: 16669 + - uid: 16652 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-77.5 parent: 2 - - uid: 16670 + - uid: 16653 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-77.5 parent: 2 - - uid: 16671 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 - - uid: 16672 + - uid: 16655 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 16673 + - uid: 16656 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-78.5 parent: 2 - - uid: 16674 + - uid: 16657 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 16675 + - uid: 16658 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-28.5 parent: 2 - - uid: 16676 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-29.5 parent: 2 - - uid: 16677 + - uid: 16660 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-30.5 parent: 2 - - uid: 16678 + - uid: 16661 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-31.5 parent: 2 - - uid: 16679 + - uid: 16662 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-32.5 parent: 2 - - uid: 16680 + - uid: 16663 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-33.5 parent: 2 - - uid: 16681 + - uid: 16664 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-34.5 parent: 2 - - uid: 16682 + - uid: 16665 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-34.5 parent: 2 - - uid: 16683 + - uid: 16666 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-34.5 parent: 2 - - uid: 16684 + - uid: 16667 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-34.5 parent: 2 - - uid: 16685 + - uid: 16668 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-34.5 parent: 2 - - uid: 16686 + - uid: 16669 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-34.5 parent: 2 - - uid: 16687 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-34.5 parent: 2 - - uid: 16688 + - uid: 16671 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 2 - - uid: 16689 + - uid: 16672 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-34.5 parent: 2 - - uid: 16690 + - uid: 16673 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-34.5 parent: 2 - - uid: 16691 + - uid: 16674 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-34.5 parent: 2 - - uid: 16692 + - uid: 16675 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 - - uid: 16693 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-34.5 parent: 2 - - uid: 16694 + - uid: 16677 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-34.5 parent: 2 - - uid: 16695 + - uid: 16678 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-34.5 parent: 2 - - uid: 16696 + - uid: 16679 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-34.5 parent: 2 - - uid: 16697 + - uid: 16680 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 16698 + - uid: 16681 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 16699 + - uid: 16682 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 16700 + - uid: 16683 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 16701 + - uid: 16684 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 16702 + - uid: 16685 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 16703 + - uid: 16686 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 16704 + - uid: 16687 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 16705 + - uid: 16688 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-20.5 parent: 2 - - uid: 16706 + - uid: 16689 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 - - uid: 16707 + - uid: 16690 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-22.5 parent: 2 - - uid: 16708 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-23.5 parent: 2 - - uid: 16709 + - uid: 16692 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-24.5 parent: 2 - - uid: 16710 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 - - uid: 16711 + - uid: 16694 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 - - uid: 16712 + - uid: 16695 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 16713 + - uid: 16696 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 - - uid: 16714 + - uid: 16697 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 - - uid: 16715 + - uid: 16698 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 - - uid: 16716 + - uid: 16699 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 - - uid: 16717 + - uid: 16700 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 16718 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 - - uid: 16719 + - uid: 16702 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 - - uid: 16720 + - uid: 16703 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 16721 + - uid: 16704 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 16722 + - uid: 16705 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 16723 + - uid: 16706 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 - - uid: 16724 + - uid: 16707 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 - - uid: 16725 + - uid: 16708 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 - - uid: 16726 + - uid: 16709 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 - - uid: 16727 + - uid: 16710 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-25.5 parent: 2 - - uid: 16728 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-25.5 parent: 2 - - uid: 16729 + - uid: 16712 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-26.5 parent: 2 - - uid: 16730 + - uid: 16713 components: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 16731 + - uid: 16714 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 16732 + - uid: 16715 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 16733 + - uid: 16716 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 16734 + - uid: 16717 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-34.5 parent: 2 - - uid: 16735 + - uid: 16718 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-34.5 parent: 2 - - uid: 16736 + - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 - - uid: 16737 + - uid: 16720 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-34.5 parent: 2 - - uid: 16738 + - uid: 16721 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-34.5 parent: 2 - - uid: 16739 + - uid: 16722 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-34.5 parent: 2 - - uid: 16740 + - uid: 16723 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 - - uid: 16741 + - uid: 16724 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-34.5 parent: 2 - - uid: 16742 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-34.5 parent: 2 - - uid: 16743 + - uid: 16726 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-34.5 parent: 2 - - uid: 16744 + - uid: 16727 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-44.5 parent: 2 - - uid: 16745 + - uid: 16728 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 - - uid: 16746 + - uid: 16729 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 - - uid: 16747 + - uid: 16730 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 - - uid: 16748 + - uid: 16731 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 - - uid: 16749 + - uid: 16732 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 - - uid: 16750 + - uid: 16733 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 - - uid: 16751 + - uid: 16734 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 16752 + - uid: 16735 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 16753 + - uid: 16736 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 16754 + - uid: 16737 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 16755 + - uid: 16738 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 16756 + - uid: 16739 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 16757 + - uid: 16740 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 16758 + - uid: 16741 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-51.5 parent: 2 - - uid: 16759 + - uid: 16742 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 - - uid: 16760 + - uid: 16743 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-49.5 parent: 2 - - uid: 16761 + - uid: 16744 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-48.5 parent: 2 - - uid: 16762 + - uid: 16745 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-47.5 parent: 2 - - uid: 16763 + - uid: 16746 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-46.5 parent: 2 - - uid: 16764 + - uid: 16747 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-45.5 parent: 2 - - uid: 16765 + - uid: 16748 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-45.5 parent: 2 - - uid: 16766 + - uid: 16749 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-45.5 parent: 2 - - uid: 16767 + - uid: 16750 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 - - uid: 16768 + - uid: 16751 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 16769 + - uid: 16752 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 16770 + - uid: 16753 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 16771 + - uid: 16754 components: - type: Transform pos: 9.5,-41.5 parent: 2 - - uid: 16772 + - uid: 16755 components: - type: Transform pos: 9.5,-40.5 parent: 2 - - uid: 16773 + - uid: 16756 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-39.5 parent: 2 - - uid: 16774 + - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-39.5 parent: 2 - - uid: 16775 + - uid: 16758 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-39.5 parent: 2 - - uid: 16776 + - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-39.5 parent: 2 - - uid: 16777 + - uid: 16760 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-39.5 parent: 2 - - uid: 16778 + - uid: 16761 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-39.5 parent: 2 - - uid: 16779 + - uid: 16762 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-39.5 parent: 2 - - uid: 16780 + - uid: 16763 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-39.5 parent: 2 - - uid: 16781 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-39.5 parent: 2 - - uid: 16782 + - uid: 16765 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-39.5 parent: 2 - - uid: 16783 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 - - uid: 16784 + - uid: 16767 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-39.5 parent: 2 - - uid: 16785 + - uid: 16768 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-39.5 parent: 2 - - uid: 16786 + - uid: 16769 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-39.5 parent: 2 - - uid: 16787 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 - - uid: 16788 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-39.5 parent: 2 - - uid: 16789 + - uid: 16772 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 - - uid: 16790 + - uid: 16773 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-57.5 parent: 2 - - uid: 16791 + - uid: 16774 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-57.5 parent: 2 - - uid: 16792 + - uid: 16775 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-56.5 parent: 2 - - uid: 16793 + - uid: 16776 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-55.5 parent: 2 - - uid: 16794 + - uid: 16777 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-54.5 parent: 2 - - uid: 16795 + - uid: 16778 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-53.5 parent: 2 - - uid: 16796 + - uid: 16779 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 2 - - uid: 16797 + - uid: 16780 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-50.5 parent: 2 - - uid: 16798 + - uid: 16781 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-48.5 parent: 2 - - uid: 16799 + - uid: 16782 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-47.5 parent: 2 - - uid: 16800 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-46.5 parent: 2 - - uid: 16801 + - uid: 16784 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-45.5 parent: 2 - - uid: 16802 + - uid: 16785 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-44.5 parent: 2 - - uid: 16803 + - uid: 16786 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-43.5 parent: 2 - - uid: 16804 + - uid: 16787 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-42.5 parent: 2 - - uid: 16805 + - uid: 16788 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-41.5 parent: 2 - - uid: 16806 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-40.5 parent: 2 - - uid: 16807 + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-39.5 parent: 2 - - uid: 16808 + - uid: 16791 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-38.5 parent: 2 - - uid: 16809 + - uid: 16792 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-37.5 parent: 2 - - uid: 16810 + - uid: 16793 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-36.5 parent: 2 - - uid: 16811 + - uid: 16794 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-35.5 parent: 2 - - uid: 16812 + - uid: 16795 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-33.5 parent: 2 - - uid: 16813 + - uid: 16796 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 - - uid: 16814 + - uid: 16797 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-31.5 parent: 2 - - uid: 16815 + - uid: 16798 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-30.5 parent: 2 - - uid: 16816 + - uid: 16799 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-29.5 parent: 2 - - uid: 16817 + - uid: 16800 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-28.5 parent: 2 - - uid: 16818 + - uid: 16801 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-27.5 parent: 2 - - uid: 16819 + - uid: 16802 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-26.5 parent: 2 - - uid: 16820 + - uid: 16803 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 - - uid: 16821 + - uid: 16804 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 - - uid: 16822 + - uid: 16805 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-52.5 parent: 2 - - uid: 16823 + - uid: 16806 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-45.5 parent: 2 - - uid: 16824 + - uid: 16807 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-45.5 parent: 2 - - uid: 16825 + - uid: 16808 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-45.5 parent: 2 - - uid: 16826 + - uid: 16809 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-45.5 parent: 2 - - uid: 16827 + - uid: 16810 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-45.5 parent: 2 - - uid: 16828 + - uid: 16811 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-45.5 parent: 2 - - uid: 16829 + - uid: 16812 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 16830 + - uid: 16813 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 16831 + - uid: 16814 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 16832 + - uid: 16815 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 16833 + - uid: 16816 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 16834 + - uid: 16817 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 16835 + - uid: 16818 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 16836 + - uid: 16819 components: - type: Transform pos: -23.5,-36.5 parent: 2 - - uid: 16837 + - uid: 16820 components: - type: Transform pos: -23.5,-35.5 parent: 2 - - uid: 16838 + - uid: 16821 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 - - uid: 16839 + - uid: 16822 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 2 - - uid: 16840 + - uid: 16823 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-34.5 parent: 2 - - uid: 16841 + - uid: 16824 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-34.5 parent: 2 - - uid: 16842 + - uid: 16825 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 - - uid: 16843 + - uid: 16826 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 - - uid: 16844 + - uid: 16827 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-34.5 parent: 2 - - uid: 16845 + - uid: 16828 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-34.5 parent: 2 - - uid: 16846 + - uid: 16829 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-34.5 parent: 2 - - uid: 16847 + - uid: 16830 components: - type: Transform pos: -25.5,-46.5 parent: 2 - - uid: 16848 + - uid: 16831 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-34.5 parent: 2 - - uid: 16849 + - uid: 16832 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 - - uid: 16850 + - uid: 16833 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-34.5 parent: 2 - - uid: 16851 + - uid: 16834 components: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 16852 + - uid: 16835 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 16853 + - uid: 16836 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 16854 + - uid: 16837 components: - type: Transform pos: -8.5,-30.5 parent: 2 - - uid: 16855 + - uid: 16838 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-49.5 parent: 2 - - uid: 16856 + - uid: 16839 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-49.5 parent: 2 - - uid: 16857 + - uid: 16840 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-49.5 parent: 2 - - uid: 16858 + - uid: 16841 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-49.5 parent: 2 - - uid: 16859 + - uid: 16842 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-49.5 parent: 2 - - uid: 16860 + - uid: 16843 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-49.5 parent: 2 - - uid: 16861 + - uid: 16844 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-49.5 parent: 2 - - uid: 16862 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 - - uid: 16863 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-49.5 parent: 2 - - uid: 16864 + - uid: 16847 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 16865 + - uid: 16848 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-10.5 parent: 2 - - uid: 16866 + - uid: 16849 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-9.5 parent: 2 - - uid: 16867 + - uid: 16850 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-8.5 parent: 2 - - uid: 16868 + - uid: 16851 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-7.5 parent: 2 - - uid: 16869 + - uid: 16852 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-6.5 parent: 2 - - uid: 16870 + - uid: 16853 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-5.5 parent: 2 - - uid: 16871 + - uid: 16854 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-4.5 parent: 2 - - uid: 16872 + - uid: 16855 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-3.5 parent: 2 - - uid: 16873 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 - - uid: 16874 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-2.5 parent: 2 - - uid: 16875 + - uid: 16858 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-2.5 parent: 2 - - uid: 16876 + - uid: 16859 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-2.5 parent: 2 - - uid: 16877 + - uid: 16860 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 - - uid: 16878 + - uid: 16861 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-2.5 parent: 2 - - uid: 16879 + - uid: 16862 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 - - uid: 16880 + - uid: 16863 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-2.5 parent: 2 - - uid: 16881 + - uid: 16864 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-2.5 parent: 2 - - uid: 16882 + - uid: 16865 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-2.5 parent: 2 - - uid: 16883 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-2.5 parent: 2 - - uid: 16884 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - - uid: 16885 + - uid: 16868 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - - uid: 16886 + - uid: 16869 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-8.5 parent: 2 - - uid: 16887 + - uid: 16870 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-8.5 parent: 2 - - uid: 16888 + - uid: 16871 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-8.5 parent: 2 - - uid: 16889 + - uid: 16872 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-8.5 parent: 2 - - uid: 16890 + - uid: 16873 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 2 - - uid: 16891 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 2 - - uid: 16892 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 - - uid: 16893 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-8.5 parent: 2 - - uid: 16894 + - uid: 16877 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 16895 + - uid: 16878 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 16896 + - uid: 16879 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-5.5 parent: 2 - - uid: 16897 + - uid: 16880 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 2 - - uid: 16898 + - uid: 16881 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 - - uid: 16899 + - uid: 16882 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,5.5 parent: 2 - - uid: 16900 + - uid: 16883 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 - - uid: 16901 + - uid: 16884 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,6.5 parent: 2 - - uid: 16902 + - uid: 16885 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,7.5 parent: 2 - - uid: 16903 + - uid: 16886 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 2 - - uid: 16904 + - uid: 16887 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 - - uid: 16905 + - uid: 16888 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,5.5 parent: 2 - - uid: 16906 + - uid: 16889 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 - - uid: 16907 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 - - uid: 16908 + - uid: 16891 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 - - uid: 16909 + - uid: 16892 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,5.5 parent: 2 - - uid: 16910 + - uid: 16893 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 - - uid: 16911 + - uid: 16894 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 - - uid: 16912 + - uid: 16895 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,4.5 parent: 2 - - uid: 16913 + - uid: 16896 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,4.5 parent: 2 - - uid: 16914 + - uid: 16897 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 - - uid: 16915 + - uid: 16898 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,4.5 parent: 2 - - uid: 16916 + - uid: 16899 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,4.5 parent: 2 - - uid: 16917 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,4.5 parent: 2 - - uid: 16918 + - uid: 16901 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,4.5 parent: 2 - - uid: 16919 + - uid: 16902 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,4.5 parent: 2 - - uid: 16920 + - uid: 16903 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,4.5 parent: 2 - - uid: 16921 + - uid: 16904 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,4.5 parent: 2 - - uid: 16922 + - uid: 16905 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,4.5 parent: 2 - - uid: 16923 + - uid: 16906 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,4.5 parent: 2 - - uid: 16924 + - uid: 16907 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,4.5 parent: 2 - - uid: 16925 + - uid: 16908 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,5.5 parent: 2 - - uid: 16926 + - uid: 16909 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,6.5 parent: 2 - - uid: 16927 + - uid: 16910 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,7.5 parent: 2 - - uid: 16928 + - uid: 16911 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,9.5 parent: 2 - - uid: 16929 + - uid: 16912 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,10.5 parent: 2 - - uid: 16930 + - uid: 16913 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 16931 + - uid: 16914 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,13.5 parent: 2 - - uid: 16932 + - uid: 16915 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,14.5 parent: 2 - - uid: 16933 + - uid: 16916 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,17.5 parent: 2 - - uid: 16934 + - uid: 16917 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,18.5 parent: 2 - - uid: 16935 + - uid: 16918 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,19.5 parent: 2 - - uid: 16936 + - uid: 16919 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 16937 + - uid: 16920 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 - - uid: 16938 + - uid: 16921 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,25.5 parent: 2 - - uid: 16939 + - uid: 16922 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,25.5 parent: 2 - - uid: 16940 + - uid: 16923 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,25.5 parent: 2 - - uid: 16941 + - uid: 16924 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,25.5 parent: 2 - - uid: 16942 + - uid: 16925 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,25.5 parent: 2 - - uid: 16943 + - uid: 16926 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,25.5 parent: 2 - - uid: 16944 + - uid: 16927 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,25.5 parent: 2 - - uid: 16945 + - uid: 16928 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,25.5 parent: 2 - - uid: 16946 + - uid: 16929 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,25.5 parent: 2 - - uid: 16947 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,25.5 parent: 2 - - uid: 16948 + - uid: 16931 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 16949 + - uid: 16932 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 16950 + - uid: 16933 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,22.5 parent: 2 - - uid: 16951 + - uid: 16934 components: - type: Transform pos: 43.5,19.5 parent: 2 - - uid: 16952 + - uid: 16935 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,20.5 parent: 2 - - uid: 16953 + - uid: 16936 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,20.5 parent: 2 - - uid: 16954 + - uid: 16937 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,20.5 parent: 2 - - uid: 16955 + - uid: 16938 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,16.5 parent: 2 - - uid: 16956 + - uid: 16939 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 - - uid: 16957 + - uid: 16940 components: - type: Transform pos: 52.5,5.5 parent: 2 - - uid: 16958 + - uid: 16941 components: - type: Transform pos: 52.5,6.5 parent: 2 - - uid: 16959 + - uid: 16942 components: - type: Transform pos: 52.5,7.5 parent: 2 - - uid: 16960 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,8.5 parent: 2 - - uid: 16961 + - uid: 16944 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,8.5 parent: 2 - - uid: 16962 + - uid: 16945 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 16963 + - uid: 16946 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,8.5 parent: 2 - - uid: 16964 + - uid: 16947 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,4.5 parent: 2 - - uid: 16965 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,12.5 parent: 2 - - uid: 16966 + - uid: 16949 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,12.5 parent: 2 - - uid: 16967 + - uid: 16950 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 - - uid: 16968 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,30.5 parent: 2 - - uid: 16969 + - uid: 16952 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,30.5 parent: 2 - - uid: 16970 + - uid: 16953 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,30.5 parent: 2 - - uid: 16971 + - uid: 16954 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,30.5 parent: 2 - - uid: 16972 + - uid: 16955 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 - - uid: 16973 + - uid: 16956 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 - - uid: 16974 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,29.5 parent: 2 - - uid: 16975 + - uid: 16958 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,28.5 parent: 2 - - uid: 16976 + - uid: 16959 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,27.5 parent: 2 - - uid: 16977 + - uid: 16960 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,30.5 parent: 2 - - uid: 16978 + - uid: 16961 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,22.5 parent: 2 - - uid: 16979 + - uid: 16962 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 16980 + - uid: 16963 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 16981 + - uid: 16964 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 16982 + - uid: 16965 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 16983 + - uid: 16966 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 16984 + - uid: 16967 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 16985 + - uid: 16968 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 16986 + - uid: 16969 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 16987 + - uid: 16970 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 16988 + - uid: 16971 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 16989 + - uid: 16972 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 16990 + - uid: 16973 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 16991 + - uid: 16974 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 16992 + - uid: 16975 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 16993 + - uid: 16976 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 16994 + - uid: 16977 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 16995 + - uid: 16978 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 16996 + - uid: 16979 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 16997 + - uid: 16980 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 16998 + - uid: 16981 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 16999 + - uid: 16982 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 17000 + - uid: 16983 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 17001 + - uid: 16984 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 17002 + - uid: 16985 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 17003 + - uid: 16986 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 17004 + - uid: 16987 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 17005 + - uid: 16988 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 17006 + - uid: 16989 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,12.5 parent: 2 - - uid: 17007 + - uid: 16990 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,12.5 parent: 2 - - uid: 17008 + - uid: 16991 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,12.5 parent: 2 - - uid: 17009 + - uid: 16992 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,12.5 parent: 2 - - uid: 17010 + - uid: 16993 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,12.5 parent: 2 - - uid: 17011 + - uid: 16994 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,12.5 parent: 2 - - uid: 17012 + - uid: 16995 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,12.5 parent: 2 - - uid: 17013 + - uid: 16996 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,12.5 parent: 2 - - uid: 17014 + - uid: 16997 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,12.5 parent: 2 - - uid: 17015 + - uid: 16998 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,11.5 parent: 2 - - uid: 17016 + - uid: 16999 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,9.5 parent: 2 - - uid: 17017 + - uid: 17000 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,8.5 parent: 2 - - uid: 17018 + - uid: 17001 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,7.5 parent: 2 - - uid: 17019 + - uid: 17002 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,6.5 parent: 2 - - uid: 17020 + - uid: 17003 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,5.5 parent: 2 - - uid: 17021 + - uid: 17004 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 - - uid: 17022 + - uid: 17005 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,5.5 parent: 2 - - uid: 17023 + - uid: 17006 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 2 - - uid: 17024 + - uid: 17007 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,5.5 parent: 2 - - uid: 17025 + - uid: 17008 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,5.5 parent: 2 - - uid: 17026 + - uid: 17009 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,5.5 parent: 2 - - uid: 17027 + - uid: 17010 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,5.5 parent: 2 - - uid: 17028 + - uid: 17011 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,5.5 parent: 2 - - uid: 17029 + - uid: 17012 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,5.5 parent: 2 - - uid: 17030 + - uid: 17013 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,5.5 parent: 2 - - uid: 17031 + - uid: 17014 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,5.5 parent: 2 - - uid: 17032 + - uid: 17015 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 - - uid: 17033 + - uid: 17016 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,5.5 parent: 2 - - uid: 17034 + - uid: 17017 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,5.5 parent: 2 - - uid: 17035 + - uid: 17018 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,5.5 parent: 2 - - uid: 17036 + - uid: 17019 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,5.5 parent: 2 - - uid: 17037 + - uid: 17020 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,5.5 parent: 2 - - uid: 17038 + - uid: 17021 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,5.5 parent: 2 - - uid: 17039 + - uid: 17022 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,5.5 parent: 2 - - uid: 17040 + - uid: 17023 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,5.5 parent: 2 - - uid: 17041 + - uid: 17024 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,5.5 parent: 2 - - uid: 17042 + - uid: 17025 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 17043 + - uid: 17026 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,50.5 parent: 2 - - uid: 17044 + - uid: 17027 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 - - uid: 17045 + - uid: 17028 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 - - uid: 17046 + - uid: 17029 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 - - uid: 17047 + - uid: 17030 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,50.5 parent: 2 - - uid: 17048 + - uid: 17031 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,50.5 parent: 2 - - uid: 17049 + - uid: 17032 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 - - uid: 17050 + - uid: 17033 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,50.5 parent: 2 - - uid: 17051 + - uid: 17034 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,50.5 parent: 2 - - uid: 17052 + - uid: 17035 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,50.5 parent: 2 - - uid: 17053 + - uid: 17036 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 17054 + - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,10.5 parent: 2 - - uid: 17055 + - uid: 17038 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 2 - - uid: 17056 + - uid: 17039 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-11.5 parent: 2 - - uid: 17057 + - uid: 17040 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-12.5 parent: 2 - - uid: 17058 + - uid: 17041 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-13.5 parent: 2 - - uid: 17059 + - uid: 17042 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-14.5 parent: 2 - - uid: 17060 + - uid: 17043 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-15.5 parent: 2 - - uid: 17061 + - uid: 17044 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-16.5 parent: 2 - - uid: 17062 + - uid: 17045 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-17.5 parent: 2 - - uid: 17063 + - uid: 17046 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-21.5 parent: 2 - - uid: 17064 + - uid: 17047 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-22.5 parent: 2 - - uid: 17065 + - uid: 17048 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-23.5 parent: 2 - - uid: 17066 + - uid: 17049 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-24.5 parent: 2 - - uid: 17067 + - uid: 17050 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 2 - - uid: 17068 + - uid: 17051 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-26.5 parent: 2 - - uid: 17069 + - uid: 17052 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-27.5 parent: 2 - - uid: 17070 + - uid: 17053 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-28.5 parent: 2 - - uid: 17071 + - uid: 17054 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-20.5 parent: 2 - - uid: 17072 + - uid: 17055 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 - - uid: 17073 + - uid: 17056 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-20.5 parent: 2 - - uid: 17074 + - uid: 17057 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-20.5 parent: 2 - - uid: 17075 + - uid: 17058 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-20.5 parent: 2 - - uid: 17076 + - uid: 17059 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 17077 + - uid: 17060 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-20.5 parent: 2 - - uid: 17078 + - uid: 17061 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-20.5 parent: 2 - - uid: 17079 + - uid: 17062 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-20.5 parent: 2 - - uid: 17080 + - uid: 17063 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-20.5 parent: 2 - - uid: 17081 + - uid: 17064 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-20.5 parent: 2 - - uid: 17082 + - uid: 17065 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-20.5 parent: 2 - - uid: 17083 + - uid: 17066 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-20.5 parent: 2 - - uid: 17084 + - uid: 17067 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-20.5 parent: 2 - - uid: 17085 + - uid: 17068 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-20.5 parent: 2 - - uid: 17086 + - uid: 17069 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-20.5 parent: 2 - - uid: 17087 + - uid: 17070 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-18.5 parent: 2 - - uid: 17088 + - uid: 17071 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-18.5 parent: 2 - - uid: 17089 + - uid: 17072 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-18.5 parent: 2 - - uid: 17090 + - uid: 17073 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-18.5 parent: 2 - - uid: 17091 + - uid: 17074 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-18.5 parent: 2 - - uid: 17092 + - uid: 17075 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-18.5 parent: 2 - - uid: 17093 + - uid: 17076 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-18.5 parent: 2 - - uid: 17094 + - uid: 17077 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-18.5 parent: 2 - - uid: 17095 + - uid: 17078 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-18.5 parent: 2 - - uid: 17096 + - uid: 17079 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-18.5 parent: 2 - - uid: 17097 + - uid: 17080 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-18.5 parent: 2 - - uid: 17098 + - uid: 17081 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-18.5 parent: 2 - - uid: 17099 + - uid: 17082 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 - - uid: 17100 + - uid: 17083 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 - - uid: 17101 + - uid: 17084 components: - type: Transform pos: 41.5,-17.5 parent: 2 - - uid: 17102 + - uid: 17085 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 17103 + - uid: 17086 components: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 17104 + - uid: 17087 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 17105 + - uid: 17088 components: - type: Transform pos: 39.5,-19.5 parent: 2 - - uid: 17106 + - uid: 17089 components: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 17107 + - uid: 17090 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-14.5 parent: 2 - - uid: 17108 + - uid: 17091 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 - - uid: 17109 + - uid: 17092 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-12.5 parent: 2 - - uid: 17110 + - uid: 17093 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-11.5 parent: 2 - - uid: 17111 + - uid: 17094 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-11.5 parent: 2 - - uid: 17112 + - uid: 17095 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 - - uid: 17113 + - uid: 17096 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 - - uid: 17114 + - uid: 17097 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-11.5 parent: 2 - - uid: 17115 + - uid: 17098 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-11.5 parent: 2 - - uid: 17116 + - uid: 17099 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-11.5 parent: 2 - - uid: 17117 + - uid: 17100 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 - - uid: 17118 + - uid: 17101 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-10.5 parent: 2 - - uid: 17119 + - uid: 17102 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-10.5 parent: 2 - - uid: 17120 + - uid: 17103 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-10.5 parent: 2 - - uid: 17121 + - uid: 17104 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 - - uid: 17122 + - uid: 17105 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-10.5 parent: 2 - - uid: 17123 + - uid: 17106 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-10.5 parent: 2 - - uid: 17124 + - uid: 17107 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 - - uid: 17125 + - uid: 17108 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 - - uid: 17126 + - uid: 17109 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 - - uid: 17127 + - uid: 17110 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 - - uid: 17128 + - uid: 17111 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 - - uid: 17129 + - uid: 17112 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 - - uid: 17130 + - uid: 17113 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 - - uid: 17131 + - uid: 17114 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 2 - - uid: 17132 + - uid: 17115 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 17133 + - uid: 17116 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,28.5 parent: 2 - - uid: 17134 + - uid: 17117 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,28.5 parent: 2 - - uid: 17135 + - uid: 17118 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 - - uid: 17136 + - uid: 17119 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,28.5 parent: 2 - - uid: 17137 + - uid: 17120 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,25.5 parent: 2 - - uid: 17138 + - uid: 17121 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 17139 + - uid: 17122 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 17140 + - uid: 17123 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 17141 + - uid: 17124 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 17142 + - uid: 17125 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 17143 + - uid: 17126 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 17144 + - uid: 17127 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 17145 + - uid: 17128 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 17146 + - uid: 17129 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 17147 + - uid: 17130 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 17148 + - uid: 17131 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 17149 + - uid: 17132 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-22.5 parent: 2 - - uid: 17150 + - uid: 17133 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-22.5 parent: 2 - - uid: 17151 + - uid: 17134 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 - - uid: 17152 + - uid: 17135 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,11.5 parent: 2 - - uid: 17153 + - uid: 17136 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,11.5 parent: 2 - - uid: 17154 + - uid: 17137 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,11.5 parent: 2 - - uid: 17155 + - uid: 17138 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,28.5 parent: 2 - - uid: 17156 + - uid: 17139 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 17157 + - uid: 17140 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,2.5 parent: 2 - - uid: 17158 + - uid: 17141 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,2.5 parent: 2 - - uid: 17159 + - uid: 17142 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,2.5 parent: 2 - - uid: 17160 + - uid: 17143 components: - type: Transform rot: -1.5707963267948966 rad @@ -132768,910 +132796,910 @@ entities: parent: 2 - proto: DisposalTrunk entities: - - uid: 17161 + - uid: 17144 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,28.5 parent: 2 - - uid: 17162 + - uid: 17145 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 2 - - uid: 17163 + - uid: 17146 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-52.5 parent: 2 - - uid: 17164 + - uid: 17147 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,36.5 parent: 2 - - uid: 17165 + - uid: 17148 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 - - uid: 17166 + - uid: 17149 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-21.5 parent: 2 - - uid: 17167 + - uid: 17150 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 17168 + - uid: 17151 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,15.5 parent: 2 - - uid: 17169 + - uid: 17152 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,3.5 parent: 2 - - uid: 17170 + - uid: 17153 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2 - - uid: 17171 + - uid: 17154 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 - - uid: 17172 + - uid: 17155 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 17173 + - uid: 17156 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,34.5 parent: 2 - - uid: 17174 + - uid: 17157 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,13.5 parent: 2 - - uid: 17175 + - uid: 17158 components: - type: Transform pos: -30.5,45.5 parent: 2 - - uid: 17176 + - uid: 17159 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 - - uid: 17177 + - uid: 17160 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,29.5 parent: 2 - - uid: 17178 + - uid: 17161 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 - - uid: 17179 + - uid: 17162 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-51.5 parent: 2 - - uid: 17180 + - uid: 17163 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17181 + - uid: 17164 components: - type: Transform pos: -38.5,-29.5 parent: 2 - - uid: 17182 + - uid: 17165 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 17183 + - uid: 17166 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,33.5 parent: 2 - - uid: 17184 + - uid: 17167 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-28.5 parent: 2 - - uid: 17185 + - uid: 17168 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 2 - - uid: 17186 + - uid: 17169 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-41.5 parent: 2 - - uid: 17187 + - uid: 17170 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 - - uid: 17188 + - uid: 17171 components: - type: Transform pos: -32.5,-22.5 parent: 2 - - uid: 17189 + - uid: 17172 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-51.5 parent: 2 - - uid: 17190 + - uid: 17173 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 17191 + - uid: 17174 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-74.5 parent: 2 - - uid: 17192 + - uid: 17175 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 17193 + - uid: 17176 components: - type: Transform pos: -36.5,-22.5 parent: 2 - - uid: 17194 + - uid: 17177 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-32.5 parent: 2 - - uid: 17195 + - uid: 17178 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 17196 + - uid: 17179 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 17197 + - uid: 17180 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,20.5 parent: 2 - - uid: 17198 + - uid: 17181 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,26.5 parent: 2 - - uid: 17199 + - uid: 17182 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,13.5 parent: 2 - - uid: 17200 + - uid: 17183 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,52.5 parent: 2 - - uid: 17201 + - uid: 17184 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,22.5 parent: 2 - - uid: 17202 + - uid: 17185 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,38.5 parent: 2 - - uid: 17203 + - uid: 17186 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-27.5 parent: 2 - - uid: 17204 + - uid: 17187 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 17205 + - uid: 17188 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-69.5 parent: 2 - - uid: 17206 + - uid: 17189 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,17.5 parent: 2 - - uid: 17207 + - uid: 17190 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,55.5 parent: 2 - - uid: 17208 + - uid: 17191 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,32.5 parent: 2 - - uid: 17209 + - uid: 17192 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-25.5 parent: 2 - - uid: 17210 + - uid: 17193 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 - - uid: 17211 + - uid: 17194 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-25.5 parent: 2 - - uid: 17212 + - uid: 17195 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-32.5 parent: 2 - - uid: 17213 + - uid: 17196 components: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 17214 + - uid: 17197 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,57.5 parent: 2 - - uid: 17215 + - uid: 17198 components: - type: Transform pos: -40.5,-22.5 parent: 2 - - uid: 17216 + - uid: 17199 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,38.5 parent: 2 - - uid: 17217 + - uid: 17200 components: - type: Transform pos: 32.5,-21.5 parent: 2 - - uid: 17218 + - uid: 17201 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 - - uid: 17219 + - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,53.5 parent: 2 - - uid: 17220 + - uid: 17203 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-17.5 parent: 2 - - uid: 17221 + - uid: 17204 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-9.5 parent: 2 - - uid: 17222 + - uid: 17205 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,28.5 parent: 2 - - uid: 17223 + - uid: 17206 components: - type: Transform pos: 25.5,38.5 parent: 2 - - uid: 17224 + - uid: 17207 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-29.5 parent: 2 - - uid: 17225 + - uid: 17208 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,54.5 parent: 2 - - uid: 17226 + - uid: 17209 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,82.5 parent: 2 - - uid: 17227 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,61.5 parent: 2 - - uid: 17228 + - uid: 17211 components: - type: Transform pos: -29.5,55.5 parent: 2 - - uid: 17229 + - uid: 17212 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,48.5 parent: 2 - - uid: 17230 + - uid: 17213 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-81.5 parent: 2 - - uid: 17231 + - uid: 17214 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 - - uid: 17232 + - uid: 17215 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 - - uid: 17233 + - uid: 17216 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 - - uid: 17234 + - uid: 17217 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-46.5 parent: 2 - - uid: 17235 + - uid: 17218 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-37.5 parent: 2 - - uid: 17236 + - uid: 17219 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-47.5 parent: 2 - - uid: 17237 + - uid: 17220 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 17238 + - uid: 17221 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 - - uid: 17239 + - uid: 17222 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 2 - - uid: 17240 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 2 - - uid: 17241 + - uid: 17224 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 17242 + - uid: 17225 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,21.5 parent: 2 - - uid: 17243 + - uid: 17226 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 17244 + - uid: 17227 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-9.5 parent: 2 - - uid: 17245 + - uid: 17228 components: - type: Transform pos: -57.5,3.5 parent: 2 - proto: DisposalUnit entities: - - uid: 17246 + - uid: 17229 components: - type: Transform pos: 68.5,28.5 parent: 2 - - uid: 17247 + - uid: 17230 components: - type: Transform pos: -67.5,54.5 parent: 2 - - uid: 17248 + - uid: 17231 components: - type: Transform pos: 8.5,82.5 parent: 2 - - uid: 17249 + - uid: 17232 components: - type: Transform pos: -7.5,48.5 parent: 2 - - uid: 17250 + - uid: 17233 components: - type: Transform pos: 24.5,26.5 parent: 2 - - uid: 17251 + - uid: 17234 components: - type: Transform pos: -25.5,-47.5 parent: 2 - - uid: 17252 + - uid: 17235 components: - type: Transform pos: -5.5,36.5 parent: 2 - - uid: 17253 + - uid: 17236 components: - type: Transform pos: -29.5,55.5 parent: 2 - - uid: 17254 + - uid: 17237 components: - type: Transform pos: 45.5,15.5 parent: 2 - - uid: 17255 + - uid: 17238 components: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 17256 + - uid: 17239 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 17257 + - uid: 17240 components: - type: Transform pos: -11.5,-5.5 parent: 2 - - uid: 17258 + - uid: 17241 components: - type: Transform pos: 67.5,-51.5 parent: 2 - - uid: 17259 + - uid: 17242 components: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 17260 + - uid: 17243 components: - type: Transform pos: -20.5,-41.5 parent: 2 - - uid: 17261 + - uid: 17244 components: - type: Transform pos: 4.5,-27.5 parent: 2 - - uid: 17262 + - uid: 17245 components: - type: Transform pos: -22.5,-37.5 parent: 2 - - uid: 17263 + - uid: 17246 components: - type: Transform pos: -40.5,-25.5 parent: 2 - - uid: 17264 + - uid: 17247 components: - type: Transform pos: 32.5,-21.5 parent: 2 - - uid: 17265 + - uid: 17248 components: - type: Transform pos: -3.5,-49.5 parent: 2 - - uid: 17266 + - uid: 17249 components: - type: Transform pos: -34.5,-12.5 parent: 2 - - uid: 17267 + - uid: 17250 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 17268 + - uid: 17251 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 17269 + - uid: 17252 components: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 17270 + - uid: 17253 components: - type: Transform pos: -12.5,-53.5 parent: 2 - - uid: 17271 + - uid: 17254 components: - type: Transform pos: 1.5,-61.5 parent: 2 - - uid: 17272 + - uid: 17255 components: - type: Transform pos: -9.5,26.5 parent: 2 - - uid: 17273 + - uid: 17256 components: - type: Transform pos: -64.5,13.5 parent: 2 - - uid: 17274 + - uid: 17257 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 17275 + - uid: 17258 components: - type: Transform pos: 72.5,-51.5 parent: 2 - - uid: 17276 + - uid: 17259 components: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 17277 + - uid: 17260 components: - type: Transform pos: 42.5,-9.5 parent: 2 - - uid: 17278 + - uid: 17261 components: - type: Transform pos: -17.5,-79.5 parent: 2 - - uid: 17279 + - uid: 17262 components: - type: Transform pos: -58.5,17.5 parent: 2 - - uid: 17280 + - uid: 17263 components: - type: Transform pos: -24.5,29.5 parent: 2 - - uid: 17281 + - uid: 17264 components: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 17282 + - uid: 17265 components: - type: Transform pos: -30.5,45.5 parent: 2 - - uid: 17283 + - uid: 17266 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 17284 + - uid: 17267 components: - type: Transform pos: -8.5,13.5 parent: 2 - - uid: 17285 + - uid: 17268 components: - type: Transform pos: 7.5,13.5 parent: 2 - - uid: 17286 + - uid: 17269 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 17287 + - uid: 17270 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 17288 + - uid: 17271 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 17289 + - uid: 17272 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 17290 + - uid: 17273 components: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 17291 + - uid: 17274 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 17292 + - uid: 17275 components: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 17293 + - uid: 17276 components: - type: Transform pos: -57.5,3.5 parent: 2 - - uid: 17294 + - uid: 17277 components: - type: Transform pos: -45.5,20.5 parent: 2 - - uid: 17295 + - uid: 17278 components: - type: Transform pos: 28.5,-69.5 parent: 2 - - uid: 17296 + - uid: 17279 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 17297 + - uid: 17280 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 17298 + - uid: 17281 components: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 17299 + - uid: 17282 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 17300 + - uid: 17283 components: - type: Transform pos: -17.5,-21.5 parent: 2 - - uid: 17301 + - uid: 17284 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 17302 + - uid: 17285 components: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 17303 + - uid: 17286 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 17304 + - uid: 17287 components: - type: Transform pos: -38.5,-29.5 parent: 2 - - uid: 17305 + - uid: 17288 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17306 + - uid: 17289 components: - type: Transform pos: -32.5,-25.5 parent: 2 - - uid: 17307 + - uid: 17290 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 17308 + - uid: 17291 components: - type: Transform pos: 16.5,-21.5 parent: 2 - - uid: 17309 + - uid: 17292 components: - type: Transform pos: 25.5,38.5 parent: 2 - - uid: 17310 + - uid: 17293 components: - type: Transform pos: 43.5,17.5 parent: 2 - - uid: 17311 + - uid: 17294 components: - type: Transform pos: 50.5,3.5 parent: 2 - - uid: 17312 + - uid: 17295 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 17313 + - uid: 17296 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 17314 + - uid: 17297 components: - type: Transform pos: -2.5,-81.5 parent: 2 - - uid: 17315 + - uid: 17298 components: - type: Transform pos: -2.5,-63.5 parent: 2 - - uid: 17316 + - uid: 17299 components: - type: Transform pos: -34.5,53.5 parent: 2 - - uid: 17317 + - uid: 17300 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 17318 + - uid: 17301 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 17319 + - uid: 17302 components: - type: Transform pos: -27.5,61.5 parent: 2 - - uid: 17320 + - uid: 17303 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 17321 + - uid: 17304 components: - type: Transform pos: 55.5,-9.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 17322 + - uid: 17305 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,30.5 parent: 2 - - uid: 17323 + - uid: 17306 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,57.5 parent: 2 - - uid: 17324 + - uid: 17307 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-34.5 parent: 2 - - uid: 17325 + - uid: 17308 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-34.5 parent: 2 - - uid: 17326 + - uid: 17309 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-15.5 parent: 2 - - uid: 17327 + - uid: 17310 components: - type: Transform rot: -1.5707963267948966 rad @@ -133679,57 +133707,57 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 17328 + - uid: 17311 components: - type: Transform pos: -39.5,-59.5 parent: 2 - - uid: 17329 + - uid: 17312 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - uid: 17330 + - uid: 17313 components: - type: Transform pos: 1.5,50.5 parent: 2 - - uid: 17331 + - uid: 17314 components: - type: Transform pos: 52.5,9.5 parent: 2 - - uid: 17332 + - uid: 17315 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 17333 + - uid: 17316 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 17334 + - uid: 17317 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 17335 + - uid: 17318 components: - type: Transform pos: 27.5,41.5 parent: 2 - - uid: 17336 + - uid: 17319 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 17337 + - uid: 17320 components: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 17338 + - uid: 17321 components: - type: MetaData desc: Удобная лежанка для крабов. Да, такие существуют. А что вы хотели? @@ -133737,64 +133765,64 @@ entities: - type: Transform pos: -52.5,33.5 parent: 2 - - uid: 17339 + - uid: 17322 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 17340 + - uid: 17323 components: - type: Transform pos: -30.5,-64.5 parent: 2 - - uid: 17341 + - uid: 17324 components: - type: Transform pos: -33.5,46.5 parent: 2 - - uid: 17342 + - uid: 17325 components: - type: Transform pos: -7.5,18.5 parent: 2 - - uid: 17343 + - uid: 17326 components: - type: Transform pos: -26.5,52.5 parent: 2 - - uid: 17344 + - uid: 17327 components: - type: Transform pos: -37.5,50.5 parent: 2 - - uid: 39148 + - uid: 38975 components: - type: Transform pos: -16.5,30.5 - parent: 38584 + parent: 38411 - proto: DonkpocketBoxSpawner entities: - - uid: 17345 + - uid: 17328 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 17346 + - uid: 17329 components: - type: Transform pos: 27.5,32.5 parent: 2 - - uid: 17347 + - uid: 17330 components: - type: Transform pos: 20.5,0.5 parent: 2 - - uid: 17348 + - uid: 17331 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 17349 + - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad @@ -133802,12 +133830,12 @@ entities: parent: 2 - proto: DoorElectronics entities: - - uid: 17350 + - uid: 17333 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 17351 + - uid: 17334 components: - type: Transform pos: -32.5,9.5 @@ -133842,32 +133870,32 @@ entities: actions: !type:Container ents: - 30 - - uid: 17352 + - uid: 17335 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 17353 + - uid: 17336 components: - type: Transform pos: -49.56276,20.6829 parent: 2 - type: Physics canCollide: False - - uid: 17354 + - uid: 17337 components: - type: Transform rot: 3.141592653589793 rad pos: 31.512732,59.45561 parent: 2 - - uid: 17355 + - uid: 17338 components: - type: Transform pos: -49.37526,20.52665 parent: 2 - type: Physics canCollide: False - - uid: 17356 + - uid: 17339 components: - type: Transform pos: -57.510643,-1.4317584 @@ -133876,7 +133904,7 @@ entities: canCollide: False - proto: Dresser entities: - - uid: 14989 + - uid: 14930 components: - type: Transform pos: -30.5,-15.5 @@ -133887,8 +133915,8 @@ entities: showEnts: False occludes: True ents: - - 14990 - - uid: 15018 + - 14931 + - uid: 14959 components: - type: Transform pos: 14.5,-52.5 @@ -133899,361 +133927,361 @@ entities: showEnts: False occludes: True ents: - - 15023 - - 15021 - - 15022 - - 15024 - - 15020 - - 15019 - - uid: 17357 + - 14964 + - 14962 + - 14963 + - 14965 + - 14961 + - 14960 + - uid: 17340 components: - type: Transform pos: -3.5,44.5 parent: 2 - - uid: 17358 + - uid: 17341 components: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 17359 + - uid: 17342 components: - type: Transform pos: -9.5,54.5 parent: 2 - - uid: 17360 + - uid: 17343 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 17361 + - uid: 17344 components: - type: Transform pos: 98.5,13.5 parent: 2 - - uid: 17362 + - uid: 17345 components: - type: Transform pos: 81.5,-4.5 parent: 2 - - uid: 17363 + - uid: 17346 components: - type: Transform pos: 85.5,-4.5 parent: 2 - - uid: 17364 + - uid: 17347 components: - type: Transform pos: 89.5,-4.5 parent: 2 - proto: DresserCaptainFilled entities: - - uid: 17365 + - uid: 17348 components: - type: Transform pos: 13.5,0.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 17366 + - uid: 17349 components: - type: Transform pos: -58.5,5.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 17367 + - uid: 17350 components: - type: Transform pos: 24.5,-50.5 parent: 2 - proto: DresserFilled entities: - - uid: 17368 + - uid: 17351 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 17369 + - uid: 17352 components: - type: Transform pos: 51.5,-25.5 parent: 2 - - uid: 17370 + - uid: 17353 components: - type: Transform pos: 45.5,-22.5 parent: 2 - - uid: 17371 + - uid: 17354 components: - type: Transform pos: 49.5,-22.5 parent: 2 - - uid: 17372 + - uid: 17355 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 17373 + - uid: 17356 components: - type: Transform pos: -29.5,-64.5 parent: 2 - - uid: 39149 + - uid: 38976 components: - type: Transform pos: -22.5,10.5 - parent: 38584 - - uid: 39150 + parent: 38411 + - uid: 38977 components: - type: Transform pos: -19.5,0.5 - parent: 38584 - - uid: 39151 + parent: 38411 + - uid: 38978 components: - type: Transform pos: -16.5,0.5 - parent: 38584 - - uid: 39152 + parent: 38411 + - uid: 38979 components: - type: Transform pos: -22.5,0.5 - parent: 38584 - - uid: 39153 + parent: 38411 + - uid: 38980 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 39154 + parent: 38411 + - uid: 38981 components: - type: Transform pos: -16.5,10.5 - parent: 38584 - - uid: 39155 + parent: 38411 + - uid: 38982 components: - type: Transform pos: -19.5,10.5 - parent: 38584 + parent: 38411 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 17374 + - uid: 17357 components: - type: Transform pos: -15.5,-3.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 17375 + - uid: 17358 components: - type: Transform pos: 36.5,22.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 17376 + - uid: 17359 components: - type: Transform pos: 27.5,44.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 17377 + - uid: 17360 components: - type: Transform pos: -16.5,-45.5 parent: 2 - proto: DrinkAbsintheBottleFull entities: - - uid: 17378 + - uid: 17361 components: - type: Transform pos: -48.514404,32.65227 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 15622 + - uid: 15605 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15623 + - uid: 15606 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15624 + - uid: 15607 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17379 + - uid: 17362 components: - type: Transform pos: 41.357204,28.897608 parent: 2 - - uid: 17380 + - uid: 17363 components: - type: Transform pos: -76.798294,-0.080628335 parent: 2 - proto: DrinkBeerCan entities: - - uid: 15625 + - uid: 15608 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15626 + - uid: 15609 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15627 + - uid: 15610 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15628 + - uid: 15611 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15629 + - uid: 15612 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15630 + - uid: 15613 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39131 + - uid: 38958 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39132 + - uid: 38959 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39133 + - uid: 38960 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39134 + - uid: 38961 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39135 + - uid: 38962 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39136 + - uid: 38963 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39156 + - uid: 38983 components: - type: Transform pos: -20.250412,43.45819 - parent: 38584 + parent: 38411 - proto: DrinkBeerglass entities: - - uid: 17381 + - uid: 17364 components: - type: Transform pos: 55.687534,-45.35493 parent: 2 - - uid: 17382 + - uid: 17365 components: - type: Transform pos: 55.202816,-45.359303 parent: 2 - proto: DrinkBloodGlass entities: - - uid: 17383 + - uid: 17366 components: - type: Transform pos: -34.087208,-79.51882 parent: 2 - - uid: 17384 + - uid: 17367 components: - type: Transform pos: -33.390064,-79.445435 parent: 2 - - uid: 17385 + - uid: 17368 components: - type: Transform pos: -33.74475,-79.33536 parent: 2 - proto: DrinkBottleGildlager entities: - - uid: 14517 + - uid: 14459 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkBottleWhiskey entities: - - uid: 17387 + - uid: 17369 components: - type: Transform pos: -40.49082,-9.030222 parent: 2 - proto: DrinkChampagneBottleFull entities: - - uid: 17388 + - uid: 17370 components: - type: Transform pos: 23.129408,12.558513 parent: 2 - proto: DrinkColaBottleFull entities: - - uid: 17389 + - uid: 17371 components: - type: Transform pos: -76.81392,-0.4087534 parent: 2 - proto: DrinkCreamCarton entities: - - uid: 17390 + - uid: 17372 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -134261,157 +134289,157 @@ entities: parent: 2 - proto: DrinkEnergyDrinkCan entities: - - uid: 17391 + - uid: 17373 components: - type: Transform pos: -64.59291,-44.41243 parent: 2 - proto: DrinkFlask entities: - - uid: 17392 + - uid: 17374 components: - type: Transform pos: 8.751882,0.49553835 parent: 2 - proto: DrinkGildlagerBottleFull entities: - - uid: 17393 + - uid: 17375 components: - type: Transform pos: 26.40898,15.948956 parent: 2 - proto: DrinkGlass entities: - - uid: 17394 + - uid: 17376 components: - type: Transform pos: 93.862076,-4.490161 parent: 2 - - uid: 17395 + - uid: 17377 components: - type: Transform pos: -11.653931,36.61787 parent: 2 - - uid: 17396 + - uid: 17378 components: - type: Transform pos: 93.8152,-4.208911 parent: 2 - - uid: 17397 + - uid: 17379 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.299576,-4.3026605 parent: 2 - - uid: 17398 + - uid: 17380 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.5652,-4.287036 parent: 2 - - uid: 17399 + - uid: 17381 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.28395,-4.4589105 parent: 2 - - uid: 17400 + - uid: 17382 components: - type: Transform pos: 93.612076,-4.427661 parent: 2 - proto: DrinkGlassWhite entities: - - uid: 17401 + - uid: 17383 components: - type: Transform pos: -33.482204,-66.63239 parent: 2 - - uid: 17402 + - uid: 17384 components: - type: Transform pos: -33.751278,-66.717995 parent: 2 - - uid: 17403 + - uid: 17385 components: - type: Transform pos: -7.9352493,19.558664 parent: 2 - - uid: 17404 + - uid: 17386 components: - type: Transform pos: -7.7904577,19.864996 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 17405 + - uid: 17387 components: - type: Transform pos: 23.47316,17.761639 parent: 2 - proto: DrinkGrapeSodaGlass entities: - - uid: 17406 + - uid: 17388 components: - type: Transform pos: -8.52768,39.647503 parent: 2 - proto: DrinkGreenTea entities: - - uid: 17407 + - uid: 17389 components: - type: Transform pos: -52.36495,-44.64987 parent: 2 - - uid: 17408 + - uid: 17390 components: - type: Transform pos: -50.639072,-45.357834 parent: 2 - - uid: 17409 + - uid: 17391 components: - type: Transform - pos: -8.362577,-3.5833626 + pos: -8.4638,-4.3835773 parent: 2 - - uid: 17410 + - uid: 17392 components: - type: Transform - pos: -8.675077,-3.3021126 + pos: -8.338801,-4.0242023 parent: 2 - proto: DrinkHosFlask entities: - - uid: 17411 + - uid: 17393 components: - type: Transform pos: 41.521767,20.175655 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 17412 + - uid: 17394 components: - type: Transform pos: -56.503292,12.64807 parent: 2 - type: Physics canCollide: False - - uid: 17413 + - uid: 17395 components: - type: Transform pos: -46.475765,37.90942 parent: 2 - - uid: 17414 + - uid: 17396 components: - type: Transform pos: 51.090782,7.7054863 parent: 2 - - uid: 17415 + - uid: 17397 components: - type: Transform pos: 20.753819,38.703323 parent: 2 - proto: DrinkJarWhat entities: - - uid: 17416 + - uid: 17398 components: - type: MetaData name: Кротовуха @@ -134420,33 +134448,33 @@ entities: parent: 2 - proto: DrinkJuiceOrangeCarton entities: - - uid: 17417 + - uid: 17399 components: - type: Transform pos: 56.79927,-35.55457 parent: 2 - proto: DrinkManlyDorfGlass entities: - - uid: 17418 + - uid: 17400 components: - type: Transform pos: -48.583096,47.629047 parent: 2 - proto: DrinkMilkCarton entities: - - uid: 17419 + - uid: 17401 components: - type: Transform pos: -33.714592,-66.2777 parent: 2 - - uid: 17420 + - uid: 17402 components: - type: Transform pos: -7.5133743,19.60554 parent: 2 - proto: DrinkMug entities: - - uid: 17421 + - uid: 17403 components: - type: Transform pos: 4.6912384,43.501335 @@ -134455,86 +134483,86 @@ entities: canCollide: False - proto: DrinkMugBlack entities: - - uid: 17422 + - uid: 17404 components: - type: Transform pos: -22.333149,-39.62949 parent: 2 - proto: DrinkMugDog entities: - - uid: 17423 + - uid: 17405 components: - type: Transform pos: -39.48549,-59.612827 parent: 2 - - uid: 17424 + - uid: 17406 components: - type: Transform pos: 18.368465,-50.232624 parent: 2 - - uid: 17425 + - uid: 17407 components: - type: Transform pos: -22.661274,-39.25449 parent: 2 - proto: DrinkMugMetal entities: - - uid: 17426 + - uid: 17408 components: - type: Transform pos: 11.355303,-28.496075 parent: 2 - proto: DrinkMugMoebius entities: - - uid: 17427 + - uid: 17409 components: - type: Transform pos: 18.671715,-50.510868 parent: 2 - - uid: 17428 + - uid: 17410 components: - type: Transform pos: -34.338005,63.49301 parent: 2 - proto: DrinkMugOne entities: - - uid: 17429 + - uid: 17411 components: - type: Transform pos: -40.29744,61.61986 parent: 2 - - uid: 17430 + - uid: 17412 components: - type: Transform pos: -77.735794,-0.17437816 parent: 2 - proto: DrinkMugRainbow entities: - - uid: 17431 + - uid: 17413 components: - type: Transform pos: -77.22017,-0.19000322 parent: 2 - proto: DrinkMugRed entities: - - uid: 17432 + - uid: 17414 components: - type: Transform pos: -28.544523,-10.337871 parent: 2 - proto: DrinkNukieCan entities: - - uid: 17433 + - uid: 17415 components: - type: Transform pos: -74.64876,-35.243942 parent: 2 - - uid: 17434 + - uid: 17416 components: - type: Transform pos: -74.45699,-35.406185 parent: 2 - - uid: 17435 + - uid: 17417 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -134542,19 +134570,19 @@ entities: parent: 2 - proto: DrinkShaker entities: - - uid: 17436 + - uid: 17418 components: - type: Transform pos: -5.5394945,40.926525 parent: 2 - proto: DrinkShotGlass entities: - - uid: 17437 + - uid: 17419 components: - type: Transform pos: -48.014404,32.467087 parent: 2 - - uid: 17438 + - uid: 17420 components: - type: Transform rot: -1.5707963267948966 rad @@ -134562,48 +134590,48 @@ entities: parent: 2 - proto: DrinkSpaceGlue entities: - - uid: 17441 + - uid: 17421 components: - type: Transform pos: 38.48052,-19.283209 parent: 2 - - uid: 17442 + - uid: 17422 components: - type: Transform pos: 20.197306,-18.429718 parent: 2 - - uid: 17443 + - uid: 17423 components: - type: Transform pos: 47.504456,-51.095913 parent: 2 - proto: DrinkSpaceLube entities: - - uid: 39157 + - uid: 38984 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.515173,35.579437 - parent: 38584 + parent: 38411 - proto: DrinkTeacup entities: - - uid: 17444 + - uid: 17424 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.797064,-39.72211 parent: 2 - - uid: 17445 + - uid: 17425 components: - type: Transform pos: -4.564571,1.4259852 parent: 2 - - uid: 17446 + - uid: 17426 components: - type: Transform pos: -3.5614977,0.61477566 parent: 2 - - uid: 17447 + - uid: 17427 components: - type: Transform rot: -1.5707963267948966 rad @@ -134611,179 +134639,172 @@ entities: parent: 2 - proto: DrinkTeapot entities: - - uid: 17448 + - uid: 17428 components: - type: Transform pos: -51.479885,-44.930107 parent: 2 - - uid: 17449 + - uid: 17429 components: - type: Transform pos: -4.0040307,1.057254 parent: 2 - - uid: 17450 + - uid: 17430 components: - type: Transform - pos: -8.518827,-4.0677376 + pos: -8.30755,-3.4304523 parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 17451 + - uid: 17431 components: - type: Transform pos: 77.490364,-46.540504 parent: 2 - - uid: 17452 + - uid: 17432 components: - type: Transform pos: 77.72074,-46.363407 parent: 2 - - uid: 17453 + - uid: 17433 components: - type: Transform pos: 77.50809,-46.398827 parent: 2 - - uid: 17454 + - uid: 17434 components: - type: Transform pos: 77.4372,-46.575924 parent: 2 - - uid: 17455 + - uid: 17435 components: - type: Transform pos: 77.45492,-46.575924 parent: 2 - - uid: 17456 + - uid: 17436 components: - type: Transform pos: -43.519814,54.566936 parent: 2 - - uid: 17457 + - uid: 17437 components: - type: Transform pos: 77.30893,-46.454647 parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 17458 + - uid: 17438 components: - type: Transform pos: 48.286457,17.641747 parent: 2 - - uid: 17459 + - uid: 17439 components: - type: Transform pos: 48.692707,17.672997 parent: 2 - - uid: 17460 + - uid: 17440 components: - type: Transform pos: 48.489582,17.657372 parent: 2 - - uid: 17461 + - uid: 17441 components: - type: Transform pos: 55.321003,-22.407534 parent: 2 - - uid: 17462 + - uid: 17442 components: - type: Transform pos: 55.508503,-22.813784 parent: 2 - - uid: 17463 + - uid: 17443 components: - type: Transform pos: 55.727253,-22.407534 parent: 2 - - uid: 17464 + - uid: 17444 components: - type: Transform pos: 36.19766,38.290535 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 17465 + - uid: 17445 components: - type: Transform pos: -11.51872,46.860718 parent: 2 - proto: DrinkWineGlass entities: - - uid: 17466 + - uid: 17446 components: - type: Transform pos: -11.298665,46.57078 parent: 2 - - uid: 17467 + - uid: 17447 components: - type: Transform pos: -11.75179,46.60203 parent: 2 - proto: Dropper entities: - - uid: 17468 + - uid: 17448 components: - type: Transform pos: 38.436283,-74.467354 parent: 2 - type: Physics canCollide: False - - uid: 17469 - components: - - type: Transform - pos: 6.46435,-38.51832 - parent: 2 - - type: Physics - canCollide: False - - uid: 17470 + - uid: 17450 components: - type: Transform rot: 6.283185307179586 rad pos: -25.52646,-25.611034 parent: 2 - - uid: 17471 + - uid: 17451 components: - type: Transform pos: 2.5200934,-29.55756 parent: 2 - type: Physics canCollide: False - - uid: 17472 + - uid: 17452 components: - type: Transform pos: 8.500152,-30.578497 parent: 2 - - uid: 17473 + - uid: 17453 components: - type: Transform pos: 20.453255,-40.408833 parent: 2 - type: Physics canCollide: False - - uid: 17474 + - uid: 17454 components: - type: Transform pos: 41.969006,-73.53427 parent: 2 - - uid: 17475 + - uid: 17455 components: - type: Transform pos: 26.487522,-68.55446 parent: 2 - type: Physics canCollide: False - - uid: 17476 + - uid: 17456 components: - type: Transform pos: -8.757672,-52.582615 parent: 2 - - uid: 17477 + - uid: 17457 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.822828,45.589245 parent: 2 - - uid: 17478 + - uid: 17458 components: - type: Transform rot: -1.5707963267948966 rad @@ -134791,14 +134812,14 @@ entities: parent: 2 - proto: Eggshells entities: - - uid: 17479 + - uid: 17459 components: - type: MetaData desc: Крашенная скорлупа. - type: Transform pos: 56.727657,-38.74004 parent: 2 - - uid: 17480 + - uid: 17460 components: - type: MetaData desc: Крашенная скорлупа. @@ -134808,175 +134829,175 @@ entities: parent: 2 - proto: EggSpider entities: - - uid: 17481 + - uid: 17461 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.45483,-35.626926 parent: 2 - - uid: 17482 + - uid: 17462 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.26733,-35.845673 parent: 2 - - uid: 17483 + - uid: 17463 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.61108,-35.783176 parent: 2 - - uid: 17484 + - uid: 17464 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.37671,-34.533176 parent: 2 - - uid: 17485 + - uid: 17465 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.4392,-36.7988 parent: 2 - - uid: 17486 + - uid: 17466 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.59546,-34.361298 parent: 2 - - uid: 17487 + - uid: 17467 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.298584,-34.2363 parent: 2 - - uid: 41031 + - uid: 17468 components: - type: Transform pos: -66.39432,-28.52243 parent: 2 - - uid: 41032 + - uid: 17469 components: - type: Transform pos: -66.62869,-28.663057 parent: 2 - - uid: 41033 + - uid: 17470 components: - type: Transform pos: -66.31619,-28.100555 parent: 2 - - uid: 41036 + - uid: 17471 components: - type: Transform pos: -71.62537,-22.571806 parent: 2 - - uid: 41037 + - uid: 17472 components: - type: Transform pos: -71.45349,-22.431181 parent: 2 - - uid: 41038 + - uid: 17473 components: - type: Transform pos: -71.67224,-22.306181 parent: 2 - - uid: 41043 + - uid: 17474 components: - type: Transform pos: -74.6196,-30.508291 parent: 2 - - uid: 41044 + - uid: 17475 components: - type: Transform pos: -74.52585,-30.211416 parent: 2 - - uid: 41045 + - uid: 17476 components: - type: Transform pos: -74.33835,-30.523918 parent: 2 - proto: ElectricGuitarInstrument entities: - - uid: 17488 + - uid: 17477 components: - type: Transform pos: -8.546601,28.76847 parent: 2 - proto: EmergencyLight entities: - - uid: 17489 + - uid: 17478 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-3.5 parent: 2 - - uid: 17490 + - uid: 17479 components: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 17491 + - uid: 17480 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 17492 + - uid: 17481 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-44.5 parent: 2 - - uid: 17493 + - uid: 17482 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 17494 + - uid: 17483 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 17495 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,80.5 parent: 2 - - uid: 17496 + - uid: 17485 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,36.5 parent: 2 - - uid: 17497 + - uid: 17486 components: - type: Transform pos: -1.5,65.5 parent: 2 - - uid: 17498 + - uid: 17487 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,80.5 parent: 2 - - uid: 17499 + - uid: 17488 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-40.5 parent: 2 - - uid: 17500 + - uid: 17489 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,35.5 parent: 2 - - uid: 17501 + - uid: 17490 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 17502 + - uid: 17491 components: - type: Transform rot: 3.141592653589793 rad @@ -134985,7 +135006,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17503 + - uid: 17492 components: - type: Transform rot: -1.5707963267948966 rad @@ -134994,7 +135015,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17504 + - uid: 17493 components: - type: Transform pos: -8.5,-63.5 @@ -135002,7 +135023,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17505 + - uid: 17494 components: - type: Transform rot: 1.5707963267948966 rad @@ -135011,7 +135032,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17506 + - uid: 17495 components: - type: Transform rot: 1.5707963267948966 rad @@ -135020,7 +135041,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17507 + - uid: 17496 components: - type: Transform rot: 3.141592653589793 rad @@ -135029,7 +135050,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17508 + - uid: 17497 components: - type: Transform rot: 3.141592653589793 rad @@ -135038,7 +135059,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17509 + - uid: 17498 components: - type: Transform rot: 3.141592653589793 rad @@ -135047,7 +135068,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17510 + - uid: 17499 components: - type: Transform rot: 1.5707963267948966 rad @@ -135056,7 +135077,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17511 + - uid: 17500 components: - type: Transform rot: 3.141592653589793 rad @@ -135065,7 +135086,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17512 + - uid: 17501 components: - type: Transform rot: -1.5707963267948966 rad @@ -135074,7 +135095,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17513 + - uid: 17502 components: - type: Transform rot: 1.5707963267948966 rad @@ -135083,7 +135104,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17514 + - uid: 17503 components: - type: Transform pos: -64.5,52.5 @@ -135091,7 +135112,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17515 + - uid: 17504 components: - type: Transform rot: 3.141592653589793 rad @@ -135100,7 +135121,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17516 + - uid: 17505 components: - type: Transform rot: 1.5707963267948966 rad @@ -135109,7 +135130,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17517 + - uid: 17506 components: - type: Transform pos: -12.5,34.5 @@ -135117,13 +135138,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17518 + - uid: 17507 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-46.5 parent: 2 - - uid: 17519 + - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad @@ -135132,7 +135153,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17520 + - uid: 17509 components: - type: Transform rot: 3.141592653589793 rad @@ -135141,7 +135162,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17521 + - uid: 17510 components: - type: Transform pos: 12.5,54.5 @@ -135149,7 +135170,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17522 + - uid: 17511 components: - type: Transform rot: 1.5707963267948966 rad @@ -135158,7 +135179,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17523 + - uid: 17512 components: - type: Transform rot: 1.5707963267948966 rad @@ -135167,7 +135188,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17524 + - uid: 17513 components: - type: Transform pos: 5.5,45.5 @@ -135175,7 +135196,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17525 + - uid: 17514 components: - type: Transform pos: 46.5,24.5 @@ -135183,13 +135204,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17526 + - uid: 17515 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-59.5 parent: 2 - - uid: 17527 + - uid: 17516 components: - type: Transform pos: 10.5,16.5 @@ -135197,7 +135218,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17528 + - uid: 17517 components: - type: Transform rot: -1.5707963267948966 rad @@ -135206,7 +135227,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17529 + - uid: 17518 components: - type: Transform pos: 26.5,38.5 @@ -135214,7 +135235,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17530 + - uid: 17519 components: - type: Transform pos: 51.5,9.5 @@ -135222,7 +135243,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17531 + - uid: 17520 components: - type: Transform pos: 12.5,2.5 @@ -135230,7 +135251,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17532 + - uid: 17521 components: - type: Transform rot: 3.141592653589793 rad @@ -135239,7 +135260,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17533 + - uid: 17522 components: - type: Transform rot: -1.5707963267948966 rad @@ -135248,7 +135269,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17534 + - uid: 17523 components: - type: Transform pos: 51.5,1.5 @@ -135256,13 +135277,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17535 + - uid: 17524 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,9.5 parent: 2 - - uid: 17536 + - uid: 17525 components: - type: Transform pos: -11.5,16.5 @@ -135270,13 +135291,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17537 + - uid: 17526 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-40.5 parent: 2 - - uid: 17538 + - uid: 17527 components: - type: Transform pos: 7.5,-48.5 @@ -135284,7 +135305,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17539 + - uid: 17528 components: - type: Transform pos: 39.5,23.5 @@ -135292,7 +135313,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17540 + - uid: 17529 components: - type: Transform rot: 1.5707963267948966 rad @@ -135301,7 +135322,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17541 + - uid: 17530 components: - type: Transform pos: 6.5,31.5 @@ -135309,7 +135330,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17542 + - uid: 17531 components: - type: Transform pos: 69.5,-15.5 @@ -135317,13 +135338,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17543 + - uid: 17532 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-41.5 parent: 2 - - uid: 17544 + - uid: 17533 components: - type: Transform rot: 1.5707963267948966 rad @@ -135332,13 +135353,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17545 + - uid: 17534 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,14.5 parent: 2 - - uid: 17546 + - uid: 17535 components: - type: Transform rot: -1.5707963267948966 rad @@ -135347,7 +135368,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17547 + - uid: 17536 components: - type: Transform rot: -1.5707963267948966 rad @@ -135356,7 +135377,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17548 + - uid: 17537 components: - type: Transform rot: 1.5707963267948966 rad @@ -135365,12 +135386,12 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17549 + - uid: 17538 components: - type: Transform pos: -33.5,43.5 parent: 2 - - uid: 17550 + - uid: 17539 components: - type: Transform pos: 37.5,12.5 @@ -135378,7 +135399,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17551 + - uid: 17540 components: - type: Transform rot: -1.5707963267948966 rad @@ -135387,7 +135408,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17552 + - uid: 17541 components: - type: Transform pos: 15.5,54.5 @@ -135395,7 +135416,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17553 + - uid: 17542 components: - type: Transform pos: -2.5,18.5 @@ -135403,7 +135424,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17554 + - uid: 17543 components: - type: Transform pos: -49.5,34.5 @@ -135411,7 +135432,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17555 + - uid: 17544 components: - type: Transform rot: 1.5707963267948966 rad @@ -135420,7 +135441,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17556 + - uid: 17545 components: - type: Transform rot: 3.141592653589793 rad @@ -135429,7 +135450,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17557 + - uid: 17546 components: - type: Transform pos: -56.5,38.5 @@ -135437,7 +135458,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17558 + - uid: 17547 components: - type: Transform rot: -1.5707963267948966 rad @@ -135446,7 +135467,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17559 + - uid: 17548 components: - type: Transform rot: -1.5707963267948966 rad @@ -135455,7 +135476,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17560 + - uid: 17549 components: - type: Transform pos: 80.5,-18.5 @@ -135463,7 +135484,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17561 + - uid: 17550 components: - type: Transform rot: -1.5707963267948966 rad @@ -135472,7 +135493,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17562 + - uid: 17551 components: - type: Transform rot: -1.5707963267948966 rad @@ -135481,7 +135502,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17563 + - uid: 17552 components: - type: Transform pos: 35.5,-6.5 @@ -135489,7 +135510,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17564 + - uid: 17553 components: - type: Transform rot: 3.141592653589793 rad @@ -135498,7 +135519,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17565 + - uid: 17554 components: - type: Transform rot: -1.5707963267948966 rad @@ -135507,7 +135528,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17566 + - uid: 17555 components: - type: Transform pos: -5.5,-57.5 @@ -135515,7 +135536,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17567 + - uid: 17556 components: - type: Transform pos: 63.5,1.5 @@ -135523,7 +135544,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17568 + - uid: 17557 components: - type: Transform rot: 1.5707963267948966 rad @@ -135532,19 +135553,19 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17569 + - uid: 17558 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,93.5 parent: 2 - - uid: 17570 + - uid: 17559 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-52.5 parent: 2 - - uid: 17571 + - uid: 17560 components: - type: Transform pos: -2.5,-57.5 @@ -135552,7 +135573,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17572 + - uid: 17561 components: - type: Transform rot: -1.5707963267948966 rad @@ -135561,13 +135582,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17573 + - uid: 17562 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,14.5 parent: 2 - - uid: 17574 + - uid: 17563 components: - type: Transform pos: -5.5,34.5 @@ -135575,7 +135596,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17575 + - uid: 17564 components: - type: Transform pos: -49.5,2.5 @@ -135583,7 +135604,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17576 + - uid: 17565 components: - type: Transform pos: 14.5,46.5 @@ -135591,7 +135612,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17577 + - uid: 17566 components: - type: Transform pos: 21.5,10.5 @@ -135599,7 +135620,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17578 + - uid: 17567 components: - type: Transform rot: 3.141592653589793 rad @@ -135608,7 +135629,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17579 + - uid: 17568 components: - type: Transform rot: 1.5707963267948966 rad @@ -135617,7 +135638,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17580 + - uid: 17569 components: - type: Transform rot: 3.141592653589793 rad @@ -135626,7 +135647,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17581 + - uid: 17570 components: - type: Transform pos: -12.5,11.5 @@ -135634,7 +135655,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17582 + - uid: 17571 components: - type: Transform pos: -12.5,-7.5 @@ -135642,7 +135663,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17583 + - uid: 17572 components: - type: Transform rot: 3.141592653589793 rad @@ -135651,7 +135672,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17584 + - uid: 17573 components: - type: Transform rot: 3.141592653589793 rad @@ -135660,7 +135681,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17585 + - uid: 17574 components: - type: Transform rot: 3.141592653589793 rad @@ -135669,7 +135690,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17586 + - uid: 17575 components: - type: Transform pos: 6.5,90.5 @@ -135677,7 +135698,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17587 + - uid: 17576 components: - type: Transform rot: -1.5707963267948966 rad @@ -135686,7 +135707,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17588 + - uid: 17577 components: - type: Transform pos: -16.5,24.5 @@ -135694,7 +135715,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17589 + - uid: 17578 components: - type: Transform rot: -1.5707963267948966 rad @@ -135703,7 +135724,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17590 + - uid: 17579 components: - type: Transform rot: -1.5707963267948966 rad @@ -135712,7 +135733,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17591 + - uid: 17580 components: - type: Transform pos: 3.5,-42.5 @@ -135720,7 +135741,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17592 + - uid: 17581 components: - type: Transform rot: 1.5707963267948966 rad @@ -135729,7 +135750,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17593 + - uid: 17582 components: - type: Transform rot: -1.5707963267948966 rad @@ -135738,7 +135759,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17594 + - uid: 17583 components: - type: Transform rot: 3.141592653589793 rad @@ -135747,7 +135768,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17595 + - uid: 17584 components: - type: Transform rot: 1.5707963267948966 rad @@ -135756,7 +135777,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17596 + - uid: 17585 components: - type: Transform pos: -72.5,16.5 @@ -135764,7 +135785,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17597 + - uid: 17586 components: - type: Transform rot: -1.5707963267948966 rad @@ -135773,7 +135794,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17598 + - uid: 17587 components: - type: Transform pos: -22.5,-49.5 @@ -135781,7 +135802,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17599 + - uid: 17588 components: - type: Transform rot: 3.141592653589793 rad @@ -135790,7 +135811,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17600 + - uid: 17589 components: - type: Transform pos: 23.5,54.5 @@ -135798,13 +135819,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17601 + - uid: 17590 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,52.5 parent: 2 - - uid: 17602 + - uid: 17591 components: - type: Transform pos: -55.5,3.5 @@ -135812,7 +135833,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17603 + - uid: 17592 components: - type: Transform rot: 1.5707963267948966 rad @@ -135821,7 +135842,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17604 + - uid: 17593 components: - type: Transform rot: 3.141592653589793 rad @@ -135830,7 +135851,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17605 + - uid: 17594 components: - type: Transform pos: -25.5,2.5 @@ -135838,7 +135859,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17606 + - uid: 17595 components: - type: Transform pos: -28.5,21.5 @@ -135846,7 +135867,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17607 + - uid: 17596 components: - type: Transform pos: -22.5,23.5 @@ -135854,7 +135875,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17608 + - uid: 17597 components: - type: Transform rot: 3.141592653589793 rad @@ -135863,7 +135884,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17609 + - uid: 17598 components: - type: Transform rot: 3.141592653589793 rad @@ -135872,7 +135893,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17610 + - uid: 17599 components: - type: Transform pos: 11.5,46.5 @@ -135880,7 +135901,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17611 + - uid: 17600 components: - type: Transform rot: -1.5707963267948966 rad @@ -135889,7 +135910,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17612 + - uid: 17601 components: - type: Transform rot: 1.5707963267948966 rad @@ -135898,7 +135919,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17613 + - uid: 17602 components: - type: Transform pos: 30.5,-21.5 @@ -135906,13 +135927,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17614 + - uid: 17603 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,15.5 parent: 2 - - uid: 17615 + - uid: 17604 components: - type: Transform pos: 73.5,-15.5 @@ -135920,7 +135941,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17616 + - uid: 17605 components: - type: Transform rot: 1.5707963267948966 rad @@ -135929,7 +135950,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17617 + - uid: 17606 components: - type: Transform rot: 3.141592653589793 rad @@ -135938,7 +135959,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17618 + - uid: 17607 components: - type: Transform pos: 31.5,12.5 @@ -135946,7 +135967,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17619 + - uid: 17608 components: - type: Transform pos: 1.5,18.5 @@ -135954,7 +135975,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17620 + - uid: 17609 components: - type: Transform pos: -59.5,58.5 @@ -135962,7 +135983,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17621 + - uid: 17610 components: - type: Transform rot: -1.5707963267948966 rad @@ -135971,7 +135992,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17622 + - uid: 17611 components: - type: Transform pos: -34.5,63.5 @@ -135979,7 +136000,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17623 + - uid: 17612 components: - type: Transform rot: 1.5707963267948966 rad @@ -135988,7 +136009,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17624 + - uid: 17613 components: - type: Transform rot: 1.5707963267948966 rad @@ -135997,7 +136018,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17625 + - uid: 17614 components: - type: Transform rot: -1.5707963267948966 rad @@ -136006,7 +136027,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17626 + - uid: 17615 components: - type: Transform rot: 1.5707963267948966 rad @@ -136015,7 +136036,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17627 + - uid: 17616 components: - type: Transform pos: -0.5,-13.5 @@ -136023,7 +136044,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17628 + - uid: 17617 components: - type: Transform pos: 6.5,-18.5 @@ -136031,7 +136052,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17629 + - uid: 17618 components: - type: Transform pos: -72.5,12.5 @@ -136039,7 +136060,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17630 + - uid: 17619 components: - type: Transform rot: 1.5707963267948966 rad @@ -136048,7 +136069,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17631 + - uid: 17620 components: - type: Transform pos: -63.5,18.5 @@ -136056,7 +136077,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17632 + - uid: 17621 components: - type: Transform pos: -57.5,20.5 @@ -136064,7 +136085,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17633 + - uid: 17622 components: - type: Transform rot: 3.141592653589793 rad @@ -136073,13 +136094,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17634 + - uid: 17623 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,4.5 parent: 2 - - uid: 17635 + - uid: 17624 components: - type: Transform rot: -1.5707963267948966 rad @@ -136088,7 +136109,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17636 + - uid: 17625 components: - type: Transform pos: -46.5,-5.5 @@ -136096,7 +136117,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17637 + - uid: 17626 components: - type: Transform pos: -30.5,-25.5 @@ -136104,7 +136125,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17638 + - uid: 17627 components: - type: Transform pos: -39.5,-26.5 @@ -136112,7 +136133,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17639 + - uid: 17628 components: - type: Transform pos: -47.5,-24.5 @@ -136120,7 +136141,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17640 + - uid: 17629 components: - type: Transform rot: 1.5707963267948966 rad @@ -136129,7 +136150,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17641 + - uid: 17630 components: - type: Transform pos: -4.5,46.5 @@ -136137,7 +136158,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17642 + - uid: 17631 components: - type: Transform pos: 7.5,-29.5 @@ -136145,7 +136166,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17643 + - uid: 17632 components: - type: Transform rot: -1.5707963267948966 rad @@ -136154,7 +136175,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17644 + - uid: 17633 components: - type: Transform rot: 1.5707963267948966 rad @@ -136163,24 +136184,24 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17645 + - uid: 17634 components: - type: Transform pos: -5.5,28.5 parent: 2 - - uid: 17646 + - uid: 17635 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-47.5 parent: 2 - - uid: 17647 + - uid: 17636 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 17648 + - uid: 17637 components: - type: Transform rot: 1.5707963267948966 rad @@ -136189,7 +136210,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17649 + - uid: 17638 components: - type: Transform rot: 1.5707963267948966 rad @@ -136198,7 +136219,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17650 + - uid: 17639 components: - type: Transform rot: 1.5707963267948966 rad @@ -136207,7 +136228,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17651 + - uid: 17640 components: - type: Transform rot: 3.141592653589793 rad @@ -136216,7 +136237,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17652 + - uid: 17641 components: - type: Transform pos: -30.5,55.5 @@ -136224,13 +136245,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17653 + - uid: 17642 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,49.5 parent: 2 - - uid: 17654 + - uid: 17643 components: - type: Transform pos: -66.5,-5.5 @@ -136238,7 +136259,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17655 + - uid: 17644 components: - type: Transform pos: -7.5,-18.5 @@ -136246,7 +136267,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17656 + - uid: 17645 components: - type: Transform rot: 1.5707963267948966 rad @@ -136255,7 +136276,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17657 + - uid: 17646 components: - type: Transform rot: 3.141592653589793 rad @@ -136264,7 +136285,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17658 + - uid: 17647 components: - type: Transform pos: -1.5,-7.5 @@ -136272,7 +136293,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17659 + - uid: 17648 components: - type: Transform pos: 9.5,-7.5 @@ -136280,7 +136301,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17660 + - uid: 17649 components: - type: Transform rot: -1.5707963267948966 rad @@ -136289,41 +136310,41 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17661 + - uid: 17650 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,67.5 parent: 2 - - uid: 17662 + - uid: 17651 components: - type: Transform pos: -8.5,69.5 parent: 2 - - uid: 17663 + - uid: 17652 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 17664 + - uid: 17653 components: - type: Transform pos: 27.5,2.5 parent: 2 - - uid: 17665 + - uid: 17654 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,80.5 parent: 2 - - uid: 17666 + - uid: 17655 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,67.5 parent: 2 - - uid: 17668 + - uid: 17656 components: - type: Transform pos: 25.5,-24.5 @@ -136331,24 +136352,24 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17669 + - uid: 17657 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 - - uid: 17670 + - uid: 17658 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 17671 + - uid: 17659 components: - type: Transform pos: -12.5,46.5 parent: 2 - - uid: 17672 + - uid: 17660 components: - type: Transform rot: -1.5707963267948966 rad @@ -136357,18 +136378,18 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17673 + - uid: 17661 components: - type: Transform pos: -57.5,54.5 parent: 2 - - uid: 17674 + - uid: 17662 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-3.5 parent: 2 - - uid: 17675 + - uid: 17663 components: - type: Transform pos: 12.5,24.5 @@ -136376,40 +136397,40 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17676 + - uid: 17664 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-37.5 parent: 2 - - uid: 17677 + - uid: 17665 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-40.5 parent: 2 - - uid: 17678 + - uid: 17666 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-8.5 parent: 2 - - uid: 17679 + - uid: 17667 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 17680 + - uid: 17668 components: - type: Transform pos: -53.5,51.5 parent: 2 - - uid: 17681 + - uid: 17669 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 17682 + - uid: 17670 components: - type: Transform rot: 3.141592653589793 rad @@ -136418,7 +136439,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17683 + - uid: 17671 components: - type: Transform rot: 1.5707963267948966 rad @@ -136427,13 +136448,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17684 + - uid: 17672 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 - - uid: 17685 + - uid: 17673 components: - type: Transform rot: 1.5707963267948966 rad @@ -136442,7 +136463,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17686 + - uid: 17674 components: - type: Transform rot: -1.5707963267948966 rad @@ -136451,7 +136472,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17687 + - uid: 17675 components: - type: Transform pos: -25.5,39.5 @@ -136459,7 +136480,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17688 + - uid: 17676 components: - type: Transform rot: -1.5707963267948966 rad @@ -136468,7 +136489,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17689 + - uid: 17677 components: - type: Transform rot: 1.5707963267948966 rad @@ -136477,7 +136498,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17690 + - uid: 17678 components: - type: Transform rot: 1.5707963267948966 rad @@ -136486,13 +136507,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17691 + - uid: 17679 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-40.5 parent: 2 - - uid: 17692 + - uid: 17680 components: - type: Transform pos: -1.5,9.5 @@ -136500,7 +136521,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17693 + - uid: 17681 components: - type: Transform rot: 3.141592653589793 rad @@ -136509,7 +136530,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17694 + - uid: 17682 components: - type: Transform pos: -31.5,6.5 @@ -136517,7 +136538,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17696 + - uid: 17683 components: - type: Transform pos: 31.5,-33.5 @@ -136525,7 +136546,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17697 + - uid: 17684 components: - type: Transform rot: 3.141592653589793 rad @@ -136534,7 +136555,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17698 + - uid: 17685 components: - type: Transform rot: 1.5707963267948966 rad @@ -136543,7 +136564,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17699 + - uid: 17686 components: - type: Transform rot: 1.5707963267948966 rad @@ -136552,7 +136573,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17700 + - uid: 17687 components: - type: Transform rot: 3.141592653589793 rad @@ -136561,7 +136582,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17701 + - uid: 17688 components: - type: Transform rot: 1.5707963267948966 rad @@ -136570,7 +136591,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17702 + - uid: 17689 components: - type: Transform rot: -1.5707963267948966 rad @@ -136579,7 +136600,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17703 + - uid: 17690 components: - type: Transform rot: 1.5707963267948966 rad @@ -136588,7 +136609,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17704 + - uid: 17691 components: - type: Transform rot: 1.5707963267948966 rad @@ -136597,7 +136618,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17705 + - uid: 17692 components: - type: Transform pos: 30.5,-60.5 @@ -136605,7 +136626,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17706 + - uid: 17693 components: - type: Transform rot: 1.5707963267948966 rad @@ -136614,7 +136635,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17707 + - uid: 17694 components: - type: Transform rot: -1.5707963267948966 rad @@ -136623,7 +136644,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17708 + - uid: 17695 components: - type: Transform rot: 1.5707963267948966 rad @@ -136632,7 +136653,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17709 + - uid: 17696 components: - type: Transform rot: 1.5707963267948966 rad @@ -136641,7 +136662,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17710 + - uid: 17697 components: - type: Transform pos: 27.5,-65.5 @@ -136649,18 +136670,18 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17711 + - uid: 17698 components: - type: Transform pos: -27.5,-49.5 parent: 2 - - uid: 17712 + - uid: 17699 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,8.5 parent: 2 - - uid: 17713 + - uid: 17700 components: - type: Transform pos: -67.5,-9.5 @@ -136668,7 +136689,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17714 + - uid: 17701 components: - type: Transform rot: 3.141592653589793 rad @@ -136677,7 +136698,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17715 + - uid: 17702 components: - type: Transform pos: -68.5,2.5 @@ -136685,7 +136706,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17716 + - uid: 17703 components: - type: Transform pos: -77.5,-5.5 @@ -136693,7 +136714,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17717 + - uid: 17704 components: - type: Transform rot: 3.141592653589793 rad @@ -136702,366 +136723,366 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17719 + - uid: 17705 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,21.5 parent: 2 - - uid: 17720 + - uid: 17706 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,90.5 parent: 2 - - uid: 17721 + - uid: 17707 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,90.5 parent: 2 - - uid: 17722 + - uid: 17708 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 17723 + - uid: 17709 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 17724 + - uid: 17710 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,59.5 parent: 2 - - uid: 17725 + - uid: 17711 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,22.5 parent: 2 - - uid: 17726 + - uid: 17712 components: - type: Transform pos: -63.5,38.5 parent: 2 - - uid: 17727 + - uid: 17713 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,40.5 parent: 2 - - uid: 17728 + - uid: 17714 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,27.5 parent: 2 - - uid: 17729 + - uid: 17715 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,22.5 parent: 2 - - uid: 17730 + - uid: 17716 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-41.5 parent: 2 - - uid: 17731 + - uid: 17717 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-48.5 parent: 2 - - uid: 17734 + - uid: 17718 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 17735 + - uid: 17719 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-34.5 parent: 2 - - uid: 17736 + - uid: 17720 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - uid: 17737 + - uid: 17721 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 17738 + - uid: 17722 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-64.5 parent: 2 - - uid: 17739 + - uid: 17723 components: - type: Transform pos: 53.5,32.5 parent: 2 - - uid: 38525 + - uid: 38352 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 - parent: 38484 + parent: 38311 - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 39158 + - uid: 38985 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-3.5 - parent: 38584 - - uid: 39159 + parent: 38411 + - uid: 38986 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 38584 - - uid: 39160 + parent: 38411 + - uid: 38987 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 - parent: 38584 - - uid: 39161 + parent: 38411 + - uid: 38988 components: - type: Transform pos: -2.5,4.5 - parent: 38584 - - uid: 39162 + parent: 38411 + - uid: 38989 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 - parent: 38584 - - uid: 39163 + parent: 38411 + - uid: 38990 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,6.5 - parent: 38584 - - uid: 39164 + parent: 38411 + - uid: 38991 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,2.5 - parent: 38584 - - uid: 39165 + parent: 38411 + - uid: 38992 components: - type: Transform pos: 6.5,-3.5 - parent: 38584 - - uid: 39166 + parent: 38411 + - uid: 38993 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-5.5 - parent: 38584 - - uid: 39167 + parent: 38411 + - uid: 38994 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 39168 + parent: 38411 + - uid: 38995 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 38584 - - uid: 39169 + parent: 38411 + - uid: 38996 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 - parent: 38584 - - uid: 39170 + parent: 38411 + - uid: 38997 components: - type: Transform pos: 1.5,-7.5 - parent: 38584 - - uid: 39171 + parent: 38411 + - uid: 38998 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-1.5 - parent: 38584 - - uid: 39172 + parent: 38411 + - uid: 38999 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-3.5 - parent: 38584 - - uid: 39173 + parent: 38411 + - uid: 39000 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,1.5 - parent: 38584 - - uid: 39174 + parent: 38411 + - uid: 39001 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,1.5 - parent: 38584 - - uid: 39175 + parent: 38411 + - uid: 39002 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,1.5 - parent: 38584 - - uid: 39176 + parent: 38411 + - uid: 39003 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,9.5 - parent: 38584 - - uid: 39177 + parent: 38411 + - uid: 39004 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,9.5 - parent: 38584 - - uid: 39178 + parent: 38411 + - uid: 39005 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,9.5 - parent: 38584 - - uid: 39179 + parent: 38411 + - uid: 39006 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,12.5 - parent: 38584 - - uid: 39180 + parent: 38411 + - uid: 39007 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,8.5 - parent: 38584 - - uid: 39181 + parent: 38411 + - uid: 39008 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,8.5 - parent: 38584 + parent: 38411 - proto: EmergencyMedipen entities: - - uid: 17740 + - uid: 17724 components: - type: Transform pos: 20.768291,-24.31956 parent: 2 - - uid: 17741 + - uid: 17725 components: - type: Transform pos: 26.060457,-24.311409 parent: 2 - proto: EmergencyRollerBed entities: - - uid: 17742 + - uid: 17726 components: - type: Transform pos: 26.738546,-30.810993 parent: 2 - - uid: 17743 + - uid: 17727 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 17744 + - uid: 17728 components: - type: Transform pos: 26.738546,-31.498493 parent: 2 - - uid: 17745 + - uid: 17729 components: - type: Transform pos: 30.484577,-51.35612 parent: 2 - type: Physics canCollide: False - - uid: 17746 + - uid: 17730 components: - type: Transform pos: 30.484577,-50.41862 parent: 2 - type: Physics canCollide: False - - uid: 17747 + - uid: 17731 components: - type: Transform pos: 7.4926,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17748 + - uid: 17732 components: - type: Transform pos: 8.52385,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17749 + - uid: 17733 components: - type: Transform pos: 26.738546,-30.185993 parent: 2 - - uid: 17750 + - uid: 17734 components: - type: Transform pos: 9.5551,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17751 + - uid: 17735 components: - type: Transform pos: 21.514267,-50.394043 parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - - uid: 17752 + - uid: 17736 components: - type: Transform pos: 7.5,64.5 parent: 2 - proto: Emitter entities: - - uid: 17753 + - uid: 17737 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-12.5 parent: 2 - - uid: 17754 + - uid: 17738 components: - type: Transform pos: -94.5,-2.5 parent: 2 - - uid: 17755 + - uid: 17739 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-11.5 parent: 2 - - uid: 17756 + - uid: 17740 components: - type: Transform rot: -1.5707963267948966 rad @@ -137069,73 +137090,73 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 17758 + - uid: 17742 components: - type: Transform - parent: 17757 + parent: 17741 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 17760 + - uid: 17744 components: - type: Transform - parent: 17759 + parent: 17743 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 17762 + - uid: 17746 components: - type: MetaData name: ключ шифрования общей частоты - type: Transform - parent: 17761 + parent: 17745 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 17764 + - uid: 17748 components: - type: Transform - parent: 17763 + parent: 17747 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 17766 + - uid: 17750 components: - type: Transform - parent: 17765 + parent: 17749 - type: Physics canCollide: False - proto: EncryptionKeyScience entities: - - uid: 17768 + - uid: 17752 components: - type: Transform - parent: 17767 + parent: 17751 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 17770 + - uid: 17754 components: - type: Transform - parent: 17769 + parent: 17753 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 17772 + - uid: 17756 components: - type: Transform - parent: 17771 + parent: 17755 - type: Physics canCollide: False - proto: EncryptionKeySyndie entities: - - uid: 17773 + - uid: 17757 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -137143,7 +137164,7 @@ entities: parent: 2 - proto: EnergyDagger entities: - - uid: 17774 + - uid: 17758 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -137151,572 +137172,572 @@ entities: parent: 2 - proto: EnergySword entities: - - uid: 39182 + - uid: 39009 components: - type: Transform pos: 7.6209354,-1.4473572 - parent: 38584 + parent: 38411 - proto: EpinephrineChemistryBottle entities: - - uid: 14824 + - uid: 14764 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17775 + - uid: 17759 components: - type: Transform pos: 70.10729,12.77659 parent: 2 - - uid: 17776 + - uid: 17760 components: - type: Transform pos: 25.701082,-24.420784 parent: 2 - - uid: 17777 + - uid: 17761 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.634602,-43.325718 parent: 2 - - uid: 17778 + - uid: 17762 components: - type: Transform pos: 20.674541,-24.47581 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 17779 + - uid: 17763 components: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 17780 + - uid: 17764 components: - type: Transform pos: 56.5,14.5 parent: 2 - - uid: 17781 + - uid: 17765 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,25.5 parent: 2 - - uid: 17782 + - uid: 17766 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 17783 + - uid: 17767 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 - - uid: 17784 + - uid: 17768 components: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 17785 + - uid: 17769 components: - type: Transform pos: 51.5,-1.5 parent: 2 - - uid: 17786 + - uid: 17770 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 17787 + - uid: 17771 components: - type: Transform pos: 59.5,-1.5 parent: 2 - - uid: 17788 + - uid: 17772 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 17789 + - uid: 17773 components: - type: Transform pos: -13.5,-3.5 parent: 2 - - uid: 17790 + - uid: 17774 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 17791 + - uid: 17775 components: - type: Transform pos: -11.5,-36.5 parent: 2 - - uid: 17792 + - uid: 17776 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 17793 + - uid: 17777 components: - type: Transform pos: -27.5,-78.5 parent: 2 - - uid: 17794 + - uid: 17778 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 17795 + - uid: 17779 components: - type: Transform pos: 18.5,27.5 parent: 2 - - uid: 17796 + - uid: 17780 components: - type: Transform pos: -43.5,49.5 parent: 2 - - uid: 17797 + - uid: 17781 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-41.5 parent: 2 - - uid: 17798 + - uid: 17782 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 17799 + - uid: 17783 components: - type: Transform pos: -18.5,-48.5 parent: 2 - - uid: 17800 + - uid: 17784 components: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 17802 + - uid: 17785 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 17803 + - uid: 17786 components: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 17804 + - uid: 17787 components: - type: Transform pos: 33.5,-63.5 parent: 2 - - uid: 17805 + - uid: 17788 components: - type: Transform pos: 22.5,73.5 parent: 2 - - uid: 17806 + - uid: 17789 components: - type: Transform pos: 21.5,64.5 parent: 2 - - uid: 17807 + - uid: 17790 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 17808 + - uid: 17791 components: - type: Transform pos: 12.5,37.5 parent: 2 - - uid: 17809 + - uid: 17792 components: - type: Transform pos: -67.5,17.5 parent: 2 - - uid: 17810 + - uid: 17793 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 17811 + - uid: 17794 components: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 17812 + - uid: 17795 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 17813 + - uid: 17796 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 17814 + - uid: 17797 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 17815 + - uid: 17798 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 17816 + - uid: 17799 components: - type: Transform pos: -14.5,53.5 parent: 2 - - uid: 17817 + - uid: 17800 components: - type: Transform pos: -22.5,53.5 parent: 2 - - uid: 17818 + - uid: 17801 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 17819 + - uid: 17802 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 17820 + - uid: 17803 components: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 17821 + - uid: 17804 components: - type: Transform pos: -7.5,-47.5 parent: 2 - - uid: 17822 + - uid: 17805 components: - type: Transform pos: 8.5,86.5 parent: 2 - - uid: 17823 + - uid: 17806 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 17824 + - uid: 17807 components: - type: Transform pos: 29.5,-38.5 parent: 2 - - uid: 17825 + - uid: 17808 components: - type: Transform pos: -30.5,-37.5 parent: 2 - - uid: 17826 + - uid: 17809 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 17827 + - uid: 17810 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 17828 + - uid: 17811 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 17829 + - uid: 17812 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 17830 + - uid: 17813 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 17831 + - uid: 17814 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 17832 + - uid: 17815 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 17833 + - uid: 17816 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-51.5 parent: 2 - - uid: 17834 + - uid: 17817 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 17835 + - uid: 17818 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 17836 + - uid: 17819 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - uid: 17837 + - uid: 17820 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 17838 + - uid: 17821 components: - type: Transform pos: 8.5,50.5 parent: 2 - - uid: 17839 + - uid: 17822 components: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 17840 + - uid: 17823 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-24.5 parent: 2 - - uid: 17841 + - uid: 17824 components: - type: Transform pos: 3.5,66.5 parent: 2 - - uid: 17842 + - uid: 17825 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 17843 + - uid: 17826 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 17844 + - uid: 17827 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 17845 + - uid: 17828 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 17846 + - uid: 17829 components: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 17847 + - uid: 17830 components: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 17848 + - uid: 17831 components: - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 17849 + - uid: 17832 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 17850 + - uid: 17833 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 17852 + - uid: 17834 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 17853 + - uid: 17835 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 17854 + - uid: 17836 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 17855 + - uid: 17837 components: - type: Transform pos: -30.5,-46.5 parent: 2 - - uid: 17856 + - uid: 17838 components: - type: Transform pos: 32.5,-7.5 parent: 2 - - uid: 17857 + - uid: 17839 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 17858 + - uid: 17840 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 17859 + - uid: 17841 components: - type: Transform pos: 54.5,-23.5 parent: 2 - - uid: 17860 + - uid: 17842 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 17861 + - uid: 17843 components: - type: Transform pos: -30.5,56.5 parent: 2 - - uid: 17862 + - uid: 17844 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 17863 + - uid: 17845 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 17864 + - uid: 17846 components: - type: Transform pos: -28.5,40.5 parent: 2 - - uid: 17865 + - uid: 17847 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,3.5 parent: 2 - - uid: 39183 + - uid: 39010 components: - type: Transform pos: -20.5,-0.5 - parent: 38584 - - uid: 39184 + parent: 38411 + - uid: 39011 components: - type: Transform pos: 1.5,5.5 - parent: 38584 - - uid: 39185 + parent: 38411 + - uid: 39012 components: - type: Transform pos: -11.5,11.5 - parent: 38584 - - uid: 39186 + parent: 38411 + - uid: 39013 components: - type: Transform pos: 3.5,-0.5 - parent: 38584 + parent: 38411 - proto: FaxMachineBase entities: - - uid: 17866 + - uid: 17848 components: - type: Transform pos: 0.5,14.5 parent: 2 - type: FaxMachine name: Мостик - - uid: 17867 + - uid: 17849 components: - type: Transform pos: 51.5,7.5 parent: 2 - type: FaxMachine name: Офис вардена - - uid: 17868 + - uid: 17850 components: - type: Transform pos: 38.5,18.5 parent: 2 - type: FaxMachine name: Офис ГСБ - - uid: 17869 + - uid: 17851 components: - type: Transform pos: -21.5,-6.5 parent: 2 - type: FaxMachine name: Библиотека - - uid: 17870 + - uid: 17852 components: - type: Transform pos: -63.5,9.5 parent: 2 - type: FaxMachine name: Офис СИ - - uid: 17871 + - uid: 17853 components: - type: Transform pos: 32.5,8.5 parent: 2 - type: FaxMachine name: Офис детектива - - uid: 17872 + - uid: 17854 components: - type: Transform pos: 24.5,-46.5 parent: 2 - type: FaxMachine name: Офис ГВ - - uid: 17873 + - uid: 17855 components: - type: Transform pos: -16.5,-41.5 parent: 2 - type: FaxMachine name: Офис НР - - uid: 17874 + - uid: 17856 components: - type: Transform pos: 34.5,-1.5 parent: 2 - type: FaxMachine name: Офис АВД - - uid: 17875 + - uid: 17857 components: - type: Transform pos: 27.5,35.5 parent: 2 - type: FaxMachine name: Офис КМ - - uid: 17876 + - uid: 17858 components: - type: Transform pos: -8.5,0.5 parent: 2 - - uid: 17877 + - uid: 17859 components: - type: Transform pos: 83.5,5.5 @@ -137725,7 +137746,7 @@ entities: name: Пермабриг - proto: FaxMachineCaptain entities: - - uid: 17878 + - uid: 17860 components: - type: Transform pos: 9.5,6.5 @@ -137734,311 +137755,311 @@ entities: name: Офис Капитана - proto: FenceMetalBroken entities: - - uid: 17879 + - uid: 17861 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-50.5 parent: 2 - - uid: 17880 + - uid: 17862 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-17.5 parent: 2 - - uid: 39187 + - uid: 39014 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 - parent: 38584 + parent: 38411 - proto: FenceMetalGate entities: - - uid: 17881 + - uid: 17863 components: - type: Transform pos: 50.5,-50.5 parent: 2 - proto: FenceMetalStraight entities: - - uid: 17882 + - uid: 17864 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 - - uid: 17883 + - uid: 17865 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-50.5 parent: 2 - - uid: 17884 + - uid: 17866 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-50.5 parent: 2 - - uid: 39188 + - uid: 39015 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,15.5 - parent: 38584 - - uid: 39189 + parent: 38411 + - uid: 39016 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 - parent: 38584 - - uid: 39190 + parent: 38411 + - uid: 39017 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,15.5 - parent: 38584 - - uid: 39191 + parent: 38411 + - uid: 39018 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 - parent: 38584 - - uid: 39192 + parent: 38411 + - uid: 39019 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,15.5 - parent: 38584 + parent: 38411 - proto: FigureSpawner entities: - - uid: 17885 + - uid: 17867 components: - type: Transform pos: 68.5,30.5 parent: 2 - proto: filingCabinet entities: - - uid: 17886 + - uid: 17868 components: - type: Transform pos: 18.5,34.5 parent: 2 - - uid: 17887 + - uid: 17869 components: - type: Transform pos: -25.5,-12.5 parent: 2 - - uid: 17888 + - uid: 17870 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 17889 + - uid: 17871 components: - type: Transform pos: -14.5,-3.5 parent: 2 - - uid: 17890 + - uid: 17872 components: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 17891 + - uid: 17873 components: - type: Transform pos: 17.5,34.5 parent: 2 - - uid: 17892 + - uid: 17874 components: - type: Transform pos: 3.5,-61.5 parent: 2 - - uid: 17893 + - uid: 17875 components: - type: Transform pos: 3.5,61.5 parent: 2 - proto: filingCabinetDrawer entities: - - uid: 17894 + - uid: 17876 components: - type: Transform pos: 2.5,37.5 parent: 2 - - uid: 17895 + - uid: 17877 components: - type: Transform pos: -26.5,23.5 parent: 2 - - uid: 17896 + - uid: 17878 components: - type: Transform pos: 31.5,-69.5 parent: 2 - - uid: 17897 + - uid: 17879 components: - type: Transform pos: 14.5,-40.5 parent: 2 - - uid: 17898 + - uid: 17880 components: - type: Transform pos: -16.5,-38.5 parent: 2 - - uid: 17899 + - uid: 17881 components: - type: Transform pos: 37.5,12.5 parent: 2 - - uid: 17900 + - uid: 17882 components: - type: Transform pos: 25.5,26.5 parent: 2 - - uid: 17901 + - uid: 17883 components: - type: Transform pos: 20.5,-42.5 parent: 2 - - uid: 17902 + - uid: 17884 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 17903 + - uid: 17885 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 17904 + - uid: 17886 components: - type: Transform pos: -65.5,11.5 parent: 2 - - uid: 17905 + - uid: 17887 components: - type: Transform pos: 29.5,34.5 parent: 2 - - uid: 17906 + - uid: 17888 components: - type: Transform pos: -26.5,-31.5 parent: 2 - - uid: 17907 + - uid: 17889 components: - type: Transform pos: 27.5,40.5 parent: 2 - - uid: 17908 + - uid: 17890 components: - type: Transform pos: -33.5,-37.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 17909 + - uid: 17891 components: - type: Transform pos: 59.5,30.5 parent: 2 - - uid: 17910 + - uid: 17892 components: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 17911 + - uid: 17893 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 17912 + - uid: 17894 components: - type: Transform pos: 53.5,19.5 parent: 2 - - uid: 17913 + - uid: 17895 components: - type: Transform pos: -21.5,-8.5 parent: 2 - - uid: 17914 + - uid: 17896 components: - type: Transform pos: 25.5,2.5 parent: 2 - - uid: 17915 + - uid: 17897 components: - type: Transform pos: 25.5,-5.5 parent: 2 - - uid: 17916 + - uid: 17898 components: - type: Transform pos: -40.5,60.5 parent: 2 - - uid: 17917 + - uid: 17899 components: - type: Transform pos: -40.5,-8.5 parent: 2 - proto: filingCabinetRandom entities: - - uid: 17918 + - uid: 17900 components: - type: Transform pos: 54.5,19.5 parent: 2 - - uid: 17919 + - uid: 17901 components: - type: Transform pos: 31.5,-5.5 parent: 2 - - uid: 17920 + - uid: 17902 components: - type: Transform pos: -35.5,63.5 parent: 2 - - uid: 17921 + - uid: 17903 components: - type: Transform pos: -33.5,59.5 parent: 2 - - uid: 17922 + - uid: 17904 components: - type: Transform pos: 32.5,-41.5 parent: 2 - - uid: 17923 + - uid: 17905 components: - type: Transform pos: -33.5,63.5 parent: 2 - - uid: 39193 + - uid: 39020 components: - type: Transform pos: -22.5,30.5 - parent: 38584 - - uid: 39194 + parent: 38411 + - uid: 39021 components: - type: Transform pos: -22.5,31.5 - parent: 38584 + parent: 38411 - proto: filingCabinetTall entities: - - uid: 17924 + - uid: 17906 components: - type: Transform pos: 9.5,37.5 parent: 2 - - uid: 17925 + - uid: 17907 components: - type: Transform pos: -13.5,-0.5 parent: 2 - proto: FireAlarm entities: - - uid: 17926 + - uid: 17908 components: - type: Transform rot: 3.141592653589793 rad @@ -138046,19 +138067,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18177 - - 18197 - - 18253 - - 18252 + - 18158 - 18178 - - 18323 - - 18198 - - 18180 - - 18280 - - 18134 - - 18329 - - 817 - - uid: 17927 + - 18234 + - 18233 + - 18159 + - 18304 + - 18179 + - 18161 + - 18261 + - 18115 + - 18310 + - 813 + - uid: 17909 components: - type: Transform rot: 1.5707963267948966 rad @@ -138066,22 +138087,22 @@ entities: parent: 2 - type: DeviceList devices: - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18344 + - 18153 + - 18239 + - 18321 - 18341 - - 18338 - - uid: 17928 + - 18242 + - 18291 + - 18325 + - 18322 + - 18319 + - uid: 17910 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,2.5 parent: 2 - - uid: 17929 + - uid: 17911 components: - type: Transform rot: 1.5707963267948966 rad @@ -138089,13 +138110,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18132 - - 18165 - - 18125 - - 18129 - - 18136 - - 18140 - - uid: 17930 + - 18113 + - 18146 + - 18106 + - 18110 + - 18117 + - 18121 + - uid: 17912 components: - type: Transform rot: 3.141592653589793 rad @@ -138103,13 +138124,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18291 - - 18317 - - 18281 - - 18367 - - 18347 - - 18232 - - uid: 17931 + - 18272 + - 18298 + - 18262 + - 18348 + - 18328 + - 18213 + - uid: 17913 components: - type: Transform rot: -1.5707963267948966 rad @@ -138117,12 +138138,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18218 - - 18215 - - 18351 - - 18325 - - 752 - - uid: 17932 + - 18199 + - 18196 + - 18332 + - 18306 + - 748 + - uid: 17914 components: - type: Transform rot: -1.5707963267948966 rad @@ -138130,43 +138151,43 @@ entities: parent: 2 - type: DeviceList devices: - - 18051 - - 18052 - - 18050 - - 770 - - uid: 17933 + - 18032 + - 18033 + - 18031 + - 766 + - uid: 17915 components: - type: Transform pos: -29.5,-0.5 parent: 2 - type: DeviceList devices: - - 18036 - - 18043 - - 18044 - - 18045 - - 18037 - - 18047 - - 753 - - uid: 17934 + - 18018 + - 18024 + - 18025 + - 18026 + - 18019 + - 18028 + - 749 + - uid: 17916 components: - type: Transform pos: -24.5,16.5 parent: 2 - type: DeviceList devices: - - 18282 - - 18234 - - 18356 - - 18222 - - 754 - - uid: 17935 + - 18263 + - 18215 + - 18337 + - 18203 + - 750 + - uid: 17917 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 - - uid: 17936 + - uid: 17918 components: - type: Transform rot: -1.5707963267948966 rad @@ -138174,13 +138195,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18227 - - 18229 - - 18228 - - 18351 - - 18325 - - 844 - - uid: 17937 + - 18208 + - 18210 + - 18209 + - 18332 + - 18306 + - 840 + - uid: 17919 components: - type: Transform rot: 1.5707963267948966 rad @@ -138188,12 +138209,12 @@ entities: parent: 2 - type: DeviceList devices: + - 18180 + - 18176 - 18199 - - 18195 - - 18218 - - 18215 - - 845 - - uid: 17938 + - 18196 + - 841 + - uid: 17920 components: - type: Transform rot: 3.141592653589793 rad @@ -138201,18 +138222,18 @@ entities: parent: 2 - type: DeviceList devices: - - 788 - - 787 - - 18345 - - 18336 - - 18328 - - 18337 - - uid: 17939 + - 784 + - 783 + - 18326 + - 18317 + - 18309 + - 18318 + - uid: 17921 components: - type: Transform pos: 89.5,15.5 parent: 2 - - uid: 17940 + - uid: 17922 components: - type: Transform rot: -1.5707963267948966 rad @@ -138220,12 +138241,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18240 - - 18238 - - 18249 - - 810 - - 776 - - uid: 17941 + - 18221 + - 18219 + - 18230 + - 806 + - 772 + - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad @@ -138233,16 +138254,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18159 - - 18418 - - 18419 - - 18420 - - 813 - - 18290 - - 18422 - - 18421 - - 821 - - uid: 17942 + - 18140 + - 18399 + - 18400 + - 18401 + - 809 + - 18271 + - 18403 + - 18402 + - 817 + - uid: 17924 components: - type: Transform rot: 1.5707963267948966 rad @@ -138250,16 +138271,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18406 - - 18130 - - 820 - - uid: 17943 + - 18387 + - 18111 + - 816 + - uid: 17925 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,21.5 parent: 2 - - uid: 17944 + - uid: 17926 components: - type: Transform rot: -1.5707963267948966 rad @@ -138267,17 +138288,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18412 - - 18413 - - 18407 - - 18406 - - 18418 - - 18159 - - 18411 - - 18414 - - 18416 - - 814 - - uid: 17945 + - 18393 + - 18394 + - 18388 + - 18387 + - 18399 + - 18140 + - 18392 + - 18395 + - 18397 + - 810 + - uid: 17927 components: - type: Transform rot: -1.5707963267948966 rad @@ -138285,26 +138306,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18410 - - 18409 - - 815 - - 18414 - - 18411 - - 18160 - - 18412 - - 18413 - - 18408 - - uid: 17946 + - 18391 + - 18390 + - 811 + - 18395 + - 18392 + - 18141 + - 18393 + - 18394 + - 18389 + - uid: 17928 components: - type: Transform pos: -57.5,59.5 parent: 2 - type: DeviceList devices: - - 18164 - - 18417 - - 18160 - - uid: 17947 + - 18145 + - 18398 + - 18141 + - uid: 17929 components: - type: Transform rot: 1.5707963267948966 rad @@ -138312,10 +138333,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18416 - - 18417 - - 749 - - uid: 17948 + - 18397 + - 18398 + - 745 + - uid: 17930 components: - type: Transform rot: -1.5707963267948966 rad @@ -138323,43 +138344,43 @@ entities: parent: 2 - type: DeviceList devices: - - 812 - - 18247 - - 18235 - - 18288 - - 18121 - - 18423 - - uid: 17949 + - 808 + - 18228 + - 18216 + - 18269 + - 18102 + - 18404 + - uid: 17931 components: - type: Transform pos: -32.5,7.5 parent: 2 - type: DeviceList devices: - - 18288 - - 18235 - - 18247 - - 18293 - - 18223 - - 18224 - - 822 - - uid: 17950 + - 18269 + - 18216 + - 18228 + - 18274 + - 18204 + - 18205 + - 818 + - uid: 17932 components: - type: Transform pos: -21.5,7.5 parent: 2 - type: DeviceList devices: - - 18296 - - 18246 - - 18243 + - 18277 + - 18227 - 18224 - - 18223 - - 18293 - - 18282 - - 779 - - 18234 - - uid: 17951 + - 18205 + - 18204 + - 18274 + - 18263 + - 775 + - 18215 + - uid: 17933 components: - type: Transform rot: 1.5707963267948966 rad @@ -138367,65 +138388,65 @@ entities: parent: 2 - type: DeviceList devices: - - 18358 - - 18297 - - 18318 - - 18356 - - 18222 - - 18255 - - 18207 - - 18322 - - 780 - - uid: 17952 + - 18339 + - 18278 + - 18299 + - 18337 + - 18203 + - 18236 + - 18188 + - 18303 + - 776 + - uid: 17934 components: - type: Transform pos: -15.5,25.5 parent: 2 - type: DeviceList devices: - - 18255 - - 18207 - - 18322 - - 18354 - - 18208 - - 18355 + - 18236 - 18188 - - 18334 - - 18237 - - 825 - - uid: 17953 + - 18303 + - 18335 + - 18189 + - 18336 + - 18169 + - 18315 + - 18218 + - 821 + - uid: 17935 components: - type: Transform pos: -1.5,25.5 parent: 2 - type: DeviceList devices: - - 18188 - - 18334 - - 18237 - - 826 - - 18343 - - 18339 - - 18171 - - 18265 - - 18176 - - uid: 17954 + - 18169 + - 18315 + - 18218 + - 822 + - 18324 + - 18320 + - 18152 + - 18246 + - 18157 + - uid: 17936 components: - type: Transform pos: 13.5,25.5 parent: 2 - type: DeviceList devices: - - 18343 - - 18339 - - 18171 - - 827 - - 18342 - - 18266 - - 18183 + - 18324 + - 18320 + - 18152 + - 823 + - 18323 + - 18247 + - 18164 + - 18151 - 18170 - - 18189 - - uid: 17955 + - uid: 17937 components: - type: Transform rot: -1.5707963267948966 rad @@ -138433,14 +138454,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - uid: 17956 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - uid: 17938 components: - type: Transform rot: 1.5707963267948966 rad @@ -138448,71 +138469,71 @@ entities: parent: 2 - type: DeviceList devices: - - 18302 - - 18184 - - 18344 - - 18341 - - 18338 - - 18291 - - 18317 - - 18281 - - 18366 - - 18315 - - 18284 - - 833 - - uid: 17957 + - 18283 + - 18165 + - 18325 + - 18322 + - 18319 + - 18272 + - 18298 + - 18262 + - 18347 + - 18296 + - 18265 + - 829 + - uid: 17939 components: - type: Transform pos: 10.5,-17.5 parent: 2 - type: DeviceList devices: + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18131 - - 18145 - - 18167 - - 18366 - - 18315 - - 18284 - - 834 - - uid: 17958 + - 18158 + - 18112 + - 18126 + - 18148 + - 18347 + - 18296 + - 18265 + - 830 + - uid: 17940 components: - type: Transform pos: -15.5,-32.5 parent: 2 - type: DeviceList devices: - - 18242 - - 18305 - - 18123 - - 18402 - - 18403 - - 18365 - - 18316 - - 18230 - - 846 - - uid: 17959 + - 18223 + - 18286 + - 18104 + - 18383 + - 18384 + - 18346 + - 18297 + - 18211 + - 842 + - uid: 17941 components: - type: Transform pos: -9.5,-17.5 parent: 2 - type: DeviceList devices: - - 18168 - - 18162 - - 18154 - - 18327 - - 18333 - - 18210 - - 18219 + - 18149 + - 18143 + - 18135 + - 18308 + - 18314 + - 18191 - 18200 - - 18220 - - 18250 - - 747 - - uid: 17960 + - 18181 + - 18201 + - 18231 + - 743 + - uid: 17942 components: - type: Transform rot: -1.5707963267948966 rad @@ -138520,16 +138541,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18200 - - 18220 - - 18250 - - 18236 - - 18346 - - 18332 + - 18181 + - 18201 + - 18231 - 18217 - - 18187 - - 836 - - uid: 17961 + - 18327 + - 18313 + - 18198 + - 18168 + - 832 + - uid: 17943 components: - type: Transform rot: 1.5707963267948966 rad @@ -138537,19 +138558,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18318 - - 18297 - - 18358 - - 18236 - - 18346 - - 18332 - - 824 - - 18036 - - 18043 - - 18246 - - 18296 - - 18243 - - uid: 17962 + - 18299 + - 18278 + - 18339 + - 18217 + - 18327 + - 18313 + - 820 + - 18018 + - 18024 + - 18227 + - 18277 + - 18224 + - uid: 17944 components: - type: Transform rot: -1.5707963267948966 rad @@ -138557,10 +138578,10 @@ entities: parent: 2 - type: DeviceList devices: - - 823 - - 18048 - - 18047 - - uid: 17963 + - 819 + - 18029 + - 18028 + - uid: 17945 components: - type: Transform rot: 1.5707963267948966 rad @@ -138568,30 +138589,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18081 - - 18080 - - 18087 - - 18083 - - 18096 - - 18070 + - 18062 + - 18061 - 18068 + - 18064 + - 18077 + - 18051 + - 18049 + - 18069 + - 18071 + - 18079 - 18088 - - 18090 - - 18098 - - 18107 - - 18093 - - 18354 - - 18208 - - 18355 - - 18073 - - 18101 - - 18108 - - 18105 - - 18106 - - 18067 - - 860 - - 858 - - uid: 17964 + - 18074 + - 18335 + - 18189 + - 18336 + - 18054 + - 18082 + - 18089 + - 18086 + - 18087 + - 18048 + - 856 + - 854 + - uid: 17946 components: - type: Transform rot: 3.141592653589793 rad @@ -138599,33 +138620,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18067 - - 18106 - - 18105 - - 18108 - - 18101 - - 18073 - - 856 - - uid: 17965 + - 18048 + - 18087 + - 18086 + - 18089 + - 18082 + - 18054 + - 852 + - uid: 17947 components: - type: Transform pos: -13.5,35.5 parent: 2 - type: DeviceList devices: - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 - - 775 - - uid: 17966 + - 18070 + - 18073 + - 18059 + - 18056 + - 18057 + - 18083 + - 18060 + - 18065 + - 18067 + - 18066 + - 771 + - uid: 17948 components: - type: Transform rot: -1.5707963267948966 rad @@ -138633,34 +138654,34 @@ entities: parent: 2 - type: DeviceList devices: - - 18082 - - 18065 - - 18109 - - 18066 - - 18069 + - 18063 + - 18046 + - 18090 + - 18047 + - 18050 + - 18072 + - 18080 + - 18075 - 18091 - - 18099 - - 18094 - - 18110 - - 18097 - - 18104 + - 18078 + - 18085 + - 18171 + - 18254 + - 18289 - 18190 - - 18273 - - 18308 - - 18209 - - 18331 - - 800 - - uid: 17967 + - 18312 + - 796 + - uid: 17949 components: - type: Transform pos: -8.5,51.5 parent: 2 - type: DeviceList devices: - - 18286 - - 18287 - - 811 - - uid: 17968 + - 18267 + - 18268 + - 807 + - uid: 17950 components: - type: Transform rot: 3.141592653589793 rad @@ -138668,17 +138689,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18225 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - - 18268 - - 18269 - - 18271 - - 802 - - 801 - - uid: 17969 + - 18249 + - 18250 + - 18252 + - 798 + - 797 + - uid: 17951 components: - type: Transform rot: -1.5707963267948966 rad @@ -138686,8 +138707,8 @@ entities: parent: 2 - type: DeviceList devices: - - 861 - - uid: 17970 + - 857 + - uid: 17952 components: - type: Transform rot: -1.5707963267948966 rad @@ -138695,23 +138716,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18244 - - 18239 - - 18311 - - 18364 - - 18295 - - 18245 - - 18312 - - 18285 - - 18226 - 18225 - - 862 - - uid: 17971 + - 18220 + - 18292 + - 18345 + - 18276 + - 18226 + - 18293 + - 18266 + - 18207 + - 18206 + - 858 + - uid: 17953 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 17972 + - uid: 17954 components: - type: Transform rot: -1.5707963267948966 rad @@ -138719,13 +138740,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18331 - - 18209 - - 18308 + - 18312 - 18190 - - 18273 - - 857 - - uid: 17973 + - 18289 + - 18171 + - 18254 + - 853 + - uid: 17955 components: - type: Transform rot: -1.5707963267948966 rad @@ -138733,15 +138754,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18161 - - 18257 - - 18153 - - 18342 - - 18266 - - 18265 - - 18176 - - 757 - - uid: 17974 + - 18142 + - 18238 + - 18134 + - 18323 + - 18247 + - 18246 + - 18157 + - 753 + - uid: 17956 components: - type: Transform rot: -1.5707963267948966 rad @@ -138749,10 +138770,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18362 - - 18153 - - 796 - - uid: 17975 + - 18343 + - 18134 + - 792 + - uid: 17957 components: - type: Transform rot: 1.5707963267948966 rad @@ -138760,13 +138781,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18139 - - 18303 - - 18161 - - 18138 - - 18309 - - 797 - - uid: 17976 + - 18120 + - 18284 + - 18142 + - 18119 + - 18290 + - 793 + - uid: 17958 components: - type: Transform rot: 1.5707963267948966 rad @@ -138774,9 +138795,9 @@ entities: parent: 2 - type: DeviceList devices: - - 18139 - - 854 - - uid: 17977 + - 18120 + - 850 + - uid: 17959 components: - type: Transform rot: 3.141592653589793 rad @@ -138784,19 +138805,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18309 - - 18138 - - 18362 - - 18126 - - 18137 - - 18262 - - 18277 - - 18276 - - 18149 - - 18260 - - 750 - - 798 - - uid: 17978 + - 18290 + - 18119 + - 18343 + - 18107 + - 18118 + - 18243 + - 18258 + - 18257 + - 18130 + - 18241 + - 746 + - 794 + - uid: 17960 components: - type: Transform rot: 3.141592653589793 rad @@ -138804,21 +138825,21 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18278 - - 18361 - - 18173 - - 829 - - uid: 17979 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - 18341 + - 18242 + - 18291 + - 18259 + - 18342 + - 18154 + - 825 + - uid: 17961 components: - type: Transform rot: 3.141592653589793 rad @@ -138826,80 +138847,80 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18278 - - 18361 - - 18173 - - 829 - - 18111 - - 18060 - - 18061 - - 830 - - uid: 17980 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - 18341 + - 18242 + - 18291 + - 18259 + - 18342 + - 18154 + - 825 + - 18092 + - 18041 + - 18042 + - 826 + - uid: 17962 components: - type: Transform pos: 34.5,7.5 parent: 2 - type: DeviceList devices: - - 18111 - - 18060 - - 18061 - - 18352 - - 18353 - - 831 - - uid: 17981 + - 18092 + - 18041 + - 18042 + - 18333 + - 18334 + - 827 + - uid: 17963 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,15.5 parent: 2 - - uid: 17982 + - uid: 17964 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,23.5 parent: 2 - - uid: 17983 + - uid: 17965 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,2.5 parent: 2 - - uid: 17984 + - uid: 17966 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-1.5 parent: 2 - - uid: 17985 + - uid: 17967 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,11.5 parent: 2 - - uid: 17986 + - uid: 17968 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,8.5 parent: 2 - - uid: 17987 + - uid: 17969 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 - - uid: 17988 + - uid: 17970 components: - type: Transform rot: -1.5707963267948966 rad @@ -138907,23 +138928,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18280 - - 18180 - - 18324 - - 18212 - - 18350 - - 18202 - - 18320 - - 18304 - - 18380 - - 841 - - uid: 17989 + - 18261 + - 18161 + - 18305 + - 18193 + - 18331 + - 18183 + - 18301 + - 18285 + - 18361 + - 837 + - uid: 17971 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-36.5 parent: 2 - - uid: 17990 + - uid: 17972 components: - type: Transform rot: 3.141592653589793 rad @@ -138931,26 +138952,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18198 - - 18289 - - 18204 - - 18348 - - 842 - - uid: 17991 + - 18179 + - 18270 + - 18185 + - 18329 + - 838 + - uid: 17973 components: - type: Transform pos: 24.5,-32.5 parent: 2 - type: DeviceList devices: - - 18304 - - 18320 - - 18202 - - 18228 - - 18229 - - 18227 - - 843 - - uid: 17992 + - 18285 + - 18301 + - 18183 + - 18209 + - 18210 + - 18208 + - 839 + - uid: 17974 components: - type: Transform rot: 3.141592653589793 rad @@ -138958,15 +138979,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18201 - - 18205 - - 18279 - - 18142 - - 18289 - - 18203 - - 18306 - - 18179 - - uid: 17993 + - 18182 + - 18186 + - 18260 + - 18123 + - 18270 + - 18184 + - 18287 + - 18160 + - uid: 17975 components: - type: Transform rot: 1.5707963267948966 rad @@ -138974,13 +138995,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18203 - - 18306 - - 18179 - - 18299 - - 18319 - - 819 - - uid: 17994 + - 18184 + - 18287 + - 18160 + - 18280 + - 18300 + - 815 + - uid: 17976 components: - type: Transform rot: 1.5707963267948966 rad @@ -138988,14 +139009,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18319 - - 18174 - - 18299 - - 816 - - 18272 - - 18270 - - 18267 - - uid: 17995 + - 18300 + - 18155 + - 18280 + - 812 + - 18253 + - 18251 + - 18248 + - uid: 17977 components: - type: Transform rot: -1.5707963267948966 rad @@ -139003,19 +139024,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18372 - - 18371 - - 18267 - - 18270 - - 18272 - - 18374 - - 18373 - - 18158 - - 18141 - - 840 - - 839 - - 818 - - uid: 17996 + - 18353 + - 18352 + - 18248 + - 18251 + - 18253 + - 18355 + - 18354 + - 18139 + - 18122 + - 836 + - 835 + - 814 + - uid: 17978 components: - type: Transform rot: 3.141592653589793 rad @@ -139023,17 +139044,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18327 - - 18333 - - 18219 - - 18210 - - 18143 - - 18169 - - 18263 - - 18231 - - 18283 - - 755 - - uid: 17997 + - 18308 + - 18314 + - 18200 + - 18191 + - 18124 + - 18150 + - 18244 + - 18212 + - 18264 + - 751 + - uid: 17979 components: - type: Transform rot: 1.5707963267948966 rad @@ -139041,11 +139062,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18157 - - 18127 - - 18128 - - 848 - - uid: 17998 + - 18138 + - 18108 + - 18109 + - 844 + - uid: 17980 components: - type: Transform rot: 3.141592653589793 rad @@ -139053,28 +139074,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18157 - - 18127 - - 18128 - - 18230 - - 18316 - - 18365 - - 18148 - - 18150 - - 847 - - uid: 17999 + - 18138 + - 18108 + - 18109 + - 18211 + - 18297 + - 18346 + - 18129 + - 18131 + - 843 + - uid: 17981 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-41.5 parent: 2 - - uid: 18000 + - uid: 17982 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-47.5 parent: 2 - - uid: 18001 + - uid: 17983 components: - type: Transform rot: -1.5707963267948966 rad @@ -139082,10 +139103,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18148 - - 18147 - - 849 - - uid: 18002 + - 18129 + - 18128 + - 845 + - uid: 17984 components: - type: Transform rot: -1.5707963267948966 rad @@ -139093,11 +139114,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18150 - - 18151 - - 18264 - - 850 - - uid: 18003 + - 18131 + - 18132 + - 18245 + - 846 + - uid: 17985 components: - type: Transform rot: 3.141592653589793 rad @@ -139105,12 +139126,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18147 - - 18151 - - 18335 - - 18211 - - 852 - - uid: 18004 + - 18128 + - 18132 + - 18316 + - 18192 + - 848 + - uid: 17986 components: - type: Transform rot: -1.5707963267948966 rad @@ -139118,9 +139139,9 @@ entities: parent: 2 - type: DeviceList devices: - - 18211 - - 853 - - uid: 18005 + - 18192 + - 849 + - uid: 17987 components: - type: Transform rot: 3.141592653589793 rad @@ -139128,78 +139149,78 @@ entities: parent: 2 - type: DeviceList devices: - - 18313 - - 18307 - - 18335 - - 18264 - - 851 - - uid: 18006 + - 18294 + - 18288 + - 18316 + - 18245 + - 847 + - uid: 17988 components: - type: Transform pos: -0.5,-17.5 parent: 2 - type: DeviceList devices: + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18131 - - 18145 - - 18167 - - 18366 - - 18315 - - 18284 - - 834 - - 18154 - - 18162 - - 18168 - - 18248 - - 18326 - - 18241 - - 835 - - uid: 18007 + - 18158 + - 18112 + - 18126 + - 18148 + - 18347 + - 18296 + - 18265 + - 830 + - 18135 + - 18143 + - 18149 + - 18229 + - 18307 + - 18222 + - 831 + - uid: 17989 components: - type: Transform pos: -13.5,-6.5 parent: 2 - type: DeviceList devices: - - 18187 - - 18217 - - 18062 - - 18059 - - 781 - - 18120 - - uid: 18008 + - 18168 + - 18198 + - 18043 + - 18040 + - 777 + - 18101 + - uid: 17990 components: - type: Transform pos: 0.49999997,-6.5 parent: 2 - type: DeviceList devices: - - 18063 - - 18064 - - 18059 - - 18062 - - 782 - - 18117 - - 18116 - - uid: 18009 + - 18044 + - 18045 + - 18040 + - 18043 + - 778 + - 18098 + - 18097 + - uid: 17991 components: - type: Transform pos: 12.5,-6.5 parent: 2 - type: DeviceList devices: - - 18184 - - 18302 - - 18063 - - 18064 - - 748 - - 18429 - - 18116 - - uid: 18010 + - 18165 + - 18283 + - 18044 + - 18045 + - 744 + - 18410 + - 18097 + - uid: 17992 components: - type: Transform rot: 3.141592653589793 rad @@ -139207,15 +139228,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18367 - - 18347 - - 18232 - - 838 - - 18336 - - 18345 - - 786 - - 785 - - uid: 18011 + - 18348 + - 18328 + - 18213 + - 834 + - 18317 + - 18326 + - 782 + - 781 + - uid: 17993 components: - type: Transform rot: 3.141592653589793 rad @@ -139223,30 +139244,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18093 - - 18107 - - 18098 - - 18090 + - 18074 - 18088 + - 18079 + - 18071 + - 18069 + - 18049 + - 18051 + - 18077 + - 18064 - 18068 + - 18061 + - 18062 + - 18076 - 18070 - - 18096 + - 18073 + - 18059 + - 18056 + - 18057 - 18083 - - 18087 - - 18080 - - 18081 - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 - - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 - - uid: 18012 + - 18060 + - 18065 + - 18067 + - 18066 + - uid: 17994 components: - type: Transform rot: 1.5707963267948966 rad @@ -139254,24 +139275,24 @@ entities: parent: 2 - type: DeviceList devices: - - 18082 - - 18065 - - 18109 - - 18066 - - 18069 + - 18063 + - 18046 + - 18090 + - 18047 + - 18050 + - 18072 + - 18080 + - 18075 - 18091 - - 18099 - - 18094 - - 18110 - - 18097 - - 18104 - - 18286 - - 18287 - - 18271 - - 18269 + - 18078 + - 18085 + - 18267 - 18268 - - 859 - - uid: 18013 + - 18252 + - 18250 + - 18249 + - 855 + - uid: 17995 components: - type: Transform rot: -1.5707963267948966 rad @@ -139279,12 +139300,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18034 - - 18029 - - 18031 - - 808 - - 809 - - uid: 18014 + - 18016 + - 18011 + - 18013 + - 804 + - 805 + - uid: 17996 components: - type: Transform rot: -1.5707963267948966 rad @@ -139292,80 +139313,80 @@ entities: parent: 2 - type: DeviceList devices: - - 806 - - 18055 - - 18056 - - 18292 - - 18193 - - 18185 - - uid: 18015 + - 802 + - 18036 + - 18037 + - 18273 + - 18174 + - 18166 + - uid: 17997 components: - type: Transform pos: 87.5,3.5 parent: 2 - type: DeviceList devices: - - 864 - - 863 - - 18405 - - 18427 - - 18428 - - uid: 39195 + - 860 + - 859 + - 18386 + - 18408 + - 18409 + - uid: 39022 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39199 - - 39202 - - 39201 - - 38612 - - uid: 39196 + - 39026 + - 39029 + - 39028 + - 38439 + - uid: 39023 components: - type: Transform pos: -0.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39200 - - 39203 - - 38611 - - uid: 39197 + - 39027 + - 39030 + - 38438 + - uid: 39024 components: - type: Transform pos: -0.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39204 - - 39205 - - uid: 39198 + - 39031 + - 39032 + - uid: 39025 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39207 - - 39206 + - 39034 + - 39033 - proto: FireAxeCabinetFilled entities: - - uid: 18016 + - uid: 17998 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 18017 + - uid: 17999 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,37.5 parent: 2 - - uid: 18018 + - uid: 18000 components: - type: Transform rot: 3.141593671850739 rad @@ -139373,7 +139394,7 @@ entities: parent: 2 - proto: FireAxeCabinetOpen entities: - - uid: 18019 + - uid: 18001 components: - type: Transform rot: 1.5707963267948966 rad @@ -139381,57 +139402,57 @@ entities: parent: 2 - proto: FireExtinguisher entities: - - uid: 18020 + - uid: 18002 components: - type: Transform pos: -44.574673,-22.51657 parent: 2 - type: Physics canCollide: False - - uid: 18021 + - uid: 18003 components: - type: Transform pos: -34.773117,-55.435936 parent: 2 - - uid: 18022 + - uid: 18004 components: - type: Transform pos: -34.319992,-55.435936 parent: 2 - proto: Firelock entities: - - uid: 18023 + - uid: 18005 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-7.5 parent: 2 - - uid: 18024 + - uid: 18006 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 18025 + - uid: 18007 components: - type: Transform pos: 9.5,80.5 parent: 2 - - uid: 18026 + - uid: 18008 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 18027 + - uid: 18009 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 18028 + - uid: 18010 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 18029 + - uid: 18011 components: - type: Transform rot: 3.141592653589793 rad @@ -139439,14 +139460,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18030 + - uid: 18012 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 18031 + - uid: 18013 components: - type: Transform rot: 3.141592653589793 rad @@ -139454,19 +139475,19 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18032 + - uid: 18014 components: - type: Transform pos: -53.5,-33.5 parent: 2 - - uid: 18033 + - uid: 18015 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 18034 + - uid: 18016 components: - type: Transform rot: 3.141592653589793 rad @@ -139474,14 +139495,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18035 + - uid: 18017 components: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 18036 + - uid: 18018 components: - type: Transform rot: -1.5707963267948966 rad @@ -139489,10 +139510,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17961 + - 17915 + - 17943 - 64 - - uid: 18037 + - uid: 18019 components: - type: Transform rot: -1.5707963267948966 rad @@ -139500,29 +139521,29 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - uid: 18038 + - 17915 + - uid: 18020 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 18040 + - uid: 18021 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 18041 + - uid: 18022 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 18042 + - uid: 18023 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-3.5 parent: 2 - - uid: 18043 + - uid: 18024 components: - type: Transform rot: -1.5707963267948966 rad @@ -139530,10 +139551,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17961 + - 17915 + - 17943 - 64 - - uid: 18044 + - uid: 18025 components: - type: Transform rot: -1.5707963267948966 rad @@ -139541,9 +139562,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 18045 + - uid: 18026 components: - type: Transform rot: -1.5707963267948966 rad @@ -139551,14 +139572,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 18046 + - uid: 18027 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 18047 + - uid: 18028 components: - type: Transform rot: -1.5707963267948966 rad @@ -139566,10 +139587,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17962 + - 17915 + - 17944 - 64 - - uid: 18048 + - uid: 18029 components: - type: Transform rot: -1.5707963267948966 rad @@ -139577,20 +139598,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17962 + - 17944 - 64 - - uid: 18049 + - uid: 18030 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 18050 + - uid: 18031 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,6.5 parent: 2 - - uid: 18051 + - uid: 18032 components: - type: Transform rot: -1.5707963267948966 rad @@ -139599,7 +139620,7 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 18052 + - uid: 18033 components: - type: Transform rot: -1.5707963267948966 rad @@ -139608,42 +139629,42 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 18053 + - uid: 18034 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-40.5 parent: 2 - - uid: 18054 + - uid: 18035 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-40.5 parent: 2 - - uid: 18055 + - uid: 18036 components: - type: Transform pos: 9.5,76.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 18056 + - uid: 18037 components: - type: Transform pos: 9.5,75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 18057 + - uid: 18038 components: - type: Transform pos: 9.5,81.5 parent: 2 - - uid: 18058 + - uid: 18039 components: - type: Transform rot: 3.141592653589793 rad @@ -139651,7 +139672,7 @@ entities: parent: 2 - proto: FirelockEdge entities: - - uid: 18059 + - uid: 18040 components: - type: Transform rot: 1.5707963267948966 rad @@ -139659,10 +139680,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 - - 18008 + - 17989 + - 17990 - 65 - - uid: 18060 + - uid: 18041 components: - type: Transform rot: 1.5707963267948966 rad @@ -139670,10 +139691,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18061 + - uid: 18042 components: - type: Transform rot: 1.5707963267948966 rad @@ -139681,10 +139702,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18062 + - uid: 18043 components: - type: Transform rot: 1.5707963267948966 rad @@ -139692,10 +139713,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 - - 18008 + - 17989 + - 17990 - 65 - - uid: 18063 + - uid: 18044 components: - type: Transform rot: -1.5707963267948966 rad @@ -139703,10 +139724,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18064 + - uid: 18045 components: - type: Transform rot: -1.5707963267948966 rad @@ -139714,10 +139735,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18065 + - uid: 18046 components: - type: Transform rot: -1.5707963267948966 rad @@ -139725,10 +139746,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18066 + - uid: 18047 components: - type: Transform rot: -1.5707963267948966 rad @@ -139736,10 +139757,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18067 + - uid: 18048 components: - type: Transform rot: 3.141592653589793 rad @@ -139747,10 +139768,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18068 + - uid: 18049 components: - type: Transform rot: 1.5707963267948966 rad @@ -139758,10 +139779,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18069 + - uid: 18050 components: - type: Transform rot: -1.5707963267948966 rad @@ -139769,10 +139790,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18070 + - uid: 18051 components: - type: Transform rot: 1.5707963267948966 rad @@ -139780,22 +139801,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18071 + - uid: 18052 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,34.5 parent: 2 - - uid: 18072 + - uid: 18053 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,35.5 parent: 2 - - uid: 18073 + - uid: 18054 components: - type: Transform rot: 1.5707963267948966 rad @@ -139803,16 +139824,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18074 + - uid: 18055 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,33.5 parent: 2 - - uid: 18075 + - uid: 18056 components: - type: Transform rot: -1.5707963267948966 rad @@ -139820,10 +139841,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18076 + - uid: 18057 components: - type: Transform rot: -1.5707963267948966 rad @@ -139831,25 +139852,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18077 + - uid: 18058 components: - type: Transform pos: -14.5,29.5 parent: 2 - - uid: 18078 + - uid: 18059 components: - type: Transform pos: -14.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18079 + - uid: 18060 components: - type: Transform rot: 3.141592653589793 rad @@ -139857,30 +139878,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18080 + - uid: 18061 components: - type: Transform pos: -15.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18081 + - uid: 18062 components: - type: Transform pos: -14.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18082 + - uid: 18063 components: - type: Transform rot: -1.5707963267948966 rad @@ -139888,10 +139909,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18083 + - uid: 18064 components: - type: Transform rot: 1.5707963267948966 rad @@ -139899,10 +139920,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18084 + - uid: 18065 components: - type: Transform rot: -1.5707963267948966 rad @@ -139910,10 +139931,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18085 + - uid: 18066 components: - type: Transform rot: -1.5707963267948966 rad @@ -139921,10 +139942,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18086 + - uid: 18067 components: - type: Transform rot: -1.5707963267948966 rad @@ -139932,20 +139953,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18087 + - uid: 18068 components: - type: Transform pos: -16.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18088 + - uid: 18069 components: - type: Transform rot: 1.5707963267948966 rad @@ -139953,10 +139974,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18089 + - uid: 18070 components: - type: Transform rot: -1.5707963267948966 rad @@ -139964,10 +139985,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18090 + - uid: 18071 components: - type: Transform rot: 1.5707963267948966 rad @@ -139975,10 +139996,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18091 + - uid: 18072 components: - type: Transform rot: -1.5707963267948966 rad @@ -139986,10 +140007,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18092 + - uid: 18073 components: - type: Transform rot: -1.5707963267948966 rad @@ -139997,10 +140018,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18093 + - uid: 18074 components: - type: Transform rot: 1.5707963267948966 rad @@ -140008,10 +140029,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18094 + - uid: 18075 components: - type: Transform rot: -1.5707963267948966 rad @@ -140019,10 +140040,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18095 + - uid: 18076 components: - type: Transform rot: -1.5707963267948966 rad @@ -140030,10 +140051,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18096 + - uid: 18077 components: - type: Transform rot: 1.5707963267948966 rad @@ -140041,10 +140062,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18097 + - uid: 18078 components: - type: Transform rot: -1.5707963267948966 rad @@ -140052,10 +140073,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18098 + - uid: 18079 components: - type: Transform rot: 1.5707963267948966 rad @@ -140063,10 +140084,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18099 + - uid: 18080 components: - type: Transform rot: -1.5707963267948966 rad @@ -140074,16 +140095,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18100 + - uid: 18081 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,36.5 parent: 2 - - uid: 18101 + - uid: 18082 components: - type: Transform rot: 1.5707963267948966 rad @@ -140091,10 +140112,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18102 + - uid: 18083 components: - type: Transform rot: -1.5707963267948966 rad @@ -140102,16 +140123,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18103 + - uid: 18084 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,37.5 parent: 2 - - uid: 18104 + - uid: 18085 components: - type: Transform rot: -1.5707963267948966 rad @@ -140119,10 +140140,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18105 + - uid: 18086 components: - type: Transform rot: 1.5707963267948966 rad @@ -140130,10 +140151,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18106 + - uid: 18087 components: - type: Transform rot: 1.5707963267948966 rad @@ -140141,10 +140162,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18107 + - uid: 18088 components: - type: Transform rot: 1.5707963267948966 rad @@ -140152,10 +140173,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18108 + - uid: 18089 components: - type: Transform rot: 1.5707963267948966 rad @@ -140163,10 +140184,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18109 + - uid: 18090 components: - type: Transform rot: -1.5707963267948966 rad @@ -140174,10 +140195,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18110 + - uid: 18091 components: - type: Transform rot: -1.5707963267948966 rad @@ -140185,10 +140206,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18111 + - uid: 18092 components: - type: Transform rot: 1.5707963267948966 rad @@ -140196,34 +140217,34 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18112 + - uid: 18093 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,48.5 parent: 2 - - uid: 18113 + - uid: 18094 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,48.5 parent: 2 - - uid: 18114 + - uid: 18095 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-40.5 parent: 2 - - uid: 18115 + - uid: 18096 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-40.5 parent: 2 - - uid: 18116 + - uid: 18097 components: - type: Transform rot: -1.5707963267948966 rad @@ -140231,10 +140252,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18117 + - uid: 18098 components: - type: Transform rot: 1.5707963267948966 rad @@ -140242,11 +140263,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 + - 17990 - 65 - proto: FirelockElectronics entities: - - uid: 18118 + - uid: 18099 components: - type: Transform pos: -38.5,11.5 @@ -140255,24 +140276,24 @@ entities: canCollide: False - proto: FirelockFrame entities: - - uid: 18119 + - uid: 18100 components: - type: Transform pos: -73.5,-28.5 parent: 2 - proto: FirelockGlass entities: - - uid: 18120 + - uid: 18101 components: - type: Transform pos: -16.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18007 + - 17989 - 124 - 65 - - uid: 18121 + - uid: 18102 components: - type: Transform rot: -1.5707963267948966 rad @@ -140280,28 +140301,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - uid: 18122 + - 17930 + - uid: 18103 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-33.5 parent: 2 - - uid: 18123 + - uid: 18104 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18124 + - uid: 18105 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 18125 + - uid: 18106 components: - type: Transform pos: 48.5,10.5 @@ -140309,7 +140330,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18126 + - uid: 18107 components: - type: Transform rot: 3.141592653589793 rad @@ -140317,28 +140338,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 18127 + - 17959 + - uid: 18108 components: - type: Transform pos: -22.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18128 + - uid: 18109 components: - type: Transform pos: -21.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18129 + - uid: 18110 components: - type: Transform pos: 49.5,1.5 @@ -140347,7 +140368,7 @@ entities: deviceLists: - 86 - 70 - - uid: 18130 + - uid: 18111 components: - type: Transform rot: 3.141592653589793 rad @@ -140355,19 +140376,19 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17942 + - 17924 - 59 - - uid: 18131 + - uid: 18112 components: - type: Transform pos: 1.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18132 + - uid: 18113 components: - type: Transform pos: 46.5,10.5 @@ -140375,25 +140396,25 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18133 + - uid: 18114 components: - type: Transform pos: 49.5,8.5 parent: 2 - - uid: 18134 + - uid: 18115 components: - type: Transform pos: 13.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - uid: 18135 + - 17908 + - uid: 18116 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 18136 + - uid: 18117 components: - type: Transform pos: 49.5,0.5 @@ -140402,7 +140423,7 @@ entities: deviceLists: - 86 - 70 - - uid: 18137 + - uid: 18118 components: - type: Transform rot: 3.141592653589793 rad @@ -140410,28 +140431,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 18138 + - 17959 + - uid: 18119 components: - type: Transform pos: 12.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17977 + - 17957 + - 17959 - 79 - - uid: 18139 + - uid: 18120 components: - type: Transform pos: 5.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17976 + - 17957 + - 17958 - 79 - - uid: 18140 + - uid: 18121 components: - type: Transform pos: 49.5,-0.5 @@ -140440,54 +140461,54 @@ entities: deviceLists: - 86 - 70 - - uid: 18141 + - uid: 18122 components: - type: Transform pos: -11.5,-65.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - 115 - - uid: 18142 + - uid: 18123 components: - type: Transform pos: -3.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - uid: 18143 + - 17974 + - uid: 18124 components: - type: Transform pos: -16.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 107 - - uid: 18144 + - uid: 18125 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 18145 + - uid: 18126 components: - type: Transform pos: 1.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18146 + - uid: 18127 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 18147 + - uid: 18128 components: - type: Transform rot: -1.5707963267948966 rad @@ -140495,9 +140516,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18001 - - 18003 - - uid: 18148 + - 17983 + - 17985 + - uid: 18129 components: - type: Transform rot: -1.5707963267948966 rad @@ -140505,9 +140526,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 18001 - - uid: 18149 + - 17980 + - 17983 + - uid: 18130 components: - type: Transform rot: 3.141592653589793 rad @@ -140515,9 +140536,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18150 + - uid: 18131 components: - type: Transform rot: -1.5707963267948966 rad @@ -140525,9 +140546,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 18002 - - uid: 18151 + - 17980 + - 17984 + - uid: 18132 components: - type: Transform rot: -1.5707963267948966 rad @@ -140535,64 +140556,64 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 - - 18003 - - uid: 18152 + - 17984 + - 17985 + - uid: 18133 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 18153 + - uid: 18134 components: - type: Transform pos: 11.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - 17974 + - 17955 + - 17956 - 79 - - uid: 18154 + - uid: 18135 components: - type: Transform pos: -2.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18155 + - uid: 18136 components: - type: Transform pos: 41.5,-45.5 parent: 2 - - uid: 18156 + - uid: 18137 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 18157 + - uid: 18138 components: - type: Transform pos: -23.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18158 + - uid: 18139 components: - type: Transform pos: -11.5,-66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - 115 - - uid: 18159 + - uid: 18140 components: - type: Transform rot: 3.141592653589793 rad @@ -140600,54 +140621,54 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17941 + - 17926 + - 17923 - 59 - - uid: 18160 + - uid: 18141 components: - type: Transform pos: -58.5,55.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17946 - - 17945 + - 17928 + - 17927 - 56 - - uid: 18161 + - uid: 18142 components: - type: Transform pos: 4.5,32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - 17975 + - 17955 + - 17957 - 79 - - uid: 18162 + - uid: 18143 components: - type: Transform pos: -2.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18163 + - uid: 18144 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 18164 + - uid: 18145 components: - type: Transform pos: -58.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17946 + - 17928 - 56 - - uid: 18165 + - uid: 18146 components: - type: Transform pos: 47.5,10.5 @@ -140655,154 +140676,154 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18166 + - uid: 18147 components: - type: Transform pos: 36.5,-48.5 parent: 2 - - uid: 18167 + - uid: 18148 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18168 + - uid: 18149 components: - type: Transform pos: -2.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18169 + - uid: 18150 components: - type: Transform pos: -14.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 - - uid: 18170 + - 17978 + - uid: 18151 components: - type: Transform pos: 17.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18171 + - uid: 18152 components: - type: Transform pos: 6.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18172 + - uid: 18153 components: - type: Transform pos: 16.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18173 + - uid: 18154 components: - type: Transform pos: 26.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18174 + - uid: 18155 components: - type: Transform pos: -0.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 + - 17976 - 113 - - uid: 18175 + - uid: 18156 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 18176 + - uid: 18157 components: - type: Transform pos: 4.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17973 + - 17935 + - 17955 - 95 - 79 - - uid: 18177 + - uid: 18158 components: - type: Transform pos: 4.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18178 + - uid: 18159 components: - type: Transform pos: 12.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18179 + - uid: 18160 components: - type: Transform pos: -1.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18180 + - uid: 18161 components: - type: Transform pos: 15.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17988 + - 17908 + - 17970 - 117 - - uid: 18181 + - uid: 18162 components: - type: Transform pos: 91.5,15.5 @@ -140810,7 +140831,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18182 + - uid: 18163 components: - type: Transform pos: -12.5,-44.5 @@ -140819,119 +140840,119 @@ entities: deviceLists: - 108 - 110 - - uid: 18183 + - uid: 18164 components: - type: Transform pos: 16.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18184 + - uid: 18165 components: - type: Transform pos: 15.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 18009 + - 17938 + - 17991 - 65 - 118 - - uid: 18185 + - uid: 18166 components: - type: Transform pos: 7.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18186 + - uid: 18167 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 18187 + - uid: 18168 components: - type: Transform pos: -16.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 - - 18007 + - 17942 + - 17989 - 124 - 65 - - uid: 18188 + - uid: 18169 components: - type: Transform pos: -7.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18189 + - uid: 18170 components: - type: Transform pos: 18.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18190 + - uid: 18171 components: - type: Transform pos: -8.5,43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18191 + - uid: 18172 components: - type: Transform pos: -43.5,-27.5 parent: 2 - - uid: 18192 + - uid: 18173 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 18193 + - uid: 18174 components: - type: Transform pos: 6.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18194 + - uid: 18175 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 18195 + - uid: 18176 components: - type: Transform pos: 15.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 - - uid: 18196 + - 17919 + - uid: 18177 components: - type: Transform pos: 92.5,15.5 @@ -140939,96 +140960,96 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18197 + - uid: 18178 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18198 + - uid: 18179 components: - type: Transform pos: 5.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17990 + - 17908 + - 17972 - 117 - - uid: 18199 + - uid: 18180 components: - type: Transform pos: 15.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 - - uid: 18200 + - 17919 + - uid: 18181 components: - type: Transform pos: -16.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18201 + - uid: 18182 components: - type: Transform pos: -1.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18202 + - uid: 18183 components: - type: Transform pos: 19.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18203 + - uid: 18184 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18204 + - uid: 18185 components: - type: Transform pos: 9.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 18205 + - uid: 18186 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18206 + - uid: 18187 components: - type: Transform pos: -59.5,14.5 @@ -141036,50 +141057,50 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18207 + - uid: 18188 components: - type: Transform pos: -18.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18208 + - uid: 18189 components: - type: Transform pos: -18.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18209 + - uid: 18190 components: - type: Transform pos: -8.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18210 + - uid: 18191 components: - type: Transform pos: -12.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18211 + - uid: 18192 components: - type: Transform rot: -1.5707963267948966 rad @@ -141087,203 +141108,203 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18003 - - 18004 - - uid: 18212 + - 17985 + - 17986 + - uid: 18193 components: - type: Transform pos: 17.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18213 + - uid: 18194 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 18214 + - uid: 18195 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - uid: 18215 + - uid: 18196 components: - type: Transform pos: 19.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 18216 + - uid: 18197 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 18217 + - uid: 18198 components: - type: Transform pos: -16.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 - - 18007 + - 17942 + - 17989 - 124 - 65 - - uid: 18218 + - uid: 18199 components: - type: Transform pos: 19.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 18219 + - uid: 18200 components: - type: Transform pos: -13.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18220 + - uid: 18201 components: - type: Transform pos: -16.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18221 + - uid: 18202 components: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 18222 + - uid: 18203 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17951 + - 17916 + - 17933 - 53 - - uid: 18223 + - uid: 18204 components: - type: Transform pos: -28.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18224 + - uid: 18205 components: - type: Transform pos: -28.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18225 + - uid: 18206 components: - type: Transform pos: -20.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18226 + - uid: 18207 components: - type: Transform pos: -19.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18227 + - uid: 18208 components: - type: Transform pos: 28.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18228 + - uid: 18209 components: - type: Transform pos: 26.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18229 + - uid: 18210 components: - type: Transform pos: 27.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18230 + - uid: 18211 components: - type: Transform pos: -20.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18231 + - uid: 18212 components: - type: Transform pos: -2.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - 87 - - uid: 18232 + - uid: 18213 components: - type: Transform pos: 26.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18233 + - uid: 18214 components: - type: Transform pos: -20.5,-25.5 @@ -141291,47 +141312,47 @@ entities: - type: DeviceNetwork deviceLists: - 107 - - uid: 18234 + - uid: 18215 components: - type: Transform pos: -25.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17950 + - 17916 + - 17932 - 53 - - uid: 18235 + - uid: 18216 components: - type: Transform pos: -39.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18236 + - uid: 18217 components: - type: Transform pos: -19.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18237 + - uid: 18218 components: - type: Transform pos: -7.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18238 + - uid: 18219 components: - type: Transform rot: 1.5707963267948966 rad @@ -141339,18 +141360,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18239 + - uid: 18220 components: - type: Transform pos: -19.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18240 + - uid: 18221 components: - type: Transform rot: 1.5707963267948966 rad @@ -141358,85 +141379,85 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18241 + - uid: 18222 components: - type: Transform pos: 0.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18242 + - uid: 18223 components: - type: Transform pos: -12.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - uid: 18243 + - 17940 + - uid: 18224 components: - type: Transform pos: -20.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18244 + - uid: 18225 components: - type: Transform pos: -20.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18245 + - uid: 18226 components: - type: Transform pos: -16.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18246 + - uid: 18227 components: - type: Transform pos: -20.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18247 + - uid: 18228 components: - type: Transform pos: -39.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18248 + - uid: 18229 components: - type: Transform pos: -1.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18249 + - uid: 18230 components: - type: Transform rot: 1.5707963267948966 rad @@ -141444,20 +141465,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18250 + - uid: 18231 components: - type: Transform pos: -16.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18251 + - uid: 18232 components: - type: Transform pos: -13.5,-44.5 @@ -141466,43 +141487,43 @@ entities: deviceLists: - 108 - 110 - - uid: 18252 + - uid: 18233 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 87 - 117 - - uid: 18253 + - uid: 18234 components: - type: Transform pos: 1.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 87 - 117 - - uid: 18254 + - uid: 18235 components: - type: Transform pos: -23.5,51.5 parent: 2 - - uid: 18255 + - uid: 18236 components: - type: Transform pos: -19.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18256 + - uid: 18237 components: - type: Transform pos: -14.5,-44.5 @@ -141511,7 +141532,7 @@ entities: deviceLists: - 108 - 110 - - uid: 18257 + - uid: 18238 components: - type: Transform rot: 3.141592653589793 rad @@ -141519,20 +141540,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - uid: 18258 + - 17955 + - uid: 18239 components: - type: Transform pos: 17.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18259 + - uid: 18240 components: - type: Transform pos: 49.5,12.5 @@ -141540,7 +141561,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 18260 + - uid: 18241 components: - type: Transform rot: 3.141592653589793 rad @@ -141548,21 +141569,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18261 + - uid: 18242 components: - type: Transform pos: 19.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18262 + - uid: 18243 components: - type: Transform rot: 3.141592653589793 rad @@ -141570,17 +141591,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18263 + - uid: 18244 components: - type: Transform pos: -12.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 - - uid: 18264 + - 17978 + - uid: 18245 components: - type: Transform rot: -1.5707963267948966 rad @@ -141588,107 +141609,107 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 - - 18005 + - 17984 + - 17987 - 106 - - uid: 18265 + - uid: 18246 components: - type: Transform pos: 5.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17973 + - 17935 + - 17955 - 95 - 79 - - uid: 18266 + - uid: 18247 components: - type: Transform pos: 7.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17973 + - 17936 + - 17955 - 95 - 79 - - uid: 18267 + - uid: 18248 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18268 + - uid: 18249 components: - type: Transform pos: -19.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18269 + - uid: 18250 components: - type: Transform pos: -18.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18270 + - uid: 18251 components: - type: Transform pos: -0.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18271 + - uid: 18252 components: - type: Transform pos: -17.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18272 + - uid: 18253 components: - type: Transform pos: -1.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18273 + - uid: 18254 components: - type: Transform pos: -8.5,42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18274 + - uid: 18255 components: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 18275 + - uid: 18256 components: - type: Transform pos: 48.5,23.5 @@ -141697,7 +141718,7 @@ entities: deviceLists: - 90 - 91 - - uid: 18276 + - uid: 18257 components: - type: Transform rot: 3.141592653589793 rad @@ -141705,9 +141726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18277 + - uid: 18258 components: - type: Transform rot: 3.141592653589793 rad @@ -141715,276 +141736,276 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18278 + - uid: 18259 components: - type: Transform pos: 26.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18279 + - uid: 18260 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18280 + - uid: 18261 components: - type: Transform pos: 15.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17988 + - 17908 + - 17970 - 117 - - uid: 18281 + - uid: 18262 components: - type: Transform pos: 19.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18282 + - uid: 18263 components: - type: Transform pos: -24.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17934 + - 17932 + - 17916 - 53 - - uid: 18283 + - uid: 18264 components: - type: Transform pos: -2.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - 87 - - uid: 18284 + - uid: 18265 components: - type: Transform pos: 15.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18285 + - uid: 18266 components: - type: Transform pos: -18.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18286 + - uid: 18267 components: - type: Transform pos: -13.5,48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 18012 + - 17949 + - 17994 - 77 - - uid: 18287 + - uid: 18268 components: - type: Transform pos: -13.5,50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 18012 + - 17949 + - 17994 - 77 - - uid: 18288 + - uid: 18269 components: - type: Transform pos: -39.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18289 + - uid: 18270 components: - type: Transform pos: 2.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17990 + - 17974 + - 17972 - 117 - - uid: 18290 + - uid: 18271 components: - type: Transform pos: -50.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18291 + - uid: 18272 components: - type: Transform pos: 19.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18292 + - uid: 18273 components: - type: Transform pos: 5.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18293 + - uid: 18274 components: - type: Transform pos: -28.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18294 + - uid: 18275 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 18295 + - uid: 18276 components: - type: Transform pos: -16.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18296 + - uid: 18277 components: - type: Transform pos: -20.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18297 + - uid: 18278 components: - type: Transform pos: -18.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18298 + - 17943 + - 17933 + - uid: 18279 components: - type: Transform pos: 9.5,63.5 parent: 2 - - uid: 18299 + - uid: 18280 components: - type: Transform pos: -1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17993 - - 17994 + - 17975 + - 17976 - 113 - - uid: 18300 + - uid: 18281 components: - type: Transform pos: 12.5,43.5 parent: 2 - - uid: 18301 + - uid: 18282 components: - type: Transform pos: -43.5,-28.5 parent: 2 - - uid: 18302 + - uid: 18283 components: - type: Transform pos: 15.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 18009 + - 17938 + - 17991 - 65 - 118 - - uid: 18303 + - uid: 18284 components: - type: Transform pos: 10.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 + - 17957 - 79 - - uid: 18304 + - uid: 18285 components: - type: Transform pos: 19.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18305 + - uid: 18286 components: - type: Transform pos: -14.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - uid: 18306 + - 17940 + - uid: 18287 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18307 + - uid: 18288 components: - type: Transform rot: 3.141592653589793 rad @@ -141992,61 +142013,61 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 18308 + - uid: 18289 components: - type: Transform pos: -8.5,41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18309 + - uid: 18290 components: - type: Transform pos: 12.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17977 + - 17957 + - 17959 - 79 - - uid: 18310 + - uid: 18291 components: - type: Transform pos: 19.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18311 + - uid: 18292 components: - type: Transform pos: -18.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18312 + - uid: 18293 components: - type: Transform pos: -17.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18313 + - uid: 18294 components: - type: Transform rot: 3.141592653589793 rad @@ -142054,9 +142075,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 18314 + - uid: 18295 components: - type: Transform pos: 52.5,20.5 @@ -142065,134 +142086,134 @@ entities: deviceLists: - 89 - 91 - - uid: 18315 + - uid: 18296 components: - type: Transform pos: 15.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18316 + - uid: 18297 components: - type: Transform pos: -20.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18317 + - uid: 18298 components: - type: Transform pos: 19.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18318 + - uid: 18299 components: - type: Transform pos: -17.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18319 + - 17943 + - 17933 + - uid: 18300 components: - type: Transform pos: 0.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17993 - - 17994 + - 17975 + - 17976 - 113 - - uid: 18320 + - uid: 18301 components: - type: Transform pos: 19.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18321 + - uid: 18302 components: - type: Transform pos: -44.5,18.5 parent: 2 - - uid: 18322 + - uid: 18303 components: - type: Transform pos: -17.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18323 + - uid: 18304 components: - type: Transform pos: 11.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18324 + - uid: 18305 components: - type: Transform pos: 16.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18325 + - uid: 18306 components: - type: Transform pos: 25.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17936 + - 17918 - 39 - - uid: 18326 + - uid: 18307 components: - type: Transform pos: -0.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18327 + - uid: 18308 components: - type: Transform pos: -5.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18328 + - uid: 18309 components: - type: Transform rot: 3.141592653589793 rad @@ -142200,63 +142221,63 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 18329 + - uid: 18310 components: - type: Transform pos: 11.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - uid: 18330 + - 17908 + - uid: 18311 components: - type: Transform pos: -23.5,50.5 parent: 2 - - uid: 18331 + - uid: 18312 components: - type: Transform pos: -8.5,39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18332 + - uid: 18313 components: - type: Transform pos: -17.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18333 + - uid: 18314 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18334 + - uid: 18315 components: - type: Transform pos: -7.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18335 + - uid: 18316 components: - type: Transform rot: -1.5707963267948966 rad @@ -142264,10 +142285,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 - - 18003 + - 17987 + - 17985 - 106 - - uid: 18336 + - uid: 18317 components: - type: Transform rot: 3.141592653589793 rad @@ -142275,10 +142296,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - 17938 + - 17992 + - 17920 - 101 - - uid: 18337 + - uid: 18318 components: - type: Transform rot: 3.141592653589793 rad @@ -142286,82 +142307,82 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 18338 + - uid: 18319 components: - type: Transform pos: 18.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18339 + - uid: 18320 components: - type: Transform pos: 6.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18340 + - uid: 18321 components: - type: Transform pos: 18.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18341 + - uid: 18322 components: - type: Transform pos: 17.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18342 + - uid: 18323 components: - type: Transform pos: 8.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17973 + - 17936 + - 17955 - 95 - 79 - - uid: 18343 + - uid: 18324 components: - type: Transform pos: 6.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18344 + - uid: 18325 components: - type: Transform pos: 16.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18345 + - uid: 18326 components: - type: Transform rot: 3.141592653589793 rad @@ -142369,38 +142390,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - 17938 + - 17992 + - 17920 - 101 - - uid: 18346 + - uid: 18327 components: - type: Transform pos: -18.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18347 + - uid: 18328 components: - type: Transform pos: 26.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18348 + - uid: 18329 components: - type: Transform pos: 9.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 18349 + - uid: 18330 components: - type: Transform pos: -57.5,16.5 @@ -142408,126 +142429,126 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18350 + - uid: 18331 components: - type: Transform pos: 18.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18351 + - uid: 18332 components: - type: Transform pos: 25.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17936 + - 17918 - 39 - - uid: 18352 + - uid: 18333 components: - type: Transform pos: 38.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 18353 + - uid: 18334 components: - type: Transform pos: 38.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 18354 + - uid: 18335 components: - type: Transform pos: -17.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18355 + - uid: 18336 components: - type: Transform pos: -19.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18356 + - uid: 18337 components: - type: Transform pos: -20.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17951 + - 17916 + - 17933 - 53 - - uid: 18357 + - uid: 18338 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 18358 + - uid: 18339 components: - type: Transform pos: -19.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18359 + - 17943 + - 17933 + - uid: 18340 components: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 18360 + - uid: 18341 components: - type: Transform pos: 19.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18361 + - uid: 18342 components: - type: Transform pos: 26.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18362 + - uid: 18343 components: - type: Transform pos: 15.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17974 - - 17977 + - 17956 + - 17959 - 79 - - uid: 18363 + - uid: 18344 components: - type: Transform pos: 49.5,16.5 @@ -142536,52 +142557,52 @@ entities: deviceLists: - 89 - 90 - - uid: 18364 + - uid: 18345 components: - type: Transform pos: -17.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18365 + - uid: 18346 components: - type: Transform pos: -20.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18366 + - uid: 18347 components: - type: Transform pos: 15.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18367 + - uid: 18348 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18368 + - uid: 18349 components: - type: Transform pos: 2.5,-59.5 parent: 2 - - uid: 18369 + - uid: 18350 components: - type: Transform pos: 5.5,-62.5 @@ -142589,48 +142610,48 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18370 + - uid: 18351 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 18371 + - uid: 18352 components: - type: Transform pos: 3.5,-65.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18372 + - uid: 18353 components: - type: Transform pos: 3.5,-66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18373 + - uid: 18354 components: - type: Transform pos: 3.5,-74.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18374 + - uid: 18355 components: - type: Transform pos: 3.5,-75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18375 + - uid: 18356 components: - type: Transform pos: 5.5,-78.5 @@ -142638,7 +142659,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18376 + - uid: 18357 components: - type: Transform pos: 7.5,-76.5 @@ -142646,7 +142667,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18377 + - uid: 18358 components: - type: Transform pos: 7.5,-74.5 @@ -142654,7 +142675,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18378 + - uid: 18359 components: - type: Transform pos: 5.5,-72.5 @@ -142662,7 +142683,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18379 + - uid: 18360 components: - type: Transform pos: 60.5,25.5 @@ -142670,7 +142691,7 @@ entities: - type: DeviceNetwork deviceLists: - 91 - - uid: 18380 + - uid: 18361 components: - type: Transform rot: -1.5707963267948966 rad @@ -142678,9 +142699,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 117 - - uid: 18381 + - uid: 18362 components: - type: Transform pos: 48.5,22.5 @@ -142689,67 +142710,67 @@ entities: deviceLists: - 90 - 91 - - uid: 18382 + - uid: 18363 components: - type: Transform pos: -117.5,20.5 parent: 2 - - uid: 18383 + - uid: 18364 components: - type: Transform pos: -119.5,20.5 parent: 2 - - uid: 18384 + - uid: 18365 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 18385 + - uid: 18366 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 18386 + - uid: 18367 components: - type: Transform pos: -117.5,27.5 parent: 2 - - uid: 18387 + - uid: 18368 components: - type: Transform pos: -119.5,27.5 parent: 2 - - uid: 18388 + - uid: 18369 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 18389 + - uid: 18370 components: - type: Transform pos: -120.5,39.5 parent: 2 - - uid: 18390 + - uid: 18371 components: - type: Transform pos: -116.5,40.5 parent: 2 - - uid: 18391 + - uid: 18372 components: - type: Transform pos: -116.5,39.5 parent: 2 - - uid: 18392 + - uid: 18373 components: - type: Transform pos: -119.5,44.5 parent: 2 - - uid: 18393 + - uid: 18374 components: - type: Transform pos: -117.5,44.5 parent: 2 - - uid: 18394 + - uid: 18375 components: - type: Transform pos: 79.5,9.5 @@ -142757,7 +142778,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18395 + - uid: 18376 components: - type: Transform pos: 75.5,9.5 @@ -142765,7 +142786,7 @@ entities: - type: DeviceNetwork deviceLists: - 94 - - uid: 18396 + - uid: 18377 components: - type: Transform pos: 93.5,15.5 @@ -142773,12 +142794,12 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18397 + - uid: 18378 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 18398 + - uid: 18379 components: - type: Transform pos: 57.5,20.5 @@ -142787,59 +142808,59 @@ entities: deviceLists: - 89 - 91 - - uid: 18399 + - uid: 18380 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 - - uid: 18400 + - uid: 18381 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 - - uid: 18401 + - uid: 18382 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-42.5 parent: 2 - - uid: 18402 + - uid: 18383 components: - type: Transform pos: -13.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18403 + - uid: 18384 components: - type: Transform pos: -14.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18404 + - uid: 18385 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 18405 + - uid: 18386 components: - type: Transform pos: 90.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18406 + - uid: 18387 components: - type: Transform rot: 3.141592653589793 rad @@ -142847,10 +142868,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17942 + - 17926 + - 17924 - 56 - - uid: 18407 + - uid: 18388 components: - type: Transform rot: 3.141592653589793 rad @@ -142858,9 +142879,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 + - 17926 - 56 - - uid: 18408 + - uid: 18389 components: - type: Transform rot: 3.141592653589793 rad @@ -142868,9 +142889,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18409 + - uid: 18390 components: - type: Transform rot: 3.141592653589793 rad @@ -142878,9 +142899,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18410 + - uid: 18391 components: - type: Transform rot: 3.141592653589793 rad @@ -142888,9 +142909,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18411 + - uid: 18392 components: - type: Transform rot: 3.141592653589793 rad @@ -142898,10 +142919,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18412 + - uid: 18393 components: - type: Transform rot: 3.141592653589793 rad @@ -142909,10 +142930,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18413 + - uid: 18394 components: - type: Transform rot: 3.141592653589793 rad @@ -142920,10 +142941,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18414 + - uid: 18395 components: - type: Transform rot: 3.141592653589793 rad @@ -142931,16 +142952,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18415 + - uid: 18396 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,55.5 parent: 2 - - uid: 18416 + - uid: 18397 components: - type: Transform rot: 3.141592653589793 rad @@ -142948,10 +142969,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17947 - - 17944 + - 17929 + - 17926 - 58 - - uid: 18417 + - uid: 18398 components: - type: Transform rot: 3.141592653589793 rad @@ -142959,10 +142980,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17947 - - 17946 + - 17929 + - 17928 - 58 - - uid: 18418 + - uid: 18399 components: - type: Transform rot: 3.141592653589793 rad @@ -142970,10 +142991,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17941 + - 17926 + - 17923 - 59 - - uid: 18419 + - uid: 18400 components: - type: Transform rot: 3.141592653589793 rad @@ -142981,9 +143002,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18420 + - uid: 18401 components: - type: Transform rot: 3.141592653589793 rad @@ -142991,9 +143012,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18421 + - uid: 18402 components: - type: Transform rot: 3.141592653589793 rad @@ -143001,9 +143022,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 69 - - uid: 18422 + - uid: 18403 components: - type: Transform rot: 3.141592653589793 rad @@ -143011,17 +143032,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 69 - - uid: 18423 + - uid: 18404 components: - type: Transform pos: -45.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - uid: 18424 + - 17930 + - uid: 18405 components: - type: Transform rot: 3.141592653589793 rad @@ -143030,7 +143051,7 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18425 + - uid: 18406 components: - type: Transform rot: 3.141592653589793 rad @@ -143039,7 +143060,7 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18426 + - uid: 18407 components: - type: Transform rot: 3.141592653589793 rad @@ -143048,317 +143069,317 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18427 + - uid: 18408 components: - type: Transform pos: 90.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18428 + - uid: 18409 components: - type: Transform pos: 90.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18429 + - uid: 18410 components: - type: Transform pos: 15.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18009 + - 17991 - 65 - 118 - - uid: 39199 + - uid: 39026 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39200 + - 39022 + - 38413 + - uid: 39027 components: - type: Transform pos: 0.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39196 - - 38585 - - uid: 39201 + - 39023 + - 38412 + - uid: 39028 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39202 + - 39022 + - 38413 + - uid: 39029 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39203 + - 39022 + - 38413 + - uid: 39030 components: - type: Transform pos: -1.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39196 - - 38585 - - uid: 39204 + - 39023 + - 38412 + - uid: 39031 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39197 - - uid: 39205 + - 39024 + - uid: 39032 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39197 - - uid: 39206 + - 39024 + - uid: 39033 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39198 - - 38585 - - uid: 39207 + - 39025 + - 38412 + - uid: 39034 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39198 - - 38585 + - 39025 + - 38412 - proto: Fireplace entities: - - uid: 18430 + - uid: 18411 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 18431 + - uid: 18412 components: - type: Transform pos: -66.5,62.5 parent: 2 - - uid: 18432 + - uid: 18413 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 18433 + - uid: 18414 components: - type: Transform pos: 74.5,-36.5 parent: 2 - - uid: 18434 + - uid: 18415 components: - type: Transform pos: -58.5,-47.5 parent: 2 - proto: Flare entities: - - uid: 39208 + - uid: 39035 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,18.5 - parent: 38584 - - uid: 39209 + parent: 38411 + - uid: 39036 components: - type: Transform pos: -21.5,14.5 - parent: 38584 + parent: 38411 - proto: Flash entities: - - uid: 18435 + - uid: 18416 components: - type: Transform pos: -2.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 18436 + - uid: 18417 components: - type: Transform pos: -2.4961772,18.561342 parent: 2 - type: Physics canCollide: False - - uid: 18437 + - uid: 18418 components: - type: Transform pos: 6.5070233,-63.406696 parent: 2 - - uid: 39210 + - uid: 39037 components: - type: Transform pos: 11.573968,-1.4984436 - parent: 38584 + parent: 38411 - proto: FlashlightLantern entities: - - uid: 18438 + - uid: 18419 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 10.564044,-11.592889 parent: 2 - - uid: 18439 + - uid: 18420 components: - type: Transform pos: -21.577547,-20.497307 parent: 2 - type: Physics canCollide: False - - uid: 18440 + - uid: 18421 components: - type: Transform pos: -41.430576,-13.417048 parent: 2 - type: Physics canCollide: False - - uid: 18441 + - uid: 18422 components: - type: Transform pos: -32.45189,8.994322 parent: 2 - - uid: 18442 + - uid: 18423 components: - type: Transform pos: 43.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 18443 + - uid: 18424 components: - type: Transform pos: -54.540287,-4.510069 parent: 2 - type: Physics canCollide: False - - uid: 18444 + - uid: 18425 components: - type: Transform pos: -31.482824,-41.00041 parent: 2 - - uid: 18445 + - uid: 18426 components: - type: Transform pos: -24.546297,-21.591057 parent: 2 - type: Physics canCollide: False - - uid: 39211 + - uid: 39038 components: - type: Transform pos: -5.4909115,18.430878 - parent: 38584 - - uid: 39212 + parent: 38411 + - uid: 39039 components: - type: Transform pos: -5.623672,18.60788 - parent: 38584 + parent: 38411 - proto: FlippoLighter entities: - - uid: 1258 - components: - - type: Transform - pos: -60.662537,-23.4141 - parent: 2 - - uid: 14518 + - uid: 14460 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 18427 + components: + - type: Transform + pos: -60.662537,-23.4141 + parent: 2 - proto: Floodlight entities: - - uid: 39213 + - uid: 39040 components: - type: Transform pos: -10.5,36.5 - parent: 38584 + parent: 38411 - proto: FloodlightBroken entities: - - uid: 18446 + - uid: 18428 components: - type: Transform pos: -43.375755,-37.271347 parent: 2 - - uid: 18447 + - uid: 18429 components: - type: Transform pos: 45.04216,-33.29468 parent: 2 - - uid: 18448 + - uid: 18430 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -55.49322,-22.298454 parent: 2 - - uid: 18449 + - uid: 18431 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.31192,-35.506004 parent: 2 - - uid: 18450 + - uid: 18432 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.671295,-35.45913 parent: 2 - - uid: 39214 + - uid: 39041 components: - type: Transform pos: -6.5,21.5 - parent: 38584 - - uid: 39215 + parent: 38411 + - uid: 39042 components: - type: Transform pos: -2.5,13.5 - parent: 38584 - - uid: 39216 + parent: 38411 + - uid: 39043 components: - type: Transform pos: -6.5,31.5 - parent: 38584 + parent: 38411 - proto: FloorDrain entities: - - uid: 18451 + - uid: 18433 components: - type: Transform rot: -1.5707963267948966 rad @@ -143366,49 +143387,49 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18452 + - uid: 18434 components: - type: Transform pos: 93.5,6.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18453 + - uid: 18435 components: - type: Transform pos: 97.5,-2.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18454 + - uid: 18436 components: - type: Transform pos: 21.5,-14.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18455 + - uid: 18437 components: - type: Transform pos: 6.5,-49.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18456 + - uid: 18438 components: - type: Transform pos: -6.5,46.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18457 + - uid: 18439 components: - type: Transform pos: 5.5,-30.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18459 + - uid: 18440 components: - type: Transform rot: 1.5707963267948966 rad @@ -143416,21 +143437,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18460 + - uid: 18441 components: - type: Transform pos: 3.5,51.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18461 + - uid: 18442 components: - type: Transform pos: 9.5,-50.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18462 + - uid: 18443 components: - type: Transform rot: 1.5707963267948966 rad @@ -143438,7 +143459,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18463 + - uid: 18444 components: - type: Transform rot: 1.5707963267948966 rad @@ -143446,14 +143467,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18464 + - uid: 18445 components: - type: Transform pos: 5.5,-33.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18465 + - uid: 18446 components: - type: Transform rot: -1.5707963267948966 rad @@ -143461,7 +143482,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18466 + - uid: 18447 components: - type: Transform rot: -1.5707963267948966 rad @@ -143469,7 +143490,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 37916 + - uid: 18448 components: - type: Transform rot: 3.141592653589793 rad @@ -143477,235 +143498,235 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 39217 + - uid: 39044 components: - type: Transform pos: -24.5,27.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - - uid: 39218 + - uid: 39045 components: - type: Transform pos: -12.5,13.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - - uid: 39219 + - uid: 39046 components: - type: Transform pos: 3.5,-9.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - proto: FloorWaterEntity entities: - - uid: 18467 + - uid: 18449 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,56.5 parent: 2 - - uid: 18468 + - uid: 18450 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,57.5 parent: 2 - - uid: 18469 + - uid: 18451 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,58.5 parent: 2 - - uid: 18470 + - uid: 18452 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,58.5 parent: 2 - - uid: 18471 + - uid: 18453 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,58.5 parent: 2 - - uid: 18472 + - uid: 18454 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,57.5 parent: 2 - - uid: 18473 + - uid: 18455 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,56.5 parent: 2 - - uid: 18474 + - uid: 18456 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,57.5 parent: 2 - - uid: 18475 + - uid: 18457 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,56.5 parent: 2 - - uid: 18476 + - uid: 18458 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,40.5 parent: 2 - - uid: 18477 + - uid: 18459 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,41.5 parent: 2 - - uid: 18478 + - uid: 18460 components: - type: Transform pos: -52.5,-42.5 parent: 2 - - uid: 18485 + - uid: 18461 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 - - uid: 18486 + - uid: 18462 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,42.5 parent: 2 - - uid: 18487 + - uid: 18463 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,41.5 parent: 2 - - uid: 18526 + - uid: 18464 components: - type: Transform pos: -51.5,-42.5 parent: 2 - proto: FloraGreyStalagmite2 entities: - - uid: 39220 + - uid: 39047 components: - type: Transform pos: -22.5,12.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite3 entities: - - uid: 39221 + - uid: 39048 components: - type: Transform pos: -17.5,18.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite5 entities: - - uid: 39222 + - uid: 39049 components: - type: Transform pos: -17.5,15.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite6 entities: - - uid: 39223 + - uid: 39050 components: - type: Transform pos: -23.5,17.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid01 entities: - - uid: 18534 + - uid: 18465 components: - type: Transform pos: -1.4489589,0.646965 parent: 2 - - uid: 39224 + - uid: 39051 components: - type: Transform pos: -5.5,23.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid02 entities: - - uid: 18535 + - uid: 18466 components: - type: Transform pos: 0.39479113,-1.821785 parent: 2 - - uid: 18536 + - uid: 18467 components: - type: Transform pos: 0.47903633,5.6187086 parent: 2 - - uid: 39225 + - uid: 39052 components: - type: Transform pos: -0.5,20.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid03 entities: - - uid: 39226 + - uid: 39053 components: - type: Transform pos: -6.5,16.5 - parent: 38584 + parent: 38411 - proto: FloraStalagmite3 entities: - - uid: 39227 + - uid: 39054 components: - type: Transform pos: -20.5,18.5 - parent: 38584 + parent: 38411 - proto: FloraStalagmite6 entities: - - uid: 39228 + - uid: 39055 components: - type: Transform pos: -19.5,13.5 - parent: 38584 - - uid: 39229 + parent: 38411 + - uid: 39056 components: - type: Transform pos: -26.5,14.5 - parent: 38584 + parent: 38411 - proto: FloraTree02 entities: - - uid: 18538 + - uid: 18468 components: - type: Transform rot: 3.141592653589793 rad pos: 70.738884,-20.49512 parent: 2 - - uid: 18539 + - uid: 18469 components: - type: Transform pos: 4.0811877,-2.14328 parent: 2 - proto: FloraTree03 entities: - - uid: 18541 + - uid: 18470 components: - type: Transform rot: 3.141592653589793 rad pos: 69.794815,-17.294529 parent: 2 - - uid: 18542 + - uid: 18471 components: - type: Transform pos: -3.0119271,7.6560354 parent: 2 - proto: FloraTree04 entities: - - uid: 18544 + - uid: 18472 components: - type: Transform rot: 3.141592653589793 rad @@ -143713,7 +143734,7 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 18546 + - uid: 18473 components: - type: Transform rot: 3.141592653589793 rad @@ -143721,220 +143742,220 @@ entities: parent: 2 - proto: FloraTree06 entities: - - uid: 18548 + - uid: 18474 components: - type: Transform rot: 3.141592653589793 rad pos: 73.26779,-22.751753 parent: 2 - - uid: 18549 + - uid: 18475 components: - type: Transform pos: 2.3427134,5.0341353 parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 18550 + - uid: 18476 components: - type: Transform pos: 4.112849,2.8949628 parent: 2 - proto: FloraTreeLarge02 entities: - - uid: 18551 + - uid: 18477 components: - type: Transform pos: 2.2234614,7.1702766 parent: 2 - proto: FloraTreeLarge03 entities: - - uid: 18552 + - uid: 18478 components: - type: Transform pos: -4.147752,-4.6437526 parent: 2 - proto: FloraTreeLarge04 entities: - - uid: 18553 + - uid: 18479 components: - type: Transform pos: 3.3740466,-5.392638 parent: 2 - proto: FloraTreeLarge05 entities: - - uid: 18554 + - uid: 18480 components: - type: Transform pos: -4.3138037,2.4245863 parent: 2 - proto: FloraTreeLarge06 entities: - - uid: 18555 + - uid: 18481 components: - type: Transform pos: 2.6967456,-1.0283407 parent: 2 - proto: FoamCutlass entities: - - uid: 18556 + - uid: 18482 components: - type: Transform pos: 63.532574,-25.28283 parent: 2 - proto: FolderSpawner entities: - - uid: 18557 + - uid: 18483 components: - type: Transform pos: -21.40159,-7.2613006 parent: 2 - - uid: 18558 + - uid: 18484 components: - type: Transform pos: -34.63679,-11.336835 parent: 2 - - uid: 18559 + - uid: 18485 components: - type: Transform rot: 3.141593671850739 rad pos: 89.5021,7.0654483 parent: 2 - - uid: 18560 + - uid: 18486 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.53335,5.5966983 parent: 2 - - uid: 18561 + - uid: 18487 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -40.551723,45.58613 parent: 2 - - uid: 18562 + - uid: 18488 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -40.2236,45.64863 parent: 2 - - uid: 39230 + - uid: 39057 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.540835,-3.5897217 - parent: 38584 - - uid: 39231 + parent: 38411 + - uid: 39058 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.46271,-3.4178467 - parent: 38584 + parent: 38411 - proto: FoodApple entities: - - uid: 18563 + - uid: 18489 components: - type: Transform pos: 54.711014,-32.317398 parent: 2 - - uid: 18564 + - uid: 18490 components: - type: Transform pos: 54.06518,-32.306984 parent: 2 - - uid: 18565 + - uid: 18491 components: - type: Transform pos: 54.523514,-32.056984 parent: 2 - - uid: 18566 + - uid: 18492 components: - type: Transform pos: 54.804764,-32.025734 parent: 2 - - uid: 18567 + - uid: 18493 components: - type: Transform pos: 54.148514,-32.015316 parent: 2 - - uid: 18568 + - uid: 18494 components: - type: Transform pos: 54.367264,-32.296566 parent: 2 - - uid: 18569 + - uid: 18495 components: - type: Transform pos: 54.66935,-32.588234 parent: 2 - - uid: 18570 + - uid: 18496 components: - type: Transform pos: 54.336014,-32.598648 parent: 2 - - uid: 18571 + - uid: 18497 components: - type: Transform pos: 54.023514,-32.556984 parent: 2 - - uid: 18572 + - uid: 18498 components: - type: Transform pos: 41.638454,28.788233 parent: 2 - - uid: 18573 + - uid: 18499 components: - type: Transform pos: 41.46658,28.678858 parent: 2 - proto: FoodBakedBunHoney entities: - - uid: 18574 + - uid: 18500 components: - type: Transform pos: -4.476065,0.6295253 parent: 2 - - uid: 18575 + - uid: 18501 components: - type: Transform pos: -4.3433046,0.43778455 parent: 2 - proto: FoodBowlBig entities: - - uid: 18576 + - uid: 18502 components: - type: Transform pos: -33.467182,33.860477 parent: 2 - - uid: 18577 + - uid: 18503 components: - type: Transform pos: -7.465625,19.183668 parent: 2 - proto: FoodBowlBigTrash entities: - - uid: 18578 + - uid: 18504 components: - type: Transform pos: -49.54448,-27.797909 parent: 2 - proto: FoodBoxDonkpocket entities: - - uid: 18579 + - uid: 18505 components: - type: Transform pos: 66.341736,30.67312 parent: 2 - - uid: 18580 + - uid: 18506 components: - type: Transform pos: 66.70111,30.704372 parent: 2 - - uid: 18581 + - uid: 18507 components: - type: Transform pos: -25.508055,-41.314716 parent: 2 - - uid: 18582 + - uid: 18508 components: - type: Transform pos: 22.522692,35.55459 @@ -143943,7 +143964,7 @@ entities: canCollide: False - proto: FoodBoxDonkpocketDink entities: - - uid: 18583 + - uid: 18509 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -143951,39 +143972,39 @@ entities: parent: 2 - proto: FoodBoxDonkpocketHonk entities: - - uid: 18584 + - uid: 18510 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.643364,-41.538574 parent: 2 - - uid: 39232 + - uid: 39059 components: - type: Transform pos: -15.637382,-1.2746582 - parent: 38584 + parent: 38411 - proto: FoodBoxDonkpocketPizza entities: - - uid: 18585 + - uid: 18511 components: - type: Transform pos: 20.50782,65.64438 parent: 2 - - uid: 18586 + - uid: 18512 components: - type: Transform pos: -65.51054,17.856667 parent: 2 - type: Physics canCollide: False - - uid: 18587 + - uid: 18513 components: - type: Transform pos: 40.52972,-63.32987 parent: 2 - type: Physics canCollide: False - - uid: 18588 + - uid: 18514 components: - type: Transform pos: 35.400856,-27.347382 @@ -143992,154 +144013,154 @@ entities: canCollide: False - proto: FoodBoxDonkpocketSpicy entities: - - uid: 18589 + - uid: 18515 components: - type: Transform pos: 74.33829,-50.777576 parent: 2 - proto: FoodBoxDonkpocketStonk entities: - - uid: 18590 + - uid: 18516 components: - type: Transform pos: -41.5,63.5 parent: 2 - proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 39233 + - uid: 39060 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,30.5 - parent: 38584 - - uid: 39234 + parent: 38411 + - uid: 39061 components: - type: Transform pos: -15.371757,-1.3996582 - parent: 38584 + parent: 38411 - proto: FoodBoxDonut entities: - - uid: 18592 + - uid: 18518 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18593 + - uid: 18519 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18594 + - uid: 18520 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18595 + - uid: 18521 components: - type: Transform pos: -27.471212,43.719692 parent: 2 - - uid: 18596 + - uid: 18522 components: - type: Transform pos: -25.321716,-4.558418 parent: 2 - - uid: 18597 + - uid: 18523 components: - type: Transform pos: 25.549309,-3.348259 parent: 2 - - uid: 18598 + - uid: 18524 components: - type: Transform pos: 6.5070233,-67.36797 parent: 2 - - uid: 18599 + - uid: 18525 components: - type: Transform pos: 27.483013,21.55246 parent: 2 - - uid: 18600 + - uid: 18526 components: - type: Transform pos: 27.279888,21.693085 parent: 2 - proto: FoodBoxPizza entities: - - uid: 18601 + - uid: 18527 components: - type: Transform pos: -33.40134,-62.290806 parent: 2 - - uid: 18602 + - uid: 18528 components: - type: Transform pos: -33.511417,-62.455917 parent: 2 - proto: FoodBoxPizzaFilled entities: - - uid: 18603 + - uid: 18529 components: - type: Transform pos: -67.37569,59.683838 parent: 2 - - uid: 18604 + - uid: 18530 components: - type: Transform pos: -23.501062,-14.235786 parent: 2 - - uid: 18605 + - uid: 18531 components: - type: Transform pos: -77.423294,-0.34625316 parent: 2 - - uid: 18606 + - uid: 18532 components: - type: Transform pos: -67.51631,59.699463 parent: 2 - proto: FoodBreadBaguette entities: - - uid: 18607 + - uid: 18533 components: - type: Transform pos: -24.528683,35.149998 parent: 2 - proto: FoodBreadMimana entities: - - uid: 18608 + - uid: 18534 components: - type: Transform pos: -4.516571,46.1589 parent: 2 - proto: FoodBreadMimanaSlice entities: - - uid: 13215 + - uid: 18535 components: - type: Transform pos: -6.252793,26.482012 parent: 2 - proto: FoodBurgerClown entities: - - uid: 18609 + - uid: 18536 components: - type: Transform pos: 48.450497,18.110199 parent: 2 - - uid: 18610 + - uid: 18537 components: - type: Transform pos: 11.430935,-63.542744 parent: 2 - proto: FoodBurgerCorgi entities: - - uid: 18611 + - uid: 18538 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144147,36 +144168,36 @@ entities: parent: 2 - proto: FoodBurgerMime entities: - - uid: 14853 + - uid: 14794 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodCakeApple entities: - - uid: 18616 + - uid: 18539 components: - type: Transform pos: 54.4506,-32.629898 parent: 2 - proto: FoodCakeBirthday entities: - - uid: 39235 + - uid: 39062 components: - type: Transform pos: -14.052798,-5.3416443 - parent: 38584 + parent: 38411 - proto: FoodCakeClownSlice entities: - - uid: 18617 + - uid: 18540 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -45.522625,-67.62831 parent: 2 - - uid: 18618 + - uid: 18541 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144184,29 +144205,29 @@ entities: parent: 2 - proto: FoodCakeSuppermatter entities: - - uid: 18619 + - uid: 18542 components: - type: Transform pos: -55.518852,48.499203 parent: 2 - proto: FoodCakeSuppermatterSlice entities: - - uid: 18620 + - uid: 18543 components: - type: Transform pos: -50.24872,47.597103 parent: 2 - - uid: 18621 + - uid: 18544 components: - type: Transform pos: -50.497658,47.810375 parent: 2 - - uid: 18622 + - uid: 18545 components: - type: Transform pos: -50.675472,47.52601 parent: 2 - - uid: 18623 + - uid: 18546 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144214,7 +144235,7 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 18624 + - uid: 18547 components: - type: Transform rot: -1.5707963267948966 rad @@ -144222,7 +144243,7 @@ entities: parent: 2 - proto: FoodCartHot entities: - - uid: 18625 + - uid: 18548 components: - type: Transform rot: -1.5707963267948966 rad @@ -144230,7 +144251,7 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 18626 + - uid: 18549 components: - type: Transform pos: -31.541601,34.63286 @@ -144239,35 +144260,35 @@ entities: canCollide: False - proto: FoodCondimentBottleHotsauce entities: - - uid: 18627 + - uid: 18550 components: - type: Transform pos: -39.703274,-66.17225 parent: 2 - proto: FoodCondimentPacketBbq entities: - - uid: 18628 + - uid: 18551 components: - type: Transform pos: -33.605064,38.70658 parent: 2 - proto: FoodCondimentPacketCornoil entities: - - uid: 18629 + - uid: 18552 components: - type: Transform pos: -33.32463,38.692204 parent: 2 - proto: FoodCondimentPacketPepper entities: - - uid: 18630 + - uid: 18553 components: - type: Transform pos: -33.498432,33.155624 parent: 2 - proto: FoodCondimentPacketSalt entities: - - uid: 18631 + - uid: 18554 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144275,88 +144296,88 @@ entities: parent: 2 - proto: FoodContainerEgg entities: - - uid: 18632 + - uid: 18555 components: - type: Transform pos: -33.451557,32.773823 parent: 2 - - uid: 18633 + - uid: 18556 components: - type: Transform pos: -29.51509,36.765392 parent: 2 - proto: FoodDonutCaramel entities: - - uid: 18634 + - uid: 18557 components: - type: Transform pos: 29.620113,-2.432455 parent: 2 - proto: FoodDonutJellyHomer entities: - - uid: 18635 + - uid: 18558 components: - type: Transform pos: -33.645515,-67.24581 parent: 2 - proto: FoodDonutPink entities: - - uid: 18636 + - uid: 18559 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -70.59498,-40.395683 parent: 2 - - uid: 18637 + - uid: 18560 components: - type: Transform pos: 53.454067,23.698614 parent: 2 - - uid: 18638 + - uid: 18561 components: - type: Transform pos: 50.629505,-3.0353012 parent: 2 - proto: FoodDonutPoison entities: - - uid: 18639 + - uid: 18562 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -70.37623,-40.176937 parent: 2 - - uid: 18640 + - uid: 18563 components: - type: Transform pos: 53.20498,23.627611 parent: 2 - - uid: 18641 + - uid: 18564 components: - type: Transform pos: 50.409355,-3.1270308 parent: 2 - proto: FoodDonutSpaceman entities: - - uid: 18642 + - uid: 18565 components: - type: Transform pos: -2.7197988,72.480545 parent: 2 - - uid: 18643 + - uid: 18566 components: - type: Transform pos: -33.388676,-67.527115 parent: 2 - proto: FoodDough entities: - - uid: 18644 + - uid: 18567 components: - type: Transform pos: -29.375431,34.56414 parent: 2 - proto: FoodEggBoiled entities: - - uid: 18645 + - uid: 18568 components: - type: MetaData name: совёнок инокентий @@ -144365,14 +144386,14 @@ entities: parent: 2 - proto: FoodEggChickenFertilized entities: - - uid: 18646 + - uid: 18569 components: - type: Transform pos: -32.667824,43.245087 parent: 2 - proto: FoodMealFries entities: - - uid: 18647 + - uid: 18570 components: - type: Transform rot: 6.283185307179586 rad @@ -144380,7 +144401,7 @@ entities: parent: 2 - proto: FoodMealFriesCarrot entities: - - uid: 18648 + - uid: 18571 components: - type: Transform rot: 6.283185307179586 rad @@ -144388,7 +144409,7 @@ entities: parent: 2 - proto: FoodMealFriesCheesy entities: - - uid: 18649 + - uid: 18572 components: - type: Transform rot: 6.283185307179586 rad @@ -144396,75 +144417,75 @@ entities: parent: 2 - proto: FoodMeat entities: - - uid: 15608 + - uid: 15591 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15609 + - uid: 15592 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15610 + - uid: 15593 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15611 + - uid: 15594 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15612 + - uid: 15595 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15613 + - uid: 15596 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15614 + - uid: 15597 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15615 + - uid: 15598 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15616 + - uid: 15599 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18650 + - uid: 18573 components: - type: Transform pos: -31.725548,26.72904 parent: 2 - - uid: 18651 + - uid: 18574 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144472,21 +144493,21 @@ entities: parent: 2 - proto: FoodMeatClown entities: - - uid: 18653 + - uid: 18576 components: - type: Transform - parent: 18652 + parent: 18575 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18654 + - uid: 18577 components: - type: Transform pos: -29.5472,-79.58566 parent: 2 - proto: FoodMeatCooked entities: - - uid: 18655 + - uid: 18578 components: - type: Transform pos: -30.539783,36.68206 @@ -144497,132 +144518,132 @@ entities: sleepingAllowed: False - proto: FoodMeatHuman entities: - - uid: 18658 + - uid: 18579 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -65.22045,-35.470676 parent: 2 - - uid: 18659 + - uid: 18580 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -69.67358,-36.595676 parent: 2 - - uid: 41030 + - uid: 18581 components: - type: Transform pos: -67.97772,-30.514738 parent: 2 - - uid: 41039 + - uid: 18582 components: - type: Transform pos: -66.54023,-22.462637 parent: 2 - - uid: 41040 + - uid: 18583 components: - type: Transform pos: -66.399605,-22.806387 parent: 2 - - uid: 41041 + - uid: 18584 components: - type: Transform pos: -66.993355,-22.368889 parent: 2 - proto: FoodMeatRotten entities: - - uid: 18660 + - uid: 18585 components: - type: Transform pos: 21.585947,68.61313 parent: 2 - - uid: 18661 + - uid: 18586 components: - type: Transform pos: -30.419586,-79.561264 parent: 2 - - uid: 18662 + - uid: 18587 components: - type: Transform pos: -30.6642,-79.73249 parent: 2 - proto: FoodMeatTomato entities: - - uid: 18665 + - uid: 18588 components: - type: Transform pos: -31.45379,-79.47242 parent: 2 - - uid: 18666 + - uid: 18589 components: - type: Transform pos: -31.620064,-79.64918 parent: 2 - proto: FoodMeatWheat entities: - - uid: 18667 + - uid: 18590 components: - type: Transform pos: -28.22093,-72.38955 parent: 2 - - uid: 18668 + - uid: 18591 components: - type: Transform pos: -28.61231,-72.544464 parent: 2 - proto: FoodMeatXeno entities: - - uid: 18669 + - uid: 18592 components: - type: Transform pos: -50.752796,-26.099058 parent: 2 - - uid: 18670 + - uid: 18593 components: - type: Transform pos: -49.815296,-26.74534 parent: 2 - proto: FoodMimana entities: - - uid: 13941 - components: - - type: Transform - pos: -6.3777933,26.669514 - parent: 2 - - uid: 13973 - components: - - type: Transform - pos: -6.205918,26.497637 - parent: 2 - - uid: 14854 + - uid: 14795 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14855 + - uid: 14796 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 18594 + components: + - type: Transform + pos: -6.3777933,26.669514 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -6.205918,26.497637 + parent: 2 - proto: FoodNoodlesSpesslaw entities: - - uid: 18671 + - uid: 18596 components: - type: Transform pos: -4.413063,-63.23705 parent: 2 - proto: FoodPieApple entities: - - uid: 18672 + - uid: 18597 components: - type: Transform pos: 54.10685,-32.119484 parent: 2 - - uid: 18673 + - uid: 18598 components: - type: Transform pos: -30.604101,34.60161 @@ -144631,93 +144652,93 @@ entities: canCollide: False - proto: FoodPieBananaCream entities: - - uid: 18674 + - uid: 18599 components: - type: Transform pos: -40.59948,-69.13702 parent: 2 - - uid: 18675 + - uid: 18600 components: - type: Transform pos: -11.880426,54.523956 parent: 2 - - uid: 18676 + - uid: 18601 components: - type: Transform pos: -11.311705,54.652374 parent: 2 - - uid: 18677 + - uid: 18602 components: - type: Transform pos: -6.3456492,32.831375 parent: 2 - - uid: 18678 + - uid: 18603 components: - type: Transform pos: -11.183283,54.45057 parent: 2 - - uid: 18679 + - uid: 18604 components: - type: Transform pos: -11.586893,54.523956 parent: 2 - - uid: 18680 + - uid: 18605 components: - type: Transform pos: -6.2831492,32.675125 parent: 2 - - uid: 18681 + - uid: 18606 components: - type: Transform pos: -11.715314,54.76245 parent: 2 - - uid: 18682 + - uid: 18607 components: - type: Transform pos: -6.439399,32.597 parent: 2 - - uid: 18683 + - uid: 18608 components: - type: Transform pos: -6.4862742,32.737625 parent: 2 - - uid: 18684 + - uid: 18609 components: - type: Transform pos: -6.5175242,32.643875 parent: 2 - - uid: 18685 + - uid: 18610 components: - type: Transform pos: -6.517524,32.581375 parent: 2 - proto: FoodPieCherry entities: - - uid: 18686 + - uid: 18611 components: - type: Transform pos: 8.512606,-80.31556 parent: 2 - proto: FoodPieFrosty entities: - - uid: 18687 + - uid: 18612 components: - type: Transform pos: -5.4706492,32.64388 parent: 2 - - uid: 18688 + - uid: 18613 components: - type: Transform pos: -5.5487742,32.753254 parent: 2 - - uid: 18689 + - uid: 18614 components: - type: Transform pos: -5.4706492,32.659504 parent: 2 - proto: FoodPineapple entities: - - uid: 18690 + - uid: 18615 components: - type: MetaData desc: Ммм, творческая. @@ -144725,7 +144746,7 @@ entities: - type: Transform pos: 55.338768,-36.278233 parent: 2 - - uid: 18691 + - uid: 18616 components: - type: Transform rot: 1.5707973450558423 rad @@ -144733,95 +144754,95 @@ entities: parent: 2 - proto: FoodPizzaMeat entities: - - uid: 18692 + - uid: 18617 components: - type: Transform pos: -39.03059,-66.221176 parent: 2 - proto: FoodPlateSmall entities: - - uid: 18693 + - uid: 18618 components: - type: Transform pos: 67.441376,27.640116 parent: 2 - - uid: 18694 + - uid: 18619 components: - type: Transform pos: 67.441376,27.796366 parent: 2 - - uid: 18695 + - uid: 18620 components: - type: Transform pos: -24.540524,32.14744 parent: 2 - - uid: 18696 + - uid: 18621 components: - type: Transform pos: 67.441376,27.796366 parent: 2 - - uid: 18697 + - uid: 18622 components: - type: Transform pos: 67.441376,27.733866 parent: 2 - - uid: 18698 + - uid: 18623 components: - type: Transform pos: 67.441376,27.733866 parent: 2 - - uid: 18699 + - uid: 18624 components: - type: Transform pos: 67.441376,27.65574 parent: 2 - - uid: 18700 + - uid: 18625 components: - type: Transform pos: 67.441376,27.56199 parent: 2 - - uid: 18701 + - uid: 18626 components: - type: Transform pos: 67.441376,27.56199 parent: 2 - proto: FoodPlateSmallPlastic entities: - - uid: 18702 + - uid: 18627 components: - type: Transform pos: -24.555004,37.95691 parent: 2 - proto: FoodPlateSmallTrash entities: - - uid: 18703 + - uid: 18628 components: - type: Transform pos: 61.62888,23.479033 parent: 2 - proto: FoodPlateTrash entities: - - uid: 18704 + - uid: 18629 components: - type: Transform pos: 70.42368,22.7589 parent: 2 - - uid: 18705 + - uid: 18630 components: - type: Transform pos: -39.507633,-48.448273 parent: 2 - - uid: 18706 + - uid: 18631 components: - type: Transform pos: -37.521866,-35.583843 parent: 2 - - uid: 18707 + - uid: 18632 components: - type: Transform pos: 19.468113,68.79927 parent: 2 - - uid: 18708 + - uid: 18633 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144829,59 +144850,59 @@ entities: parent: 2 - proto: FoodPoppy entities: - - uid: 18709 + - uid: 18634 components: - type: Transform pos: 26.72148,15.605206 parent: 2 - proto: FoodSnackChips entities: - - uid: 18710 + - uid: 18635 components: - type: Transform pos: -30.542528,-62.437508 parent: 2 - - uid: 18711 + - uid: 18636 components: - type: Transform pos: -30.310146,-62.620964 parent: 2 - - uid: 18712 + - uid: 18637 components: - type: Transform rot: 3.141592653589793 rad pos: -63.706806,18.531712 parent: 2 - - uid: 18713 + - uid: 18638 components: - type: Transform rot: 3.141592653589793 rad pos: -63.97243,18.437962 parent: 2 - - uid: 18714 + - uid: 18639 components: - type: Transform pos: -63.479282,18.606667 parent: 2 - type: Physics canCollide: False - - uid: 18715 + - uid: 18640 components: - type: Transform rot: 6.283185307179586 rad pos: 63.321533,-13.739408 parent: 2 - - uid: 18716 + - uid: 18641 components: - type: Transform pos: 63.731422,-13.6798315 parent: 2 - - uid: 18717 + - uid: 18642 components: - type: Transform pos: 63.731422,-13.3618355 parent: 2 - - uid: 18718 + - uid: 18643 components: - type: Transform rot: 6.283185307179586 rad @@ -144889,54 +144910,54 @@ entities: parent: 2 - proto: FoodSnackChocolate entities: - - uid: 18719 + - uid: 18644 components: - type: Transform rot: 3.141592653589793 rad pos: -22.522848,-43.45425 parent: 2 - - uid: 18720 + - uid: 18645 components: - type: Transform pos: 14.422254,-52.26433 parent: 2 - - uid: 18721 + - uid: 18646 components: - type: Transform pos: 9.564638,7.080452 parent: 2 - - uid: 18722 + - uid: 18647 components: - type: Transform pos: -41.541843,-50.54525 parent: 2 - proto: FoodSnackSemki entities: - - uid: 18723 + - uid: 18648 components: - type: Transform pos: -71.73916,-20.629597 parent: 2 - - uid: 18724 + - uid: 18649 components: - type: Transform pos: -71.34853,-20.504597 parent: 2 - proto: FoodSnackSyndi entities: - - uid: 14898 + - uid: 14833 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18725 + - uid: 18650 components: - type: Transform pos: -45.591347,14.606249 parent: 2 - - uid: 18726 + - uid: 18651 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144944,19 +144965,19 @@ entities: parent: 2 - proto: FoodSoupClown entities: - - uid: 14835 + - uid: 14775 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18727 + - uid: 18652 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 18728 + - uid: 18653 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144964,70 +144985,70 @@ entities: parent: 2 - proto: FoodTartMime entities: - - uid: 18729 + - uid: 18654 components: - type: Transform pos: -6.6746683,26.591387 parent: 2 - proto: FoodTartMimeSlice entities: - - uid: 14856 + - uid: 14797 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodTinBeans entities: - - uid: 18730 + - uid: 18655 components: - type: Transform pos: 33.65059,38.73095 parent: 2 - proto: FoodTinPeachesMaint entities: - - uid: 18731 + - uid: 18656 components: - type: Transform pos: -22.458153,54.69275 parent: 2 - type: Physics canCollide: False - - uid: 18732 + - uid: 18657 components: - type: Transform pos: 24.954596,57.524624 parent: 2 - proto: Football entities: - - uid: 18733 + - uid: 18658 components: - type: Transform pos: -43.695137,-47.651398 parent: 2 - proto: Fork entities: - - uid: 18735 + - uid: 18659 components: - type: Transform pos: -33.404682,37.962914 parent: 2 - proto: ForkPlastic entities: - - uid: 18736 + - uid: 18660 components: - type: Transform rot: 3.141592653589793 rad pos: 64.43857,27.615673 parent: 2 - - uid: 18737 + - uid: 18661 components: - type: Transform rot: 3.141592653589793 rad pos: 64.31357,27.631298 parent: 2 - - uid: 18738 + - uid: 18662 components: - type: Transform rot: 3.141592653589793 rad @@ -145035,7 +145056,7 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 18739 + - uid: 18663 components: - type: Transform rot: 3.141592653589793 rad @@ -145043,47 +145064,47 @@ entities: parent: 2 - proto: GasAnalyzer entities: - - uid: 18740 + - uid: 18664 components: - type: Transform pos: -54.587723,-4.552858 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 18741 + - uid: 18665 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-45.5 parent: 2 - - uid: 18742 + - uid: 18666 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-63.5 parent: 2 - - uid: 18743 + - uid: 18667 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.500008,-50.500046 parent: 2 - - uid: 18744 + - uid: 18668 components: - type: Transform pos: -46.5,-30.5 parent: 2 - - uid: 18745 + - uid: 18669 components: - type: Transform pos: -44.5,-21.5 parent: 2 - - uid: 18746 + - uid: 18670 components: - type: Transform pos: 39.5,-63.5 parent: 2 - - uid: 18747 + - uid: 18671 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -145091,7 +145112,7 @@ entities: parent: 2 - proto: GasFilter entities: - - uid: 18748 + - uid: 18672 components: - type: Transform rot: -1.5707963267948966 rad @@ -145099,62 +145120,62 @@ entities: parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 18749 + - uid: 18673 components: - type: Transform pos: -71.5,41.5 parent: 2 - proto: GasMinerNitrogenStation entities: - - uid: 39236 + - uid: 39063 components: - type: Transform pos: 17.5,2.5 - parent: 38584 + parent: 38411 - proto: GasMinerNitrogenStationLarge entities: - - uid: 18750 + - uid: 18674 components: - type: Transform pos: -71.5,37.5 parent: 2 - proto: GasMinerOxygenStation entities: - - uid: 39237 + - uid: 39064 components: - type: Transform pos: 17.5,4.5 - parent: 38584 + parent: 38411 - proto: GasMinerOxygenStationLarge entities: - - uid: 18751 + - uid: 18675 components: - type: Transform pos: -71.5,33.5 parent: 2 - proto: GasMinerWaterVapor entities: - - uid: 18752 + - uid: 18676 components: - type: Transform pos: -71.5,45.5 parent: 2 - proto: GasMixer entities: - - uid: 18753 + - uid: 18677 components: - type: Transform pos: 78.5,22.5 parent: 2 - type: GasMixer targetPressure: 4500 - - uid: 18754 + - uid: 18678 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-53.5 parent: 2 - - uid: 18755 + - uid: 18679 components: - type: Transform rot: 3.141592653589793 rad @@ -145162,7 +145183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18756 + - uid: 18680 components: - type: Transform rot: 1.5707963267948966 rad @@ -145171,7 +145192,7 @@ entities: - type: GasMixer inletTwoConcentration: 0.78 inletOneConcentration: 0.22 - - uid: 18757 + - uid: 18681 components: - type: Transform pos: -60.5,33.5 @@ -145183,44 +145204,44 @@ entities: color: '#17E8E2FF' - proto: GasMixerFlipped entities: - - uid: 18758 + - uid: 18682 components: - type: Transform pos: -22.5,-52.5 parent: 2 - - uid: 39238 + - uid: 39065 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasOutletInjector entities: - - uid: 18759 + - uid: 18683 components: - type: Transform pos: 75.5,27.5 parent: 2 - - uid: 18760 + - uid: 18684 components: - type: Transform pos: -55.5,53.5 parent: 2 - - uid: 18761 + - uid: 18685 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 - - uid: 18762 + - uid: 18686 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-43.5 parent: 2 - - uid: 18763 + - uid: 18687 components: - type: Transform rot: 1.5707963267948966 rad @@ -145228,7 +145249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18764 + - uid: 18688 components: - type: Transform rot: 1.5707963267948966 rad @@ -145236,7 +145257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18765 + - uid: 18689 components: - type: Transform rot: 1.5707963267948966 rad @@ -145244,7 +145265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18766 + - uid: 18690 components: - type: Transform rot: 1.5707963267948966 rad @@ -145252,7 +145273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18767 + - uid: 18691 components: - type: Transform rot: 1.5707963267948966 rad @@ -145260,7 +145281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18768 + - uid: 18692 components: - type: Transform rot: 1.5707963267948966 rad @@ -145268,7 +145289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18769 + - uid: 18693 components: - type: Transform rot: 1.5707963267948966 rad @@ -145278,7 +145299,7 @@ entities: color: '#FEF101FF' - proto: GasPassiveVent entities: - - uid: 18770 + - uid: 18694 components: - type: Transform rot: -1.5707963267948966 rad @@ -145286,7 +145307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18771 + - uid: 18695 components: - type: Transform rot: 1.5707963267948966 rad @@ -145294,31 +145315,31 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18772 + - uid: 18696 components: - type: Transform pos: -66.5,61.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18773 + - uid: 18697 components: - type: Transform pos: -54.5,53.5 parent: 2 - - uid: 18774 + - uid: 18698 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 - - uid: 18775 + - uid: 18699 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,15.5 parent: 2 - - uid: 18776 + - uid: 18700 components: - type: Transform rot: 1.5707963267948966 rad @@ -145326,7 +145347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18777 + - uid: 18701 components: - type: Transform rot: 1.5707963267948966 rad @@ -145334,7 +145355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18778 + - uid: 18702 components: - type: Transform rot: 1.5707963267948966 rad @@ -145342,7 +145363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18779 + - uid: 18703 components: - type: Transform rot: 1.5707963267948966 rad @@ -145350,7 +145371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18780 + - uid: 18704 components: - type: Transform rot: 1.5707963267948966 rad @@ -145358,7 +145379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18781 + - uid: 18705 components: - type: Transform rot: 1.5707963267948966 rad @@ -145366,7 +145387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18782 + - uid: 18706 components: - type: Transform rot: 1.5707963267948966 rad @@ -145374,7 +145395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18783 + - uid: 18707 components: - type: Transform rot: 1.5707963267948966 rad @@ -145382,7 +145403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18784 + - uid: 18708 components: - type: Transform rot: 1.5707963267948966 rad @@ -145390,7 +145411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18785 + - uid: 18709 components: - type: Transform rot: 1.5707963267948966 rad @@ -145398,40 +145419,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18786 + - uid: 18710 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-45.5 parent: 2 - - uid: 39239 + - uid: 39066 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,4.5 - parent: 38584 - - uid: 39240 + parent: 38411 + - uid: 39067 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 - parent: 38584 - - uid: 39241 + parent: 38411 + - uid: 39068 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,2.5 - parent: 38584 + parent: 38411 - proto: GasPipeBend entities: - - uid: 18787 + - uid: 18711 components: - type: Transform pos: -2.5,50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18788 + - uid: 18712 components: - type: Transform rot: 3.141592653589793 rad @@ -145439,7 +145460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18789 + - uid: 18713 components: - type: Transform rot: -1.5707963267948966 rad @@ -145447,7 +145468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18790 + - uid: 18714 components: - type: Transform rot: 3.141592653589793 rad @@ -145455,14 +145476,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18791 + - uid: 18715 components: - type: Transform pos: -59.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18792 + - uid: 18716 components: - type: Transform rot: 3.141592653589793 rad @@ -145470,7 +145491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18793 + - uid: 18717 components: - type: Transform rot: 3.141592653589793 rad @@ -145478,7 +145499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18794 + - uid: 18718 components: - type: Transform rot: -1.5707963267948966 rad @@ -145486,21 +145507,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18795 + - uid: 18719 components: - type: Transform pos: -52.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18796 + - uid: 18720 components: - type: Transform pos: -53.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18797 + - uid: 18721 components: - type: Transform rot: 3.141592653589793 rad @@ -145508,14 +145529,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18798 + - uid: 18722 components: - type: Transform pos: -58.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18799 + - uid: 18723 components: - type: Transform rot: 1.5707963267948966 rad @@ -145523,7 +145544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18800 + - uid: 18724 components: - type: Transform rot: 1.5707963267948966 rad @@ -145531,7 +145552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18801 + - uid: 18725 components: - type: Transform rot: -1.5707963267948966 rad @@ -145539,7 +145560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18802 + - uid: 18726 components: - type: Transform rot: 1.5707963267948966 rad @@ -145547,7 +145568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18803 + - uid: 18727 components: - type: Transform rot: 1.5707963267948966 rad @@ -145555,21 +145576,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18804 + - uid: 18728 components: - type: Transform pos: -52.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18805 + - uid: 18729 components: - type: Transform pos: -51.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18806 + - uid: 18730 components: - type: Transform rot: 1.5707963267948966 rad @@ -145577,7 +145598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18807 + - uid: 18731 components: - type: Transform rot: 3.141592653589793 rad @@ -145585,7 +145606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18808 + - uid: 18732 components: - type: Transform rot: 1.5707963267948966 rad @@ -145593,7 +145614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18809 + - uid: 18733 components: - type: Transform rot: 3.141592653589793 rad @@ -145601,7 +145622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18810 + - uid: 18734 components: - type: Transform rot: -1.5707963267948966 rad @@ -145609,7 +145630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18811 + - uid: 18735 components: - type: Transform rot: 1.5707963267948966 rad @@ -145617,7 +145638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18812 + - uid: 18736 components: - type: Transform rot: 3.141592653589793 rad @@ -145625,14 +145646,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18813 + - uid: 18737 components: - type: Transform pos: -64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18814 + - uid: 18738 components: - type: Transform rot: 1.5707963267948966 rad @@ -145640,7 +145661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18815 + - uid: 18739 components: - type: Transform rot: 3.141592653589793 rad @@ -145648,7 +145669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18816 + - uid: 18740 components: - type: Transform rot: -1.5707963267948966 rad @@ -145656,7 +145677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18817 + - uid: 18741 components: - type: Transform rot: -1.5707963267948966 rad @@ -145664,7 +145685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18818 + - uid: 18742 components: - type: Transform rot: 3.141592653589793 rad @@ -145672,14 +145693,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18819 + - uid: 18743 components: - type: Transform pos: -60.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18820 + - uid: 18744 components: - type: Transform rot: 3.141592653589793 rad @@ -145687,21 +145708,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18821 + - uid: 18745 components: - type: Transform pos: -61.5,52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18822 + - uid: 18746 components: - type: Transform pos: -59.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18823 + - uid: 18747 components: - type: Transform rot: 3.141592653589793 rad @@ -145709,7 +145730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18824 + - uid: 18748 components: - type: Transform rot: 3.141592653589793 rad @@ -145717,7 +145738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18825 + - uid: 18749 components: - type: Transform rot: 1.5707963267948966 rad @@ -145725,14 +145746,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18826 + - uid: 18750 components: - type: Transform pos: -40.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18827 + - uid: 18751 components: - type: Transform rot: 1.5707963267948966 rad @@ -145740,7 +145761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18828 + - uid: 18752 components: - type: Transform rot: 3.141592653589793 rad @@ -145748,7 +145769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18829 + - uid: 18753 components: - type: Transform rot: 3.141592653589793 rad @@ -145756,7 +145777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18830 + - uid: 18754 components: - type: Transform rot: 3.141592653589793 rad @@ -145764,7 +145785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18831 + - uid: 18755 components: - type: Transform rot: 3.141592653589793 rad @@ -145772,7 +145793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18832 + - uid: 18756 components: - type: Transform rot: 3.141592653589793 rad @@ -145780,7 +145801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18833 + - uid: 18757 components: - type: Transform rot: 3.141592653589793 rad @@ -145788,7 +145809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18834 + - uid: 18758 components: - type: Transform rot: 3.141592653589793 rad @@ -145796,14 +145817,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18835 + - uid: 18759 components: - type: Transform pos: 40.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18836 + - uid: 18760 components: - type: Transform rot: -1.5707963267948966 rad @@ -145811,7 +145832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18837 + - uid: 18761 components: - type: Transform rot: -1.5707963267948966 rad @@ -145819,13 +145840,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18838 + - uid: 18762 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,60.5 parent: 2 - - uid: 18840 + - uid: 18763 components: - type: Transform rot: 3.141592653589793 rad @@ -145833,20 +145854,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18841 + - uid: 18764 components: - type: Transform pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18842 + - uid: 18765 components: - type: Transform rot: 1.5707963267948966 rad pos: -122.5,18.5 parent: 2 - - uid: 18843 + - uid: 18766 components: - type: Transform rot: -1.5707963267948966 rad @@ -145854,7 +145875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18844 + - uid: 18767 components: - type: Transform rot: 1.5707963267948966 rad @@ -145862,21 +145883,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18845 + - uid: 18768 components: - type: Transform pos: 4.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18846 + - uid: 18769 components: - type: Transform pos: 3.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18847 + - uid: 18770 components: - type: Transform rot: 3.141592653589793 rad @@ -145884,7 +145905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18848 + - uid: 18771 components: - type: Transform rot: 3.141592653589793 rad @@ -145892,7 +145913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18849 + - uid: 18772 components: - type: Transform rot: 3.141592653589793 rad @@ -145900,30 +145921,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18850 + - uid: 18773 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,21.5 parent: 2 - - uid: 18851 + - uid: 18774 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,21.5 parent: 2 - - uid: 18852 + - uid: 18775 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,22.5 parent: 2 - - uid: 18853 + - uid: 18776 components: - type: Transform pos: -29.5,-51.5 parent: 2 - - uid: 18854 + - uid: 18777 components: - type: Transform rot: -1.5707963267948966 rad @@ -145931,38 +145952,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18855 + - uid: 18778 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-51.5 parent: 2 - - uid: 18856 + - uid: 18779 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-51.5 parent: 2 - - uid: 18857 + - uid: 18780 components: - type: Transform pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18858 + - uid: 18781 components: - type: Transform pos: 18.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18859 + - uid: 18782 components: - type: Transform pos: -49.5,60.5 parent: 2 - - uid: 18860 + - uid: 18783 components: - type: Transform rot: 3.141592653589793 rad @@ -145970,14 +145991,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18861 + - uid: 18784 components: - type: Transform pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18862 + - uid: 18785 components: - type: Transform rot: 3.141592653589793 rad @@ -145985,14 +146006,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18863 + - uid: 18786 components: - type: Transform pos: -10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18864 + - uid: 18787 components: - type: Transform rot: 3.141592653589793 rad @@ -146000,7 +146021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18865 + - uid: 18788 components: - type: Transform rot: 3.141592653589793 rad @@ -146008,7 +146029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18866 + - uid: 18789 components: - type: Transform rot: -1.5707963267948966 rad @@ -146016,14 +146037,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18867 + - uid: 18790 components: - type: Transform pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18868 + - uid: 18791 components: - type: Transform rot: 3.141592653589793 rad @@ -146031,7 +146052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18869 + - uid: 18792 components: - type: Transform rot: 3.141592653589793 rad @@ -146039,27 +146060,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18870 + - uid: 18793 components: - type: Transform pos: -30.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18871 + - uid: 18794 components: - type: Transform pos: -31.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18872 + - uid: 18795 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,18.5 parent: 2 - - uid: 18873 + - uid: 18796 components: - type: Transform rot: -1.5707963267948966 rad @@ -146067,7 +146088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18874 + - uid: 18797 components: - type: Transform rot: 3.141592653589793 rad @@ -146075,7 +146096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18875 + - uid: 18798 components: - type: Transform rot: -1.5707963267948966 rad @@ -146083,14 +146104,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18876 + - uid: 18799 components: - type: Transform pos: -15.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18877 + - uid: 18800 components: - type: Transform rot: 1.5707963267948966 rad @@ -146098,7 +146119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18878 + - uid: 18801 components: - type: Transform rot: 1.5707963267948966 rad @@ -146106,14 +146127,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18879 + - uid: 18802 components: - type: Transform pos: -14.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18880 + - uid: 18803 components: - type: Transform rot: -1.5707963267948966 rad @@ -146121,7 +146142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18881 + - uid: 18804 components: - type: Transform rot: 3.141592653589793 rad @@ -146129,7 +146150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18882 + - uid: 18805 components: - type: Transform rot: 3.141592653589793 rad @@ -146137,7 +146158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18883 + - uid: 18806 components: - type: Transform rot: -1.5707963267948966 rad @@ -146145,7 +146166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18884 + - uid: 18807 components: - type: Transform rot: -1.5707963267948966 rad @@ -146153,7 +146174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18885 + - uid: 18808 components: - type: Transform rot: 3.141592653589793 rad @@ -146161,7 +146182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18886 + - uid: 18809 components: - type: Transform rot: 1.5707963267948966 rad @@ -146169,7 +146190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18887 + - uid: 18810 components: - type: Transform rot: 3.141592653589793 rad @@ -146177,14 +146198,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18888 + - uid: 18811 components: - type: Transform pos: -10.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18889 + - uid: 18812 components: - type: Transform rot: 1.5707963267948966 rad @@ -146192,7 +146213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18890 + - uid: 18813 components: - type: Transform rot: 3.141592653589793 rad @@ -146200,7 +146221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18891 + - uid: 18814 components: - type: Transform rot: 3.141592653589793 rad @@ -146208,14 +146229,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18892 + - uid: 18815 components: - type: Transform pos: -28.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18893 + - uid: 18816 components: - type: Transform rot: 1.5707963267948966 rad @@ -146223,7 +146244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18894 + - uid: 18817 components: - type: Transform rot: -1.5707963267948966 rad @@ -146231,7 +146252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18895 + - uid: 18818 components: - type: Transform rot: -1.5707963267948966 rad @@ -146239,14 +146260,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18896 + - uid: 18819 components: - type: Transform pos: 7.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18897 + - uid: 18820 components: - type: Transform rot: 1.5707963267948966 rad @@ -146254,7 +146275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18898 + - uid: 18821 components: - type: Transform rot: -1.5707963267948966 rad @@ -146262,7 +146283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18899 + - uid: 18822 components: - type: Transform rot: -1.5707963267948966 rad @@ -146270,14 +146291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18900 + - uid: 18823 components: - type: Transform pos: 5.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18901 + - uid: 18824 components: - type: Transform rot: 1.5707963267948966 rad @@ -146285,7 +146306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18902 + - uid: 18825 components: - type: Transform rot: -1.5707963267948966 rad @@ -146293,7 +146314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18903 + - uid: 18826 components: - type: Transform rot: 1.5707963267948966 rad @@ -146301,7 +146322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18904 + - uid: 18827 components: - type: Transform rot: -1.5707963267948966 rad @@ -146309,7 +146330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18905 + - uid: 18828 components: - type: Transform rot: -1.5707963267948966 rad @@ -146317,7 +146338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18906 + - uid: 18829 components: - type: Transform rot: 1.5707963267948966 rad @@ -146325,7 +146346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18907 + - uid: 18830 components: - type: Transform rot: 1.5707963267948966 rad @@ -146333,7 +146354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18908 + - uid: 18831 components: - type: Transform rot: -1.5707963267948966 rad @@ -146341,7 +146362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18909 + - uid: 18832 components: - type: Transform rot: -1.5707963267948966 rad @@ -146349,14 +146370,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18910 + - uid: 18833 components: - type: Transform pos: 20.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18911 + - uid: 18834 components: - type: Transform rot: 1.5707963267948966 rad @@ -146364,7 +146385,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18912 + - uid: 18835 components: - type: Transform rot: -1.5707963267948966 rad @@ -146372,21 +146393,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18913 + - uid: 18836 components: - type: Transform pos: 28.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18914 + - uid: 18837 components: - type: Transform pos: 20.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18915 + - uid: 18838 components: - type: Transform rot: 3.141592653589793 rad @@ -146394,14 +146415,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18916 + - uid: 18839 components: - type: Transform pos: 22.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18917 + - uid: 18840 components: - type: Transform rot: 3.141592653589793 rad @@ -146409,7 +146430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18918 + - uid: 18841 components: - type: Transform rot: -1.5707963267948966 rad @@ -146417,7 +146438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18919 + - uid: 18842 components: - type: Transform rot: -1.5707963267948966 rad @@ -146425,7 +146446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18920 + - uid: 18843 components: - type: Transform rot: 1.5707963267948966 rad @@ -146433,7 +146454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18921 + - uid: 18844 components: - type: Transform rot: 3.141592653589793 rad @@ -146441,14 +146462,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18922 + - uid: 18845 components: - type: Transform pos: 39.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18923 + - uid: 18846 components: - type: Transform rot: 3.141592653589793 rad @@ -146456,14 +146477,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18924 + - uid: 18847 components: - type: Transform pos: 54.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18925 + - uid: 18848 components: - type: Transform rot: 3.141592653589793 rad @@ -146471,14 +146492,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18926 + - uid: 18849 components: - type: Transform pos: 62.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18927 + - uid: 18850 components: - type: Transform rot: 1.5707963267948966 rad @@ -146486,7 +146507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18928 + - uid: 18851 components: - type: Transform rot: -1.5707963267948966 rad @@ -146494,7 +146515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18929 + - uid: 18852 components: - type: Transform rot: 3.141592653589793 rad @@ -146502,7 +146523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18930 + - uid: 18853 components: - type: Transform rot: 3.141592653589793 rad @@ -146510,7 +146531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18931 + - uid: 18854 components: - type: Transform rot: -1.5707963267948966 rad @@ -146518,7 +146539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18932 + - uid: 18855 components: - type: Transform rot: -1.5707963267948966 rad @@ -146526,7 +146547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18933 + - uid: 18856 components: - type: Transform rot: -1.5707963267948966 rad @@ -146534,7 +146555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18934 + - uid: 18857 components: - type: Transform rot: 1.5707963267948966 rad @@ -146542,7 +146563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18935 + - uid: 18858 components: - type: Transform rot: -1.5707963267948966 rad @@ -146550,7 +146571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18936 + - uid: 18859 components: - type: Transform rot: 1.5707963267948966 rad @@ -146558,7 +146579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18937 + - uid: 18860 components: - type: Transform rot: 1.5707963267948966 rad @@ -146566,7 +146587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18938 + - uid: 18861 components: - type: Transform rot: -1.5707963267948966 rad @@ -146574,7 +146595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18939 + - uid: 18862 components: - type: Transform rot: 1.5707963267948966 rad @@ -146582,7 +146603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18940 + - uid: 18863 components: - type: Transform rot: -1.5707963267948966 rad @@ -146590,7 +146611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18941 + - uid: 18864 components: - type: Transform rot: 3.141592653589793 rad @@ -146598,21 +146619,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18942 + - uid: 18865 components: - type: Transform pos: 38.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18943 + - uid: 18866 components: - type: Transform pos: 41.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18944 + - uid: 18867 components: - type: Transform rot: 3.141592653589793 rad @@ -146620,7 +146641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18945 + - uid: 18868 components: - type: Transform rot: 3.141592653589793 rad @@ -146628,14 +146649,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18946 + - uid: 18869 components: - type: Transform pos: 56.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18947 + - uid: 18870 components: - type: Transform rot: -1.5707963267948966 rad @@ -146643,7 +146664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18948 + - uid: 18871 components: - type: Transform rot: 3.141592653589793 rad @@ -146651,7 +146672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18949 + - uid: 18872 components: - type: Transform rot: 1.5707963267948966 rad @@ -146659,7 +146680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18950 + - uid: 18873 components: - type: Transform rot: -1.5707963267948966 rad @@ -146667,14 +146688,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18951 + - uid: 18874 components: - type: Transform pos: 61.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18952 + - uid: 18875 components: - type: Transform rot: 3.141592653589793 rad @@ -146682,7 +146703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18953 + - uid: 18876 components: - type: Transform rot: 3.141592653589793 rad @@ -146690,7 +146711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18954 + - uid: 18877 components: - type: Transform rot: 3.141592653589793 rad @@ -146698,21 +146719,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18955 + - uid: 18878 components: - type: Transform pos: 16.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18956 + - uid: 18879 components: - type: Transform pos: 18.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18957 + - uid: 18880 components: - type: Transform rot: 1.5707963267948966 rad @@ -146720,7 +146741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18958 + - uid: 18881 components: - type: Transform rot: -1.5707963267948966 rad @@ -146728,7 +146749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18959 + - uid: 18882 components: - type: Transform rot: 3.141592653589793 rad @@ -146736,7 +146757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18960 + - uid: 18883 components: - type: Transform rot: 3.141592653589793 rad @@ -146744,7 +146765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18961 + - uid: 18884 components: - type: Transform rot: 3.141592653589793 rad @@ -146752,14 +146773,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18962 + - uid: 18885 components: - type: Transform pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18963 + - uid: 18886 components: - type: Transform rot: 3.141592653589793 rad @@ -146767,14 +146788,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18964 + - uid: 18887 components: - type: Transform pos: 22.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18965 + - uid: 18888 components: - type: Transform rot: 1.5707963267948966 rad @@ -146782,7 +146803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18966 + - uid: 18889 components: - type: Transform rot: 1.5707963267948966 rad @@ -146790,7 +146811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18967 + - uid: 18890 components: - type: Transform rot: -1.5707963267948966 rad @@ -146798,7 +146819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18968 + - uid: 18891 components: - type: Transform rot: -1.5707963267948966 rad @@ -146806,7 +146827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18969 + - uid: 18892 components: - type: Transform rot: 1.5707963267948966 rad @@ -146814,7 +146835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18970 + - uid: 18893 components: - type: Transform rot: 1.5707963267948966 rad @@ -146822,7 +146843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18971 + - uid: 18894 components: - type: Transform rot: -1.5707963267948966 rad @@ -146830,14 +146851,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18972 + - uid: 18895 components: - type: Transform pos: 22.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18973 + - uid: 18896 components: - type: Transform rot: 3.141592653589793 rad @@ -146845,14 +146866,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18974 + - uid: 18897 components: - type: Transform pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18975 + - uid: 18898 components: - type: Transform rot: 3.141592653589793 rad @@ -146860,7 +146881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18976 + - uid: 18899 components: - type: Transform rot: 3.141592653589793 rad @@ -146868,7 +146889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18977 + - uid: 18900 components: - type: Transform rot: -1.5707963267948966 rad @@ -146876,7 +146897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18978 + - uid: 18901 components: - type: Transform rot: -1.5707963267948966 rad @@ -146884,7 +146905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18979 + - uid: 18902 components: - type: Transform rot: -1.5707963267948966 rad @@ -146892,7 +146913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18980 + - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad @@ -146900,7 +146921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18981 + - uid: 18904 components: - type: Transform rot: 3.141592653589793 rad @@ -146908,7 +146929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18982 + - uid: 18905 components: - type: Transform rot: 3.141592653589793 rad @@ -146916,21 +146937,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18983 + - uid: 18906 components: - type: Transform pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18984 + - uid: 18907 components: - type: Transform pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18985 + - uid: 18908 components: - type: Transform rot: -1.5707963267948966 rad @@ -146938,7 +146959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18986 + - uid: 18909 components: - type: Transform rot: -1.5707963267948966 rad @@ -146946,7 +146967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18987 + - uid: 18910 components: - type: Transform rot: 3.141592653589793 rad @@ -146954,7 +146975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18988 + - uid: 18911 components: - type: Transform rot: -1.5707963267948966 rad @@ -146962,7 +146983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18989 + - uid: 18912 components: - type: Transform rot: 1.5707963267948966 rad @@ -146970,7 +146991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18990 + - uid: 18913 components: - type: Transform rot: 1.5707963267948966 rad @@ -146978,14 +146999,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18991 + - uid: 18914 components: - type: Transform pos: -21.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18992 + - uid: 18915 components: - type: Transform rot: 1.5707963267948966 rad @@ -146993,7 +147014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18993 + - uid: 18916 components: - type: Transform rot: 1.5707963267948966 rad @@ -147001,7 +147022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18994 + - uid: 18917 components: - type: Transform rot: 3.141592653589793 rad @@ -147009,14 +147030,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18995 + - uid: 18918 components: - type: Transform pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18996 + - uid: 18919 components: - type: Transform rot: 1.5707963267948966 rad @@ -147024,14 +147045,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18997 + - uid: 18920 components: - type: Transform pos: 1.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18998 + - uid: 18921 components: - type: Transform rot: 1.5707963267948966 rad @@ -147039,7 +147060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18999 + - uid: 18922 components: - type: Transform rot: 3.141592653589793 rad @@ -147047,7 +147068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19000 + - uid: 18923 components: - type: Transform rot: 3.141592653589793 rad @@ -147055,7 +147076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19001 + - uid: 18924 components: - type: Transform rot: -1.5707963267948966 rad @@ -147063,7 +147084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19002 + - uid: 18925 components: - type: Transform rot: -1.5707963267948966 rad @@ -147071,7 +147092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19003 + - uid: 18926 components: - type: Transform rot: -1.5707963267948966 rad @@ -147079,14 +147100,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19004 + - uid: 18927 components: - type: Transform pos: 5.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19005 + - uid: 18928 components: - type: Transform rot: 3.141592653589793 rad @@ -147094,7 +147115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19006 + - uid: 18929 components: - type: Transform rot: 1.5707963267948966 rad @@ -147102,7 +147123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19007 + - uid: 18930 components: - type: Transform rot: -1.5707963267948966 rad @@ -147110,7 +147131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19008 + - uid: 18931 components: - type: Transform rot: 1.5707963267948966 rad @@ -147118,21 +147139,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19009 + - uid: 18932 components: - type: Transform pos: -48.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19010 + - uid: 18933 components: - type: Transform pos: -57.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19011 + - uid: 18934 components: - type: Transform rot: 3.141592653589793 rad @@ -147140,14 +147161,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19012 + - uid: 18935 components: - type: Transform pos: -28.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19013 + - uid: 18936 components: - type: Transform rot: 3.141592653589793 rad @@ -147155,14 +147176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19014 + - uid: 18937 components: - type: Transform pos: 73.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19015 + - uid: 18938 components: - type: Transform rot: 1.5707963267948966 rad @@ -147170,7 +147191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19016 + - uid: 18939 components: - type: Transform rot: -1.5707963267948966 rad @@ -147178,7 +147199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19017 + - uid: 18940 components: - type: Transform rot: 1.5707963267948966 rad @@ -147186,7 +147207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19018 + - uid: 18941 components: - type: Transform rot: -1.5707963267948966 rad @@ -147194,14 +147215,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19019 + - uid: 18942 components: - type: Transform pos: -60.5,37.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19020 + - uid: 18943 components: - type: Transform rot: -1.5707963267948966 rad @@ -147209,7 +147230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19021 + - uid: 18944 components: - type: Transform rot: -1.5707963267948966 rad @@ -147217,7 +147238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19022 + - uid: 18945 components: - type: Transform rot: -1.5707963267948966 rad @@ -147225,7 +147246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19023 + - uid: 18946 components: - type: Transform rot: 1.5707963267948966 rad @@ -147233,7 +147254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19024 + - uid: 18947 components: - type: Transform rot: 1.5707963267948966 rad @@ -147241,7 +147262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19025 + - uid: 18948 components: - type: Transform rot: 1.5707963267948966 rad @@ -147249,7 +147270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19026 + - uid: 18949 components: - type: Transform rot: -1.5707963267948966 rad @@ -147257,14 +147278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19027 + - uid: 18950 components: - type: Transform pos: 96.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19028 + - uid: 18951 components: - type: Transform rot: 1.5707963267948966 rad @@ -147272,7 +147293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19029 + - uid: 18952 components: - type: Transform rot: -1.5707963267948966 rad @@ -147280,7 +147301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19030 + - uid: 18953 components: - type: Transform rot: 1.5707963267948966 rad @@ -147288,7 +147309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19031 + - uid: 18954 components: - type: Transform rot: -1.5707963267948966 rad @@ -147296,14 +147317,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19032 + - uid: 18955 components: - type: Transform pos: 10.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19033 + - uid: 18956 components: - type: Transform rot: 3.141592653589793 rad @@ -147311,7 +147332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19034 + - uid: 18957 components: - type: Transform rot: 1.5707963267948966 rad @@ -147319,7 +147340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19035 + - uid: 18958 components: - type: Transform rot: -1.5707963267948966 rad @@ -147327,20 +147348,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19036 + - uid: 18959 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-38.5 parent: 2 - - uid: 19037 + - uid: 18960 components: - type: Transform pos: 35.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19038 + - uid: 18961 components: - type: Transform rot: -1.5707963267948966 rad @@ -147348,388 +147369,388 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39242 + - uid: 39069 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,31.5 - parent: 38584 - - uid: 39243 + parent: 38411 + - uid: 39070 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,4.5 - parent: 38584 - - uid: 39244 + parent: 38411 + - uid: 39071 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39245 + - uid: 39072 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39246 + - uid: 39073 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39247 + - uid: 39074 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39248 + - uid: 39075 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39249 + - uid: 39076 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39250 + - uid: 39077 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39251 + - uid: 39078 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39252 + - uid: 39079 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39253 + - uid: 39080 components: - type: Transform pos: -5.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39254 + - uid: 39081 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39255 + - uid: 39082 components: - type: Transform pos: -9.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39256 + - uid: 39083 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39257 + - uid: 39084 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39258 + - uid: 39085 components: - type: Transform pos: 0.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39259 + - uid: 39086 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39260 + - uid: 39087 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39261 + - uid: 39088 components: - type: Transform pos: 5.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39262 + - uid: 39089 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39263 + - uid: 39090 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39264 + - uid: 39091 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39265 + - uid: 39092 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39266 + - uid: 39093 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39267 + - uid: 39094 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39268 + - uid: 39095 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39269 + - uid: 39096 components: - type: Transform pos: -1.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39270 + - uid: 39097 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeFourway entities: - - uid: 19039 + - uid: 18962 components: - type: Transform pos: -66.5,59.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19040 + - uid: 18963 components: - type: Transform pos: -52.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19041 + - uid: 18964 components: - type: Transform pos: -51.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19042 + - uid: 18965 components: - type: Transform pos: -70.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19043 + - uid: 18966 components: - type: Transform pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19044 + - uid: 18967 components: - type: Transform pos: 16.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19045 + - uid: 18968 components: - type: Transform pos: 8.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19046 + - uid: 18969 components: - type: Transform pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19047 + - uid: 18970 components: - type: Transform pos: -17.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19048 + - uid: 18971 components: - type: Transform pos: -117.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19049 + - uid: 18972 components: - type: Transform pos: -119.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19050 + - uid: 18973 components: - type: Transform pos: -117.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19051 + - uid: 18974 components: - type: Transform pos: -119.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19052 + - uid: 18975 components: - type: Transform pos: 48.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19053 + - uid: 18976 components: - type: Transform pos: 46.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19054 + - uid: 18977 components: - type: Transform pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19055 + - uid: 18978 components: - type: Transform pos: 18.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19056 + - uid: 18979 components: - type: Transform pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19057 + - uid: 18980 components: - type: Transform pos: 81.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19058 + - uid: 18981 components: - type: Transform pos: 84.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19059 + - uid: 18982 components: - type: Transform pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39271 + - uid: 39098 components: - type: Transform pos: 0.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeStraight entities: - - uid: 19060 + - uid: 18983 components: - type: Transform rot: 1.5707963267948966 rad @@ -147737,7 +147758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19061 + - uid: 18984 components: - type: Transform rot: -1.5707963267948966 rad @@ -147745,7 +147766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19062 + - uid: 18985 components: - type: Transform rot: 3.141592653589793 rad @@ -147753,7 +147774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19063 + - uid: 18986 components: - type: Transform rot: 1.5707963267948966 rad @@ -147761,7 +147782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19064 + - uid: 18987 components: - type: Transform rot: 3.141592653589793 rad @@ -147769,14 +147790,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19065 + - uid: 18988 components: - type: Transform pos: -48.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19066 + - uid: 18989 components: - type: Transform rot: 3.141592653589793 rad @@ -147784,7 +147805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19067 + - uid: 18990 components: - type: Transform rot: 3.141592653589793 rad @@ -147792,7 +147813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19068 + - uid: 18991 components: - type: Transform rot: 1.5707963267948966 rad @@ -147800,7 +147821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19069 + - uid: 18992 components: - type: Transform rot: 3.141592653589793 rad @@ -147808,7 +147829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19070 + - uid: 18993 components: - type: Transform rot: 3.141592653589793 rad @@ -147816,7 +147837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19071 + - uid: 18994 components: - type: Transform rot: -1.5707963267948966 rad @@ -147824,7 +147845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19072 + - uid: 18995 components: - type: Transform rot: 3.141592653589793 rad @@ -147832,7 +147853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19073 + - uid: 18996 components: - type: Transform rot: 3.141592653589793 rad @@ -147840,7 +147861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19074 + - uid: 18997 components: - type: Transform rot: 3.141592653589793 rad @@ -147848,7 +147869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19075 + - uid: 18998 components: - type: Transform rot: -1.5707963267948966 rad @@ -147856,7 +147877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19076 + - uid: 18999 components: - type: Transform rot: -1.5707963267948966 rad @@ -147864,7 +147885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19077 + - uid: 19000 components: - type: Transform rot: 3.141592653589793 rad @@ -147872,7 +147893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19078 + - uid: 19001 components: - type: Transform rot: 3.141592653589793 rad @@ -147880,7 +147901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19079 + - uid: 19002 components: - type: Transform rot: 3.141592653589793 rad @@ -147888,7 +147909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19080 + - uid: 19003 components: - type: Transform rot: 3.141592653589793 rad @@ -147896,7 +147917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19081 + - uid: 19004 components: - type: Transform rot: -1.5707963267948966 rad @@ -147904,7 +147925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19082 + - uid: 19005 components: - type: Transform rot: 3.141592653589793 rad @@ -147912,7 +147933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19083 + - uid: 19006 components: - type: Transform rot: -1.5707963267948966 rad @@ -147920,7 +147941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19084 + - uid: 19007 components: - type: Transform rot: -1.5707963267948966 rad @@ -147928,14 +147949,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19085 + - uid: 19008 components: - type: Transform pos: -32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19086 + - uid: 19009 components: - type: Transform rot: 3.141592653589793 rad @@ -147943,14 +147964,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19087 + - uid: 19010 components: - type: Transform pos: -52.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19088 + - uid: 19011 components: - type: Transform rot: 1.5707963267948966 rad @@ -147958,7 +147979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19089 + - uid: 19012 components: - type: Transform rot: 1.5707963267948966 rad @@ -147966,7 +147987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19090 + - uid: 19013 components: - type: Transform rot: 1.5707963267948966 rad @@ -147974,7 +147995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19091 + - uid: 19014 components: - type: Transform rot: 3.141592653589793 rad @@ -147982,7 +148003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19092 + - uid: 19015 components: - type: Transform rot: 1.5707963267948966 rad @@ -147990,7 +148011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19093 + - uid: 19016 components: - type: Transform rot: 3.141592653589793 rad @@ -147998,7 +148019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19094 + - uid: 19017 components: - type: Transform rot: 3.141592653589793 rad @@ -148006,7 +148027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19095 + - uid: 19018 components: - type: Transform rot: 3.141592653589793 rad @@ -148014,7 +148035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19096 + - uid: 19019 components: - type: Transform rot: 3.141592653589793 rad @@ -148022,7 +148043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19097 + - uid: 19020 components: - type: Transform rot: 3.141592653589793 rad @@ -148030,7 +148051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19098 + - uid: 19021 components: - type: Transform rot: 3.141592653589793 rad @@ -148038,7 +148059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19099 + - uid: 19022 components: - type: Transform rot: 3.141592653589793 rad @@ -148046,7 +148067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19100 + - uid: 19023 components: - type: Transform rot: -1.5707963267948966 rad @@ -148054,7 +148075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19101 + - uid: 19024 components: - type: Transform rot: 3.141592653589793 rad @@ -148062,7 +148083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19102 + - uid: 19025 components: - type: Transform rot: 3.141592653589793 rad @@ -148070,7 +148091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19103 + - uid: 19026 components: - type: Transform rot: 3.141592653589793 rad @@ -148078,7 +148099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19104 + - uid: 19027 components: - type: Transform rot: 3.141592653589793 rad @@ -148086,7 +148107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19105 + - uid: 19028 components: - type: Transform rot: 1.5707963267948966 rad @@ -148094,7 +148115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19106 + - uid: 19029 components: - type: Transform rot: 3.141592653589793 rad @@ -148102,7 +148123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19107 + - uid: 19030 components: - type: Transform rot: 1.5707963267948966 rad @@ -148110,7 +148131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19108 + - uid: 19031 components: - type: Transform rot: 3.141592653589793 rad @@ -148118,7 +148139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19109 + - uid: 19032 components: - type: Transform rot: -1.5707963267948966 rad @@ -148126,7 +148147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19110 + - uid: 19033 components: - type: Transform rot: -1.5707963267948966 rad @@ -148134,7 +148155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19111 + - uid: 19034 components: - type: Transform rot: -1.5707963267948966 rad @@ -148142,7 +148163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19112 + - uid: 19035 components: - type: Transform rot: 3.141592653589793 rad @@ -148150,7 +148171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19113 + - uid: 19036 components: - type: Transform rot: 3.141592653589793 rad @@ -148158,7 +148179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19114 + - uid: 19037 components: - type: Transform rot: -1.5707963267948966 rad @@ -148166,7 +148187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19115 + - uid: 19038 components: - type: Transform rot: 1.5707963267948966 rad @@ -148174,7 +148195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19116 + - uid: 19039 components: - type: Transform rot: 1.5707963267948966 rad @@ -148182,7 +148203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19117 + - uid: 19040 components: - type: Transform rot: -1.5707963267948966 rad @@ -148190,7 +148211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19118 + - uid: 19041 components: - type: Transform rot: 1.5707963267948966 rad @@ -148198,7 +148219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19119 + - uid: 19042 components: - type: Transform rot: 1.5707963267948966 rad @@ -148206,7 +148227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19120 + - uid: 19043 components: - type: Transform rot: 1.5707963267948966 rad @@ -148214,7 +148235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19121 + - uid: 19044 components: - type: Transform rot: 1.5707963267948966 rad @@ -148222,7 +148243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19122 + - uid: 19045 components: - type: Transform rot: 3.141592653589793 rad @@ -148230,7 +148251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19123 + - uid: 19046 components: - type: Transform rot: 1.5707963267948966 rad @@ -148238,7 +148259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19124 + - uid: 19047 components: - type: Transform rot: 1.5707963267948966 rad @@ -148246,7 +148267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19125 + - uid: 19048 components: - type: Transform rot: 3.141592653589793 rad @@ -148254,7 +148275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19126 + - uid: 19049 components: - type: Transform rot: -1.5707963267948966 rad @@ -148262,14 +148283,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19127 + - uid: 19050 components: - type: Transform pos: -15.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19128 + - uid: 19051 components: - type: Transform rot: -1.5707963267948966 rad @@ -148277,7 +148298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19129 + - uid: 19052 components: - type: Transform rot: 1.5707963267948966 rad @@ -148285,21 +148306,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19130 + - uid: 19053 components: - type: Transform pos: 46.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19131 + - uid: 19054 components: - type: Transform pos: -15.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19132 + - uid: 19055 components: - type: Transform rot: -1.5707963267948966 rad @@ -148307,7 +148328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19133 + - uid: 19056 components: - type: Transform rot: -1.5707963267948966 rad @@ -148315,7 +148336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19134 + - uid: 19057 components: - type: Transform rot: 3.141592653589793 rad @@ -148323,7 +148344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19135 + - uid: 19058 components: - type: Transform rot: 3.141592653589793 rad @@ -148331,7 +148352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19136 + - uid: 19059 components: - type: Transform rot: -1.5707963267948966 rad @@ -148339,7 +148360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19137 + - uid: 19060 components: - type: Transform rot: -1.5707963267948966 rad @@ -148347,7 +148368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19138 + - uid: 19061 components: - type: Transform rot: 3.141592653589793 rad @@ -148355,14 +148376,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19139 + - uid: 19062 components: - type: Transform pos: -28.5,73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19140 + - uid: 19063 components: - type: Transform rot: 3.141592653589793 rad @@ -148370,7 +148391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19141 + - uid: 19064 components: - type: Transform rot: 3.141592653589793 rad @@ -148378,7 +148399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19142 + - uid: 19065 components: - type: Transform rot: 1.5707963267948966 rad @@ -148386,7 +148407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19143 + - uid: 19066 components: - type: Transform rot: 3.141592653589793 rad @@ -148394,7 +148415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19144 + - uid: 19067 components: - type: Transform rot: 3.141592653589793 rad @@ -148402,7 +148423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19145 + - uid: 19068 components: - type: Transform rot: 3.141592653589793 rad @@ -148410,7 +148431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19146 + - uid: 19069 components: - type: Transform rot: 3.141592653589793 rad @@ -148418,7 +148439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19147 + - uid: 19070 components: - type: Transform rot: 3.141592653589793 rad @@ -148426,7 +148447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19148 + - uid: 19071 components: - type: Transform rot: 3.141592653589793 rad @@ -148434,7 +148455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19149 + - uid: 19072 components: - type: Transform rot: 3.141592653589793 rad @@ -148442,7 +148463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19150 + - uid: 19073 components: - type: Transform rot: 3.141592653589793 rad @@ -148450,7 +148471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19151 + - uid: 19074 components: - type: Transform rot: 3.141592653589793 rad @@ -148458,7 +148479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19152 + - uid: 19075 components: - type: Transform rot: 3.141592653589793 rad @@ -148466,7 +148487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19153 + - uid: 19076 components: - type: Transform rot: 3.141592653589793 rad @@ -148474,7 +148495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19154 + - uid: 19077 components: - type: Transform rot: 1.5707963267948966 rad @@ -148482,7 +148503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19155 + - uid: 19078 components: - type: Transform rot: 1.5707963267948966 rad @@ -148490,7 +148511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19156 + - uid: 19079 components: - type: Transform rot: 1.5707963267948966 rad @@ -148498,7 +148519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19157 + - uid: 19080 components: - type: Transform rot: 1.5707963267948966 rad @@ -148506,98 +148527,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19158 + - uid: 19081 components: - type: Transform pos: -53.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19159 + - uid: 19082 components: - type: Transform pos: -53.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19160 + - uid: 19083 components: - type: Transform pos: -53.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19161 + - uid: 19084 components: - type: Transform pos: -53.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19162 + - uid: 19085 components: - type: Transform pos: -52.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19163 + - uid: 19086 components: - type: Transform pos: -52.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19164 + - uid: 19087 components: - type: Transform pos: -53.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19165 + - uid: 19088 components: - type: Transform pos: -53.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19166 + - uid: 19089 components: - type: Transform pos: -52.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19167 + - uid: 19090 components: - type: Transform pos: -52.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19168 + - uid: 19091 components: - type: Transform pos: -53.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19169 + - uid: 19092 components: - type: Transform pos: -53.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19170 + - uid: 19093 components: - type: Transform pos: -52.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19171 + - uid: 19094 components: - type: Transform rot: 3.141592653589793 rad @@ -148605,21 +148626,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19172 + - uid: 19095 components: - type: Transform pos: -51.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19173 + - uid: 19096 components: - type: Transform pos: -52.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19174 + - uid: 19097 components: - type: Transform rot: -1.5707963267948966 rad @@ -148627,7 +148648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19175 + - uid: 19098 components: - type: Transform rot: -1.5707963267948966 rad @@ -148635,7 +148656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19176 + - uid: 19099 components: - type: Transform rot: -1.5707963267948966 rad @@ -148643,7 +148664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19177 + - uid: 19100 components: - type: Transform rot: -1.5707963267948966 rad @@ -148651,7 +148672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19178 + - uid: 19101 components: - type: Transform rot: -1.5707963267948966 rad @@ -148659,7 +148680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19179 + - uid: 19102 components: - type: Transform rot: -1.5707963267948966 rad @@ -148667,7 +148688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19180 + - uid: 19103 components: - type: Transform rot: -1.5707963267948966 rad @@ -148675,7 +148696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19181 + - uid: 19104 components: - type: Transform rot: -1.5707963267948966 rad @@ -148683,7 +148704,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19182 + - uid: 19105 components: - type: Transform rot: -1.5707963267948966 rad @@ -148691,7 +148712,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19183 + - uid: 19106 components: - type: Transform rot: 3.141592653589793 rad @@ -148699,7 +148720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19184 + - uid: 19107 components: - type: Transform rot: 3.141592653589793 rad @@ -148707,14 +148728,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19185 + - uid: 19108 components: - type: Transform pos: -52.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19186 + - uid: 19109 components: - type: Transform rot: 3.141592653589793 rad @@ -148722,7 +148743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19187 + - uid: 19110 components: - type: Transform rot: 3.141592653589793 rad @@ -148730,7 +148751,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19188 + - uid: 19111 components: - type: Transform rot: 3.141592653589793 rad @@ -148738,7 +148759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19189 + - uid: 19112 components: - type: Transform rot: 3.141592653589793 rad @@ -148746,7 +148767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19190 + - uid: 19113 components: - type: Transform rot: 3.141592653589793 rad @@ -148754,7 +148775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19191 + - uid: 19114 components: - type: Transform rot: 3.141592653589793 rad @@ -148762,7 +148783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19192 + - uid: 19115 components: - type: Transform rot: 3.141592653589793 rad @@ -148770,7 +148791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19193 + - uid: 19116 components: - type: Transform rot: 3.141592653589793 rad @@ -148778,7 +148799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19194 + - uid: 19117 components: - type: Transform rot: 3.141592653589793 rad @@ -148786,7 +148807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19195 + - uid: 19118 components: - type: Transform rot: 3.141592653589793 rad @@ -148794,7 +148815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19196 + - uid: 19119 components: - type: Transform rot: 3.141592653589793 rad @@ -148802,7 +148823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19197 + - uid: 19120 components: - type: Transform rot: 3.141592653589793 rad @@ -148810,7 +148831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19198 + - uid: 19121 components: - type: Transform rot: -1.5707963267948966 rad @@ -148818,7 +148839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19199 + - uid: 19122 components: - type: Transform rot: -1.5707963267948966 rad @@ -148826,7 +148847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19200 + - uid: 19123 components: - type: Transform rot: -1.5707963267948966 rad @@ -148834,7 +148855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19201 + - uid: 19124 components: - type: Transform rot: -1.5707963267948966 rad @@ -148842,7 +148863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19202 + - uid: 19125 components: - type: Transform rot: -1.5707963267948966 rad @@ -148850,7 +148871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19203 + - uid: 19126 components: - type: Transform rot: -1.5707963267948966 rad @@ -148858,7 +148879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19204 + - uid: 19127 components: - type: Transform rot: -1.5707963267948966 rad @@ -148866,7 +148887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19205 + - uid: 19128 components: - type: Transform rot: -1.5707963267948966 rad @@ -148874,7 +148895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19206 + - uid: 19129 components: - type: Transform rot: -1.5707963267948966 rad @@ -148882,7 +148903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19207 + - uid: 19130 components: - type: Transform rot: -1.5707963267948966 rad @@ -148890,7 +148911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19208 + - uid: 19131 components: - type: Transform rot: -1.5707963267948966 rad @@ -148898,7 +148919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19209 + - uid: 19132 components: - type: Transform rot: -1.5707963267948966 rad @@ -148906,7 +148927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19210 + - uid: 19133 components: - type: Transform rot: -1.5707963267948966 rad @@ -148914,7 +148935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19211 + - uid: 19134 components: - type: Transform rot: -1.5707963267948966 rad @@ -148922,7 +148943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19212 + - uid: 19135 components: - type: Transform rot: -1.5707963267948966 rad @@ -148930,7 +148951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19213 + - uid: 19136 components: - type: Transform rot: 3.141592653589793 rad @@ -148938,7 +148959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19214 + - uid: 19137 components: - type: Transform rot: 3.141592653589793 rad @@ -148946,7 +148967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19215 + - uid: 19138 components: - type: Transform rot: 3.141592653589793 rad @@ -148954,7 +148975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19216 + - uid: 19139 components: - type: Transform rot: 1.5707963267948966 rad @@ -148962,7 +148983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19217 + - uid: 19140 components: - type: Transform rot: 1.5707963267948966 rad @@ -148970,7 +148991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19218 + - uid: 19141 components: - type: Transform rot: 1.5707963267948966 rad @@ -148978,7 +148999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19219 + - uid: 19142 components: - type: Transform rot: 1.5707963267948966 rad @@ -148986,7 +149007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19220 + - uid: 19143 components: - type: Transform rot: 1.5707963267948966 rad @@ -148994,7 +149015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19221 + - uid: 19144 components: - type: Transform rot: 1.5707963267948966 rad @@ -149002,35 +149023,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19222 + - uid: 19145 components: - type: Transform pos: -62.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19223 + - uid: 19146 components: - type: Transform pos: -62.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19224 + - uid: 19147 components: - type: Transform pos: -62.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19225 + - uid: 19148 components: - type: Transform pos: -62.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19226 + - uid: 19149 components: - type: Transform rot: -1.5707963267948966 rad @@ -149038,7 +149059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19227 + - uid: 19150 components: - type: Transform rot: -1.5707963267948966 rad @@ -149046,7 +149067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19228 + - uid: 19151 components: - type: Transform rot: 3.141592653589793 rad @@ -149054,7 +149075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19229 + - uid: 19152 components: - type: Transform rot: 3.141592653589793 rad @@ -149062,7 +149083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19230 + - uid: 19153 components: - type: Transform rot: 1.5707963267948966 rad @@ -149070,7 +149091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19231 + - uid: 19154 components: - type: Transform rot: 1.5707963267948966 rad @@ -149078,7 +149099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19232 + - uid: 19155 components: - type: Transform rot: 1.5707963267948966 rad @@ -149086,7 +149107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19233 + - uid: 19156 components: - type: Transform rot: 1.5707963267948966 rad @@ -149094,7 +149115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19234 + - uid: 19157 components: - type: Transform rot: 1.5707963267948966 rad @@ -149102,7 +149123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19235 + - uid: 19158 components: - type: Transform rot: 1.5707963267948966 rad @@ -149110,7 +149131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19236 + - uid: 19159 components: - type: Transform rot: 1.5707963267948966 rad @@ -149118,7 +149139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19237 + - uid: 19160 components: - type: Transform rot: 1.5707963267948966 rad @@ -149126,7 +149147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19238 + - uid: 19161 components: - type: Transform rot: 1.5707963267948966 rad @@ -149134,7 +149155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19239 + - uid: 19162 components: - type: Transform rot: 1.5707963267948966 rad @@ -149142,7 +149163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19240 + - uid: 19163 components: - type: Transform rot: 1.5707963267948966 rad @@ -149150,7 +149171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19241 + - uid: 19164 components: - type: Transform rot: 1.5707963267948966 rad @@ -149158,7 +149179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19242 + - uid: 19165 components: - type: Transform rot: 1.5707963267948966 rad @@ -149166,7 +149187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19243 + - uid: 19166 components: - type: Transform rot: 1.5707963267948966 rad @@ -149174,7 +149195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19244 + - uid: 19167 components: - type: Transform rot: 1.5707963267948966 rad @@ -149182,7 +149203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19245 + - uid: 19168 components: - type: Transform rot: 1.5707963267948966 rad @@ -149190,7 +149211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19246 + - uid: 19169 components: - type: Transform rot: 1.5707963267948966 rad @@ -149198,7 +149219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19247 + - uid: 19170 components: - type: Transform rot: -1.5707963267948966 rad @@ -149206,7 +149227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19248 + - uid: 19171 components: - type: Transform rot: -1.5707963267948966 rad @@ -149214,14 +149235,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19249 + - uid: 19172 components: - type: Transform pos: -63.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19250 + - uid: 19173 components: - type: Transform rot: -1.5707963267948966 rad @@ -149229,7 +149250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19251 + - uid: 19174 components: - type: Transform rot: -1.5707963267948966 rad @@ -149237,7 +149258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19252 + - uid: 19175 components: - type: Transform rot: -1.5707963267948966 rad @@ -149245,7 +149266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19253 + - uid: 19176 components: - type: Transform rot: -1.5707963267948966 rad @@ -149253,7 +149274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19254 + - uid: 19177 components: - type: Transform rot: -1.5707963267948966 rad @@ -149261,7 +149282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19255 + - uid: 19178 components: - type: Transform rot: -1.5707963267948966 rad @@ -149269,42 +149290,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19256 + - uid: 19179 components: - type: Transform pos: -71.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19257 + - uid: 19180 components: - type: Transform pos: -71.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19258 + - uid: 19181 components: - type: Transform pos: -71.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19259 + - uid: 19182 components: - type: Transform pos: -71.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19260 + - uid: 19183 components: - type: Transform pos: -71.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19261 + - uid: 19184 components: - type: Transform rot: -1.5707963267948966 rad @@ -149312,7 +149333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19262 + - uid: 19185 components: - type: Transform rot: -1.5707963267948966 rad @@ -149320,7 +149341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19263 + - uid: 19186 components: - type: Transform rot: -1.5707963267948966 rad @@ -149328,7 +149349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19264 + - uid: 19187 components: - type: Transform rot: -1.5707963267948966 rad @@ -149336,35 +149357,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19265 + - uid: 19188 components: - type: Transform pos: -76.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19266 + - uid: 19189 components: - type: Transform pos: -76.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19267 + - uid: 19190 components: - type: Transform pos: -76.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19268 + - uid: 19191 components: - type: Transform pos: -76.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19269 + - uid: 19192 components: - type: Transform rot: 3.141592653589793 rad @@ -149372,7 +149393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19270 + - uid: 19193 components: - type: Transform rot: 3.141592653589793 rad @@ -149380,7 +149401,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19271 + - uid: 19194 components: - type: Transform rot: 3.141592653589793 rad @@ -149388,7 +149409,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19272 + - uid: 19195 components: - type: Transform rot: 1.5707963267948966 rad @@ -149396,7 +149417,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19273 + - uid: 19196 components: - type: Transform rot: 1.5707963267948966 rad @@ -149404,7 +149425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19274 + - uid: 19197 components: - type: Transform rot: 1.5707963267948966 rad @@ -149412,21 +149433,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19275 + - uid: 19198 components: - type: Transform pos: -47.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19276 + - uid: 19199 components: - type: Transform pos: -47.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19277 + - uid: 19200 components: - type: Transform rot: 1.5707963267948966 rad @@ -149434,7 +149455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19278 + - uid: 19201 components: - type: Transform rot: 1.5707963267948966 rad @@ -149442,7 +149463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19279 + - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad @@ -149450,7 +149471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19280 + - uid: 19203 components: - type: Transform rot: 1.5707963267948966 rad @@ -149458,7 +149479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19281 + - uid: 19204 components: - type: Transform rot: -1.5707963267948966 rad @@ -149466,7 +149487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19282 + - uid: 19205 components: - type: Transform rot: -1.5707963267948966 rad @@ -149474,7 +149495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19283 + - uid: 19206 components: - type: Transform rot: -1.5707963267948966 rad @@ -149482,7 +149503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19284 + - uid: 19207 components: - type: Transform rot: -1.5707963267948966 rad @@ -149490,7 +149511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19285 + - uid: 19208 components: - type: Transform rot: -1.5707963267948966 rad @@ -149498,7 +149519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19286 + - uid: 19209 components: - type: Transform rot: -1.5707963267948966 rad @@ -149506,7 +149527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19287 + - uid: 19210 components: - type: Transform rot: -1.5707963267948966 rad @@ -149514,7 +149535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19288 + - uid: 19211 components: - type: Transform rot: -1.5707963267948966 rad @@ -149522,7 +149543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19289 + - uid: 19212 components: - type: Transform rot: -1.5707963267948966 rad @@ -149530,7 +149551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19290 + - uid: 19213 components: - type: Transform rot: -1.5707963267948966 rad @@ -149538,7 +149559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19291 + - uid: 19214 components: - type: Transform rot: -1.5707963267948966 rad @@ -149546,7 +149567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19292 + - uid: 19215 components: - type: Transform rot: -1.5707963267948966 rad @@ -149554,7 +149575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19293 + - uid: 19216 components: - type: Transform rot: -1.5707963267948966 rad @@ -149562,7 +149583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19294 + - uid: 19217 components: - type: Transform rot: -1.5707963267948966 rad @@ -149570,7 +149591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19295 + - uid: 19218 components: - type: Transform rot: -1.5707963267948966 rad @@ -149578,7 +149599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19296 + - uid: 19219 components: - type: Transform rot: -1.5707963267948966 rad @@ -149586,7 +149607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19297 + - uid: 19220 components: - type: Transform rot: 3.141592653589793 rad @@ -149594,7 +149615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19298 + - uid: 19221 components: - type: Transform rot: 3.141592653589793 rad @@ -149602,7 +149623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19299 + - uid: 19222 components: - type: Transform rot: 3.141592653589793 rad @@ -149610,7 +149631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19300 + - uid: 19223 components: - type: Transform rot: 3.141592653589793 rad @@ -149618,7 +149639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19301 + - uid: 19224 components: - type: Transform rot: 3.141592653589793 rad @@ -149626,7 +149647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19302 + - uid: 19225 components: - type: Transform rot: 3.141592653589793 rad @@ -149634,7 +149655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19303 + - uid: 19226 components: - type: Transform rot: 3.141592653589793 rad @@ -149642,7 +149663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19304 + - uid: 19227 components: - type: Transform rot: 3.141592653589793 rad @@ -149650,7 +149671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19305 + - uid: 19228 components: - type: Transform rot: 3.141592653589793 rad @@ -149658,7 +149679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19306 + - uid: 19229 components: - type: Transform rot: 3.141592653589793 rad @@ -149666,7 +149687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19307 + - uid: 19230 components: - type: Transform rot: 3.141592653589793 rad @@ -149674,7 +149695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19308 + - uid: 19231 components: - type: Transform rot: 3.141592653589793 rad @@ -149682,7 +149703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19309 + - uid: 19232 components: - type: Transform rot: 3.141592653589793 rad @@ -149690,7 +149711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19310 + - uid: 19233 components: - type: Transform rot: 3.141592653589793 rad @@ -149698,7 +149719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19311 + - uid: 19234 components: - type: Transform rot: 3.141592653589793 rad @@ -149706,7 +149727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19312 + - uid: 19235 components: - type: Transform rot: 3.141592653589793 rad @@ -149714,7 +149735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19313 + - uid: 19236 components: - type: Transform rot: 1.5707963267948966 rad @@ -149722,7 +149743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19314 + - uid: 19237 components: - type: Transform rot: 1.5707963267948966 rad @@ -149730,7 +149751,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19315 + - uid: 19238 components: - type: Transform rot: 1.5707963267948966 rad @@ -149738,7 +149759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19316 + - uid: 19239 components: - type: Transform rot: 1.5707963267948966 rad @@ -149746,7 +149767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19317 + - uid: 19240 components: - type: Transform rot: 1.5707963267948966 rad @@ -149754,7 +149775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19318 + - uid: 19241 components: - type: Transform rot: 1.5707963267948966 rad @@ -149762,7 +149783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19319 + - uid: 19242 components: - type: Transform rot: 1.5707963267948966 rad @@ -149770,7 +149791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19320 + - uid: 19243 components: - type: Transform rot: 1.5707963267948966 rad @@ -149778,7 +149799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19321 + - uid: 19244 components: - type: Transform rot: 1.5707963267948966 rad @@ -149786,7 +149807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19322 + - uid: 19245 components: - type: Transform rot: 1.5707963267948966 rad @@ -149794,7 +149815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19323 + - uid: 19246 components: - type: Transform rot: 1.5707963267948966 rad @@ -149802,7 +149823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19324 + - uid: 19247 components: - type: Transform rot: 1.5707963267948966 rad @@ -149810,7 +149831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19325 + - uid: 19248 components: - type: Transform rot: 1.5707963267948966 rad @@ -149818,7 +149839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19326 + - uid: 19249 components: - type: Transform rot: 1.5707963267948966 rad @@ -149826,7 +149847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19327 + - uid: 19250 components: - type: Transform rot: 1.5707963267948966 rad @@ -149834,7 +149855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19328 + - uid: 19251 components: - type: Transform rot: 1.5707963267948966 rad @@ -149842,70 +149863,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19329 + - uid: 19252 components: - type: Transform pos: -52.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19330 + - uid: 19253 components: - type: Transform pos: -51.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19331 + - uid: 19254 components: - type: Transform pos: -52.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19332 + - uid: 19255 components: - type: Transform pos: -51.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19333 + - uid: 19256 components: - type: Transform pos: -52.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19334 + - uid: 19257 components: - type: Transform pos: -51.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19335 + - uid: 19258 components: - type: Transform pos: -52.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19336 + - uid: 19259 components: - type: Transform pos: -51.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19337 + - uid: 19260 components: - type: Transform pos: -51.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19338 + - uid: 19261 components: - type: Transform rot: -1.5707963267948966 rad @@ -149913,7 +149934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19339 + - uid: 19262 components: - type: Transform rot: -1.5707963267948966 rad @@ -149921,7 +149942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19340 + - uid: 19263 components: - type: Transform rot: -1.5707963267948966 rad @@ -149929,7 +149950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19341 + - uid: 19264 components: - type: Transform rot: -1.5707963267948966 rad @@ -149937,7 +149958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19342 + - uid: 19265 components: - type: Transform rot: -1.5707963267948966 rad @@ -149945,7 +149966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19343 + - uid: 19266 components: - type: Transform rot: -1.5707963267948966 rad @@ -149953,7 +149974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19344 + - uid: 19267 components: - type: Transform rot: -1.5707963267948966 rad @@ -149961,7 +149982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19345 + - uid: 19268 components: - type: Transform rot: -1.5707963267948966 rad @@ -149969,7 +149990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19346 + - uid: 19269 components: - type: Transform rot: -1.5707963267948966 rad @@ -149977,7 +149998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19347 + - uid: 19270 components: - type: Transform rot: -1.5707963267948966 rad @@ -149985,7 +150006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19348 + - uid: 19271 components: - type: Transform rot: -1.5707963267948966 rad @@ -149993,7 +150014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19349 + - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad @@ -150001,7 +150022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19350 + - uid: 19273 components: - type: Transform rot: -1.5707963267948966 rad @@ -150009,7 +150030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19351 + - uid: 19274 components: - type: Transform rot: 1.5707963267948966 rad @@ -150017,7 +150038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19352 + - uid: 19275 components: - type: Transform rot: -1.5707963267948966 rad @@ -150025,7 +150046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19353 + - uid: 19276 components: - type: Transform rot: -1.5707963267948966 rad @@ -150033,7 +150054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19354 + - uid: 19277 components: - type: Transform rot: -1.5707963267948966 rad @@ -150041,7 +150062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19355 + - uid: 19278 components: - type: Transform rot: -1.5707963267948966 rad @@ -150049,7 +150070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19356 + - uid: 19279 components: - type: Transform rot: -1.5707963267948966 rad @@ -150057,7 +150078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19357 + - uid: 19280 components: - type: Transform rot: -1.5707963267948966 rad @@ -150065,7 +150086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19358 + - uid: 19281 components: - type: Transform rot: 1.5707963267948966 rad @@ -150073,7 +150094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19359 + - uid: 19282 components: - type: Transform rot: -1.5707963267948966 rad @@ -150081,7 +150102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19360 + - uid: 19283 components: - type: Transform rot: -1.5707963267948966 rad @@ -150089,7 +150110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19361 + - uid: 19284 components: - type: Transform rot: -1.5707963267948966 rad @@ -150097,7 +150118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19362 + - uid: 19285 components: - type: Transform rot: -1.5707963267948966 rad @@ -150105,7 +150126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19363 + - uid: 19286 components: - type: Transform rot: -1.5707963267948966 rad @@ -150113,7 +150134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19364 + - uid: 19287 components: - type: Transform rot: -1.5707963267948966 rad @@ -150121,7 +150142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19365 + - uid: 19288 components: - type: Transform rot: -1.5707963267948966 rad @@ -150129,7 +150150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19366 + - uid: 19289 components: - type: Transform rot: 3.141592653589793 rad @@ -150137,7 +150158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19367 + - uid: 19290 components: - type: Transform rot: -1.5707963267948966 rad @@ -150145,7 +150166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19368 + - uid: 19291 components: - type: Transform rot: 3.141592653589793 rad @@ -150153,7 +150174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19369 + - uid: 19292 components: - type: Transform rot: 3.141592653589793 rad @@ -150161,7 +150182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19370 + - uid: 19293 components: - type: Transform rot: -1.5707963267948966 rad @@ -150169,7 +150190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19371 + - uid: 19294 components: - type: Transform rot: -1.5707963267948966 rad @@ -150177,14 +150198,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19372 + - uid: 19295 components: - type: Transform pos: -68.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19373 + - uid: 19296 components: - type: Transform rot: -1.5707963267948966 rad @@ -150192,56 +150213,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19374 + - uid: 19297 components: - type: Transform pos: -68.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19375 + - uid: 19298 components: - type: Transform pos: -70.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19376 + - uid: 19299 components: - type: Transform pos: -70.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19377 + - uid: 19300 components: - type: Transform pos: -68.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19378 + - uid: 19301 components: - type: Transform pos: -70.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19379 + - uid: 19302 components: - type: Transform pos: -70.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19380 + - uid: 19303 components: - type: Transform pos: -70.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19381 + - uid: 19304 components: - type: Transform rot: 3.141592653589793 rad @@ -150249,7 +150270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19382 + - uid: 19305 components: - type: Transform rot: 3.141592653589793 rad @@ -150257,14 +150278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19383 + - uid: 19306 components: - type: Transform pos: -70.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19384 + - uid: 19307 components: - type: Transform rot: 3.141592653589793 rad @@ -150272,7 +150293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19385 + - uid: 19308 components: - type: Transform rot: -1.5707963267948966 rad @@ -150280,14 +150301,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19386 + - uid: 19309 components: - type: Transform pos: -59.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19387 + - uid: 19310 components: - type: Transform rot: 3.141592653589793 rad @@ -150295,7 +150316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19388 + - uid: 19311 components: - type: Transform rot: 3.141592653589793 rad @@ -150303,7 +150324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19389 + - uid: 19312 components: - type: Transform rot: 3.141592653589793 rad @@ -150311,7 +150332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19390 + - uid: 19313 components: - type: Transform rot: 3.141592653589793 rad @@ -150319,7 +150340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19391 + - uid: 19314 components: - type: Transform rot: -1.5707963267948966 rad @@ -150327,7 +150348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19392 + - uid: 19315 components: - type: Transform rot: 3.141592653589793 rad @@ -150335,7 +150356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19393 + - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad @@ -150343,7 +150364,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19394 + - uid: 19317 components: - type: Transform rot: 3.141592653589793 rad @@ -150351,7 +150372,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19395 + - uid: 19318 components: - type: Transform rot: 3.141592653589793 rad @@ -150359,7 +150380,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19396 + - uid: 19319 components: - type: Transform rot: 3.141592653589793 rad @@ -150367,7 +150388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19397 + - uid: 19320 components: - type: Transform rot: 1.5707963267948966 rad @@ -150375,7 +150396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19398 + - uid: 19321 components: - type: Transform rot: 1.5707963267948966 rad @@ -150383,7 +150404,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19399 + - uid: 19322 components: - type: Transform rot: 1.5707963267948966 rad @@ -150391,7 +150412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19400 + - uid: 19323 components: - type: Transform rot: 3.141592653589793 rad @@ -150399,7 +150420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19401 + - uid: 19324 components: - type: Transform rot: 3.141592653589793 rad @@ -150407,7 +150428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19402 + - uid: 19325 components: - type: Transform rot: 3.141592653589793 rad @@ -150415,7 +150436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19403 + - uid: 19326 components: - type: Transform rot: -1.5707963267948966 rad @@ -150423,7 +150444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19404 + - uid: 19327 components: - type: Transform rot: -1.5707963267948966 rad @@ -150431,14 +150452,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19405 + - uid: 19328 components: - type: Transform pos: -7.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19406 + - uid: 19329 components: - type: Transform rot: 3.141592653589793 rad @@ -150446,7 +150467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19407 + - uid: 19330 components: - type: Transform rot: 3.141592653589793 rad @@ -150454,7 +150475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19408 + - uid: 19331 components: - type: Transform rot: 3.141592653589793 rad @@ -150462,7 +150483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19409 + - uid: 19332 components: - type: Transform rot: 3.141592653589793 rad @@ -150470,7 +150491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19410 + - uid: 19333 components: - type: Transform rot: 3.141592653589793 rad @@ -150478,7 +150499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19411 + - uid: 19334 components: - type: Transform rot: 3.141592653589793 rad @@ -150486,7 +150507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19412 + - uid: 19335 components: - type: Transform rot: 3.141592653589793 rad @@ -150494,7 +150515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19413 + - uid: 19336 components: - type: Transform rot: 3.141592653589793 rad @@ -150502,7 +150523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19414 + - uid: 19337 components: - type: Transform rot: 3.141592653589793 rad @@ -150510,7 +150531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19415 + - uid: 19338 components: - type: Transform rot: 3.141592653589793 rad @@ -150518,63 +150539,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19416 + - uid: 19339 components: - type: Transform pos: -42.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19417 + - uid: 19340 components: - type: Transform pos: -40.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19418 + - uid: 19341 components: - type: Transform pos: -40.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19419 + - uid: 19342 components: - type: Transform pos: -42.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19420 + - uid: 19343 components: - type: Transform pos: -42.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19421 + - uid: 19344 components: - type: Transform pos: -40.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19422 + - uid: 19345 components: - type: Transform pos: -40.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19423 + - uid: 19346 components: - type: Transform pos: -42.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19424 + - uid: 19347 components: - type: Transform rot: 3.141592653589793 rad @@ -150582,7 +150603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19425 + - uid: 19348 components: - type: Transform rot: 3.141592653589793 rad @@ -150590,7 +150611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19426 + - uid: 19349 components: - type: Transform rot: 1.5707963267948966 rad @@ -150598,7 +150619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19427 + - uid: 19350 components: - type: Transform rot: 1.5707963267948966 rad @@ -150606,7 +150627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19428 + - uid: 19351 components: - type: Transform rot: 1.5707963267948966 rad @@ -150614,7 +150635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19429 + - uid: 19352 components: - type: Transform rot: 1.5707963267948966 rad @@ -150622,7 +150643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19430 + - uid: 19353 components: - type: Transform rot: 1.5707963267948966 rad @@ -150630,7 +150651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19431 + - uid: 19354 components: - type: Transform rot: 1.5707963267948966 rad @@ -150638,7 +150659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19432 + - uid: 19355 components: - type: Transform rot: 1.5707963267948966 rad @@ -150646,7 +150667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19433 + - uid: 19356 components: - type: Transform rot: 1.5707963267948966 rad @@ -150654,7 +150675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19434 + - uid: 19357 components: - type: Transform rot: 1.5707963267948966 rad @@ -150662,7 +150683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19435 + - uid: 19358 components: - type: Transform rot: 1.5707963267948966 rad @@ -150670,7 +150691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19436 + - uid: 19359 components: - type: Transform rot: 1.5707963267948966 rad @@ -150678,7 +150699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19437 + - uid: 19360 components: - type: Transform rot: 1.5707963267948966 rad @@ -150686,7 +150707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19438 + - uid: 19361 components: - type: Transform rot: 1.5707963267948966 rad @@ -150694,7 +150715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19439 + - uid: 19362 components: - type: Transform rot: 1.5707963267948966 rad @@ -150702,7 +150723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19440 + - uid: 19363 components: - type: Transform rot: 1.5707963267948966 rad @@ -150710,7 +150731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19441 + - uid: 19364 components: - type: Transform rot: 1.5707963267948966 rad @@ -150718,7 +150739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19442 + - uid: 19365 components: - type: Transform rot: 1.5707963267948966 rad @@ -150726,7 +150747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19443 + - uid: 19366 components: - type: Transform rot: 1.5707963267948966 rad @@ -150734,7 +150755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19444 + - uid: 19367 components: - type: Transform rot: -1.5707963267948966 rad @@ -150742,119 +150763,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19445 + - uid: 19368 components: - type: Transform pos: -35.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19446 + - uid: 19369 components: - type: Transform pos: -35.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19447 + - uid: 19370 components: - type: Transform pos: -35.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19448 + - uid: 19371 components: - type: Transform pos: -35.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19449 + - uid: 19372 components: - type: Transform pos: -35.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19450 + - uid: 19373 components: - type: Transform pos: -31.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19451 + - uid: 19374 components: - type: Transform pos: -31.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19452 + - uid: 19375 components: - type: Transform pos: -31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19453 + - uid: 19376 components: - type: Transform pos: -32.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19454 + - uid: 19377 components: - type: Transform pos: -32.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19455 + - uid: 19378 components: - type: Transform pos: -31.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19456 + - uid: 19379 components: - type: Transform pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19457 + - uid: 19380 components: - type: Transform pos: -31.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19458 + - uid: 19381 components: - type: Transform pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19459 + - uid: 19382 components: - type: Transform pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19460 + - uid: 19383 components: - type: Transform pos: -28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19461 + - uid: 19384 components: - type: Transform rot: 1.5707963267948966 rad @@ -150862,35 +150883,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19462 + - uid: 19385 components: - type: Transform pos: -32.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19463 + - uid: 19386 components: - type: Transform pos: -32.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19464 + - uid: 19387 components: - type: Transform pos: -32.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19465 + - uid: 19388 components: - type: Transform pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19466 + - uid: 19389 components: - type: Transform rot: -1.5707963267948966 rad @@ -150898,7 +150919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19467 + - uid: 19390 components: - type: Transform rot: 3.141592653589793 rad @@ -150906,7 +150927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19468 + - uid: 19391 components: - type: Transform rot: 1.5707963267948966 rad @@ -150914,7 +150935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19469 + - uid: 19392 components: - type: Transform rot: 1.5707963267948966 rad @@ -150922,7 +150943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19470 + - uid: 19393 components: - type: Transform rot: 1.5707963267948966 rad @@ -150930,7 +150951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19471 + - uid: 19394 components: - type: Transform rot: 1.5707963267948966 rad @@ -150938,14 +150959,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19472 + - uid: 19395 components: - type: Transform pos: -31.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19473 + - uid: 19396 components: - type: Transform rot: 1.5707963267948966 rad @@ -150953,14 +150974,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19474 + - uid: 19397 components: - type: Transform pos: -31.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19475 + - uid: 19398 components: - type: Transform rot: 1.5707963267948966 rad @@ -150968,7 +150989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19476 + - uid: 19399 components: - type: Transform rot: 1.5707963267948966 rad @@ -150976,21 +150997,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19477 + - uid: 19400 components: - type: Transform pos: -28.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19478 + - uid: 19401 components: - type: Transform pos: -28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19479 + - uid: 19402 components: - type: Transform rot: 1.5707963267948966 rad @@ -150998,105 +151019,105 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19480 + - uid: 19403 components: - type: Transform pos: -32.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19481 + - uid: 19404 components: - type: Transform pos: -32.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19482 + - uid: 19405 components: - type: Transform pos: -31.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19483 + - uid: 19406 components: - type: Transform pos: -31.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19484 + - uid: 19407 components: - type: Transform pos: -32.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19485 + - uid: 19408 components: - type: Transform pos: -31.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19486 + - uid: 19409 components: - type: Transform pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19487 + - uid: 19410 components: - type: Transform pos: -32.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19488 + - uid: 19411 components: - type: Transform pos: -31.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19489 + - uid: 19412 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19490 + - uid: 19413 components: - type: Transform pos: -31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19491 + - uid: 19414 components: - type: Transform pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19492 + - uid: 19415 components: - type: Transform pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19493 + - uid: 19416 components: - type: Transform pos: -31.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19494 + - uid: 19417 components: - type: Transform rot: -1.5707963267948966 rad @@ -151104,7 +151125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19495 + - uid: 19418 components: - type: Transform rot: -1.5707963267948966 rad @@ -151112,7 +151133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19496 + - uid: 19419 components: - type: Transform rot: -1.5707963267948966 rad @@ -151120,7 +151141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19497 + - uid: 19420 components: - type: Transform rot: -1.5707963267948966 rad @@ -151128,7 +151149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19498 + - uid: 19421 components: - type: Transform rot: -1.5707963267948966 rad @@ -151136,7 +151157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19499 + - uid: 19422 components: - type: Transform rot: -1.5707963267948966 rad @@ -151144,7 +151165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19500 + - uid: 19423 components: - type: Transform rot: 3.141592653589793 rad @@ -151152,7 +151173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19501 + - uid: 19424 components: - type: Transform rot: 3.141592653589793 rad @@ -151160,7 +151181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19502 + - uid: 19425 components: - type: Transform rot: 3.141592653589793 rad @@ -151168,7 +151189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19503 + - uid: 19426 components: - type: Transform rot: 3.141592653589793 rad @@ -151176,7 +151197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19504 + - uid: 19427 components: - type: Transform rot: 3.141592653589793 rad @@ -151184,7 +151205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19505 + - uid: 19428 components: - type: Transform rot: 3.141592653589793 rad @@ -151192,7 +151213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19506 + - uid: 19429 components: - type: Transform rot: 3.141592653589793 rad @@ -151200,7 +151221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19507 + - uid: 19430 components: - type: Transform rot: 3.141592653589793 rad @@ -151208,7 +151229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19508 + - uid: 19431 components: - type: Transform rot: 3.141592653589793 rad @@ -151216,7 +151237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19509 + - uid: 19432 components: - type: Transform rot: 3.141592653589793 rad @@ -151224,7 +151245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19510 + - uid: 19433 components: - type: Transform rot: 1.5707963267948966 rad @@ -151232,7 +151253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19511 + - uid: 19434 components: - type: Transform rot: 1.5707963267948966 rad @@ -151240,7 +151261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19512 + - uid: 19435 components: - type: Transform rot: 1.5707963267948966 rad @@ -151248,7 +151269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19513 + - uid: 19436 components: - type: Transform rot: 1.5707963267948966 rad @@ -151256,7 +151277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19514 + - uid: 19437 components: - type: Transform rot: 1.5707963267948966 rad @@ -151264,7 +151285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19515 + - uid: 19438 components: - type: Transform rot: 1.5707963267948966 rad @@ -151272,7 +151293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19516 + - uid: 19439 components: - type: Transform rot: 1.5707963267948966 rad @@ -151280,7 +151301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19517 + - uid: 19440 components: - type: Transform rot: 1.5707963267948966 rad @@ -151288,7 +151309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19518 + - uid: 19441 components: - type: Transform rot: 1.5707963267948966 rad @@ -151296,7 +151317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19519 + - uid: 19442 components: - type: Transform rot: 1.5707963267948966 rad @@ -151304,49 +151325,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19520 + - uid: 19443 components: - type: Transform pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19521 + - uid: 19444 components: - type: Transform pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19522 + - uid: 19445 components: - type: Transform pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19523 + - uid: 19446 components: - type: Transform pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19524 + - uid: 19447 components: - type: Transform pos: -25.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19525 + - uid: 19448 components: - type: Transform pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19526 + - uid: 19449 components: - type: Transform rot: -1.5707963267948966 rad @@ -151354,7 +151375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19527 + - uid: 19450 components: - type: Transform rot: -1.5707963267948966 rad @@ -151362,7 +151383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19528 + - uid: 19451 components: - type: Transform rot: -1.5707963267948966 rad @@ -151370,7 +151391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19529 + - uid: 19452 components: - type: Transform rot: -1.5707963267948966 rad @@ -151378,7 +151399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19530 + - uid: 19453 components: - type: Transform rot: -1.5707963267948966 rad @@ -151386,7 +151407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19531 + - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad @@ -151394,7 +151415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19532 + - uid: 19455 components: - type: Transform rot: -1.5707963267948966 rad @@ -151402,7 +151423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19533 + - uid: 19456 components: - type: Transform rot: -1.5707963267948966 rad @@ -151410,7 +151431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19534 + - uid: 19457 components: - type: Transform rot: 3.141592653589793 rad @@ -151418,7 +151439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19535 + - uid: 19458 components: - type: Transform rot: 3.141592653589793 rad @@ -151426,7 +151447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19536 + - uid: 19459 components: - type: Transform rot: 3.141592653589793 rad @@ -151434,7 +151455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19537 + - uid: 19460 components: - type: Transform rot: 3.141592653589793 rad @@ -151442,7 +151463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19538 + - uid: 19461 components: - type: Transform rot: 3.141592653589793 rad @@ -151450,7 +151471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19539 + - uid: 19462 components: - type: Transform rot: 3.141592653589793 rad @@ -151458,14 +151479,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19540 + - uid: 19463 components: - type: Transform pos: -19.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19541 + - uid: 19464 components: - type: Transform rot: 3.141592653589793 rad @@ -151473,7 +151494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19542 + - uid: 19465 components: - type: Transform rot: 3.141592653589793 rad @@ -151481,7 +151502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19543 + - uid: 19466 components: - type: Transform rot: 3.141592653589793 rad @@ -151489,7 +151510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19544 + - uid: 19467 components: - type: Transform rot: 3.141592653589793 rad @@ -151497,7 +151518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19545 + - uid: 19468 components: - type: Transform rot: 3.141592653589793 rad @@ -151505,7 +151526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19546 + - uid: 19469 components: - type: Transform rot: 3.141592653589793 rad @@ -151513,7 +151534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19547 + - uid: 19470 components: - type: Transform rot: 3.141592653589793 rad @@ -151521,7 +151542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19548 + - uid: 19471 components: - type: Transform rot: 3.141592653589793 rad @@ -151529,7 +151550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19549 + - uid: 19472 components: - type: Transform rot: 3.141592653589793 rad @@ -151537,7 +151558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19550 + - uid: 19473 components: - type: Transform rot: 3.141592653589793 rad @@ -151545,7 +151566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19551 + - uid: 19474 components: - type: Transform rot: 3.141592653589793 rad @@ -151553,7 +151574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19552 + - uid: 19475 components: - type: Transform rot: 3.141592653589793 rad @@ -151561,7 +151582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19553 + - uid: 19476 components: - type: Transform rot: 3.141592653589793 rad @@ -151569,7 +151590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19554 + - uid: 19477 components: - type: Transform rot: 3.141592653589793 rad @@ -151577,7 +151598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19555 + - uid: 19478 components: - type: Transform rot: 3.141592653589793 rad @@ -151585,7 +151606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19556 + - uid: 19479 components: - type: Transform rot: 3.141592653589793 rad @@ -151593,7 +151614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19557 + - uid: 19480 components: - type: Transform rot: 3.141592653589793 rad @@ -151601,7 +151622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19558 + - uid: 19481 components: - type: Transform rot: 3.141592653589793 rad @@ -151609,7 +151630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19559 + - uid: 19482 components: - type: Transform rot: 3.141592653589793 rad @@ -151617,7 +151638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19560 + - uid: 19483 components: - type: Transform rot: 3.141592653589793 rad @@ -151625,7 +151646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19561 + - uid: 19484 components: - type: Transform rot: 3.141592653589793 rad @@ -151633,7 +151654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19562 + - uid: 19485 components: - type: Transform rot: 3.141592653589793 rad @@ -151641,7 +151662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19563 + - uid: 19486 components: - type: Transform rot: 3.141592653589793 rad @@ -151649,7 +151670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19564 + - uid: 19487 components: - type: Transform rot: 3.141592653589793 rad @@ -151657,7 +151678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19565 + - uid: 19488 components: - type: Transform rot: 3.141592653589793 rad @@ -151665,35 +151686,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19566 + - uid: 19489 components: - type: Transform pos: -19.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19567 + - uid: 19490 components: - type: Transform pos: -17.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19568 + - uid: 19491 components: - type: Transform pos: -19.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19569 + - uid: 19492 components: - type: Transform pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19570 + - uid: 19493 components: - type: Transform rot: -1.5707963267948966 rad @@ -151701,7 +151722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19571 + - uid: 19494 components: - type: Transform rot: -1.5707963267948966 rad @@ -151709,14 +151730,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19572 + - uid: 19495 components: - type: Transform pos: -17.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19573 + - uid: 19496 components: - type: Transform rot: -1.5707963267948966 rad @@ -151724,7 +151745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19574 + - uid: 19497 components: - type: Transform rot: -1.5707963267948966 rad @@ -151732,7 +151753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19575 + - uid: 19498 components: - type: Transform rot: -1.5707963267948966 rad @@ -151740,7 +151761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19576 + - uid: 19499 components: - type: Transform rot: -1.5707963267948966 rad @@ -151748,63 +151769,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19577 + - uid: 19500 components: - type: Transform pos: -19.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19578 + - uid: 19501 components: - type: Transform pos: -17.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19579 + - uid: 19502 components: - type: Transform pos: -19.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19580 + - uid: 19503 components: - type: Transform pos: -17.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19581 + - uid: 19504 components: - type: Transform pos: -17.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19582 + - uid: 19505 components: - type: Transform pos: -19.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19583 + - uid: 19506 components: - type: Transform pos: -19.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19584 + - uid: 19507 components: - type: Transform pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19585 + - uid: 19508 components: - type: Transform rot: 3.141592653589793 rad @@ -151812,7 +151833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19586 + - uid: 19509 components: - type: Transform rot: 3.141592653589793 rad @@ -151820,7 +151841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19587 + - uid: 19510 components: - type: Transform rot: 3.141592653589793 rad @@ -151828,7 +151849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19588 + - uid: 19511 components: - type: Transform rot: 3.141592653589793 rad @@ -151836,7 +151857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19589 + - uid: 19512 components: - type: Transform rot: 1.5707963267948966 rad @@ -151844,7 +151865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19590 + - uid: 19513 components: - type: Transform rot: 1.5707963267948966 rad @@ -151852,7 +151873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19591 + - uid: 19514 components: - type: Transform rot: 1.5707963267948966 rad @@ -151860,7 +151881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19592 + - uid: 19515 components: - type: Transform rot: 1.5707963267948966 rad @@ -151868,7 +151889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19593 + - uid: 19516 components: - type: Transform rot: 1.5707963267948966 rad @@ -151876,7 +151897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19594 + - uid: 19517 components: - type: Transform rot: 1.5707963267948966 rad @@ -151884,7 +151905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19595 + - uid: 19518 components: - type: Transform rot: 1.5707963267948966 rad @@ -151892,7 +151913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19596 + - uid: 19519 components: - type: Transform rot: 1.5707963267948966 rad @@ -151900,21 +151921,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19597 + - uid: 19520 components: - type: Transform pos: -19.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19598 + - uid: 19521 components: - type: Transform pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19599 + - uid: 19522 components: - type: Transform rot: 3.141592653589793 rad @@ -151922,7 +151943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19600 + - uid: 19523 components: - type: Transform rot: 3.141592653589793 rad @@ -151930,7 +151951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19601 + - uid: 19524 components: - type: Transform rot: 1.5707963267948966 rad @@ -151938,7 +151959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19602 + - uid: 19525 components: - type: Transform rot: 1.5707963267948966 rad @@ -151946,7 +151967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19603 + - uid: 19526 components: - type: Transform rot: 1.5707963267948966 rad @@ -151954,7 +151975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19604 + - uid: 19527 components: - type: Transform rot: 1.5707963267948966 rad @@ -151962,7 +151983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19605 + - uid: 19528 components: - type: Transform rot: 1.5707963267948966 rad @@ -151970,7 +151991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19606 + - uid: 19529 components: - type: Transform rot: 1.5707963267948966 rad @@ -151978,7 +151999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19607 + - uid: 19530 components: - type: Transform rot: 1.5707963267948966 rad @@ -151986,7 +152007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19608 + - uid: 19531 components: - type: Transform rot: 1.5707963267948966 rad @@ -151994,7 +152015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19609 + - uid: 19532 components: - type: Transform rot: 1.5707963267948966 rad @@ -152002,7 +152023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19610 + - uid: 19533 components: - type: Transform rot: 1.5707963267948966 rad @@ -152010,7 +152031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19611 + - uid: 19534 components: - type: Transform rot: 1.5707963267948966 rad @@ -152018,7 +152039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19612 + - uid: 19535 components: - type: Transform rot: 1.5707963267948966 rad @@ -152026,7 +152047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19613 + - uid: 19536 components: - type: Transform rot: 1.5707963267948966 rad @@ -152034,7 +152055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19614 + - uid: 19537 components: - type: Transform rot: 1.5707963267948966 rad @@ -152042,7 +152063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19615 + - uid: 19538 components: - type: Transform rot: -1.5707963267948966 rad @@ -152050,7 +152071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19616 + - uid: 19539 components: - type: Transform rot: -1.5707963267948966 rad @@ -152058,7 +152079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19617 + - uid: 19540 components: - type: Transform rot: -1.5707963267948966 rad @@ -152066,7 +152087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19618 + - uid: 19541 components: - type: Transform rot: -1.5707963267948966 rad @@ -152074,7 +152095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19619 + - uid: 19542 components: - type: Transform rot: -1.5707963267948966 rad @@ -152082,7 +152103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19620 + - uid: 19543 components: - type: Transform rot: -1.5707963267948966 rad @@ -152090,7 +152111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19621 + - uid: 19544 components: - type: Transform rot: 1.5707963267948966 rad @@ -152098,7 +152119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19622 + - uid: 19545 components: - type: Transform rot: -1.5707963267948966 rad @@ -152106,7 +152127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19623 + - uid: 19546 components: - type: Transform rot: -1.5707963267948966 rad @@ -152114,7 +152135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19624 + - uid: 19547 components: - type: Transform rot: -1.5707963267948966 rad @@ -152122,7 +152143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19625 + - uid: 19548 components: - type: Transform rot: -1.5707963267948966 rad @@ -152130,7 +152151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19626 + - uid: 19549 components: - type: Transform rot: -1.5707963267948966 rad @@ -152138,7 +152159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19627 + - uid: 19550 components: - type: Transform rot: -1.5707963267948966 rad @@ -152146,7 +152167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19628 + - uid: 19551 components: - type: Transform rot: 1.5707963267948966 rad @@ -152154,7 +152175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19629 + - uid: 19552 components: - type: Transform rot: 1.5707963267948966 rad @@ -152162,7 +152183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19630 + - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad @@ -152170,7 +152191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19631 + - uid: 19554 components: - type: Transform rot: 1.5707963267948966 rad @@ -152178,7 +152199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19632 + - uid: 19555 components: - type: Transform rot: 1.5707963267948966 rad @@ -152186,7 +152207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19633 + - uid: 19556 components: - type: Transform rot: 1.5707963267948966 rad @@ -152194,7 +152215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19634 + - uid: 19557 components: - type: Transform rot: 1.5707963267948966 rad @@ -152202,7 +152223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19635 + - uid: 19558 components: - type: Transform rot: 1.5707963267948966 rad @@ -152210,7 +152231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19636 + - uid: 19559 components: - type: Transform rot: 1.5707963267948966 rad @@ -152218,7 +152239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19637 + - uid: 19560 components: - type: Transform rot: 1.5707963267948966 rad @@ -152226,7 +152247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19638 + - uid: 19561 components: - type: Transform rot: 1.5707963267948966 rad @@ -152234,7 +152255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19639 + - uid: 19562 components: - type: Transform rot: 1.5707963267948966 rad @@ -152242,7 +152263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19640 + - uid: 19563 components: - type: Transform rot: 1.5707963267948966 rad @@ -152250,7 +152271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19641 + - uid: 19564 components: - type: Transform rot: 1.5707963267948966 rad @@ -152258,7 +152279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19642 + - uid: 19565 components: - type: Transform rot: 1.5707963267948966 rad @@ -152266,7 +152287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19643 + - uid: 19566 components: - type: Transform rot: 1.5707963267948966 rad @@ -152274,7 +152295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19644 + - uid: 19567 components: - type: Transform rot: 1.5707963267948966 rad @@ -152282,7 +152303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19645 + - uid: 19568 components: - type: Transform rot: 1.5707963267948966 rad @@ -152290,14 +152311,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19646 + - uid: 19569 components: - type: Transform pos: 5.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19647 + - uid: 19570 components: - type: Transform rot: 1.5707963267948966 rad @@ -152305,7 +152326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19648 + - uid: 19571 components: - type: Transform rot: 1.5707963267948966 rad @@ -152313,14 +152334,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19649 + - uid: 19572 components: - type: Transform pos: 5.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19650 + - uid: 19573 components: - type: Transform rot: 1.5707963267948966 rad @@ -152328,7 +152349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19651 + - uid: 19574 components: - type: Transform rot: 1.5707963267948966 rad @@ -152336,7 +152357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19652 + - uid: 19575 components: - type: Transform rot: 1.5707963267948966 rad @@ -152344,7 +152365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19653 + - uid: 19576 components: - type: Transform rot: 1.5707963267948966 rad @@ -152352,7 +152373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19654 + - uid: 19577 components: - type: Transform rot: 1.5707963267948966 rad @@ -152360,7 +152381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19655 + - uid: 19578 components: - type: Transform rot: 1.5707963267948966 rad @@ -152368,7 +152389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19656 + - uid: 19579 components: - type: Transform rot: -1.5707963267948966 rad @@ -152376,7 +152397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19657 + - uid: 19580 components: - type: Transform rot: -1.5707963267948966 rad @@ -152384,7 +152405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19658 + - uid: 19581 components: - type: Transform rot: 3.141592653589793 rad @@ -152392,7 +152413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19659 + - uid: 19582 components: - type: Transform rot: 3.141592653589793 rad @@ -152400,7 +152421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19660 + - uid: 19583 components: - type: Transform rot: 3.141592653589793 rad @@ -152408,7 +152429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19661 + - uid: 19584 components: - type: Transform rot: 3.141592653589793 rad @@ -152416,7 +152437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19662 + - uid: 19585 components: - type: Transform rot: 3.141592653589793 rad @@ -152424,7 +152445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19663 + - uid: 19586 components: - type: Transform rot: 3.141592653589793 rad @@ -152432,7 +152453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19664 + - uid: 19587 components: - type: Transform rot: 3.141592653589793 rad @@ -152440,7 +152461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19665 + - uid: 19588 components: - type: Transform rot: 3.141592653589793 rad @@ -152448,7 +152469,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19666 + - uid: 19589 components: - type: Transform rot: 3.141592653589793 rad @@ -152456,7 +152477,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19667 + - uid: 19590 components: - type: Transform rot: 3.141592653589793 rad @@ -152464,7 +152485,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19668 + - uid: 19591 components: - type: Transform rot: 3.141592653589793 rad @@ -152472,7 +152493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19669 + - uid: 19592 components: - type: Transform rot: 3.141592653589793 rad @@ -152480,7 +152501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19670 + - uid: 19593 components: - type: Transform rot: 3.141592653589793 rad @@ -152488,7 +152509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19671 + - uid: 19594 components: - type: Transform rot: 3.141592653589793 rad @@ -152496,7 +152517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19672 + - uid: 19595 components: - type: Transform rot: -1.5707963267948966 rad @@ -152504,7 +152525,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19673 + - uid: 19596 components: - type: Transform rot: 3.141592653589793 rad @@ -152512,7 +152533,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19674 + - uid: 19597 components: - type: Transform rot: 3.141592653589793 rad @@ -152520,14 +152541,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19675 + - uid: 19598 components: - type: Transform pos: 16.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19676 + - uid: 19599 components: - type: Transform rot: 3.141592653589793 rad @@ -152535,7 +152556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19677 + - uid: 19600 components: - type: Transform rot: 3.141592653589793 rad @@ -152543,7 +152564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19678 + - uid: 19601 components: - type: Transform rot: 3.141592653589793 rad @@ -152551,7 +152572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19679 + - uid: 19602 components: - type: Transform rot: 3.141592653589793 rad @@ -152559,7 +152580,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19680 + - uid: 19603 components: - type: Transform rot: 1.5707963267948966 rad @@ -152567,7 +152588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19681 + - uid: 19604 components: - type: Transform rot: 1.5707963267948966 rad @@ -152575,7 +152596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19682 + - uid: 19605 components: - type: Transform rot: 1.5707963267948966 rad @@ -152583,7 +152604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19683 + - uid: 19606 components: - type: Transform rot: 1.5707963267948966 rad @@ -152591,7 +152612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19684 + - uid: 19607 components: - type: Transform rot: 1.5707963267948966 rad @@ -152599,7 +152620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19685 + - uid: 19608 components: - type: Transform rot: 1.5707963267948966 rad @@ -152607,7 +152628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19686 + - uid: 19609 components: - type: Transform rot: 1.5707963267948966 rad @@ -152615,7 +152636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19687 + - uid: 19610 components: - type: Transform rot: 1.5707963267948966 rad @@ -152623,7 +152644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19688 + - uid: 19611 components: - type: Transform rot: 1.5707963267948966 rad @@ -152631,7 +152652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19689 + - uid: 19612 components: - type: Transform rot: 1.5707963267948966 rad @@ -152639,7 +152660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19690 + - uid: 19613 components: - type: Transform rot: 1.5707963267948966 rad @@ -152647,7 +152668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19691 + - uid: 19614 components: - type: Transform rot: 1.5707963267948966 rad @@ -152655,7 +152676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19692 + - uid: 19615 components: - type: Transform rot: 1.5707963267948966 rad @@ -152663,7 +152684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19693 + - uid: 19616 components: - type: Transform rot: 1.5707963267948966 rad @@ -152671,7 +152692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19694 + - uid: 19617 components: - type: Transform rot: 1.5707963267948966 rad @@ -152679,7 +152700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19695 + - uid: 19618 components: - type: Transform rot: 1.5707963267948966 rad @@ -152687,7 +152708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19696 + - uid: 19619 components: - type: Transform rot: 1.5707963267948966 rad @@ -152695,7 +152716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19697 + - uid: 19620 components: - type: Transform rot: 1.5707963267948966 rad @@ -152703,7 +152724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19698 + - uid: 19621 components: - type: Transform rot: 1.5707963267948966 rad @@ -152711,7 +152732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19699 + - uid: 19622 components: - type: Transform rot: 1.5707963267948966 rad @@ -152719,7 +152740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19700 + - uid: 19623 components: - type: Transform rot: 1.5707963267948966 rad @@ -152727,7 +152748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19701 + - uid: 19624 components: - type: Transform rot: 1.5707963267948966 rad @@ -152735,7 +152756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19702 + - uid: 19625 components: - type: Transform rot: 1.5707963267948966 rad @@ -152743,7 +152764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19703 + - uid: 19626 components: - type: Transform rot: 1.5707963267948966 rad @@ -152751,7 +152772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19704 + - uid: 19627 components: - type: Transform rot: 1.5707963267948966 rad @@ -152759,7 +152780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19705 + - uid: 19628 components: - type: Transform rot: 1.5707963267948966 rad @@ -152767,7 +152788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19706 + - uid: 19629 components: - type: Transform rot: 1.5707963267948966 rad @@ -152775,7 +152796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19707 + - uid: 19630 components: - type: Transform rot: 1.5707963267948966 rad @@ -152783,7 +152804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19708 + - uid: 19631 components: - type: Transform rot: 1.5707963267948966 rad @@ -152791,7 +152812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19709 + - uid: 19632 components: - type: Transform rot: 1.5707963267948966 rad @@ -152799,7 +152820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19710 + - uid: 19633 components: - type: Transform rot: 1.5707963267948966 rad @@ -152807,7 +152828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19711 + - uid: 19634 components: - type: Transform rot: 1.5707963267948966 rad @@ -152815,7 +152836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19712 + - uid: 19635 components: - type: Transform rot: 1.5707963267948966 rad @@ -152823,7 +152844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19713 + - uid: 19636 components: - type: Transform rot: 1.5707963267948966 rad @@ -152831,7 +152852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19714 + - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad @@ -152839,7 +152860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19715 + - uid: 19638 components: - type: Transform rot: 1.5707963267948966 rad @@ -152847,7 +152868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19716 + - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad @@ -152855,7 +152876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19717 + - uid: 19640 components: - type: Transform rot: 1.5707963267948966 rad @@ -152863,7 +152884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19718 + - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad @@ -152871,7 +152892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19719 + - uid: 19642 components: - type: Transform rot: 1.5707963267948966 rad @@ -152879,7 +152900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19720 + - uid: 19643 components: - type: Transform rot: 1.5707963267948966 rad @@ -152887,7 +152908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19721 + - uid: 19644 components: - type: Transform rot: 1.5707963267948966 rad @@ -152895,7 +152916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19722 + - uid: 19645 components: - type: Transform rot: 1.5707963267948966 rad @@ -152903,7 +152924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19723 + - uid: 19646 components: - type: Transform rot: 1.5707963267948966 rad @@ -152911,7 +152932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19724 + - uid: 19647 components: - type: Transform rot: 1.5707963267948966 rad @@ -152919,7 +152940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19725 + - uid: 19648 components: - type: Transform rot: 1.5707963267948966 rad @@ -152927,7 +152948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19726 + - uid: 19649 components: - type: Transform rot: 1.5707963267948966 rad @@ -152935,7 +152956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19727 + - uid: 19650 components: - type: Transform rot: 1.5707963267948966 rad @@ -152943,7 +152964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19728 + - uid: 19651 components: - type: Transform rot: 1.5707963267948966 rad @@ -152951,7 +152972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19729 + - uid: 19652 components: - type: Transform rot: 1.5707963267948966 rad @@ -152959,7 +152980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19730 + - uid: 19653 components: - type: Transform rot: 1.5707963267948966 rad @@ -152967,7 +152988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19731 + - uid: 19654 components: - type: Transform rot: 1.5707963267948966 rad @@ -152975,7 +152996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19732 + - uid: 19655 components: - type: Transform rot: 1.5707963267948966 rad @@ -152983,7 +153004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19733 + - uid: 19656 components: - type: Transform rot: 1.5707963267948966 rad @@ -152991,7 +153012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19734 + - uid: 19657 components: - type: Transform rot: 1.5707963267948966 rad @@ -152999,7 +153020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19735 + - uid: 19658 components: - type: Transform rot: 3.141592653589793 rad @@ -153007,7 +153028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19736 + - uid: 19659 components: - type: Transform rot: 3.141592653589793 rad @@ -153015,7 +153036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19737 + - uid: 19660 components: - type: Transform rot: 3.141592653589793 rad @@ -153023,7 +153044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19738 + - uid: 19661 components: - type: Transform rot: 3.141592653589793 rad @@ -153031,7 +153052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19739 + - uid: 19662 components: - type: Transform rot: 3.141592653589793 rad @@ -153039,7 +153060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19740 + - uid: 19663 components: - type: Transform rot: 3.141592653589793 rad @@ -153047,7 +153068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19741 + - uid: 19664 components: - type: Transform rot: 3.141592653589793 rad @@ -153055,7 +153076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19742 + - uid: 19665 components: - type: Transform rot: 3.141592653589793 rad @@ -153063,7 +153084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19743 + - uid: 19666 components: - type: Transform rot: 3.141592653589793 rad @@ -153071,7 +153092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19744 + - uid: 19667 components: - type: Transform rot: 3.141592653589793 rad @@ -153079,7 +153100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19745 + - uid: 19668 components: - type: Transform rot: 3.141592653589793 rad @@ -153087,7 +153108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19746 + - uid: 19669 components: - type: Transform rot: 3.141592653589793 rad @@ -153095,7 +153116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19747 + - uid: 19670 components: - type: Transform rot: 3.141592653589793 rad @@ -153103,7 +153124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19748 + - uid: 19671 components: - type: Transform rot: 3.141592653589793 rad @@ -153111,35 +153132,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19749 + - uid: 19672 components: - type: Transform pos: -13.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19750 + - uid: 19673 components: - type: Transform pos: -13.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19751 + - uid: 19674 components: - type: Transform pos: -9.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19752 + - uid: 19675 components: - type: Transform pos: -14.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19753 + - uid: 19676 components: - type: Transform rot: 3.141592653589793 rad @@ -153147,91 +153168,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19754 + - uid: 19677 components: - type: Transform pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19755 + - uid: 19678 components: - type: Transform pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19756 + - uid: 19679 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19757 + - uid: 19680 components: - type: Transform pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19758 + - uid: 19681 components: - type: Transform pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19759 + - uid: 19682 components: - type: Transform pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19760 + - uid: 19683 components: - type: Transform pos: -3.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19761 + - uid: 19684 components: - type: Transform pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19762 + - uid: 19685 components: - type: Transform pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19763 + - uid: 19686 components: - type: Transform pos: -3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19764 + - uid: 19687 components: - type: Transform pos: -3.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19765 + - uid: 19688 components: - type: Transform pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19766 + - uid: 19689 components: - type: Transform rot: 1.5707963267948966 rad @@ -153239,7 +153260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19767 + - uid: 19690 components: - type: Transform rot: 1.5707963267948966 rad @@ -153247,7 +153268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19768 + - uid: 19691 components: - type: Transform rot: 1.5707963267948966 rad @@ -153255,7 +153276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19769 + - uid: 19692 components: - type: Transform rot: 1.5707963267948966 rad @@ -153263,7 +153284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19770 + - uid: 19693 components: - type: Transform rot: 1.5707963267948966 rad @@ -153271,35 +153292,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19771 + - uid: 19694 components: - type: Transform pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19772 + - uid: 19695 components: - type: Transform pos: 8.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19773 + - uid: 19696 components: - type: Transform pos: 8.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19774 + - uid: 19697 components: - type: Transform pos: 8.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19775 + - uid: 19698 components: - type: Transform rot: 3.141592653589793 rad @@ -153307,7 +153328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19776 + - uid: 19699 components: - type: Transform rot: 3.141592653589793 rad @@ -153315,7 +153336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19777 + - uid: 19700 components: - type: Transform rot: 3.141592653589793 rad @@ -153323,7 +153344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19778 + - uid: 19701 components: - type: Transform rot: 3.141592653589793 rad @@ -153331,7 +153352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19779 + - uid: 19702 components: - type: Transform rot: 3.141592653589793 rad @@ -153339,7 +153360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19780 + - uid: 19703 components: - type: Transform rot: 3.141592653589793 rad @@ -153347,7 +153368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19781 + - uid: 19704 components: - type: Transform rot: 3.141592653589793 rad @@ -153355,7 +153376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19782 + - uid: 19705 components: - type: Transform rot: 3.141592653589793 rad @@ -153363,7 +153384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19783 + - uid: 19706 components: - type: Transform rot: 3.141592653589793 rad @@ -153371,7 +153392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19784 + - uid: 19707 components: - type: Transform rot: 3.141592653589793 rad @@ -153379,7 +153400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19785 + - uid: 19708 components: - type: Transform rot: 3.141592653589793 rad @@ -153387,7 +153408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19786 + - uid: 19709 components: - type: Transform rot: 3.141592653589793 rad @@ -153395,7 +153416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19787 + - uid: 19710 components: - type: Transform rot: 3.141592653589793 rad @@ -153403,7 +153424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19788 + - uid: 19711 components: - type: Transform rot: 3.141592653589793 rad @@ -153411,7 +153432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19789 + - uid: 19712 components: - type: Transform rot: 3.141592653589793 rad @@ -153419,7 +153440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19790 + - uid: 19713 components: - type: Transform rot: 3.141592653589793 rad @@ -153427,7 +153448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19791 + - uid: 19714 components: - type: Transform rot: 3.141592653589793 rad @@ -153435,7 +153456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19792 + - uid: 19715 components: - type: Transform rot: 3.141592653589793 rad @@ -153443,7 +153464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19793 + - uid: 19716 components: - type: Transform rot: 3.141592653589793 rad @@ -153451,7 +153472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19794 + - uid: 19717 components: - type: Transform rot: 3.141592653589793 rad @@ -153459,7 +153480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19795 + - uid: 19718 components: - type: Transform rot: 3.141592653589793 rad @@ -153467,7 +153488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19796 + - uid: 19719 components: - type: Transform rot: 3.141592653589793 rad @@ -153475,7 +153496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19797 + - uid: 19720 components: - type: Transform rot: 3.141592653589793 rad @@ -153483,7 +153504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19798 + - uid: 19721 components: - type: Transform rot: 3.141592653589793 rad @@ -153491,7 +153512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19799 + - uid: 19722 components: - type: Transform rot: 3.141592653589793 rad @@ -153499,7 +153520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19800 + - uid: 19723 components: - type: Transform rot: 3.141592653589793 rad @@ -153507,7 +153528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19801 + - uid: 19724 components: - type: Transform rot: 3.141592653589793 rad @@ -153515,7 +153536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19802 + - uid: 19725 components: - type: Transform rot: 3.141592653589793 rad @@ -153523,70 +153544,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19803 + - uid: 19726 components: - type: Transform pos: 18.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19804 + - uid: 19727 components: - type: Transform pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19805 + - uid: 19728 components: - type: Transform pos: 16.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19806 + - uid: 19729 components: - type: Transform pos: 16.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19807 + - uid: 19730 components: - type: Transform pos: 18.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19808 + - uid: 19731 components: - type: Transform pos: 18.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19809 + - uid: 19732 components: - type: Transform pos: 16.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19810 + - uid: 19733 components: - type: Transform pos: 16.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19811 + - uid: 19734 components: - type: Transform pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19812 + - uid: 19735 components: - type: Transform rot: 1.5707963267948966 rad @@ -153594,7 +153615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19813 + - uid: 19736 components: - type: Transform rot: 1.5707963267948966 rad @@ -153602,7 +153623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19814 + - uid: 19737 components: - type: Transform rot: 1.5707963267948966 rad @@ -153610,7 +153631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19815 + - uid: 19738 components: - type: Transform rot: 1.5707963267948966 rad @@ -153618,7 +153639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19816 + - uid: 19739 components: - type: Transform rot: 1.5707963267948966 rad @@ -153626,7 +153647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19817 + - uid: 19740 components: - type: Transform rot: 1.5707963267948966 rad @@ -153634,7 +153655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19818 + - uid: 19741 components: - type: Transform rot: 1.5707963267948966 rad @@ -153642,7 +153663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19819 + - uid: 19742 components: - type: Transform rot: 1.5707963267948966 rad @@ -153650,7 +153671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19820 + - uid: 19743 components: - type: Transform rot: 1.5707963267948966 rad @@ -153658,7 +153679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19821 + - uid: 19744 components: - type: Transform rot: 1.5707963267948966 rad @@ -153666,7 +153687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19822 + - uid: 19745 components: - type: Transform rot: 1.5707963267948966 rad @@ -153674,7 +153695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19823 + - uid: 19746 components: - type: Transform rot: 1.5707963267948966 rad @@ -153682,7 +153703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19824 + - uid: 19747 components: - type: Transform rot: 1.5707963267948966 rad @@ -153690,7 +153711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19825 + - uid: 19748 components: - type: Transform rot: 1.5707963267948966 rad @@ -153698,7 +153719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19826 + - uid: 19749 components: - type: Transform rot: 1.5707963267948966 rad @@ -153706,7 +153727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19827 + - uid: 19750 components: - type: Transform rot: 1.5707963267948966 rad @@ -153714,7 +153735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19828 + - uid: 19751 components: - type: Transform rot: 1.5707963267948966 rad @@ -153722,14 +153743,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19829 + - uid: 19752 components: - type: Transform pos: 18.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19830 + - uid: 19753 components: - type: Transform rot: -1.5707963267948966 rad @@ -153737,7 +153758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19831 + - uid: 19754 components: - type: Transform rot: -1.5707963267948966 rad @@ -153745,7 +153766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19832 + - uid: 19755 components: - type: Transform rot: -1.5707963267948966 rad @@ -153753,7 +153774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19833 + - uid: 19756 components: - type: Transform rot: -1.5707963267948966 rad @@ -153761,7 +153782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19834 + - uid: 19757 components: - type: Transform rot: -1.5707963267948966 rad @@ -153769,7 +153790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19835 + - uid: 19758 components: - type: Transform rot: 3.141592653589793 rad @@ -153777,7 +153798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19836 + - uid: 19759 components: - type: Transform rot: 3.141592653589793 rad @@ -153785,7 +153806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19837 + - uid: 19760 components: - type: Transform rot: -1.5707963267948966 rad @@ -153793,7 +153814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19838 + - uid: 19761 components: - type: Transform rot: -1.5707963267948966 rad @@ -153801,7 +153822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19839 + - uid: 19762 components: - type: Transform rot: -1.5707963267948966 rad @@ -153809,7 +153830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19840 + - uid: 19763 components: - type: Transform rot: -1.5707963267948966 rad @@ -153817,7 +153838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19841 + - uid: 19764 components: - type: Transform rot: -1.5707963267948966 rad @@ -153825,7 +153846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19842 + - uid: 19765 components: - type: Transform rot: -1.5707963267948966 rad @@ -153833,7 +153854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19843 + - uid: 19766 components: - type: Transform rot: -1.5707963267948966 rad @@ -153841,7 +153862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19844 + - uid: 19767 components: - type: Transform rot: -1.5707963267948966 rad @@ -153849,7 +153870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19845 + - uid: 19768 components: - type: Transform rot: -1.5707963267948966 rad @@ -153857,7 +153878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19846 + - uid: 19769 components: - type: Transform rot: -1.5707963267948966 rad @@ -153865,7 +153886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19847 + - uid: 19770 components: - type: Transform rot: -1.5707963267948966 rad @@ -153873,7 +153894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19848 + - uid: 19771 components: - type: Transform rot: -1.5707963267948966 rad @@ -153881,7 +153902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19849 + - uid: 19772 components: - type: Transform rot: -1.5707963267948966 rad @@ -153889,7 +153910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19850 + - uid: 19773 components: - type: Transform rot: -1.5707963267948966 rad @@ -153897,7 +153918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19851 + - uid: 19774 components: - type: Transform rot: -1.5707963267948966 rad @@ -153905,7 +153926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19852 + - uid: 19775 components: - type: Transform rot: -1.5707963267948966 rad @@ -153913,7 +153934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19853 + - uid: 19776 components: - type: Transform rot: -1.5707963267948966 rad @@ -153921,7 +153942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19854 + - uid: 19777 components: - type: Transform rot: -1.5707963267948966 rad @@ -153929,42 +153950,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19855 + - uid: 19778 components: - type: Transform pos: -19.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19856 + - uid: 19779 components: - type: Transform pos: -19.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19857 + - uid: 19780 components: - type: Transform pos: -19.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19858 + - uid: 19781 components: - type: Transform pos: -17.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19859 + - uid: 19782 components: - type: Transform pos: -17.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19860 + - uid: 19783 components: - type: Transform rot: -1.5707963267948966 rad @@ -153972,7 +153993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19861 + - uid: 19784 components: - type: Transform rot: -1.5707963267948966 rad @@ -153980,7 +154001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19862 + - uid: 19785 components: - type: Transform rot: -1.5707963267948966 rad @@ -153988,7 +154009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19863 + - uid: 19786 components: - type: Transform rot: -1.5707963267948966 rad @@ -153996,7 +154017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19864 + - uid: 19787 components: - type: Transform rot: -1.5707963267948966 rad @@ -154004,7 +154025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19865 + - uid: 19788 components: - type: Transform rot: -1.5707963267948966 rad @@ -154012,7 +154033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19866 + - uid: 19789 components: - type: Transform rot: -1.5707963267948966 rad @@ -154020,7 +154041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19867 + - uid: 19790 components: - type: Transform rot: -1.5707963267948966 rad @@ -154028,7 +154049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19868 + - uid: 19791 components: - type: Transform rot: -1.5707963267948966 rad @@ -154036,7 +154057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19869 + - uid: 19792 components: - type: Transform rot: -1.5707963267948966 rad @@ -154044,7 +154065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19870 + - uid: 19793 components: - type: Transform rot: -1.5707963267948966 rad @@ -154052,7 +154073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19871 + - uid: 19794 components: - type: Transform rot: -1.5707963267948966 rad @@ -154060,7 +154081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19872 + - uid: 19795 components: - type: Transform rot: 1.5707963267948966 rad @@ -154068,7 +154089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19873 + - uid: 19796 components: - type: Transform rot: -1.5707963267948966 rad @@ -154076,7 +154097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19874 + - uid: 19797 components: - type: Transform rot: -1.5707963267948966 rad @@ -154084,7 +154105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19875 + - uid: 19798 components: - type: Transform rot: -1.5707963267948966 rad @@ -154092,7 +154113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19876 + - uid: 19799 components: - type: Transform rot: -1.5707963267948966 rad @@ -154100,7 +154121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19877 + - uid: 19800 components: - type: Transform rot: -1.5707963267948966 rad @@ -154108,7 +154129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19878 + - uid: 19801 components: - type: Transform rot: -1.5707963267948966 rad @@ -154116,7 +154137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19879 + - uid: 19802 components: - type: Transform rot: -1.5707963267948966 rad @@ -154124,7 +154145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19880 + - uid: 19803 components: - type: Transform rot: -1.5707963267948966 rad @@ -154132,7 +154153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19881 + - uid: 19804 components: - type: Transform rot: -1.5707963267948966 rad @@ -154140,7 +154161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19882 + - uid: 19805 components: - type: Transform rot: -1.5707963267948966 rad @@ -154148,7 +154169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19883 + - uid: 19806 components: - type: Transform rot: 1.5707963267948966 rad @@ -154156,7 +154177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19884 + - uid: 19807 components: - type: Transform rot: 1.5707963267948966 rad @@ -154164,7 +154185,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19885 + - uid: 19808 components: - type: Transform rot: 1.5707963267948966 rad @@ -154172,7 +154193,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19886 + - uid: 19809 components: - type: Transform rot: 1.5707963267948966 rad @@ -154180,7 +154201,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19887 + - uid: 19810 components: - type: Transform rot: 1.5707963267948966 rad @@ -154188,7 +154209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19888 + - uid: 19811 components: - type: Transform rot: 1.5707963267948966 rad @@ -154196,7 +154217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19889 + - uid: 19812 components: - type: Transform rot: 1.5707963267948966 rad @@ -154204,7 +154225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19890 + - uid: 19813 components: - type: Transform rot: 1.5707963267948966 rad @@ -154212,7 +154233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19891 + - uid: 19814 components: - type: Transform rot: 1.5707963267948966 rad @@ -154220,7 +154241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19892 + - uid: 19815 components: - type: Transform rot: 1.5707963267948966 rad @@ -154228,7 +154249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19893 + - uid: 19816 components: - type: Transform rot: 1.5707963267948966 rad @@ -154236,7 +154257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19894 + - uid: 19817 components: - type: Transform rot: 1.5707963267948966 rad @@ -154244,7 +154265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19895 + - uid: 19818 components: - type: Transform rot: 1.5707963267948966 rad @@ -154252,7 +154273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19896 + - uid: 19819 components: - type: Transform rot: 1.5707963267948966 rad @@ -154260,7 +154281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19897 + - uid: 19820 components: - type: Transform rot: 1.5707963267948966 rad @@ -154268,7 +154289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19898 + - uid: 19821 components: - type: Transform rot: 1.5707963267948966 rad @@ -154276,7 +154297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19899 + - uid: 19822 components: - type: Transform rot: 1.5707963267948966 rad @@ -154284,7 +154305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19900 + - uid: 19823 components: - type: Transform rot: 1.5707963267948966 rad @@ -154292,7 +154313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19901 + - uid: 19824 components: - type: Transform rot: 1.5707963267948966 rad @@ -154300,7 +154321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19902 + - uid: 19825 components: - type: Transform rot: 1.5707963267948966 rad @@ -154308,70 +154329,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19903 + - uid: 19826 components: - type: Transform pos: -17.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19904 + - uid: 19827 components: - type: Transform pos: -17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19905 + - uid: 19828 components: - type: Transform pos: -19.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19906 + - uid: 19829 components: - type: Transform pos: -17.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19907 + - uid: 19830 components: - type: Transform pos: -19.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19908 + - uid: 19831 components: - type: Transform pos: -17.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19909 + - uid: 19832 components: - type: Transform pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19910 + - uid: 19833 components: - type: Transform pos: -19.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19911 + - uid: 19834 components: - type: Transform pos: -17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19912 + - uid: 19835 components: - type: Transform rot: -1.5707963267948966 rad @@ -154379,7 +154400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19913 + - uid: 19836 components: - type: Transform rot: -1.5707963267948966 rad @@ -154387,7 +154408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19914 + - uid: 19837 components: - type: Transform rot: -1.5707963267948966 rad @@ -154395,7 +154416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19915 + - uid: 19838 components: - type: Transform rot: 3.141592653589793 rad @@ -154403,7 +154424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19916 + - uid: 19839 components: - type: Transform rot: 3.141592653589793 rad @@ -154411,7 +154432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19917 + - uid: 19840 components: - type: Transform rot: 3.141592653589793 rad @@ -154419,35 +154440,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19918 + - uid: 19841 components: - type: Transform pos: -19.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19919 + - uid: 19842 components: - type: Transform pos: -19.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19920 + - uid: 19843 components: - type: Transform pos: -17.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19921 + - uid: 19844 components: - type: Transform pos: -17.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19922 + - uid: 19845 components: - type: Transform rot: -1.5707963267948966 rad @@ -154455,7 +154476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19923 + - uid: 19846 components: - type: Transform rot: -1.5707963267948966 rad @@ -154463,7 +154484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19924 + - uid: 19847 components: - type: Transform rot: 3.141592653589793 rad @@ -154471,7 +154492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19925 + - uid: 19848 components: - type: Transform rot: 3.141592653589793 rad @@ -154479,7 +154500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19926 + - uid: 19849 components: - type: Transform rot: 3.141592653589793 rad @@ -154487,7 +154508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19927 + - uid: 19850 components: - type: Transform rot: 3.141592653589793 rad @@ -154495,7 +154516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19928 + - uid: 19851 components: - type: Transform rot: 1.5707963267948966 rad @@ -154503,7 +154524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19929 + - uid: 19852 components: - type: Transform rot: 1.5707963267948966 rad @@ -154511,7 +154532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19930 + - uid: 19853 components: - type: Transform rot: 1.5707963267948966 rad @@ -154519,7 +154540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19931 + - uid: 19854 components: - type: Transform rot: 1.5707963267948966 rad @@ -154527,7 +154548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19932 + - uid: 19855 components: - type: Transform rot: 1.5707963267948966 rad @@ -154535,7 +154556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19933 + - uid: 19856 components: - type: Transform rot: 1.5707963267948966 rad @@ -154543,7 +154564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19934 + - uid: 19857 components: - type: Transform rot: 1.5707963267948966 rad @@ -154551,7 +154572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19935 + - uid: 19858 components: - type: Transform rot: 1.5707963267948966 rad @@ -154559,7 +154580,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19936 + - uid: 19859 components: - type: Transform rot: 1.5707963267948966 rad @@ -154567,7 +154588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19937 + - uid: 19860 components: - type: Transform rot: 1.5707963267948966 rad @@ -154575,7 +154596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19938 + - uid: 19861 components: - type: Transform rot: 1.5707963267948966 rad @@ -154583,7 +154604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19939 + - uid: 19862 components: - type: Transform rot: 1.5707963267948966 rad @@ -154591,7 +154612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19940 + - uid: 19863 components: - type: Transform rot: 1.5707963267948966 rad @@ -154599,7 +154620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19941 + - uid: 19864 components: - type: Transform rot: 1.5707963267948966 rad @@ -154607,7 +154628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19942 + - uid: 19865 components: - type: Transform rot: 1.5707963267948966 rad @@ -154615,7 +154636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19943 + - uid: 19866 components: - type: Transform rot: -1.5707963267948966 rad @@ -154623,7 +154644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19944 + - uid: 19867 components: - type: Transform rot: 1.5707963267948966 rad @@ -154631,7 +154652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19945 + - uid: 19868 components: - type: Transform rot: 1.5707963267948966 rad @@ -154639,7 +154660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19946 + - uid: 19869 components: - type: Transform rot: 1.5707963267948966 rad @@ -154647,7 +154668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19947 + - uid: 19870 components: - type: Transform rot: 1.5707963267948966 rad @@ -154655,7 +154676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19948 + - uid: 19871 components: - type: Transform rot: 1.5707963267948966 rad @@ -154663,7 +154684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19949 + - uid: 19872 components: - type: Transform rot: 1.5707963267948966 rad @@ -154671,7 +154692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19950 + - uid: 19873 components: - type: Transform rot: 1.5707963267948966 rad @@ -154679,7 +154700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19951 + - uid: 19874 components: - type: Transform rot: 1.5707963267948966 rad @@ -154687,7 +154708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19952 + - uid: 19875 components: - type: Transform rot: 1.5707963267948966 rad @@ -154695,7 +154716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19953 + - uid: 19876 components: - type: Transform rot: 1.5707963267948966 rad @@ -154703,7 +154724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19954 + - uid: 19877 components: - type: Transform rot: 1.5707963267948966 rad @@ -154711,7 +154732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19955 + - uid: 19878 components: - type: Transform rot: 1.5707963267948966 rad @@ -154719,7 +154740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19956 + - uid: 19879 components: - type: Transform rot: 1.5707963267948966 rad @@ -154727,7 +154748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19957 + - uid: 19880 components: - type: Transform rot: 1.5707963267948966 rad @@ -154735,7 +154756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19958 + - uid: 19881 components: - type: Transform rot: 1.5707963267948966 rad @@ -154743,7 +154764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19959 + - uid: 19882 components: - type: Transform rot: 1.5707963267948966 rad @@ -154751,7 +154772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19960 + - uid: 19883 components: - type: Transform rot: 1.5707963267948966 rad @@ -154759,7 +154780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19961 + - uid: 19884 components: - type: Transform rot: 1.5707963267948966 rad @@ -154767,7 +154788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19962 + - uid: 19885 components: - type: Transform rot: 1.5707963267948966 rad @@ -154775,7 +154796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19963 + - uid: 19886 components: - type: Transform rot: 1.5707963267948966 rad @@ -154783,7 +154804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19964 + - uid: 19887 components: - type: Transform rot: 1.5707963267948966 rad @@ -154791,7 +154812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19965 + - uid: 19888 components: - type: Transform rot: 1.5707963267948966 rad @@ -154799,7 +154820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19966 + - uid: 19889 components: - type: Transform rot: 1.5707963267948966 rad @@ -154807,7 +154828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19967 + - uid: 19890 components: - type: Transform rot: 1.5707963267948966 rad @@ -154815,7 +154836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19968 + - uid: 19891 components: - type: Transform rot: 3.141592653589793 rad @@ -154823,7 +154844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19969 + - uid: 19892 components: - type: Transform rot: 3.141592653589793 rad @@ -154831,7 +154852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19970 + - uid: 19893 components: - type: Transform rot: 1.5707963267948966 rad @@ -154839,7 +154860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19971 + - uid: 19894 components: - type: Transform rot: 3.141592653589793 rad @@ -154847,7 +154868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19972 + - uid: 19895 components: - type: Transform rot: 1.5707963267948966 rad @@ -154855,7 +154876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19973 + - uid: 19896 components: - type: Transform rot: 1.5707963267948966 rad @@ -154863,7 +154884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19974 + - uid: 19897 components: - type: Transform rot: 1.5707963267948966 rad @@ -154871,7 +154892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19975 + - uid: 19898 components: - type: Transform rot: 1.5707963267948966 rad @@ -154879,7 +154900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19976 + - uid: 19899 components: - type: Transform rot: 1.5707963267948966 rad @@ -154887,7 +154908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19977 + - uid: 19900 components: - type: Transform rot: 1.5707963267948966 rad @@ -154895,7 +154916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19978 + - uid: 19901 components: - type: Transform rot: 1.5707963267948966 rad @@ -154903,7 +154924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19979 + - uid: 19902 components: - type: Transform rot: 1.5707963267948966 rad @@ -154911,7 +154932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19980 + - uid: 19903 components: - type: Transform rot: 3.141592653589793 rad @@ -154919,7 +154940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19981 + - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad @@ -154927,7 +154948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19982 + - uid: 19905 components: - type: Transform rot: 3.141592653589793 rad @@ -154935,7 +154956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19983 + - uid: 19906 components: - type: Transform rot: -1.5707963267948966 rad @@ -154943,7 +154964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19984 + - uid: 19907 components: - type: Transform rot: -1.5707963267948966 rad @@ -154951,7 +154972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19985 + - uid: 19908 components: - type: Transform rot: -1.5707963267948966 rad @@ -154959,7 +154980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19986 + - uid: 19909 components: - type: Transform rot: -1.5707963267948966 rad @@ -154967,7 +154988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19987 + - uid: 19910 components: - type: Transform rot: -1.5707963267948966 rad @@ -154975,7 +154996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19988 + - uid: 19911 components: - type: Transform rot: -1.5707963267948966 rad @@ -154983,7 +155004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19989 + - uid: 19912 components: - type: Transform rot: -1.5707963267948966 rad @@ -154991,7 +155012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19990 + - uid: 19913 components: - type: Transform rot: -1.5707963267948966 rad @@ -154999,7 +155020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19991 + - uid: 19914 components: - type: Transform rot: -1.5707963267948966 rad @@ -155007,7 +155028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19992 + - uid: 19915 components: - type: Transform rot: -1.5707963267948966 rad @@ -155015,7 +155036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19993 + - uid: 19916 components: - type: Transform rot: -1.5707963267948966 rad @@ -155023,7 +155044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19994 + - uid: 19917 components: - type: Transform rot: -1.5707963267948966 rad @@ -155031,7 +155052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19995 + - uid: 19918 components: - type: Transform rot: -1.5707963267948966 rad @@ -155039,7 +155060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19996 + - uid: 19919 components: - type: Transform rot: -1.5707963267948966 rad @@ -155047,7 +155068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19997 + - uid: 19920 components: - type: Transform rot: 3.141592653589793 rad @@ -155055,7 +155076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19998 + - uid: 19921 components: - type: Transform rot: 3.141592653589793 rad @@ -155063,7 +155084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19999 + - uid: 19922 components: - type: Transform rot: 3.141592653589793 rad @@ -155071,7 +155092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20000 + - uid: 19923 components: - type: Transform rot: 3.141592653589793 rad @@ -155079,7 +155100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20001 + - uid: 19924 components: - type: Transform rot: 3.141592653589793 rad @@ -155087,7 +155108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20002 + - uid: 19925 components: - type: Transform rot: 3.141592653589793 rad @@ -155095,7 +155116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20003 + - uid: 19926 components: - type: Transform rot: 3.141592653589793 rad @@ -155103,7 +155124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20004 + - uid: 19927 components: - type: Transform rot: 3.141592653589793 rad @@ -155111,7 +155132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20005 + - uid: 19928 components: - type: Transform rot: 3.141592653589793 rad @@ -155119,7 +155140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20006 + - uid: 19929 components: - type: Transform rot: 3.141592653589793 rad @@ -155127,7 +155148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20007 + - uid: 19930 components: - type: Transform rot: 3.141592653589793 rad @@ -155135,7 +155156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20008 + - uid: 19931 components: - type: Transform rot: 3.141592653589793 rad @@ -155143,7 +155164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20009 + - uid: 19932 components: - type: Transform rot: 3.141592653589793 rad @@ -155151,7 +155172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20010 + - uid: 19933 components: - type: Transform rot: 3.141592653589793 rad @@ -155159,7 +155180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20011 + - uid: 19934 components: - type: Transform rot: 3.141592653589793 rad @@ -155167,70 +155188,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20012 + - uid: 19935 components: - type: Transform pos: -9.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20013 + - uid: 19936 components: - type: Transform pos: -9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20014 + - uid: 19937 components: - type: Transform pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20015 + - uid: 19938 components: - type: Transform pos: -9.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20016 + - uid: 19939 components: - type: Transform pos: -9.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20017 + - uid: 19940 components: - type: Transform pos: -9.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20018 + - uid: 19941 components: - type: Transform pos: -9.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20019 + - uid: 19942 components: - type: Transform pos: -9.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20020 + - uid: 19943 components: - type: Transform pos: -9.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20021 + - uid: 19944 components: - type: Transform rot: 3.141592653589793 rad @@ -155238,7 +155259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20022 + - uid: 19945 components: - type: Transform rot: 3.141592653589793 rad @@ -155246,7 +155267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20023 + - uid: 19946 components: - type: Transform rot: 1.5707963267948966 rad @@ -155254,7 +155275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20024 + - uid: 19947 components: - type: Transform rot: 1.5707963267948966 rad @@ -155262,7 +155283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20025 + - uid: 19948 components: - type: Transform rot: 1.5707963267948966 rad @@ -155270,7 +155291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20026 + - uid: 19949 components: - type: Transform rot: 1.5707963267948966 rad @@ -155278,28 +155299,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20027 + - uid: 19950 components: - type: Transform pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20028 + - uid: 19951 components: - type: Transform pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20029 + - uid: 19952 components: - type: Transform pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20030 + - uid: 19953 components: - type: Transform rot: 3.141592653589793 rad @@ -155307,7 +155328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20031 + - uid: 19954 components: - type: Transform rot: 3.141592653589793 rad @@ -155315,7 +155336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20032 + - uid: 19955 components: - type: Transform rot: 3.141592653589793 rad @@ -155323,7 +155344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20033 + - uid: 19956 components: - type: Transform rot: 3.141592653589793 rad @@ -155331,7 +155352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20034 + - uid: 19957 components: - type: Transform rot: 3.141592653589793 rad @@ -155339,7 +155360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20035 + - uid: 19958 components: - type: Transform rot: 3.141592653589793 rad @@ -155347,7 +155368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20036 + - uid: 19959 components: - type: Transform rot: 1.5707963267948966 rad @@ -155355,7 +155376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20037 + - uid: 19960 components: - type: Transform rot: -1.5707963267948966 rad @@ -155363,7 +155384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20038 + - uid: 19961 components: - type: Transform rot: -1.5707963267948966 rad @@ -155371,7 +155392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20039 + - uid: 19962 components: - type: Transform rot: -1.5707963267948966 rad @@ -155379,7 +155400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20040 + - uid: 19963 components: - type: Transform rot: 3.141592653589793 rad @@ -155387,35 +155408,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20041 + - uid: 19964 components: - type: Transform pos: 8.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20042 + - uid: 19965 components: - type: Transform pos: 8.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20043 + - uid: 19966 components: - type: Transform pos: 8.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20044 + - uid: 19967 components: - type: Transform pos: 8.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20045 + - uid: 19968 components: - type: Transform rot: -1.5707963267948966 rad @@ -155423,7 +155444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20046 + - uid: 19969 components: - type: Transform rot: 3.141592653589793 rad @@ -155431,7 +155452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20047 + - uid: 19970 components: - type: Transform rot: 3.141592653589793 rad @@ -155439,7 +155460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20048 + - uid: 19971 components: - type: Transform rot: 3.141592653589793 rad @@ -155447,7 +155468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20049 + - uid: 19972 components: - type: Transform rot: 3.141592653589793 rad @@ -155455,7 +155476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20050 + - uid: 19973 components: - type: Transform rot: 3.141592653589793 rad @@ -155463,7 +155484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20051 + - uid: 19974 components: - type: Transform rot: 3.141592653589793 rad @@ -155471,7 +155492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20052 + - uid: 19975 components: - type: Transform rot: 3.141592653589793 rad @@ -155479,7 +155500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20053 + - uid: 19976 components: - type: Transform rot: 3.141592653589793 rad @@ -155487,7 +155508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20054 + - uid: 19977 components: - type: Transform rot: 3.141592653589793 rad @@ -155495,7 +155516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20055 + - uid: 19978 components: - type: Transform rot: 1.5707963267948966 rad @@ -155503,7 +155524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20056 + - uid: 19979 components: - type: Transform rot: 1.5707963267948966 rad @@ -155511,7 +155532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20057 + - uid: 19980 components: - type: Transform rot: -1.5707963267948966 rad @@ -155519,7 +155540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20058 + - uid: 19981 components: - type: Transform rot: 3.141592653589793 rad @@ -155527,7 +155548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20059 + - uid: 19982 components: - type: Transform rot: 3.141592653589793 rad @@ -155535,7 +155556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20060 + - uid: 19983 components: - type: Transform rot: -1.5707963267948966 rad @@ -155543,7 +155564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20061 + - uid: 19984 components: - type: Transform rot: 3.141592653589793 rad @@ -155551,7 +155572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20062 + - uid: 19985 components: - type: Transform rot: 3.141592653589793 rad @@ -155559,126 +155580,126 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20063 + - uid: 19986 components: - type: Transform pos: 10.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20064 + - uid: 19987 components: - type: Transform pos: 10.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20065 + - uid: 19988 components: - type: Transform pos: 10.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20066 + - uid: 19989 components: - type: Transform pos: 10.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20067 + - uid: 19990 components: - type: Transform pos: 10.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20068 + - uid: 19991 components: - type: Transform pos: 10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20069 + - uid: 19992 components: - type: Transform pos: 10.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20070 + - uid: 19993 components: - type: Transform pos: -17.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20071 + - uid: 19994 components: - type: Transform pos: -19.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20072 + - uid: 19995 components: - type: Transform pos: -19.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20073 + - uid: 19996 components: - type: Transform pos: -17.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20074 + - uid: 19997 components: - type: Transform pos: -19.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20075 + - uid: 19998 components: - type: Transform pos: -19.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20076 + - uid: 19999 components: - type: Transform pos: -17.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20077 + - uid: 20000 components: - type: Transform pos: -17.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20078 + - uid: 20001 components: - type: Transform pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20079 + - uid: 20002 components: - type: Transform pos: -19.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20080 + - uid: 20003 components: - type: Transform rot: -1.5707963267948966 rad @@ -155686,7 +155707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20081 + - uid: 20004 components: - type: Transform rot: -1.5707963267948966 rad @@ -155694,7 +155715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20082 + - uid: 20005 components: - type: Transform rot: -1.5707963267948966 rad @@ -155702,7 +155723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20083 + - uid: 20006 components: - type: Transform rot: -1.5707963267948966 rad @@ -155710,7 +155731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20084 + - uid: 20007 components: - type: Transform rot: -1.5707963267948966 rad @@ -155718,7 +155739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20085 + - uid: 20008 components: - type: Transform rot: -1.5707963267948966 rad @@ -155726,7 +155747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20086 + - uid: 20009 components: - type: Transform rot: -1.5707963267948966 rad @@ -155734,7 +155755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20087 + - uid: 20010 components: - type: Transform rot: -1.5707963267948966 rad @@ -155742,7 +155763,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20088 + - uid: 20011 components: - type: Transform rot: -1.5707963267948966 rad @@ -155750,7 +155771,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20089 + - uid: 20012 components: - type: Transform rot: -1.5707963267948966 rad @@ -155758,7 +155779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20090 + - uid: 20013 components: - type: Transform rot: -1.5707963267948966 rad @@ -155766,7 +155787,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20091 + - uid: 20014 components: - type: Transform rot: -1.5707963267948966 rad @@ -155774,7 +155795,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20092 + - uid: 20015 components: - type: Transform rot: 3.141592653589793 rad @@ -155782,7 +155803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20093 + - uid: 20016 components: - type: Transform rot: 3.141592653589793 rad @@ -155790,7 +155811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20094 + - uid: 20017 components: - type: Transform rot: 3.141592653589793 rad @@ -155798,7 +155819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20095 + - uid: 20018 components: - type: Transform rot: 3.141592653589793 rad @@ -155806,7 +155827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20096 + - uid: 20019 components: - type: Transform rot: 1.5707963267948966 rad @@ -155814,7 +155835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20097 + - uid: 20020 components: - type: Transform rot: 1.5707963267948966 rad @@ -155822,7 +155843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20098 + - uid: 20021 components: - type: Transform rot: 1.5707963267948966 rad @@ -155830,7 +155851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20099 + - uid: 20022 components: - type: Transform rot: 1.5707963267948966 rad @@ -155838,7 +155859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20100 + - uid: 20023 components: - type: Transform rot: 1.5707963267948966 rad @@ -155846,7 +155867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20101 + - uid: 20024 components: - type: Transform rot: 1.5707963267948966 rad @@ -155854,7 +155875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20102 + - uid: 20025 components: - type: Transform rot: 1.5707963267948966 rad @@ -155862,7 +155883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20103 + - uid: 20026 components: - type: Transform rot: 1.5707963267948966 rad @@ -155870,7 +155891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20104 + - uid: 20027 components: - type: Transform rot: 1.5707963267948966 rad @@ -155878,7 +155899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20105 + - uid: 20028 components: - type: Transform rot: 1.5707963267948966 rad @@ -155886,7 +155907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20106 + - uid: 20029 components: - type: Transform rot: 1.5707963267948966 rad @@ -155894,7 +155915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20107 + - uid: 20030 components: - type: Transform rot: 1.5707963267948966 rad @@ -155902,7 +155923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20108 + - uid: 20031 components: - type: Transform rot: 1.5707963267948966 rad @@ -155910,7 +155931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20109 + - uid: 20032 components: - type: Transform rot: 1.5707963267948966 rad @@ -155918,7 +155939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20110 + - uid: 20033 components: - type: Transform rot: 1.5707963267948966 rad @@ -155926,7 +155947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20111 + - uid: 20034 components: - type: Transform rot: 1.5707963267948966 rad @@ -155934,7 +155955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20112 + - uid: 20035 components: - type: Transform rot: 1.5707963267948966 rad @@ -155942,7 +155963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20113 + - uid: 20036 components: - type: Transform rot: 1.5707963267948966 rad @@ -155950,7 +155971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20114 + - uid: 20037 components: - type: Transform rot: 1.5707963267948966 rad @@ -155958,7 +155979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20115 + - uid: 20038 components: - type: Transform rot: 1.5707963267948966 rad @@ -155966,7 +155987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20116 + - uid: 20039 components: - type: Transform rot: 3.141592653589793 rad @@ -155974,7 +155995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20117 + - uid: 20040 components: - type: Transform rot: 3.141592653589793 rad @@ -155982,7 +156003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20118 + - uid: 20041 components: - type: Transform rot: 3.141592653589793 rad @@ -155990,7 +156011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20119 + - uid: 20042 components: - type: Transform rot: 3.141592653589793 rad @@ -155998,7 +156019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20120 + - uid: 20043 components: - type: Transform rot: 3.141592653589793 rad @@ -156006,7 +156027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20121 + - uid: 20044 components: - type: Transform rot: 3.141592653589793 rad @@ -156014,7 +156035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20122 + - uid: 20045 components: - type: Transform rot: 3.141592653589793 rad @@ -156022,7 +156043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20123 + - uid: 20046 components: - type: Transform rot: 3.141592653589793 rad @@ -156030,7 +156051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20124 + - uid: 20047 components: - type: Transform rot: 3.141592653589793 rad @@ -156038,7 +156059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20125 + - uid: 20048 components: - type: Transform rot: 3.141592653589793 rad @@ -156046,7 +156067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20126 + - uid: 20049 components: - type: Transform rot: 1.5707963267948966 rad @@ -156054,7 +156075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20127 + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad @@ -156062,7 +156083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20128 + - uid: 20051 components: - type: Transform rot: 1.5707963267948966 rad @@ -156070,7 +156091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20129 + - uid: 20052 components: - type: Transform rot: 1.5707963267948966 rad @@ -156078,21 +156099,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20130 + - uid: 20053 components: - type: Transform pos: -17.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20131 + - uid: 20054 components: - type: Transform pos: -17.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20132 + - uid: 20055 components: - type: Transform rot: -1.5707963267948966 rad @@ -156100,7 +156121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20133 + - uid: 20056 components: - type: Transform rot: -1.5707963267948966 rad @@ -156108,7 +156129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20134 + - uid: 20057 components: - type: Transform rot: -1.5707963267948966 rad @@ -156116,7 +156137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20135 + - uid: 20058 components: - type: Transform rot: -1.5707963267948966 rad @@ -156124,7 +156145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20136 + - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad @@ -156132,7 +156153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20137 + - uid: 20060 components: - type: Transform rot: -1.5707963267948966 rad @@ -156140,7 +156161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20138 + - uid: 20061 components: - type: Transform rot: 1.5707963267948966 rad @@ -156148,7 +156169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20139 + - uid: 20062 components: - type: Transform rot: 1.5707963267948966 rad @@ -156156,217 +156177,217 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20140 + - uid: 20063 components: - type: Transform pos: -14.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20141 + - uid: 20064 components: - type: Transform pos: -22.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20142 + - uid: 20065 components: - type: Transform pos: -21.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20143 + - uid: 20066 components: - type: Transform pos: -22.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20144 + - uid: 20067 components: - type: Transform pos: -22.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20145 + - uid: 20068 components: - type: Transform pos: -21.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20146 + - uid: 20069 components: - type: Transform pos: -21.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20147 + - uid: 20070 components: - type: Transform pos: -22.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20148 + - uid: 20071 components: - type: Transform pos: -22.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20149 + - uid: 20072 components: - type: Transform pos: -21.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20150 + - uid: 20073 components: - type: Transform pos: -21.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20151 + - uid: 20074 components: - type: Transform pos: -22.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20152 + - uid: 20075 components: - type: Transform pos: -22.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20153 + - uid: 20076 components: - type: Transform pos: -21.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20154 + - uid: 20077 components: - type: Transform pos: -21.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20155 + - uid: 20078 components: - type: Transform pos: -22.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20156 + - uid: 20079 components: - type: Transform pos: -22.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20157 + - uid: 20080 components: - type: Transform pos: -15.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20158 + - uid: 20081 components: - type: Transform pos: -14.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20159 + - uid: 20082 components: - type: Transform pos: -14.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20160 + - uid: 20083 components: - type: Transform pos: -15.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20161 + - uid: 20084 components: - type: Transform pos: -14.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20162 + - uid: 20085 components: - type: Transform pos: -14.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20163 + - uid: 20086 components: - type: Transform pos: -15.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20164 + - uid: 20087 components: - type: Transform pos: -15.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20165 + - uid: 20088 components: - type: Transform pos: -14.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20166 + - uid: 20089 components: - type: Transform pos: -15.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20167 + - uid: 20090 components: - type: Transform pos: -15.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20168 + - uid: 20091 components: - type: Transform pos: -14.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20169 + - uid: 20092 components: - type: Transform pos: -14.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20170 + - uid: 20093 components: - type: Transform rot: -1.5707963267948966 rad @@ -156374,7 +156395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20171 + - uid: 20094 components: - type: Transform rot: -1.5707963267948966 rad @@ -156382,7 +156403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20172 + - uid: 20095 components: - type: Transform rot: -1.5707963267948966 rad @@ -156390,7 +156411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20173 + - uid: 20096 components: - type: Transform rot: -1.5707963267948966 rad @@ -156398,7 +156419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20174 + - uid: 20097 components: - type: Transform rot: 1.5707963267948966 rad @@ -156406,7 +156427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20175 + - uid: 20098 components: - type: Transform rot: 1.5707963267948966 rad @@ -156414,7 +156435,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20176 + - uid: 20099 components: - type: Transform rot: 1.5707963267948966 rad @@ -156422,7 +156443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20177 + - uid: 20100 components: - type: Transform rot: 1.5707963267948966 rad @@ -156430,7 +156451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20178 + - uid: 20101 components: - type: Transform rot: 1.5707963267948966 rad @@ -156438,7 +156459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20179 + - uid: 20102 components: - type: Transform rot: 1.5707963267948966 rad @@ -156446,7 +156467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20180 + - uid: 20103 components: - type: Transform rot: 1.5707963267948966 rad @@ -156454,7 +156475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20181 + - uid: 20104 components: - type: Transform rot: 1.5707963267948966 rad @@ -156462,7 +156483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20182 + - uid: 20105 components: - type: Transform rot: 1.5707963267948966 rad @@ -156470,7 +156491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20183 + - uid: 20106 components: - type: Transform rot: 1.5707963267948966 rad @@ -156478,7 +156499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20184 + - uid: 20107 components: - type: Transform rot: 1.5707963267948966 rad @@ -156486,7 +156507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20185 + - uid: 20108 components: - type: Transform rot: 1.5707963267948966 rad @@ -156494,7 +156515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20186 + - uid: 20109 components: - type: Transform rot: 1.5707963267948966 rad @@ -156502,7 +156523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20187 + - uid: 20110 components: - type: Transform rot: 1.5707963267948966 rad @@ -156510,14 +156531,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20188 + - uid: 20111 components: - type: Transform pos: -7.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20189 + - uid: 20112 components: - type: Transform rot: 1.5707963267948966 rad @@ -156525,7 +156546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20190 + - uid: 20113 components: - type: Transform rot: 1.5707963267948966 rad @@ -156533,7 +156554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20191 + - uid: 20114 components: - type: Transform rot: 1.5707963267948966 rad @@ -156541,7 +156562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20192 + - uid: 20115 components: - type: Transform rot: 1.5707963267948966 rad @@ -156549,7 +156570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20193 + - uid: 20116 components: - type: Transform rot: -1.5707963267948966 rad @@ -156557,7 +156578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20194 + - uid: 20117 components: - type: Transform rot: -1.5707963267948966 rad @@ -156565,7 +156586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20195 + - uid: 20118 components: - type: Transform rot: -1.5707963267948966 rad @@ -156573,7 +156594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20196 + - uid: 20119 components: - type: Transform rot: -1.5707963267948966 rad @@ -156581,7 +156602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20197 + - uid: 20120 components: - type: Transform rot: -1.5707963267948966 rad @@ -156589,7 +156610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20198 + - uid: 20121 components: - type: Transform rot: -1.5707963267948966 rad @@ -156597,7 +156618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20199 + - uid: 20122 components: - type: Transform rot: -1.5707963267948966 rad @@ -156605,7 +156626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20200 + - uid: 20123 components: - type: Transform rot: -1.5707963267948966 rad @@ -156613,7 +156634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20201 + - uid: 20124 components: - type: Transform rot: -1.5707963267948966 rad @@ -156621,7 +156642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20202 + - uid: 20125 components: - type: Transform rot: -1.5707963267948966 rad @@ -156629,7 +156650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20203 + - uid: 20126 components: - type: Transform rot: -1.5707963267948966 rad @@ -156637,7 +156658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20204 + - uid: 20127 components: - type: Transform rot: -1.5707963267948966 rad @@ -156645,7 +156666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20205 + - uid: 20128 components: - type: Transform rot: 3.141592653589793 rad @@ -156653,14 +156674,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20206 + - uid: 20129 components: - type: Transform pos: -19.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20207 + - uid: 20130 components: - type: Transform rot: -1.5707963267948966 rad @@ -156668,7 +156689,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20208 + - uid: 20131 components: - type: Transform rot: -1.5707963267948966 rad @@ -156676,7 +156697,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20209 + - uid: 20132 components: - type: Transform rot: 3.141592653589793 rad @@ -156684,7 +156705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20210 + - uid: 20133 components: - type: Transform rot: 3.141592653589793 rad @@ -156692,7 +156713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20211 + - uid: 20134 components: - type: Transform rot: 3.141592653589793 rad @@ -156700,7 +156721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20212 + - uid: 20135 components: - type: Transform rot: 3.141592653589793 rad @@ -156708,7 +156729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20213 + - uid: 20136 components: - type: Transform rot: 1.5707963267948966 rad @@ -156716,7 +156737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20214 + - uid: 20137 components: - type: Transform rot: 3.141592653589793 rad @@ -156724,7 +156745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20215 + - uid: 20138 components: - type: Transform rot: 1.5707963267948966 rad @@ -156732,7 +156753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20216 + - uid: 20139 components: - type: Transform rot: 1.5707963267948966 rad @@ -156740,7 +156761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20217 + - uid: 20140 components: - type: Transform rot: 1.5707963267948966 rad @@ -156748,7 +156769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20218 + - uid: 20141 components: - type: Transform rot: 1.5707963267948966 rad @@ -156756,7 +156777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20219 + - uid: 20142 components: - type: Transform rot: 1.5707963267948966 rad @@ -156764,7 +156785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20220 + - uid: 20143 components: - type: Transform rot: 1.5707963267948966 rad @@ -156772,7 +156793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20221 + - uid: 20144 components: - type: Transform rot: 3.141592653589793 rad @@ -156780,7 +156801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20222 + - uid: 20145 components: - type: Transform rot: 1.5707963267948966 rad @@ -156788,7 +156809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20223 + - uid: 20146 components: - type: Transform rot: 1.5707963267948966 rad @@ -156796,7 +156817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20224 + - uid: 20147 components: - type: Transform rot: 1.5707963267948966 rad @@ -156804,7 +156825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20225 + - uid: 20148 components: - type: Transform rot: 1.5707963267948966 rad @@ -156812,7 +156833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20226 + - uid: 20149 components: - type: Transform rot: 1.5707963267948966 rad @@ -156820,7 +156841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20227 + - uid: 20150 components: - type: Transform rot: 1.5707963267948966 rad @@ -156828,7 +156849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20228 + - uid: 20151 components: - type: Transform rot: 1.5707963267948966 rad @@ -156836,7 +156857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20229 + - uid: 20152 components: - type: Transform rot: 1.5707963267948966 rad @@ -156844,7 +156865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20230 + - uid: 20153 components: - type: Transform rot: 3.141592653589793 rad @@ -156852,7 +156873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20231 + - uid: 20154 components: - type: Transform rot: 3.141592653589793 rad @@ -156860,7 +156881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20232 + - uid: 20155 components: - type: Transform rot: 3.141592653589793 rad @@ -156868,7 +156889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20233 + - uid: 20156 components: - type: Transform rot: 3.141592653589793 rad @@ -156876,7 +156897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20234 + - uid: 20157 components: - type: Transform rot: 1.5707963267948966 rad @@ -156884,7 +156905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20235 + - uid: 20158 components: - type: Transform rot: 3.141592653589793 rad @@ -156892,7 +156913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20236 + - uid: 20159 components: - type: Transform rot: 1.5707963267948966 rad @@ -156900,7 +156921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20237 + - uid: 20160 components: - type: Transform rot: 1.5707963267948966 rad @@ -156908,14 +156929,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20238 + - uid: 20161 components: - type: Transform pos: -33.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20239 + - uid: 20162 components: - type: Transform rot: -1.5707963267948966 rad @@ -156923,7 +156944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20240 + - uid: 20163 components: - type: Transform rot: -1.5707963267948966 rad @@ -156931,7 +156952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20241 + - uid: 20164 components: - type: Transform rot: -1.5707963267948966 rad @@ -156939,14 +156960,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20242 + - uid: 20165 components: - type: Transform pos: -37.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20243 + - uid: 20166 components: - type: Transform rot: 1.5707963267948966 rad @@ -156954,7 +156975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20244 + - uid: 20167 components: - type: Transform rot: 1.5707963267948966 rad @@ -156962,7 +156983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20245 + - uid: 20168 components: - type: Transform rot: 1.5707963267948966 rad @@ -156970,14 +156991,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20246 + - uid: 20169 components: - type: Transform pos: -3.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20247 + - uid: 20170 components: - type: Transform rot: 3.141592653589793 rad @@ -156985,7 +157006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20248 + - uid: 20171 components: - type: Transform rot: 3.141592653589793 rad @@ -156993,7 +157014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20249 + - uid: 20172 components: - type: Transform rot: 1.5707963267948966 rad @@ -157001,28 +157022,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20250 + - uid: 20173 components: - type: Transform pos: -3.5,47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20251 + - uid: 20174 components: - type: Transform pos: -3.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20252 + - uid: 20175 components: - type: Transform pos: -3.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20253 + - uid: 20176 components: - type: Transform rot: 1.5707963267948966 rad @@ -157030,7 +157051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20254 + - uid: 20177 components: - type: Transform rot: 3.141592653589793 rad @@ -157038,7 +157059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20255 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad @@ -157046,7 +157067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20256 + - uid: 20179 components: - type: Transform rot: 3.141592653589793 rad @@ -157054,7 +157075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20257 + - uid: 20180 components: - type: Transform rot: 3.141592653589793 rad @@ -157062,7 +157083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20258 + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad @@ -157070,7 +157091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20259 + - uid: 20182 components: - type: Transform rot: 3.141592653589793 rad @@ -157078,7 +157099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20260 + - uid: 20183 components: - type: Transform rot: 3.141592653589793 rad @@ -157086,7 +157107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20261 + - uid: 20184 components: - type: Transform rot: -1.5707963267948966 rad @@ -157094,42 +157115,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20262 + - uid: 20185 components: - type: Transform pos: -17.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20263 + - uid: 20186 components: - type: Transform pos: -19.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20264 + - uid: 20187 components: - type: Transform pos: -19.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20265 + - uid: 20188 components: - type: Transform pos: -19.5,59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20266 + - uid: 20189 components: - type: Transform pos: -17.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20267 + - uid: 20190 components: - type: Transform rot: 3.141592653589793 rad @@ -157137,14 +157158,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20268 + - uid: 20191 components: - type: Transform pos: -19.5,60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20269 + - uid: 20192 components: - type: Transform rot: -1.5707963267948966 rad @@ -157152,7 +157173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20270 + - uid: 20193 components: - type: Transform rot: -1.5707963267948966 rad @@ -157160,7 +157181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20271 + - uid: 20194 components: - type: Transform rot: -1.5707963267948966 rad @@ -157168,7 +157189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20272 + - uid: 20195 components: - type: Transform rot: -1.5707963267948966 rad @@ -157176,7 +157197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20273 + - uid: 20196 components: - type: Transform rot: -1.5707963267948966 rad @@ -157184,7 +157205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20274 + - uid: 20197 components: - type: Transform rot: -1.5707963267948966 rad @@ -157192,7 +157213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20275 + - uid: 20198 components: - type: Transform rot: 3.141592653589793 rad @@ -157200,7 +157221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20276 + - uid: 20199 components: - type: Transform rot: 3.141592653589793 rad @@ -157208,7 +157229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20277 + - uid: 20200 components: - type: Transform rot: 3.141592653589793 rad @@ -157216,7 +157237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20278 + - uid: 20201 components: - type: Transform rot: 3.141592653589793 rad @@ -157224,7 +157245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20279 + - uid: 20202 components: - type: Transform rot: 3.141592653589793 rad @@ -157232,42 +157253,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20280 + - uid: 20203 components: - type: Transform pos: -19.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20281 + - uid: 20204 components: - type: Transform pos: -17.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20282 + - uid: 20205 components: - type: Transform pos: -17.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20283 + - uid: 20206 components: - type: Transform pos: -17.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20284 + - uid: 20207 components: - type: Transform pos: -17.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20285 + - uid: 20208 components: - type: Transform rot: -1.5707963267948966 rad @@ -157275,7 +157296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20286 + - uid: 20209 components: - type: Transform rot: -1.5707963267948966 rad @@ -157283,7 +157304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20287 + - uid: 20210 components: - type: Transform rot: -1.5707963267948966 rad @@ -157291,7 +157312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20288 + - uid: 20211 components: - type: Transform rot: -1.5707963267948966 rad @@ -157299,7 +157320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20289 + - uid: 20212 components: - type: Transform rot: -1.5707963267948966 rad @@ -157307,7 +157328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20290 + - uid: 20213 components: - type: Transform rot: -1.5707963267948966 rad @@ -157315,7 +157336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20291 + - uid: 20214 components: - type: Transform rot: -1.5707963267948966 rad @@ -157323,7 +157344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20292 + - uid: 20215 components: - type: Transform rot: -1.5707963267948966 rad @@ -157331,7 +157352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20293 + - uid: 20216 components: - type: Transform rot: -1.5707963267948966 rad @@ -157339,7 +157360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20294 + - uid: 20217 components: - type: Transform rot: -1.5707963267948966 rad @@ -157347,7 +157368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20295 + - uid: 20218 components: - type: Transform rot: -1.5707963267948966 rad @@ -157355,7 +157376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20296 + - uid: 20219 components: - type: Transform rot: -1.5707963267948966 rad @@ -157363,7 +157384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20297 + - uid: 20220 components: - type: Transform rot: -1.5707963267948966 rad @@ -157371,7 +157392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20298 + - uid: 20221 components: - type: Transform rot: -1.5707963267948966 rad @@ -157379,7 +157400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20299 + - uid: 20222 components: - type: Transform rot: -1.5707963267948966 rad @@ -157387,7 +157408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20300 + - uid: 20223 components: - type: Transform rot: 1.5707963267948966 rad @@ -157395,7 +157416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20301 + - uid: 20224 components: - type: Transform rot: 1.5707963267948966 rad @@ -157403,7 +157424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20302 + - uid: 20225 components: - type: Transform rot: 1.5707963267948966 rad @@ -157411,7 +157432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20303 + - uid: 20226 components: - type: Transform rot: 1.5707963267948966 rad @@ -157419,7 +157440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20304 + - uid: 20227 components: - type: Transform rot: 1.5707963267948966 rad @@ -157427,35 +157448,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20305 + - uid: 20228 components: - type: Transform pos: -3.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20306 + - uid: 20229 components: - type: Transform pos: -3.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20307 + - uid: 20230 components: - type: Transform pos: -3.5,59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20308 + - uid: 20231 components: - type: Transform pos: -5.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20309 + - uid: 20232 components: - type: Transform rot: -1.5707963267948966 rad @@ -157463,7 +157484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20310 + - uid: 20233 components: - type: Transform rot: -1.5707963267948966 rad @@ -157471,7 +157492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20311 + - uid: 20234 components: - type: Transform rot: -1.5707963267948966 rad @@ -157479,7 +157500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20312 + - uid: 20235 components: - type: Transform rot: -1.5707963267948966 rad @@ -157487,7 +157508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20313 + - uid: 20236 components: - type: Transform rot: -1.5707963267948966 rad @@ -157495,7 +157516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20314 + - uid: 20237 components: - type: Transform rot: -1.5707963267948966 rad @@ -157503,7 +157524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20315 + - uid: 20238 components: - type: Transform rot: -1.5707963267948966 rad @@ -157511,7 +157532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20316 + - uid: 20239 components: - type: Transform rot: -1.5707963267948966 rad @@ -157519,7 +157540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20317 + - uid: 20240 components: - type: Transform rot: -1.5707963267948966 rad @@ -157527,77 +157548,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20318 + - uid: 20241 components: - type: Transform pos: 2.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20319 + - uid: 20242 components: - type: Transform pos: 2.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20320 + - uid: 20243 components: - type: Transform pos: 1.5,55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20321 + - uid: 20244 components: - type: Transform pos: 2.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20322 + - uid: 20245 components: - type: Transform pos: 2.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20323 + - uid: 20246 components: - type: Transform pos: 1.5,54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20324 + - uid: 20247 components: - type: Transform pos: 1.5,53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20325 + - uid: 20248 components: - type: Transform pos: 2.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20326 + - uid: 20249 components: - type: Transform pos: 2.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20327 + - uid: 20250 components: - type: Transform pos: 2.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20328 + - uid: 20251 components: - type: Transform rot: 3.141592653589793 rad @@ -157605,7 +157626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20329 + - uid: 20252 components: - type: Transform rot: 3.141592653589793 rad @@ -157613,7 +157634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20330 + - uid: 20253 components: - type: Transform rot: 3.141592653589793 rad @@ -157621,7 +157642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20331 + - uid: 20254 components: - type: Transform rot: 3.141592653589793 rad @@ -157629,7 +157650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20332 + - uid: 20255 components: - type: Transform rot: 3.141592653589793 rad @@ -157637,7 +157658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20333 + - uid: 20256 components: - type: Transform rot: 3.141592653589793 rad @@ -157645,7 +157666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20334 + - uid: 20257 components: - type: Transform rot: 3.141592653589793 rad @@ -157653,7 +157674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20335 + - uid: 20258 components: - type: Transform rot: 3.141592653589793 rad @@ -157661,7 +157682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20336 + - uid: 20259 components: - type: Transform rot: 3.141592653589793 rad @@ -157669,7 +157690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20337 + - uid: 20260 components: - type: Transform rot: 3.141592653589793 rad @@ -157677,7 +157698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20338 + - uid: 20261 components: - type: Transform rot: 3.141592653589793 rad @@ -157685,7 +157706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20339 + - uid: 20262 components: - type: Transform rot: 3.141592653589793 rad @@ -157693,35 +157714,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20340 + - uid: 20263 components: - type: Transform pos: -19.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20341 + - uid: 20264 components: - type: Transform pos: -19.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20342 + - uid: 20265 components: - type: Transform pos: -3.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20343 + - uid: 20266 components: - type: Transform pos: -3.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20344 + - uid: 20267 components: - type: Transform rot: -1.5707963267948966 rad @@ -157729,7 +157750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20345 + - uid: 20268 components: - type: Transform rot: -1.5707963267948966 rad @@ -157737,7 +157758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20346 + - uid: 20269 components: - type: Transform rot: -1.5707963267948966 rad @@ -157745,7 +157766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20347 + - uid: 20270 components: - type: Transform rot: -1.5707963267948966 rad @@ -157753,7 +157774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20348 + - uid: 20271 components: - type: Transform rot: -1.5707963267948966 rad @@ -157761,7 +157782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20349 + - uid: 20272 components: - type: Transform rot: -1.5707963267948966 rad @@ -157769,7 +157790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20350 + - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad @@ -157777,7 +157798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20351 + - uid: 20274 components: - type: Transform rot: -1.5707963267948966 rad @@ -157785,7 +157806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20352 + - uid: 20275 components: - type: Transform rot: -1.5707963267948966 rad @@ -157793,7 +157814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20353 + - uid: 20276 components: - type: Transform rot: -1.5707963267948966 rad @@ -157801,7 +157822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20354 + - uid: 20277 components: - type: Transform rot: -1.5707963267948966 rad @@ -157809,7 +157830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20355 + - uid: 20278 components: - type: Transform rot: -1.5707963267948966 rad @@ -157817,7 +157838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20356 + - uid: 20279 components: - type: Transform rot: -1.5707963267948966 rad @@ -157825,7 +157846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20357 + - uid: 20280 components: - type: Transform rot: -1.5707963267948966 rad @@ -157833,7 +157854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20358 + - uid: 20281 components: - type: Transform rot: -1.5707963267948966 rad @@ -157841,7 +157862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20359 + - uid: 20282 components: - type: Transform rot: -1.5707963267948966 rad @@ -157849,7 +157870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20360 + - uid: 20283 components: - type: Transform rot: -1.5707963267948966 rad @@ -157857,7 +157878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20361 + - uid: 20284 components: - type: Transform rot: -1.5707963267948966 rad @@ -157865,7 +157886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20362 + - uid: 20285 components: - type: Transform rot: -1.5707963267948966 rad @@ -157873,7 +157894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20363 + - uid: 20286 components: - type: Transform rot: -1.5707963267948966 rad @@ -157881,7 +157902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20364 + - uid: 20287 components: - type: Transform rot: -1.5707963267948966 rad @@ -157889,7 +157910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20365 + - uid: 20288 components: - type: Transform rot: -1.5707963267948966 rad @@ -157897,7 +157918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20366 + - uid: 20289 components: - type: Transform rot: -1.5707963267948966 rad @@ -157905,7 +157926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20367 + - uid: 20290 components: - type: Transform rot: -1.5707963267948966 rad @@ -157913,13 +157934,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20368 + - uid: 20291 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-50.5 parent: 2 - - uid: 20369 + - uid: 20292 components: - type: Transform rot: -1.5707963267948966 rad @@ -157927,7 +157948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20370 + - uid: 20293 components: - type: Transform rot: -1.5707963267948966 rad @@ -157935,7 +157956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20371 + - uid: 20294 components: - type: Transform rot: -1.5707963267948966 rad @@ -157943,7 +157964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20372 + - uid: 20295 components: - type: Transform rot: -1.5707963267948966 rad @@ -157951,7 +157972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20373 + - uid: 20296 components: - type: Transform rot: -1.5707963267948966 rad @@ -157959,7 +157980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20374 + - uid: 20297 components: - type: Transform rot: -1.5707963267948966 rad @@ -157967,7 +157988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20375 + - uid: 20298 components: - type: Transform rot: -1.5707963267948966 rad @@ -157975,7 +157996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20376 + - uid: 20299 components: - type: Transform rot: -1.5707963267948966 rad @@ -157983,7 +158004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20377 + - uid: 20300 components: - type: Transform rot: -1.5707963267948966 rad @@ -157991,7 +158012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20378 + - uid: 20301 components: - type: Transform rot: -1.5707963267948966 rad @@ -157999,7 +158020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20379 + - uid: 20302 components: - type: Transform rot: -1.5707963267948966 rad @@ -158007,7 +158028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20380 + - uid: 20303 components: - type: Transform rot: -1.5707963267948966 rad @@ -158015,7 +158036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20381 + - uid: 20304 components: - type: Transform rot: 3.141592653589793 rad @@ -158023,7 +158044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20382 + - uid: 20305 components: - type: Transform rot: 3.141592653589793 rad @@ -158031,7 +158052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20383 + - uid: 20306 components: - type: Transform rot: 3.141592653589793 rad @@ -158039,7 +158060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20384 + - uid: 20307 components: - type: Transform rot: 3.141592653589793 rad @@ -158047,7 +158068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20385 + - uid: 20308 components: - type: Transform rot: 3.141592653589793 rad @@ -158055,7 +158076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20386 + - uid: 20309 components: - type: Transform rot: 3.141592653589793 rad @@ -158063,7 +158084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20387 + - uid: 20310 components: - type: Transform rot: 3.141592653589793 rad @@ -158071,7 +158092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20388 + - uid: 20311 components: - type: Transform rot: 3.141592653589793 rad @@ -158079,7 +158100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20389 + - uid: 20312 components: - type: Transform rot: 3.141592653589793 rad @@ -158087,7 +158108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20390 + - uid: 20313 components: - type: Transform rot: 3.141592653589793 rad @@ -158095,7 +158116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20391 + - uid: 20314 components: - type: Transform rot: 3.141592653589793 rad @@ -158103,7 +158124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20392 + - uid: 20315 components: - type: Transform rot: 3.141592653589793 rad @@ -158111,7 +158132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20393 + - uid: 20316 components: - type: Transform rot: 3.141592653589793 rad @@ -158119,7 +158140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 20394 + - uid: 20317 components: - type: Transform rot: 3.141592653589793 rad @@ -158127,7 +158148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20395 + - uid: 20318 components: - type: Transform rot: 3.141592653589793 rad @@ -158135,7 +158156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20396 + - uid: 20319 components: - type: Transform rot: 3.141592653589793 rad @@ -158143,7 +158164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20397 + - uid: 20320 components: - type: Transform rot: 3.141592653589793 rad @@ -158151,98 +158172,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20398 + - uid: 20321 components: - type: Transform pos: -12.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20399 + - uid: 20322 components: - type: Transform pos: -12.5,78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20400 + - uid: 20323 components: - type: Transform pos: -12.5,79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20401 + - uid: 20324 components: - type: Transform pos: -12.5,80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20402 + - uid: 20325 components: - type: Transform pos: -12.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20403 + - uid: 20326 components: - type: Transform pos: -12.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20404 + - uid: 20327 components: - type: Transform pos: -12.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20405 + - uid: 20328 components: - type: Transform pos: -12.5,84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20406 + - uid: 20329 components: - type: Transform pos: -12.5,85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20407 + - uid: 20330 components: - type: Transform pos: -12.5,86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20408 + - uid: 20331 components: - type: Transform pos: -12.5,87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20409 + - uid: 20332 components: - type: Transform pos: -12.5,88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20410 + - uid: 20333 components: - type: Transform pos: -12.5,89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20411 + - uid: 20334 components: - type: Transform rot: 1.5707963267948966 rad @@ -158250,7 +158271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20412 + - uid: 20335 components: - type: Transform rot: 1.5707963267948966 rad @@ -158258,7 +158279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20413 + - uid: 20336 components: - type: Transform rot: 1.5707963267948966 rad @@ -158266,7 +158287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20414 + - uid: 20337 components: - type: Transform rot: 1.5707963267948966 rad @@ -158274,7 +158295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20415 + - uid: 20338 components: - type: Transform rot: 1.5707963267948966 rad @@ -158282,7 +158303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20416 + - uid: 20339 components: - type: Transform rot: 1.5707963267948966 rad @@ -158290,7 +158311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20417 + - uid: 20340 components: - type: Transform rot: 1.5707963267948966 rad @@ -158298,7 +158319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20418 + - uid: 20341 components: - type: Transform rot: 1.5707963267948966 rad @@ -158306,7 +158327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20419 + - uid: 20342 components: - type: Transform rot: 1.5707963267948966 rad @@ -158314,7 +158335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20420 + - uid: 20343 components: - type: Transform rot: 1.5707963267948966 rad @@ -158322,7 +158343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20421 + - uid: 20344 components: - type: Transform rot: 1.5707963267948966 rad @@ -158330,203 +158351,203 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20422 + - uid: 20345 components: - type: Transform pos: -30.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20423 + - uid: 20346 components: - type: Transform pos: -30.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20424 + - uid: 20347 components: - type: Transform pos: -30.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20425 + - uid: 20348 components: - type: Transform pos: -28.5,70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20426 + - uid: 20349 components: - type: Transform pos: -28.5,71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20427 + - uid: 20350 components: - type: Transform pos: -30.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20428 + - uid: 20351 components: - type: Transform pos: -28.5,72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20429 + - uid: 20352 components: - type: Transform pos: -30.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20430 + - uid: 20353 components: - type: Transform pos: -30.5,73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20431 + - uid: 20354 components: - type: Transform pos: -30.5,74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20432 + - uid: 20355 components: - type: Transform pos: -28.5,74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20433 + - uid: 20356 components: - type: Transform pos: -28.5,75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20434 + - uid: 20357 components: - type: Transform pos: -30.5,75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20435 + - uid: 20358 components: - type: Transform pos: -28.5,76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20436 + - uid: 20359 components: - type: Transform pos: -30.5,76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20437 + - uid: 20360 components: - type: Transform pos: -30.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20438 + - uid: 20361 components: - type: Transform pos: -30.5,78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20439 + - uid: 20362 components: - type: Transform pos: -30.5,80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20440 + - uid: 20363 components: - type: Transform pos: -30.5,79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20441 + - uid: 20364 components: - type: Transform pos: -30.5,81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20442 + - uid: 20365 components: - type: Transform pos: -30.5,82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20443 + - uid: 20366 components: - type: Transform pos: -30.5,83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20444 + - uid: 20367 components: - type: Transform pos: -30.5,84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20445 + - uid: 20368 components: - type: Transform pos: -30.5,86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20446 + - uid: 20369 components: - type: Transform pos: -30.5,85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20447 + - uid: 20370 components: - type: Transform pos: -30.5,87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20448 + - uid: 20371 components: - type: Transform pos: -30.5,88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20449 + - uid: 20372 components: - type: Transform pos: -30.5,89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20450 + - uid: 20373 components: - type: Transform rot: 1.5707963267948966 rad @@ -158534,7 +158555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20451 + - uid: 20374 components: - type: Transform rot: 1.5707963267948966 rad @@ -158542,7 +158563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20452 + - uid: 20375 components: - type: Transform rot: 1.5707963267948966 rad @@ -158550,7 +158571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20453 + - uid: 20376 components: - type: Transform rot: 1.5707963267948966 rad @@ -158558,7 +158579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20454 + - uid: 20377 components: - type: Transform rot: 1.5707963267948966 rad @@ -158566,7 +158587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20455 + - uid: 20378 components: - type: Transform rot: 1.5707963267948966 rad @@ -158574,7 +158595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20456 + - uid: 20379 components: - type: Transform rot: 1.5707963267948966 rad @@ -158582,7 +158603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20457 + - uid: 20380 components: - type: Transform rot: 1.5707963267948966 rad @@ -158590,7 +158611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20458 + - uid: 20381 components: - type: Transform rot: 1.5707963267948966 rad @@ -158598,7 +158619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20459 + - uid: 20382 components: - type: Transform rot: 1.5707963267948966 rad @@ -158606,7 +158627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20460 + - uid: 20383 components: - type: Transform rot: 1.5707963267948966 rad @@ -158614,111 +158635,111 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20461 + - uid: 20384 components: - type: Transform pos: 6.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20462 + - uid: 20385 components: - type: Transform pos: 6.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20463 + - uid: 20386 components: - type: Transform pos: 7.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20464 + - uid: 20387 components: - type: Transform pos: 7.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20465 + - uid: 20388 components: - type: Transform pos: 7.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20466 + - uid: 20389 components: - type: Transform pos: 5.5,70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20467 + - uid: 20390 components: - type: Transform pos: 7.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20468 + - uid: 20391 components: - type: Transform pos: 5.5,71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20469 + - uid: 20392 components: - type: Transform pos: 7.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20470 + - uid: 20393 components: - type: Transform pos: 5.5,72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20471 + - uid: 20394 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-51.5 parent: 2 - - uid: 20472 + - uid: 20395 components: - type: Transform pos: 7.5,73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20473 + - uid: 20396 components: - type: Transform pos: 5.5,73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20474 + - uid: 20397 components: - type: Transform pos: 5.5,74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20475 + - uid: 20398 components: - type: Transform pos: 7.5,74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20476 + - uid: 20399 components: - type: Transform rot: 1.5707963267948966 rad @@ -158726,7 +158747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20477 + - uid: 20400 components: - type: Transform rot: 3.141592653589793 rad @@ -158734,70 +158755,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20478 + - uid: 20401 components: - type: Transform pos: 5.5,75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20479 + - uid: 20402 components: - type: Transform pos: 7.5,76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20480 + - uid: 20403 components: - type: Transform pos: 5.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20481 + - uid: 20404 components: - type: Transform pos: 5.5,78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20482 + - uid: 20405 components: - type: Transform pos: 5.5,79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20483 + - uid: 20406 components: - type: Transform pos: 5.5,80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20484 + - uid: 20407 components: - type: Transform pos: 5.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20485 + - uid: 20408 components: - type: Transform pos: 5.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20486 + - uid: 20409 components: - type: Transform pos: 5.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20487 + - uid: 20410 components: - type: Transform rot: 3.141592653589793 rad @@ -158805,7 +158826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20488 + - uid: 20411 components: - type: Transform rot: 1.5707963267948966 rad @@ -158813,7 +158834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20489 + - uid: 20412 components: - type: Transform rot: 1.5707963267948966 rad @@ -158821,7 +158842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20490 + - uid: 20413 components: - type: Transform rot: 1.5707963267948966 rad @@ -158829,7 +158850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20491 + - uid: 20414 components: - type: Transform rot: 1.5707963267948966 rad @@ -158837,7 +158858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20492 + - uid: 20415 components: - type: Transform rot: 1.5707963267948966 rad @@ -158845,7 +158866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20493 + - uid: 20416 components: - type: Transform rot: 1.5707963267948966 rad @@ -158853,7 +158874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20494 + - uid: 20417 components: - type: Transform rot: -1.5707963267948966 rad @@ -158861,7 +158882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20495 + - uid: 20418 components: - type: Transform rot: 3.141592653589793 rad @@ -158869,7 +158890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20496 + - uid: 20419 components: - type: Transform rot: 3.141592653589793 rad @@ -158877,7 +158898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20497 + - uid: 20420 components: - type: Transform rot: 3.141592653589793 rad @@ -158885,7 +158906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20498 + - uid: 20421 components: - type: Transform rot: 3.141592653589793 rad @@ -158893,42 +158914,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20499 + - uid: 20422 components: - type: Transform pos: 10.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20500 + - uid: 20423 components: - type: Transform pos: 10.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20501 + - uid: 20424 components: - type: Transform pos: 10.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20502 + - uid: 20425 components: - type: Transform pos: 10.5,84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20503 + - uid: 20426 components: - type: Transform pos: 10.5,85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20504 + - uid: 20427 components: - type: Transform rot: 3.141592653589793 rad @@ -158936,7 +158957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20505 + - uid: 20428 components: - type: Transform rot: 3.141592653589793 rad @@ -158944,14 +158965,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20506 + - uid: 20429 components: - type: Transform pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20507 + - uid: 20430 components: - type: Transform rot: 1.5707963267948966 rad @@ -158959,7 +158980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20508 + - uid: 20431 components: - type: Transform rot: 1.5707963267948966 rad @@ -158967,7 +158988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20509 + - uid: 20432 components: - type: Transform rot: 1.5707963267948966 rad @@ -158975,7 +158996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20510 + - uid: 20433 components: - type: Transform rot: 1.5707963267948966 rad @@ -158983,7 +159004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20511 + - uid: 20434 components: - type: Transform rot: 1.5707963267948966 rad @@ -158991,7 +159012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20512 + - uid: 20435 components: - type: Transform rot: 1.5707963267948966 rad @@ -158999,7 +159020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20513 + - uid: 20436 components: - type: Transform rot: 1.5707963267948966 rad @@ -159007,7 +159028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20514 + - uid: 20437 components: - type: Transform rot: 3.141592653589793 rad @@ -159015,7 +159036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20515 + - uid: 20438 components: - type: Transform rot: 3.141592653589793 rad @@ -159023,7 +159044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20516 + - uid: 20439 components: - type: Transform rot: 3.141592653589793 rad @@ -159031,7 +159052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20517 + - uid: 20440 components: - type: Transform rot: 3.141592653589793 rad @@ -159039,7 +159060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20518 + - uid: 20441 components: - type: Transform rot: -1.5707963267948966 rad @@ -159047,21 +159068,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20519 + - uid: 20442 components: - type: Transform pos: 4.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20520 + - uid: 20443 components: - type: Transform pos: 4.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20521 + - uid: 20444 components: - type: Transform rot: -1.5707963267948966 rad @@ -159069,7 +159090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20522 + - uid: 20445 components: - type: Transform rot: 3.141592653589793 rad @@ -159077,7 +159098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20523 + - uid: 20446 components: - type: Transform rot: 3.141592653589793 rad @@ -159085,7 +159106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20524 + - uid: 20447 components: - type: Transform rot: 3.141592653589793 rad @@ -159093,7 +159114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20525 + - uid: 20448 components: - type: Transform rot: 1.5707963267948966 rad @@ -159101,7 +159122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20526 + - uid: 20449 components: - type: Transform rot: 1.5707963267948966 rad @@ -159109,7 +159130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20527 + - uid: 20450 components: - type: Transform rot: 1.5707963267948966 rad @@ -159117,7 +159138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20528 + - uid: 20451 components: - type: Transform rot: 1.5707963267948966 rad @@ -159125,7 +159146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20529 + - uid: 20452 components: - type: Transform rot: 3.141592653589793 rad @@ -159133,7 +159154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20530 + - uid: 20453 components: - type: Transform rot: 3.141592653589793 rad @@ -159141,7 +159162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20531 + - uid: 20454 components: - type: Transform rot: 3.141592653589793 rad @@ -159149,7 +159170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20532 + - uid: 20455 components: - type: Transform rot: 3.141592653589793 rad @@ -159157,7 +159178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20533 + - uid: 20456 components: - type: Transform rot: 3.141592653589793 rad @@ -159165,7 +159186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20534 + - uid: 20457 components: - type: Transform rot: 3.141592653589793 rad @@ -159173,7 +159194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20535 + - uid: 20458 components: - type: Transform rot: 3.141592653589793 rad @@ -159181,7 +159202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20536 + - uid: 20459 components: - type: Transform rot: 1.5707963267948966 rad @@ -159189,7 +159210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20537 + - uid: 20460 components: - type: Transform rot: 1.5707963267948966 rad @@ -159197,7 +159218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20538 + - uid: 20461 components: - type: Transform rot: 1.5707963267948966 rad @@ -159205,7 +159226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20539 + - uid: 20462 components: - type: Transform rot: 1.5707963267948966 rad @@ -159213,7 +159234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20540 + - uid: 20463 components: - type: Transform rot: 1.5707963267948966 rad @@ -159221,7 +159242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20541 + - uid: 20464 components: - type: Transform rot: 1.5707963267948966 rad @@ -159229,7 +159250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20542 + - uid: 20465 components: - type: Transform rot: 1.5707963267948966 rad @@ -159237,7 +159258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20543 + - uid: 20466 components: - type: Transform rot: 1.5707963267948966 rad @@ -159245,7 +159266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20544 + - uid: 20467 components: - type: Transform rot: 1.5707963267948966 rad @@ -159253,7 +159274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20545 + - uid: 20468 components: - type: Transform rot: 1.5707963267948966 rad @@ -159261,7 +159282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20546 + - uid: 20469 components: - type: Transform rot: 1.5707963267948966 rad @@ -159269,7 +159290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20547 + - uid: 20470 components: - type: Transform rot: -1.5707963267948966 rad @@ -159277,7 +159298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20548 + - uid: 20471 components: - type: Transform rot: 1.5707963267948966 rad @@ -159285,7 +159306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20549 + - uid: 20472 components: - type: Transform rot: -1.5707963267948966 rad @@ -159293,7 +159314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20550 + - uid: 20473 components: - type: Transform rot: 1.5707963267948966 rad @@ -159301,7 +159322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20551 + - uid: 20474 components: - type: Transform rot: 1.5707963267948966 rad @@ -159309,7 +159330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20552 + - uid: 20475 components: - type: Transform rot: 1.5707963267948966 rad @@ -159317,7 +159338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20553 + - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad @@ -159325,7 +159346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20554 + - uid: 20477 components: - type: Transform rot: 1.5707963267948966 rad @@ -159333,7 +159354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20555 + - uid: 20478 components: - type: Transform rot: 3.141592653589793 rad @@ -159341,7 +159362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20556 + - uid: 20479 components: - type: Transform rot: 3.141592653589793 rad @@ -159349,7 +159370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20557 + - uid: 20480 components: - type: Transform rot: 3.141592653589793 rad @@ -159357,7 +159378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20558 + - uid: 20481 components: - type: Transform rot: 3.141592653589793 rad @@ -159365,7 +159386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20559 + - uid: 20482 components: - type: Transform rot: 3.141592653589793 rad @@ -159373,7 +159394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20560 + - uid: 20483 components: - type: Transform rot: 3.141592653589793 rad @@ -159381,56 +159402,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20561 + - uid: 20484 components: - type: Transform pos: 16.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20562 + - uid: 20485 components: - type: Transform pos: 18.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20563 + - uid: 20486 components: - type: Transform pos: 18.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20564 + - uid: 20487 components: - type: Transform pos: 16.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20565 + - uid: 20488 components: - type: Transform pos: 16.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20566 + - uid: 20489 components: - type: Transform pos: 18.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20567 + - uid: 20490 components: - type: Transform pos: 16.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20568 + - uid: 20491 components: - type: Transform rot: -1.5707963267948966 rad @@ -159438,7 +159459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20569 + - uid: 20492 components: - type: Transform rot: -1.5707963267948966 rad @@ -159446,7 +159467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20570 + - uid: 20493 components: - type: Transform rot: 3.141592653589793 rad @@ -159454,7 +159475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20571 + - uid: 20494 components: - type: Transform rot: 1.5707963267948966 rad @@ -159462,7 +159483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 + - uid: 20495 components: - type: Transform rot: 1.5707963267948966 rad @@ -159470,63 +159491,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20573 + - uid: 20496 components: - type: Transform pos: 20.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20574 + - uid: 20497 components: - type: Transform pos: 18.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20575 + - uid: 20498 components: - type: Transform pos: 18.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20576 + - uid: 20499 components: - type: Transform pos: 20.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20577 + - uid: 20500 components: - type: Transform pos: 20.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20578 + - uid: 20501 components: - type: Transform pos: 18.5,47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20579 + - uid: 20502 components: - type: Transform pos: 18.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20580 + - uid: 20503 components: - type: Transform pos: 20.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20581 + - uid: 20504 components: - type: Transform rot: 3.141592653589793 rad @@ -159534,34 +159555,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20582 + - uid: 20505 components: - type: Transform pos: 20.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20583 + - uid: 20506 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-30.5 parent: 2 - - uid: 20584 + - uid: 20507 components: - type: Transform pos: 20.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20585 + - uid: 20508 components: - type: Transform pos: 20.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20586 + - uid: 20509 components: - type: Transform rot: 1.5707963267948966 rad @@ -159569,7 +159590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20587 + - uid: 20510 components: - type: Transform rot: 1.5707963267948966 rad @@ -159577,7 +159598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20588 + - uid: 20511 components: - type: Transform rot: 1.5707963267948966 rad @@ -159585,7 +159606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20589 + - uid: 20512 components: - type: Transform rot: 1.5707963267948966 rad @@ -159593,7 +159614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20590 + - uid: 20513 components: - type: Transform rot: 1.5707963267948966 rad @@ -159601,7 +159622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20591 + - uid: 20514 components: - type: Transform rot: 1.5707963267948966 rad @@ -159609,7 +159630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20592 + - uid: 20515 components: - type: Transform rot: 1.5707963267948966 rad @@ -159617,7 +159638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20593 + - uid: 20516 components: - type: Transform rot: 1.5707963267948966 rad @@ -159625,7 +159646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20594 + - uid: 20517 components: - type: Transform rot: 1.5707963267948966 rad @@ -159633,7 +159654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20595 + - uid: 20518 components: - type: Transform rot: 1.5707963267948966 rad @@ -159641,7 +159662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20596 + - uid: 20519 components: - type: Transform rot: 1.5707963267948966 rad @@ -159649,7 +159670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20597 + - uid: 20520 components: - type: Transform rot: 1.5707963267948966 rad @@ -159657,7 +159678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20598 + - uid: 20521 components: - type: Transform rot: 1.5707963267948966 rad @@ -159665,7 +159686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20599 + - uid: 20522 components: - type: Transform rot: 1.5707963267948966 rad @@ -159673,7 +159694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20600 + - uid: 20523 components: - type: Transform rot: 1.5707963267948966 rad @@ -159681,7 +159702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20601 + - uid: 20524 components: - type: Transform rot: 1.5707963267948966 rad @@ -159689,7 +159710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20602 + - uid: 20525 components: - type: Transform rot: 1.5707963267948966 rad @@ -159697,7 +159718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20603 + - uid: 20526 components: - type: Transform rot: 1.5707963267948966 rad @@ -159705,7 +159726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20604 + - uid: 20527 components: - type: Transform rot: 1.5707963267948966 rad @@ -159713,7 +159734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20605 + - uid: 20528 components: - type: Transform rot: 1.5707963267948966 rad @@ -159721,7 +159742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20606 + - uid: 20529 components: - type: Transform rot: 1.5707963267948966 rad @@ -159729,7 +159750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20607 + - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad @@ -159737,7 +159758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20608 + - uid: 20531 components: - type: Transform rot: 1.5707963267948966 rad @@ -159745,7 +159766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20609 + - uid: 20532 components: - type: Transform rot: 1.5707963267948966 rad @@ -159753,7 +159774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20610 + - uid: 20533 components: - type: Transform rot: 1.5707963267948966 rad @@ -159761,7 +159782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20611 + - uid: 20534 components: - type: Transform rot: 1.5707963267948966 rad @@ -159769,7 +159790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20612 + - uid: 20535 components: - type: Transform rot: 1.5707963267948966 rad @@ -159777,7 +159798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20613 + - uid: 20536 components: - type: Transform rot: 1.5707963267948966 rad @@ -159785,7 +159806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20614 + - uid: 20537 components: - type: Transform rot: 1.5707963267948966 rad @@ -159793,7 +159814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20615 + - uid: 20538 components: - type: Transform rot: -1.5707963267948966 rad @@ -159801,7 +159822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20616 + - uid: 20539 components: - type: Transform rot: -1.5707963267948966 rad @@ -159809,7 +159830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20617 + - uid: 20540 components: - type: Transform rot: -1.5707963267948966 rad @@ -159817,7 +159838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20618 + - uid: 20541 components: - type: Transform rot: 1.5707963267948966 rad @@ -159825,7 +159846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20619 + - uid: 20542 components: - type: Transform rot: 1.5707963267948966 rad @@ -159833,7 +159854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20620 + - uid: 20543 components: - type: Transform rot: 1.5707963267948966 rad @@ -159841,63 +159862,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20621 + - uid: 20544 components: - type: Transform pos: 20.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20622 + - uid: 20545 components: - type: Transform pos: 20.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20623 + - uid: 20546 components: - type: Transform pos: 20.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20624 + - uid: 20547 components: - type: Transform pos: 20.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20625 + - uid: 20548 components: - type: Transform pos: 20.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20626 + - uid: 20549 components: - type: Transform pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20627 + - uid: 20550 components: - type: Transform pos: 21.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20628 + - uid: 20551 components: - type: Transform pos: 21.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20629 + - uid: 20552 components: - type: Transform rot: 3.141592653589793 rad @@ -159905,28 +159926,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20630 + - uid: 20553 components: - type: Transform pos: 21.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20631 + - uid: 20554 components: - type: Transform pos: 20.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20632 + - uid: 20555 components: - type: Transform pos: 20.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20633 + - uid: 20556 components: - type: Transform rot: 1.5707963267948966 rad @@ -159934,7 +159955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20634 + - uid: 20557 components: - type: Transform rot: 1.5707963267948966 rad @@ -159942,7 +159963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20635 + - uid: 20558 components: - type: Transform rot: 1.5707963267948966 rad @@ -159950,7 +159971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20636 + - uid: 20559 components: - type: Transform rot: 1.5707963267948966 rad @@ -159958,7 +159979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20637 + - uid: 20560 components: - type: Transform rot: 1.5707963267948966 rad @@ -159966,7 +159987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20638 + - uid: 20561 components: - type: Transform rot: 1.5707963267948966 rad @@ -159974,7 +159995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20639 + - uid: 20562 components: - type: Transform rot: 1.5707963267948966 rad @@ -159982,7 +160003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20640 + - uid: 20563 components: - type: Transform rot: 1.5707963267948966 rad @@ -159990,7 +160011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20641 + - uid: 20564 components: - type: Transform rot: 1.5707963267948966 rad @@ -159998,7 +160019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20642 + - uid: 20565 components: - type: Transform rot: 1.5707963267948966 rad @@ -160006,7 +160027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20643 + - uid: 20566 components: - type: Transform rot: 1.5707963267948966 rad @@ -160014,7 +160035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20644 + - uid: 20567 components: - type: Transform rot: 1.5707963267948966 rad @@ -160022,7 +160043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20645 + - uid: 20568 components: - type: Transform rot: 1.5707963267948966 rad @@ -160030,28 +160051,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20646 + - uid: 20569 components: - type: Transform pos: 31.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20647 + - uid: 20570 components: - type: Transform pos: 31.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20648 + - uid: 20571 components: - type: Transform pos: 31.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20649 + - uid: 20572 components: - type: Transform rot: -1.5707963267948966 rad @@ -160059,7 +160080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20650 + - uid: 20573 components: - type: Transform rot: -1.5707963267948966 rad @@ -160067,7 +160088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20651 + - uid: 20574 components: - type: Transform rot: 3.141592653589793 rad @@ -160075,7 +160096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20652 + - uid: 20575 components: - type: Transform rot: 3.141592653589793 rad @@ -160083,7 +160104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20653 + - uid: 20576 components: - type: Transform rot: 3.141592653589793 rad @@ -160091,7 +160112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20654 + - uid: 20577 components: - type: Transform rot: 3.141592653589793 rad @@ -160099,7 +160120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20655 + - uid: 20578 components: - type: Transform rot: 3.141592653589793 rad @@ -160107,7 +160128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20656 + - uid: 20579 components: - type: Transform rot: 3.141592653589793 rad @@ -160115,21 +160136,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20657 + - uid: 20580 components: - type: Transform pos: 22.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20658 + - uid: 20581 components: - type: Transform pos: 22.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20659 + - uid: 20582 components: - type: Transform rot: -1.5707963267948966 rad @@ -160137,7 +160158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20660 + - uid: 20583 components: - type: Transform rot: -1.5707963267948966 rad @@ -160145,7 +160166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20661 + - uid: 20584 components: - type: Transform rot: 3.141592653589793 rad @@ -160153,7 +160174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20662 + - uid: 20585 components: - type: Transform rot: 1.5707963267948966 rad @@ -160161,7 +160182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20663 + - uid: 20586 components: - type: Transform rot: 1.5707963267948966 rad @@ -160169,7 +160190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20664 + - uid: 20587 components: - type: Transform rot: 1.5707963267948966 rad @@ -160177,21 +160198,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20665 + - uid: 20588 components: - type: Transform pos: 22.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20666 + - uid: 20589 components: - type: Transform pos: 22.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20667 + - uid: 20590 components: - type: Transform rot: 1.5707963267948966 rad @@ -160199,7 +160220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20668 + - uid: 20591 components: - type: Transform rot: 1.5707963267948966 rad @@ -160207,7 +160228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20669 + - uid: 20592 components: - type: Transform rot: 3.141592653589793 rad @@ -160215,7 +160236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20670 + - uid: 20593 components: - type: Transform rot: 3.141592653589793 rad @@ -160223,7 +160244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20671 + - uid: 20594 components: - type: Transform rot: 1.5707963267948966 rad @@ -160231,7 +160252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20672 + - uid: 20595 components: - type: Transform rot: 1.5707963267948966 rad @@ -160239,7 +160260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20673 + - uid: 20596 components: - type: Transform rot: 1.5707963267948966 rad @@ -160247,7 +160268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20674 + - uid: 20597 components: - type: Transform rot: 1.5707963267948966 rad @@ -160255,7 +160276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20675 + - uid: 20598 components: - type: Transform rot: 1.5707963267948966 rad @@ -160263,7 +160284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20676 + - uid: 20599 components: - type: Transform rot: 1.5707963267948966 rad @@ -160271,35 +160292,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20677 + - uid: 20600 components: - type: Transform pos: 28.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20678 + - uid: 20601 components: - type: Transform pos: 28.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20679 + - uid: 20602 components: - type: Transform pos: 28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20680 + - uid: 20603 components: - type: Transform pos: 28.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20681 + - uid: 20604 components: - type: Transform rot: 3.141592653589793 rad @@ -160307,14 +160328,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 20682 + - uid: 20605 components: - type: Transform pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20683 + - uid: 20606 components: - type: Transform rot: 3.141592653589793 rad @@ -160322,13 +160343,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20684 + - uid: 20607 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-30.5 parent: 2 - - uid: 20685 + - uid: 20608 components: - type: Transform rot: 3.141592653589793 rad @@ -160336,7 +160357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20686 + - uid: 20609 components: - type: Transform rot: 3.141592653589793 rad @@ -160344,7 +160365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20687 + - uid: 20610 components: - type: Transform rot: 1.5707963267948966 rad @@ -160352,7 +160373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20688 + - uid: 20611 components: - type: Transform rot: 1.5707963267948966 rad @@ -160360,7 +160381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20689 + - uid: 20612 components: - type: Transform rot: 1.5707963267948966 rad @@ -160368,7 +160389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20690 + - uid: 20613 components: - type: Transform rot: 1.5707963267948966 rad @@ -160376,7 +160397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20691 + - uid: 20614 components: - type: Transform rot: 1.5707963267948966 rad @@ -160384,7 +160405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20692 + - uid: 20615 components: - type: Transform rot: 1.5707963267948966 rad @@ -160392,7 +160413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20693 + - uid: 20616 components: - type: Transform rot: 1.5707963267948966 rad @@ -160400,14 +160421,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20694 + - uid: 20617 components: - type: Transform pos: -3.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20695 + - uid: 20618 components: - type: Transform rot: -1.5707963267948966 rad @@ -160415,7 +160436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20696 + - uid: 20619 components: - type: Transform rot: -1.5707963267948966 rad @@ -160423,7 +160444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20697 + - uid: 20620 components: - type: Transform rot: -1.5707963267948966 rad @@ -160431,7 +160452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20698 + - uid: 20621 components: - type: Transform rot: -1.5707963267948966 rad @@ -160439,7 +160460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20699 + - uid: 20622 components: - type: Transform rot: -1.5707963267948966 rad @@ -160447,7 +160468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20700 + - uid: 20623 components: - type: Transform rot: 3.141592653589793 rad @@ -160455,7 +160476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20701 + - uid: 20624 components: - type: Transform rot: 3.141592653589793 rad @@ -160463,7 +160484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20702 + - uid: 20625 components: - type: Transform rot: -1.5707963267948966 rad @@ -160471,7 +160492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20703 + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad @@ -160479,7 +160500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20704 + - uid: 20627 components: - type: Transform rot: 1.5707963267948966 rad @@ -160487,7 +160508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20705 + - uid: 20628 components: - type: Transform rot: 1.5707963267948966 rad @@ -160495,7 +160516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20706 + - uid: 20629 components: - type: Transform rot: 1.5707963267948966 rad @@ -160503,7 +160524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20707 + - uid: 20630 components: - type: Transform rot: 1.5707963267948966 rad @@ -160511,7 +160532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20708 + - uid: 20631 components: - type: Transform rot: 1.5707963267948966 rad @@ -160519,14 +160540,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20709 + - uid: 20632 components: - type: Transform pos: 39.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20710 + - uid: 20633 components: - type: Transform rot: -1.5707963267948966 rad @@ -160534,7 +160555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20711 + - uid: 20634 components: - type: Transform rot: 3.141592653589793 rad @@ -160542,7 +160563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20712 + - uid: 20635 components: - type: Transform rot: 3.141592653589793 rad @@ -160550,7 +160571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20713 + - uid: 20636 components: - type: Transform rot: 1.5707963267948966 rad @@ -160558,7 +160579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20714 + - uid: 20637 components: - type: Transform rot: 1.5707963267948966 rad @@ -160566,7 +160587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20715 + - uid: 20638 components: - type: Transform rot: 1.5707963267948966 rad @@ -160574,70 +160595,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20716 + - uid: 20639 components: - type: Transform pos: 40.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20717 + - uid: 20640 components: - type: Transform pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20718 + - uid: 20641 components: - type: Transform pos: 40.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20719 + - uid: 20642 components: - type: Transform pos: 40.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20720 + - uid: 20643 components: - type: Transform pos: 40.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20721 + - uid: 20644 components: - type: Transform pos: 40.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20722 + - uid: 20645 components: - type: Transform pos: 40.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20723 + - uid: 20646 components: - type: Transform pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20724 + - uid: 20647 components: - type: Transform pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20725 + - uid: 20648 components: - type: Transform rot: -1.5707963267948966 rad @@ -160645,7 +160666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20726 + - uid: 20649 components: - type: Transform rot: -1.5707963267948966 rad @@ -160653,7 +160674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20727 + - uid: 20650 components: - type: Transform rot: -1.5707963267948966 rad @@ -160661,7 +160682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20728 + - uid: 20651 components: - type: Transform rot: 1.5707963267948966 rad @@ -160669,7 +160690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20729 + - uid: 20652 components: - type: Transform rot: 1.5707963267948966 rad @@ -160677,7 +160698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20730 + - uid: 20653 components: - type: Transform rot: 1.5707963267948966 rad @@ -160685,7 +160706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20731 + - uid: 20654 components: - type: Transform rot: 1.5707963267948966 rad @@ -160693,7 +160714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20732 + - uid: 20655 components: - type: Transform rot: -1.5707963267948966 rad @@ -160701,7 +160722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20733 + - uid: 20656 components: - type: Transform rot: -1.5707963267948966 rad @@ -160709,7 +160730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20734 + - uid: 20657 components: - type: Transform rot: 3.141592653589793 rad @@ -160717,7 +160738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20735 + - uid: 20658 components: - type: Transform rot: 3.141592653589793 rad @@ -160725,7 +160746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20736 + - uid: 20659 components: - type: Transform rot: 3.141592653589793 rad @@ -160733,7 +160754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20737 + - uid: 20660 components: - type: Transform rot: 3.141592653589793 rad @@ -160741,7 +160762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20738 + - uid: 20661 components: - type: Transform rot: 3.141592653589793 rad @@ -160749,7 +160770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20739 + - uid: 20662 components: - type: Transform rot: 3.141592653589793 rad @@ -160757,7 +160778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20740 + - uid: 20663 components: - type: Transform rot: 3.141592653589793 rad @@ -160765,7 +160786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20741 + - uid: 20664 components: - type: Transform rot: 1.5707963267948966 rad @@ -160773,7 +160794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20742 + - uid: 20665 components: - type: Transform rot: 1.5707963267948966 rad @@ -160781,7 +160802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20743 + - uid: 20666 components: - type: Transform rot: 1.5707963267948966 rad @@ -160789,7 +160810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20744 + - uid: 20667 components: - type: Transform rot: 3.141592653589793 rad @@ -160797,7 +160818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20745 + - uid: 20668 components: - type: Transform rot: 3.141592653589793 rad @@ -160805,7 +160826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20746 + - uid: 20669 components: - type: Transform rot: 3.141592653589793 rad @@ -160813,7 +160834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20747 + - uid: 20670 components: - type: Transform rot: 3.141592653589793 rad @@ -160821,7 +160842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20748 + - uid: 20671 components: - type: Transform rot: 1.5707963267948966 rad @@ -160829,7 +160850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20749 + - uid: 20672 components: - type: Transform rot: 1.5707963267948966 rad @@ -160837,7 +160858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20750 + - uid: 20673 components: - type: Transform rot: 1.5707963267948966 rad @@ -160845,7 +160866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20751 + - uid: 20674 components: - type: Transform rot: 1.5707963267948966 rad @@ -160853,7 +160874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20752 + - uid: 20675 components: - type: Transform rot: 1.5707963267948966 rad @@ -160861,7 +160882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20753 + - uid: 20676 components: - type: Transform rot: 1.5707963267948966 rad @@ -160869,7 +160890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20754 + - uid: 20677 components: - type: Transform rot: 3.141592653589793 rad @@ -160877,7 +160898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20755 + - uid: 20678 components: - type: Transform rot: 3.141592653589793 rad @@ -160885,7 +160906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20756 + - uid: 20679 components: - type: Transform rot: 1.5707963267948966 rad @@ -160893,7 +160914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20757 + - uid: 20680 components: - type: Transform rot: 1.5707963267948966 rad @@ -160901,7 +160922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20758 + - uid: 20681 components: - type: Transform rot: 1.5707963267948966 rad @@ -160909,7 +160930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20759 + - uid: 20682 components: - type: Transform rot: 1.5707963267948966 rad @@ -160917,7 +160938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20760 + - uid: 20683 components: - type: Transform rot: 1.5707963267948966 rad @@ -160925,7 +160946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20761 + - uid: 20684 components: - type: Transform rot: 1.5707963267948966 rad @@ -160933,7 +160954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20762 + - uid: 20685 components: - type: Transform rot: 1.5707963267948966 rad @@ -160941,7 +160962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20763 + - uid: 20686 components: - type: Transform rot: 1.5707963267948966 rad @@ -160949,7 +160970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20764 + - uid: 20687 components: - type: Transform rot: 1.5707963267948966 rad @@ -160957,7 +160978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20765 + - uid: 20688 components: - type: Transform rot: 1.5707963267948966 rad @@ -160965,14 +160986,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20766 + - uid: 20689 components: - type: Transform pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20767 + - uid: 20690 components: - type: Transform rot: 1.5707963267948966 rad @@ -160980,14 +161001,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20768 + - uid: 20691 components: - type: Transform pos: 46.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20769 + - uid: 20692 components: - type: Transform rot: 1.5707963267948966 rad @@ -160995,33 +161016,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20770 + - uid: 20693 components: - type: Transform pos: 48.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20771 + - uid: 20694 components: - type: Transform pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20772 + - uid: 20695 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,5.5 parent: 2 - - uid: 20773 + - uid: 20696 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,4.5 parent: 2 - - uid: 20774 + - uid: 20697 components: - type: Transform rot: 1.5707963267948966 rad @@ -161029,7 +161050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20775 + - uid: 20698 components: - type: Transform rot: 1.5707963267948966 rad @@ -161037,7 +161058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20776 + - uid: 20699 components: - type: Transform rot: 1.5707963267948966 rad @@ -161045,7 +161066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20777 + - uid: 20700 components: - type: Transform rot: 3.141592653589793 rad @@ -161053,7 +161074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20778 + - uid: 20701 components: - type: Transform rot: -1.5707963267948966 rad @@ -161061,7 +161082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20779 + - uid: 20702 components: - type: Transform rot: -1.5707963267948966 rad @@ -161069,7 +161090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20780 + - uid: 20703 components: - type: Transform rot: -1.5707963267948966 rad @@ -161077,7 +161098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20781 + - uid: 20704 components: - type: Transform rot: -1.5707963267948966 rad @@ -161085,7 +161106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20782 + - uid: 20705 components: - type: Transform rot: -1.5707963267948966 rad @@ -161093,7 +161114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20783 + - uid: 20706 components: - type: Transform rot: -1.5707963267948966 rad @@ -161101,7 +161122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20784 + - uid: 20707 components: - type: Transform rot: -1.5707963267948966 rad @@ -161109,7 +161130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20785 + - uid: 20708 components: - type: Transform rot: 3.141592653589793 rad @@ -161117,7 +161138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20786 + - uid: 20709 components: - type: Transform rot: -1.5707963267948966 rad @@ -161125,7 +161146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20787 + - uid: 20710 components: - type: Transform rot: -1.5707963267948966 rad @@ -161133,7 +161154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20788 + - uid: 20711 components: - type: Transform rot: 3.141592653589793 rad @@ -161141,7 +161162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20789 + - uid: 20712 components: - type: Transform rot: 3.141592653589793 rad @@ -161149,7 +161170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20790 + - uid: 20713 components: - type: Transform rot: 3.141592653589793 rad @@ -161157,7 +161178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20791 + - uid: 20714 components: - type: Transform rot: 3.141592653589793 rad @@ -161165,7 +161186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20792 + - uid: 20715 components: - type: Transform rot: 3.141592653589793 rad @@ -161173,7 +161194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20793 + - uid: 20716 components: - type: Transform rot: 1.5707963267948966 rad @@ -161181,7 +161202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20794 + - uid: 20717 components: - type: Transform rot: 1.5707963267948966 rad @@ -161189,7 +161210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20795 + - uid: 20718 components: - type: Transform rot: 1.5707963267948966 rad @@ -161197,7 +161218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20796 + - uid: 20719 components: - type: Transform rot: 1.5707963267948966 rad @@ -161205,7 +161226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20797 + - uid: 20720 components: - type: Transform rot: 1.5707963267948966 rad @@ -161213,7 +161234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20798 + - uid: 20721 components: - type: Transform rot: 1.5707963267948966 rad @@ -161221,7 +161242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20799 + - uid: 20722 components: - type: Transform rot: 1.5707963267948966 rad @@ -161229,7 +161250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20800 + - uid: 20723 components: - type: Transform rot: -1.5707963267948966 rad @@ -161237,7 +161258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20801 + - uid: 20724 components: - type: Transform rot: -1.5707963267948966 rad @@ -161245,7 +161266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20802 + - uid: 20725 components: - type: Transform rot: -1.5707963267948966 rad @@ -161253,7 +161274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20803 + - uid: 20726 components: - type: Transform rot: -1.5707963267948966 rad @@ -161261,7 +161282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20804 + - uid: 20727 components: - type: Transform rot: -1.5707963267948966 rad @@ -161269,7 +161290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20805 + - uid: 20728 components: - type: Transform rot: -1.5707963267948966 rad @@ -161277,7 +161298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20806 + - uid: 20729 components: - type: Transform rot: 3.141592653589793 rad @@ -161285,7 +161306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20807 + - uid: 20730 components: - type: Transform rot: 3.141592653589793 rad @@ -161293,7 +161314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20808 + - uid: 20731 components: - type: Transform rot: 1.5707963267948966 rad @@ -161301,7 +161322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20809 + - uid: 20732 components: - type: Transform rot: 1.5707963267948966 rad @@ -161309,7 +161330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20810 + - uid: 20733 components: - type: Transform rot: 1.5707963267948966 rad @@ -161317,7 +161338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20811 + - uid: 20734 components: - type: Transform rot: 1.5707963267948966 rad @@ -161325,7 +161346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20812 + - uid: 20735 components: - type: Transform rot: 1.5707963267948966 rad @@ -161333,7 +161354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20813 + - uid: 20736 components: - type: Transform rot: 1.5707963267948966 rad @@ -161341,7 +161362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20814 + - uid: 20737 components: - type: Transform rot: 1.5707963267948966 rad @@ -161349,7 +161370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20815 + - uid: 20738 components: - type: Transform rot: 1.5707963267948966 rad @@ -161357,7 +161378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20816 + - uid: 20739 components: - type: Transform rot: 1.5707963267948966 rad @@ -161365,7 +161386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20817 + - uid: 20740 components: - type: Transform rot: 1.5707963267948966 rad @@ -161373,7 +161394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20818 + - uid: 20741 components: - type: Transform rot: 1.5707963267948966 rad @@ -161381,7 +161402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20819 + - uid: 20742 components: - type: Transform rot: 1.5707963267948966 rad @@ -161389,7 +161410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20820 + - uid: 20743 components: - type: Transform rot: 1.5707963267948966 rad @@ -161397,7 +161418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20821 + - uid: 20744 components: - type: Transform rot: 1.5707963267948966 rad @@ -161405,7 +161426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20822 + - uid: 20745 components: - type: Transform rot: 1.5707963267948966 rad @@ -161413,13 +161434,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20823 + - uid: 20746 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,55.5 parent: 2 - - uid: 20824 + - uid: 20747 components: - type: Transform rot: 1.5707963267948966 rad @@ -161427,7 +161448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20825 + - uid: 20748 components: - type: Transform rot: 1.5707963267948966 rad @@ -161435,7 +161456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20826 + - uid: 20749 components: - type: Transform rot: 1.5707963267948966 rad @@ -161443,7 +161464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20827 + - uid: 20750 components: - type: Transform rot: 1.5707963267948966 rad @@ -161451,7 +161472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20828 + - uid: 20751 components: - type: Transform rot: 1.5707963267948966 rad @@ -161459,7 +161480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20829 + - uid: 20752 components: - type: Transform rot: 1.5707963267948966 rad @@ -161467,7 +161488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20830 + - uid: 20753 components: - type: Transform rot: 1.5707963267948966 rad @@ -161475,7 +161496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20831 + - uid: 20754 components: - type: Transform rot: -1.5707963267948966 rad @@ -161483,7 +161504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20832 + - uid: 20755 components: - type: Transform rot: -1.5707963267948966 rad @@ -161491,7 +161512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20833 + - uid: 20756 components: - type: Transform rot: -1.5707963267948966 rad @@ -161499,7 +161520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20834 + - uid: 20757 components: - type: Transform rot: 1.5707963267948966 rad @@ -161507,7 +161528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20835 + - uid: 20758 components: - type: Transform rot: 1.5707963267948966 rad @@ -161515,7 +161536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20836 + - uid: 20759 components: - type: Transform rot: 3.141592653589793 rad @@ -161523,7 +161544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20837 + - uid: 20760 components: - type: Transform rot: 3.141592653589793 rad @@ -161531,7 +161552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20838 + - uid: 20761 components: - type: Transform rot: 3.141592653589793 rad @@ -161539,7 +161560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20839 + - uid: 20762 components: - type: Transform rot: 3.141592653589793 rad @@ -161547,7 +161568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20840 + - uid: 20763 components: - type: Transform rot: 3.141592653589793 rad @@ -161555,7 +161576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20841 + - uid: 20764 components: - type: Transform rot: 3.141592653589793 rad @@ -161563,7 +161584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20842 + - uid: 20765 components: - type: Transform rot: 3.141592653589793 rad @@ -161571,7 +161592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20843 + - uid: 20766 components: - type: Transform rot: 3.141592653589793 rad @@ -161579,7 +161600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20844 + - uid: 20767 components: - type: Transform rot: 3.141592653589793 rad @@ -161587,21 +161608,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20845 + - uid: 20768 components: - type: Transform pos: 74.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20846 + - uid: 20769 components: - type: Transform pos: 74.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20847 + - uid: 20770 components: - type: Transform rot: 3.141592653589793 rad @@ -161609,7 +161630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20848 + - uid: 20771 components: - type: Transform rot: 3.141592653589793 rad @@ -161617,7 +161638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20849 + - uid: 20772 components: - type: Transform rot: -1.5707963267948966 rad @@ -161625,7 +161646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20850 + - uid: 20773 components: - type: Transform rot: -1.5707963267948966 rad @@ -161633,7 +161654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20851 + - uid: 20774 components: - type: Transform rot: 1.5707963267948966 rad @@ -161641,7 +161662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20852 + - uid: 20775 components: - type: Transform rot: 1.5707963267948966 rad @@ -161649,7 +161670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20853 + - uid: 20776 components: - type: Transform rot: 1.5707963267948966 rad @@ -161657,7 +161678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20854 + - uid: 20777 components: - type: Transform rot: 1.5707963267948966 rad @@ -161665,7 +161686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20855 + - uid: 20778 components: - type: Transform rot: 1.5707963267948966 rad @@ -161673,7 +161694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20856 + - uid: 20779 components: - type: Transform rot: 1.5707963267948966 rad @@ -161681,7 +161702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20857 + - uid: 20780 components: - type: Transform rot: 1.5707963267948966 rad @@ -161689,7 +161710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20858 + - uid: 20781 components: - type: Transform rot: -1.5707963267948966 rad @@ -161697,7 +161718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20859 + - uid: 20782 components: - type: Transform rot: 3.141592653589793 rad @@ -161705,7 +161726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20860 + - uid: 20783 components: - type: Transform rot: 3.141592653589793 rad @@ -161713,14 +161734,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20861 + - uid: 20784 components: - type: Transform pos: 72.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20862 + - uid: 20785 components: - type: Transform rot: 3.141592653589793 rad @@ -161728,14 +161749,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20863 + - uid: 20786 components: - type: Transform pos: 72.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20864 + - uid: 20787 components: - type: Transform rot: 3.141592653589793 rad @@ -161743,21 +161764,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20865 + - uid: 20788 components: - type: Transform pos: 72.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20866 + - uid: 20789 components: - type: Transform pos: 72.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20867 + - uid: 20790 components: - type: Transform rot: 3.141592653589793 rad @@ -161765,7 +161786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20868 + - uid: 20791 components: - type: Transform rot: 3.141592653589793 rad @@ -161773,7 +161794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20869 + - uid: 20792 components: - type: Transform rot: 3.141592653589793 rad @@ -161781,7 +161802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20870 + - uid: 20793 components: - type: Transform rot: 3.141592653589793 rad @@ -161789,7 +161810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20871 + - uid: 20794 components: - type: Transform rot: 3.141592653589793 rad @@ -161797,7 +161818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20872 + - uid: 20795 components: - type: Transform rot: 3.141592653589793 rad @@ -161805,7 +161826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20873 + - uid: 20796 components: - type: Transform rot: 3.141592653589793 rad @@ -161813,7 +161834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20874 + - uid: 20797 components: - type: Transform rot: 1.5707963267948966 rad @@ -161821,7 +161842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20875 + - uid: 20798 components: - type: Transform rot: 1.5707963267948966 rad @@ -161829,21 +161850,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20876 + - uid: 20799 components: - type: Transform pos: 83.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20877 + - uid: 20800 components: - type: Transform pos: 83.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20878 + - uid: 20801 components: - type: Transform rot: -1.5707963267948966 rad @@ -161851,7 +161872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20879 + - uid: 20802 components: - type: Transform rot: -1.5707963267948966 rad @@ -161859,7 +161880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20880 + - uid: 20803 components: - type: Transform rot: -1.5707963267948966 rad @@ -161867,7 +161888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20881 + - uid: 20804 components: - type: Transform rot: -1.5707963267948966 rad @@ -161875,7 +161896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20882 + - uid: 20805 components: - type: Transform rot: -1.5707963267948966 rad @@ -161883,7 +161904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20883 + - uid: 20806 components: - type: Transform rot: -1.5707963267948966 rad @@ -161891,7 +161912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20884 + - uid: 20807 components: - type: Transform rot: -1.5707963267948966 rad @@ -161899,7 +161920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20885 + - uid: 20808 components: - type: Transform rot: -1.5707963267948966 rad @@ -161907,7 +161928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20886 + - uid: 20809 components: - type: Transform rot: 3.141592653589793 rad @@ -161915,7 +161936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20887 + - uid: 20810 components: - type: Transform rot: 3.141592653589793 rad @@ -161923,7 +161944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20888 + - uid: 20811 components: - type: Transform rot: 3.141592653589793 rad @@ -161931,7 +161952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20889 + - uid: 20812 components: - type: Transform rot: 3.141592653589793 rad @@ -161939,7 +161960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20890 + - uid: 20813 components: - type: Transform rot: 3.141592653589793 rad @@ -161947,7 +161968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20891 + - uid: 20814 components: - type: Transform rot: 3.141592653589793 rad @@ -161955,7 +161976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20892 + - uid: 20815 components: - type: Transform rot: 3.141592653589793 rad @@ -161963,7 +161984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20893 + - uid: 20816 components: - type: Transform rot: 1.5707963267948966 rad @@ -161971,7 +161992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20894 + - uid: 20817 components: - type: Transform rot: 1.5707963267948966 rad @@ -161979,7 +162000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20895 + - uid: 20818 components: - type: Transform rot: 1.5707963267948966 rad @@ -161987,56 +162008,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20896 + - uid: 20819 components: - type: Transform pos: 51.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20897 + - uid: 20820 components: - type: Transform pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20898 + - uid: 20821 components: - type: Transform pos: 51.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20899 + - uid: 20822 components: - type: Transform pos: 51.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20900 + - uid: 20823 components: - type: Transform pos: 47.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20901 + - uid: 20824 components: - type: Transform pos: 47.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20902 + - uid: 20825 components: - type: Transform pos: 47.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20903 + - uid: 20826 components: - type: Transform rot: 3.141592653589793 rad @@ -162044,7 +162065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20904 + - uid: 20827 components: - type: Transform rot: 3.141592653589793 rad @@ -162052,7 +162073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20905 + - uid: 20828 components: - type: Transform rot: 1.5707963267948966 rad @@ -162060,7 +162081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20906 + - uid: 20829 components: - type: Transform rot: 1.5707963267948966 rad @@ -162068,42 +162089,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20907 + - uid: 20830 components: - type: Transform pos: 52.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20908 + - uid: 20831 components: - type: Transform pos: 52.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20909 + - uid: 20832 components: - type: Transform pos: 52.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20910 + - uid: 20833 components: - type: Transform pos: 52.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20911 + - uid: 20834 components: - type: Transform pos: 52.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20912 + - uid: 20835 components: - type: Transform rot: -1.5707963267948966 rad @@ -162111,7 +162132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20913 + - uid: 20836 components: - type: Transform rot: -1.5707963267948966 rad @@ -162119,7 +162140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20914 + - uid: 20837 components: - type: Transform rot: -1.5707963267948966 rad @@ -162127,7 +162148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20915 + - uid: 20838 components: - type: Transform rot: -1.5707963267948966 rad @@ -162135,7 +162156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20916 + - uid: 20839 components: - type: Transform rot: -1.5707963267948966 rad @@ -162143,7 +162164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20917 + - uid: 20840 components: - type: Transform rot: -1.5707963267948966 rad @@ -162151,7 +162172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20918 + - uid: 20841 components: - type: Transform rot: -1.5707963267948966 rad @@ -162159,7 +162180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20919 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad @@ -162167,7 +162188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20920 + - uid: 20843 components: - type: Transform rot: -1.5707963267948966 rad @@ -162175,7 +162196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20921 + - uid: 20844 components: - type: Transform rot: -1.5707963267948966 rad @@ -162183,7 +162204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20922 + - uid: 20845 components: - type: Transform rot: -1.5707963267948966 rad @@ -162191,7 +162212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20923 + - uid: 20846 components: - type: Transform rot: 3.141592653589793 rad @@ -162199,7 +162220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20924 + - uid: 20847 components: - type: Transform rot: 1.5707963267948966 rad @@ -162207,7 +162228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20925 + - uid: 20848 components: - type: Transform rot: 1.5707963267948966 rad @@ -162215,7 +162236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20926 + - uid: 20849 components: - type: Transform rot: 1.5707963267948966 rad @@ -162223,7 +162244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20927 + - uid: 20850 components: - type: Transform rot: 1.5707963267948966 rad @@ -162231,7 +162252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20928 + - uid: 20851 components: - type: Transform rot: 1.5707963267948966 rad @@ -162239,7 +162260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20929 + - uid: 20852 components: - type: Transform rot: 3.141592653589793 rad @@ -162247,7 +162268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20930 + - uid: 20853 components: - type: Transform rot: 3.141592653589793 rad @@ -162255,7 +162276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20931 + - uid: 20854 components: - type: Transform rot: 1.5707963267948966 rad @@ -162263,7 +162284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20932 + - uid: 20855 components: - type: Transform rot: 1.5707963267948966 rad @@ -162271,7 +162292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20933 + - uid: 20856 components: - type: Transform rot: 1.5707963267948966 rad @@ -162279,7 +162300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20934 + - uid: 20857 components: - type: Transform rot: 1.5707963267948966 rad @@ -162287,7 +162308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20935 + - uid: 20858 components: - type: Transform rot: 1.5707963267948966 rad @@ -162295,7 +162316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20936 + - uid: 20859 components: - type: Transform rot: 1.5707963267948966 rad @@ -162303,14 +162324,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20937 + - uid: 20860 components: - type: Transform pos: 2.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20938 + - uid: 20861 components: - type: Transform rot: 1.5707963267948966 rad @@ -162318,7 +162339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20939 + - uid: 20862 components: - type: Transform rot: 1.5707963267948966 rad @@ -162326,7 +162347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20940 + - uid: 20863 components: - type: Transform rot: 1.5707963267948966 rad @@ -162334,7 +162355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20941 + - uid: 20864 components: - type: Transform rot: 1.5707963267948966 rad @@ -162342,7 +162363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20942 + - uid: 20865 components: - type: Transform rot: -1.5707963267948966 rad @@ -162350,7 +162371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20943 + - uid: 20866 components: - type: Transform rot: -1.5707963267948966 rad @@ -162358,7 +162379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20944 + - uid: 20867 components: - type: Transform rot: -1.5707963267948966 rad @@ -162366,7 +162387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20945 + - uid: 20868 components: - type: Transform rot: -1.5707963267948966 rad @@ -162374,7 +162395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20946 + - uid: 20869 components: - type: Transform rot: -1.5707963267948966 rad @@ -162382,7 +162403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20947 + - uid: 20870 components: - type: Transform rot: -1.5707963267948966 rad @@ -162390,21 +162411,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20948 + - uid: 20871 components: - type: Transform pos: 25.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20949 + - uid: 20872 components: - type: Transform pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20950 + - uid: 20873 components: - type: Transform rot: -1.5707963267948966 rad @@ -162412,7 +162433,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20951 + - uid: 20874 components: - type: Transform rot: -1.5707963267948966 rad @@ -162420,7 +162441,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20952 + - uid: 20875 components: - type: Transform rot: -1.5707963267948966 rad @@ -162428,7 +162449,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20953 + - uid: 20876 components: - type: Transform rot: -1.5707963267948966 rad @@ -162436,7 +162457,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20954 + - uid: 20877 components: - type: Transform rot: -1.5707963267948966 rad @@ -162444,7 +162465,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20955 + - uid: 20878 components: - type: Transform rot: -1.5707963267948966 rad @@ -162452,7 +162473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20956 + - uid: 20879 components: - type: Transform rot: -1.5707963267948966 rad @@ -162460,7 +162481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20957 + - uid: 20880 components: - type: Transform rot: -1.5707963267948966 rad @@ -162468,7 +162489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20958 + - uid: 20881 components: - type: Transform rot: -1.5707963267948966 rad @@ -162476,7 +162497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20959 + - uid: 20882 components: - type: Transform rot: -1.5707963267948966 rad @@ -162484,7 +162505,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20960 + - uid: 20883 components: - type: Transform rot: -1.5707963267948966 rad @@ -162492,7 +162513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20961 + - uid: 20884 components: - type: Transform rot: -1.5707963267948966 rad @@ -162500,7 +162521,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20962 + - uid: 20885 components: - type: Transform rot: -1.5707963267948966 rad @@ -162508,7 +162529,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20963 + - uid: 20886 components: - type: Transform rot: -1.5707963267948966 rad @@ -162516,7 +162537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20964 + - uid: 20887 components: - type: Transform rot: -1.5707963267948966 rad @@ -162524,7 +162545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20965 + - uid: 20888 components: - type: Transform rot: -1.5707963267948966 rad @@ -162532,7 +162553,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20966 + - uid: 20889 components: - type: Transform rot: -1.5707963267948966 rad @@ -162540,7 +162561,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20967 + - uid: 20890 components: - type: Transform rot: -1.5707963267948966 rad @@ -162548,7 +162569,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20968 + - uid: 20891 components: - type: Transform rot: -1.5707963267948966 rad @@ -162556,7 +162577,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20969 + - uid: 20892 components: - type: Transform rot: -1.5707963267948966 rad @@ -162564,7 +162585,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20970 + - uid: 20893 components: - type: Transform rot: -1.5707963267948966 rad @@ -162572,7 +162593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20971 + - uid: 20894 components: - type: Transform rot: -1.5707963267948966 rad @@ -162580,7 +162601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20972 + - uid: 20895 components: - type: Transform rot: -1.5707963267948966 rad @@ -162588,7 +162609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20973 + - uid: 20896 components: - type: Transform rot: -1.5707963267948966 rad @@ -162596,7 +162617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20974 + - uid: 20897 components: - type: Transform rot: -1.5707963267948966 rad @@ -162604,7 +162625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20975 + - uid: 20898 components: - type: Transform rot: -1.5707963267948966 rad @@ -162612,7 +162633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20976 + - uid: 20899 components: - type: Transform rot: -1.5707963267948966 rad @@ -162620,7 +162641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20977 + - uid: 20900 components: - type: Transform rot: -1.5707963267948966 rad @@ -162628,7 +162649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20978 + - uid: 20901 components: - type: Transform rot: -1.5707963267948966 rad @@ -162636,7 +162657,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20979 + - uid: 20902 components: - type: Transform rot: -1.5707963267948966 rad @@ -162644,112 +162665,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20980 + - uid: 20903 components: - type: Transform pos: 34.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20981 + - uid: 20904 components: - type: Transform pos: 41.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20982 + - uid: 20905 components: - type: Transform pos: 41.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20983 + - uid: 20906 components: - type: Transform pos: 39.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20984 + - uid: 20907 components: - type: Transform pos: 41.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20985 + - uid: 20908 components: - type: Transform pos: 41.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20986 + - uid: 20909 components: - type: Transform pos: 39.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20987 + - uid: 20910 components: - type: Transform pos: 39.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20988 + - uid: 20911 components: - type: Transform pos: 41.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20989 + - uid: 20912 components: - type: Transform pos: 41.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20990 + - uid: 20913 components: - type: Transform pos: 39.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20991 + - uid: 20914 components: - type: Transform pos: 41.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20992 + - uid: 20915 components: - type: Transform pos: 39.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20993 + - uid: 20916 components: - type: Transform pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20994 + - uid: 20917 components: - type: Transform pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20995 + - uid: 20918 components: - type: Transform rot: 3.141592653589793 rad @@ -162757,7 +162778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20996 + - uid: 20919 components: - type: Transform rot: 3.141592653589793 rad @@ -162765,7 +162786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20997 + - uid: 20920 components: - type: Transform rot: 1.5707963267948966 rad @@ -162773,7 +162794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20998 + - uid: 20921 components: - type: Transform rot: 1.5707963267948966 rad @@ -162781,7 +162802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20999 + - uid: 20922 components: - type: Transform rot: 1.5707963267948966 rad @@ -162789,7 +162810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21000 + - uid: 20923 components: - type: Transform rot: 1.5707963267948966 rad @@ -162797,7 +162818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21001 + - uid: 20924 components: - type: Transform rot: 1.5707963267948966 rad @@ -162805,7 +162826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21002 + - uid: 20925 components: - type: Transform rot: 1.5707963267948966 rad @@ -162813,7 +162834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21003 + - uid: 20926 components: - type: Transform rot: -1.5707963267948966 rad @@ -162821,7 +162842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21004 + - uid: 20927 components: - type: Transform rot: -1.5707963267948966 rad @@ -162829,7 +162850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21005 + - uid: 20928 components: - type: Transform rot: -1.5707963267948966 rad @@ -162837,7 +162858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21006 + - uid: 20929 components: - type: Transform rot: -1.5707963267948966 rad @@ -162845,7 +162866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21007 + - uid: 20930 components: - type: Transform rot: -1.5707963267948966 rad @@ -162853,7 +162874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21008 + - uid: 20931 components: - type: Transform rot: 3.141592653589793 rad @@ -162861,7 +162882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21009 + - uid: 20932 components: - type: Transform rot: 3.141592653589793 rad @@ -162869,7 +162890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21010 + - uid: 20933 components: - type: Transform rot: 3.141592653589793 rad @@ -162877,7 +162898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21011 + - uid: 20934 components: - type: Transform rot: 3.141592653589793 rad @@ -162885,7 +162906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21012 + - uid: 20935 components: - type: Transform rot: 3.141592653589793 rad @@ -162893,7 +162914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21013 + - uid: 20936 components: - type: Transform rot: 3.141592653589793 rad @@ -162901,7 +162922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21014 + - uid: 20937 components: - type: Transform rot: 3.141592653589793 rad @@ -162909,7 +162930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21015 + - uid: 20938 components: - type: Transform rot: 3.141592653589793 rad @@ -162917,7 +162938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21016 + - uid: 20939 components: - type: Transform rot: 3.141592653589793 rad @@ -162925,7 +162946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21017 + - uid: 20940 components: - type: Transform rot: 3.141592653589793 rad @@ -162933,7 +162954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21018 + - uid: 20941 components: - type: Transform rot: 1.5707963267948966 rad @@ -162941,7 +162962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21019 + - uid: 20942 components: - type: Transform rot: 1.5707963267948966 rad @@ -162949,7 +162970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21020 + - uid: 20943 components: - type: Transform rot: 3.141592653589793 rad @@ -162957,7 +162978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21021 + - uid: 20944 components: - type: Transform rot: 3.141592653589793 rad @@ -162965,7 +162986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21022 + - uid: 20945 components: - type: Transform rot: 3.141592653589793 rad @@ -162973,7 +162994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21023 + - uid: 20946 components: - type: Transform rot: 3.141592653589793 rad @@ -162981,7 +163002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21024 + - uid: 20947 components: - type: Transform rot: 3.141592653589793 rad @@ -162989,7 +163010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21025 + - uid: 20948 components: - type: Transform rot: 3.141592653589793 rad @@ -162997,7 +163018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21026 + - uid: 20949 components: - type: Transform rot: 1.5707963267948966 rad @@ -163005,7 +163026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21027 + - uid: 20950 components: - type: Transform rot: 1.5707963267948966 rad @@ -163013,7 +163034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21028 + - uid: 20951 components: - type: Transform rot: 1.5707963267948966 rad @@ -163021,7 +163042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21029 + - uid: 20952 components: - type: Transform rot: 1.5707963267948966 rad @@ -163029,7 +163050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21030 + - uid: 20953 components: - type: Transform rot: 1.5707963267948966 rad @@ -163037,7 +163058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21031 + - uid: 20954 components: - type: Transform rot: 1.5707963267948966 rad @@ -163045,7 +163066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21032 + - uid: 20955 components: - type: Transform rot: 1.5707963267948966 rad @@ -163053,7 +163074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21033 + - uid: 20956 components: - type: Transform rot: 1.5707963267948966 rad @@ -163061,7 +163082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21034 + - uid: 20957 components: - type: Transform rot: 1.5707963267948966 rad @@ -163069,7 +163090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21035 + - uid: 20958 components: - type: Transform rot: 1.5707963267948966 rad @@ -163077,7 +163098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21036 + - uid: 20959 components: - type: Transform rot: 1.5707963267948966 rad @@ -163085,7 +163106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21037 + - uid: 20960 components: - type: Transform rot: 1.5707963267948966 rad @@ -163093,7 +163114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21038 + - uid: 20961 components: - type: Transform rot: 3.141592653589793 rad @@ -163101,7 +163122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21039 + - uid: 20962 components: - type: Transform rot: 3.141592653589793 rad @@ -163109,7 +163130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21040 + - uid: 20963 components: - type: Transform rot: 3.141592653589793 rad @@ -163117,7 +163138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21041 + - uid: 20964 components: - type: Transform rot: 1.5707963267948966 rad @@ -163125,7 +163146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21042 + - uid: 20965 components: - type: Transform rot: -1.5707963267948966 rad @@ -163133,7 +163154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21043 + - uid: 20966 components: - type: Transform rot: -1.5707963267948966 rad @@ -163141,7 +163162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21044 + - uid: 20967 components: - type: Transform rot: -1.5707963267948966 rad @@ -163149,7 +163170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21045 + - uid: 20968 components: - type: Transform rot: -1.5707963267948966 rad @@ -163157,7 +163178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21046 + - uid: 20969 components: - type: Transform rot: -1.5707963267948966 rad @@ -163165,364 +163186,364 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21047 + - uid: 20970 components: - type: Transform pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21048 + - uid: 20971 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21049 + - uid: 20972 components: - type: Transform pos: -1.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21050 + - uid: 20973 components: - type: Transform pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21051 + - uid: 20974 components: - type: Transform pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21052 + - uid: 20975 components: - type: Transform pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21053 + - uid: 20976 components: - type: Transform pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21054 + - uid: 20977 components: - type: Transform pos: -1.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21055 + - uid: 20978 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21056 + - uid: 20979 components: - type: Transform pos: -1.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21057 + - uid: 20980 components: - type: Transform pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21058 + - uid: 20981 components: - type: Transform pos: -1.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21059 + - uid: 20982 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21060 + - uid: 20983 components: - type: Transform pos: -1.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21061 + - uid: 20984 components: - type: Transform pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21062 + - uid: 20985 components: - type: Transform pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21063 + - uid: 20986 components: - type: Transform pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21064 + - uid: 20987 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21065 + - uid: 20988 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21066 + - uid: 20989 components: - type: Transform pos: -1.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21067 + - uid: 20990 components: - type: Transform pos: -1.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21068 + - uid: 20991 components: - type: Transform pos: 0.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21069 + - uid: 20992 components: - type: Transform pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21070 + - uid: 20993 components: - type: Transform pos: -1.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21071 + - uid: 20994 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21072 + - uid: 20995 components: - type: Transform pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21073 + - uid: 20996 components: - type: Transform pos: -1.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21074 + - uid: 20997 components: - type: Transform pos: -1.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21075 + - uid: 20998 components: - type: Transform pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21076 + - uid: 20999 components: - type: Transform pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21077 + - uid: 21000 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21078 + - uid: 21001 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21079 + - uid: 21002 components: - type: Transform pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21080 + - uid: 21003 components: - type: Transform pos: -1.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21081 + - uid: 21004 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21082 + - uid: 21005 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21083 + - uid: 21006 components: - type: Transform pos: -1.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21084 + - uid: 21007 components: - type: Transform pos: -1.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21085 + - uid: 21008 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21086 + - uid: 21009 components: - type: Transform pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21087 + - uid: 21010 components: - type: Transform pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21088 + - uid: 21011 components: - type: Transform pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21089 + - uid: 21012 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21090 + - uid: 21013 components: - type: Transform pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21091 + - uid: 21014 components: - type: Transform pos: -1.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21092 + - uid: 21015 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21093 + - uid: 21016 components: - type: Transform pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21094 + - uid: 21017 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21095 + - uid: 21018 components: - type: Transform pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21096 + - uid: 21019 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21097 + - uid: 21020 components: - type: Transform pos: -1.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21098 + - uid: 21021 components: - type: Transform rot: 3.141592653589793 rad @@ -163530,7 +163551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21099 + - uid: 21022 components: - type: Transform rot: 3.141592653589793 rad @@ -163538,7 +163559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21100 + - uid: 21023 components: - type: Transform rot: 3.141592653589793 rad @@ -163546,7 +163567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21101 + - uid: 21024 components: - type: Transform rot: 3.141592653589793 rad @@ -163554,7 +163575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21102 + - uid: 21025 components: - type: Transform rot: 3.141592653589793 rad @@ -163562,7 +163583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21103 + - uid: 21026 components: - type: Transform rot: 3.141592653589793 rad @@ -163570,7 +163591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21104 + - uid: 21027 components: - type: Transform rot: 3.141592653589793 rad @@ -163578,7 +163599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21105 + - uid: 21028 components: - type: Transform rot: 3.141592653589793 rad @@ -163586,7 +163607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21106 + - uid: 21029 components: - type: Transform rot: 3.141592653589793 rad @@ -163594,7 +163615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21107 + - uid: 21030 components: - type: Transform rot: 3.141592653589793 rad @@ -163602,7 +163623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21108 + - uid: 21031 components: - type: Transform rot: 3.141592653589793 rad @@ -163610,7 +163631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21109 + - uid: 21032 components: - type: Transform rot: 3.141592653589793 rad @@ -163618,7 +163639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21110 + - uid: 21033 components: - type: Transform rot: 3.141592653589793 rad @@ -163626,7 +163647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21111 + - uid: 21034 components: - type: Transform rot: 3.141592653589793 rad @@ -163634,7 +163655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21112 + - uid: 21035 components: - type: Transform rot: 3.141592653589793 rad @@ -163642,7 +163663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21113 + - uid: 21036 components: - type: Transform rot: 3.141592653589793 rad @@ -163650,7 +163671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21114 + - uid: 21037 components: - type: Transform rot: 3.141592653589793 rad @@ -163658,7 +163679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21115 + - uid: 21038 components: - type: Transform rot: 3.141592653589793 rad @@ -163666,7 +163687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21116 + - uid: 21039 components: - type: Transform rot: 3.141592653589793 rad @@ -163674,7 +163695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21117 + - uid: 21040 components: - type: Transform rot: 3.141592653589793 rad @@ -163682,7 +163703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21118 + - uid: 21041 components: - type: Transform rot: 3.141592653589793 rad @@ -163690,7 +163711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21119 + - uid: 21042 components: - type: Transform rot: 3.141592653589793 rad @@ -163698,7 +163719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21120 + - uid: 21043 components: - type: Transform rot: 3.141592653589793 rad @@ -163706,7 +163727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21121 + - uid: 21044 components: - type: Transform rot: 3.141592653589793 rad @@ -163714,91 +163735,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21122 + - uid: 21045 components: - type: Transform pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21123 + - uid: 21046 components: - type: Transform pos: -1.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21124 + - uid: 21047 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21125 + - uid: 21048 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21126 + - uid: 21049 components: - type: Transform pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21127 + - uid: 21050 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21128 + - uid: 21051 components: - type: Transform pos: 4.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21129 + - uid: 21052 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21130 + - uid: 21053 components: - type: Transform pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21131 + - uid: 21054 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21132 + - uid: 21055 components: - type: Transform pos: 4.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21133 + - uid: 21056 components: - type: Transform pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21134 + - uid: 21057 components: - type: Transform rot: 3.141592653589793 rad @@ -163806,7 +163827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21135 + - uid: 21058 components: - type: Transform rot: 1.5707963267948966 rad @@ -163814,7 +163835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21136 + - uid: 21059 components: - type: Transform rot: 1.5707963267948966 rad @@ -163822,7 +163843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21137 + - uid: 21060 components: - type: Transform rot: 1.5707963267948966 rad @@ -163830,7 +163851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21138 + - uid: 21061 components: - type: Transform rot: 1.5707963267948966 rad @@ -163838,7 +163859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21139 + - uid: 21062 components: - type: Transform rot: 1.5707963267948966 rad @@ -163846,7 +163867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21140 + - uid: 21063 components: - type: Transform rot: 1.5707963267948966 rad @@ -163854,7 +163875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21141 + - uid: 21064 components: - type: Transform rot: 3.141592653589793 rad @@ -163862,7 +163883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21142 + - uid: 21065 components: - type: Transform rot: 3.141592653589793 rad @@ -163870,7 +163891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21143 + - uid: 21066 components: - type: Transform rot: 3.141592653589793 rad @@ -163878,7 +163899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21144 + - uid: 21067 components: - type: Transform rot: 3.141592653589793 rad @@ -163886,7 +163907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21145 + - uid: 21068 components: - type: Transform rot: 3.141592653589793 rad @@ -163894,7 +163915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21146 + - uid: 21069 components: - type: Transform rot: 3.141592653589793 rad @@ -163902,7 +163923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21147 + - uid: 21070 components: - type: Transform rot: 3.141592653589793 rad @@ -163910,7 +163931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21148 + - uid: 21071 components: - type: Transform rot: 3.141592653589793 rad @@ -163918,7 +163939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21149 + - uid: 21072 components: - type: Transform rot: 3.141592653589793 rad @@ -163926,7 +163947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21150 + - uid: 21073 components: - type: Transform rot: 1.5707963267948966 rad @@ -163934,7 +163955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21151 + - uid: 21074 components: - type: Transform rot: 1.5707963267948966 rad @@ -163942,7 +163963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21152 + - uid: 21075 components: - type: Transform rot: 1.5707963267948966 rad @@ -163950,7 +163971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21153 + - uid: 21076 components: - type: Transform rot: 1.5707963267948966 rad @@ -163958,7 +163979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21154 + - uid: 21077 components: - type: Transform rot: 1.5707963267948966 rad @@ -163966,7 +163987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21155 + - uid: 21078 components: - type: Transform rot: 1.5707963267948966 rad @@ -163974,7 +163995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21156 + - uid: 21079 components: - type: Transform rot: 1.5707963267948966 rad @@ -163982,7 +164003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21157 + - uid: 21080 components: - type: Transform rot: -1.5707963267948966 rad @@ -163990,7 +164011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21158 + - uid: 21081 components: - type: Transform rot: -1.5707963267948966 rad @@ -163998,7 +164019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21159 + - uid: 21082 components: - type: Transform rot: 3.141592653589793 rad @@ -164006,7 +164027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21160 + - uid: 21083 components: - type: Transform rot: 3.141592653589793 rad @@ -164014,7 +164035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21161 + - uid: 21084 components: - type: Transform rot: 3.141592653589793 rad @@ -164022,7 +164043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21162 + - uid: 21085 components: - type: Transform rot: 3.141592653589793 rad @@ -164030,7 +164051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21163 + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad @@ -164038,7 +164059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21164 + - uid: 21087 components: - type: Transform rot: 3.141592653589793 rad @@ -164046,7 +164067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21165 + - uid: 21088 components: - type: Transform rot: -1.5707963267948966 rad @@ -164054,7 +164075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21166 + - uid: 21089 components: - type: Transform rot: -1.5707963267948966 rad @@ -164062,7 +164083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21167 + - uid: 21090 components: - type: Transform rot: -1.5707963267948966 rad @@ -164070,7 +164091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21168 + - uid: 21091 components: - type: Transform rot: 3.141592653589793 rad @@ -164078,7 +164099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21169 + - uid: 21092 components: - type: Transform rot: 3.141592653589793 rad @@ -164086,7 +164107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21170 + - uid: 21093 components: - type: Transform rot: 3.141592653589793 rad @@ -164094,7 +164115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21171 + - uid: 21094 components: - type: Transform rot: 1.5707963267948966 rad @@ -164102,7 +164123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21172 + - uid: 21095 components: - type: Transform rot: 3.141592653589793 rad @@ -164110,7 +164131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21173 + - uid: 21096 components: - type: Transform rot: 3.141592653589793 rad @@ -164118,7 +164139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21174 + - uid: 21097 components: - type: Transform rot: 3.141592653589793 rad @@ -164126,7 +164147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21175 + - uid: 21098 components: - type: Transform rot: 3.141592653589793 rad @@ -164134,7 +164155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21176 + - uid: 21099 components: - type: Transform rot: 3.141592653589793 rad @@ -164142,7 +164163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21177 + - uid: 21100 components: - type: Transform rot: 1.5707963267948966 rad @@ -164150,7 +164171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21178 + - uid: 21101 components: - type: Transform rot: 1.5707963267948966 rad @@ -164158,7 +164179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21179 + - uid: 21102 components: - type: Transform rot: 1.5707963267948966 rad @@ -164166,7 +164187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21180 + - uid: 21103 components: - type: Transform rot: 1.5707963267948966 rad @@ -164174,7 +164195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21181 + - uid: 21104 components: - type: Transform rot: 1.5707963267948966 rad @@ -164182,7 +164203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21182 + - uid: 21105 components: - type: Transform rot: 1.5707963267948966 rad @@ -164190,7 +164211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21183 + - uid: 21106 components: - type: Transform rot: 1.5707963267948966 rad @@ -164198,7 +164219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21184 + - uid: 21107 components: - type: Transform rot: 1.5707963267948966 rad @@ -164206,7 +164227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21185 + - uid: 21108 components: - type: Transform rot: 1.5707963267948966 rad @@ -164214,7 +164235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21186 + - uid: 21109 components: - type: Transform rot: -1.5707963267948966 rad @@ -164222,7 +164243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21187 + - uid: 21110 components: - type: Transform rot: 3.141592653589793 rad @@ -164230,7 +164251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21188 + - uid: 21111 components: - type: Transform rot: 3.141592653589793 rad @@ -164238,7 +164259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21189 + - uid: 21112 components: - type: Transform rot: 3.141592653589793 rad @@ -164246,7 +164267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21190 + - uid: 21113 components: - type: Transform rot: 3.141592653589793 rad @@ -164254,7 +164275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21191 + - uid: 21114 components: - type: Transform rot: -1.5707963267948966 rad @@ -164262,7 +164283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21192 + - uid: 21115 components: - type: Transform rot: -1.5707963267948966 rad @@ -164270,7 +164291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21193 + - uid: 21116 components: - type: Transform rot: -1.5707963267948966 rad @@ -164278,7 +164299,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21194 + - uid: 21117 components: - type: Transform rot: -1.5707963267948966 rad @@ -164286,7 +164307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21195 + - uid: 21118 components: - type: Transform rot: -1.5707963267948966 rad @@ -164294,7 +164315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21196 + - uid: 21119 components: - type: Transform rot: -1.5707963267948966 rad @@ -164302,7 +164323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21197 + - uid: 21120 components: - type: Transform rot: -1.5707963267948966 rad @@ -164310,7 +164331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21198 + - uid: 21121 components: - type: Transform rot: -1.5707963267948966 rad @@ -164318,7 +164339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21199 + - uid: 21122 components: - type: Transform rot: -1.5707963267948966 rad @@ -164326,7 +164347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21200 + - uid: 21123 components: - type: Transform rot: -1.5707963267948966 rad @@ -164334,7 +164355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21201 + - uid: 21124 components: - type: Transform rot: -1.5707963267948966 rad @@ -164342,7 +164363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21202 + - uid: 21125 components: - type: Transform rot: -1.5707963267948966 rad @@ -164350,7 +164371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21203 + - uid: 21126 components: - type: Transform rot: -1.5707963267948966 rad @@ -164358,7 +164379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21204 + - uid: 21127 components: - type: Transform rot: -1.5707963267948966 rad @@ -164366,7 +164387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21205 + - uid: 21128 components: - type: Transform rot: 3.141592653589793 rad @@ -164374,7 +164395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21206 + - uid: 21129 components: - type: Transform rot: 1.5707963267948966 rad @@ -164382,7 +164403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21207 + - uid: 21130 components: - type: Transform rot: 1.5707963267948966 rad @@ -164390,49 +164411,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21208 + - uid: 21131 components: - type: Transform pos: 16.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21209 + - uid: 21132 components: - type: Transform pos: 16.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21210 + - uid: 21133 components: - type: Transform pos: 18.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21211 + - uid: 21134 components: - type: Transform pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21212 + - uid: 21135 components: - type: Transform pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21213 + - uid: 21136 components: - type: Transform pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21214 + - uid: 21137 components: - type: Transform rot: 1.5707963267948966 rad @@ -164440,21 +164461,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21215 + - uid: 21138 components: - type: Transform pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21216 + - uid: 21139 components: - type: Transform pos: 16.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21217 + - uid: 21140 components: - type: Transform rot: -1.5707963267948966 rad @@ -164462,7 +164483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21218 + - uid: 21141 components: - type: Transform rot: -1.5707963267948966 rad @@ -164470,21 +164491,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21219 + - uid: 21142 components: - type: Transform pos: 17.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21220 + - uid: 21143 components: - type: Transform pos: 17.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21221 + - uid: 21144 components: - type: Transform rot: -1.5707963267948966 rad @@ -164492,7 +164513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21222 + - uid: 21145 components: - type: Transform rot: -1.5707963267948966 rad @@ -164500,49 +164521,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21223 + - uid: 21146 components: - type: Transform pos: 21.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21224 + - uid: 21147 components: - type: Transform pos: 21.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21225 + - uid: 21148 components: - type: Transform pos: 21.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21226 + - uid: 21149 components: - type: Transform pos: 22.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21227 + - uid: 21150 components: - type: Transform pos: 22.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21228 + - uid: 21151 components: - type: Transform pos: 22.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21229 + - uid: 21152 components: - type: Transform rot: -1.5707963267948966 rad @@ -164550,7 +164571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21230 + - uid: 21153 components: - type: Transform rot: -1.5707963267948966 rad @@ -164558,7 +164579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21231 + - uid: 21154 components: - type: Transform rot: -1.5707963267948966 rad @@ -164566,7 +164587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21232 + - uid: 21155 components: - type: Transform rot: -1.5707963267948966 rad @@ -164574,7 +164595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21233 + - uid: 21156 components: - type: Transform rot: -1.5707963267948966 rad @@ -164582,7 +164603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21234 + - uid: 21157 components: - type: Transform rot: -1.5707963267948966 rad @@ -164590,7 +164611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21235 + - uid: 21158 components: - type: Transform rot: -1.5707963267948966 rad @@ -164598,7 +164619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21236 + - uid: 21159 components: - type: Transform rot: 1.5707963267948966 rad @@ -164606,14 +164627,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21237 + - uid: 21160 components: - type: Transform pos: 11.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21238 + - uid: 21161 components: - type: Transform rot: 1.5707963267948966 rad @@ -164621,77 +164642,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21239 + - uid: 21162 components: - type: Transform pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21240 + - uid: 21163 components: - type: Transform pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21241 + - uid: 21164 components: - type: Transform pos: 9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21242 + - uid: 21165 components: - type: Transform pos: 9.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21243 + - uid: 21166 components: - type: Transform pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21244 + - uid: 21167 components: - type: Transform pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21245 + - uid: 21168 components: - type: Transform pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21246 + - uid: 21169 components: - type: Transform pos: 9.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21247 + - uid: 21170 components: - type: Transform pos: 9.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21248 + - uid: 21171 components: - type: Transform pos: 10.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21249 + - uid: 21172 components: - type: Transform rot: 3.141592653589793 rad @@ -164699,7 +164720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21250 + - uid: 21173 components: - type: Transform rot: 1.5707963267948966 rad @@ -164707,7 +164728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21251 + - uid: 21174 components: - type: Transform rot: 1.5707963267948966 rad @@ -164715,7 +164736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21252 + - uid: 21175 components: - type: Transform rot: 1.5707963267948966 rad @@ -164723,7 +164744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21253 + - uid: 21176 components: - type: Transform rot: 1.5707963267948966 rad @@ -164731,7 +164752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21254 + - uid: 21177 components: - type: Transform rot: 1.5707963267948966 rad @@ -164739,7 +164760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21255 + - uid: 21178 components: - type: Transform rot: 1.5707963267948966 rad @@ -164747,7 +164768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21256 + - uid: 21179 components: - type: Transform rot: 1.5707963267948966 rad @@ -164755,56 +164776,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21257 + - uid: 21180 components: - type: Transform pos: 4.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21258 + - uid: 21181 components: - type: Transform pos: 5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21259 + - uid: 21182 components: - type: Transform pos: 4.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21260 + - uid: 21183 components: - type: Transform pos: 5.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21261 + - uid: 21184 components: - type: Transform pos: 4.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21262 + - uid: 21185 components: - type: Transform pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21263 + - uid: 21186 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21264 + - uid: 21187 components: - type: Transform rot: 1.5707963267948966 rad @@ -164812,7 +164833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21265 + - uid: 21188 components: - type: Transform rot: 1.5707963267948966 rad @@ -164820,7 +164841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21266 + - uid: 21189 components: - type: Transform rot: 1.5707963267948966 rad @@ -164828,7 +164849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21267 + - uid: 21190 components: - type: Transform rot: 1.5707963267948966 rad @@ -164836,7 +164857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21268 + - uid: 21191 components: - type: Transform rot: 1.5707963267948966 rad @@ -164844,7 +164865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21269 + - uid: 21192 components: - type: Transform rot: 1.5707963267948966 rad @@ -164852,7 +164873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21270 + - uid: 21193 components: - type: Transform rot: 1.5707963267948966 rad @@ -164860,7 +164881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21271 + - uid: 21194 components: - type: Transform rot: 1.5707963267948966 rad @@ -164868,7 +164889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21272 + - uid: 21195 components: - type: Transform rot: 1.5707963267948966 rad @@ -164876,21 +164897,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21273 + - uid: 21196 components: - type: Transform pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21274 + - uid: 21197 components: - type: Transform pos: 36.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21275 + - uid: 21198 components: - type: Transform rot: 1.5707963267948966 rad @@ -164898,14 +164919,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21276 + - uid: 21199 components: - type: Transform pos: 36.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21277 + - uid: 21200 components: - type: Transform rot: 1.5707963267948966 rad @@ -164913,14 +164934,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21278 + - uid: 21201 components: - type: Transform pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21279 + - uid: 21202 components: - type: Transform rot: 1.5707963267948966 rad @@ -164928,14 +164949,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21280 + - uid: 21203 components: - type: Transform pos: 28.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21281 + - uid: 21204 components: - type: Transform rot: 1.5707963267948966 rad @@ -164943,7 +164964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21282 + - uid: 21205 components: - type: Transform rot: 1.5707963267948966 rad @@ -164951,7 +164972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21283 + - uid: 21206 components: - type: Transform rot: 1.5707963267948966 rad @@ -164959,14 +164980,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21284 + - uid: 21207 components: - type: Transform pos: 26.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21285 + - uid: 21208 components: - type: Transform rot: 3.141592653589793 rad @@ -164974,7 +164995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21286 + - uid: 21209 components: - type: Transform rot: 3.141592653589793 rad @@ -164982,7 +165003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21287 + - uid: 21210 components: - type: Transform rot: 3.141592653589793 rad @@ -164990,7 +165011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21288 + - uid: 21211 components: - type: Transform rot: 3.141592653589793 rad @@ -164998,14 +165019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21289 + - uid: 21212 components: - type: Transform pos: 36.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21290 + - uid: 21213 components: - type: Transform rot: 1.5707963267948966 rad @@ -165013,7 +165034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21291 + - uid: 21214 components: - type: Transform rot: 1.5707963267948966 rad @@ -165021,7 +165042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21292 + - uid: 21215 components: - type: Transform rot: 1.5707963267948966 rad @@ -165029,7 +165050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21293 + - uid: 21216 components: - type: Transform rot: 1.5707963267948966 rad @@ -165037,7 +165058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21294 + - uid: 21217 components: - type: Transform rot: 1.5707963267948966 rad @@ -165045,7 +165066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21295 + - uid: 21218 components: - type: Transform rot: -1.5707963267948966 rad @@ -165053,7 +165074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21296 + - uid: 21219 components: - type: Transform rot: -1.5707963267948966 rad @@ -165061,7 +165082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21297 + - uid: 21220 components: - type: Transform rot: -1.5707963267948966 rad @@ -165069,7 +165090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21298 + - uid: 21221 components: - type: Transform rot: -1.5707963267948966 rad @@ -165077,7 +165098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21299 + - uid: 21222 components: - type: Transform rot: 3.141592653589793 rad @@ -165085,7 +165106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21300 + - uid: 21223 components: - type: Transform rot: 3.141592653589793 rad @@ -165093,7 +165114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21301 + - uid: 21224 components: - type: Transform rot: 3.141592653589793 rad @@ -165101,21 +165122,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21302 + - uid: 21225 components: - type: Transform pos: 28.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21303 + - uid: 21226 components: - type: Transform pos: 28.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21304 + - uid: 21227 components: - type: Transform rot: -1.5707963267948966 rad @@ -165123,7 +165144,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21305 + - uid: 21228 components: - type: Transform rot: -1.5707963267948966 rad @@ -165131,7 +165152,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21306 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad @@ -165139,7 +165160,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21307 + - uid: 21230 components: - type: Transform rot: -1.5707963267948966 rad @@ -165147,7 +165168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21308 + - uid: 21231 components: - type: Transform rot: 3.141592653589793 rad @@ -165155,7 +165176,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21309 + - uid: 21232 components: - type: Transform rot: 3.141592653589793 rad @@ -165163,7 +165184,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21310 + - uid: 21233 components: - type: Transform rot: 1.5707963267948966 rad @@ -165171,7 +165192,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21311 + - uid: 21234 components: - type: Transform rot: 1.5707963267948966 rad @@ -165179,7 +165200,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21312 + - uid: 21235 components: - type: Transform rot: 1.5707963267948966 rad @@ -165187,7 +165208,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21313 + - uid: 21236 components: - type: Transform rot: 3.141592653589793 rad @@ -165195,7 +165216,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21314 + - uid: 21237 components: - type: Transform rot: 3.141592653589793 rad @@ -165203,7 +165224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21315 + - uid: 21238 components: - type: Transform rot: 1.5707963267948966 rad @@ -165211,7 +165232,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21316 + - uid: 21239 components: - type: Transform rot: 1.5707963267948966 rad @@ -165219,77 +165240,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21317 + - uid: 21240 components: - type: Transform pos: 28.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21318 + - uid: 21241 components: - type: Transform pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21319 + - uid: 21242 components: - type: Transform pos: 26.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21320 + - uid: 21243 components: - type: Transform pos: 28.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21321 + - uid: 21244 components: - type: Transform pos: 28.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21322 + - uid: 21245 components: - type: Transform pos: 26.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21323 + - uid: 21246 components: - type: Transform pos: 26.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21324 + - uid: 21247 components: - type: Transform pos: 26.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21325 + - uid: 21248 components: - type: Transform pos: 26.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21326 + - uid: 21249 components: - type: Transform pos: 26.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21327 + - uid: 21250 components: - type: Transform rot: 3.141592653589793 rad @@ -165297,7 +165318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21328 + - uid: 21251 components: - type: Transform rot: 3.141592653589793 rad @@ -165305,7 +165326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21329 + - uid: 21252 components: - type: Transform rot: 1.5707963267948966 rad @@ -165313,7 +165334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21330 + - uid: 21253 components: - type: Transform rot: 1.5707963267948966 rad @@ -165321,70 +165342,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21331 + - uid: 21254 components: - type: Transform pos: -5.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21332 + - uid: 21255 components: - type: Transform pos: -5.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21333 + - uid: 21256 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21334 + - uid: 21257 components: - type: Transform pos: -5.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21335 + - uid: 21258 components: - type: Transform pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21336 + - uid: 21259 components: - type: Transform pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21337 + - uid: 21260 components: - type: Transform pos: -6.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21338 + - uid: 21261 components: - type: Transform pos: -5.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21339 + - uid: 21262 components: - type: Transform pos: -5.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21340 + - uid: 21263 components: - type: Transform rot: -1.5707963267948966 rad @@ -165392,7 +165413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21341 + - uid: 21264 components: - type: Transform rot: -1.5707963267948966 rad @@ -165400,7 +165421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21342 + - uid: 21265 components: - type: Transform rot: -1.5707963267948966 rad @@ -165408,7 +165429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21343 + - uid: 21266 components: - type: Transform rot: -1.5707963267948966 rad @@ -165416,7 +165437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21344 + - uid: 21267 components: - type: Transform rot: -1.5707963267948966 rad @@ -165424,182 +165445,182 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21345 + - uid: 21268 components: - type: Transform pos: -12.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21346 + - uid: 21269 components: - type: Transform pos: -12.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21347 + - uid: 21270 components: - type: Transform pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21348 + - uid: 21271 components: - type: Transform pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21349 + - uid: 21272 components: - type: Transform pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21350 + - uid: 21273 components: - type: Transform pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21351 + - uid: 21274 components: - type: Transform pos: -12.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21352 + - uid: 21275 components: - type: Transform pos: -12.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21353 + - uid: 21276 components: - type: Transform pos: -14.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21354 + - uid: 21277 components: - type: Transform pos: -12.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21355 + - uid: 21278 components: - type: Transform pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21356 + - uid: 21279 components: - type: Transform pos: -12.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21357 + - uid: 21280 components: - type: Transform pos: -14.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21358 + - uid: 21281 components: - type: Transform pos: -12.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21359 + - uid: 21282 components: - type: Transform pos: -14.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21360 + - uid: 21283 components: - type: Transform pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21361 + - uid: 21284 components: - type: Transform pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21362 + - uid: 21285 components: - type: Transform pos: -12.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21363 + - uid: 21286 components: - type: Transform pos: -14.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21364 + - uid: 21287 components: - type: Transform pos: -14.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21365 + - uid: 21288 components: - type: Transform pos: -12.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21366 + - uid: 21289 components: - type: Transform pos: -12.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21367 + - uid: 21290 components: - type: Transform pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21368 + - uid: 21291 components: - type: Transform pos: -14.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21369 + - uid: 21292 components: - type: Transform pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21370 + - uid: 21293 components: - type: Transform rot: 3.141592653589793 rad @@ -165607,7 +165628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21371 + - uid: 21294 components: - type: Transform rot: 3.141592653589793 rad @@ -165615,7 +165636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21372 + - uid: 21295 components: - type: Transform rot: 3.141592653589793 rad @@ -165623,7 +165644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21373 + - uid: 21296 components: - type: Transform rot: 1.5707963267948966 rad @@ -165631,7 +165652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21374 + - uid: 21297 components: - type: Transform rot: 1.5707963267948966 rad @@ -165639,7 +165660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21375 + - uid: 21298 components: - type: Transform rot: 1.5707963267948966 rad @@ -165647,7 +165668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21376 + - uid: 21299 components: - type: Transform rot: 1.5707963267948966 rad @@ -165655,21 +165676,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21377 + - uid: 21300 components: - type: Transform pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21378 + - uid: 21301 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21379 + - uid: 21302 components: - type: Transform rot: 1.5707963267948966 rad @@ -165677,7 +165698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21380 + - uid: 21303 components: - type: Transform rot: 1.5707963267948966 rad @@ -165685,7 +165706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21381 + - uid: 21304 components: - type: Transform rot: 1.5707963267948966 rad @@ -165693,7 +165714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21382 + - uid: 21305 components: - type: Transform rot: 1.5707963267948966 rad @@ -165701,7 +165722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21383 + - uid: 21306 components: - type: Transform rot: 1.5707963267948966 rad @@ -165709,7 +165730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21384 + - uid: 21307 components: - type: Transform rot: 1.5707963267948966 rad @@ -165717,7 +165738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21385 + - uid: 21308 components: - type: Transform rot: 1.5707963267948966 rad @@ -165725,7 +165746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21386 + - uid: 21309 components: - type: Transform rot: 1.5707963267948966 rad @@ -165733,7 +165754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21387 + - uid: 21310 components: - type: Transform rot: 1.5707963267948966 rad @@ -165741,7 +165762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21388 + - uid: 21311 components: - type: Transform rot: 1.5707963267948966 rad @@ -165749,7 +165770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21389 + - uid: 21312 components: - type: Transform rot: -1.5707963267948966 rad @@ -165757,7 +165778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21390 + - uid: 21313 components: - type: Transform rot: 3.141592653589793 rad @@ -165765,7 +165786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21391 + - uid: 21314 components: - type: Transform rot: 3.141592653589793 rad @@ -165773,7 +165794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21392 + - uid: 21315 components: - type: Transform rot: 3.141592653589793 rad @@ -165781,7 +165802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21393 + - uid: 21316 components: - type: Transform rot: 3.141592653589793 rad @@ -165789,7 +165810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21394 + - uid: 21317 components: - type: Transform rot: 3.141592653589793 rad @@ -165797,7 +165818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21395 + - uid: 21318 components: - type: Transform rot: 3.141592653589793 rad @@ -165805,7 +165826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21396 + - uid: 21319 components: - type: Transform rot: 3.141592653589793 rad @@ -165813,7 +165834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21397 + - uid: 21320 components: - type: Transform rot: -1.5707963267948966 rad @@ -165821,7 +165842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21398 + - uid: 21321 components: - type: Transform rot: -1.5707963267948966 rad @@ -165829,7 +165850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21399 + - uid: 21322 components: - type: Transform rot: 3.141592653589793 rad @@ -165837,7 +165858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21400 + - uid: 21323 components: - type: Transform rot: 3.141592653589793 rad @@ -165845,7 +165866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21401 + - uid: 21324 components: - type: Transform rot: 3.141592653589793 rad @@ -165853,7 +165874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21402 + - uid: 21325 components: - type: Transform rot: 3.141592653589793 rad @@ -165861,7 +165882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21403 + - uid: 21326 components: - type: Transform rot: 3.141592653589793 rad @@ -165869,7 +165890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21404 + - uid: 21327 components: - type: Transform rot: -1.5707963267948966 rad @@ -165877,7 +165898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21405 + - uid: 21328 components: - type: Transform rot: -1.5707963267948966 rad @@ -165885,28 +165906,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21406 + - uid: 21329 components: - type: Transform pos: -7.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21407 + - uid: 21330 components: - type: Transform pos: -6.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21408 + - uid: 21331 components: - type: Transform pos: -6.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21409 + - uid: 21332 components: - type: Transform rot: -1.5707963267948966 rad @@ -165914,7 +165935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21410 + - uid: 21333 components: - type: Transform rot: -1.5707963267948966 rad @@ -165922,7 +165943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21411 + - uid: 21334 components: - type: Transform rot: 3.141592653589793 rad @@ -165930,7 +165951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21412 + - uid: 21335 components: - type: Transform rot: 3.141592653589793 rad @@ -165938,7 +165959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21413 + - uid: 21336 components: - type: Transform rot: 3.141592653589793 rad @@ -165946,7 +165967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21414 + - uid: 21337 components: - type: Transform rot: 3.141592653589793 rad @@ -165954,7 +165975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21415 + - uid: 21338 components: - type: Transform rot: 3.141592653589793 rad @@ -165962,7 +165983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21416 + - uid: 21339 components: - type: Transform rot: 3.141592653589793 rad @@ -165970,7 +165991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21417 + - uid: 21340 components: - type: Transform rot: 3.141592653589793 rad @@ -165978,7 +165999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21418 + - uid: 21341 components: - type: Transform rot: 3.141592653589793 rad @@ -165986,7 +166007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21419 + - uid: 21342 components: - type: Transform rot: 3.141592653589793 rad @@ -165994,7 +166015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21420 + - uid: 21343 components: - type: Transform rot: 3.141592653589793 rad @@ -166002,7 +166023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21421 + - uid: 21344 components: - type: Transform rot: 3.141592653589793 rad @@ -166010,7 +166031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21422 + - uid: 21345 components: - type: Transform rot: -1.5707963267948966 rad @@ -166018,7 +166039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21423 + - uid: 21346 components: - type: Transform rot: -1.5707963267948966 rad @@ -166026,7 +166047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21424 + - uid: 21347 components: - type: Transform rot: -1.5707963267948966 rad @@ -166034,7 +166055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21425 + - uid: 21348 components: - type: Transform rot: 3.141592653589793 rad @@ -166042,7 +166063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21426 + - uid: 21349 components: - type: Transform rot: 3.141592653589793 rad @@ -166050,7 +166071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21427 + - uid: 21350 components: - type: Transform rot: 3.141592653589793 rad @@ -166058,7 +166079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21428 + - uid: 21351 components: - type: Transform rot: 1.5707963267948966 rad @@ -166066,7 +166087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21429 + - uid: 21352 components: - type: Transform rot: 1.5707963267948966 rad @@ -166074,28 +166095,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21430 + - uid: 21353 components: - type: Transform pos: -14.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21431 + - uid: 21354 components: - type: Transform pos: -12.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21432 + - uid: 21355 components: - type: Transform pos: -14.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21433 + - uid: 21356 components: - type: Transform rot: -1.5707963267948966 rad @@ -166103,7 +166124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21434 + - uid: 21357 components: - type: Transform rot: -1.5707963267948966 rad @@ -166111,7 +166132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21435 + - uid: 21358 components: - type: Transform rot: -1.5707963267948966 rad @@ -166119,7 +166140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21436 + - uid: 21359 components: - type: Transform rot: -1.5707963267948966 rad @@ -166127,7 +166148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21437 + - uid: 21360 components: - type: Transform rot: -1.5707963267948966 rad @@ -166135,154 +166156,154 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21438 + - uid: 21361 components: - type: Transform pos: -18.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21439 + - uid: 21362 components: - type: Transform pos: -18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21440 + - uid: 21363 components: - type: Transform pos: -18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21441 + - uid: 21364 components: - type: Transform pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21442 + - uid: 21365 components: - type: Transform pos: -18.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21443 + - uid: 21366 components: - type: Transform pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21444 + - uid: 21367 components: - type: Transform pos: -12.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21445 + - uid: 21368 components: - type: Transform pos: -12.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21446 + - uid: 21369 components: - type: Transform pos: -14.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21447 + - uid: 21370 components: - type: Transform pos: -14.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21448 + - uid: 21371 components: - type: Transform pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21449 + - uid: 21372 components: - type: Transform pos: -12.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21450 + - uid: 21373 components: - type: Transform pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21451 + - uid: 21374 components: - type: Transform pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21452 + - uid: 21375 components: - type: Transform pos: -14.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21453 + - uid: 21376 components: - type: Transform pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21454 + - uid: 21377 components: - type: Transform pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21455 + - uid: 21378 components: - type: Transform pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21456 + - uid: 21379 components: - type: Transform pos: -14.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21457 + - uid: 21380 components: - type: Transform pos: -12.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21458 + - uid: 21381 components: - type: Transform pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21459 + - uid: 21382 components: - type: Transform rot: -1.5707963267948966 rad @@ -166290,7 +166311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21460 + - uid: 21383 components: - type: Transform rot: -1.5707963267948966 rad @@ -166298,7 +166319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21461 + - uid: 21384 components: - type: Transform rot: -1.5707963267948966 rad @@ -166306,49 +166327,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21462 + - uid: 21385 components: - type: Transform pos: -16.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21463 + - uid: 21386 components: - type: Transform pos: -16.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21464 + - uid: 21387 components: - type: Transform pos: -16.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21465 + - uid: 21388 components: - type: Transform pos: -16.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21466 + - uid: 21389 components: - type: Transform pos: -16.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21467 + - uid: 21390 components: - type: Transform pos: -16.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21468 + - uid: 21391 components: - type: Transform rot: -1.5707963267948966 rad @@ -166356,7 +166377,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21469 + - uid: 21392 components: - type: Transform rot: 1.5707963267948966 rad @@ -166364,7 +166385,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21470 + - uid: 21393 components: - type: Transform rot: 1.5707963267948966 rad @@ -166372,7 +166393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21471 + - uid: 21394 components: - type: Transform rot: 1.5707963267948966 rad @@ -166380,35 +166401,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21472 + - uid: 21395 components: - type: Transform pos: -15.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21473 + - uid: 21396 components: - type: Transform pos: -15.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21474 + - uid: 21397 components: - type: Transform pos: -15.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21475 + - uid: 21398 components: - type: Transform pos: -15.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21476 + - uid: 21399 components: - type: Transform rot: 1.5707963267948966 rad @@ -166416,7 +166437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21477 + - uid: 21400 components: - type: Transform rot: 1.5707963267948966 rad @@ -166424,7 +166445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21478 + - uid: 21401 components: - type: Transform rot: 1.5707963267948966 rad @@ -166432,7 +166453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21479 + - uid: 21402 components: - type: Transform rot: 1.5707963267948966 rad @@ -166440,7 +166461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21480 + - uid: 21403 components: - type: Transform anchored: False @@ -166451,7 +166472,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21481 + - uid: 21404 components: - type: Transform rot: 1.5707963267948966 rad @@ -166459,7 +166480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21482 + - uid: 21405 components: - type: Transform rot: 1.5707963267948966 rad @@ -166467,7 +166488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21483 + - uid: 21406 components: - type: Transform rot: 1.5707963267948966 rad @@ -166475,7 +166496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21484 + - uid: 21407 components: - type: Transform rot: 1.5707963267948966 rad @@ -166483,7 +166504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21485 + - uid: 21408 components: - type: Transform rot: 1.5707963267948966 rad @@ -166491,91 +166512,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21486 + - uid: 21409 components: - type: Transform pos: -23.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21487 + - uid: 21410 components: - type: Transform pos: -23.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21488 + - uid: 21411 components: - type: Transform pos: -23.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21489 + - uid: 21412 components: - type: Transform pos: -21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21490 + - uid: 21413 components: - type: Transform pos: -21.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21491 + - uid: 21414 components: - type: Transform pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21492 + - uid: 21415 components: - type: Transform pos: -21.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21493 + - uid: 21416 components: - type: Transform pos: -21.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21494 + - uid: 21417 components: - type: Transform pos: -21.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21495 + - uid: 21418 components: - type: Transform pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21496 + - uid: 21419 components: - type: Transform pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21497 + - uid: 21420 components: - type: Transform pos: -21.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21498 + - uid: 21421 components: - type: Transform rot: -1.5707963267948966 rad @@ -166583,7 +166604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21499 + - uid: 21422 components: - type: Transform rot: -1.5707963267948966 rad @@ -166591,7 +166612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21500 + - uid: 21423 components: - type: Transform rot: -1.5707963267948966 rad @@ -166599,14 +166620,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21501 + - uid: 21424 components: - type: Transform pos: -18.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21502 + - uid: 21425 components: - type: Transform rot: 1.5707963267948966 rad @@ -166614,7 +166635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21503 + - uid: 21426 components: - type: Transform rot: 1.5707963267948966 rad @@ -166622,14 +166643,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21504 + - uid: 21427 components: - type: Transform pos: -28.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21505 + - uid: 21428 components: - type: Transform rot: 1.5707963267948966 rad @@ -166637,49 +166658,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21506 + - uid: 21429 components: - type: Transform pos: -28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21507 + - uid: 21430 components: - type: Transform pos: -28.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21508 + - uid: 21431 components: - type: Transform pos: -23.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21509 + - uid: 21432 components: - type: Transform pos: -23.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21510 + - uid: 21433 components: - type: Transform pos: -28.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21511 + - uid: 21434 components: - type: Transform pos: -23.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21512 + - uid: 21435 components: - type: Transform rot: 3.141592653589793 rad @@ -166687,7 +166708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21513 + - uid: 21436 components: - type: Transform rot: 3.141592653589793 rad @@ -166695,7 +166716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21514 + - uid: 21437 components: - type: Transform rot: 3.141592653589793 rad @@ -166703,7 +166724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21515 + - uid: 21438 components: - type: Transform rot: 3.141592653589793 rad @@ -166711,7 +166732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21516 + - uid: 21439 components: - type: Transform rot: -1.5707963267948966 rad @@ -166719,7 +166740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21517 + - uid: 21440 components: - type: Transform rot: -1.5707963267948966 rad @@ -166727,7 +166748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21518 + - uid: 21441 components: - type: Transform rot: -1.5707963267948966 rad @@ -166735,7 +166756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21519 + - uid: 21442 components: - type: Transform rot: 3.141592653589793 rad @@ -166743,7 +166764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21520 + - uid: 21443 components: - type: Transform rot: 3.141592653589793 rad @@ -166751,7 +166772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21521 + - uid: 21444 components: - type: Transform rot: 3.141592653589793 rad @@ -166759,7 +166780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21522 + - uid: 21445 components: - type: Transform rot: 3.141592653589793 rad @@ -166767,14 +166788,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21523 + - uid: 21446 components: - type: Transform pos: -23.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21524 + - uid: 21447 components: - type: Transform rot: -1.5707963267948966 rad @@ -166782,7 +166803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21525 + - uid: 21448 components: - type: Transform rot: -1.5707963267948966 rad @@ -166790,7 +166811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21526 + - uid: 21449 components: - type: Transform rot: -1.5707963267948966 rad @@ -166798,7 +166819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21527 + - uid: 21450 components: - type: Transform rot: -1.5707963267948966 rad @@ -166806,7 +166827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21528 + - uid: 21451 components: - type: Transform rot: -1.5707963267948966 rad @@ -166814,7 +166835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21529 + - uid: 21452 components: - type: Transform rot: -1.5707963267948966 rad @@ -166822,7 +166843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21530 + - uid: 21453 components: - type: Transform rot: 3.141592653589793 rad @@ -166830,7 +166851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21531 + - uid: 21454 components: - type: Transform rot: 3.141592653589793 rad @@ -166838,7 +166859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21532 + - uid: 21455 components: - type: Transform rot: -1.5707963267948966 rad @@ -166846,7 +166867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21533 + - uid: 21456 components: - type: Transform rot: -1.5707963267948966 rad @@ -166854,7 +166875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21534 + - uid: 21457 components: - type: Transform rot: 3.141592653589793 rad @@ -166862,7 +166883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21535 + - uid: 21458 components: - type: Transform rot: 3.141592653589793 rad @@ -166870,7 +166891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21536 + - uid: 21459 components: - type: Transform rot: 3.141592653589793 rad @@ -166878,7 +166899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21537 + - uid: 21460 components: - type: Transform rot: 3.141592653589793 rad @@ -166886,7 +166907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21538 + - uid: 21461 components: - type: Transform rot: 3.141592653589793 rad @@ -166894,7 +166915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21539 + - uid: 21462 components: - type: Transform rot: 3.141592653589793 rad @@ -166902,7 +166923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21540 + - uid: 21463 components: - type: Transform rot: 3.141592653589793 rad @@ -166910,7 +166931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21541 + - uid: 21464 components: - type: Transform rot: 3.141592653589793 rad @@ -166918,7 +166939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21542 + - uid: 21465 components: - type: Transform rot: 1.5707963267948966 rad @@ -166926,7 +166947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21543 + - uid: 21466 components: - type: Transform rot: 1.5707963267948966 rad @@ -166934,7 +166955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21544 + - uid: 21467 components: - type: Transform rot: 1.5707963267948966 rad @@ -166942,7 +166963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21545 + - uid: 21468 components: - type: Transform rot: 1.5707963267948966 rad @@ -166950,7 +166971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21546 + - uid: 21469 components: - type: Transform rot: 1.5707963267948966 rad @@ -166958,7 +166979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21547 + - uid: 21470 components: - type: Transform rot: 1.5707963267948966 rad @@ -166966,7 +166987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21548 + - uid: 21471 components: - type: Transform rot: 1.5707963267948966 rad @@ -166974,7 +166995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21549 + - uid: 21472 components: - type: Transform rot: 1.5707963267948966 rad @@ -166982,7 +167003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21550 + - uid: 21473 components: - type: Transform rot: 1.5707963267948966 rad @@ -166990,7 +167011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21551 + - uid: 21474 components: - type: Transform rot: 1.5707963267948966 rad @@ -166998,7 +167019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21552 + - uid: 21475 components: - type: Transform rot: 1.5707963267948966 rad @@ -167006,7 +167027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21553 + - uid: 21476 components: - type: Transform rot: 1.5707963267948966 rad @@ -167014,7 +167035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21554 + - uid: 21477 components: - type: Transform rot: 1.5707963267948966 rad @@ -167022,7 +167043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21555 + - uid: 21478 components: - type: Transform rot: 1.5707963267948966 rad @@ -167030,7 +167051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21556 + - uid: 21479 components: - type: Transform rot: 1.5707963267948966 rad @@ -167038,7 +167059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21557 + - uid: 21480 components: - type: Transform rot: 1.5707963267948966 rad @@ -167046,7 +167067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21558 + - uid: 21481 components: - type: Transform rot: 1.5707963267948966 rad @@ -167054,14 +167075,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21559 + - uid: 21482 components: - type: Transform pos: 1.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21560 + - uid: 21483 components: - type: Transform rot: 1.5707963267948966 rad @@ -167069,7 +167090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21561 + - uid: 21484 components: - type: Transform rot: 1.5707963267948966 rad @@ -167077,7 +167098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21562 + - uid: 21485 components: - type: Transform rot: 1.5707963267948966 rad @@ -167085,7 +167106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21563 + - uid: 21486 components: - type: Transform rot: 1.5707963267948966 rad @@ -167093,7 +167114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21564 + - uid: 21487 components: - type: Transform rot: 1.5707963267948966 rad @@ -167101,7 +167122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21565 + - uid: 21488 components: - type: Transform rot: 1.5707963267948966 rad @@ -167109,7 +167130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21566 + - uid: 21489 components: - type: Transform rot: 1.5707963267948966 rad @@ -167117,7 +167138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21567 + - uid: 21490 components: - type: Transform rot: 1.5707963267948966 rad @@ -167125,28 +167146,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21568 + - uid: 21491 components: - type: Transform pos: -9.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21569 + - uid: 21492 components: - type: Transform pos: -9.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21570 + - uid: 21493 components: - type: Transform pos: 1.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21571 + - uid: 21494 components: - type: Transform rot: -1.5707963267948966 rad @@ -167154,231 +167175,231 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21572 + - uid: 21495 components: - type: Transform pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21573 + - uid: 21496 components: - type: Transform pos: -9.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21574 + - uid: 21497 components: - type: Transform pos: -8.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21575 + - uid: 21498 components: - type: Transform pos: -9.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21576 + - uid: 21499 components: - type: Transform pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21577 + - uid: 21500 components: - type: Transform pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21578 + - uid: 21501 components: - type: Transform pos: 1.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21579 + - uid: 21502 components: - type: Transform pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21580 + - uid: 21503 components: - type: Transform pos: 0.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21581 + - uid: 21504 components: - type: Transform pos: 1.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21582 + - uid: 21505 components: - type: Transform pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21583 + - uid: 21506 components: - type: Transform pos: -9.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21584 + - uid: 21507 components: - type: Transform pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21585 + - uid: 21508 components: - type: Transform pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21586 + - uid: 21509 components: - type: Transform pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21587 + - uid: 21510 components: - type: Transform pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21588 + - uid: 21511 components: - type: Transform pos: -9.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21589 + - uid: 21512 components: - type: Transform pos: -8.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21590 + - uid: 21513 components: - type: Transform pos: -9.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21591 + - uid: 21514 components: - type: Transform pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21592 + - uid: 21515 components: - type: Transform pos: 1.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21593 + - uid: 21516 components: - type: Transform pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21594 + - uid: 21517 components: - type: Transform pos: 1.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21595 + - uid: 21518 components: - type: Transform pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21596 + - uid: 21519 components: - type: Transform pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21597 + - uid: 21520 components: - type: Transform pos: 0.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21598 + - uid: 21521 components: - type: Transform pos: 1.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21599 + - uid: 21522 components: - type: Transform pos: 1.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21600 + - uid: 21523 components: - type: Transform pos: -9.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21601 + - uid: 21524 components: - type: Transform pos: -9.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21602 + - uid: 21525 components: - type: Transform pos: -8.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21603 + - uid: 21526 components: - type: Transform pos: -9.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21604 + - uid: 21527 components: - type: Transform rot: -1.5707963267948966 rad @@ -167386,7 +167407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21605 + - uid: 21528 components: - type: Transform rot: -1.5707963267948966 rad @@ -167394,7 +167415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21606 + - uid: 21529 components: - type: Transform rot: -1.5707963267948966 rad @@ -167402,7 +167423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21607 + - uid: 21530 components: - type: Transform rot: -1.5707963267948966 rad @@ -167410,7 +167431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21608 + - uid: 21531 components: - type: Transform rot: -1.5707963267948966 rad @@ -167418,7 +167439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21609 + - uid: 21532 components: - type: Transform rot: -1.5707963267948966 rad @@ -167426,7 +167447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21610 + - uid: 21533 components: - type: Transform rot: -1.5707963267948966 rad @@ -167434,7 +167455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21611 + - uid: 21534 components: - type: Transform rot: -1.5707963267948966 rad @@ -167442,7 +167463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21612 + - uid: 21535 components: - type: Transform rot: -1.5707963267948966 rad @@ -167450,7 +167471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21613 + - uid: 21536 components: - type: Transform rot: -1.5707963267948966 rad @@ -167458,7 +167479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21614 + - uid: 21537 components: - type: Transform rot: -1.5707963267948966 rad @@ -167466,7 +167487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21615 + - uid: 21538 components: - type: Transform rot: -1.5707963267948966 rad @@ -167474,7 +167495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21616 + - uid: 21539 components: - type: Transform rot: -1.5707963267948966 rad @@ -167482,7 +167503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21617 + - uid: 21540 components: - type: Transform rot: -1.5707963267948966 rad @@ -167490,7 +167511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21618 + - uid: 21541 components: - type: Transform rot: -1.5707963267948966 rad @@ -167498,7 +167519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21619 + - uid: 21542 components: - type: Transform rot: -1.5707963267948966 rad @@ -167506,14 +167527,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21620 + - uid: 21543 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21621 + - uid: 21544 components: - type: Transform rot: -1.5707963267948966 rad @@ -167521,7 +167542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21622 + - uid: 21545 components: - type: Transform rot: -1.5707963267948966 rad @@ -167529,7 +167550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21623 + - uid: 21546 components: - type: Transform rot: -1.5707963267948966 rad @@ -167537,7 +167558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21624 + - uid: 21547 components: - type: Transform rot: -1.5707963267948966 rad @@ -167545,7 +167566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21625 + - uid: 21548 components: - type: Transform rot: -1.5707963267948966 rad @@ -167553,7 +167574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21626 + - uid: 21549 components: - type: Transform rot: -1.5707963267948966 rad @@ -167561,63 +167582,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21627 + - uid: 21550 components: - type: Transform pos: 5.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21628 + - uid: 21551 components: - type: Transform pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21629 + - uid: 21552 components: - type: Transform pos: 5.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21630 + - uid: 21553 components: - type: Transform pos: 5.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21631 + - uid: 21554 components: - type: Transform pos: 5.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21632 + - uid: 21555 components: - type: Transform pos: 5.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21633 + - uid: 21556 components: - type: Transform pos: 5.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21634 + - uid: 21557 components: - type: Transform pos: 5.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21635 + - uid: 21558 components: - type: Transform rot: -1.5707963267948966 rad @@ -167625,7 +167646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21636 + - uid: 21559 components: - type: Transform rot: -1.5707963267948966 rad @@ -167633,7 +167654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21637 + - uid: 21560 components: - type: Transform rot: -1.5707963267948966 rad @@ -167641,7 +167662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21638 + - uid: 21561 components: - type: Transform rot: -1.5707963267948966 rad @@ -167649,7 +167670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21639 + - uid: 21562 components: - type: Transform rot: -1.5707963267948966 rad @@ -167657,7 +167678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21640 + - uid: 21563 components: - type: Transform rot: -1.5707963267948966 rad @@ -167665,7 +167686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21641 + - uid: 21564 components: - type: Transform rot: -1.5707963267948966 rad @@ -167673,7 +167694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21642 + - uid: 21565 components: - type: Transform rot: -1.5707963267948966 rad @@ -167681,7 +167702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21643 + - uid: 21566 components: - type: Transform rot: -1.5707963267948966 rad @@ -167689,7 +167710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21644 + - uid: 21567 components: - type: Transform rot: -1.5707963267948966 rad @@ -167697,7 +167718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21645 + - uid: 21568 components: - type: Transform rot: -1.5707963267948966 rad @@ -167705,7 +167726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21646 + - uid: 21569 components: - type: Transform rot: 3.141592653589793 rad @@ -167713,7 +167734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21647 + - uid: 21570 components: - type: Transform rot: 1.5707963267948966 rad @@ -167721,7 +167742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21648 + - uid: 21571 components: - type: Transform rot: 1.5707963267948966 rad @@ -167729,7 +167750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21649 + - uid: 21572 components: - type: Transform rot: 1.5707963267948966 rad @@ -167737,7 +167758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21650 + - uid: 21573 components: - type: Transform rot: 1.5707963267948966 rad @@ -167745,7 +167766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21651 + - uid: 21574 components: - type: Transform rot: 1.5707963267948966 rad @@ -167753,7 +167774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21652 + - uid: 21575 components: - type: Transform rot: 1.5707963267948966 rad @@ -167761,7 +167782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21653 + - uid: 21576 components: - type: Transform rot: 1.5707963267948966 rad @@ -167769,7 +167790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21654 + - uid: 21577 components: - type: Transform rot: 1.5707963267948966 rad @@ -167777,56 +167798,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21655 + - uid: 21578 components: - type: Transform pos: -16.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21656 + - uid: 21579 components: - type: Transform pos: -16.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21657 + - uid: 21580 components: - type: Transform pos: -16.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21658 + - uid: 21581 components: - type: Transform pos: -16.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21659 + - uid: 21582 components: - type: Transform pos: -16.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21660 + - uid: 21583 components: - type: Transform pos: -16.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21661 + - uid: 21584 components: - type: Transform pos: -16.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21662 + - uid: 21585 components: - type: Transform rot: -1.5707963267948966 rad @@ -167834,7 +167855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21663 + - uid: 21586 components: - type: Transform rot: -1.5707963267948966 rad @@ -167842,7 +167863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21664 + - uid: 21587 components: - type: Transform rot: -1.5707963267948966 rad @@ -167850,7 +167871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21665 + - uid: 21588 components: - type: Transform rot: -1.5707963267948966 rad @@ -167858,49 +167879,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21666 + - uid: 21589 components: - type: Transform pos: -22.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21667 + - uid: 21590 components: - type: Transform pos: -22.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21668 + - uid: 21591 components: - type: Transform pos: -22.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21669 + - uid: 21592 components: - type: Transform pos: -22.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21670 + - uid: 21593 components: - type: Transform pos: -22.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21671 + - uid: 21594 components: - type: Transform pos: -22.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21672 + - uid: 21595 components: - type: Transform rot: 1.5707963267948966 rad @@ -167908,7 +167929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21673 + - uid: 21596 components: - type: Transform rot: 3.141592653589793 rad @@ -167916,7 +167937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21674 + - uid: 21597 components: - type: Transform rot: 3.141592653589793 rad @@ -167924,7 +167945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21675 + - uid: 21598 components: - type: Transform rot: 3.141592653589793 rad @@ -167932,7 +167953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21676 + - uid: 21599 components: - type: Transform rot: 3.141592653589793 rad @@ -167940,7 +167961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21677 + - uid: 21600 components: - type: Transform rot: 3.141592653589793 rad @@ -167948,7 +167969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21678 + - uid: 21601 components: - type: Transform rot: 3.141592653589793 rad @@ -167956,7 +167977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21679 + - uid: 21602 components: - type: Transform rot: 3.141592653589793 rad @@ -167964,7 +167985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21680 + - uid: 21603 components: - type: Transform rot: 1.5707963267948966 rad @@ -167972,7 +167993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21681 + - uid: 21604 components: - type: Transform rot: 1.5707963267948966 rad @@ -167980,7 +168001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21682 + - uid: 21605 components: - type: Transform rot: 1.5707963267948966 rad @@ -167988,7 +168009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21683 + - uid: 21606 components: - type: Transform rot: 1.5707963267948966 rad @@ -167996,7 +168017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21684 + - uid: 21607 components: - type: Transform rot: 1.5707963267948966 rad @@ -168004,7 +168025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21685 + - uid: 21608 components: - type: Transform rot: 1.5707963267948966 rad @@ -168012,7 +168033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21686 + - uid: 21609 components: - type: Transform rot: 1.5707963267948966 rad @@ -168020,7 +168041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21687 + - uid: 21610 components: - type: Transform rot: -1.5707963267948966 rad @@ -168028,7 +168049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21688 + - uid: 21611 components: - type: Transform rot: 3.141592653589793 rad @@ -168036,55 +168057,55 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21689 + - uid: 21612 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-30.5 parent: 2 - - uid: 21690 + - uid: 21613 components: - type: Transform pos: 21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21691 + - uid: 21614 components: - type: Transform pos: 8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21692 + - uid: 21615 components: - type: Transform pos: 5.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21693 + - uid: 21616 components: - type: Transform pos: 5.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21694 + - uid: 21617 components: - type: Transform pos: 5.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21695 + - uid: 21618 components: - type: Transform pos: 5.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21696 + - uid: 21619 components: - type: Transform rot: 3.141592653589793 rad @@ -168092,20 +168113,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21697 + - uid: 21620 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 2 - - uid: 21698 + - uid: 21621 components: - type: Transform pos: -28.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21699 + - uid: 21622 components: - type: Transform rot: 3.141592653589793 rad @@ -168113,7 +168134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21700 + - uid: 21623 components: - type: Transform rot: 3.141592653589793 rad @@ -168121,49 +168142,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21701 + - uid: 21624 components: - type: Transform pos: 41.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21702 + - uid: 21625 components: - type: Transform pos: -11.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21703 + - uid: 21626 components: - type: Transform pos: -5.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21704 + - uid: 21627 components: - type: Transform pos: -24.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21705 + - uid: 21628 components: - type: Transform pos: -24.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21706 + - uid: 21629 components: - type: Transform pos: -24.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21707 + - uid: 21630 components: - type: Transform rot: 1.5707963267948966 rad @@ -168171,14 +168192,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21708 + - uid: 21631 components: - type: Transform pos: -26.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21709 + - uid: 21632 components: - type: Transform rot: -1.5707963267948966 rad @@ -168186,7 +168207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21710 + - uid: 21633 components: - type: Transform rot: 1.5707963267948966 rad @@ -168194,7 +168215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21711 + - uid: 21634 components: - type: Transform rot: 1.5707963267948966 rad @@ -168202,7 +168223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21712 + - uid: 21635 components: - type: Transform rot: 1.5707963267948966 rad @@ -168210,7 +168231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21713 + - uid: 21636 components: - type: Transform rot: 1.5707963267948966 rad @@ -168218,14 +168239,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21714 + - uid: 21637 components: - type: Transform pos: 46.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21715 + - uid: 21638 components: - type: Transform rot: 1.5707963267948966 rad @@ -168233,7 +168254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21716 + - uid: 21639 components: - type: Transform rot: 3.141592653589793 rad @@ -168241,26 +168262,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21717 + - uid: 21640 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-30.5 parent: 2 - - uid: 21718 + - uid: 21641 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-30.5 parent: 2 - - uid: 21719 + - uid: 21642 components: - type: Transform pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21720 + - uid: 21643 components: - type: Transform rot: 3.141592653589793 rad @@ -168268,40 +168289,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21721 + - uid: 21644 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 21722 + - uid: 21645 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 21723 + - uid: 21646 components: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 21724 + - uid: 21647 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,21.5 parent: 2 - - uid: 21725 + - uid: 21648 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 21726 + - uid: 21649 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 21727 + - uid: 21650 components: - type: Transform rot: -1.5707963267948966 rad @@ -168309,25 +168330,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0313FF00' - - uid: 21728 + - uid: 21651 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,56.5 parent: 2 - - uid: 21729 + - uid: 21652 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,17.5 parent: 2 - - uid: 21730 + - uid: 21653 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,16.5 parent: 2 - - uid: 21731 + - uid: 21654 components: - type: Transform rot: 1.5707963267948966 rad @@ -168335,7 +168356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21732 + - uid: 21655 components: - type: Transform rot: 1.5707963267948966 rad @@ -168343,28 +168364,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21733 + - uid: 21656 components: - type: Transform pos: -119.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21734 + - uid: 21657 components: - type: Transform pos: -119.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21735 + - uid: 21658 components: - type: Transform pos: -119.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21736 + - uid: 21659 components: - type: Transform rot: -1.5707963267948966 rad @@ -168372,7 +168393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21737 + - uid: 21660 components: - type: Transform rot: 3.141592653589793 rad @@ -168380,12 +168401,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21738 + - uid: 21661 components: - type: Transform pos: -29.5,-53.5 parent: 2 - - uid: 21739 + - uid: 21662 components: - type: Transform rot: 3.141592653589793 rad @@ -168393,7 +168414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21740 + - uid: 21663 components: - type: Transform rot: -1.5707963267948966 rad @@ -168401,7 +168422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21741 + - uid: 21664 components: - type: Transform rot: -1.5707963267948966 rad @@ -168409,7 +168430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21742 + - uid: 21665 components: - type: Transform rot: 3.141592653589793 rad @@ -168417,7 +168438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21743 + - uid: 21666 components: - type: Transform rot: 3.141592653589793 rad @@ -168425,7 +168446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21744 + - uid: 21667 components: - type: Transform rot: 3.141592653589793 rad @@ -168433,13 +168454,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21745 + - uid: 21668 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,58.5 parent: 2 - - uid: 21746 + - uid: 21669 components: - type: Transform anchored: False @@ -168451,14 +168472,14 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21747 + - uid: 21670 components: - type: Transform pos: 24.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21748 + - uid: 21671 components: - type: Transform rot: 3.141592653589793 rad @@ -168466,7 +168487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21749 + - uid: 21672 components: - type: Transform rot: -1.5707963267948966 rad @@ -168474,13 +168495,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21750 + - uid: 21673 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,56.5 parent: 2 - - uid: 21751 + - uid: 21674 components: - type: Transform rot: 3.141592653589793 rad @@ -168488,27 +168509,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21752 + - uid: 21675 components: - type: Transform pos: -8.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21753 + - uid: 21676 components: - type: Transform pos: -63.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21754 + - uid: 21677 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,55.5 parent: 2 - - uid: 21755 + - uid: 21678 components: - type: Transform rot: 3.141592653589793 rad @@ -168516,7 +168537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21756 + - uid: 21679 components: - type: Transform rot: 3.141592653589793 rad @@ -168524,7 +168545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21757 + - uid: 21680 components: - type: Transform rot: -1.5707963267948966 rad @@ -168532,13 +168553,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21758 + - uid: 21681 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,27.5 parent: 2 - - uid: 21759 + - uid: 21682 components: - type: Transform anchored: False @@ -168550,13 +168571,13 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21760 + - uid: 21683 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 21761 + - uid: 21684 components: - type: Transform rot: 3.141592653589793 rad @@ -168564,17 +168585,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0313FF00' - - uid: 21762 + - uid: 21685 components: - type: Transform pos: 75.5,25.5 parent: 2 - - uid: 21763 + - uid: 21686 components: - type: Transform pos: -54.5,52.5 parent: 2 - - uid: 21764 + - uid: 21687 components: - type: Transform rot: 3.141592653589793 rad @@ -168582,7 +168603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21765 + - uid: 21688 components: - type: Transform rot: 3.141592653589793 rad @@ -168590,7 +168611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21766 + - uid: 21689 components: - type: Transform rot: 3.141592653589793 rad @@ -168598,7 +168619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 21767 + - uid: 21690 components: - type: Transform rot: 1.5707963267948966 rad @@ -168606,12 +168627,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21768 + - uid: 21691 components: - type: Transform pos: -55.5,52.5 parent: 2 - - uid: 21769 + - uid: 21692 components: - type: Transform rot: 3.141592653589793 rad @@ -168619,18 +168640,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21770 + - uid: 21693 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 21771 + - uid: 21694 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,18.5 parent: 2 - - uid: 21772 + - uid: 21695 components: - type: Transform rot: 1.5707963267948966 rad @@ -168638,14 +168659,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21773 + - uid: 21696 components: - type: Transform pos: 4.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21774 + - uid: 21697 components: - type: Transform rot: 1.5707963267948966 rad @@ -168653,7 +168674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21775 + - uid: 21698 components: - type: Transform rot: 3.141592653589793 rad @@ -168661,7 +168682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21776 + - uid: 21699 components: - type: Transform rot: 3.141592653589793 rad @@ -168669,7 +168690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21777 + - uid: 21700 components: - type: Transform rot: 1.5707963267948966 rad @@ -168677,7 +168698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21778 + - uid: 21701 components: - type: Transform rot: 3.141592653589793 rad @@ -168685,7 +168706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21779 + - uid: 21702 components: - type: Transform rot: 3.141592653589793 rad @@ -168693,7 +168714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21780 + - uid: 21703 components: - type: Transform rot: 3.141592653589793 rad @@ -168701,7 +168722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21781 + - uid: 21704 components: - type: Transform rot: 3.141592653589793 rad @@ -168709,7 +168730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21782 + - uid: 21705 components: - type: Transform rot: 3.141592653589793 rad @@ -168717,7 +168738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21783 + - uid: 21706 components: - type: Transform rot: 3.141592653589793 rad @@ -168725,7 +168746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21784 + - uid: 21707 components: - type: Transform rot: 1.5707963267948966 rad @@ -168733,7 +168754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21785 + - uid: 21708 components: - type: Transform rot: 1.5707963267948966 rad @@ -168741,7 +168762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21786 + - uid: 21709 components: - type: Transform rot: 1.5707963267948966 rad @@ -168749,14 +168770,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21787 + - uid: 21710 components: - type: Transform pos: -117.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21788 + - uid: 21711 components: - type: Transform rot: 3.141592653589793 rad @@ -168764,7 +168785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21789 + - uid: 21712 components: - type: Transform rot: -1.5707963267948966 rad @@ -168772,7 +168793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21790 + - uid: 21713 components: - type: Transform rot: 3.141592653589793 rad @@ -168780,7 +168801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21791 + - uid: 21714 components: - type: Transform rot: 3.141592653589793 rad @@ -168788,7 +168809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21792 + - uid: 21715 components: - type: Transform rot: 3.141592653589793 rad @@ -168796,7 +168817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21793 + - uid: 21716 components: - type: Transform rot: 3.141592653589793 rad @@ -168804,7 +168825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21794 + - uid: 21717 components: - type: Transform rot: 3.141592653589793 rad @@ -168812,7 +168833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21795 + - uid: 21718 components: - type: Transform rot: 3.141592653589793 rad @@ -168820,7 +168841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21796 + - uid: 21719 components: - type: Transform rot: 3.141592653589793 rad @@ -168828,7 +168849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21797 + - uid: 21720 components: - type: Transform rot: -1.5707963267948966 rad @@ -168836,7 +168857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21798 + - uid: 21721 components: - type: Transform rot: 1.5707963267948966 rad @@ -168844,7 +168865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21799 + - uid: 21722 components: - type: Transform rot: 3.141592653589793 rad @@ -168852,7 +168873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21800 + - uid: 21723 components: - type: Transform rot: -1.5707963267948966 rad @@ -168860,14 +168881,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21801 + - uid: 21724 components: - type: Transform pos: -119.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21802 + - uid: 21725 components: - type: Transform rot: 1.5707963267948966 rad @@ -168875,7 +168896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21803 + - uid: 21726 components: - type: Transform rot: 1.5707963267948966 rad @@ -168883,14 +168904,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21804 + - uid: 21727 components: - type: Transform pos: -119.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21805 + - uid: 21728 components: - type: Transform rot: -1.5707963267948966 rad @@ -168898,7 +168919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21806 + - uid: 21729 components: - type: Transform rot: -1.5707963267948966 rad @@ -168906,7 +168927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21807 + - uid: 21730 components: - type: Transform rot: -1.5707963267948966 rad @@ -168914,7 +168935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21808 + - uid: 21731 components: - type: Transform rot: -1.5707963267948966 rad @@ -168922,7 +168943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21809 + - uid: 21732 components: - type: Transform rot: -1.5707963267948966 rad @@ -168930,7 +168951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21810 + - uid: 21733 components: - type: Transform rot: -1.5707963267948966 rad @@ -168938,14 +168959,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21811 + - uid: 21734 components: - type: Transform pos: -119.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21812 + - uid: 21735 components: - type: Transform rot: 3.141592653589793 rad @@ -168953,7 +168974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21813 + - uid: 21736 components: - type: Transform rot: 3.141592653589793 rad @@ -168961,55 +168982,55 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21814 + - uid: 21737 components: - type: Transform pos: -119.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21815 + - uid: 21738 components: - type: Transform pos: -119.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21816 + - uid: 21739 components: - type: Transform pos: -119.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21817 + - uid: 21740 components: - type: Transform pos: -119.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21818 + - uid: 21741 components: - type: Transform pos: -119.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21819 + - uid: 21742 components: - type: Transform pos: -119.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21820 + - uid: 21743 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,18.5 parent: 2 - - uid: 21821 + - uid: 21744 components: - type: Transform rot: 1.5707963267948966 rad @@ -169017,7 +169038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21822 + - uid: 21745 components: - type: Transform rot: -1.5707963267948966 rad @@ -169025,7 +169046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21823 + - uid: 21746 components: - type: Transform rot: -1.5707963267948966 rad @@ -169033,7 +169054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21824 + - uid: 21747 components: - type: Transform rot: 1.5707963267948966 rad @@ -169041,14 +169062,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21825 + - uid: 21748 components: - type: Transform pos: -14.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21826 + - uid: 21749 components: - type: Transform rot: 3.141592653589793 rad @@ -169056,7 +169077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21827 + - uid: 21750 components: - type: Transform rot: 3.141592653589793 rad @@ -169064,7 +169085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21828 + - uid: 21751 components: - type: Transform rot: 3.141592653589793 rad @@ -169072,7 +169093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21829 + - uid: 21752 components: - type: Transform rot: 3.141592653589793 rad @@ -169080,7 +169101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21830 + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad @@ -169088,7 +169109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 21831 + - uid: 21754 components: - type: Transform rot: -1.5707963267948966 rad @@ -169096,21 +169117,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 21832 + - uid: 21755 components: - type: Transform pos: -16.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21833 + - uid: 21756 components: - type: Transform pos: -28.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21834 + - uid: 21757 components: - type: Transform rot: -1.5707963267948966 rad @@ -169118,14 +169139,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21835 + - uid: 21758 components: - type: Transform pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21836 + - uid: 21759 components: - type: Transform rot: -1.5707963267948966 rad @@ -169133,7 +169154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21837 + - uid: 21760 components: - type: Transform rot: 1.5707963267948966 rad @@ -169141,7 +169162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21838 + - uid: 21761 components: - type: Transform rot: 1.5707963267948966 rad @@ -169149,7 +169170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21839 + - uid: 21762 components: - type: Transform rot: 1.5707963267948966 rad @@ -169157,7 +169178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21840 + - uid: 21763 components: - type: Transform rot: 1.5707963267948966 rad @@ -169165,7 +169186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21841 + - uid: 21764 components: - type: Transform rot: 1.5707963267948966 rad @@ -169173,7 +169194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21842 + - uid: 21765 components: - type: Transform rot: 1.5707963267948966 rad @@ -169181,7 +169202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21843 + - uid: 21766 components: - type: Transform rot: 1.5707963267948966 rad @@ -169189,7 +169210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21844 + - uid: 21767 components: - type: Transform rot: 1.5707963267948966 rad @@ -169197,7 +169218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21845 + - uid: 21768 components: - type: Transform rot: 1.5707963267948966 rad @@ -169205,7 +169226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21846 + - uid: 21769 components: - type: Transform rot: 1.5707963267948966 rad @@ -169213,7 +169234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21847 + - uid: 21770 components: - type: Transform rot: 1.5707963267948966 rad @@ -169221,7 +169242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21848 + - uid: 21771 components: - type: Transform rot: 1.5707963267948966 rad @@ -169229,7 +169250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21849 + - uid: 21772 components: - type: Transform rot: 1.5707963267948966 rad @@ -169237,7 +169258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21850 + - uid: 21773 components: - type: Transform rot: 1.5707963267948966 rad @@ -169245,7 +169266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21851 + - uid: 21774 components: - type: Transform rot: 1.5707963267948966 rad @@ -169253,7 +169274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21852 + - uid: 21775 components: - type: Transform rot: 1.5707963267948966 rad @@ -169261,7 +169282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21853 + - uid: 21776 components: - type: Transform rot: 1.5707963267948966 rad @@ -169269,7 +169290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21854 + - uid: 21777 components: - type: Transform rot: 1.5707963267948966 rad @@ -169277,7 +169298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21855 + - uid: 21778 components: - type: Transform rot: 1.5707963267948966 rad @@ -169285,7 +169306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21856 + - uid: 21779 components: - type: Transform rot: 1.5707963267948966 rad @@ -169293,7 +169314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21857 + - uid: 21780 components: - type: Transform rot: 1.5707963267948966 rad @@ -169301,7 +169322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21858 + - uid: 21781 components: - type: Transform rot: 1.5707963267948966 rad @@ -169309,7 +169330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21859 + - uid: 21782 components: - type: Transform rot: 1.5707963267948966 rad @@ -169317,7 +169338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21860 + - uid: 21783 components: - type: Transform rot: 1.5707963267948966 rad @@ -169325,7 +169346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21861 + - uid: 21784 components: - type: Transform rot: 1.5707963267948966 rad @@ -169333,7 +169354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21862 + - uid: 21785 components: - type: Transform rot: 1.5707963267948966 rad @@ -169341,7 +169362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21863 + - uid: 21786 components: - type: Transform rot: 1.5707963267948966 rad @@ -169349,7 +169370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21864 + - uid: 21787 components: - type: Transform rot: 1.5707963267948966 rad @@ -169357,7 +169378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21865 + - uid: 21788 components: - type: Transform rot: 1.5707963267948966 rad @@ -169365,7 +169386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21866 + - uid: 21789 components: - type: Transform rot: 1.5707963267948966 rad @@ -169373,7 +169394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21867 + - uid: 21790 components: - type: Transform rot: 1.5707963267948966 rad @@ -169381,7 +169402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21868 + - uid: 21791 components: - type: Transform rot: 1.5707963267948966 rad @@ -169389,7 +169410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21869 + - uid: 21792 components: - type: Transform rot: 1.5707963267948966 rad @@ -169397,7 +169418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21870 + - uid: 21793 components: - type: Transform rot: 1.5707963267948966 rad @@ -169405,7 +169426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21871 + - uid: 21794 components: - type: Transform rot: 1.5707963267948966 rad @@ -169413,7 +169434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21872 + - uid: 21795 components: - type: Transform rot: 1.5707963267948966 rad @@ -169421,7 +169442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21873 + - uid: 21796 components: - type: Transform rot: 1.5707963267948966 rad @@ -169429,7 +169450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21874 + - uid: 21797 components: - type: Transform rot: 1.5707963267948966 rad @@ -169437,7 +169458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21875 + - uid: 21798 components: - type: Transform rot: 1.5707963267948966 rad @@ -169445,7 +169466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21876 + - uid: 21799 components: - type: Transform rot: 1.5707963267948966 rad @@ -169453,7 +169474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21877 + - uid: 21800 components: - type: Transform rot: 1.5707963267948966 rad @@ -169461,7 +169482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21878 + - uid: 21801 components: - type: Transform rot: 1.5707963267948966 rad @@ -169469,7 +169490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21879 + - uid: 21802 components: - type: Transform rot: 1.5707963267948966 rad @@ -169477,7 +169498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21880 + - uid: 21803 components: - type: Transform rot: 1.5707963267948966 rad @@ -169485,7 +169506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21881 + - uid: 21804 components: - type: Transform rot: 1.5707963267948966 rad @@ -169493,7 +169514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21882 + - uid: 21805 components: - type: Transform rot: 1.5707963267948966 rad @@ -169501,7 +169522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21883 + - uid: 21806 components: - type: Transform rot: 1.5707963267948966 rad @@ -169509,7 +169530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21884 + - uid: 21807 components: - type: Transform rot: 1.5707963267948966 rad @@ -169517,7 +169538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21885 + - uid: 21808 components: - type: Transform rot: 1.5707963267948966 rad @@ -169525,7 +169546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21886 + - uid: 21809 components: - type: Transform rot: 1.5707963267948966 rad @@ -169533,7 +169554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21887 + - uid: 21810 components: - type: Transform rot: 1.5707963267948966 rad @@ -169541,7 +169562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21888 + - uid: 21811 components: - type: Transform rot: 1.5707963267948966 rad @@ -169549,7 +169570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21889 + - uid: 21812 components: - type: Transform rot: 1.5707963267948966 rad @@ -169557,7 +169578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21890 + - uid: 21813 components: - type: Transform rot: 1.5707963267948966 rad @@ -169565,7 +169586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21891 + - uid: 21814 components: - type: Transform rot: 1.5707963267948966 rad @@ -169573,7 +169594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21892 + - uid: 21815 components: - type: Transform rot: -1.5707963267948966 rad @@ -169581,7 +169602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21893 + - uid: 21816 components: - type: Transform rot: -1.5707963267948966 rad @@ -169589,7 +169610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21894 + - uid: 21817 components: - type: Transform rot: -1.5707963267948966 rad @@ -169597,7 +169618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21895 + - uid: 21818 components: - type: Transform rot: -1.5707963267948966 rad @@ -169605,7 +169626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21896 + - uid: 21819 components: - type: Transform rot: 3.141592653589793 rad @@ -169613,7 +169634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21897 + - uid: 21820 components: - type: Transform rot: -1.5707963267948966 rad @@ -169621,7 +169642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21898 + - uid: 21821 components: - type: Transform rot: 3.141592653589793 rad @@ -169629,7 +169650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21899 + - uid: 21822 components: - type: Transform rot: 3.141592653589793 rad @@ -169637,7 +169658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21900 + - uid: 21823 components: - type: Transform rot: 3.141592653589793 rad @@ -169645,7 +169666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21901 + - uid: 21824 components: - type: Transform rot: 3.141592653589793 rad @@ -169653,7 +169674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21902 + - uid: 21825 components: - type: Transform rot: 1.5707963267948966 rad @@ -169661,7 +169682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21903 + - uid: 21826 components: - type: Transform rot: 1.5707963267948966 rad @@ -169669,7 +169690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21904 + - uid: 21827 components: - type: Transform rot: 1.5707963267948966 rad @@ -169677,7 +169698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21905 + - uid: 21828 components: - type: Transform rot: 1.5707963267948966 rad @@ -169685,7 +169706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21906 + - uid: 21829 components: - type: Transform rot: 1.5707963267948966 rad @@ -169693,7 +169714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21907 + - uid: 21830 components: - type: Transform rot: -1.5707963267948966 rad @@ -169701,7 +169722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21908 + - uid: 21831 components: - type: Transform rot: -1.5707963267948966 rad @@ -169709,7 +169730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21909 + - uid: 21832 components: - type: Transform rot: -1.5707963267948966 rad @@ -169717,7 +169738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21910 + - uid: 21833 components: - type: Transform rot: -1.5707963267948966 rad @@ -169725,7 +169746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21911 + - uid: 21834 components: - type: Transform rot: -1.5707963267948966 rad @@ -169733,7 +169754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21912 + - uid: 21835 components: - type: Transform rot: 1.5707963267948966 rad @@ -169741,7 +169762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21913 + - uid: 21836 components: - type: Transform rot: 1.5707963267948966 rad @@ -169749,7 +169770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21914 + - uid: 21837 components: - type: Transform rot: 1.5707963267948966 rad @@ -169757,7 +169778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21915 + - uid: 21838 components: - type: Transform rot: 1.5707963267948966 rad @@ -169765,7 +169786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21916 + - uid: 21839 components: - type: Transform rot: 1.5707963267948966 rad @@ -169773,7 +169794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21917 + - uid: 21840 components: - type: Transform rot: 1.5707963267948966 rad @@ -169781,7 +169802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21918 + - uid: 21841 components: - type: Transform rot: 1.5707963267948966 rad @@ -169789,7 +169810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21919 + - uid: 21842 components: - type: Transform rot: 1.5707963267948966 rad @@ -169797,7 +169818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21920 + - uid: 21843 components: - type: Transform rot: 1.5707963267948966 rad @@ -169805,7 +169826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21921 + - uid: 21844 components: - type: Transform rot: 1.5707963267948966 rad @@ -169813,7 +169834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21922 + - uid: 21845 components: - type: Transform rot: -1.5707963267948966 rad @@ -169821,7 +169842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21923 + - uid: 21846 components: - type: Transform rot: -1.5707963267948966 rad @@ -169829,7 +169850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21924 + - uid: 21847 components: - type: Transform rot: -1.5707963267948966 rad @@ -169837,7 +169858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21925 + - uid: 21848 components: - type: Transform rot: -1.5707963267948966 rad @@ -169845,7 +169866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21926 + - uid: 21849 components: - type: Transform rot: -1.5707963267948966 rad @@ -169853,7 +169874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21927 + - uid: 21850 components: - type: Transform rot: 3.141592653589793 rad @@ -169861,7 +169882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21928 + - uid: 21851 components: - type: Transform rot: 3.141592653589793 rad @@ -169869,7 +169890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21929 + - uid: 21852 components: - type: Transform rot: 3.141592653589793 rad @@ -169877,7 +169898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21930 + - uid: 21853 components: - type: Transform rot: 3.141592653589793 rad @@ -169885,7 +169906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21931 + - uid: 21854 components: - type: Transform rot: 3.141592653589793 rad @@ -169893,7 +169914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21932 + - uid: 21855 components: - type: Transform rot: 3.141592653589793 rad @@ -169901,7 +169922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21933 + - uid: 21856 components: - type: Transform rot: 1.5707963267948966 rad @@ -169909,7 +169930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21934 + - uid: 21857 components: - type: Transform rot: 1.5707963267948966 rad @@ -169917,7 +169938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21935 + - uid: 21858 components: - type: Transform rot: 1.5707963267948966 rad @@ -169925,7 +169946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21936 + - uid: 21859 components: - type: Transform rot: 3.141592653589793 rad @@ -169933,7 +169954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21937 + - uid: 21860 components: - type: Transform rot: 3.141592653589793 rad @@ -169941,7 +169962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21938 + - uid: 21861 components: - type: Transform rot: 3.141592653589793 rad @@ -169949,7 +169970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21939 + - uid: 21862 components: - type: Transform rot: 3.141592653589793 rad @@ -169957,7 +169978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21940 + - uid: 21863 components: - type: Transform rot: 3.141592653589793 rad @@ -169965,7 +169986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21941 + - uid: 21864 components: - type: Transform rot: 3.141592653589793 rad @@ -169973,7 +169994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21942 + - uid: 21865 components: - type: Transform rot: 3.141592653589793 rad @@ -169981,7 +170002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21943 + - uid: 21866 components: - type: Transform rot: 1.5707963267948966 rad @@ -169989,7 +170010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21944 + - uid: 21867 components: - type: Transform rot: 1.5707963267948966 rad @@ -169997,7 +170018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21945 + - uid: 21868 components: - type: Transform rot: 1.5707963267948966 rad @@ -170005,7 +170026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21946 + - uid: 21869 components: - type: Transform rot: 1.5707963267948966 rad @@ -170013,7 +170034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21947 + - uid: 21870 components: - type: Transform rot: 1.5707963267948966 rad @@ -170021,7 +170042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21948 + - uid: 21871 components: - type: Transform rot: 1.5707963267948966 rad @@ -170029,7 +170050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21949 + - uid: 21872 components: - type: Transform rot: 1.5707963267948966 rad @@ -170037,7 +170058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21950 + - uid: 21873 components: - type: Transform rot: 1.5707963267948966 rad @@ -170045,7 +170066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21951 + - uid: 21874 components: - type: Transform rot: 1.5707963267948966 rad @@ -170053,7 +170074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21952 + - uid: 21875 components: - type: Transform rot: 1.5707963267948966 rad @@ -170061,35 +170082,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21953 + - uid: 21876 components: - type: Transform pos: 78.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21954 + - uid: 21877 components: - type: Transform pos: 78.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21955 + - uid: 21878 components: - type: Transform pos: 78.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21956 + - uid: 21879 components: - type: Transform pos: 78.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21957 + - uid: 21880 components: - type: Transform rot: 1.5707963267948966 rad @@ -170097,7 +170118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21958 + - uid: 21881 components: - type: Transform rot: 1.5707963267948966 rad @@ -170105,7 +170126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21959 + - uid: 21882 components: - type: Transform rot: 1.5707963267948966 rad @@ -170113,7 +170134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21960 + - uid: 21883 components: - type: Transform rot: 1.5707963267948966 rad @@ -170121,7 +170142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21961 + - uid: 21884 components: - type: Transform rot: 1.5707963267948966 rad @@ -170129,7 +170150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21962 + - uid: 21885 components: - type: Transform rot: 1.5707963267948966 rad @@ -170137,7 +170158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21963 + - uid: 21886 components: - type: Transform rot: 1.5707963267948966 rad @@ -170145,7 +170166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21964 + - uid: 21887 components: - type: Transform rot: 1.5707963267948966 rad @@ -170153,7 +170174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21965 + - uid: 21888 components: - type: Transform rot: 1.5707963267948966 rad @@ -170161,7 +170182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21966 + - uid: 21889 components: - type: Transform rot: 1.5707963267948966 rad @@ -170169,7 +170190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21967 + - uid: 21890 components: - type: Transform rot: 1.5707963267948966 rad @@ -170177,7 +170198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21968 + - uid: 21891 components: - type: Transform rot: 1.5707963267948966 rad @@ -170185,7 +170206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21969 + - uid: 21892 components: - type: Transform rot: 1.5707963267948966 rad @@ -170193,7 +170214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21970 + - uid: 21893 components: - type: Transform rot: 1.5707963267948966 rad @@ -170201,7 +170222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21971 + - uid: 21894 components: - type: Transform rot: 1.5707963267948966 rad @@ -170209,7 +170230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21972 + - uid: 21895 components: - type: Transform rot: 1.5707963267948966 rad @@ -170217,7 +170238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21973 + - uid: 21896 components: - type: Transform rot: 1.5707963267948966 rad @@ -170225,7 +170246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21974 + - uid: 21897 components: - type: Transform rot: 1.5707963267948966 rad @@ -170233,7 +170254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21975 + - uid: 21898 components: - type: Transform rot: 1.5707963267948966 rad @@ -170241,7 +170262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21976 + - uid: 21899 components: - type: Transform rot: 1.5707963267948966 rad @@ -170249,7 +170270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21977 + - uid: 21900 components: - type: Transform rot: 1.5707963267948966 rad @@ -170257,7 +170278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21978 + - uid: 21901 components: - type: Transform rot: 1.5707963267948966 rad @@ -170265,7 +170286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21979 + - uid: 21902 components: - type: Transform rot: 1.5707963267948966 rad @@ -170273,7 +170294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21980 + - uid: 21903 components: - type: Transform rot: 1.5707963267948966 rad @@ -170281,7 +170302,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21981 + - uid: 21904 components: - type: Transform rot: 1.5707963267948966 rad @@ -170289,7 +170310,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21982 + - uid: 21905 components: - type: Transform rot: 1.5707963267948966 rad @@ -170297,14 +170318,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21983 + - uid: 21906 components: - type: Transform pos: 26.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21984 + - uid: 21907 components: - type: Transform rot: -1.5707963267948966 rad @@ -170312,7 +170333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21985 + - uid: 21908 components: - type: Transform rot: -1.5707963267948966 rad @@ -170320,7 +170341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21986 + - uid: 21909 components: - type: Transform rot: 1.5707963267948966 rad @@ -170328,7 +170349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21987 + - uid: 21910 components: - type: Transform rot: 1.5707963267948966 rad @@ -170336,7 +170357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21988 + - uid: 21911 components: - type: Transform rot: 1.5707963267948966 rad @@ -170344,7 +170365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21989 + - uid: 21912 components: - type: Transform rot: 1.5707963267948966 rad @@ -170352,7 +170373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21990 + - uid: 21913 components: - type: Transform rot: 1.5707963267948966 rad @@ -170360,7 +170381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21991 + - uid: 21914 components: - type: Transform rot: 1.5707963267948966 rad @@ -170368,13 +170389,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21992 + - uid: 21915 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 21993 + - uid: 21916 components: - type: Transform rot: 1.5707963267948966 rad @@ -170382,7 +170403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21994 + - uid: 21917 components: - type: Transform rot: -1.5707963267948966 rad @@ -170390,7 +170411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21995 + - uid: 21918 components: - type: Transform rot: 3.141592653589793 rad @@ -170398,789 +170419,789 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39272 + - uid: 39099 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39273 + parent: 38411 + - uid: 39100 components: - type: Transform pos: -18.5,32.5 - parent: 38584 - - uid: 39274 + parent: 38411 + - uid: 39101 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,4.5 - parent: 38584 - - uid: 39275 + parent: 38411 + - uid: 39102 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,2.5 - parent: 38584 - - uid: 39276 + parent: 38411 + - uid: 39103 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,4.5 - parent: 38584 - - uid: 39277 + parent: 38411 + - uid: 39104 components: - type: Transform pos: 11.5,3.5 - parent: 38584 - - uid: 39278 + parent: 38411 + - uid: 39105 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 - parent: 38584 - - uid: 39279 + parent: 38411 + - uid: 39106 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 - parent: 38584 - - uid: 39280 + parent: 38411 + - uid: 39107 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39281 + - uid: 39108 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39282 + - uid: 39109 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39283 + - uid: 39110 components: - type: Transform pos: -15.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39284 + - uid: 39111 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39285 + - uid: 39112 components: - type: Transform pos: -13.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39286 + - uid: 39113 components: - type: Transform pos: -13.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39287 + - uid: 39114 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39288 + - uid: 39115 components: - type: Transform pos: -13.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39289 + - uid: 39116 components: - type: Transform pos: -13.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39290 + - uid: 39117 components: - type: Transform pos: -11.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39291 + - uid: 39118 components: - type: Transform pos: -11.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39292 + - uid: 39119 components: - type: Transform pos: -11.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39293 + - uid: 39120 components: - type: Transform pos: -11.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39294 + - uid: 39121 components: - type: Transform pos: -11.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39295 + - uid: 39122 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39296 + - uid: 39123 components: - type: Transform pos: -11.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39297 + - uid: 39124 components: - type: Transform pos: -11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39298 + - uid: 39125 components: - type: Transform pos: -11.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39299 + - uid: 39126 components: - type: Transform pos: -11.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39300 + - uid: 39127 components: - type: Transform pos: -11.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39301 + - uid: 39128 components: - type: Transform pos: -11.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39302 + - uid: 39129 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39303 + - uid: 39130 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39304 + - uid: 39131 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39305 + - uid: 39132 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39306 + - uid: 39133 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39307 + - uid: 39134 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39308 + - uid: 39135 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39309 + - uid: 39136 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39310 + - uid: 39137 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39311 + - uid: 39138 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39312 + - uid: 39139 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39313 + - uid: 39140 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39314 + - uid: 39141 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39315 + - uid: 39142 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39316 + - uid: 39143 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39317 + - uid: 39144 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39318 + - uid: 39145 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39319 + - uid: 39146 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39320 + - uid: 39147 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39321 + - uid: 39148 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39322 + - uid: 39149 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39323 + - uid: 39150 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39324 + - uid: 39151 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39325 + - uid: 39152 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39326 + - uid: 39153 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39327 + - uid: 39154 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39328 + - uid: 39155 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39329 + - uid: 39156 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39330 + - uid: 39157 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39331 + - uid: 39158 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39332 + - uid: 39159 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39333 + - uid: 39160 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39334 + - uid: 39161 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39335 + - uid: 39162 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39336 + - uid: 39163 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39337 + - uid: 39164 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39338 + - uid: 39165 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39339 + - uid: 39166 components: - type: Transform pos: -1.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39340 + - uid: 39167 components: - type: Transform pos: -1.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39341 + - uid: 39168 components: - type: Transform pos: -1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39342 + - uid: 39169 components: - type: Transform pos: -1.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39343 + - uid: 39170 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39344 + - uid: 39171 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39345 + - uid: 39172 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39346 + - uid: 39173 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39347 + - uid: 39174 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39348 + - uid: 39175 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39349 + - uid: 39176 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39350 + - uid: 39177 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39351 + - uid: 39178 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39352 + - uid: 39179 components: - type: Transform pos: 10.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39353 + - uid: 39180 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39354 + - uid: 39181 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39355 + - uid: 39182 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39356 + - uid: 39183 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39357 + - uid: 39184 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39358 + - uid: 39185 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39359 + - uid: 39186 components: - type: Transform pos: 0.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39360 + - uid: 39187 components: - type: Transform pos: 0.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39361 + - uid: 39188 components: - type: Transform pos: 0.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39362 + - uid: 39189 components: - type: Transform pos: 0.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39363 + - uid: 39190 components: - type: Transform pos: 0.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39364 + - uid: 39191 components: - type: Transform pos: 0.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39365 + - uid: 39192 components: - type: Transform pos: 0.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39366 + - uid: 39193 components: - type: Transform pos: 0.5,-7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39367 + - uid: 39194 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39368 + - uid: 39195 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39369 + - uid: 39196 components: - type: Transform pos: -1.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39370 + - uid: 39197 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39371 + - uid: 39198 components: - type: Transform pos: -1.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39372 + - uid: 39199 components: - type: Transform pos: -1.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39373 + - uid: 39200 components: - type: Transform pos: -1.5,-7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39374 + - uid: 39201 components: - type: Transform pos: -1.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39375 + - uid: 39202 components: - type: Transform pos: -2.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39376 + - uid: 39203 components: - type: Transform pos: -2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeTJunction entities: - - uid: 21996 + - uid: 21919 components: - type: Transform rot: 1.5707963267948966 rad @@ -171188,7 +171209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21997 + - uid: 21920 components: - type: Transform rot: 1.5707963267948966 rad @@ -171196,7 +171217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21998 + - uid: 21921 components: - type: Transform rot: 3.141592653589793 rad @@ -171204,7 +171225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21999 + - uid: 21922 components: - type: Transform rot: -1.5707963267948966 rad @@ -171212,7 +171233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22000 + - uid: 21923 components: - type: Transform rot: -1.5707963267948966 rad @@ -171220,7 +171241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22001 + - uid: 21924 components: - type: Transform rot: -1.5707963267948966 rad @@ -171228,7 +171249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22002 + - uid: 21925 components: - type: Transform rot: 1.5707963267948966 rad @@ -171236,7 +171257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22003 + - uid: 21926 components: - type: Transform rot: 3.141592653589793 rad @@ -171244,7 +171265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22004 + - uid: 21927 components: - type: Transform rot: -1.5707963267948966 rad @@ -171252,7 +171273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22005 + - uid: 21928 components: - type: Transform rot: 1.5707963267948966 rad @@ -171260,7 +171281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22006 + - uid: 21929 components: - type: Transform rot: -1.5707963267948966 rad @@ -171268,14 +171289,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22007 + - uid: 21930 components: - type: Transform pos: -3.5,50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22008 + - uid: 21931 components: - type: Transform rot: 3.141592653589793 rad @@ -171283,7 +171304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22009 + - uid: 21932 components: - type: Transform rot: -1.5707963267948966 rad @@ -171291,7 +171312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22010 + - uid: 21933 components: - type: Transform rot: 1.5707963267948966 rad @@ -171299,7 +171320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22011 + - uid: 21934 components: - type: Transform rot: 3.141592653589793 rad @@ -171307,21 +171328,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22012 + - uid: 21935 components: - type: Transform pos: 21.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22013 + - uid: 21936 components: - type: Transform pos: 35.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22014 + - uid: 21937 components: - type: Transform rot: 3.141592653589793 rad @@ -171329,7 +171350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22015 + - uid: 21938 components: - type: Transform rot: -1.5707963267948966 rad @@ -171337,7 +171358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22016 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad @@ -171345,7 +171366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22017 + - uid: 21940 components: - type: Transform rot: -1.5707963267948966 rad @@ -171353,7 +171374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22018 + - uid: 21941 components: - type: Transform rot: 3.141592653589793 rad @@ -171361,7 +171382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22019 + - uid: 21942 components: - type: Transform rot: 3.141592653589793 rad @@ -171369,7 +171390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22020 + - uid: 21943 components: - type: Transform rot: 1.5707963267948966 rad @@ -171377,7 +171398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22021 + - uid: 21944 components: - type: Transform rot: 1.5707963267948966 rad @@ -171385,7 +171406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22022 + - uid: 21945 components: - type: Transform rot: -1.5707963267948966 rad @@ -171393,7 +171414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22023 + - uid: 21946 components: - type: Transform rot: -1.5707963267948966 rad @@ -171401,7 +171422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22024 + - uid: 21947 components: - type: Transform rot: 1.5707963267948966 rad @@ -171409,7 +171430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22025 + - uid: 21948 components: - type: Transform rot: -1.5707963267948966 rad @@ -171417,7 +171438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22026 + - uid: 21949 components: - type: Transform rot: 1.5707963267948966 rad @@ -171425,7 +171446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22027 + - uid: 21950 components: - type: Transform rot: 3.141592653589793 rad @@ -171433,7 +171454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22028 + - uid: 21951 components: - type: Transform rot: 1.5707963267948966 rad @@ -171441,7 +171462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22029 + - uid: 21952 components: - type: Transform rot: -1.5707963267948966 rad @@ -171449,21 +171470,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22030 + - uid: 21953 components: - type: Transform pos: -62.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22031 + - uid: 21954 components: - type: Transform pos: -71.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22032 + - uid: 21955 components: - type: Transform rot: 1.5707963267948966 rad @@ -171471,7 +171492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22033 + - uid: 21956 components: - type: Transform rot: -1.5707963267948966 rad @@ -171479,14 +171500,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22034 + - uid: 21957 components: - type: Transform pos: -47.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22035 + - uid: 21958 components: - type: Transform rot: 1.5707963267948966 rad @@ -171494,7 +171515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22036 + - uid: 21959 components: - type: Transform rot: -1.5707963267948966 rad @@ -171502,7 +171523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22037 + - uid: 21960 components: - type: Transform rot: -1.5707963267948966 rad @@ -171510,7 +171531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22038 + - uid: 21961 components: - type: Transform rot: 1.5707963267948966 rad @@ -171518,7 +171539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22039 + - uid: 21962 components: - type: Transform rot: 3.141592653589793 rad @@ -171526,14 +171547,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22040 + - uid: 21963 components: - type: Transform pos: -59.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22041 + - uid: 21964 components: - type: Transform rot: 3.141592653589793 rad @@ -171541,21 +171562,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22042 + - uid: 21965 components: - type: Transform pos: -68.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22043 + - uid: 21966 components: - type: Transform pos: -70.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22044 + - uid: 21967 components: - type: Transform rot: -1.5707963267948966 rad @@ -171563,7 +171584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22045 + - uid: 21968 components: - type: Transform rot: 3.141592653589793 rad @@ -171571,7 +171592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22046 + - uid: 21969 components: - type: Transform rot: -1.5707963267948966 rad @@ -171579,7 +171600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22047 + - uid: 21970 components: - type: Transform rot: -1.5707963267948966 rad @@ -171587,7 +171608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22048 + - uid: 21971 components: - type: Transform rot: 3.141592653589793 rad @@ -171595,7 +171616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22049 + - uid: 21972 components: - type: Transform rot: 3.141592653589793 rad @@ -171603,28 +171624,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22050 + - uid: 21973 components: - type: Transform pos: -31.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22051 + - uid: 21974 components: - type: Transform pos: -32.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22052 + - uid: 21975 components: - type: Transform pos: -29.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22053 + - uid: 21976 components: - type: Transform rot: 1.5707963267948966 rad @@ -171632,7 +171653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22054 + - uid: 21977 components: - type: Transform rot: 1.5707963267948966 rad @@ -171640,14 +171661,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22055 + - uid: 21978 components: - type: Transform pos: -28.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22056 + - uid: 21979 components: - type: Transform rot: 1.5707963267948966 rad @@ -171655,7 +171676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22057 + - uid: 21980 components: - type: Transform rot: -1.5707963267948966 rad @@ -171663,7 +171684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22058 + - uid: 21981 components: - type: Transform rot: 3.141592653589793 rad @@ -171671,7 +171692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22059 + - uid: 21982 components: - type: Transform rot: 3.141592653589793 rad @@ -171679,7 +171700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22060 + - uid: 21983 components: - type: Transform rot: -1.5707963267948966 rad @@ -171687,7 +171708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22061 + - uid: 21984 components: - type: Transform rot: -1.5707963267948966 rad @@ -171695,7 +171716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22062 + - uid: 21985 components: - type: Transform rot: -1.5707963267948966 rad @@ -171703,7 +171724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22063 + - uid: 21986 components: - type: Transform rot: 1.5707963267948966 rad @@ -171711,7 +171732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22064 + - uid: 21987 components: - type: Transform rot: 1.5707963267948966 rad @@ -171719,7 +171740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22065 + - uid: 21988 components: - type: Transform rot: 1.5707963267948966 rad @@ -171727,7 +171748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22066 + - uid: 21989 components: - type: Transform rot: -1.5707963267948966 rad @@ -171735,7 +171756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22067 + - uid: 21990 components: - type: Transform rot: -1.5707963267948966 rad @@ -171743,77 +171764,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22068 + - uid: 21991 components: - type: Transform pos: -12.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22069 + - uid: 21992 components: - type: Transform pos: -13.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22070 + - uid: 21993 components: - type: Transform pos: -9.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22071 + - uid: 21994 components: - type: Transform pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22072 + - uid: 21995 components: - type: Transform pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22073 + - uid: 21996 components: - type: Transform pos: -1.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22074 + - uid: 21997 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22075 + - uid: 21998 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22076 + - uid: 21999 components: - type: Transform pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22077 + - uid: 22000 components: - type: Transform pos: 4.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22078 + - uid: 22001 components: - type: Transform rot: 3.141592653589793 rad @@ -171821,7 +171842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22079 + - uid: 22002 components: - type: Transform rot: 3.141592653589793 rad @@ -171829,7 +171850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22080 + - uid: 22003 components: - type: Transform rot: 3.141592653589793 rad @@ -171837,7 +171858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22081 + - uid: 22004 components: - type: Transform rot: 1.5707963267948966 rad @@ -171845,7 +171866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22082 + - uid: 22005 components: - type: Transform rot: 1.5707963267948966 rad @@ -171853,7 +171874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22083 + - uid: 22006 components: - type: Transform rot: -1.5707963267948966 rad @@ -171861,28 +171882,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22084 + - uid: 22007 components: - type: Transform pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22085 + - uid: 22008 components: - type: Transform pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22086 + - uid: 22009 components: - type: Transform pos: -1.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22087 + - uid: 22010 components: - type: Transform rot: 3.141592653589793 rad @@ -171890,14 +171911,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22088 + - uid: 22011 components: - type: Transform pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22089 + - uid: 22012 components: - type: Transform rot: 3.141592653589793 rad @@ -171905,28 +171926,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22090 + - uid: 22013 components: - type: Transform pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22091 + - uid: 22014 components: - type: Transform pos: -13.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22092 + - uid: 22015 components: - type: Transform pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22093 + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad @@ -171934,7 +171955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22094 + - uid: 22017 components: - type: Transform rot: -1.5707963267948966 rad @@ -171942,7 +171963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22095 + - uid: 22018 components: - type: Transform rot: 1.5707963267948966 rad @@ -171950,7 +171971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22096 + - uid: 22019 components: - type: Transform rot: 1.5707963267948966 rad @@ -171958,7 +171979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22097 + - uid: 22020 components: - type: Transform rot: 1.5707963267948966 rad @@ -171966,14 +171987,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22098 + - uid: 22021 components: - type: Transform pos: 22.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22099 + - uid: 22022 components: - type: Transform rot: 3.141592653589793 rad @@ -171981,14 +172002,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22100 + - uid: 22023 components: - type: Transform pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22101 + - uid: 22024 components: - type: Transform rot: -1.5707963267948966 rad @@ -171996,7 +172017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22102 + - uid: 22025 components: - type: Transform rot: -1.5707963267948966 rad @@ -172004,7 +172025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22103 + - uid: 22026 components: - type: Transform rot: -1.5707963267948966 rad @@ -172012,21 +172033,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22104 + - uid: 22027 components: - type: Transform pos: 10.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22105 + - uid: 22028 components: - type: Transform pos: 8.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22106 + - uid: 22029 components: - type: Transform rot: 1.5707963267948966 rad @@ -172034,7 +172055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22107 + - uid: 22030 components: - type: Transform rot: 1.5707963267948966 rad @@ -172042,7 +172063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22108 + - uid: 22031 components: - type: Transform rot: 3.141592653589793 rad @@ -172050,14 +172071,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22109 + - uid: 22032 components: - type: Transform pos: -9.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22110 + - uid: 22033 components: - type: Transform rot: -1.5707963267948966 rad @@ -172065,7 +172086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22111 + - uid: 22034 components: - type: Transform rot: 1.5707963267948966 rad @@ -172073,7 +172094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22112 + - uid: 22035 components: - type: Transform rot: 1.5707963267948966 rad @@ -172081,7 +172102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22113 + - uid: 22036 components: - type: Transform rot: 3.141592653589793 rad @@ -172089,14 +172110,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22114 + - uid: 22037 components: - type: Transform pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22115 + - uid: 22038 components: - type: Transform rot: 3.141592653589793 rad @@ -172104,7 +172125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22116 + - uid: 22039 components: - type: Transform rot: 3.141592653589793 rad @@ -172112,7 +172133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22117 + - uid: 22040 components: - type: Transform rot: 3.141592653589793 rad @@ -172120,7 +172141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22118 + - uid: 22041 components: - type: Transform rot: 1.5707963267948966 rad @@ -172128,7 +172149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22119 + - uid: 22042 components: - type: Transform rot: -1.5707963267948966 rad @@ -172136,7 +172157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22120 + - uid: 22043 components: - type: Transform rot: -1.5707963267948966 rad @@ -172144,7 +172165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22121 + - uid: 22044 components: - type: Transform rot: 1.5707963267948966 rad @@ -172152,7 +172173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22122 + - uid: 22045 components: - type: Transform rot: 1.5707963267948966 rad @@ -172160,7 +172181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22123 + - uid: 22046 components: - type: Transform rot: 1.5707963267948966 rad @@ -172168,7 +172189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22124 + - uid: 22047 components: - type: Transform rot: 1.5707963267948966 rad @@ -172176,7 +172197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22125 + - uid: 22048 components: - type: Transform rot: 1.5707963267948966 rad @@ -172184,7 +172205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22126 + - uid: 22049 components: - type: Transform rot: -1.5707963267948966 rad @@ -172192,7 +172213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22127 + - uid: 22050 components: - type: Transform rot: -1.5707963267948966 rad @@ -172200,21 +172221,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22128 + - uid: 22051 components: - type: Transform pos: -30.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22129 + - uid: 22052 components: - type: Transform pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22130 + - uid: 22053 components: - type: Transform rot: 3.141592653589793 rad @@ -172222,7 +172243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22131 + - uid: 22054 components: - type: Transform rot: 3.141592653589793 rad @@ -172230,14 +172251,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22132 + - uid: 22055 components: - type: Transform pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22133 + - uid: 22056 components: - type: Transform rot: 3.141592653589793 rad @@ -172245,7 +172266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22134 + - uid: 22057 components: - type: Transform rot: 1.5707963267948966 rad @@ -172253,7 +172274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22135 + - uid: 22058 components: - type: Transform rot: 1.5707963267948966 rad @@ -172261,7 +172282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22136 + - uid: 22059 components: - type: Transform rot: 3.141592653589793 rad @@ -172269,14 +172290,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22137 + - uid: 22060 components: - type: Transform pos: -7.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22138 + - uid: 22061 components: - type: Transform rot: -1.5707963267948966 rad @@ -172284,7 +172305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22139 + - uid: 22062 components: - type: Transform rot: 1.5707963267948966 rad @@ -172292,7 +172313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22140 + - uid: 22063 components: - type: Transform rot: 3.141592653589793 rad @@ -172300,7 +172321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22141 + - uid: 22064 components: - type: Transform rot: 1.5707963267948966 rad @@ -172308,14 +172329,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22142 + - uid: 22065 components: - type: Transform pos: -33.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22143 + - uid: 22066 components: - type: Transform rot: 3.141592653589793 rad @@ -172323,7 +172344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22144 + - uid: 22067 components: - type: Transform rot: 3.141592653589793 rad @@ -172331,7 +172352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22145 + - uid: 22068 components: - type: Transform rot: 1.5707963267948966 rad @@ -172339,7 +172360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22146 + - uid: 22069 components: - type: Transform rot: 1.5707963267948966 rad @@ -172347,7 +172368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22147 + - uid: 22070 components: - type: Transform rot: 1.5707963267948966 rad @@ -172355,7 +172376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22148 + - uid: 22071 components: - type: Transform rot: -1.5707963267948966 rad @@ -172363,14 +172384,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22149 + - uid: 22072 components: - type: Transform pos: -14.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22150 + - uid: 22073 components: - type: Transform rot: 3.141592653589793 rad @@ -172378,7 +172399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22151 + - uid: 22074 components: - type: Transform rot: 3.141592653589793 rad @@ -172386,7 +172407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22152 + - uid: 22075 components: - type: Transform rot: 3.141592653589793 rad @@ -172394,7 +172415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22153 + - uid: 22076 components: - type: Transform rot: -1.5707963267948966 rad @@ -172402,7 +172423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22154 + - uid: 22077 components: - type: Transform rot: 1.5707963267948966 rad @@ -172410,7 +172431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22155 + - uid: 22078 components: - type: Transform rot: -1.5707963267948966 rad @@ -172418,42 +172439,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22156 + - uid: 22079 components: - type: Transform pos: -5.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22157 + - uid: 22080 components: - type: Transform pos: -3.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22158 + - uid: 22081 components: - type: Transform pos: -17.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22159 + - uid: 22082 components: - type: Transform pos: -19.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22160 + - uid: 22083 components: - type: Transform pos: -15.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22161 + - uid: 22084 components: - type: Transform rot: 3.141592653589793 rad @@ -172461,7 +172482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22162 + - uid: 22085 components: - type: Transform rot: 3.141592653589793 rad @@ -172469,7 +172490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22163 + - uid: 22086 components: - type: Transform rot: 3.141592653589793 rad @@ -172477,7 +172498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22164 + - uid: 22087 components: - type: Transform rot: 3.141592653589793 rad @@ -172485,28 +172506,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22165 + - uid: 22088 components: - type: Transform pos: -1.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22166 + - uid: 22089 components: - type: Transform pos: -24.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22167 + - uid: 22090 components: - type: Transform pos: 6.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22168 + - uid: 22091 components: - type: Transform rot: 1.5707963267948966 rad @@ -172514,7 +172535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22169 + - uid: 22092 components: - type: Transform rot: 1.5707963267948966 rad @@ -172522,7 +172543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22170 + - uid: 22093 components: - type: Transform rot: 1.5707963267948966 rad @@ -172530,7 +172551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22171 + - uid: 22094 components: - type: Transform rot: 1.5707963267948966 rad @@ -172538,7 +172559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22172 + - uid: 22095 components: - type: Transform rot: 3.141592653589793 rad @@ -172546,7 +172567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22173 + - uid: 22096 components: - type: Transform rot: 1.5707963267948966 rad @@ -172554,7 +172575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22174 + - uid: 22097 components: - type: Transform rot: 1.5707963267948966 rad @@ -172562,14 +172583,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22175 + - uid: 22098 components: - type: Transform pos: 9.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22176 + - uid: 22099 components: - type: Transform rot: 3.141592653589793 rad @@ -172577,7 +172598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22177 + - uid: 22100 components: - type: Transform rot: 3.141592653589793 rad @@ -172585,7 +172606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22178 + - uid: 22101 components: - type: Transform rot: 1.5707963267948966 rad @@ -172593,7 +172614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22179 + - uid: 22102 components: - type: Transform rot: 3.141592653589793 rad @@ -172601,7 +172622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22180 + - uid: 22103 components: - type: Transform rot: 1.5707963267948966 rad @@ -172609,7 +172630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22181 + - uid: 22104 components: - type: Transform rot: 1.5707963267948966 rad @@ -172617,7 +172638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22182 + - uid: 22105 components: - type: Transform rot: -1.5707963267948966 rad @@ -172625,7 +172646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22183 + - uid: 22106 components: - type: Transform rot: -1.5707963267948966 rad @@ -172633,7 +172654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22184 + - uid: 22107 components: - type: Transform rot: 1.5707963267948966 rad @@ -172641,7 +172662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22185 + - uid: 22108 components: - type: Transform rot: -1.5707963267948966 rad @@ -172649,7 +172670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22186 + - uid: 22109 components: - type: Transform rot: 1.5707963267948966 rad @@ -172657,7 +172678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22187 + - uid: 22110 components: - type: Transform rot: -1.5707963267948966 rad @@ -172665,7 +172686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22188 + - uid: 22111 components: - type: Transform rot: 3.141592653589793 rad @@ -172673,7 +172694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22189 + - uid: 22112 components: - type: Transform rot: 1.5707963267948966 rad @@ -172681,14 +172702,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22190 + - uid: 22113 components: - type: Transform pos: 31.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22191 + - uid: 22114 components: - type: Transform rot: -1.5707963267948966 rad @@ -172696,7 +172717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22192 + - uid: 22115 components: - type: Transform rot: 3.141592653589793 rad @@ -172704,7 +172725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22193 + - uid: 22116 components: - type: Transform rot: 1.5707963267948966 rad @@ -172712,7 +172733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22194 + - uid: 22117 components: - type: Transform rot: -1.5707963267948966 rad @@ -172720,7 +172741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22195 + - uid: 22118 components: - type: Transform rot: 3.141592653589793 rad @@ -172728,7 +172749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22196 + - uid: 22119 components: - type: Transform rot: -1.5707963267948966 rad @@ -172736,7 +172757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22197 + - uid: 22120 components: - type: Transform rot: -1.5707963267948966 rad @@ -172744,7 +172765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22198 + - uid: 22121 components: - type: Transform rot: 1.5707963267948966 rad @@ -172752,7 +172773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22199 + - uid: 22122 components: - type: Transform rot: 3.141592653589793 rad @@ -172760,7 +172781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22200 + - uid: 22123 components: - type: Transform rot: -1.5707963267948966 rad @@ -172768,7 +172789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22201 + - uid: 22124 components: - type: Transform rot: -1.5707963267948966 rad @@ -172776,7 +172797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22202 + - uid: 22125 components: - type: Transform rot: 3.141592653589793 rad @@ -172784,7 +172805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22203 + - uid: 22126 components: - type: Transform rot: 1.5707963267948966 rad @@ -172792,21 +172813,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22204 + - uid: 22127 components: - type: Transform pos: 52.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22205 + - uid: 22128 components: - type: Transform pos: 46.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22206 + - uid: 22129 components: - type: Transform rot: -1.5707963267948966 rad @@ -172814,35 +172835,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22207 + - uid: 22130 components: - type: Transform pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22208 + - uid: 22131 components: - type: Transform pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22209 + - uid: 22132 components: - type: Transform pos: 61.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22210 + - uid: 22133 components: - type: Transform pos: 61.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22211 + - uid: 22134 components: - type: Transform rot: 1.5707963267948966 rad @@ -172850,7 +172871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22212 + - uid: 22135 components: - type: Transform rot: -1.5707963267948966 rad @@ -172858,14 +172879,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22213 + - uid: 22136 components: - type: Transform pos: 83.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22214 + - uid: 22137 components: - type: Transform rot: 3.141592653589793 rad @@ -172873,7 +172894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22215 + - uid: 22138 components: - type: Transform rot: 1.5707963267948966 rad @@ -172881,7 +172902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22216 + - uid: 22139 components: - type: Transform rot: -1.5707963267948966 rad @@ -172889,7 +172910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22217 + - uid: 22140 components: - type: Transform rot: -1.5707963267948966 rad @@ -172897,49 +172918,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22218 + - uid: 22141 components: - type: Transform pos: 57.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22219 + - uid: 22142 components: - type: Transform pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22220 + - uid: 22143 components: - type: Transform pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22221 + - uid: 22144 components: - type: Transform pos: 34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22222 + - uid: 22145 components: - type: Transform pos: 44.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22223 + - uid: 22146 components: - type: Transform pos: 48.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22224 + - uid: 22147 components: - type: Transform rot: 3.141592653589793 rad @@ -172947,7 +172968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22225 + - uid: 22148 components: - type: Transform rot: 3.141592653589793 rad @@ -172955,7 +172976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22226 + - uid: 22149 components: - type: Transform rot: 3.141592653589793 rad @@ -172963,14 +172984,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22227 + - uid: 22150 components: - type: Transform pos: 57.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22228 + - uid: 22151 components: - type: Transform rot: 1.5707963267948966 rad @@ -172978,7 +172999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22229 + - uid: 22152 components: - type: Transform rot: -1.5707963267948966 rad @@ -172986,7 +173007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22230 + - uid: 22153 components: - type: Transform rot: -1.5707963267948966 rad @@ -172994,7 +173015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22231 + - uid: 22154 components: - type: Transform rot: 1.5707963267948966 rad @@ -173002,7 +173023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22232 + - uid: 22155 components: - type: Transform rot: -1.5707963267948966 rad @@ -173010,7 +173031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22233 + - uid: 22156 components: - type: Transform rot: 1.5707963267948966 rad @@ -173018,7 +173039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22234 + - uid: 22157 components: - type: Transform rot: -1.5707963267948966 rad @@ -173026,21 +173047,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22235 + - uid: 22158 components: - type: Transform pos: 12.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22236 + - uid: 22159 components: - type: Transform pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22237 + - uid: 22160 components: - type: Transform rot: 1.5707963267948966 rad @@ -173048,7 +173069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22238 + - uid: 22161 components: - type: Transform rot: -1.5707963267948966 rad @@ -173056,7 +173077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22239 + - uid: 22162 components: - type: Transform rot: 1.5707963267948966 rad @@ -173064,7 +173085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22240 + - uid: 22163 components: - type: Transform rot: -1.5707963267948966 rad @@ -173072,7 +173093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22241 + - uid: 22164 components: - type: Transform rot: 3.141592653589793 rad @@ -173080,7 +173101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22242 + - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad @@ -173088,7 +173109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22243 + - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad @@ -173096,7 +173117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22244 + - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad @@ -173104,7 +173125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22245 + - uid: 22168 components: - type: Transform rot: 1.5707963267948966 rad @@ -173112,14 +173133,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22246 + - uid: 22169 components: - type: Transform pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22247 + - uid: 22170 components: - type: Transform rot: 3.141592653589793 rad @@ -173127,7 +173148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22248 + - uid: 22171 components: - type: Transform rot: 3.141592653589793 rad @@ -173135,7 +173156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22249 + - uid: 22172 components: - type: Transform rot: -1.5707963267948966 rad @@ -173143,7 +173164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22250 + - uid: 22173 components: - type: Transform rot: 3.141592653589793 rad @@ -173151,7 +173172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22251 + - uid: 22174 components: - type: Transform rot: 3.141592653589793 rad @@ -173159,7 +173180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22252 + - uid: 22175 components: - type: Transform rot: 3.141592653589793 rad @@ -173167,14 +173188,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22253 + - uid: 22176 components: - type: Transform pos: 26.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22254 + - uid: 22177 components: - type: Transform rot: 1.5707963267948966 rad @@ -173182,7 +173203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22255 + - uid: 22178 components: - type: Transform rot: 1.5707963267948966 rad @@ -173190,7 +173211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22256 + - uid: 22179 components: - type: Transform rot: -1.5707963267948966 rad @@ -173198,7 +173219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22257 + - uid: 22180 components: - type: Transform rot: 1.5707963267948966 rad @@ -173206,14 +173227,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22258 + - uid: 22181 components: - type: Transform pos: -14.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22259 + - uid: 22182 components: - type: Transform rot: -1.5707963267948966 rad @@ -173221,7 +173242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22260 + - uid: 22183 components: - type: Transform rot: 1.5707963267948966 rad @@ -173229,21 +173250,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22261 + - uid: 22184 components: - type: Transform pos: -7.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22262 + - uid: 22185 components: - type: Transform pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22263 + - uid: 22186 components: - type: Transform rot: -1.5707963267948966 rad @@ -173251,7 +173272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22264 + - uid: 22187 components: - type: Transform rot: 1.5707963267948966 rad @@ -173259,7 +173280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22265 + - uid: 22188 components: - type: Transform rot: -1.5707963267948966 rad @@ -173267,7 +173288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22266 + - uid: 22189 components: - type: Transform rot: -1.5707963267948966 rad @@ -173275,7 +173296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22267 + - uid: 22190 components: - type: Transform rot: 1.5707963267948966 rad @@ -173283,7 +173304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22268 + - uid: 22191 components: - type: Transform rot: -1.5707963267948966 rad @@ -173291,14 +173312,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22269 + - uid: 22192 components: - type: Transform pos: -16.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22270 + - uid: 22193 components: - type: Transform rot: 1.5707963267948966 rad @@ -173306,14 +173327,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22271 + - uid: 22194 components: - type: Transform pos: -19.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22272 + - uid: 22195 components: - type: Transform rot: 3.141592653589793 rad @@ -173321,7 +173342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22273 + - uid: 22196 components: - type: Transform rot: 3.141592653589793 rad @@ -173329,7 +173350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22274 + - uid: 22197 components: - type: Transform rot: 1.5707963267948966 rad @@ -173337,7 +173358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22275 + - uid: 22198 components: - type: Transform rot: -1.5707963267948966 rad @@ -173345,7 +173366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22276 + - uid: 22199 components: - type: Transform rot: -1.5707963267948966 rad @@ -173353,7 +173374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22277 + - uid: 22200 components: - type: Transform rot: 1.5707963267948966 rad @@ -173361,7 +173382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22278 + - uid: 22201 components: - type: Transform rot: -1.5707963267948966 rad @@ -173369,7 +173390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22279 + - uid: 22202 components: - type: Transform rot: 3.141592653589793 rad @@ -173377,7 +173398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22280 + - uid: 22203 components: - type: Transform rot: 3.141592653589793 rad @@ -173385,7 +173406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22281 + - uid: 22204 components: - type: Transform rot: 3.141592653589793 rad @@ -173393,7 +173414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22282 + - uid: 22205 components: - type: Transform rot: -1.5707963267948966 rad @@ -173401,7 +173422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22283 + - uid: 22206 components: - type: Transform rot: 1.5707963267948966 rad @@ -173409,7 +173430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22284 + - uid: 22207 components: - type: Transform rot: 1.5707963267948966 rad @@ -173417,7 +173438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22285 + - uid: 22208 components: - type: Transform rot: -1.5707963267948966 rad @@ -173425,7 +173446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22286 + - uid: 22209 components: - type: Transform rot: 1.5707963267948966 rad @@ -173433,7 +173454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22287 + - uid: 22210 components: - type: Transform rot: 1.5707963267948966 rad @@ -173441,7 +173462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22288 + - uid: 22211 components: - type: Transform rot: -1.5707963267948966 rad @@ -173449,7 +173470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22289 + - uid: 22212 components: - type: Transform rot: -1.5707963267948966 rad @@ -173457,7 +173478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22290 + - uid: 22213 components: - type: Transform rot: 1.5707963267948966 rad @@ -173465,7 +173486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22291 + - uid: 22214 components: - type: Transform rot: -1.5707963267948966 rad @@ -173473,7 +173494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22292 + - uid: 22215 components: - type: Transform rot: 1.5707963267948966 rad @@ -173481,21 +173502,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22293 + - uid: 22216 components: - type: Transform pos: -6.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22294 + - uid: 22217 components: - type: Transform pos: -1.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22295 + - uid: 22218 components: - type: Transform rot: 3.141592653589793 rad @@ -173503,7 +173524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22296 + - uid: 22219 components: - type: Transform rot: 3.141592653589793 rad @@ -173511,21 +173532,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22297 + - uid: 22220 components: - type: Transform pos: -16.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22298 + - uid: 22221 components: - type: Transform pos: -22.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22299 + - uid: 22222 components: - type: Transform rot: -1.5707963267948966 rad @@ -173533,7 +173554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22300 + - uid: 22223 components: - type: Transform rot: 3.141592653589793 rad @@ -173541,7 +173562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22301 + - uid: 22224 components: - type: Transform rot: -1.5707963267948966 rad @@ -173549,7 +173570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22302 + - uid: 22225 components: - type: Transform rot: 1.5707963267948966 rad @@ -173557,7 +173578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22303 + - uid: 22226 components: - type: Transform rot: -1.5707963267948966 rad @@ -173565,7 +173586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22304 + - uid: 22227 components: - type: Transform rot: 1.5707963267948966 rad @@ -173573,7 +173594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22305 + - uid: 22228 components: - type: Transform rot: 3.141592653589793 rad @@ -173581,7 +173602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22306 + - uid: 22229 components: - type: Transform rot: 3.141592653589793 rad @@ -173589,28 +173610,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22307 + - uid: 22230 components: - type: Transform pos: -20.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22308 + - uid: 22231 components: - type: Transform pos: -16.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22309 + - uid: 22232 components: - type: Transform pos: 1.5,56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22310 + - uid: 22233 components: - type: Transform rot: 1.5707963267948966 rad @@ -173618,7 +173639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22311 + - uid: 22234 components: - type: Transform rot: 3.141592653589793 rad @@ -173626,21 +173647,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22312 + - uid: 22235 components: - type: Transform pos: 85.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22313 + - uid: 22236 components: - type: Transform pos: 89.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22314 + - uid: 22237 components: - type: Transform rot: 3.141592653589793 rad @@ -173648,298 +173669,298 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22315 + - uid: 22238 components: - type: Transform pos: 22.5,-38.5 parent: 2 - - uid: 22316 + - uid: 22239 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 2 - - uid: 22317 + - uid: 22240 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-38.5 parent: 2 - - uid: 22318 + - uid: 22241 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-40.5 parent: 2 - - uid: 39377 + - uid: 39204 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39378 + - uid: 39205 components: - type: Transform pos: -8.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39379 + - uid: 39206 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39380 + - uid: 39207 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39381 + - uid: 39208 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39382 + - uid: 39209 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39383 + - uid: 39210 components: - type: Transform pos: -2.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39384 + - uid: 39211 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39385 + - uid: 39212 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39386 + - uid: 39213 components: - type: Transform pos: 3.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39387 + - uid: 39214 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39388 + - uid: 39215 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPort entities: - - uid: 22319 + - uid: 22242 components: - type: Transform pos: -62.5,61.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22320 + - uid: 22243 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,17.5 parent: 2 - - uid: 22321 + - uid: 22244 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,17.5 parent: 2 - - uid: 22322 + - uid: 22245 components: - type: Transform pos: 78.5,23.5 parent: 2 - - uid: 22323 + - uid: 22246 components: - type: Transform pos: 77.5,23.5 parent: 2 - - uid: 22324 + - uid: 22247 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-45.5 parent: 2 - - uid: 22325 + - uid: 22248 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 - - uid: 22326 + - uid: 22249 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 22327 + - uid: 22250 components: - type: Transform pos: -37.5,-50.5 parent: 2 - - uid: 22328 + - uid: 22251 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-43.5 parent: 2 - - uid: 22329 + - uid: 22252 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 - - uid: 22330 + - uid: 22253 components: - type: Transform pos: -26.5,-53.5 parent: 2 - - uid: 22331 + - uid: 22254 components: - type: Transform pos: -27.5,-53.5 parent: 2 - - uid: 22332 + - uid: 22255 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-53.5 parent: 2 - - uid: 22333 + - uid: 22256 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 22334 + - uid: 22257 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-54.5 parent: 2 - - uid: 22335 + - uid: 22258 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-32.5 parent: 2 - - uid: 22336 + - uid: 22259 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 - - uid: 22337 + - uid: 22260 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 - - uid: 22338 + - uid: 22261 components: - type: Transform pos: -22.5,-51.5 parent: 2 - - uid: 22339 + - uid: 22262 components: - type: Transform pos: -38.5,-50.5 parent: 2 - - uid: 22340 + - uid: 22263 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-53.5 parent: 2 - - uid: 22341 + - uid: 22264 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-53.5 parent: 2 - - uid: 22342 + - uid: 22265 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-52.5 parent: 2 - - uid: 22343 + - uid: 22266 components: - type: Transform pos: -28.5,-53.5 parent: 2 - - uid: 22344 + - uid: 22267 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 - - uid: 22345 + - uid: 22268 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-40.5 parent: 2 - - uid: 39389 + - uid: 39216 components: - type: Transform pos: -18.5,36.5 - parent: 38584 + parent: 38411 - proto: GasPressurePump entities: - - uid: 22346 + - uid: 22269 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-39.5 parent: 2 - - uid: 22347 + - uid: 22270 components: - type: Transform pos: -61.5,59.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22348 + - uid: 22271 components: - type: Transform rot: -1.5707963267948966 rad @@ -173947,7 +173968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22349 + - uid: 22272 components: - type: Transform rot: 1.5707963267948966 rad @@ -173955,7 +173976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22350 + - uid: 22273 components: - type: Transform rot: -1.5707963267948966 rad @@ -173963,25 +173984,25 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 420 - - uid: 22351 + - uid: 22274 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-43.5 parent: 2 - - uid: 22352 + - uid: 22275 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-40.5 parent: 2 - - uid: 22353 + - uid: 22276 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-45.5 parent: 2 - - uid: 22354 + - uid: 22277 components: - type: Transform rot: 3.141592653589793 rad @@ -173989,25 +174010,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22355 + - uid: 22278 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-52.5 parent: 2 - - uid: 22356 + - uid: 22279 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-52.5 parent: 2 - - uid: 22357 + - uid: 22280 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 - - uid: 22358 + - uid: 22281 components: - type: Transform rot: -1.5707963267948966 rad @@ -174015,7 +174036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22359 + - uid: 22282 components: - type: Transform rot: -1.5707963267948966 rad @@ -174023,7 +174044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22360 + - uid: 22283 components: - type: Transform rot: -1.5707963267948966 rad @@ -174031,7 +174052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22361 + - uid: 22284 components: - type: Transform rot: -1.5707963267948966 rad @@ -174039,7 +174060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22362 + - uid: 22285 components: - type: Transform rot: -1.5707963267948966 rad @@ -174047,7 +174068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22363 + - uid: 22286 components: - type: Transform rot: -1.5707963267948966 rad @@ -174055,7 +174076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22364 + - uid: 22287 components: - type: Transform rot: 1.5707963267948966 rad @@ -174063,7 +174084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22365 + - uid: 22288 components: - type: Transform rot: 1.5707963267948966 rad @@ -174071,7 +174092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22366 + - uid: 22289 components: - type: Transform rot: 1.5707963267948966 rad @@ -174079,7 +174100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22367 + - uid: 22290 components: - type: Transform rot: 1.5707963267948966 rad @@ -174087,7 +174108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22368 + - uid: 22291 components: - type: Transform rot: 1.5707963267948966 rad @@ -174095,7 +174116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 22369 + - uid: 22292 components: - type: Transform rot: 1.5707963267948966 rad @@ -174103,7 +174124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22370 + - uid: 22293 components: - type: Transform rot: 1.5707963267948966 rad @@ -174111,7 +174132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 22371 + - uid: 22294 components: - type: Transform rot: 1.5707963267948966 rad @@ -174119,84 +174140,84 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 39390 + - uid: 39217 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39391 + - uid: 39218 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,2.5 - parent: 38584 - - uid: 39392 + parent: 38411 + - uid: 39219 components: - type: Transform pos: -18.5,35.5 - parent: 38584 - - uid: 39393 + parent: 38411 + - uid: 39220 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,4.5 - parent: 38584 + parent: 38411 - proto: GasThermoMachineFreezer entities: - - uid: 22372 + - uid: 22295 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,21.5 parent: 2 - - uid: 22373 + - uid: 22296 components: - type: Transform pos: -58.5,37.5 parent: 2 - - uid: 22374 + - uid: 22297 components: - type: Transform pos: -43.5,48.5 parent: 2 - - uid: 22375 + - uid: 22298 components: - type: Transform pos: -18.5,-49.5 parent: 2 - - uid: 22376 + - uid: 22299 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-54.5 parent: 2 - - uid: 22377 + - uid: 22300 components: - type: Transform pos: 24.5,-37.5 parent: 2 - - uid: 22378 + - uid: 22301 components: - type: Transform pos: -29.5,-25.5 parent: 2 - - uid: 22379 + - uid: 22302 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-54.5 parent: 2 - - uid: 22380 + - uid: 22303 components: - type: Transform pos: -58.5,36.5 parent: 2 - proto: GasThermoMachineHeater entities: - - uid: 22381 + - uid: 22304 components: - type: Transform pos: -61.5,61.5 @@ -174206,30 +174227,30 @@ entities: - 58 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22382 + - uid: 22305 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 22383 + - uid: 22306 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-54.5 parent: 2 - - uid: 22384 + - uid: 22307 components: - type: Transform pos: -58.5,38.5 parent: 2 - - uid: 22385 + - uid: 22308 components: - type: Transform pos: -58.5,35.5 parent: 2 - proto: GasValve entities: - - uid: 22386 + - uid: 22309 components: - type: Transform rot: -1.5707963267948966 rad @@ -174239,14 +174260,14 @@ entities: color: '#FF0000FF' - proto: GasVentPump entities: - - uid: 22387 + - uid: 22310 components: - type: Transform pos: 33.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22388 + - uid: 22311 components: - type: Transform rot: 1.5707963267948966 rad @@ -174254,7 +174275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22389 + - uid: 22312 components: - type: Transform rot: 3.141592653589793 rad @@ -174265,7 +174286,7 @@ entities: - 75 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22390 + - uid: 22313 components: - type: Transform pos: -16.5,38.5 @@ -174275,7 +174296,7 @@ entities: - 75 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22391 + - uid: 22314 components: - type: Transform rot: -1.5707963267948966 rad @@ -174286,7 +174307,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22392 + - uid: 22315 components: - type: Transform rot: 3.141592653589793 rad @@ -174297,7 +174318,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22393 + - uid: 22316 components: - type: Transform rot: 1.5707963267948966 rad @@ -174308,7 +174329,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22394 + - uid: 22317 components: - type: Transform rot: 1.5707963267948966 rad @@ -174320,7 +174341,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22395 + - uid: 22318 components: - type: Transform rot: 1.5707963267948966 rad @@ -174331,7 +174352,7 @@ entities: - 72 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22396 + - uid: 22319 components: - type: Transform rot: -1.5707963267948966 rad @@ -174342,7 +174363,7 @@ entities: - 88 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22397 + - uid: 22320 components: - type: Transform rot: 1.5707963267948966 rad @@ -174353,7 +174374,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22398 + - uid: 22321 components: - type: Transform rot: 1.5707963267948966 rad @@ -174364,7 +174385,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22399 + - uid: 22322 components: - type: Transform pos: 92.5,19.5 @@ -174374,7 +174395,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22400 + - uid: 22323 components: - type: Transform rot: 3.141592653589793 rad @@ -174385,7 +174406,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22401 + - uid: 22324 components: - type: Transform rot: -1.5707963267948966 rad @@ -174396,7 +174417,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22402 + - uid: 22325 components: - type: Transform rot: 1.5707963267948966 rad @@ -174407,7 +174428,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22403 + - uid: 22326 components: - type: Transform rot: 1.5707963267948966 rad @@ -174418,7 +174439,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22404 + - uid: 22327 components: - type: Transform rot: -1.5707963267948966 rad @@ -174429,7 +174450,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22405 + - uid: 22328 components: - type: Transform rot: -1.5707963267948966 rad @@ -174440,7 +174461,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22406 + - uid: 22329 components: - type: Transform pos: -15.5,-64.5 @@ -174450,7 +174471,7 @@ entities: - 115 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22407 + - uid: 22330 components: - type: Transform rot: 1.5707963267948966 rad @@ -174461,7 +174482,7 @@ entities: - 115 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22408 + - uid: 22331 components: - type: Transform rot: 1.5707963267948966 rad @@ -174469,7 +174490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22409 + - uid: 22332 components: - type: Transform pos: -20.5,-79.5 @@ -174479,7 +174500,7 @@ entities: - 116 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22410 + - uid: 22333 components: - type: Transform rot: -1.5707963267948966 rad @@ -174490,7 +174511,7 @@ entities: - 116 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22411 + - uid: 22334 components: - type: Transform rot: 1.5707963267948966 rad @@ -174501,7 +174522,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22412 + - uid: 22335 components: - type: Transform rot: 1.5707963267948966 rad @@ -174512,7 +174533,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22413 + - uid: 22336 components: - type: Transform rot: 3.141592653589793 rad @@ -174523,7 +174544,7 @@ entities: - 87 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22414 + - uid: 22337 components: - type: Transform rot: 1.5707963267948966 rad @@ -174534,7 +174555,7 @@ entities: - 102 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22415 + - uid: 22338 components: - type: Transform pos: -5.5,-32.5 @@ -174544,7 +174565,7 @@ entities: - 102 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22416 + - uid: 22339 components: - type: Transform rot: 1.5707963267948966 rad @@ -174555,7 +174576,7 @@ entities: - 109 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22417 + - uid: 22340 components: - type: Transform rot: -1.5707963267948966 rad @@ -174566,7 +174587,7 @@ entities: - 110 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22418 + - uid: 22341 components: - type: Transform rot: -1.5707963267948966 rad @@ -174577,7 +174598,7 @@ entities: - 110 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22419 + - uid: 22342 components: - type: Transform rot: -1.5707963267948966 rad @@ -174588,7 +174609,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22420 + - uid: 22343 components: - type: Transform rot: 3.141592653589793 rad @@ -174599,7 +174620,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22421 + - uid: 22344 components: - type: Transform rot: 3.141592653589793 rad @@ -174610,7 +174631,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22422 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad @@ -174618,7 +174639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22423 + - uid: 22346 components: - type: Transform rot: -1.5707963267948966 rad @@ -174629,7 +174650,7 @@ entities: - 105 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22424 + - uid: 22347 components: - type: Transform rot: 1.5707963267948966 rad @@ -174640,7 +174661,7 @@ entities: - 106 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22425 + - uid: 22348 components: - type: Transform pos: -27.5,-44.5 @@ -174650,7 +174671,7 @@ entities: - 105 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22426 + - uid: 22349 components: - type: Transform rot: 3.141592653589793 rad @@ -174661,7 +174682,7 @@ entities: - 111 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22427 + - uid: 22350 components: - type: Transform rot: 3.141592653589793 rad @@ -174672,7 +174693,7 @@ entities: - 117 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22428 + - uid: 22351 components: - type: Transform rot: 1.5707963267948966 rad @@ -174680,7 +174701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22429 + - uid: 22352 components: - type: Transform pos: 5.5,-34.5 @@ -174690,7 +174711,7 @@ entities: - 117 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22430 + - uid: 22353 components: - type: Transform pos: 12.5,-37.5 @@ -174700,7 +174721,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22431 + - uid: 22354 components: - type: Transform pos: 7.5,-44.5 @@ -174710,7 +174731,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22432 + - uid: 22355 components: - type: Transform rot: 3.141592653589793 rad @@ -174721,7 +174742,7 @@ entities: - 121 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22433 + - uid: 22356 components: - type: Transform rot: 1.5707963267948966 rad @@ -174732,7 +174753,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22434 + - uid: 22357 components: - type: Transform rot: -1.5707963267948966 rad @@ -174743,7 +174764,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22435 + - uid: 22358 components: - type: Transform rot: 3.141592653589793 rad @@ -174754,7 +174775,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22436 + - uid: 22359 components: - type: Transform pos: 20.5,-34.5 @@ -174764,7 +174785,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22437 + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad @@ -174775,7 +174796,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22438 + - uid: 22361 components: - type: Transform rot: -1.5707963267948966 rad @@ -174786,7 +174807,7 @@ entities: - 39 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22439 + - uid: 22362 components: - type: Transform rot: -1.5707963267948966 rad @@ -174797,7 +174818,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22440 + - uid: 22363 components: - type: Transform pos: 29.5,-30.5 @@ -174807,7 +174828,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22441 + - uid: 22364 components: - type: Transform pos: 36.5,-29.5 @@ -174817,7 +174838,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22442 + - uid: 22365 components: - type: Transform pos: 8.5,-15.5 @@ -174827,7 +174848,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22443 + - uid: 22366 components: - type: Transform pos: 13.5,-14.5 @@ -174837,7 +174858,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22444 + - uid: 22367 components: - type: Transform rot: 1.5707963267948966 rad @@ -174848,7 +174869,7 @@ entities: - 84 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22445 + - uid: 22368 components: - type: Transform pos: 28.5,-1.5 @@ -174858,7 +174879,7 @@ entities: - 84 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22446 + - uid: 22369 components: - type: Transform rot: -1.5707963267948966 rad @@ -174869,7 +174890,7 @@ entities: - 118 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22447 + - uid: 22370 components: - type: Transform rot: 3.141592653589793 rad @@ -174880,7 +174901,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22448 + - uid: 22371 components: - type: Transform rot: 3.141592653589793 rad @@ -174891,7 +174912,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22449 + - uid: 22372 components: - type: Transform rot: 1.5707963267948966 rad @@ -174902,7 +174923,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22450 + - uid: 22373 components: - type: Transform rot: -1.5707963267948966 rad @@ -174913,7 +174934,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22451 + - uid: 22374 components: - type: Transform rot: -1.5707963267948966 rad @@ -174924,7 +174945,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22452 + - uid: 22375 components: - type: Transform rot: 1.5707963267948966 rad @@ -174935,7 +174956,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22453 + - uid: 22376 components: - type: Transform rot: 3.141592653589793 rad @@ -174946,7 +174967,7 @@ entities: - 68 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22454 + - uid: 22377 components: - type: Transform rot: 3.141592653589793 rad @@ -174957,7 +174978,7 @@ entities: - 123 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22455 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad @@ -174968,7 +174989,7 @@ entities: - 124 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22456 + - uid: 22379 components: - type: Transform rot: 1.5707963267948966 rad @@ -174979,7 +175000,7 @@ entities: - 124 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22457 + - uid: 22380 components: - type: Transform rot: 1.5707963267948966 rad @@ -174990,7 +175011,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22458 + - uid: 22381 components: - type: Transform rot: 1.5707963267948966 rad @@ -175001,7 +175022,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22459 + - uid: 22382 components: - type: Transform pos: -14.5,9.5 @@ -175011,7 +175032,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22460 + - uid: 22383 components: - type: Transform rot: 1.5707963267948966 rad @@ -175019,7 +175040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22461 + - uid: 22384 components: - type: Transform rot: -1.5707963267948966 rad @@ -175030,7 +175051,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22462 + - uid: 22385 components: - type: Transform rot: -1.5707963267948966 rad @@ -175041,7 +175062,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22463 + - uid: 22386 components: - type: Transform rot: -1.5707963267948966 rad @@ -175052,7 +175073,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22464 + - uid: 22387 components: - type: Transform pos: -11.5,15.5 @@ -175062,7 +175083,7 @@ entities: - 52 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22465 + - uid: 22388 components: - type: Transform rot: -1.5707963267948966 rad @@ -175073,7 +175094,7 @@ entities: - 67 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22466 + - uid: 22389 components: - type: Transform rot: -1.5707963267948966 rad @@ -175084,7 +175105,7 @@ entities: - 67 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22467 + - uid: 22390 components: - type: Transform rot: 3.141592653589793 rad @@ -175095,7 +175116,7 @@ entities: - 99 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22468 + - uid: 22391 components: - type: Transform pos: 46.5,-15.5 @@ -175105,7 +175126,7 @@ entities: - 100 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22469 + - uid: 22392 components: - type: Transform pos: 57.5,-15.5 @@ -175115,7 +175136,7 @@ entities: - 101 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22470 + - uid: 22393 components: - type: Transform pos: 61.5,-15.5 @@ -175125,7 +175146,7 @@ entities: - 101 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22471 + - uid: 22394 components: - type: Transform pos: 22.5,9.5 @@ -175135,7 +175156,7 @@ entities: - 85 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22472 + - uid: 22395 components: - type: Transform pos: 29.5,10.5 @@ -175145,7 +175166,7 @@ entities: - 85 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22473 + - uid: 22396 components: - type: Transform pos: 37.5,9.5 @@ -175155,7 +175176,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22474 + - uid: 22397 components: - type: Transform pos: 36.5,11.5 @@ -175165,7 +175186,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22475 + - uid: 22398 components: - type: Transform rot: 1.5707963267948966 rad @@ -175176,7 +175197,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22476 + - uid: 22399 components: - type: Transform pos: 52.5,5.5 @@ -175186,7 +175207,7 @@ entities: - 88 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22477 + - uid: 22400 components: - type: Transform rot: -1.5707963267948966 rad @@ -175197,7 +175218,7 @@ entities: - 89 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22478 + - uid: 22401 components: - type: Transform rot: -1.5707963267948966 rad @@ -175208,7 +175229,7 @@ entities: - 89 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22479 + - uid: 22402 components: - type: Transform rot: 1.5707963267948966 rad @@ -175219,7 +175240,7 @@ entities: - 90 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22480 + - uid: 22403 components: - type: Transform rot: 3.141592653589793 rad @@ -175230,7 +175251,7 @@ entities: - 91 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22481 + - uid: 22404 components: - type: Transform pos: 64.5,26.5 @@ -175240,7 +175261,7 @@ entities: - 91 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22482 + - uid: 22405 components: - type: Transform rot: 3.141592653589793 rad @@ -175251,7 +175272,7 @@ entities: - 70 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22483 + - uid: 22406 components: - type: Transform rot: 1.5707963267948966 rad @@ -175262,7 +175283,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22484 + - uid: 22407 components: - type: Transform rot: 1.5707963267948966 rad @@ -175273,7 +175294,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22485 + - uid: 22408 components: - type: Transform rot: 1.5707963267948966 rad @@ -175284,7 +175305,7 @@ entities: - 94 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22486 + - uid: 22409 components: - type: Transform pos: 73.5,22.5 @@ -175294,7 +175315,7 @@ entities: - 94 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22487 + - uid: 22410 components: - type: Transform rot: -1.5707963267948966 rad @@ -175305,7 +175326,7 @@ entities: - 112 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22488 + - uid: 22411 components: - type: Transform pos: 8.5,23.5 @@ -175315,7 +175336,7 @@ entities: - 95 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22489 + - uid: 22412 components: - type: Transform rot: -1.5707963267948966 rad @@ -175326,7 +175347,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22490 + - uid: 22413 components: - type: Transform rot: -1.5707963267948966 rad @@ -175337,7 +175358,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22491 + - uid: 22414 components: - type: Transform rot: 1.5707963267948966 rad @@ -175348,7 +175369,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22492 + - uid: 22415 components: - type: Transform rot: -1.5707963267948966 rad @@ -175359,7 +175380,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22493 + - uid: 22416 components: - type: Transform rot: 3.141592653589793 rad @@ -175370,7 +175391,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22494 + - uid: 22417 components: - type: Transform rot: 3.141592653589793 rad @@ -175381,7 +175402,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22495 + - uid: 22418 components: - type: Transform pos: 35.5,35.5 @@ -175391,7 +175412,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22496 + - uid: 22419 components: - type: Transform rot: -1.5707963267948966 rad @@ -175402,7 +175423,7 @@ entities: - 82 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22497 + - uid: 22420 components: - type: Transform pos: 28.5,42.5 @@ -175412,7 +175433,7 @@ entities: - 82 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22498 + - uid: 22421 components: - type: Transform rot: -1.5707963267948966 rad @@ -175423,7 +175444,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22499 + - uid: 22422 components: - type: Transform pos: 24.5,50.5 @@ -175433,7 +175454,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22500 + - uid: 22423 components: - type: Transform pos: 31.5,50.5 @@ -175443,7 +175464,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22501 + - uid: 22424 components: - type: Transform rot: 1.5707963267948966 rad @@ -175454,7 +175475,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22502 + - uid: 22425 components: - type: Transform pos: -9.5,23.5 @@ -175464,7 +175485,7 @@ entities: - 95 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22503 + - uid: 22426 components: - type: Transform rot: -1.5707963267948966 rad @@ -175475,7 +175496,7 @@ entities: - 71 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22504 + - uid: 22427 components: - type: Transform pos: -29.5,42.5 @@ -175485,7 +175506,7 @@ entities: - 72 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22505 + - uid: 22428 components: - type: Transform rot: -1.5707963267948966 rad @@ -175496,7 +175517,7 @@ entities: - 54 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22506 + - uid: 22429 components: - type: Transform pos: -2.5,38.5 @@ -175506,7 +175527,7 @@ entities: - 54 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22507 + - uid: 22430 components: - type: Transform pos: -28.5,50.5 @@ -175516,7 +175537,7 @@ entities: - 73 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22508 + - uid: 22431 components: - type: Transform pos: -25.5,53.5 @@ -175526,7 +175547,7 @@ entities: - 73 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22509 + - uid: 22432 components: - type: Transform pos: -12.5,49.5 @@ -175536,7 +175557,7 @@ entities: - 77 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22510 + - uid: 22433 components: - type: Transform rot: 3.141592653589793 rad @@ -175547,7 +175568,7 @@ entities: - 125 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22511 + - uid: 22434 components: - type: Transform rot: 1.5707963267948966 rad @@ -175558,7 +175579,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22512 + - uid: 22435 components: - type: Transform rot: -1.5707963267948966 rad @@ -175569,7 +175590,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22513 + - uid: 22436 components: - type: Transform pos: 2.5,62.5 @@ -175579,7 +175600,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22514 + - uid: 22437 components: - type: Transform rot: 3.141592653589793 rad @@ -175590,7 +175611,7 @@ entities: - 77 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22515 + - uid: 22438 components: - type: Transform pos: -7.5,68.5 @@ -175600,7 +175621,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22516 + - uid: 22439 components: - type: Transform pos: -21.5,68.5 @@ -175610,7 +175631,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22517 + - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad @@ -175621,7 +175642,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22518 + - uid: 22441 components: - type: Transform rot: 1.5707963267948966 rad @@ -175632,7 +175653,7 @@ entities: - 126 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22519 + - uid: 22442 components: - type: Transform rot: 3.141592653589793 rad @@ -175643,7 +175664,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22520 + - uid: 22443 components: - type: Transform pos: 11.5,77.5 @@ -175653,7 +175674,7 @@ entities: - 78 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22521 + - uid: 22444 components: - type: Transform rot: 1.5707963267948966 rad @@ -175664,7 +175685,7 @@ entities: - 78 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22522 + - uid: 22445 components: - type: Transform pos: -25.5,9.5 @@ -175674,7 +175695,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22523 + - uid: 22446 components: - type: Transform rot: 3.141592653589793 rad @@ -175685,7 +175706,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22524 + - uid: 22447 components: - type: Transform pos: -35.5,12.5 @@ -175695,7 +175716,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22525 + - uid: 22448 components: - type: Transform rot: 1.5707963267948966 rad @@ -175706,7 +175727,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22526 + - uid: 22449 components: - type: Transform rot: 1.5707963267948966 rad @@ -175717,7 +175738,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22527 + - uid: 22450 components: - type: Transform rot: -1.5707963267948966 rad @@ -175728,7 +175749,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22528 + - uid: 22451 components: - type: Transform rot: 3.141592653589793 rad @@ -175739,7 +175760,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22529 + - uid: 22452 components: - type: Transform rot: -1.5707963267948966 rad @@ -175751,7 +175772,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22530 + - uid: 22453 components: - type: Transform rot: 1.5707963267948966 rad @@ -175763,7 +175784,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22531 + - uid: 22454 components: - type: Transform rot: 3.141592653589793 rad @@ -175774,7 +175795,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22532 + - uid: 22455 components: - type: Transform rot: 3.141592653589793 rad @@ -175785,7 +175806,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22533 + - uid: 22456 components: - type: Transform rot: 1.5707963267948966 rad @@ -175796,7 +175817,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22534 + - uid: 22457 components: - type: Transform rot: 1.5707963267948966 rad @@ -175807,7 +175828,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22535 + - uid: 22458 components: - type: Transform rot: 1.5707963267948966 rad @@ -175818,7 +175839,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22536 + - uid: 22459 components: - type: Transform rot: -1.5707963267948966 rad @@ -175829,7 +175850,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22537 + - uid: 22460 components: - type: Transform rot: 3.141592653589793 rad @@ -175840,7 +175861,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22538 + - uid: 22461 components: - type: Transform rot: 3.141592653589793 rad @@ -175851,7 +175872,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22539 + - uid: 22462 components: - type: Transform pos: -66.5,-5.5 @@ -175861,7 +175882,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22540 + - uid: 22463 components: - type: Transform rot: 1.5707963267948966 rad @@ -175872,7 +175893,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22541 + - uid: 22464 components: - type: Transform rot: 3.141592653589793 rad @@ -175883,7 +175904,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22542 + - uid: 22465 components: - type: Transform rot: -1.5707963267948966 rad @@ -175894,20 +175915,20 @@ entities: - 109 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22543 + - uid: 22466 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-30.5 parent: 2 - - uid: 22544 + - uid: 22467 components: - type: Transform pos: 39.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22545 + - uid: 22468 components: - type: Transform rot: -1.5707963267948966 rad @@ -175918,7 +175939,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22546 + - uid: 22469 components: - type: Transform rot: 3.141592653589793 rad @@ -175927,7 +175948,7 @@ entities: - type: DeviceNetwork deviceLists: - 110 - - uid: 22547 + - uid: 22470 components: - type: Transform rot: 3.141592653589793 rad @@ -175935,7 +175956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22548 + - uid: 22471 components: - type: Transform rot: 1.5707963267948966 rad @@ -175943,7 +175964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22549 + - uid: 22472 components: - type: Transform rot: 1.5707963267948966 rad @@ -175951,7 +175972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22550 + - uid: 22473 components: - type: Transform rot: -1.5707963267948966 rad @@ -175959,7 +175980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22551 + - uid: 22474 components: - type: Transform rot: -1.5707963267948966 rad @@ -175967,14 +175988,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22552 + - uid: 22475 components: - type: Transform pos: -119.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22553 + - uid: 22476 components: - type: Transform rot: 3.141592653589793 rad @@ -175982,7 +176003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22554 + - uid: 22477 components: - type: Transform rot: -1.5707963267948966 rad @@ -175990,7 +176011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22555 + - uid: 22478 components: - type: Transform rot: -1.5707963267948966 rad @@ -175998,14 +176019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22556 + - uid: 22479 components: - type: Transform pos: 72.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22557 + - uid: 22480 components: - type: Transform rot: 3.141592653589793 rad @@ -176016,7 +176037,7 @@ entities: - 52 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22558 + - uid: 22481 components: - type: Transform rot: 3.141592653589793 rad @@ -176024,7 +176045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22559 + - uid: 22482 components: - type: Transform rot: 3.141592653589793 rad @@ -176032,7 +176053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22560 + - uid: 22483 components: - type: Transform pos: 84.5,5.5 @@ -176042,7 +176063,7 @@ entities: - 34 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22561 + - uid: 22484 components: - type: Transform rot: 3.141592653589793 rad @@ -176053,7 +176074,7 @@ entities: - 96 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22562 + - uid: 22485 components: - type: Transform rot: -1.5707963267948966 rad @@ -176061,84 +176082,84 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39394 + - uid: 39221 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,31.5 - parent: 38584 - - uid: 39395 + parent: 38411 + - uid: 39222 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39396 + - uid: 39223 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39397 + - uid: 39224 components: - type: Transform pos: 0.5,2.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 + - 38412 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39398 + - uid: 39225 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39399 + - uid: 39226 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39400 + - uid: 39227 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,3.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 + - 38413 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39401 + - uid: 39228 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39402 + - uid: 39229 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 22563 + - uid: 22486 components: - type: Transform pos: 56.5,0.5 @@ -176148,7 +176169,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22564 + - uid: 22487 components: - type: Transform rot: 3.141592653589793 rad @@ -176156,7 +176177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22565 + - uid: 22488 components: - type: Transform rot: 1.5707963267948966 rad @@ -176167,7 +176188,7 @@ entities: - 94 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22566 + - uid: 22489 components: - type: Transform rot: 3.141592653589793 rad @@ -176178,7 +176199,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22567 + - uid: 22490 components: - type: Transform pos: -20.5,38.5 @@ -176188,7 +176209,7 @@ entities: - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22568 + - uid: 22491 components: - type: Transform rot: -1.5707963267948966 rad @@ -176199,7 +176220,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22569 + - uid: 22492 components: - type: Transform pos: -24.5,-44.5 @@ -176209,7 +176230,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22570 + - uid: 22493 components: - type: Transform pos: 3.5,17.5 @@ -176219,7 +176240,7 @@ entities: - 52 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22571 + - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad @@ -176230,7 +176251,7 @@ entities: - 66 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22572 + - uid: 22495 components: - type: Transform pos: -71.5,-5.5 @@ -176240,7 +176261,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22573 + - uid: 22496 components: - type: Transform rot: 3.141592653589793 rad @@ -176251,7 +176272,7 @@ entities: - 52 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22574 + - uid: 22497 components: - type: Transform rot: 1.5707963267948966 rad @@ -176262,7 +176283,7 @@ entities: - 117 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22575 + - uid: 22498 components: - type: Transform rot: -1.5707963267948966 rad @@ -176273,7 +176294,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22576 + - uid: 22499 components: - type: Transform rot: 3.141592653589793 rad @@ -176284,7 +176305,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22577 + - uid: 22500 components: - type: Transform rot: -1.5707963267948966 rad @@ -176295,7 +176316,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22578 + - uid: 22501 components: - type: Transform pos: -76.5,4.5 @@ -176305,7 +176326,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22579 + - uid: 22502 components: - type: Transform rot: 1.5707963267948966 rad @@ -176316,7 +176337,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22580 + - uid: 22503 components: - type: Transform rot: -1.5707963267948966 rad @@ -176327,7 +176348,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22581 + - uid: 22504 components: - type: Transform rot: 1.5707963267948966 rad @@ -176338,7 +176359,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22582 + - uid: 22505 components: - type: Transform rot: 3.141592653589793 rad @@ -176349,7 +176370,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22583 + - uid: 22506 components: - type: Transform pos: -57.5,-7.5 @@ -176359,7 +176380,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22584 + - uid: 22507 components: - type: Transform rot: 1.5707963267948966 rad @@ -176370,7 +176391,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22585 + - uid: 22508 components: - type: Transform rot: -1.5707963267948966 rad @@ -176381,7 +176402,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22586 + - uid: 22509 components: - type: Transform rot: -1.5707963267948966 rad @@ -176392,7 +176413,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22587 + - uid: 22510 components: - type: Transform pos: -46.5,2.5 @@ -176402,7 +176423,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22588 + - uid: 22511 components: - type: Transform rot: -1.5707963267948966 rad @@ -176413,7 +176434,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22589 + - uid: 22512 components: - type: Transform rot: -1.5707963267948966 rad @@ -176424,7 +176445,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22590 + - uid: 22513 components: - type: Transform rot: -1.5707963267948966 rad @@ -176435,7 +176456,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22591 + - uid: 22514 components: - type: Transform rot: -1.5707963267948966 rad @@ -176446,7 +176467,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22592 + - uid: 22515 components: - type: Transform pos: -55.5,6.5 @@ -176456,7 +176477,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22593 + - uid: 22516 components: - type: Transform rot: -1.5707963267948966 rad @@ -176467,7 +176488,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22594 + - uid: 22517 components: - type: Transform pos: -38.5,5.5 @@ -176477,7 +176498,7 @@ entities: - 53 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22595 + - uid: 22518 components: - type: Transform rot: -1.5707963267948966 rad @@ -176488,7 +176509,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22596 + - uid: 22519 components: - type: Transform rot: -1.5707963267948966 rad @@ -176499,7 +176520,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22597 + - uid: 22520 components: - type: Transform rot: 3.141592653589793 rad @@ -176510,7 +176531,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22598 + - uid: 22521 components: - type: Transform pos: -23.5,1.5 @@ -176520,7 +176541,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22599 + - uid: 22522 components: - type: Transform pos: -24.5,9.5 @@ -176530,7 +176551,7 @@ entities: - 53 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22600 + - uid: 22523 components: - type: Transform rot: -1.5707963267948966 rad @@ -176541,7 +176562,7 @@ entities: - 37 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22601 + - uid: 22524 components: - type: Transform rot: -1.5707963267948966 rad @@ -176552,7 +176573,7 @@ entities: - 124 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22602 + - uid: 22525 components: - type: Transform rot: 1.5707963267948966 rad @@ -176563,7 +176584,7 @@ entities: - 124 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22603 + - uid: 22526 components: - type: Transform rot: 3.141592653589793 rad @@ -176574,7 +176595,7 @@ entities: - 68 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22604 + - uid: 22527 components: - type: Transform rot: 3.141592653589793 rad @@ -176585,7 +176606,7 @@ entities: - 65 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22605 + - uid: 22528 components: - type: Transform rot: 3.141592653589793 rad @@ -176596,7 +176617,7 @@ entities: - 33 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22606 + - uid: 22529 components: - type: Transform pos: 8.5,-19.5 @@ -176606,14 +176627,14 @@ entities: - 122 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22607 + - uid: 22530 components: - type: Transform pos: -23.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22608 + - uid: 22531 components: - type: Transform rot: 3.141592653589793 rad @@ -176624,7 +176645,7 @@ entities: - 95 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22609 + - uid: 22532 components: - type: Transform rot: 1.5707963267948966 rad @@ -176632,7 +176653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22610 + - uid: 22533 components: - type: Transform rot: 1.5707963267948966 rad @@ -176643,7 +176664,7 @@ entities: - 112 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22611 + - uid: 22534 components: - type: Transform rot: 1.5707963267948966 rad @@ -176654,7 +176675,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22612 + - uid: 22535 components: - type: Transform rot: -1.5707963267948966 rad @@ -176665,7 +176686,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22613 + - uid: 22536 components: - type: Transform rot: 3.141592653589793 rad @@ -176676,7 +176697,7 @@ entities: - 98 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22614 + - uid: 22537 components: - type: Transform rot: -1.5707963267948966 rad @@ -176687,7 +176708,7 @@ entities: - 99 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22615 + - uid: 22538 components: - type: Transform rot: 3.141592653589793 rad @@ -176698,7 +176719,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22616 + - uid: 22539 components: - type: Transform rot: 3.141592653589793 rad @@ -176709,7 +176730,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22617 + - uid: 22540 components: - type: Transform rot: 3.141592653589793 rad @@ -176720,7 +176741,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22618 + - uid: 22541 components: - type: Transform pos: 52.5,-15.5 @@ -176730,7 +176751,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22619 + - uid: 22542 components: - type: Transform pos: 47.5,-15.5 @@ -176740,7 +176761,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22620 + - uid: 22543 components: - type: Transform rot: 3.141592653589793 rad @@ -176751,7 +176772,7 @@ entities: - 101 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22621 + - uid: 22544 components: - type: Transform rot: 3.141592653589793 rad @@ -176762,7 +176783,7 @@ entities: - 101 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22622 + - uid: 22545 components: - type: Transform rot: 1.5707963267948966 rad @@ -176773,7 +176794,7 @@ entities: - 33 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22623 + - uid: 22546 components: - type: Transform rot: -1.5707963267948966 rad @@ -176781,7 +176802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22624 + - uid: 22547 components: - type: Transform rot: -1.5707963267948966 rad @@ -176792,7 +176813,7 @@ entities: - 66 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22625 + - uid: 22548 components: - type: Transform pos: 10.5,9.5 @@ -176802,7 +176823,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22626 + - uid: 22549 components: - type: Transform rot: -1.5707963267948966 rad @@ -176813,7 +176834,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22627 + - uid: 22550 components: - type: Transform pos: 8.5,-3.5 @@ -176823,7 +176844,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22628 + - uid: 22551 components: - type: Transform rot: 1.5707963267948966 rad @@ -176834,7 +176855,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22629 + - uid: 22552 components: - type: Transform rot: -1.5707963267948966 rad @@ -176845,7 +176866,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22630 + - uid: 22553 components: - type: Transform rot: -1.5707963267948966 rad @@ -176856,7 +176877,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22631 + - uid: 22554 components: - type: Transform rot: 1.5707963267948966 rad @@ -176867,7 +176888,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22632 + - uid: 22555 components: - type: Transform rot: -1.5707963267948966 rad @@ -176878,7 +176899,7 @@ entities: - 83 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22633 + - uid: 22556 components: - type: Transform rot: 1.5707963267948966 rad @@ -176889,7 +176910,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22634 + - uid: 22557 components: - type: Transform rot: 1.5707963267948966 rad @@ -176900,7 +176921,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22635 + - uid: 22558 components: - type: Transform rot: 3.141592653589793 rad @@ -176911,7 +176932,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22636 + - uid: 22559 components: - type: Transform pos: 10.5,44.5 @@ -176921,7 +176942,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22637 + - uid: 22560 components: - type: Transform rot: 1.5707963267948966 rad @@ -176932,7 +176953,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22638 + - uid: 22561 components: - type: Transform rot: 1.5707963267948966 rad @@ -176943,7 +176964,7 @@ entities: - 72 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22639 + - uid: 22562 components: - type: Transform rot: 1.5707963267948966 rad @@ -176954,7 +176975,7 @@ entities: - 72 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22640 + - uid: 22563 components: - type: Transform rot: -1.5707963267948966 rad @@ -176965,7 +176986,7 @@ entities: - 71 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22641 + - uid: 22564 components: - type: Transform rot: -1.5707963267948966 rad @@ -176976,7 +176997,7 @@ entities: - 54 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22642 + - uid: 22565 components: - type: Transform rot: -1.5707963267948966 rad @@ -176987,7 +177008,7 @@ entities: - 73 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22643 + - uid: 22566 components: - type: Transform rot: 3.141592653589793 rad @@ -176998,7 +177019,7 @@ entities: - 73 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22644 + - uid: 22567 components: - type: Transform rot: -1.5707963267948966 rad @@ -177009,7 +177030,7 @@ entities: - 54 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22645 + - uid: 22568 components: - type: Transform pos: -5.5,53.5 @@ -177019,7 +177040,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22646 + - uid: 22569 components: - type: Transform pos: -11.5,53.5 @@ -177029,7 +177050,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22647 + - uid: 22570 components: - type: Transform pos: -8.5,57.5 @@ -177039,7 +177060,7 @@ entities: - 125 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22648 + - uid: 22571 components: - type: Transform rot: 3.141592653589793 rad @@ -177050,7 +177071,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22649 + - uid: 22572 components: - type: Transform rot: 1.5707963267948966 rad @@ -177061,7 +177082,7 @@ entities: - 76 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22650 + - uid: 22573 components: - type: Transform rot: 3.141592653589793 rad @@ -177072,7 +177093,7 @@ entities: - 76 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22651 + - uid: 22574 components: - type: Transform rot: -1.5707963267948966 rad @@ -177080,7 +177101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22652 + - uid: 22575 components: - type: Transform rot: -1.5707963267948966 rad @@ -177091,7 +177112,7 @@ entities: - 78 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22653 + - uid: 22576 components: - type: Transform pos: 10.5,86.5 @@ -177101,7 +177122,7 @@ entities: - 78 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22654 + - uid: 22577 components: - type: Transform rot: -1.5707963267948966 rad @@ -177112,7 +177133,7 @@ entities: - 126 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22655 + - uid: 22578 components: - type: Transform rot: 3.141592653589793 rad @@ -177123,7 +177144,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22656 + - uid: 22579 components: - type: Transform rot: -1.5707963267948966 rad @@ -177134,7 +177155,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22657 + - uid: 22580 components: - type: Transform rot: 1.5707963267948966 rad @@ -177145,7 +177166,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22658 + - uid: 22581 components: - type: Transform rot: 3.141592653589793 rad @@ -177156,7 +177177,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22659 + - uid: 22582 components: - type: Transform rot: 3.141592653589793 rad @@ -177167,7 +177188,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22660 + - uid: 22583 components: - type: Transform rot: 3.141592653589793 rad @@ -177178,7 +177199,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22661 + - uid: 22584 components: - type: Transform pos: 43.5,4.5 @@ -177188,7 +177209,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22662 + - uid: 22585 components: - type: Transform rot: 1.5707963267948966 rad @@ -177199,7 +177220,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22663 + - uid: 22586 components: - type: Transform rot: 3.141592653589793 rad @@ -177210,7 +177231,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22664 + - uid: 22587 components: - type: Transform rot: 3.141592653589793 rad @@ -177221,7 +177242,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22665 + - uid: 22588 components: - type: Transform rot: 3.141592653589793 rad @@ -177229,7 +177250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22666 + - uid: 22589 components: - type: Transform rot: -1.5707963267948966 rad @@ -177240,7 +177261,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22667 + - uid: 22590 components: - type: Transform pos: 40.5,12.5 @@ -177250,7 +177271,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22668 + - uid: 22591 components: - type: Transform rot: 1.5707963267948966 rad @@ -177261,7 +177282,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22669 + - uid: 22592 components: - type: Transform rot: 1.5707963267948966 rad @@ -177272,7 +177293,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22670 + - uid: 22593 components: - type: Transform rot: 3.141592653589793 rad @@ -177283,7 +177304,7 @@ entities: - 88 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22671 + - uid: 22594 components: - type: Transform rot: 1.5707963267948966 rad @@ -177294,7 +177315,7 @@ entities: - 90 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22672 + - uid: 22595 components: - type: Transform pos: 51.5,24.5 @@ -177304,7 +177325,7 @@ entities: - 91 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22673 + - uid: 22596 components: - type: Transform rot: 3.141592653589793 rad @@ -177315,7 +177336,7 @@ entities: - 88 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22674 + - uid: 22597 components: - type: Transform rot: 3.141592653589793 rad @@ -177326,7 +177347,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22675 + - uid: 22598 components: - type: Transform pos: 74.5,22.5 @@ -177336,7 +177357,7 @@ entities: - 94 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22676 + - uid: 22599 components: - type: Transform rot: -1.5707963267948966 rad @@ -177347,7 +177368,7 @@ entities: - 117 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22677 + - uid: 22600 components: - type: Transform rot: -1.5707963267948966 rad @@ -177358,7 +177379,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22678 + - uid: 22601 components: - type: Transform pos: 21.5,-31.5 @@ -177368,7 +177389,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22679 + - uid: 22602 components: - type: Transform pos: 11.5,-37.5 @@ -177378,7 +177399,7 @@ entities: - 120 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22680 + - uid: 22603 components: - type: Transform rot: 1.5707963267948966 rad @@ -177389,7 +177410,7 @@ entities: - 120 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22681 + - uid: 22604 components: - type: Transform rot: 3.141592653589793 rad @@ -177400,7 +177421,7 @@ entities: - 121 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22682 + - uid: 22605 components: - type: Transform rot: 1.5707963267948966 rad @@ -177411,7 +177432,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22683 + - uid: 22606 components: - type: Transform rot: -1.5707963267948966 rad @@ -177422,7 +177443,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22684 + - uid: 22607 components: - type: Transform rot: 3.141592653589793 rad @@ -177433,7 +177454,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22685 + - uid: 22608 components: - type: Transform rot: -1.5707963267948966 rad @@ -177444,7 +177465,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22686 + - uid: 22609 components: - type: Transform rot: -1.5707963267948966 rad @@ -177455,7 +177476,7 @@ entities: - 39 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22687 + - uid: 22610 components: - type: Transform rot: -1.5707963267948966 rad @@ -177466,7 +177487,7 @@ entities: - 39 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22688 + - uid: 22611 components: - type: Transform rot: 1.5707963267948966 rad @@ -177477,7 +177498,7 @@ entities: - 102 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22689 + - uid: 22612 components: - type: Transform rot: 3.141592653589793 rad @@ -177488,7 +177509,7 @@ entities: - 107 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22690 + - uid: 22613 components: - type: Transform pos: -4.5,-32.5 @@ -177498,7 +177519,7 @@ entities: - 102 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22691 + - uid: 22614 components: - type: Transform rot: 1.5707963267948966 rad @@ -177509,7 +177530,7 @@ entities: - 109 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22692 + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad @@ -177517,7 +177538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22693 + - uid: 22616 components: - type: Transform rot: 3.141592653589793 rad @@ -177528,7 +177549,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22694 + - uid: 22617 components: - type: Transform rot: 1.5707963267948966 rad @@ -177539,7 +177560,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22695 + - uid: 22618 components: - type: Transform rot: 1.5707963267948966 rad @@ -177550,7 +177571,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22696 + - uid: 22619 components: - type: Transform rot: 1.5707963267948966 rad @@ -177561,7 +177582,7 @@ entities: - 108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22697 + - uid: 22620 components: - type: Transform pos: -21.5,-34.5 @@ -177571,7 +177592,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22698 + - uid: 22621 components: - type: Transform rot: -1.5707963267948966 rad @@ -177582,7 +177603,7 @@ entities: - 107 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22699 + - uid: 22622 components: - type: Transform rot: 1.5707963267948966 rad @@ -177593,7 +177614,7 @@ entities: - 106 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22700 + - uid: 22623 components: - type: Transform rot: 1.5707963267948966 rad @@ -177604,7 +177625,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22701 + - uid: 22624 components: - type: Transform rot: 3.141592653589793 rad @@ -177615,7 +177636,7 @@ entities: - 111 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22702 + - uid: 22625 components: - type: Transform rot: -1.5707963267948966 rad @@ -177626,7 +177647,7 @@ entities: - 87 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22703 + - uid: 22626 components: - type: Transform rot: -1.5707963267948966 rad @@ -177637,7 +177658,7 @@ entities: - 113 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22704 + - uid: 22627 components: - type: Transform rot: 1.5707963267948966 rad @@ -177648,7 +177669,7 @@ entities: - 113 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22705 + - uid: 22628 components: - type: Transform pos: 5.5,-64.5 @@ -177658,7 +177679,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22706 + - uid: 22629 components: - type: Transform rot: 1.5707963267948966 rad @@ -177669,7 +177690,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22707 + - uid: 22630 components: - type: Transform rot: -1.5707963267948966 rad @@ -177680,7 +177701,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22708 + - uid: 22631 components: - type: Transform rot: 3.141592653589793 rad @@ -177691,7 +177712,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22709 + - uid: 22632 components: - type: Transform rot: 3.141592653589793 rad @@ -177702,7 +177723,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22710 + - uid: 22633 components: - type: Transform rot: -1.5707963267948966 rad @@ -177713,7 +177734,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22711 + - uid: 22634 components: - type: Transform pos: -17.5,-64.5 @@ -177723,7 +177744,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22712 + - uid: 22635 components: - type: Transform rot: 1.5707963267948966 rad @@ -177734,7 +177755,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22713 + - uid: 22636 components: - type: Transform rot: 3.141592653589793 rad @@ -177745,7 +177766,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22714 + - uid: 22637 components: - type: Transform rot: -1.5707963267948966 rad @@ -177753,7 +177774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22715 + - uid: 22638 components: - type: Transform rot: 1.5707963267948966 rad @@ -177761,7 +177782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22716 + - uid: 22639 components: - type: Transform rot: -1.5707963267948966 rad @@ -177769,7 +177790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22717 + - uid: 22640 components: - type: Transform rot: 1.5707963267948966 rad @@ -177777,14 +177798,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22718 + - uid: 22641 components: - type: Transform pos: -117.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22719 + - uid: 22642 components: - type: Transform rot: 1.5707963267948966 rad @@ -177792,7 +177813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22720 + - uid: 22643 components: - type: Transform rot: 1.5707963267948966 rad @@ -177800,7 +177821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22721 + - uid: 22644 components: - type: Transform rot: 3.141592653589793 rad @@ -177811,7 +177832,7 @@ entities: - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22722 + - uid: 22645 components: - type: Transform pos: 81.5,1.5 @@ -177821,7 +177842,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22723 + - uid: 22646 components: - type: Transform rot: 3.141592653589793 rad @@ -177832,7 +177853,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22724 + - uid: 22647 components: - type: Transform rot: 3.141592653589793 rad @@ -177843,7 +177864,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22725 + - uid: 22648 components: - type: Transform rot: 3.141592653589793 rad @@ -177854,7 +177875,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22726 + - uid: 22649 components: - type: Transform pos: 86.5,5.5 @@ -177864,7 +177885,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22727 + - uid: 22650 components: - type: Transform pos: 93.5,2.5 @@ -177874,7 +177895,7 @@ entities: - 96 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22728 + - uid: 22651 components: - type: Transform pos: 78.5,5.5 @@ -177884,7 +177905,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22729 + - uid: 22652 components: - type: Transform rot: -1.5707963267948966 rad @@ -177892,85 +177913,85 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39403 + - uid: 39230 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 + - 38412 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39404 + - uid: 39231 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39405 + - uid: 39232 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,7.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 + - 38413 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39406 + - uid: 39233 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39407 + - uid: 39234 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39408 + - uid: 39235 components: - type: Transform pos: -12.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39409 + - uid: 39236 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39410 + - uid: 39237 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 22730 + - uid: 22653 components: - type: Transform pos: -117.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22731 + - uid: 22654 components: - type: Transform rot: -1.5707963267948966 rad @@ -177980,218 +178001,218 @@ entities: color: '#FF0000FF' - proto: Gauze entities: - - uid: 22732 + - uid: 22655 components: - type: Transform pos: 24.5022,-31.36834 parent: 2 - - uid: 22733 + - uid: 22656 components: - type: Transform pos: 25.122957,-24.40516 parent: 2 - - uid: 22734 + - uid: 22657 components: - type: Transform pos: 35.5,-41.5 parent: 2 - proto: GeneratorBasic entities: - - uid: 22735 + - uid: 22658 components: - type: Transform pos: -49.5,-13.5 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 39411 + - uid: 39238 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 39412 + parent: 38411 + - uid: 39239 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 39413 + parent: 38411 + - uid: 39240 components: - type: Transform pos: 8.5,7.5 - parent: 38584 + parent: 38411 - proto: GeneratorRTG entities: - - uid: 22736 + - uid: 22659 components: - type: Transform pos: 13.5,-5.5 parent: 2 - - uid: 22737 + - uid: 22660 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 22738 + - uid: 22661 components: - type: Transform pos: -121.5,26.5 parent: 2 - - uid: 22739 + - uid: 22662 components: - type: Transform pos: -122.5,26.5 parent: 2 - - uid: 22740 + - uid: 22663 components: - type: Transform pos: -123.5,26.5 parent: 2 - proto: GeneratorRTGDamaged entities: - - uid: 9975 + - uid: 22664 components: - type: Transform pos: -37.5,-22.5 parent: 2 - proto: GeneratorWallmountAPU entities: - - uid: 38526 + - uid: 38353 components: - type: Transform pos: 0.5,2.5 - parent: 38484 + parent: 38311 - type: PowerSupplier supplyRate: 60000 - proto: Girder entities: - - uid: 22741 + - uid: 22665 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-19.5 parent: 2 - - uid: 22742 + - uid: 22666 components: - type: Transform pos: 7.5,56.5 parent: 2 - - uid: 22743 + - uid: 22667 components: - type: Transform pos: 39.5,-47.5 parent: 2 - - uid: 22744 + - uid: 22668 components: - type: Transform pos: -66.5,-31.5 parent: 2 - - uid: 22745 + - uid: 22669 components: - type: Transform pos: -10.5,-56.5 parent: 2 - - uid: 22746 + - uid: 22670 components: - type: Transform pos: 49.5,-39.5 parent: 2 - - uid: 22747 + - uid: 22671 components: - type: Transform pos: -73.5,-21.5 parent: 2 - - uid: 22748 + - uid: 22672 components: - type: Transform pos: 22.5,-18.5 parent: 2 - - uid: 22749 + - uid: 22673 components: - type: Transform pos: -59.5,-20.5 parent: 2 - - uid: 22750 + - uid: 22674 components: - type: Transform pos: 48.5,-11.5 parent: 2 - - uid: 22751 + - uid: 22675 components: - type: Transform pos: 20.5,-55.5 parent: 2 - - uid: 22752 + - uid: 22676 components: - type: Transform pos: 41.5,-26.5 parent: 2 - - uid: 22753 + - uid: 22677 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 22754 + - uid: 22678 components: - type: Transform pos: -30.5,-18.5 parent: 2 - - uid: 22755 + - uid: 22679 components: - type: Transform pos: -29.5,-18.5 parent: 2 - - uid: 22756 + - uid: 22680 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 22757 + - uid: 22681 components: - type: Transform pos: 14.5,-54.5 parent: 2 - - uid: 22758 + - uid: 22682 components: - type: Transform pos: 37.5,-67.5 parent: 2 - - uid: 22759 + - uid: 22683 components: - type: Transform pos: -34.5,-18.5 parent: 2 - - uid: 22760 + - uid: 22684 components: - type: Transform pos: -19.5,-62.5 parent: 2 - - uid: 22761 + - uid: 22685 components: - type: Transform pos: 36.5,-53.5 parent: 2 - - uid: 22762 + - uid: 22686 components: - type: Transform pos: 13.5,-83.5 parent: 2 - proto: GlassBoxBroken entities: - - uid: 22763 + - uid: 22687 components: - type: Transform pos: 49.5,-27.5 parent: 2 - proto: Gohei entities: - - uid: 39414 + - uid: 39241 components: - type: Transform pos: 3.0654716,35.37439 - parent: 38584 + parent: 38411 - proto: GoldOre1 entities: - - uid: 22764 + - uid: 22688 components: - type: Transform rot: 3.141593671850739 rad @@ -178199,9818 +178220,9818 @@ entities: parent: 2 - proto: GravityGenerator entities: - - uid: 22765 + - uid: 22689 components: - type: Transform pos: -71.5,6.5 parent: 2 - proto: GravityGeneratorMini entities: - - uid: 38527 + - uid: 38354 components: - type: Transform pos: 1.5,-2.5 - parent: 38484 + parent: 38311 - type: Visibility layer: 12 - - uid: 39415 + - uid: 39242 components: - type: Transform pos: 7.5,4.5 - parent: 38584 + parent: 38411 - proto: Grille entities: - - uid: 2809 + - uid: 22690 components: - type: Transform pos: 80.5,-24.5 parent: 2 - - uid: 22766 + - uid: 22691 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 22767 + - uid: 22692 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 22768 + - uid: 22693 components: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 22769 + - uid: 22694 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,33.5 parent: 2 - - uid: 22770 + - uid: 22695 components: - type: Transform pos: -72.5,21.5 parent: 2 - - uid: 22771 + - uid: 22696 components: - type: Transform pos: -72.5,24.5 parent: 2 - - uid: 22772 + - uid: 22697 components: - type: Transform pos: -67.5,30.5 parent: 2 - - uid: 22773 + - uid: 22698 components: - type: Transform pos: -72.5,20.5 parent: 2 - - uid: 22774 + - uid: 22699 components: - type: Transform pos: -67.5,28.5 parent: 2 - - uid: 22775 + - uid: 22700 components: - type: Transform pos: -72.5,23.5 parent: 2 - - uid: 22776 + - uid: 22701 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 22777 + - uid: 22702 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 22778 + - uid: 22703 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,3.5 parent: 2 - - uid: 22779 + - uid: 22704 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,4.5 parent: 2 - - uid: 22780 + - uid: 22705 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 22781 + - uid: 22706 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-5.5 parent: 2 - - uid: 22782 + - uid: 22707 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-5.5 parent: 2 - - uid: 22783 + - uid: 22708 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-5.5 parent: 2 - - uid: 22784 + - uid: 22709 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-5.5 parent: 2 - - uid: 22785 + - uid: 22710 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-5.5 parent: 2 - - uid: 22786 + - uid: 22711 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 22787 + - uid: 22712 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 22788 + - uid: 22713 components: - type: Transform pos: -69.5,38.5 parent: 2 - - uid: 22789 + - uid: 22714 components: - type: Transform pos: -67.5,52.5 parent: 2 - - uid: 22790 + - uid: 22715 components: - type: Transform pos: -67.5,32.5 parent: 2 - - uid: 22791 + - uid: 22716 components: - type: Transform pos: -69.5,36.5 parent: 2 - - uid: 22792 + - uid: 22717 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 22793 + - uid: 22718 components: - type: Transform pos: -67.5,34.5 parent: 2 - - uid: 22794 + - uid: 22719 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 22795 + - uid: 22720 components: - type: Transform pos: -67.5,38.5 parent: 2 - - uid: 22796 + - uid: 22721 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 22797 + - uid: 22722 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,22.5 parent: 2 - - uid: 22798 + - uid: 22723 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-5.5 parent: 2 - - uid: 22799 + - uid: 22724 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,2.5 parent: 2 - - uid: 22800 + - uid: 22725 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-71.5 parent: 2 - - uid: 22801 + - uid: 22726 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,26.5 parent: 2 - - uid: 22802 + - uid: 22727 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,26.5 parent: 2 - - uid: 22803 + - uid: 22728 components: - type: Transform pos: 8.5,32.5 parent: 2 - - uid: 22804 + - uid: 22729 components: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 22805 + - uid: 22730 components: - type: Transform pos: 5.5,86.5 parent: 2 - - uid: 22806 + - uid: 22731 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 22807 + - uid: 22732 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,71.5 parent: 2 - - uid: 22808 + - uid: 22733 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,4.5 parent: 2 - - uid: 22809 + - uid: 22734 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,5.5 parent: 2 - - uid: 22810 + - uid: 22735 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 - - uid: 22811 + - uid: 22736 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 22812 + - uid: 22737 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 - - uid: 22813 + - uid: 22738 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 22814 + - uid: 22739 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 22815 + - uid: 22740 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 22816 + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,33.5 parent: 2 - - uid: 22817 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 - - uid: 22818 + - uid: 22743 components: - type: Transform pos: -16.5,3.5 parent: 2 - - uid: 22819 + - uid: 22744 components: - type: Transform pos: 3.5,-6.5 parent: 2 - - uid: 22820 + - uid: 22745 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 - - uid: 22821 + - uid: 22746 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 22822 + - uid: 22747 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 22823 + - uid: 22748 components: - type: Transform pos: -82.5,13.5 parent: 2 - - uid: 22824 + - uid: 22749 components: - type: Transform pos: -56.5,64.5 parent: 2 - - uid: 22825 + - uid: 22750 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 22826 + - uid: 22751 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,3.5 parent: 2 - - uid: 22827 + - uid: 22752 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 22828 + - uid: 22753 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,94.5 parent: 2 - - uid: 22829 + - uid: 22754 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-45.5 parent: 2 - - uid: 22830 + - uid: 22755 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 2 - - uid: 22831 + - uid: 22756 components: - type: Transform pos: -23.5,3.5 parent: 2 - - uid: 22832 + - uid: 22757 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,6.5 parent: 2 - - uid: 22833 + - uid: 22758 components: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 22834 + - uid: 22759 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,6.5 parent: 2 - - uid: 22835 + - uid: 22760 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 - - uid: 22836 + - uid: 22761 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,6.5 parent: 2 - - uid: 22837 + - uid: 22762 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 22838 + - uid: 22763 components: - type: Transform pos: -61.5,64.5 parent: 2 - - uid: 22839 + - uid: 22764 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 22840 + - uid: 22765 components: - type: Transform pos: -60.5,65.5 parent: 2 - - uid: 22841 + - uid: 22766 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,36.5 parent: 2 - - uid: 22842 + - uid: 22767 components: - type: Transform pos: 31.5,53.5 parent: 2 - - uid: 22843 + - uid: 22768 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,69.5 parent: 2 - - uid: 22844 + - uid: 22769 components: - type: Transform pos: -31.5,73.5 parent: 2 - - uid: 22845 + - uid: 22770 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,4.5 parent: 2 - - uid: 22846 + - uid: 22771 components: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 22847 + - uid: 22772 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,65.5 parent: 2 - - uid: 22848 + - uid: 22773 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,97.5 parent: 2 - - uid: 22849 + - uid: 22774 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,4.5 parent: 2 - - uid: 22850 + - uid: 22775 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,91.5 parent: 2 - - uid: 22851 + - uid: 22776 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 22852 + - uid: 22777 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 - - uid: 22853 + - uid: 22778 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 22854 + - uid: 22779 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,99.5 parent: 2 - - uid: 22855 + - uid: 22780 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 22856 + - uid: 22781 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 22857 + - uid: 22782 components: - type: Transform pos: 45.5,-17.5 parent: 2 - - uid: 22858 + - uid: 22783 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,6.5 parent: 2 - - uid: 22859 + - uid: 22784 components: - type: Transform pos: 75.5,17.5 parent: 2 - - uid: 22860 + - uid: 22785 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-78.5 parent: 2 - - uid: 22861 + - uid: 22786 components: - type: Transform pos: 32.5,53.5 parent: 2 - - uid: 22862 + - uid: 22787 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,4.5 parent: 2 - - uid: 22863 + - uid: 22788 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-46.5 parent: 2 - - uid: 22864 + - uid: 22789 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 22865 + - uid: 22790 components: - type: Transform pos: 64.5,-8.5 parent: 2 - - uid: 22866 + - uid: 22791 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 22867 + - uid: 22792 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 22868 + - uid: 22793 components: - type: Transform pos: 49.5,15.5 parent: 2 - - uid: 22869 + - uid: 22794 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 22870 + - uid: 22795 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 22872 + - uid: 22796 components: - type: Transform pos: 65.5,-31.5 parent: 2 - - uid: 22873 + - uid: 22797 components: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 22874 + - uid: 22798 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,4.5 parent: 2 - - uid: 22875 + - uid: 22799 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 22876 + - uid: 22800 components: - type: Transform pos: 48.5,-17.5 parent: 2 - - uid: 22877 + - uid: 22801 components: - type: Transform pos: 30.5,53.5 parent: 2 - - uid: 22878 + - uid: 22802 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 22879 + - uid: 22803 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 22880 + - uid: 22804 components: - type: Transform pos: -27.5,73.5 parent: 2 - - uid: 22881 + - uid: 22805 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,86.5 parent: 2 - - uid: 22882 + - uid: 22806 components: - type: Transform pos: -28.5,99.5 parent: 2 - - uid: 22883 + - uid: 22807 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 - - uid: 22884 + - uid: 22808 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,88.5 parent: 2 - - uid: 22885 + - uid: 22809 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-36.5 parent: 2 - - uid: 22886 + - uid: 22810 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 22887 + - uid: 22811 components: - type: Transform pos: 48.5,21.5 parent: 2 - - uid: 22888 + - uid: 22812 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 22889 + - uid: 22813 components: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 22890 + - uid: 22814 components: - type: Transform pos: 75.5,18.5 parent: 2 - - uid: 22892 + - uid: 22815 components: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 22893 + - uid: 22816 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 22894 + - uid: 22817 components: - type: Transform pos: 64.5,-15.5 parent: 2 - - uid: 22895 + - uid: 22818 components: - type: Transform pos: 64.5,-24.5 parent: 2 - - uid: 22896 + - uid: 22819 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 22897 + - uid: 22820 components: - type: Transform pos: 67.5,-25.5 parent: 2 - - uid: 22898 + - uid: 22821 components: - type: Transform pos: 64.5,-14.5 parent: 2 - - uid: 22899 + - uid: 22822 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,95.5 parent: 2 - - uid: 22900 + - uid: 22823 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,97.5 parent: 2 - - uid: 22901 + - uid: 22824 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,99.5 parent: 2 - - uid: 22902 + - uid: 22825 components: - type: Transform pos: 66.5,-25.5 parent: 2 - - uid: 22903 + - uid: 22826 components: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 22904 + - uid: 22827 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,92.5 parent: 2 - - uid: 22905 + - uid: 22828 components: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 22906 + - uid: 22829 components: - type: Transform pos: -30.5,99.5 parent: 2 - - uid: 22907 + - uid: 22830 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,68.5 parent: 2 - - uid: 22908 + - uid: 22831 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 22909 + - uid: 22832 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,4.5 parent: 2 - - uid: 22910 + - uid: 22833 components: - type: Transform pos: -31.5,72.5 parent: 2 - - uid: 22911 + - uid: 22834 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-36.5 parent: 2 - - uid: 22912 + - uid: 22835 components: - type: Transform pos: -29.5,-42.5 parent: 2 - - uid: 22913 + - uid: 22836 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,86.5 parent: 2 - - uid: 22914 + - uid: 22837 components: - type: Transform pos: 75.5,-14.5 parent: 2 - - uid: 22915 + - uid: 22838 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,89.5 parent: 2 - - uid: 22916 + - uid: 22839 components: - type: Transform pos: 71.5,12.5 parent: 2 - - uid: 22917 + - uid: 22840 components: - type: Transform pos: -32.5,82.5 parent: 2 - - uid: 22918 + - uid: 22841 components: - type: Transform pos: -9.5,73.5 parent: 2 - - uid: 22919 + - uid: 22842 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 22920 + - uid: 22843 components: - type: Transform pos: -9.5,72.5 parent: 2 - - uid: 22921 + - uid: 22844 components: - type: Transform pos: -27.5,95.5 parent: 2 - - uid: 22922 + - uid: 22845 components: - type: Transform pos: 7.5,86.5 parent: 2 - - uid: 22923 + - uid: 22846 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 22924 + - uid: 22847 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 22925 + - uid: 22848 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 22926 + - uid: 22849 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 22927 + - uid: 22850 components: - type: Transform pos: 39.5,53.5 parent: 2 - - uid: 22928 + - uid: 22851 components: - type: Transform pos: 65.5,-8.5 parent: 2 - - uid: 22929 + - uid: 22852 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 22930 + - uid: 22853 components: - type: Transform pos: -17.5,-52.5 parent: 2 - - uid: 22931 + - uid: 22854 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 22932 + - uid: 22855 components: - type: Transform pos: 78.5,-22.5 parent: 2 - - uid: 22933 + - uid: 22856 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 22934 + - uid: 22857 components: - type: Transform pos: -14.5,79.5 parent: 2 - - uid: 22935 + - uid: 22858 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 22936 + - uid: 22859 components: - type: Transform pos: -13.5,72.5 parent: 2 - - uid: 22937 + - uid: 22860 components: - type: Transform pos: -13.5,73.5 parent: 2 - - uid: 22938 + - uid: 22861 components: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 22939 + - uid: 22862 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-66.5 parent: 2 - - uid: 22940 + - uid: 22863 components: - type: Transform pos: 66.5,-14.5 parent: 2 - - uid: 22941 + - uid: 22864 components: - type: Transform pos: -8.5,82.5 parent: 2 - - uid: 22942 + - uid: 22865 components: - type: Transform pos: -4.5,70.5 parent: 2 - - uid: 22943 + - uid: 22866 components: - type: Transform pos: 28.5,53.5 parent: 2 - - uid: 22944 + - uid: 22867 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,97.5 parent: 2 - - uid: 22945 + - uid: 22868 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 22946 + - uid: 22869 components: - type: Transform pos: 76.5,24.5 parent: 2 - - uid: 22947 + - uid: 22870 components: - type: Transform pos: 74.5,24.5 parent: 2 - - uid: 22948 + - uid: 22871 components: - type: Transform pos: -11.5,-6.5 parent: 2 - - uid: 22949 + - uid: 22872 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 22950 + - uid: 22873 components: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 22951 + - uid: 22874 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 22952 + - uid: 22875 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 22953 + - uid: 22876 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 22954 + - uid: 22877 components: - type: Transform pos: -60.5,16.5 parent: 2 - - uid: 22955 + - uid: 22878 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 22956 + - uid: 22879 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-55.5 parent: 2 - - uid: 22957 + - uid: 22880 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 2 - - uid: 22958 + - uid: 22881 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 22959 + - uid: 22882 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 22960 + - uid: 22883 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 22961 + - uid: 22884 components: - type: Transform pos: -79.5,-42.5 parent: 2 - - uid: 22962 + - uid: 22885 components: - type: Transform pos: -58.5,-78.5 parent: 2 - - uid: 22963 + - uid: 22886 components: - type: Transform pos: -69.5,-49.5 parent: 2 - - uid: 22964 + - uid: 22887 components: - type: Transform pos: 30.5,65.5 parent: 2 - - uid: 22965 + - uid: 22888 components: - type: Transform pos: 66.5,-9.5 parent: 2 - - uid: 22966 + - uid: 22889 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-21.5 parent: 2 - - uid: 22967 + - uid: 22890 components: - type: Transform pos: -26.5,82.5 parent: 2 - - uid: 22968 + - uid: 22891 components: - type: Transform pos: -31.5,86.5 parent: 2 - - uid: 22969 + - uid: 22892 components: - type: Transform pos: -47.5,26.5 parent: 2 - - uid: 22970 + - uid: 22893 components: - type: Transform pos: 36.5,102.5 parent: 2 - - uid: 22971 + - uid: 22894 components: - type: Transform pos: 71.5,-25.5 parent: 2 - - uid: 22972 + - uid: 22895 components: - type: Transform pos: 25.5,62.5 parent: 2 - - uid: 22973 + - uid: 22896 components: - type: Transform pos: 24.5,62.5 parent: 2 - - uid: 22974 + - uid: 22897 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 22975 + - uid: 22898 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,81.5 parent: 2 - - uid: 22976 + - uid: 22899 components: - type: Transform pos: 30.5,47.5 parent: 2 - - uid: 22977 + - uid: 22900 components: - type: Transform pos: -77.5,30.5 parent: 2 - - uid: 22978 + - uid: 22901 components: - type: Transform pos: -83.5,77.5 parent: 2 - - uid: 22979 + - uid: 22902 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,3.5 parent: 2 - - uid: 22980 + - uid: 22903 components: - type: Transform pos: 32.5,47.5 parent: 2 - - uid: 22981 + - uid: 22904 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 22982 + - uid: 22905 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 22983 + - uid: 22906 components: - type: Transform pos: 24.5,60.5 parent: 2 - - uid: 22984 + - uid: 22907 components: - type: Transform pos: 74.5,-40.5 parent: 2 - - uid: 22985 + - uid: 22908 components: - type: Transform pos: -77.5,50.5 parent: 2 - - uid: 22986 + - uid: 22909 components: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 22987 + - uid: 22910 components: - type: Transform pos: -77.5,26.5 parent: 2 - - uid: 22988 + - uid: 22911 components: - type: Transform pos: -83.5,69.5 parent: 2 - - uid: 22989 + - uid: 22912 components: - type: Transform pos: -82.5,18.5 parent: 2 - - uid: 22990 + - uid: 22913 components: - type: Transform pos: -82.5,20.5 parent: 2 - - uid: 22991 + - uid: 22914 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-21.5 parent: 2 - - uid: 22992 + - uid: 22915 components: - type: Transform pos: -77.5,51.5 parent: 2 - - uid: 22993 + - uid: 22916 components: - type: Transform pos: 83.5,-48.5 parent: 2 - - uid: 22994 + - uid: 22917 components: - type: Transform pos: -77.5,29.5 parent: 2 - - uid: 22995 + - uid: 22918 components: - type: Transform pos: -77.5,32.5 parent: 2 - - uid: 22996 + - uid: 22919 components: - type: Transform pos: 83.5,-49.5 parent: 2 - - uid: 22997 + - uid: 22920 components: - type: Transform pos: 58.5,-56.5 parent: 2 - - uid: 22998 + - uid: 22921 components: - type: Transform pos: 53.5,-60.5 parent: 2 - - uid: 22999 + - uid: 22922 components: - type: Transform pos: 37.5,21.5 parent: 2 - - uid: 23000 + - uid: 22923 components: - type: Transform pos: -75.5,37.5 parent: 2 - - uid: 23001 + - uid: 22924 components: - type: Transform pos: -58.5,-53.5 parent: 2 - - uid: 23002 + - uid: 22925 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - uid: 23003 + - uid: 22926 components: - type: Transform pos: 55.5,-60.5 parent: 2 - - uid: 23004 + - uid: 22927 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 23005 + - uid: 22928 components: - type: Transform pos: -82.5,17.5 parent: 2 - - uid: 23006 + - uid: 22929 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,-21.5 parent: 2 - - uid: 23007 + - uid: 22930 components: - type: Transform pos: 29.5,47.5 parent: 2 - - uid: 23008 + - uid: 22931 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 23009 + - uid: 22932 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 23010 + - uid: 22933 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 23011 + - uid: 22934 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-36.5 parent: 2 - - uid: 23012 + - uid: 22935 components: - type: Transform pos: -84.5,70.5 parent: 2 - - uid: 23013 + - uid: 22936 components: - type: Transform pos: -83.5,70.5 parent: 2 - - uid: 23014 + - uid: 22937 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,37.5 parent: 2 - - uid: 23015 + - uid: 22938 components: - type: Transform pos: -42.5,-87.5 parent: 2 - - uid: 23016 + - uid: 22939 components: - type: Transform pos: -50.5,69.5 parent: 2 - - uid: 23017 + - uid: 22940 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-21.5 parent: 2 - - uid: 23018 + - uid: 22941 components: - type: Transform pos: -79.5,-41.5 parent: 2 - - uid: 23019 + - uid: 22942 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-21.5 parent: 2 - - uid: 23020 + - uid: 22943 components: - type: Transform pos: -56.5,-53.5 parent: 2 - - uid: 23021 + - uid: 22944 components: - type: Transform pos: -75.5,39.5 parent: 2 - - uid: 23022 + - uid: 22945 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 23023 + - uid: 22946 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 23024 + - uid: 22947 components: - type: Transform pos: 58.5,-54.5 parent: 2 - - uid: 23025 + - uid: 22948 components: - type: Transform pos: 50.5,-62.5 parent: 2 - - uid: 23026 + - uid: 22949 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 23027 + - uid: 22950 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 23028 + - uid: 22951 components: - type: Transform pos: 11.5,38.5 parent: 2 - - uid: 23029 + - uid: 22952 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,36.5 parent: 2 - - uid: 23030 + - uid: 22953 components: - type: Transform pos: -22.5,70.5 parent: 2 - - uid: 23031 + - uid: 22954 components: - type: Transform pos: 56.5,-58.5 parent: 2 - - uid: 23032 + - uid: 22955 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,88.5 parent: 2 - - uid: 23033 + - uid: 22956 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 23034 + - uid: 22957 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,35.5 parent: 2 - - uid: 23035 + - uid: 22958 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 23036 + - uid: 22959 components: - type: Transform pos: 9.5,38.5 parent: 2 - - uid: 23037 + - uid: 22960 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 23038 + - uid: 22961 components: - type: Transform pos: -83.5,79.5 parent: 2 - - uid: 23039 + - uid: 22962 components: - type: Transform pos: 13.5,74.5 parent: 2 - - uid: 23040 + - uid: 22963 components: - type: Transform pos: -0.5,30.5 parent: 2 - - uid: 23041 + - uid: 22964 components: - type: Transform pos: -8.5,79.5 parent: 2 - - uid: 23042 + - uid: 22965 components: - type: Transform pos: 74.5,-12.5 parent: 2 - - uid: 23043 + - uid: 22966 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,18.5 parent: 2 - - uid: 23044 + - uid: 22967 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-68.5 parent: 2 - - uid: 23045 + - uid: 22968 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-68.5 parent: 2 - - uid: 23046 + - uid: 22969 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 23047 + - uid: 22970 components: - type: Transform pos: 13.5,75.5 parent: 2 - - uid: 23048 + - uid: 22971 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 23049 + - uid: 22972 components: - type: Transform pos: -26.5,79.5 parent: 2 - - uid: 23050 + - uid: 22973 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 23051 + - uid: 22974 components: - type: Transform pos: -36.5,28.5 parent: 2 - - uid: 23052 + - uid: 22975 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 23053 + - uid: 22976 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,4.5 parent: 2 - - uid: 23054 + - uid: 22977 components: - type: Transform pos: -57.5,35.5 parent: 2 - - uid: 23055 + - uid: 22978 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 23056 + - uid: 22979 components: - type: Transform pos: -56.5,58.5 parent: 2 - - uid: 23057 + - uid: 22980 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 23058 + - uid: 22981 components: - type: Transform pos: 25.5,-69.5 parent: 2 - - uid: 23059 + - uid: 22982 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 23060 + - uid: 22983 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,0.5 parent: 2 - - uid: 23061 + - uid: 22984 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 23062 + - uid: 22985 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 23063 + - uid: 22986 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 23064 + - uid: 22987 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 23065 + - uid: 22988 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-0.5 parent: 2 - - uid: 23066 + - uid: 22989 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-19.5 parent: 2 - - uid: 23067 + - uid: 22990 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 23068 + - uid: 22991 components: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 23069 + - uid: 22992 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 23070 + - uid: 22993 components: - type: Transform pos: 9.5,-21.5 parent: 2 - - uid: 23071 + - uid: 22994 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 23072 + - uid: 22995 components: - type: Transform pos: -57.5,8.5 parent: 2 - - uid: 23073 + - uid: 22996 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 23074 + - uid: 22997 components: - type: Transform pos: 37.5,53.5 parent: 2 - - uid: 23075 + - uid: 22998 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,88.5 parent: 2 - - uid: 23076 + - uid: 22999 components: - type: Transform pos: -77.5,64.5 parent: 2 - - uid: 23077 + - uid: 23000 components: - type: Transform pos: -61.5,-48.5 parent: 2 - - uid: 23078 + - uid: 23001 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,95.5 parent: 2 - - uid: 23079 + - uid: 23002 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,91.5 parent: 2 - - uid: 23080 + - uid: 23003 components: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 23081 + - uid: 23004 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 23082 + - uid: 23005 components: - type: Transform pos: 34.5,53.5 parent: 2 - - uid: 23083 + - uid: 23006 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 - - uid: 23084 + - uid: 23007 components: - type: Transform pos: 72.5,-25.5 parent: 2 - - uid: 23085 + - uid: 23008 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 23086 + - uid: 23009 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 23087 + - uid: 23010 components: - type: Transform pos: -75.5,38.5 parent: 2 - - uid: 23088 + - uid: 23011 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 - - uid: 23089 + - uid: 23012 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,3.5 parent: 2 - - uid: 23090 + - uid: 23013 components: - type: Transform pos: 12.5,16.5 parent: 2 - - uid: 23091 + - uid: 23014 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 23092 + - uid: 23015 components: - type: Transform pos: 35.5,53.5 parent: 2 - - uid: 23093 + - uid: 23016 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 23094 + - uid: 23017 components: - type: Transform pos: 36.5,53.5 parent: 2 - - uid: 23095 + - uid: 23018 components: - type: Transform pos: 77.5,-27.5 parent: 2 - - uid: 23096 + - uid: 23019 components: - type: Transform pos: 4.5,72.5 parent: 2 - - uid: 23097 + - uid: 23020 components: - type: Transform pos: 4.5,73.5 parent: 2 - - uid: 23098 + - uid: 23021 components: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 23099 + - uid: 23022 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 23100 + - uid: 23023 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 23101 + - uid: 23024 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 23102 + - uid: 23025 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 23103 + - uid: 23026 components: - type: Transform pos: 22.5,-56.5 parent: 2 - - uid: 23104 + - uid: 23027 components: - type: Transform pos: -64.5,68.5 parent: 2 - - uid: 23105 + - uid: 23028 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,3.5 parent: 2 - - uid: 23106 + - uid: 23029 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 23107 + - uid: 23030 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,4.5 parent: 2 - - uid: 23108 + - uid: 23031 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 23109 + - uid: 23032 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 23110 + - uid: 23033 components: - type: Transform pos: -105.5,-7.5 parent: 2 - - uid: 23111 + - uid: 23034 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,1.5 parent: 2 - - uid: 23112 + - uid: 23035 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 - - uid: 23113 + - uid: 23036 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,4.5 parent: 2 - - uid: 23114 + - uid: 23037 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 23115 + - uid: 23038 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 23116 + - uid: 23039 components: - type: Transform pos: 12.5,21.5 parent: 2 - - uid: 23117 + - uid: 23040 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 23118 + - uid: 23041 components: - type: Transform pos: 25.5,-64.5 parent: 2 - - uid: 23119 + - uid: 23042 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 23120 + - uid: 23043 components: - type: Transform pos: 23.5,-31.5 parent: 2 - - uid: 23121 + - uid: 23044 components: - type: Transform pos: 28.5,-64.5 parent: 2 - - uid: 23122 + - uid: 23045 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,4.5 parent: 2 - - uid: 23123 + - uid: 23046 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 23124 + - uid: 23047 components: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 23125 + - uid: 23048 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-18.5 parent: 2 - - uid: 23126 + - uid: 23049 components: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 23127 + - uid: 23050 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - - uid: 23128 + - uid: 23051 components: - type: Transform pos: 20.5,92.5 parent: 2 - - uid: 23129 + - uid: 23052 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 23130 + - uid: 23053 components: - type: Transform pos: 66.5,-19.5 parent: 2 - - uid: 23131 + - uid: 23054 components: - type: Transform pos: -5.5,70.5 parent: 2 - - uid: 23132 + - uid: 23055 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 23133 + - uid: 23056 components: - type: Transform pos: -3.5,19.5 parent: 2 - - uid: 23134 + - uid: 23057 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 23135 + - uid: 23058 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 23136 + - uid: 23059 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 23137 + - uid: 23060 components: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 23138 + - uid: 23061 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 23139 + - uid: 23062 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 23140 + - uid: 23063 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 23141 + - uid: 23064 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 23142 + - uid: 23065 components: - type: Transform pos: 19.5,-31.5 parent: 2 - - uid: 23143 + - uid: 23066 components: - type: Transform pos: 66.5,-12.5 parent: 2 - - uid: 23144 + - uid: 23067 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 23145 + - uid: 23068 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - uid: 23146 + - uid: 23069 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 23147 + - uid: 23070 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 23148 + - uid: 23071 components: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 23149 + - uid: 23072 components: - type: Transform pos: 42.5,-71.5 parent: 2 - - uid: 23150 + - uid: 23073 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 23151 + - uid: 23074 components: - type: Transform pos: 38.5,-71.5 parent: 2 - - uid: 23152 + - uid: 23075 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 23153 + - uid: 23076 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,1.5 parent: 2 - - uid: 23154 + - uid: 23077 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-19.5 parent: 2 - - uid: 23156 + - uid: 23078 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 23158 + - uid: 23079 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 23159 + - uid: 23080 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 23160 + - uid: 23081 components: - type: Transform pos: -105.5,-4.5 parent: 2 - - uid: 23161 + - uid: 23082 components: - type: Transform pos: 19.5,-37.5 parent: 2 - - uid: 23162 + - uid: 23083 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 23163 + - uid: 23084 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 23164 + - uid: 23085 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 23165 + - uid: 23086 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 23166 + - uid: 23087 components: - type: Transform pos: 20.5,-32.5 parent: 2 - - uid: 23167 + - uid: 23088 components: - type: Transform pos: 76.5,26.5 parent: 2 - - uid: 23168 + - uid: 23089 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 23169 + - uid: 23090 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 23170 + - uid: 23091 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,6.5 parent: 2 - - uid: 23171 + - uid: 23092 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,6.5 parent: 2 - - uid: 23172 + - uid: 23093 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 23173 + - uid: 23094 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 23174 + - uid: 23095 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-16.5 parent: 2 - - uid: 23175 + - uid: 23096 components: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 23176 + - uid: 23097 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 23177 + - uid: 23098 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 23179 + - uid: 23099 components: - type: Transform pos: 77.5,-17.5 parent: 2 - - uid: 23180 + - uid: 23100 components: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 23181 + - uid: 23101 components: - type: Transform pos: -63.5,68.5 parent: 2 - - uid: 23182 + - uid: 23102 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 23183 + - uid: 23103 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 23184 + - uid: 23104 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,0.5 parent: 2 - - uid: 23185 + - uid: 23105 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 23186 + - uid: 23106 components: - type: Transform pos: -5.5,19.5 parent: 2 - - uid: 23187 + - uid: 23107 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 23188 + - uid: 23108 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 23189 + - uid: 23109 components: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 23190 + - uid: 23110 components: - type: Transform pos: -6.5,19.5 parent: 2 - - uid: 23191 + - uid: 23111 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 23192 + - uid: 23112 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 23193 + - uid: 23113 components: - type: Transform pos: -15.5,-42.5 parent: 2 - - uid: 23194 + - uid: 23114 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 23195 + - uid: 23115 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 23196 + - uid: 23116 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 23197 + - uid: 23117 components: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 23198 + - uid: 23118 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 23199 + - uid: 23119 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 23200 + - uid: 23120 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 23201 + - uid: 23121 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 23202 + - uid: 23122 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 23203 + - uid: 23123 components: - type: Transform pos: 15.5,16.5 parent: 2 - - uid: 23204 + - uid: 23124 components: - type: Transform pos: -70.5,-48.5 parent: 2 - - uid: 23205 + - uid: 23125 components: - type: Transform pos: 30.5,64.5 parent: 2 - - uid: 23206 + - uid: 23126 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 23207 + - uid: 23127 components: - type: Transform pos: 61.5,-8.5 parent: 2 - - uid: 23208 + - uid: 23128 components: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 23210 + - uid: 23129 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 23211 + - uid: 23130 components: - type: Transform pos: -44.5,-78.5 parent: 2 - - uid: 23212 + - uid: 23131 components: - type: Transform pos: -11.5,-38.5 parent: 2 - - uid: 23213 + - uid: 23132 components: - type: Transform pos: 23.5,-25.5 parent: 2 - - uid: 23214 + - uid: 23133 components: - type: Transform pos: 68.5,-14.5 parent: 2 - - uid: 23215 + - uid: 23134 components: - type: Transform pos: 33.5,-66.5 parent: 2 - - uid: 23216 + - uid: 23135 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 23217 + - uid: 23136 components: - type: Transform pos: 16.5,-56.5 parent: 2 - - uid: 23218 + - uid: 23137 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,67.5 parent: 2 - - uid: 23219 + - uid: 23138 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 23220 + - uid: 23139 components: - type: Transform pos: -42.5,-53.5 parent: 2 - - uid: 23221 + - uid: 23140 components: - type: Transform pos: -56.5,16.5 parent: 2 - - uid: 23222 + - uid: 23141 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 23223 + - uid: 23142 components: - type: Transform pos: -15.5,-36.5 parent: 2 - - uid: 23224 + - uid: 23143 components: - type: Transform pos: 6.5,17.5 parent: 2 - - uid: 23225 + - uid: 23144 components: - type: Transform pos: 3.5,19.5 parent: 2 - - uid: 23226 + - uid: 23145 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 2 - - uid: 23227 + - uid: 23146 components: - type: Transform pos: 4.5,19.5 parent: 2 - - uid: 23228 + - uid: 23147 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 23229 + - uid: 23148 components: - type: Transform pos: -75.5,8.5 parent: 2 - - uid: 23230 + - uid: 23149 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 23231 + - uid: 23150 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 23232 + - uid: 23151 components: - type: Transform pos: 2.5,19.5 parent: 2 - - uid: 23233 + - uid: 23152 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 23235 + - uid: 23153 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 23236 + - uid: 23154 components: - type: Transform pos: 0.5,19.5 parent: 2 - - uid: 23237 + - uid: 23155 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 23238 + - uid: 23156 components: - type: Transform pos: -75.5,29.5 parent: 2 - - uid: 23239 + - uid: 23157 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 23240 + - uid: 23158 components: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 23241 + - uid: 23159 components: - type: Transform pos: -50.5,23.5 parent: 2 - - uid: 23242 + - uid: 23160 components: - type: Transform pos: 19.5,-30.5 parent: 2 - - uid: 23243 + - uid: 23161 components: - type: Transform pos: 42.5,16.5 parent: 2 - - uid: 23244 + - uid: 23162 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 23245 + - uid: 23163 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 23246 + - uid: 23164 components: - type: Transform pos: 54.5,-7.5 parent: 2 - - uid: 23247 + - uid: 23165 components: - type: Transform pos: 50.5,-63.5 parent: 2 - - uid: 23248 + - uid: 23166 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 23249 + - uid: 23167 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 23250 + - uid: 23168 components: - type: Transform pos: 80.5,-35.5 parent: 2 - - uid: 23251 + - uid: 23169 components: - type: Transform pos: 77.5,-36.5 parent: 2 - - uid: 23252 + - uid: 23170 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 23253 + - uid: 23171 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 23254 + - uid: 23172 components: - type: Transform pos: 11.5,65.5 parent: 2 - - uid: 23255 + - uid: 23173 components: - type: Transform pos: 13.5,69.5 parent: 2 - - uid: 23256 + - uid: 23174 components: - type: Transform pos: 26.5,62.5 parent: 2 - - uid: 23257 + - uid: 23175 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 23258 + - uid: 23176 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 23259 + - uid: 23177 components: - type: Transform pos: 28.5,62.5 parent: 2 - - uid: 23260 + - uid: 23178 components: - type: Transform pos: 32.5,58.5 parent: 2 - - uid: 23261 + - uid: 23179 components: - type: Transform pos: 32.5,57.5 parent: 2 - - uid: 23262 + - uid: 23180 components: - type: Transform pos: 74.5,-27.5 parent: 2 - - uid: 23263 + - uid: 23181 components: - type: Transform pos: 29.5,62.5 parent: 2 - - uid: 23264 + - uid: 23182 components: - type: Transform pos: 10.5,65.5 parent: 2 - - uid: 23265 + - uid: 23183 components: - type: Transform pos: 77.5,-52.5 parent: 2 - - uid: 23266 + - uid: 23184 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 23267 + - uid: 23185 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 23268 + - uid: 23186 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 23269 + - uid: 23187 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 - - uid: 23270 + - uid: 23188 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,97.5 parent: 2 - - uid: 23271 + - uid: 23189 components: - type: Transform pos: -21.5,70.5 parent: 2 - - uid: 23272 + - uid: 23190 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 23273 + - uid: 23191 components: - type: Transform pos: -32.5,79.5 parent: 2 - - uid: 23274 + - uid: 23192 components: - type: Transform pos: -74.5,17.5 parent: 2 - - uid: 23275 + - uid: 23193 components: - type: Transform pos: -42.5,61.5 parent: 2 - - uid: 23276 + - uid: 23194 components: - type: Transform pos: -42.5,60.5 parent: 2 - - uid: 23277 + - uid: 23195 components: - type: Transform pos: 18.5,88.5 parent: 2 - - uid: 23278 + - uid: 23196 components: - type: Transform pos: 18.5,86.5 parent: 2 - - uid: 23279 + - uid: 23197 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,91.5 parent: 2 - - uid: 23280 + - uid: 23198 components: - type: Transform pos: 16.5,89.5 parent: 2 - - uid: 23281 + - uid: 23199 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,35.5 parent: 2 - - uid: 23282 + - uid: 23200 components: - type: Transform pos: 3.5,32.5 parent: 2 - - uid: 23283 + - uid: 23201 components: - type: Transform pos: 17.5,88.5 parent: 2 - - uid: 23284 + - uid: 23202 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,92.5 parent: 2 - - uid: 23285 + - uid: 23203 components: - type: Transform pos: -39.5,64.5 parent: 2 - - uid: 23286 + - uid: 23204 components: - type: Transform pos: 16.5,67.5 parent: 2 - - uid: 23287 + - uid: 23205 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 23288 + - uid: 23206 components: - type: Transform pos: 9.5,41.5 parent: 2 - - uid: 23289 + - uid: 23207 components: - type: Transform pos: 8.5,45.5 parent: 2 - - uid: 23290 + - uid: 23208 components: - type: Transform pos: 6.5,92.5 parent: 2 - - uid: 23291 + - uid: 23209 components: - type: Transform pos: 4.5,92.5 parent: 2 - - uid: 23292 + - uid: 23210 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 - - uid: 23293 + - uid: 23211 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 23294 + - uid: 23212 components: - type: Transform pos: -33.5,-9.5 parent: 2 - - uid: 23295 + - uid: 23213 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 23296 + - uid: 23214 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-18.5 parent: 2 - - uid: 23297 + - uid: 23215 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 23298 + - uid: 23216 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 23299 + - uid: 23217 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 23300 + - uid: 23218 components: - type: Transform rot: 1.5707963267948966 rad pos: -102.5,1.5 parent: 2 - - uid: 23301 + - uid: 23219 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 23302 + - uid: 23220 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 23303 + - uid: 23221 components: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 23304 + - uid: 23222 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 23305 + - uid: 23223 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 23306 + - uid: 23224 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-4.5 parent: 2 - - uid: 23307 + - uid: 23225 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 23308 + - uid: 23226 components: - type: Transform pos: 15.5,-37.5 parent: 2 - - uid: 23309 + - uid: 23227 components: - type: Transform pos: -61.5,18.5 parent: 2 - - uid: 23310 + - uid: 23228 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 23311 + - uid: 23229 components: - type: Transform pos: -76.5,61.5 parent: 2 - - uid: 23312 + - uid: 23230 components: - type: Transform pos: 58.5,-8.5 parent: 2 - - uid: 23313 + - uid: 23231 components: - type: Transform pos: -68.5,-46.5 parent: 2 - - uid: 23314 + - uid: 23232 components: - type: Transform pos: -70.5,-44.5 parent: 2 - - uid: 23315 + - uid: 23233 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 23316 + - uid: 23234 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 23317 + - uid: 23235 components: - type: Transform pos: 80.5,-13.5 parent: 2 - - uid: 23318 + - uid: 23236 components: - type: Transform pos: 62.5,-31.5 parent: 2 - - uid: 23319 + - uid: 23237 components: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 23320 + - uid: 23238 components: - type: Transform pos: 71.5,14.5 parent: 2 - - uid: 23321 + - uid: 23239 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 23322 + - uid: 23240 components: - type: Transform pos: -13.5,49.5 parent: 2 - - uid: 23323 + - uid: 23241 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 23324 + - uid: 23242 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,50.5 parent: 2 - - uid: 23325 + - uid: 23243 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,92.5 parent: 2 - - uid: 23326 + - uid: 23244 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 23327 + - uid: 23245 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,43.5 parent: 2 - - uid: 23328 + - uid: 23246 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 23329 + - uid: 23247 components: - type: Transform pos: 57.5,-42.5 parent: 2 - - uid: 23330 + - uid: 23248 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 23331 + - uid: 23249 components: - type: Transform pos: 71.5,16.5 parent: 2 - - uid: 23332 + - uid: 23250 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 23333 + - uid: 23251 components: - type: Transform pos: -59.5,9.5 parent: 2 - - uid: 23334 + - uid: 23252 components: - type: Transform pos: -37.5,64.5 parent: 2 - - uid: 23335 + - uid: 23253 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 23336 + - uid: 23254 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,89.5 parent: 2 - - uid: 23337 + - uid: 23255 components: - type: Transform pos: 10.5,32.5 parent: 2 - - uid: 23338 + - uid: 23256 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 23339 + - uid: 23257 components: - type: Transform pos: 74.5,-25.5 parent: 2 - - uid: 23340 + - uid: 23258 components: - type: Transform pos: -69.5,17.5 parent: 2 - - uid: 23341 + - uid: 23259 components: - type: Transform pos: -55.5,31.5 parent: 2 - - uid: 23342 + - uid: 23260 components: - type: Transform pos: -57.5,33.5 parent: 2 - - uid: 23343 + - uid: 23261 components: - type: Transform pos: -53.5,31.5 parent: 2 - - uid: 23344 + - uid: 23262 components: - type: Transform pos: 81.5,11.5 parent: 2 - - uid: 23345 + - uid: 23263 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 2 - - uid: 23346 + - uid: 23264 components: - type: Transform pos: -47.5,-0.5 parent: 2 - - uid: 23347 + - uid: 23265 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 2 - - uid: 23348 + - uid: 23266 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 2 - - uid: 23349 + - uid: 23267 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 23350 + - uid: 23268 components: - type: Transform pos: 16.5,65.5 parent: 2 - - uid: 23351 + - uid: 23269 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-58.5 parent: 2 - - uid: 23352 + - uid: 23270 components: - type: Transform pos: -20.5,10.5 parent: 2 - - uid: 23353 + - uid: 23271 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 23354 + - uid: 23272 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 23355 + - uid: 23273 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 23356 + - uid: 23274 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 23357 + - uid: 23275 components: - type: Transform pos: -61.5,53.5 parent: 2 - - uid: 23358 + - uid: 23276 components: - type: Transform pos: 66.5,-24.5 parent: 2 - - uid: 23359 + - uid: 23277 components: - type: Transform pos: 77.5,-22.5 parent: 2 - - uid: 23360 + - uid: 23278 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 23361 + - uid: 23279 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 23362 + - uid: 23280 components: - type: Transform pos: -53.5,39.5 parent: 2 - - uid: 23363 + - uid: 23281 components: - type: Transform pos: -60.5,51.5 parent: 2 - - uid: 23364 + - uid: 23282 components: - type: Transform pos: -51.5,33.5 parent: 2 - - uid: 23365 + - uid: 23283 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 23366 + - uid: 23284 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 23367 + - uid: 23285 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 23368 + - uid: 23286 components: - type: Transform pos: 5.5,18.5 parent: 2 - - uid: 23369 + - uid: 23287 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 23370 + - uid: 23288 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 23371 + - uid: 23289 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 23372 + - uid: 23290 components: - type: Transform pos: 15.5,-40.5 parent: 2 - - uid: 23373 + - uid: 23291 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 23374 + - uid: 23292 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 23375 + - uid: 23293 components: - type: Transform pos: -103.5,-7.5 parent: 2 - - uid: 23376 + - uid: 23294 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 23377 + - uid: 23295 components: - type: Transform pos: 4.5,63.5 parent: 2 - - uid: 23378 + - uid: 23296 components: - type: Transform pos: -36.5,17.5 parent: 2 - - uid: 23379 + - uid: 23297 components: - type: Transform pos: 39.5,47.5 parent: 2 - - uid: 23380 + - uid: 23298 components: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 23381 + - uid: 23299 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 23382 + - uid: 23300 components: - type: Transform pos: 4.5,89.5 parent: 2 - - uid: 23383 + - uid: 23301 components: - type: Transform pos: 4.5,86.5 parent: 2 - - uid: 23384 + - uid: 23302 components: - type: Transform pos: 63.5,-8.5 parent: 2 - - uid: 23385 + - uid: 23303 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 23386 + - uid: 23304 components: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 23387 + - uid: 23305 components: - type: Transform pos: 72.5,-14.5 parent: 2 - - uid: 23388 + - uid: 23306 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 23389 + - uid: 23307 components: - type: Transform pos: -66.5,53.5 parent: 2 - - uid: 23390 + - uid: 23308 components: - type: Transform pos: -55.5,39.5 parent: 2 - - uid: 23391 + - uid: 23309 components: - type: Transform pos: -31.5,95.5 parent: 2 - - uid: 23392 + - uid: 23310 components: - type: Transform pos: -30.5,-9.5 parent: 2 - - uid: 23393 + - uid: 23311 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 23394 + - uid: 23312 components: - type: Transform pos: 66.5,-27.5 parent: 2 - - uid: 23395 + - uid: 23313 components: - type: Transform pos: 81.5,-22.5 parent: 2 - - uid: 23396 + - uid: 23314 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-5.5 parent: 2 - - uid: 23397 + - uid: 23315 components: - type: Transform pos: 76.5,-15.5 parent: 2 - - uid: 23398 + - uid: 23316 components: - type: Transform pos: -44.5,-75.5 parent: 2 - - uid: 23399 + - uid: 23317 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 - - uid: 23400 + - uid: 23318 components: - type: Transform pos: 71.5,15.5 parent: 2 - - uid: 23401 + - uid: 23319 components: - type: Transform pos: -73.5,17.5 parent: 2 - - uid: 23402 + - uid: 23320 components: - type: Transform pos: -75.5,17.5 parent: 2 - - uid: 23403 + - uid: 23321 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 23404 + - uid: 23322 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 23405 + - uid: 23323 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 23406 + - uid: 23324 components: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 23407 + - uid: 23325 components: - type: Transform pos: -11.5,-42.5 parent: 2 - - uid: 23408 + - uid: 23326 components: - type: Transform pos: -20.5,-51.5 parent: 2 - - uid: 23409 + - uid: 23327 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 23410 + - uid: 23328 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 23411 + - uid: 23329 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 23412 + - uid: 23330 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 - - uid: 23413 + - uid: 23331 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 23414 + - uid: 23332 components: - type: Transform pos: -12.5,21.5 parent: 2 - - uid: 23415 + - uid: 23333 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-61.5 parent: 2 - - uid: 23416 + - uid: 23334 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,6.5 parent: 2 - - uid: 23417 + - uid: 23335 components: - type: Transform pos: 44.5,-59.5 parent: 2 - - uid: 23418 + - uid: 23336 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 23419 + - uid: 23337 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 23420 + - uid: 23338 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,33.5 parent: 2 - - uid: 23421 + - uid: 23339 components: - type: Transform pos: 37.5,-62.5 parent: 2 - - uid: 23422 + - uid: 23340 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 23423 + - uid: 23341 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,33.5 parent: 2 - - uid: 23424 + - uid: 23342 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 23425 + - uid: 23343 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 23426 + - uid: 23344 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 23427 + - uid: 23345 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,32.5 parent: 2 - - uid: 23428 + - uid: 23346 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,33.5 parent: 2 - - uid: 23429 + - uid: 23347 components: - type: Transform pos: -86.5,12.5 parent: 2 - - uid: 23430 + - uid: 23348 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-19.5 parent: 2 - - uid: 23431 + - uid: 23349 components: - type: Transform pos: -60.5,-53.5 parent: 2 - - uid: 23432 + - uid: 23350 components: - type: Transform pos: -77.5,39.5 parent: 2 - - uid: 23433 + - uid: 23351 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 23434 + - uid: 23352 components: - type: Transform pos: 55.5,-41.5 parent: 2 - - uid: 23435 + - uid: 23353 components: - type: Transform pos: 31.5,88.5 parent: 2 - - uid: 23436 + - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-19.5 parent: 2 - - uid: 23437 + - uid: 23355 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 23438 + - uid: 23356 components: - type: Transform pos: 6.5,38.5 parent: 2 - - uid: 23439 + - uid: 23357 components: - type: Transform pos: 82.5,-19.5 parent: 2 - - uid: 23440 + - uid: 23358 components: - type: Transform pos: 38.5,47.5 parent: 2 - - uid: 23441 + - uid: 23359 components: - type: Transform pos: -60.5,-82.5 parent: 2 - - uid: 23442 + - uid: 23360 components: - type: Transform pos: -65.5,-51.5 parent: 2 - - uid: 23443 + - uid: 23361 components: - type: Transform pos: -60.5,68.5 parent: 2 - - uid: 23444 + - uid: 23362 components: - type: Transform pos: -83.5,78.5 parent: 2 - - uid: 23445 + - uid: 23363 components: - type: Transform pos: -59.5,68.5 parent: 2 - - uid: 23446 + - uid: 23364 components: - type: Transform pos: 77.5,-37.5 parent: 2 - - uid: 23447 + - uid: 23365 components: - type: Transform pos: 81.5,-35.5 parent: 2 - - uid: 23448 + - uid: 23366 components: - type: Transform pos: 70.5,-25.5 parent: 2 - - uid: 23449 + - uid: 23367 components: - type: Transform pos: 89.5,-43.5 parent: 2 - - uid: 23450 + - uid: 23368 components: - type: Transform pos: 77.5,-49.5 parent: 2 - - uid: 23451 + - uid: 23369 components: - type: Transform pos: 26.5,105.5 parent: 2 - - uid: 23452 + - uid: 23370 components: - type: Transform pos: 84.5,-41.5 parent: 2 - - uid: 23453 + - uid: 23371 components: - type: Transform pos: 41.5,-79.5 parent: 2 - - uid: 23454 + - uid: 23372 components: - type: Transform pos: 33.5,102.5 parent: 2 - - uid: 23455 + - uid: 23373 components: - type: Transform pos: -77.5,44.5 parent: 2 - - uid: 23456 + - uid: 23374 components: - type: Transform pos: -79.5,-36.5 parent: 2 - - uid: 23457 + - uid: 23375 components: - type: Transform pos: -77.5,43.5 parent: 2 - - uid: 23458 + - uid: 23376 components: - type: Transform pos: -55.5,-51.5 parent: 2 - - uid: 23459 + - uid: 23377 components: - type: Transform pos: 31.5,-56.5 parent: 2 - - uid: 23460 + - uid: 23378 components: - type: Transform pos: 13.5,70.5 parent: 2 - - uid: 23461 + - uid: 23379 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 23462 + - uid: 23380 components: - type: Transform pos: 32.5,-74.5 parent: 2 - - uid: 23463 + - uid: 23381 components: - type: Transform pos: -24.5,-84.5 parent: 2 - - uid: 23464 + - uid: 23382 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 23465 + - uid: 23383 components: - type: Transform pos: 77.5,-39.5 parent: 2 - - uid: 23466 + - uid: 23384 components: - type: Transform pos: 83.5,-37.5 parent: 2 - - uid: 23467 + - uid: 23385 components: - type: Transform pos: -53.5,69.5 parent: 2 - - uid: 23468 + - uid: 23386 components: - type: Transform pos: -52.5,69.5 parent: 2 - - uid: 23469 + - uid: 23387 components: - type: Transform pos: 83.5,-52.5 parent: 2 - - uid: 23470 + - uid: 23388 components: - type: Transform pos: 83.5,-38.5 parent: 2 - - uid: 23471 + - uid: 23389 components: - type: Transform pos: 83.5,-39.5 parent: 2 - - uid: 23472 + - uid: 23390 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 23473 + - uid: 23391 components: - type: Transform pos: 36.5,98.5 parent: 2 - - uid: 23474 + - uid: 23392 components: - type: Transform pos: 37.5,94.5 parent: 2 - - uid: 23475 + - uid: 23393 components: - type: Transform pos: 37.5,95.5 parent: 2 - - uid: 23476 + - uid: 23394 components: - type: Transform pos: 37.5,92.5 parent: 2 - - uid: 23477 + - uid: 23395 components: - type: Transform pos: 36.5,92.5 parent: 2 - - uid: 23478 + - uid: 23396 components: - type: Transform pos: 36.5,101.5 parent: 2 - - uid: 23479 + - uid: 23397 components: - type: Transform pos: 36.5,99.5 parent: 2 - - uid: 23480 + - uid: 23398 components: - type: Transform pos: 83.5,-40.5 parent: 2 - - uid: 23481 + - uid: 23399 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,7.5 parent: 2 - - uid: 23482 + - uid: 23400 components: - type: Transform pos: 25.5,85.5 parent: 2 - - uid: 23483 + - uid: 23401 components: - type: Transform pos: -43.5,-82.5 parent: 2 - - uid: 23484 + - uid: 23402 components: - type: Transform pos: -44.5,66.5 parent: 2 - - uid: 23485 + - uid: 23403 components: - type: Transform pos: -45.5,68.5 parent: 2 - - uid: 23486 + - uid: 23404 components: - type: Transform pos: -53.5,-75.5 parent: 2 - - uid: 23487 + - uid: 23405 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,6.5 parent: 2 - - uid: 23488 + - uid: 23406 components: - type: Transform pos: -49.5,69.5 parent: 2 - - uid: 23489 + - uid: 23407 components: - type: Transform pos: -42.5,-84.5 parent: 2 - - uid: 23490 + - uid: 23408 components: - type: Transform pos: -45.5,66.5 parent: 2 - - uid: 23491 + - uid: 23409 components: - type: Transform pos: 68.5,-12.5 parent: 2 - - uid: 23492 + - uid: 23410 components: - type: Transform pos: 74.5,-14.5 parent: 2 - - uid: 23493 + - uid: 23411 components: - type: Transform pos: 78.5,-12.5 parent: 2 - - uid: 23494 + - uid: 23412 components: - type: Transform pos: 58.5,-31.5 parent: 2 - - uid: 23495 + - uid: 23413 components: - type: Transform pos: 72.5,-27.5 parent: 2 - - uid: 23496 + - uid: 23414 components: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 23497 + - uid: 23415 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 23498 + - uid: 23416 components: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 23499 + - uid: 23417 components: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 23500 + - uid: 23418 components: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 23501 + - uid: 23419 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 23502 + - uid: 23420 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 23503 + - uid: 23421 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 23504 + - uid: 23422 components: - type: Transform pos: 83.5,-36.5 parent: 2 - - uid: 23505 + - uid: 23423 components: - type: Transform pos: 72.5,-47.5 parent: 2 - - uid: 23506 + - uid: 23424 components: - type: Transform pos: 82.5,-35.5 parent: 2 - - uid: 23507 + - uid: 23425 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-71.5 parent: 2 - - uid: 23508 + - uid: 23426 components: - type: Transform pos: 85.5,-41.5 parent: 2 - - uid: 23509 + - uid: 23427 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 - - uid: 23510 + - uid: 23428 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 23511 + - uid: 23429 components: - type: Transform pos: -79.5,-37.5 parent: 2 - - uid: 23512 + - uid: 23430 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,6.5 parent: 2 - - uid: 23513 + - uid: 23431 components: - type: Transform pos: -59.5,-81.5 parent: 2 - - uid: 23514 + - uid: 23432 components: - type: Transform pos: -53.5,-76.5 parent: 2 - - uid: 23515 + - uid: 23433 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-19.5 parent: 2 - - uid: 23516 + - uid: 23434 components: - type: Transform pos: -77.5,38.5 parent: 2 - - uid: 23517 + - uid: 23435 components: - type: Transform pos: 30.5,88.5 parent: 2 - - uid: 23518 + - uid: 23436 components: - type: Transform pos: -56.5,68.5 parent: 2 - - uid: 23519 + - uid: 23437 components: - type: Transform pos: -67.5,79.5 parent: 2 - - uid: 23520 + - uid: 23438 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 23521 + - uid: 23439 components: - type: Transform pos: -66.5,9.5 parent: 2 - - uid: 23522 + - uid: 23440 components: - type: Transform pos: 23.5,58.5 parent: 2 - - uid: 23523 + - uid: 23441 components: - type: Transform pos: 73.5,-12.5 parent: 2 - - uid: 23524 + - uid: 23442 components: - type: Transform pos: 66.5,-28.5 parent: 2 - - uid: 23525 + - uid: 23443 components: - type: Transform pos: -23.5,-84.5 parent: 2 - - uid: 23526 + - uid: 23444 components: - type: Transform pos: 36.5,89.5 parent: 2 - - uid: 23527 + - uid: 23445 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 23528 + - uid: 23446 components: - type: Transform pos: 30.5,86.5 parent: 2 - - uid: 23529 + - uid: 23447 components: - type: Transform pos: 33.5,88.5 parent: 2 - - uid: 23530 + - uid: 23448 components: - type: Transform pos: 89.5,-47.5 parent: 2 - - uid: 23531 + - uid: 23449 components: - type: Transform pos: 24.5,70.5 parent: 2 - - uid: 23532 + - uid: 23450 components: - type: Transform pos: 24.5,71.5 parent: 2 - - uid: 23533 + - uid: 23451 components: - type: Transform pos: 16.5,69.5 parent: 2 - - uid: 23534 + - uid: 23452 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 23535 + - uid: 23453 components: - type: Transform pos: -59.5,5.5 parent: 2 - - uid: 23536 + - uid: 23454 components: - type: Transform pos: 2.5,46.5 parent: 2 - - uid: 23537 + - uid: 23455 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,88.5 parent: 2 - - uid: 23538 + - uid: 23456 components: - type: Transform pos: -11.5,-64.5 parent: 2 - - uid: 23539 + - uid: 23457 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,89.5 parent: 2 - - uid: 23540 + - uid: 23458 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 23541 + - uid: 23459 components: - type: Transform pos: 5.5,32.5 parent: 2 - - uid: 23542 + - uid: 23460 components: - type: Transform pos: 16.5,33.5 parent: 2 - - uid: 23543 + - uid: 23461 components: - type: Transform pos: 12.5,39.5 parent: 2 - - uid: 23544 + - uid: 23462 components: - type: Transform pos: 8.5,39.5 parent: 2 - - uid: 23545 + - uid: 23463 components: - type: Transform pos: 8.5,40.5 parent: 2 - - uid: 23546 + - uid: 23464 components: - type: Transform pos: -31.5,75.5 parent: 2 - - uid: 23547 + - uid: 23465 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 23548 + - uid: 23466 components: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 23549 + - uid: 23467 components: - type: Transform pos: -103.5,-2.5 parent: 2 - - uid: 23550 + - uid: 23468 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 23551 + - uid: 23469 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,31.5 parent: 2 - - uid: 23552 + - uid: 23470 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,41.5 parent: 2 - - uid: 23553 + - uid: 23471 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,42.5 parent: 2 - - uid: 23554 + - uid: 23472 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 parent: 2 - - uid: 23555 + - uid: 23473 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - uid: 23556 + - uid: 23474 components: - type: Transform pos: 37.5,47.5 parent: 2 - - uid: 23557 + - uid: 23475 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,1.5 parent: 2 - - uid: 23558 + - uid: 23476 components: - type: Transform pos: 34.5,47.5 parent: 2 - - uid: 23559 + - uid: 23477 components: - type: Transform pos: 35.5,47.5 parent: 2 - - uid: 23560 + - uid: 23478 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 - - uid: 23561 + - uid: 23479 components: - type: Transform pos: 39.5,50.5 parent: 2 - - uid: 23562 + - uid: 23480 components: - type: Transform pos: 38.5,53.5 parent: 2 - - uid: 23563 + - uid: 23481 components: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 23564 + - uid: 23482 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,39.5 parent: 2 - - uid: 23565 + - uid: 23483 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 2 - - uid: 23566 + - uid: 23484 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 23567 + - uid: 23485 components: - type: Transform pos: 63.5,-31.5 parent: 2 - - uid: 23568 + - uid: 23486 components: - type: Transform pos: -27.5,75.5 parent: 2 - - uid: 23569 + - uid: 23487 components: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 23570 + - uid: 23488 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 23571 + - uid: 23489 components: - type: Transform pos: -23.5,49.5 parent: 2 - - uid: 23572 + - uid: 23490 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 23573 + - uid: 23491 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-56.5 parent: 2 - - uid: 23574 + - uid: 23492 components: - type: Transform pos: 59.5,-8.5 parent: 2 - - uid: 23575 + - uid: 23493 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 23576 + - uid: 23494 components: - type: Transform pos: 41.5,-75.5 parent: 2 - - uid: 23577 + - uid: 23495 components: - type: Transform pos: -77.5,63.5 parent: 2 - - uid: 23578 + - uid: 23496 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 23579 + - uid: 23497 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-19.5 parent: 2 - - uid: 23580 + - uid: 23498 components: - type: Transform pos: -79.5,11.5 parent: 2 - - uid: 23581 + - uid: 23499 components: - type: Transform pos: -77.5,65.5 parent: 2 - - uid: 23582 + - uid: 23500 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,4.5 parent: 2 - - uid: 23583 + - uid: 23501 components: - type: Transform pos: -71.5,17.5 parent: 2 - - uid: 23584 + - uid: 23502 components: - type: Transform pos: -45.5,29.5 parent: 2 - - uid: 23585 + - uid: 23503 components: - type: Transform pos: -45.5,32.5 parent: 2 - - uid: 23586 + - uid: 23504 components: - type: Transform pos: -44.5,17.5 parent: 2 - - uid: 23587 + - uid: 23505 components: - type: Transform pos: -45.5,33.5 parent: 2 - - uid: 23588 + - uid: 23506 components: - type: Transform pos: -45.5,34.5 parent: 2 - - uid: 23589 + - uid: 23507 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 23590 + - uid: 23508 components: - type: Transform pos: -51.5,67.5 parent: 2 - - uid: 23591 + - uid: 23509 components: - type: Transform pos: 38.5,-79.5 parent: 2 - - uid: 23592 + - uid: 23510 components: - type: Transform pos: -89.5,15.5 parent: 2 - - uid: 23593 + - uid: 23511 components: - type: Transform pos: -89.5,13.5 parent: 2 - - uid: 23594 + - uid: 23512 components: - type: Transform pos: -53.5,-73.5 parent: 2 - - uid: 23595 + - uid: 23513 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-21.5 parent: 2 - - uid: 23596 + - uid: 23514 components: - type: Transform pos: -75.5,44.5 parent: 2 - - uid: 23597 + - uid: 23515 components: - type: Transform pos: -58.5,-92.5 parent: 2 - - uid: 23598 + - uid: 23516 components: - type: Transform pos: -59.5,-92.5 parent: 2 - - uid: 23599 + - uid: 23517 components: - type: Transform pos: -53.5,-95.5 parent: 2 - - uid: 23600 + - uid: 23518 components: - type: Transform pos: -66.5,69.5 parent: 2 - - uid: 23601 + - uid: 23519 components: - type: Transform pos: -77.5,33.5 parent: 2 - - uid: 23602 + - uid: 23520 components: - type: Transform pos: -56.5,66.5 parent: 2 - - uid: 23603 + - uid: 23521 components: - type: Transform pos: -43.5,-90.5 parent: 2 - - uid: 23604 + - uid: 23522 components: - type: Transform pos: -59.5,-91.5 parent: 2 - - uid: 23605 + - uid: 23523 components: - type: Transform pos: -49.5,-72.5 parent: 2 - - uid: 23606 + - uid: 23524 components: - type: Transform pos: -75.5,34.5 parent: 2 - - uid: 23607 + - uid: 23525 components: - type: Transform pos: -77.5,46.5 parent: 2 - - uid: 23608 + - uid: 23526 components: - type: Transform pos: -66.5,-51.5 parent: 2 - - uid: 23609 + - uid: 23527 components: - type: Transform pos: -60.5,-83.5 parent: 2 - - uid: 23610 + - uid: 23528 components: - type: Transform pos: -75.5,47.5 parent: 2 - - uid: 23611 + - uid: 23529 components: - type: Transform pos: -77.5,37.5 parent: 2 - - uid: 23612 + - uid: 23530 components: - type: Transform pos: -66.5,72.5 parent: 2 - - uid: 23613 + - uid: 23531 components: - type: Transform pos: -43.5,-92.5 parent: 2 - - uid: 23614 + - uid: 23532 components: - type: Transform pos: -55.5,-92.5 parent: 2 - - uid: 23615 + - uid: 23533 components: - type: Transform pos: -57.5,66.5 parent: 2 - - uid: 23616 + - uid: 23534 components: - type: Transform pos: -77.5,47.5 parent: 2 - - uid: 23617 + - uid: 23535 components: - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 23618 + - uid: 23536 components: - type: Transform pos: -60.5,-84.5 parent: 2 - - uid: 23619 + - uid: 23537 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 23620 + - uid: 23538 components: - type: Transform pos: -56.5,-92.5 parent: 2 - - uid: 23621 + - uid: 23539 components: - type: Transform pos: -49.5,-95.5 parent: 2 - - uid: 23622 + - uid: 23540 components: - type: Transform pos: -75.5,-43.5 parent: 2 - - uid: 23623 + - uid: 23541 components: - type: Transform pos: -75.5,-42.5 parent: 2 - - uid: 23624 + - uid: 23542 components: - type: Transform pos: -75.5,-41.5 parent: 2 - - uid: 23625 + - uid: 23543 components: - type: Transform pos: -76.5,54.5 parent: 2 - - uid: 23626 + - uid: 23544 components: - type: Transform pos: -75.5,-40.5 parent: 2 - - uid: 23627 + - uid: 23545 components: - type: Transform pos: 66.5,-17.5 parent: 2 - - uid: 23628 + - uid: 23546 components: - type: Transform pos: -49.5,-94.5 parent: 2 - - uid: 23629 + - uid: 23547 components: - type: Transform pos: -75.5,26.5 parent: 2 - - uid: 23630 + - uid: 23548 components: - type: Transform pos: -75.5,27.5 parent: 2 - - uid: 23631 + - uid: 23549 components: - type: Transform pos: -46.5,-78.5 parent: 2 - - uid: 23632 + - uid: 23550 components: - type: Transform pos: -52.5,67.5 parent: 2 - - uid: 23633 + - uid: 23551 components: - type: Transform pos: -67.5,69.5 parent: 2 - - uid: 23634 + - uid: 23552 components: - type: Transform pos: -50.5,-95.5 parent: 2 - - uid: 23635 + - uid: 23553 components: - type: Transform pos: -75.5,52.5 parent: 2 - - uid: 23636 + - uid: 23554 components: - type: Transform pos: -77.5,-43.5 parent: 2 - - uid: 23637 + - uid: 23555 components: - type: Transform pos: 20.5,98.5 parent: 2 - - uid: 23638 + - uid: 23556 components: - type: Transform pos: 19.5,98.5 parent: 2 - - uid: 23639 + - uid: 23557 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 23640 + - uid: 23558 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 23641 + - uid: 23559 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 23642 + - uid: 23560 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 23643 + - uid: 23561 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 23644 + - uid: 23562 components: - type: Transform pos: 83.5,-50.5 parent: 2 - - uid: 23645 + - uid: 23563 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 23646 + - uid: 23564 components: - type: Transform pos: 61.5,-31.5 parent: 2 - - uid: 23647 + - uid: 23565 components: - type: Transform pos: 85.5,15.5 parent: 2 - - uid: 23648 + - uid: 23566 components: - type: Transform pos: -75.5,28.5 parent: 2 - - uid: 23649 + - uid: 23567 components: - type: Transform pos: -75.5,45.5 parent: 2 - - uid: 23650 + - uid: 23568 components: - type: Transform pos: 64.5,-26.5 parent: 2 - - uid: 23651 + - uid: 23569 components: - type: Transform pos: 65.5,-12.5 parent: 2 - - uid: 23652 + - uid: 23570 components: - type: Transform pos: -89.5,14.5 parent: 2 - - uid: 23653 + - uid: 23571 components: - type: Transform pos: -82.5,66.5 parent: 2 - - uid: 23654 + - uid: 23572 components: - type: Transform pos: -87.5,15.5 parent: 2 - - uid: 23655 + - uid: 23573 components: - type: Transform pos: -80.5,66.5 parent: 2 - - uid: 23656 + - uid: 23574 components: - type: Transform pos: -84.5,74.5 parent: 2 - - uid: 23657 + - uid: 23575 components: - type: Transform pos: -84.5,72.5 parent: 2 - - uid: 23658 + - uid: 23576 components: - type: Transform pos: -53.5,-72.5 parent: 2 - - uid: 23659 + - uid: 23577 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-19.5 parent: 2 - - uid: 23660 + - uid: 23578 components: - type: Transform pos: -84.5,76.5 parent: 2 - - uid: 23661 + - uid: 23579 components: - type: Transform pos: -83.5,66.5 parent: 2 - - uid: 23662 + - uid: 23580 components: - type: Transform pos: 78.5,-13.5 parent: 2 - - uid: 23663 + - uid: 23581 components: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 23664 + - uid: 23582 components: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 23665 + - uid: 23583 components: - type: Transform pos: 82.5,-17.5 parent: 2 - - uid: 23666 + - uid: 23584 components: - type: Transform pos: 79.5,-22.5 parent: 2 - - uid: 23667 + - uid: 23585 components: - type: Transform pos: 81.5,-17.5 parent: 2 - - uid: 23668 + - uid: 23586 components: - type: Transform pos: -65.5,-48.5 parent: 2 - - uid: 23669 + - uid: 23587 components: - type: Transform pos: -41.5,33.5 parent: 2 - - uid: 23670 + - uid: 23588 components: - type: Transform pos: -67.5,36.5 parent: 2 - - uid: 23671 + - uid: 23589 components: - type: Transform pos: -41.5,32.5 parent: 2 - - uid: 23672 + - uid: 23590 components: - type: Transform pos: -77.5,27.5 parent: 2 - - uid: 23673 + - uid: 23591 components: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 23674 + - uid: 23592 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 23675 + - uid: 23593 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 23676 + - uid: 23594 components: - type: Transform pos: -59.5,-89.5 parent: 2 - - uid: 23677 + - uid: 23595 components: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 23678 + - uid: 23596 components: - type: Transform pos: -61.5,-2.5 parent: 2 - - uid: 23679 + - uid: 23597 components: - type: Transform pos: 30.5,-27.5 parent: 2 - - uid: 23680 + - uid: 23598 components: - type: Transform pos: -56.5,57.5 parent: 2 - - uid: 23681 + - uid: 23599 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,33.5 parent: 2 - - uid: 23682 + - uid: 23600 components: - type: Transform pos: 21.5,-49.5 parent: 2 - - uid: 23683 + - uid: 23601 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 - - uid: 23684 + - uid: 23602 components: - type: Transform pos: -14.5,-21.5 parent: 2 - - uid: 23685 + - uid: 23603 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 23686 + - uid: 23604 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 23687 + - uid: 23605 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 23688 + - uid: 23606 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-63.5 parent: 2 - - uid: 23689 + - uid: 23607 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 23690 + - uid: 23608 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 23691 + - uid: 23609 components: - type: Transform pos: -75.5,33.5 parent: 2 - - uid: 23692 + - uid: 23610 components: - type: Transform pos: -60.5,-87.5 parent: 2 - - uid: 23693 + - uid: 23611 components: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 23694 + - uid: 23612 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 23695 + - uid: 23613 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 23696 + - uid: 23614 components: - type: Transform pos: 50.5,-60.5 parent: 2 - - uid: 23697 + - uid: 23615 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 23698 + - uid: 23616 components: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 23699 + - uid: 23617 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 - - uid: 23700 + - uid: 23618 components: - type: Transform pos: 7.5,91.5 parent: 2 - - uid: 23701 + - uid: 23619 components: - type: Transform pos: 8.5,90.5 parent: 2 - - uid: 23702 + - uid: 23620 components: - type: Transform pos: 70.5,-12.5 parent: 2 - - uid: 23703 + - uid: 23621 components: - type: Transform pos: 19.5,92.5 parent: 2 - - uid: 23704 + - uid: 23622 components: - type: Transform pos: -63.5,-48.5 parent: 2 - - uid: 23705 + - uid: 23623 components: - type: Transform pos: -43.5,27.5 parent: 2 - - uid: 23706 + - uid: 23624 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 23707 + - uid: 23625 components: - type: Transform pos: -67.5,13.5 parent: 2 - - uid: 23708 + - uid: 23626 components: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 23709 + - uid: 23627 components: - type: Transform pos: 33.5,47.5 parent: 2 - - uid: 23710 + - uid: 23628 components: - type: Transform pos: 29.5,53.5 parent: 2 - - uid: 23711 + - uid: 23629 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-67.5 parent: 2 - - uid: 23712 + - uid: 23630 components: - type: Transform pos: 20.5,99.5 parent: 2 - - uid: 23713 + - uid: 23631 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-21.5 parent: 2 - - uid: 23714 + - uid: 23632 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-70.5 parent: 2 - - uid: 23715 + - uid: 23633 components: - type: Transform pos: -77.5,42.5 parent: 2 - - uid: 23716 + - uid: 23634 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 23717 + - uid: 23635 components: - type: Transform pos: 76.5,-14.5 parent: 2 - - uid: 23718 + - uid: 23636 components: - type: Transform pos: -63.5,53.5 parent: 2 - - uid: 23719 + - uid: 23637 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 23720 + - uid: 23638 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 23721 + - uid: 23639 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 23722 + - uid: 23640 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 23723 + - uid: 23641 components: - type: Transform pos: -4.5,19.5 parent: 2 - - uid: 23724 + - uid: 23642 components: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 23725 + - uid: 23643 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-60.5 parent: 2 - - uid: 23726 + - uid: 23644 components: - type: Transform pos: -105.5,-3.5 parent: 2 - - uid: 23727 + - uid: 23645 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 23728 + - uid: 23646 components: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 23729 + - uid: 23647 components: - type: Transform pos: -105.5,-2.5 parent: 2 - - uid: 23730 + - uid: 23648 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 23731 + - uid: 23649 components: - type: Transform pos: -103.5,-4.5 parent: 2 - - uid: 23732 + - uid: 23650 components: - type: Transform pos: 20.5,89.5 parent: 2 - - uid: 23733 + - uid: 23651 components: - type: Transform pos: 87.5,-41.5 parent: 2 - - uid: 23734 + - uid: 23652 components: - type: Transform pos: 29.5,85.5 parent: 2 - - uid: 23735 + - uid: 23653 components: - type: Transform pos: 20.5,85.5 parent: 2 - - uid: 23736 + - uid: 23654 components: - type: Transform pos: 21.5,85.5 parent: 2 - - uid: 23737 + - uid: 23655 components: - type: Transform pos: 30.5,85.5 parent: 2 - - uid: 23738 + - uid: 23656 components: - type: Transform pos: 86.5,-41.5 parent: 2 - - uid: 23739 + - uid: 23657 components: - type: Transform pos: 67.5,-27.5 parent: 2 - - uid: 23740 + - uid: 23658 components: - type: Transform pos: -49.5,56.5 parent: 2 - - uid: 23741 + - uid: 23659 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,6.5 parent: 2 - - uid: 23742 + - uid: 23660 components: - type: Transform pos: -58.5,68.5 parent: 2 - - uid: 23743 + - uid: 23661 components: - type: Transform pos: 37.5,98.5 parent: 2 - - uid: 23744 + - uid: 23662 components: - type: Transform pos: 83.5,-35.5 parent: 2 - - uid: 23745 + - uid: 23663 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 23746 + - uid: 23664 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 23747 + - uid: 23665 components: - type: Transform pos: -50.5,56.5 parent: 2 - - uid: 23748 + - uid: 23666 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - uid: 23749 + - uid: 23667 components: - type: Transform pos: -3.5,-60.5 parent: 2 - - uid: 23750 + - uid: 23668 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-55.5 parent: 2 - - uid: 23751 + - uid: 23669 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 23752 + - uid: 23670 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-60.5 parent: 2 - - uid: 23753 + - uid: 23671 components: - type: Transform pos: 3.5,82.5 parent: 2 - - uid: 23754 + - uid: 23672 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 23755 + - uid: 23673 components: - type: Transform pos: -44.5,-73.5 parent: 2 - - uid: 23756 + - uid: 23674 components: - type: Transform pos: -44.5,-72.5 parent: 2 - - uid: 23757 + - uid: 23675 components: - type: Transform pos: 4.5,75.5 parent: 2 - - uid: 23758 + - uid: 23676 components: - type: Transform pos: 7.5,-77.5 parent: 2 - - uid: 23759 + - uid: 23677 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 23760 + - uid: 23678 components: - type: Transform pos: -66.5,68.5 parent: 2 - - uid: 23761 + - uid: 23679 components: - type: Transform pos: 83.5,-51.5 parent: 2 - - uid: 23762 + - uid: 23680 components: - type: Transform pos: 6.5,-78.5 parent: 2 - - uid: 23763 + - uid: 23681 components: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 23764 + - uid: 23682 components: - type: Transform pos: 26.5,85.5 parent: 2 - - uid: 23765 + - uid: 23683 components: - type: Transform pos: 19.5,95.5 parent: 2 - - uid: 23766 + - uid: 23684 components: - type: Transform pos: -86.5,11.5 parent: 2 - - uid: 23767 + - uid: 23685 components: - type: Transform pos: 78.5,-20.5 parent: 2 - - uid: 23768 + - uid: 23686 components: - type: Transform pos: 4.5,-78.5 parent: 2 - - uid: 23769 + - uid: 23687 components: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 23770 + - uid: 23688 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-46.5 parent: 2 - - uid: 23771 + - uid: 23689 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 - - uid: 23772 + - uid: 23690 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-60.5 parent: 2 - - uid: 23773 + - uid: 23691 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,91.5 parent: 2 - - uid: 23774 + - uid: 23692 components: - type: Transform pos: -36.5,64.5 parent: 2 - - uid: 23775 + - uid: 23693 components: - type: Transform pos: 11.5,-66.5 parent: 2 - - uid: 23776 + - uid: 23694 components: - type: Transform pos: 79.5,-17.5 parent: 2 - - uid: 23777 + - uid: 23695 components: - type: Transform pos: -11.5,-67.5 parent: 2 - - uid: 23778 + - uid: 23696 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-68.5 parent: 2 - - uid: 23779 + - uid: 23697 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,89.5 parent: 2 - - uid: 23780 + - uid: 23698 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 23781 + - uid: 23699 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 23782 + - uid: 23700 components: - type: Transform pos: 16.5,72.5 parent: 2 - - uid: 23783 + - uid: 23701 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,94.5 parent: 2 - - uid: 23784 + - uid: 23702 components: - type: Transform pos: 78.5,-14.5 parent: 2 - - uid: 23785 + - uid: 23703 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 23786 + - uid: 23704 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-56.5 parent: 2 - - uid: 23787 + - uid: 23705 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 23788 + - uid: 23706 components: - type: Transform pos: -42.5,-52.5 parent: 2 - - uid: 23789 + - uid: 23707 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 23790 + - uid: 23708 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 23791 + - uid: 23709 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 23792 + - uid: 23710 components: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 23793 + - uid: 23711 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 23794 + - uid: 23712 components: - type: Transform pos: 2.5,-58.5 parent: 2 - - uid: 23795 + - uid: 23713 components: - type: Transform pos: -75.5,43.5 parent: 2 - - uid: 23796 + - uid: 23714 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-64.5 parent: 2 - - uid: 23797 + - uid: 23715 components: - type: Transform pos: 80.5,-15.5 parent: 2 - - uid: 23798 + - uid: 23716 components: - type: Transform pos: -59.5,-82.5 parent: 2 - - uid: 23799 + - uid: 23717 components: - type: Transform pos: 5.5,19.5 parent: 2 - - uid: 23800 + - uid: 23718 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 23801 + - uid: 23719 components: - type: Transform pos: 57.5,-41.5 parent: 2 - - uid: 23802 + - uid: 23720 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 23803 + - uid: 23721 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 23804 + - uid: 23722 components: - type: Transform pos: -42.5,62.5 parent: 2 - - uid: 23805 + - uid: 23723 components: - type: Transform pos: 36.5,91.5 parent: 2 - - uid: 23806 + - uid: 23724 components: - type: Transform pos: -75.5,40.5 parent: 2 - - uid: 23807 + - uid: 23725 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 23808 + - uid: 23726 components: - type: Transform pos: -77.5,52.5 parent: 2 - - uid: 23809 + - uid: 23727 components: - type: Transform pos: 45.5,-79.5 parent: 2 - - uid: 23810 + - uid: 23728 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 23811 + - uid: 23729 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 23812 + - uid: 23730 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 23813 + - uid: 23731 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,31.5 parent: 2 - - uid: 23814 + - uid: 23732 components: - type: Transform pos: 80.5,-12.5 parent: 2 - - uid: 23815 + - uid: 23733 components: - type: Transform pos: 43.5,-79.5 parent: 2 - - uid: 23816 + - uid: 23734 components: - type: Transform pos: 35.5,88.5 parent: 2 - - uid: 23817 + - uid: 23735 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 23818 + - uid: 23736 components: - type: Transform pos: 18.5,31.5 parent: 2 - - uid: 23819 + - uid: 23737 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 23820 + - uid: 23738 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 - - uid: 23821 + - uid: 23739 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 23822 + - uid: 23740 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,7.5 parent: 2 - - uid: 23823 + - uid: 23741 components: - type: Transform pos: 4.5,90.5 parent: 2 - - uid: 23824 + - uid: 23742 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 23825 + - uid: 23743 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,8.5 parent: 2 - - uid: 23826 + - uid: 23744 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 23827 + - uid: 23745 components: - type: Transform pos: -35.5,64.5 parent: 2 - - uid: 23828 + - uid: 23746 components: - type: Transform pos: -43.5,28.5 parent: 2 - - uid: 23829 + - uid: 23747 components: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 23830 + - uid: 23748 components: - type: Transform pos: -46.5,26.5 parent: 2 - - uid: 23831 + - uid: 23749 components: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 23832 + - uid: 23750 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,9.5 parent: 2 - - uid: 23833 + - uid: 23751 components: - type: Transform pos: -57.5,37.5 parent: 2 - - uid: 23834 + - uid: 23752 components: - type: Transform pos: -18.5,-51.5 parent: 2 - - uid: 23835 + - uid: 23753 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 23836 + - uid: 23754 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 23837 + - uid: 23755 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-19.5 parent: 2 - - uid: 23838 + - uid: 23756 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-19.5 parent: 2 - - uid: 23839 + - uid: 23757 components: - type: Transform pos: -61.5,17.5 parent: 2 - - uid: 23840 + - uid: 23758 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 23841 + - uid: 23759 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 23842 + - uid: 23760 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 2 - - uid: 23843 + - uid: 23761 components: - type: Transform pos: 77.5,-38.5 parent: 2 - - uid: 23844 + - uid: 23762 components: - type: Transform pos: 42.5,-79.5 parent: 2 - - uid: 23845 + - uid: 23763 components: - type: Transform pos: 74.5,26.5 parent: 2 - - uid: 23846 + - uid: 23764 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 23847 + - uid: 23765 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 23848 + - uid: 23766 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,3.5 parent: 2 - - uid: 23849 + - uid: 23767 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 23850 + - uid: 23768 components: - type: Transform pos: 65.5,-27.5 parent: 2 - - uid: 23851 + - uid: 23769 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,6.5 parent: 2 - - uid: 23852 + - uid: 23770 components: - type: Transform pos: 85.5,11.5 parent: 2 - - uid: 23853 + - uid: 23771 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 23854 + - uid: 23772 components: - type: Transform pos: -103.5,-6.5 parent: 2 - - uid: 23855 + - uid: 23773 components: - type: Transform pos: 27.5,85.5 parent: 2 - - uid: 23856 + - uid: 23774 components: - type: Transform pos: -79.5,-43.5 parent: 2 - - uid: 23857 + - uid: 23775 components: - type: Transform pos: 83.5,-43.5 parent: 2 - - uid: 23858 + - uid: 23776 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 23859 + - uid: 23777 components: - type: Transform pos: -59.5,-78.5 parent: 2 - - uid: 23860 + - uid: 23778 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-19.5 parent: 2 - - uid: 23861 + - uid: 23779 components: - type: Transform pos: -83.5,76.5 parent: 2 - - uid: 23862 + - uid: 23780 components: - type: Transform pos: -83.5,67.5 parent: 2 - - uid: 23863 + - uid: 23781 components: - type: Transform pos: 21.5,102.5 parent: 2 - - uid: 23864 + - uid: 23782 components: - type: Transform pos: 50.5,-61.5 parent: 2 - - uid: 23865 + - uid: 23783 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 23866 + - uid: 23784 components: - type: Transform pos: 16.5,88.5 parent: 2 - - uid: 23867 + - uid: 23785 components: - type: Transform pos: -27.5,86.5 parent: 2 - - uid: 23868 + - uid: 23786 components: - type: Transform pos: -44.5,-76.5 parent: 2 - - uid: 23869 + - uid: 23787 components: - type: Transform pos: 14.5,89.5 parent: 2 - - uid: 23870 + - uid: 23788 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 23871 + - uid: 23789 components: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 23872 + - uid: 23790 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 23873 + - uid: 23791 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-21.5 parent: 2 - - uid: 23874 + - uid: 23792 components: - type: Transform pos: -59.5,-53.5 parent: 2 - - uid: 23875 + - uid: 23793 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-19.5 parent: 2 - - uid: 23876 + - uid: 23794 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 23877 + - uid: 23795 components: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 23878 + - uid: 23796 components: - type: Transform pos: 4.5,88.5 parent: 2 - - uid: 23879 + - uid: 23797 components: - type: Transform pos: -60.5,58.5 parent: 2 - - uid: 23880 + - uid: 23798 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,8.5 parent: 2 - - uid: 23881 + - uid: 23799 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 23882 + - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-65.5 parent: 2 - - uid: 23883 + - uid: 23801 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 23884 + - uid: 23802 components: - type: Transform pos: -61.5,-3.5 parent: 2 - - uid: 23885 + - uid: 23803 components: - type: Transform pos: -105.5,-6.5 parent: 2 - - uid: 23886 + - uid: 23804 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-19.5 parent: 2 - - uid: 23887 + - uid: 23805 components: - type: Transform pos: -77.5,36.5 parent: 2 - - uid: 23888 + - uid: 23806 components: - type: Transform pos: 19.5,94.5 parent: 2 - - uid: 23889 + - uid: 23807 components: - type: Transform pos: -1.5,30.5 parent: 2 - - uid: 23890 + - uid: 23808 components: - type: Transform pos: -27.5,94.5 parent: 2 - - uid: 23891 + - uid: 23809 components: - type: Transform pos: 12.5,90.5 parent: 2 - - uid: 23892 + - uid: 23810 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 23893 + - uid: 23811 components: - type: Transform pos: 88.5,-41.5 parent: 2 - - uid: 23894 + - uid: 23812 components: - type: Transform pos: -79.5,-38.5 parent: 2 - - uid: 23895 + - uid: 23813 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 23896 + - uid: 23814 components: - type: Transform pos: -45.5,-75.5 parent: 2 - - uid: 23897 + - uid: 23815 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 23898 + - uid: 23816 components: - type: Transform pos: 89.5,-44.5 parent: 2 - - uid: 23899 + - uid: 23817 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 23900 + - uid: 23818 components: - type: Transform pos: 37.5,97.5 parent: 2 - - uid: 23901 + - uid: 23819 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,4.5 parent: 2 - - uid: 23902 + - uid: 23820 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,6.5 parent: 2 - - uid: 23903 + - uid: 23821 components: - type: Transform pos: -75.5,49.5 parent: 2 - - uid: 23904 + - uid: 23822 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,6.5 parent: 2 - - uid: 23905 + - uid: 23823 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 23906 + - uid: 23824 components: - type: Transform pos: -57.5,-53.5 parent: 2 - - uid: 23907 + - uid: 23825 components: - type: Transform pos: 50.5,-59.5 parent: 2 - - uid: 23908 + - uid: 23826 components: - type: Transform pos: 52.5,-58.5 parent: 2 - - uid: 23909 + - uid: 23827 components: - type: Transform pos: -55.5,68.5 parent: 2 - - uid: 23910 + - uid: 23828 components: - type: Transform pos: -48.5,-78.5 parent: 2 - - uid: 23911 + - uid: 23829 components: - type: Transform pos: -47.5,-78.5 parent: 2 - - uid: 23912 + - uid: 23830 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-15.5 parent: 2 - - uid: 23913 + - uid: 23831 components: - type: Transform pos: -79.5,66.5 parent: 2 - - uid: 23914 + - uid: 23832 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-21.5 parent: 2 - - uid: 23915 + - uid: 23833 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-21.5 parent: 2 - - uid: 23916 + - uid: 23834 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,6.5 parent: 2 - - uid: 23917 + - uid: 23835 components: - type: Transform pos: 36.5,88.5 parent: 2 - - uid: 23918 + - uid: 23836 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-4.5 parent: 2 - - uid: 23919 + - uid: 23837 components: - type: Transform pos: 56.5,-41.5 parent: 2 - - uid: 23920 + - uid: 23838 components: - type: Transform pos: 76.5,-20.5 parent: 2 - - uid: 23921 + - uid: 23839 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 2 - - uid: 23922 + - uid: 23840 components: - type: Transform pos: 70.5,-27.5 parent: 2 - - uid: 23923 + - uid: 23841 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 23924 + - uid: 23842 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-2.5 parent: 2 - - uid: 23925 + - uid: 23843 components: - type: Transform pos: -33.5,64.5 parent: 2 - - uid: 23926 + - uid: 23844 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 23927 + - uid: 23845 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 23928 + - uid: 23846 components: - type: Transform pos: -42.5,54.5 parent: 2 - - uid: 23929 + - uid: 23847 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 - - uid: 23930 + - uid: 23848 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - - uid: 23931 + - uid: 23849 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 23932 + - uid: 23850 components: - type: Transform pos: 3.5,79.5 parent: 2 - - uid: 23933 + - uid: 23851 components: - type: Transform pos: 13.5,82.5 parent: 2 - - uid: 23934 + - uid: 23852 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 23935 + - uid: 23853 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 23936 + - uid: 23854 components: - type: Transform pos: 39.5,-58.5 parent: 2 - - uid: 23937 + - uid: 23855 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 23938 + - uid: 23856 components: - type: Transform pos: -59.5,15.5 parent: 2 - - uid: 23939 + - uid: 23857 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,3.5 parent: 2 - - uid: 23940 + - uid: 23858 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-18.5 parent: 2 - - uid: 23941 + - uid: 23859 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 23942 + - uid: 23860 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 23943 + - uid: 23861 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 23944 + - uid: 23862 components: - type: Transform pos: -31.5,94.5 parent: 2 - - uid: 23945 + - uid: 23863 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 23946 + - uid: 23864 components: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 23947 + - uid: 23865 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 23948 + - uid: 23866 components: - type: Transform pos: 18.5,30.5 parent: 2 - - uid: 23949 + - uid: 23867 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 23950 + - uid: 23868 components: - type: Transform pos: -79.5,-39.5 parent: 2 - - uid: 23951 + - uid: 23869 components: - type: Transform pos: -42.5,-82.5 parent: 2 - - uid: 23952 + - uid: 23870 components: - type: Transform pos: -14.5,82.5 parent: 2 - - uid: 23953 + - uid: 23871 components: - type: Transform pos: -26.5,-79.5 parent: 2 - - uid: 23954 + - uid: 23872 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 23955 + - uid: 23873 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 23956 + - uid: 23874 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 23957 + - uid: 23875 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 23958 + - uid: 23876 components: - type: Transform pos: -60.5,47.5 parent: 2 - - uid: 23959 + - uid: 23877 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,4.5 parent: 2 - - uid: 23960 + - uid: 23878 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 23961 + - uid: 23879 components: - type: Transform pos: -10.5,21.5 parent: 2 - - uid: 23962 + - uid: 23880 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 23963 + - uid: 23881 components: - type: Transform pos: 26.5,103.5 parent: 2 - - uid: 23964 + - uid: 23882 components: - type: Transform pos: 38.5,-77.5 parent: 2 - - uid: 23965 + - uid: 23883 components: - type: Transform pos: 89.5,-45.5 parent: 2 - - uid: 23966 + - uid: 23884 components: - type: Transform pos: 37.5,-77.5 parent: 2 - - uid: 23967 + - uid: 23885 components: - type: Transform pos: 35.5,102.5 parent: 2 - - uid: 23968 + - uid: 23886 components: - type: Transform pos: 31.5,102.5 parent: 2 - - uid: 23969 + - uid: 23887 components: - type: Transform pos: 20.5,101.5 parent: 2 - - uid: 23970 + - uid: 23888 components: - type: Transform pos: 32.5,-75.5 parent: 2 - - uid: 23971 + - uid: 23889 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 23972 + - uid: 23890 components: - type: Transform pos: 30.5,105.5 parent: 2 - - uid: 23973 + - uid: 23891 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 23974 + - uid: 23892 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 23975 + - uid: 23893 components: - type: Transform pos: 41.5,16.5 parent: 2 - - uid: 23976 + - uid: 23894 components: - type: Transform pos: -44.5,-92.5 parent: 2 - - uid: 23977 + - uid: 23895 components: - type: Transform pos: -58.5,16.5 parent: 2 - - uid: 23978 + - uid: 23896 components: - type: Transform pos: -78.5,-30.5 parent: 2 - - uid: 23979 + - uid: 23897 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 23980 + - uid: 23898 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 23981 + - uid: 23899 components: - type: Transform pos: 48.5,14.5 parent: 2 - - uid: 23982 + - uid: 23900 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 23983 + - uid: 23901 components: - type: Transform pos: -76.5,60.5 parent: 2 - - uid: 23984 + - uid: 23902 components: - type: Transform pos: 16.5,86.5 parent: 2 - - uid: 23985 + - uid: 23903 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 2 - - uid: 23986 + - uid: 23904 components: - type: Transform pos: -43.5,34.5 parent: 2 - - uid: 23987 + - uid: 23905 components: - type: Transform pos: -77.5,48.5 parent: 2 - - uid: 23988 + - uid: 23906 components: - type: Transform pos: -66.5,71.5 parent: 2 - - uid: 23989 + - uid: 23907 components: - type: Transform pos: -53.5,-93.5 parent: 2 - - uid: 23990 + - uid: 23908 components: - type: Transform pos: -75.5,32.5 parent: 2 - - uid: 23991 + - uid: 23909 components: - type: Transform pos: 40.5,-79.5 parent: 2 - - uid: 23992 + - uid: 23910 components: - type: Transform pos: 42.5,-77.5 parent: 2 - - uid: 23993 + - uid: 23911 components: - type: Transform pos: 34.5,57.5 parent: 2 - - uid: 23994 + - uid: 23912 components: - type: Transform pos: 86.5,-47.5 parent: 2 - - uid: 23995 + - uid: 23913 components: - type: Transform pos: 78.5,-53.5 parent: 2 - - uid: 23996 + - uid: 23914 components: - type: Transform pos: 22.5,85.5 parent: 2 - - uid: 23997 + - uid: 23915 components: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 23998 + - uid: 23916 components: - type: Transform pos: 78.5,-27.5 parent: 2 - - uid: 23999 + - uid: 23917 components: - type: Transform pos: 14.5,92.5 parent: 2 - - uid: 24000 + - uid: 23918 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 24001 + - uid: 23919 components: - type: Transform pos: 12.5,93.5 parent: 2 - - uid: 24002 + - uid: 23920 components: - type: Transform pos: 80.5,-26.5 parent: 2 - - uid: 24003 + - uid: 23921 components: - type: Transform pos: 19.5,97.5 parent: 2 - - uid: 24004 + - uid: 23922 components: - type: Transform pos: 37.5,19.5 parent: 2 - - uid: 24005 + - uid: 23923 components: - type: Transform pos: 32.5,64.5 parent: 2 - - uid: 24006 + - uid: 23924 components: - type: Transform pos: 29.5,105.5 parent: 2 - - uid: 24007 + - uid: 23925 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 24008 + - uid: 23926 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 24009 + - uid: 23927 components: - type: Transform pos: 78.5,-19.5 parent: 2 - - uid: 24010 + - uid: 23928 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 24011 + - uid: 23929 components: - type: Transform pos: 30.5,55.5 parent: 2 - - uid: 24012 + - uid: 23930 components: - type: Transform pos: 29.5,55.5 parent: 2 - - uid: 24013 + - uid: 23931 components: - type: Transform pos: 46.5,-48.5 parent: 2 - - uid: 24014 + - uid: 23932 components: - type: Transform pos: 16.5,91.5 parent: 2 - - uid: 24015 + - uid: 23933 components: - type: Transform pos: 80.5,-25.5 parent: 2 - - uid: 24016 + - uid: 23934 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 24017 + - uid: 23935 components: - type: Transform pos: 30.5,102.5 parent: 2 - - uid: 24018 + - uid: 23936 components: - type: Transform pos: 88.5,-47.5 parent: 2 - - uid: 24019 + - uid: 23937 components: - type: Transform pos: 34.5,58.5 parent: 2 - - uid: 24020 + - uid: 23938 components: - type: Transform pos: 13.5,93.5 parent: 2 - - uid: 24021 + - uid: 23939 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 24022 + - uid: 23940 components: - type: Transform pos: 24.5,85.5 parent: 2 - - uid: 24023 + - uid: 23941 components: - type: Transform pos: 23.5,102.5 parent: 2 - - uid: 24024 + - uid: 23942 components: - type: Transform pos: 33.5,19.5 parent: 2 - - uid: 24025 + - uid: 23943 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 24026 + - uid: 23944 components: - type: Transform pos: 52.5,-7.5 parent: 2 - - uid: 24027 + - uid: 23945 components: - type: Transform pos: 77.5,-53.5 parent: 2 - - uid: 24028 + - uid: 23946 components: - type: Transform pos: 77.5,-50.5 parent: 2 - - uid: 24029 + - uid: 23947 components: - type: Transform pos: -46.5,-92.5 parent: 2 - - uid: 24030 + - uid: 23948 components: - type: Transform pos: -76.5,59.5 parent: 2 - - uid: 24031 + - uid: 23949 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 24032 + - uid: 23950 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 24033 + - uid: 23951 components: - type: Transform pos: 12.5,44.5 parent: 2 - - uid: 24034 + - uid: 23952 components: - type: Transform pos: 84.5,-47.5 parent: 2 - - uid: 24035 + - uid: 23953 components: - type: Transform pos: 26.5,102.5 parent: 2 - - uid: 24036 + - uid: 23954 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 24037 + - uid: 23955 components: - type: Transform pos: -53.5,-94.5 parent: 2 - - uid: 24038 + - uid: 23956 components: - type: Transform pos: -75.5,31.5 parent: 2 - - uid: 24039 + - uid: 23957 components: - type: Transform pos: -52.5,-72.5 parent: 2 - - uid: 24040 + - uid: 23958 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 24041 + - uid: 23959 components: - type: Transform pos: -69.5,-4.5 parent: 2 - - uid: 24042 + - uid: 23960 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 24043 + - uid: 23961 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 24044 + - uid: 23962 components: - type: Transform pos: 4.5,-62.5 parent: 2 - - uid: 24045 + - uid: 23963 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,29.5 parent: 2 - - uid: 24046 + - uid: 23964 components: - type: Transform pos: 27.5,-72.5 parent: 2 - - uid: 24047 + - uid: 23965 components: - type: Transform pos: 44.5,22.5 parent: 2 - - uid: 24048 + - uid: 23966 components: - type: Transform pos: 24.5,102.5 parent: 2 - - uid: 24049 + - uid: 23967 components: - type: Transform pos: 83.5,-53.5 parent: 2 - - uid: 24050 + - uid: 23968 components: - type: Transform pos: 82.5,-53.5 parent: 2 - - uid: 24051 + - uid: 23969 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 24052 + - uid: 23970 components: - type: Transform pos: 14.5,93.5 parent: 2 - - uid: 24053 + - uid: 23971 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 24054 + - uid: 23972 components: - type: Transform pos: -66.5,70.5 parent: 2 - - uid: 24055 + - uid: 23973 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 24056 + - uid: 23974 components: - type: Transform pos: 87.5,-47.5 parent: 2 - - uid: 24057 + - uid: 23975 components: - type: Transform pos: -50.5,67.5 parent: 2 - - uid: 24058 + - uid: 23976 components: - type: Transform pos: -47.5,-92.5 parent: 2 - - uid: 24059 + - uid: 23977 components: - type: Transform pos: -53.5,-78.5 parent: 2 - - uid: 24060 + - uid: 23978 components: - type: Transform pos: -43.5,33.5 parent: 2 - - uid: 24061 + - uid: 23979 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,92.5 parent: 2 - - uid: 24062 + - uid: 23980 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 24063 + - uid: 23981 components: - type: Transform pos: -54.5,-78.5 parent: 2 - - uid: 24064 + - uid: 23982 components: - type: Transform pos: -49.5,-93.5 parent: 2 - - uid: 24065 + - uid: 23983 components: - type: Transform pos: 7.5,-73.5 parent: 2 - - uid: 24066 + - uid: 23984 components: - type: Transform pos: 54.5,-60.5 parent: 2 - - uid: 24067 + - uid: 23985 components: - type: Transform pos: 34.5,102.5 parent: 2 - - uid: 24068 + - uid: 23986 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-21.5 parent: 2 - - uid: 24069 + - uid: 23987 components: - type: Transform pos: -103.5,-8.5 parent: 2 - - uid: 24070 + - uid: 23988 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-21.5 parent: 2 - - uid: 24071 + - uid: 23989 components: - type: Transform pos: 28.5,-72.5 parent: 2 - - uid: 24072 + - uid: 23990 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 24073 + - uid: 23991 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 24074 + - uid: 23992 components: - type: Transform pos: 30.5,104.5 parent: 2 - - uid: 24075 + - uid: 23993 components: - type: Transform pos: 83.5,-46.5 parent: 2 - - uid: 24076 + - uid: 23994 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 24077 + - uid: 23995 components: - type: Transform pos: 30.5,103.5 parent: 2 - - uid: 24078 + - uid: 23996 components: - type: Transform pos: 30.5,-74.5 parent: 2 - - uid: 24079 + - uid: 23997 components: - type: Transform pos: 81.5,-53.5 parent: 2 - - uid: 24080 + - uid: 23998 components: - type: Transform pos: 54.5,-58.5 parent: 2 - - uid: 24081 + - uid: 23999 components: - type: Transform pos: 30.5,-72.5 parent: 2 - - uid: 24082 + - uid: 24000 components: - type: Transform pos: 77.5,-48.5 parent: 2 - - uid: 24083 + - uid: 24001 components: - type: Transform pos: 80.5,-53.5 parent: 2 - - uid: 24084 + - uid: 24002 components: - type: Transform pos: 20.5,102.5 parent: 2 - - uid: 24085 + - uid: 24003 components: - type: Transform pos: 53.5,-58.5 parent: 2 - - uid: 24086 + - uid: 24004 components: - type: Transform pos: 7.5,-69.5 parent: 2 - - uid: 24087 + - uid: 24005 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 24088 + - uid: 24006 components: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 24089 + - uid: 24007 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 24090 + - uid: 24008 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 24091 + - uid: 24009 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 24092 + - uid: 24010 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 24093 + - uid: 24011 components: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 24094 + - uid: 24012 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 24095 + - uid: 24013 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 24096 + - uid: 24014 components: - type: Transform pos: -47.5,68.5 parent: 2 - - uid: 24097 + - uid: 24015 components: - type: Transform pos: -48.5,-72.5 parent: 2 - - uid: 24098 + - uid: 24016 components: - type: Transform pos: -46.5,-75.5 parent: 2 - - uid: 24099 + - uid: 24017 components: - type: Transform pos: -76.5,55.5 parent: 2 - - uid: 24100 + - uid: 24018 components: - type: Transform pos: -49.5,-78.5 parent: 2 - - uid: 24101 + - uid: 24019 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 24102 + - uid: 24020 components: - type: Transform pos: -84.5,71.5 parent: 2 - - uid: 24103 + - uid: 24021 components: - type: Transform pos: -46.5,68.5 parent: 2 - - uid: 24104 + - uid: 24022 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 24105 + - uid: 24023 components: - type: Transform pos: -20.5,13.5 parent: 2 - - uid: 24106 + - uid: 24024 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 24107 + - uid: 24025 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,6.5 parent: 2 - - uid: 24108 + - uid: 24026 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 24109 + - uid: 24027 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 24110 + - uid: 24028 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 24111 + - uid: 24029 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,1.5 parent: 2 - - uid: 24112 + - uid: 24030 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-0.5 parent: 2 - - uid: 24113 + - uid: 24031 components: - type: Transform pos: 15.5,-26.5 parent: 2 - - uid: 24114 + - uid: 24032 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - uid: 24115 + - uid: 24033 components: - type: Transform pos: 41.5,-56.5 parent: 2 - - uid: 24116 + - uid: 24034 components: - type: Transform pos: 30.5,66.5 parent: 2 - - uid: 24117 + - uid: 24035 components: - type: Transform pos: 72.5,-40.5 parent: 2 - - uid: 24118 + - uid: 24036 components: - type: Transform pos: 30.5,70.5 parent: 2 - - uid: 24119 + - uid: 24037 components: - type: Transform pos: -72.5,-45.5 parent: 2 - - uid: 24120 + - uid: 24038 components: - type: Transform pos: -59.5,-88.5 parent: 2 - - uid: 24121 + - uid: 24039 components: - type: Transform pos: 27.5,105.5 parent: 2 - - uid: 24122 + - uid: 24040 components: - type: Transform pos: -60.5,-88.5 parent: 2 - - uid: 24123 + - uid: 24041 components: - type: Transform pos: -72.5,-46.5 parent: 2 - - uid: 24124 + - uid: 24042 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 24125 + - uid: 24043 components: - type: Transform pos: 30.5,69.5 parent: 2 - - uid: 24126 + - uid: 24044 components: - type: Transform pos: -55.5,17.5 parent: 2 - - uid: 24127 + - uid: 24045 components: - type: Transform pos: -57.5,-78.5 parent: 2 - - uid: 24128 + - uid: 24046 components: - type: Transform pos: 5.5,48.5 parent: 2 - - uid: 24129 + - uid: 24047 components: - type: Transform pos: 24.5,61.5 parent: 2 - - uid: 24130 + - uid: 24048 components: - type: Transform pos: -77.5,31.5 parent: 2 - - uid: 24131 + - uid: 24049 components: - type: Transform pos: 74.5,-35.5 parent: 2 - - uid: 24132 + - uid: 24050 components: - type: Transform pos: 77.5,-40.5 parent: 2 - - uid: 24133 + - uid: 24051 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 24134 + - uid: 24052 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 24135 + - uid: 24053 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 24136 + - uid: 24054 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 24137 + - uid: 24055 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-19.5 parent: 2 - - uid: 24138 + - uid: 24056 components: - type: Transform pos: 25.5,-70.5 parent: 2 - - uid: 24139 + - uid: 24057 components: - type: Transform pos: 66.5,-20.5 parent: 2 - - uid: 24140 + - uid: 24058 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 24141 + - uid: 24059 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 24142 + - uid: 24060 components: - type: Transform pos: -29.5,-24.5 parent: 2 - - uid: 24143 + - uid: 24061 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-21.5 parent: 2 - - uid: 24144 + - uid: 24062 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 24145 + - uid: 24063 components: - type: Transform pos: 9.5,21.5 parent: 2 - - uid: 24146 + - uid: 24064 components: - type: Transform pos: 20.5,91.5 parent: 2 - - uid: 24147 + - uid: 24065 components: - type: Transform pos: -1.5,19.5 parent: 2 - - uid: 24148 + - uid: 24066 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 24149 + - uid: 24067 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 24150 + - uid: 24068 components: - type: Transform pos: 23.5,-49.5 parent: 2 - - uid: 24151 + - uid: 24069 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 24152 + - uid: 24070 components: - type: Transform pos: -20.5,-26.5 parent: 2 - - uid: 24153 + - uid: 24071 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 24154 + - uid: 24072 components: - type: Transform pos: -50.5,-16.5 parent: 2 - - uid: 24155 + - uid: 24073 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 24156 + - uid: 24074 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 24157 + - uid: 24075 components: - type: Transform pos: -34.5,42.5 parent: 2 - - uid: 24158 + - uid: 24076 components: - type: Transform pos: -35.5,22.5 parent: 2 - - uid: 24159 + - uid: 24077 components: - type: Transform pos: -69.5,-48.5 parent: 2 - - uid: 24160 + - uid: 24078 components: - type: Transform pos: 23.5,-27.5 parent: 2 - - uid: 24161 + - uid: 24079 components: - type: Transform pos: -50.5,22.5 parent: 2 - - uid: 24162 + - uid: 24080 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,4.5 parent: 2 - - uid: 24163 + - uid: 24081 components: - type: Transform pos: 32.5,13.5 parent: 2 - - uid: 24164 + - uid: 24082 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 24165 + - uid: 24083 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,6.5 parent: 2 - - uid: 24166 + - uid: 24084 components: - type: Transform pos: 17.5,86.5 parent: 2 - - uid: 24167 + - uid: 24085 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 24168 + - uid: 24086 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 24169 + - uid: 24087 components: - type: Transform pos: -103.5,-10.5 parent: 2 - - uid: 24170 + - uid: 24088 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 24171 + - uid: 24089 components: - type: Transform pos: -43.5,32.5 parent: 2 - - uid: 24172 + - uid: 24090 components: - type: Transform pos: -19.5,70.5 parent: 2 - - uid: 24173 + - uid: 24091 components: - type: Transform pos: 71.5,-12.5 parent: 2 - - uid: 24174 + - uid: 24092 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 24175 + - uid: 24093 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 24176 + - uid: 24094 components: - type: Transform pos: -36.5,-30.5 parent: 2 - - uid: 24177 + - uid: 24095 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - uid: 24178 + - uid: 24096 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 24179 + - uid: 24097 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 24180 + - uid: 24098 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 24181 + - uid: 24099 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 24182 + - uid: 24100 components: - type: Transform pos: -60.5,49.5 parent: 2 - - uid: 24183 + - uid: 24101 components: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 24184 + - uid: 24102 components: - type: Transform pos: -67.5,21.5 parent: 2 - - uid: 24185 + - uid: 24103 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 24186 + - uid: 24104 components: - type: Transform pos: -62.5,68.5 parent: 2 - - uid: 24187 + - uid: 24105 components: - type: Transform pos: -67.5,77.5 parent: 2 - - uid: 24188 + - uid: 24106 components: - type: Transform pos: -66.5,77.5 parent: 2 - - uid: 24189 + - uid: 24107 components: - type: Transform pos: -66.5,76.5 parent: 2 - - uid: 24190 + - uid: 24108 components: - type: Transform pos: -66.5,75.5 parent: 2 - - uid: 24191 + - uid: 24109 components: - type: Transform pos: -66.5,74.5 parent: 2 - - uid: 24192 + - uid: 24110 components: - type: Transform pos: -66.5,73.5 parent: 2 - - uid: 24193 + - uid: 24111 components: - type: Transform pos: -52.5,-95.5 parent: 2 - - uid: 24194 + - uid: 24112 components: - type: Transform pos: 85.5,-47.5 parent: 2 - - uid: 24195 + - uid: 24113 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 24196 + - uid: 24114 components: - type: Transform pos: 57.5,-60.5 parent: 2 - - uid: 24197 + - uid: 24115 components: - type: Transform pos: -46.5,66.5 parent: 2 - - uid: 24198 + - uid: 24116 components: - type: Transform pos: -42.5,-83.5 parent: 2 - - uid: 24199 + - uid: 24117 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 24200 + - uid: 24118 components: - type: Transform pos: 42.5,-19.5 parent: 2 - - uid: 24201 + - uid: 24119 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 24202 + - uid: 24120 components: - type: Transform pos: 32.5,88.5 parent: 2 - - uid: 24203 + - uid: 24121 components: - type: Transform pos: 0.5,46.5 parent: 2 - - uid: 24204 + - uid: 24122 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,4.5 parent: 2 - - uid: 24205 + - uid: 24123 components: - type: Transform pos: -75.5,46.5 parent: 2 - - uid: 24206 + - uid: 24124 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,6.5 parent: 2 - - uid: 24207 + - uid: 24125 components: - type: Transform pos: -43.5,-89.5 parent: 2 - - uid: 24208 + - uid: 24126 components: - type: Transform pos: -75.5,50.5 parent: 2 - - uid: 24209 + - uid: 24127 components: - type: Transform pos: -75.5,51.5 parent: 2 - - uid: 24210 + - uid: 24128 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-21.5 parent: 2 - - uid: 24211 + - uid: 24129 components: - type: Transform pos: 12.5,-36.5 parent: 2 - - uid: 24212 + - uid: 24130 components: - type: Transform pos: -22.5,-84.5 parent: 2 - - uid: 24213 + - uid: 24131 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 24214 + - uid: 24132 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 24215 + - uid: 24133 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,57.5 parent: 2 - - uid: 24216 + - uid: 24134 components: - type: Transform pos: -66.5,5.5 parent: 2 - - uid: 24217 + - uid: 24135 components: - type: Transform pos: 44.5,-79.5 parent: 2 - - uid: 24218 + - uid: 24136 components: - type: Transform pos: 82.5,11.5 parent: 2 - - uid: 24219 + - uid: 24137 components: - type: Transform pos: -57.5,-51.5 parent: 2 - - uid: 24220 + - uid: 24138 components: - type: Transform pos: 16.5,85.5 parent: 2 - - uid: 24221 + - uid: 24139 components: - type: Transform pos: 39.5,-79.5 parent: 2 - - uid: 24222 + - uid: 24140 components: - type: Transform pos: 40.5,-77.5 parent: 2 - - uid: 24223 + - uid: 24141 components: - type: Transform pos: 89.5,-41.5 parent: 2 - - uid: 24224 + - uid: 24142 components: - type: Transform pos: 79.5,-53.5 parent: 2 - - uid: 24225 + - uid: 24143 components: - type: Transform pos: 11.5,41.5 parent: 2 - - uid: 24226 + - uid: 24144 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 24227 + - uid: 24145 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 24228 + - uid: 24146 components: - type: Transform pos: 29.5,-74.5 parent: 2 - - uid: 24229 + - uid: 24147 components: - type: Transform pos: 31.5,64.5 parent: 2 - - uid: 24230 + - uid: 24148 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 24231 + - uid: 24149 components: - type: Transform pos: 35.5,-56.5 parent: 2 - - uid: 24232 + - uid: 24150 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 24233 + - uid: 24151 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 24234 + - uid: 24152 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 24235 + - uid: 24153 components: - type: Transform pos: -0.5,-82.5 parent: 2 - - uid: 24236 + - uid: 24154 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 24237 + - uid: 24155 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 24238 + - uid: 24156 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 24239 + - uid: 24157 components: - type: Transform pos: 19.5,-60.5 parent: 2 - - uid: 24240 + - uid: 24158 components: - type: Transform pos: 8.5,-70.5 parent: 2 - - uid: 24241 + - uid: 24159 components: - type: Transform pos: -13.5,-83.5 parent: 2 - - uid: 24242 + - uid: 24160 components: - type: Transform pos: -17.5,-84.5 parent: 2 - - uid: 24243 + - uid: 24161 components: - type: Transform pos: -18.5,-84.5 parent: 2 - - uid: 24244 + - uid: 24162 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 24245 + - uid: 24163 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-83.5 parent: 2 - - uid: 24246 + - uid: 24164 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-84.5 parent: 2 - - uid: 24247 + - uid: 24165 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-85.5 parent: 2 - - uid: 24248 + - uid: 24166 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-82.5 parent: 2 - - uid: 24249 + - uid: 24167 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-83.5 parent: 2 - - uid: 24250 + - uid: 24168 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-84.5 parent: 2 - - uid: 24251 + - uid: 24169 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-85.5 parent: 2 - - uid: 24252 + - uid: 24170 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 - - uid: 24253 + - uid: 24171 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 - - uid: 24254 + - uid: 24172 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-84.5 parent: 2 - - uid: 24255 + - uid: 24173 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-84.5 parent: 2 - - uid: 24256 + - uid: 24174 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-85.5 parent: 2 - - uid: 24257 + - uid: 24175 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-83.5 parent: 2 - - uid: 24258 + - uid: 24176 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-83.5 parent: 2 - - uid: 24259 + - uid: 24177 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-84.5 parent: 2 - - uid: 24260 + - uid: 24178 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-85.5 parent: 2 - - uid: 24261 + - uid: 24179 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-85.5 parent: 2 - - uid: 24262 + - uid: 24180 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-84.5 parent: 2 - - uid: 24263 + - uid: 24181 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 - - uid: 24264 + - uid: 24182 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,70.5 parent: 2 - - uid: 24265 + - uid: 24183 components: - type: Transform pos: 84.5,11.5 parent: 2 - - uid: 24266 + - uid: 24184 components: - type: Transform pos: 11.5,-65.5 parent: 2 - - uid: 24267 + - uid: 24185 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-16.5 parent: 2 - - uid: 24268 + - uid: 24186 components: - type: Transform pos: -103.5,-3.5 parent: 2 - - uid: 24269 + - uid: 24187 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-15.5 parent: 2 - - uid: 24270 + - uid: 24188 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-14.5 parent: 2 - - uid: 24271 + - uid: 24189 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-14.5 parent: 2 - - uid: 24272 + - uid: 24190 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-10.5 parent: 2 - - uid: 24273 + - uid: 24191 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-8.5 parent: 2 - - uid: 24274 + - uid: 24192 components: - type: Transform pos: -103.5,-12.5 parent: 2 - - uid: 24275 + - uid: 24193 components: - type: Transform pos: -67.5,-4.5 parent: 2 - - uid: 24276 + - uid: 24194 components: - type: Transform rot: 1.5707963267948966 rad pos: -100.5,-16.5 parent: 2 - - uid: 24277 + - uid: 24195 components: - type: Transform rot: 1.5707963267948966 rad pos: -102.5,-16.5 parent: 2 - - uid: 24278 + - uid: 24196 components: - type: Transform rot: 1.5707963267948966 rad pos: -100.5,1.5 parent: 2 - - uid: 24279 + - uid: 24197 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 24280 + - uid: 24198 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 24281 + - uid: 24199 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 24282 + - uid: 24200 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 24283 + - uid: 24201 components: - type: Transform pos: 89.5,-46.5 parent: 2 - - uid: 24284 + - uid: 24202 components: - type: Transform pos: 89.5,-42.5 parent: 2 - - uid: 24285 + - uid: 24203 components: - type: Transform pos: 74.5,-47.5 parent: 2 - - uid: 24286 + - uid: 24204 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-42.5 parent: 2 - - uid: 24287 + - uid: 24205 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-42.5 parent: 2 - - uid: 24288 + - uid: 24206 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-38.5 parent: 2 - - uid: 24289 + - uid: 24207 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-42.5 parent: 2 - - uid: 24290 + - uid: 24208 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-42.5 parent: 2 - - uid: 24291 + - uid: 24209 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-38.5 parent: 2 - - uid: 24292 + - uid: 24210 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-42.5 parent: 2 - - uid: 24293 + - uid: 24211 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 - - uid: 24294 + - uid: 24212 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-42.5 parent: 2 - - uid: 24295 + - uid: 24213 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-42.5 parent: 2 - - uid: 24296 + - uid: 24214 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,82.5 parent: 2 - - uid: 24297 + - uid: 24215 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,83.5 parent: 2 - - uid: 24298 + - uid: 24216 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,84.5 parent: 2 - - uid: 24299 + - uid: 24217 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,84.5 parent: 2 - - uid: 24300 + - uid: 24218 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,80.5 parent: 2 - - uid: 24301 + - uid: 24219 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,81.5 parent: 2 - - uid: 24302 + - uid: 24220 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-35.5 parent: 2 - - uid: 24303 + - uid: 24221 components: - type: Transform pos: 58.5,-53.5 parent: 2 - - uid: 24304 + - uid: 24222 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - uid: 24305 + - uid: 24223 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,83.5 parent: 2 - - uid: 24306 + - uid: 24224 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,11.5 parent: 2 - - uid: 24307 + - uid: 24225 components: - type: Transform pos: -86.5,26.5 parent: 2 - - uid: 24308 + - uid: 24226 components: - type: Transform pos: -85.5,26.5 parent: 2 - - uid: 24309 + - uid: 24227 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,23.5 parent: 2 - - uid: 24310 + - uid: 24228 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,22.5 parent: 2 - - uid: 24311 + - uid: 24229 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,22.5 parent: 2 - - uid: 24312 + - uid: 24230 components: - type: Transform pos: -107.5,26.5 parent: 2 - - uid: 24313 + - uid: 24231 components: - type: Transform pos: -103.5,26.5 parent: 2 - - uid: 24314 + - uid: 24232 components: - type: Transform pos: -104.5,26.5 parent: 2 - - uid: 24315 + - uid: 24233 components: - type: Transform pos: -90.5,26.5 parent: 2 - - uid: 24316 + - uid: 24234 components: - type: Transform pos: -101.5,26.5 parent: 2 - - uid: 24317 + - uid: 24235 components: - type: Transform pos: -100.5,26.5 parent: 2 - - uid: 24318 + - uid: 24236 components: - type: Transform pos: -98.5,26.5 parent: 2 - - uid: 24319 + - uid: 24237 components: - type: Transform pos: -95.5,26.5 parent: 2 - - uid: 24320 + - uid: 24238 components: - type: Transform pos: -94.5,26.5 parent: 2 - - uid: 24321 + - uid: 24239 components: - type: Transform pos: -93.5,26.5 parent: 2 - - uid: 24322 + - uid: 24240 components: - type: Transform pos: -92.5,26.5 parent: 2 - - uid: 24323 + - uid: 24241 components: - type: Transform pos: -89.5,26.5 parent: 2 - - uid: 24324 + - uid: 24242 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,23.5 parent: 2 - - uid: 24325 + - uid: 24243 components: - type: Transform pos: -81.5,22.5 parent: 2 - - uid: 24326 + - uid: 24244 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,84.5 parent: 2 - - uid: 24327 + - uid: 24245 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 24328 + - uid: 24246 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,84.5 parent: 2 - - uid: 24329 + - uid: 24247 components: - type: Transform pos: -110.5,19.5 parent: 2 - - uid: 24330 + - uid: 24248 components: - type: Transform pos: -107.5,20.5 parent: 2 - - uid: 24331 + - uid: 24249 components: - type: Transform pos: -106.5,20.5 parent: 2 - - uid: 24332 + - uid: 24250 components: - type: Transform pos: -105.5,20.5 parent: 2 - - uid: 24333 + - uid: 24251 components: - type: Transform pos: -103.5,20.5 parent: 2 - - uid: 24334 + - uid: 24252 components: - type: Transform pos: -102.5,20.5 parent: 2 - - uid: 24335 + - uid: 24253 components: - type: Transform pos: -100.5,20.5 parent: 2 - - uid: 24336 + - uid: 24254 components: - type: Transform pos: -99.5,20.5 parent: 2 - - uid: 24337 + - uid: 24255 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,20.5 parent: 2 - - uid: 24338 + - uid: 24256 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,20.5 parent: 2 - - uid: 24339 + - uid: 24257 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,20.5 parent: 2 - - uid: 24340 + - uid: 24258 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,20.5 parent: 2 - - uid: 24341 + - uid: 24259 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,17.5 parent: 2 - - uid: 24342 + - uid: 24260 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,16.5 parent: 2 - - uid: 24343 + - uid: 24261 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,15.5 parent: 2 - - uid: 24344 + - uid: 24262 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,14.5 parent: 2 - - uid: 24345 + - uid: 24263 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,12.5 parent: 2 - - uid: 24346 + - uid: 24264 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,10.5 parent: 2 - - uid: 24347 + - uid: 24265 components: - type: Transform pos: -90.5,9.5 parent: 2 - - uid: 24348 + - uid: 24266 components: - type: Transform pos: -89.5,9.5 parent: 2 - - uid: 24349 + - uid: 24267 components: - type: Transform pos: -87.5,9.5 parent: 2 - - uid: 24350 + - uid: 24268 components: - type: Transform pos: -86.5,9.5 parent: 2 - - uid: 24351 + - uid: 24269 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,9.5 parent: 2 - - uid: 24352 + - uid: 24270 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,9.5 parent: 2 - - uid: 24353 + - uid: 24271 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,9.5 parent: 2 - - uid: 24354 + - uid: 24272 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,9.5 parent: 2 - - uid: 24355 + - uid: 24273 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,7.5 parent: 2 - - uid: 24356 + - uid: 24274 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,84.5 parent: 2 - - uid: 24357 + - uid: 24275 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,45.5 parent: 2 - - uid: 24358 + - uid: 24276 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,43.5 parent: 2 - - uid: 24359 + - uid: 24277 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,42.5 parent: 2 - - uid: 24360 + - uid: 24278 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,40.5 parent: 2 - - uid: 24361 + - uid: 24279 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,39.5 parent: 2 - - uid: 24362 + - uid: 24280 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,38.5 parent: 2 - - uid: 24363 + - uid: 24281 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,37.5 parent: 2 - - uid: 24364 + - uid: 24282 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,25.5 parent: 2 - - uid: 24365 + - uid: 24283 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,22.5 parent: 2 - - uid: 24366 + - uid: 24284 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,23.5 parent: 2 - - uid: 24367 + - uid: 24285 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,19.5 parent: 2 - - uid: 24368 + - uid: 24286 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,14.5 parent: 2 - - uid: 24369 + - uid: 24287 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,14.5 parent: 2 - - uid: 24370 + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,14.5 parent: 2 - - uid: 24371 + - uid: 24289 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,14.5 parent: 2 - - uid: 24372 + - uid: 24290 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,14.5 parent: 2 - - uid: 24373 + - uid: 24291 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,14.5 parent: 2 - - uid: 24374 + - uid: 24292 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,14.5 parent: 2 - - uid: 24375 + - uid: 24293 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,15.5 parent: 2 - - uid: 24376 + - uid: 24294 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,16.5 parent: 2 - - uid: 24377 + - uid: 24295 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,17.5 parent: 2 - - uid: 24378 + - uid: 24296 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,84.5 parent: 2 - - uid: 24380 + - uid: 24297 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,84.5 parent: 2 - - uid: 24381 + - uid: 24298 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,84.5 parent: 2 - - uid: 24382 + - uid: 24299 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,85.5 parent: 2 - - uid: 24383 + - uid: 24300 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,86.5 parent: 2 - - uid: 24384 + - uid: 24301 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,86.5 parent: 2 - - uid: 24385 + - uid: 24302 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,86.5 parent: 2 - - uid: 24386 + - uid: 24303 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,86.5 parent: 2 - - uid: 24387 + - uid: 24304 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 24388 + - uid: 24305 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,85.5 parent: 2 - - uid: 24389 + - uid: 24306 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,84.5 parent: 2 - - uid: 24390 + - uid: 24307 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,84.5 parent: 2 - - uid: 24391 + - uid: 24308 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,84.5 parent: 2 - - uid: 24392 + - uid: 24309 components: - type: Transform pos: -126.5,52.5 parent: 2 - - uid: 24393 + - uid: 24310 components: - type: Transform pos: -126.5,51.5 parent: 2 - - uid: 24394 + - uid: 24311 components: - type: Transform pos: -126.5,50.5 parent: 2 - - uid: 24395 + - uid: 24312 components: - type: Transform pos: -127.5,47.5 parent: 2 - - uid: 24396 + - uid: 24313 components: - type: Transform pos: -126.5,47.5 parent: 2 - - uid: 24397 + - uid: 24314 components: - type: Transform pos: -126.5,48.5 parent: 2 - - uid: 24399 + - uid: 24315 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 24469 + - uid: 24316 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-38.5 parent: 2 - - uid: 24470 + - uid: 24317 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 24471 + - uid: 24318 components: - type: Transform pos: 80.5,28.5 parent: 2 - - uid: 24472 + - uid: 24319 components: - type: Transform pos: 82.5,15.5 parent: 2 - - uid: 24473 + - uid: 24320 components: - type: Transform pos: 83.5,15.5 parent: 2 - - uid: 24474 + - uid: 24321 components: - type: Transform pos: 86.5,15.5 parent: 2 - - uid: 24475 + - uid: 24322 components: - type: Transform pos: 90.5,17.5 parent: 2 - - uid: 24476 + - uid: 24323 components: - type: Transform pos: 90.5,18.5 parent: 2 - - uid: 24477 + - uid: 24324 components: - type: Transform pos: 80.5,29.5 parent: 2 - - uid: 24478 + - uid: 24325 components: - type: Transform pos: 80.5,30.5 parent: 2 - - uid: 24479 + - uid: 24326 components: - type: Transform pos: 81.5,18.5 parent: 2 - - uid: 24480 + - uid: 24327 components: - type: Transform pos: 81.5,19.5 parent: 2 - - uid: 24481 + - uid: 24328 components: - type: Transform pos: 81.5,24.5 parent: 2 - - uid: 24482 + - uid: 24329 components: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 24483 + - uid: 24330 components: - type: Transform pos: 80.5,27.5 parent: 2 - - uid: 24484 + - uid: 24331 components: - type: Transform pos: 81.5,20.5 parent: 2 - - uid: 24485 + - uid: 24332 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-85.5 parent: 2 - - uid: 24486 + - uid: 24333 components: - type: Transform pos: 11.5,-84.5 parent: 2 - - uid: 24487 + - uid: 24334 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 24488 + - uid: 24335 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 24489 + - uid: 24336 components: - type: Transform pos: 12.5,-84.5 parent: 2 - - uid: 24490 + - uid: 24337 components: - type: Transform pos: 13.5,-84.5 parent: 2 - - uid: 24491 + - uid: 24338 components: - type: Transform pos: 13.5,-82.5 parent: 2 - - uid: 24492 + - uid: 24339 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 24493 + - uid: 24340 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 24494 + - uid: 24341 components: - type: Transform pos: -0.5,62.5 parent: 2 - - uid: 24495 + - uid: 24342 components: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 24496 + - uid: 24343 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,70.5 parent: 2 - - uid: 24497 + - uid: 24344 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 - - uid: 24498 + - uid: 24345 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,13.5 parent: 2 - - uid: 24499 + - uid: 24346 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-71.5 parent: 2 - - uid: 24500 + - uid: 24347 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-71.5 parent: 2 - - uid: 24501 + - uid: 24348 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,23.5 parent: 2 - - uid: 24502 + - uid: 24349 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 24503 + - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,13.5 parent: 2 - - uid: 24504 + - uid: 24351 components: - type: Transform pos: -67.5,46.5 parent: 2 - - uid: 24505 + - uid: 24352 components: - type: Transform pos: -70.5,-43.5 parent: 2 - - uid: 24506 + - uid: 24353 components: - type: Transform pos: -72.5,-39.5 parent: 2 - - uid: 24507 + - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-3.5 parent: 2 - - uid: 24508 + - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,12.5 parent: 2 - - uid: 24509 + - uid: 24356 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 24510 + - uid: 24357 components: - type: Transform pos: -69.5,44.5 parent: 2 - - uid: 24511 + - uid: 24358 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 24512 + - uid: 24359 components: - type: Transform pos: 75.5,14.5 parent: 2 - - uid: 24513 + - uid: 24360 components: - type: Transform pos: 75.5,15.5 parent: 2 - - uid: 24514 + - uid: 24361 components: - type: Transform pos: 80.5,13.5 parent: 2 - - uid: 24515 + - uid: 24362 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-5.5 parent: 2 - - uid: 24516 + - uid: 24363 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-5.5 parent: 2 - - uid: 24517 + - uid: 24364 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 24518 + - uid: 24365 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-5.5 parent: 2 - - uid: 24519 + - uid: 24366 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 24520 + - uid: 24367 components: - type: Transform pos: -69.5,48.5 parent: 2 - - uid: 24521 + - uid: 24368 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 24522 + - uid: 24369 components: - type: Transform pos: -69.5,50.5 parent: 2 - - uid: 24523 + - uid: 24370 components: - type: Transform pos: -69.5,46.5 parent: 2 - - uid: 24524 + - uid: 24371 components: - type: Transform pos: -72.5,-41.5 parent: 2 - - uid: 24525 + - uid: 24372 components: - type: Transform pos: -67.5,42.5 parent: 2 - - uid: 24526 + - uid: 24373 components: - type: Transform pos: -69.5,40.5 parent: 2 - - uid: 24527 + - uid: 24374 components: - type: Transform pos: -67.5,50.5 parent: 2 - - uid: 24528 + - uid: 24375 components: - type: Transform pos: -67.5,40.5 parent: 2 - - uid: 24529 + - uid: 24376 components: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 24530 + - uid: 24377 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 24531 + - uid: 24378 components: - type: Transform pos: 31.5,13.5 parent: 2 - - uid: 24532 + - uid: 24379 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 24533 + - uid: 24380 components: - type: Transform pos: -67.5,48.5 parent: 2 - - uid: 24534 + - uid: 24381 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,23.5 parent: 2 - - uid: 24535 + - uid: 24382 components: - type: Transform pos: -70.5,-45.5 parent: 2 - - uid: 24536 + - uid: 24383 components: - type: Transform pos: -69.5,42.5 parent: 2 - - uid: 24537 + - uid: 24384 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 24538 + - uid: 24385 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,34.5 parent: 2 - - uid: 24539 + - uid: 24386 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,32.5 parent: 2 - - uid: 24540 + - uid: 24387 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,30.5 parent: 2 - - uid: 24541 + - uid: 24388 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,28.5 parent: 2 - - uid: 24542 + - uid: 24389 components: - type: Transform pos: -60.5,39.5 parent: 2 - - uid: 24543 + - uid: 24390 components: - type: Transform pos: -64.5,39.5 parent: 2 - - uid: 24544 + - uid: 24391 components: - type: Transform pos: -66.5,39.5 parent: 2 - - uid: 24545 + - uid: 24392 components: - type: Transform pos: -65.5,39.5 parent: 2 - - uid: 24546 + - uid: 24393 components: - type: Transform pos: -71.5,-42.5 parent: 2 - - uid: 24547 + - uid: 24394 components: - type: Transform pos: -72.5,-40.5 parent: 2 - - uid: 24548 + - uid: 24395 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-8.5 parent: 2 - - uid: 24549 + - uid: 24396 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-8.5 parent: 2 - - uid: 24550 + - uid: 24397 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-8.5 parent: 2 - - uid: 24551 + - uid: 24398 components: - type: Transform pos: 93.5,-8.5 parent: 2 - - uid: 24552 + - uid: 24399 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-8.5 parent: 2 - - uid: 24553 + - uid: 24400 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,4.5 parent: 2 - - uid: 24554 + - uid: 24401 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,3.5 parent: 2 - - uid: 24555 + - uid: 24402 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,3.5 parent: 2 - - uid: 24556 + - uid: 24403 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,3.5 parent: 2 - - uid: 24557 + - uid: 24404 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,5.5 parent: 2 - - uid: 24558 + - uid: 24405 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,6.5 parent: 2 - - uid: 24559 + - uid: 24406 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,7.5 parent: 2 - - uid: 24560 + - uid: 24407 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,7.5 parent: 2 - - uid: 24561 + - uid: 24408 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,7.5 parent: 2 - - uid: 24562 + - uid: 24409 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,7.5 parent: 2 - - uid: 24563 + - uid: 24410 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-4.5 parent: 2 - - uid: 24564 + - uid: 24411 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,2.5 parent: 2 - - uid: 24565 + - uid: 24412 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,1.5 parent: 2 - - uid: 24566 + - uid: 24413 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,0.5 parent: 2 - - uid: 24567 + - uid: 24414 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-0.5 parent: 2 - - uid: 24568 + - uid: 24415 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-1.5 parent: 2 - - uid: 24569 + - uid: 24416 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-2.5 parent: 2 - - uid: 24570 + - uid: 24417 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-5.5 parent: 2 - - uid: 24571 + - uid: 24418 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-6.5 parent: 2 - - uid: 24572 + - uid: 24419 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-7.5 parent: 2 - - uid: 24573 + - uid: 24420 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-8.5 parent: 2 - - uid: 24574 + - uid: 24421 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-8.5 parent: 2 - - uid: 24575 + - uid: 24422 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-8.5 parent: 2 - - uid: 24576 + - uid: 24423 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-7.5 parent: 2 - - uid: 24577 + - uid: 24424 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,-7.5 parent: 2 - - uid: 24578 + - uid: 24425 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-7.5 parent: 2 - - uid: 24579 + - uid: 24426 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-8.5 parent: 2 - - uid: 24580 + - uid: 24427 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-8.5 parent: 2 - - uid: 24581 + - uid: 24428 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-8.5 parent: 2 - - uid: 24582 + - uid: 24429 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-8.5 parent: 2 - - uid: 24583 + - uid: 24430 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-6.5 parent: 2 - - uid: 24584 + - uid: 24431 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-8.5 parent: 2 - - uid: 24585 + - uid: 24432 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-8.5 parent: 2 - - uid: 24586 + - uid: 24433 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-8.5 parent: 2 - - uid: 24587 + - uid: 24434 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-7.5 parent: 2 - - uid: 24588 + - uid: 24435 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-7.5 parent: 2 - - uid: 24589 + - uid: 24436 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-8.5 parent: 2 - - uid: 24590 + - uid: 24437 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-9.5 parent: 2 - - uid: 24591 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-9.5 parent: 2 - - uid: 24592 + - uid: 24439 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-9.5 parent: 2 - - uid: 24593 + - uid: 24440 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-9.5 parent: 2 - - uid: 24594 + - uid: 24441 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-9.5 parent: 2 - - uid: 24595 + - uid: 24442 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-9.5 parent: 2 - - uid: 24596 + - uid: 24443 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-9.5 parent: 2 - - uid: 24597 + - uid: 24444 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-9.5 parent: 2 - - uid: 24598 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-9.5 parent: 2 - - uid: 24599 + - uid: 24446 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-9.5 parent: 2 - - uid: 24600 + - uid: 24447 components: - type: Transform pos: 80.5,-14.5 parent: 2 - - uid: 24601 + - uid: 24448 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,0.5 parent: 2 - - uid: 24602 + - uid: 24449 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,2.5 parent: 2 - - uid: 24603 + - uid: 24450 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 24604 + - uid: 24451 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,33.5 parent: 2 - - uid: 24605 + - uid: 24452 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,30.5 parent: 2 - - uid: 24606 + - uid: 24453 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,28.5 parent: 2 - - uid: 24607 + - uid: 24454 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,29.5 parent: 2 - - uid: 24608 + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,33.5 parent: 2 - - uid: 24609 + - uid: 24456 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 - - uid: 24610 + - uid: 24457 components: - type: Transform pos: 37.5,37.5 parent: 2 - - uid: 24611 + - uid: 24458 components: - type: Transform pos: 62.5,31.5 parent: 2 - - uid: 24612 + - uid: 24459 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 24613 + - uid: 24460 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 24614 + - uid: 24461 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-2.5 parent: 2 - - uid: 24615 + - uid: 24462 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-3.5 parent: 2 - - uid: 24616 + - uid: 24463 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 2 - - uid: 24617 + - uid: 24464 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 24618 + - uid: 24465 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 24619 + - uid: 24466 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 24620 + - uid: 24467 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 24621 + - uid: 24468 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 24622 + - uid: 24469 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 24623 + - uid: 24470 components: - type: Transform pos: 20.5,17.5 parent: 2 - - uid: 24624 + - uid: 24471 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 38528 + - uid: 38355 components: - type: Transform pos: 0.5,4.5 - parent: 38484 - - uid: 38529 + parent: 38311 + - uid: 38356 components: - type: Transform pos: 1.5,5.5 - parent: 38484 - - uid: 38530 + parent: 38311 + - uid: 38357 components: - type: Transform pos: 2.5,4.5 - parent: 38484 - - uid: 38531 + parent: 38311 + - uid: 38358 components: - type: Transform pos: 0.5,3.5 - parent: 38484 - - uid: 38532 + parent: 38311 + - uid: 38359 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 - parent: 38484 - - uid: 38533 + parent: 38311 + - uid: 38360 components: - type: Transform pos: 0.5,5.5 - parent: 38484 - - uid: 38534 + parent: 38311 + - uid: 38361 components: - type: Transform pos: 2.5,3.5 - parent: 38484 - - uid: 38535 + parent: 38311 + - uid: 38362 components: - type: Transform pos: 2.5,5.5 - parent: 38484 - - uid: 38536 + parent: 38311 + - uid: 38363 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 - parent: 38484 - - uid: 39416 + parent: 38311 + - uid: 39243 components: - type: Transform pos: -19.5,3.5 - parent: 38584 - - uid: 39417 + parent: 38411 + - uid: 39244 components: - type: Transform pos: 14.5,2.5 - parent: 38584 - - uid: 39418 + parent: 38411 + - uid: 39245 components: - type: Transform pos: 14.5,4.5 - parent: 38584 - - uid: 39419 + parent: 38411 + - uid: 39246 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,33.5 - parent: 38584 - - uid: 39420 + parent: 38411 + - uid: 39247 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39421 + parent: 38411 + - uid: 39248 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39422 + parent: 38411 + - uid: 39249 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39423 + parent: 38411 + - uid: 39250 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39424 + parent: 38411 + - uid: 39251 components: - type: Transform pos: 2.5,2.5 - parent: 38584 - - uid: 39425 + parent: 38411 + - uid: 39252 components: - type: Transform pos: 2.5,4.5 - parent: 38584 - - uid: 39426 + parent: 38411 + - uid: 39253 components: - type: Transform pos: -19.5,7.5 - parent: 38584 - - uid: 39427 + parent: 38411 + - uid: 39254 components: - type: Transform pos: -16.5,7.5 - parent: 38584 - - uid: 39428 + parent: 38411 + - uid: 39255 components: - type: Transform pos: -22.5,3.5 - parent: 38584 - - uid: 39429 + parent: 38411 + - uid: 39256 components: - type: Transform pos: -22.5,7.5 - parent: 38584 - - uid: 39430 + parent: 38411 + - uid: 39257 components: - type: Transform pos: -16.5,3.5 - parent: 38584 - - uid: 39431 + parent: 38411 + - uid: 39258 components: - type: Transform pos: 2.5,0.5 - parent: 38584 + parent: 38411 - proto: GrilleBroken entities: - - uid: 24625 + - uid: 24472 components: - type: Transform pos: -80.5,24.5 parent: 2 - - uid: 24626 + - uid: 24473 components: - type: Transform pos: -84.5,15.5 parent: 2 - - uid: 24627 + - uid: 24474 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,12.5 parent: 2 - - uid: 24628 + - uid: 24475 components: - type: Transform pos: -27.5,-24.5 parent: 2 - - uid: 24629 + - uid: 24476 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 24630 + - uid: 24477 components: - type: Transform pos: -40.5,-30.5 parent: 2 - - uid: 24631 + - uid: 24478 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-68.5 parent: 2 - - uid: 24632 + - uid: 24479 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,33.5 parent: 2 - - uid: 24633 + - uid: 24480 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-68.5 parent: 2 - - uid: 24634 + - uid: 24481 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 24635 + - uid: 24482 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-36.5 parent: 2 - - uid: 24636 + - uid: 24483 components: - type: Transform pos: 57.5,-56.5 parent: 2 - - uid: 24637 + - uid: 24484 components: - type: Transform pos: -105.5,26.5 parent: 2 - - uid: 24638 + - uid: 24485 components: - type: Transform pos: -91.5,26.5 parent: 2 - - uid: 24639 + - uid: 24486 components: - type: Transform pos: -88.5,26.5 parent: 2 - - uid: 24640 + - uid: 24487 components: - type: Transform pos: -87.5,26.5 parent: 2 - - uid: 24641 + - uid: 24488 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,24.5 parent: 2 - - uid: 24642 + - uid: 24489 components: - type: Transform pos: -91.5,9.5 parent: 2 - - uid: 24643 + - uid: 24490 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,22.5 parent: 2 - - uid: 24644 + - uid: 24491 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,25.5 parent: 2 - - uid: 24645 + - uid: 24492 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,22.5 parent: 2 - - uid: 24646 + - uid: 24493 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,9.5 parent: 2 - - uid: 24647 + - uid: 24494 components: - type: Transform pos: -102.5,26.5 parent: 2 - - uid: 24648 + - uid: 24495 components: - type: Transform pos: -96.5,26.5 parent: 2 - - uid: 24649 + - uid: 24496 components: - type: Transform pos: -97.5,26.5 parent: 2 - - uid: 24650 + - uid: 24497 components: - type: Transform pos: -92.5,20.5 parent: 2 - - uid: 24651 + - uid: 24498 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,9.5 parent: 2 - - uid: 24652 + - uid: 24499 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,19.5 parent: 2 - - uid: 24653 + - uid: 24500 components: - type: Transform pos: -108.5,20.5 parent: 2 - - uid: 24654 + - uid: 24501 components: - type: Transform pos: -101.5,20.5 parent: 2 - - uid: 24655 + - uid: 24502 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,20.5 parent: 2 - - uid: 24656 + - uid: 24503 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,20.5 parent: 2 - - uid: 24657 + - uid: 24504 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,19.5 parent: 2 - - uid: 24658 + - uid: 24505 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,13.5 parent: 2 - - uid: 24659 + - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,41.5 parent: 2 - - uid: 24660 + - uid: 24507 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,44.5 parent: 2 - - uid: 24661 + - uid: 24508 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,46.5 parent: 2 - - uid: 24662 + - uid: 24509 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,24.5 parent: 2 - - uid: 24663 + - uid: 24510 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,18.5 parent: 2 - - uid: 24664 + - uid: 24511 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,14.5 parent: 2 - - uid: 24665 + - uid: 24512 components: - type: Transform pos: -112.5,14.5 parent: 2 - - uid: 24666 + - uid: 24513 components: - type: Transform pos: -115.5,14.5 parent: 2 - - uid: 24667 + - uid: 24514 components: - type: Transform pos: -119.5,14.5 parent: 2 - - uid: 24668 + - uid: 24515 components: - type: Transform pos: -123.5,14.5 parent: 2 - - uid: 24669 + - uid: 24516 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,47.5 parent: 2 - - uid: 24670 + - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad pos: -126.5,49.5 parent: 2 - - uid: 24671 + - uid: 24518 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-60.5 parent: 2 - - uid: 24672 + - uid: 24519 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-55.5 parent: 2 - - uid: 24673 + - uid: 24520 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-82.5 parent: 2 - - uid: 24674 + - uid: 24521 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 24675 + - uid: 24522 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-80.5 parent: 2 - - uid: 24676 + - uid: 24523 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-82.5 parent: 2 - - uid: 24677 + - uid: 24524 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,26.5 parent: 2 - - uid: 24678 + - uid: 24525 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-7.5 parent: 2 - - uid: 39432 + - uid: 39259 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39433 + parent: 38411 + - uid: 39260 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,33.5 - parent: 38584 - - uid: 39434 + parent: 38411 + - uid: 39261 components: - type: Transform pos: 8.5,19.5 - parent: 38584 - - uid: 39435 + parent: 38411 + - uid: 39262 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,19.5 - parent: 38584 - - uid: 39436 + parent: 38411 + - uid: 39263 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,33.5 - parent: 38584 + parent: 38411 - proto: GrilleDiagonal entities: - - uid: 24679 + - uid: 24526 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-6.5 parent: 2 - - uid: 24680 + - uid: 24527 components: - type: Transform rot: -1.5707963267948966 rad @@ -188018,7 +188039,7 @@ entities: parent: 2 - proto: GunSafe entities: - - uid: 14514 + - uid: 14456 components: - type: MetaData name: сейф аркады @@ -188049,18 +188070,18 @@ entities: showEnts: False occludes: True ents: - - 14515 - - 14517 - - 14518 - - 14519 - - 14516 + - 14457 + - 14459 + - 14460 + - 14461 + - 14458 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: GunSafeDisabler entities: - - uid: 24681 + - uid: 24528 components: - type: Transform pos: 57.5,6.5 @@ -188085,167 +188106,167 @@ entities: - 0 - proto: Gyroscope entities: - - uid: 38537 + - uid: 38364 components: - type: Transform pos: 1.5,-0.5 - parent: 38484 - - uid: 39437 + parent: 38311 + - uid: 39264 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,20.5 - parent: 38584 + parent: 38411 - proto: Handcuffs entities: - - uid: 24682 + - uid: 24529 components: - type: Transform pos: 72.458984,23.247822 parent: 2 - - uid: 24683 + - uid: 24530 components: - type: Transform pos: -2.4961772,18.561342 parent: 2 - type: Physics canCollide: False - - uid: 24684 + - uid: 24531 components: - type: Transform pos: 27.5,67.5 parent: 2 - - uid: 24685 + - uid: 24532 components: - type: Transform pos: 2.544464,65.52478 parent: 2 - type: Physics canCollide: False - - uid: 24686 + - uid: 24533 components: - type: Transform pos: -22.414896,0.570341 parent: 2 - - uid: 24687 + - uid: 24534 components: - type: Transform pos: -2.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 24688 + - uid: 24535 components: - type: Transform pos: 6.5382733,-63.500446 parent: 2 - - uid: 24689 + - uid: 24536 components: - type: Transform pos: -18.563082,-27.472807 parent: 2 - - uid: 24690 + - uid: 24537 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.56891,10.451007 parent: 2 - - uid: 39438 + - uid: 39265 components: - type: Transform pos: -2.5,11.5 - parent: 38584 - - uid: 39439 + parent: 38411 + - uid: 39266 components: - type: Transform pos: 3.249548,34.703247 - parent: 38584 - - uid: 39440 + parent: 38411 + - uid: 39267 components: - type: Transform pos: 1.717948,-1.2679749 - parent: 38584 - - uid: 39441 + parent: 38411 + - uid: 39268 components: - type: Transform pos: 1.452323,-1.4085999 - parent: 38584 + parent: 38411 - proto: HandheldGPSBasic entities: - - uid: 24691 + - uid: 24538 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.423151,-12.526148 parent: 2 - - uid: 24692 + - uid: 24539 components: - type: Transform pos: -61.501175,11.534443 parent: 2 - type: Physics canCollide: False - - uid: 24693 + - uid: 24540 components: - type: Transform pos: 24.512302,38.588974 parent: 2 - - uid: 24694 + - uid: 24541 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.610651,-12.526149 parent: 2 - - uid: 24695 + - uid: 24542 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.52226,38.589203 parent: 2 - - uid: 39442 + - uid: 39269 components: - type: Transform pos: 1.5406876,6.7720337 - parent: 38584 - - uid: 39443 + parent: 38411 + - uid: 39270 components: - type: Transform pos: 1.6969376,6.5220337 - parent: 38584 - - uid: 39444 + parent: 38411 + - uid: 39271 components: - type: Transform pos: 1.3531876,6.5376587 - parent: 38584 - - uid: 39445 + parent: 38411 + - uid: 39272 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.819557,0.7199707 - parent: 38584 + parent: 38411 - proto: HandheldHealthAnalyzer entities: - - uid: 24696 + - uid: 24543 components: - type: Transform pos: -9.180932,-52.317867 parent: 2 - - uid: 24697 + - uid: 24544 components: - type: Transform pos: 70.53282,12.308504 parent: 2 - - uid: 24698 + - uid: 24545 components: - type: Transform pos: 6.7585454,-48.411568 parent: 2 - - uid: 24699 + - uid: 24546 components: - type: Transform pos: 4.213424,-13.463173 parent: 2 - - uid: 24700 + - uid: 24547 components: - type: Transform rot: -1.5707963267948966 rad @@ -188253,7 +188274,7 @@ entities: parent: 2 - proto: HandheldStationMap entities: - - uid: 24701 + - uid: 24548 components: - type: Transform rot: -1.5707963267948966 rad @@ -188261,150 +188282,150 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 1501 + - uid: 1506 components: - type: Transform - parent: 1500 + parent: 1505 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24702 + - uid: 24549 components: - type: Transform pos: -48.36664,31.64788 parent: 2 - - uid: 24703 + - uid: 24550 components: - type: Transform pos: -65.41571,4.534443 parent: 2 - type: Physics canCollide: False - - uid: 24704 + - uid: 24551 components: - type: Transform pos: 42.573086,-70.16831 parent: 2 - - uid: 24705 + - uid: 24552 components: - type: Transform pos: -24.130608,-4.4762073 parent: 2 - - uid: 24706 + - uid: 24553 components: - type: Transform pos: -30.482952,-30.630163 parent: 2 - - uid: 24707 + - uid: 24554 components: - type: Transform pos: -4.4907737,-58.52011 parent: 2 - type: Physics canCollide: False - - uid: 24708 + - uid: 24555 components: - type: Transform pos: -57.46442,-17.430832 parent: 2 - type: Physics canCollide: False - - uid: 24709 + - uid: 24556 components: - type: Transform pos: -25.375605,12.496101 parent: 2 - type: Physics canCollide: False - - uid: 24710 + - uid: 24557 components: - type: Transform pos: -24.473108,-68.4108 parent: 2 - type: Physics canCollide: False - - uid: 24711 + - uid: 24558 components: - type: Transform pos: -22.592567,23.59421 parent: 2 - - uid: 24712 + - uid: 24559 components: - type: Transform pos: 2.5119066,-29.376064 parent: 2 - - uid: 24713 + - uid: 24560 components: - type: Transform pos: 12.716354,-52.415775 parent: 2 - - uid: 24714 + - uid: 24561 components: - type: Transform pos: 24.461672,8.5619135 parent: 2 - type: Physics canCollide: False - - uid: 24715 + - uid: 24562 components: - type: Transform pos: -8.571838,-35.43139 parent: 2 - type: Physics canCollide: False - - uid: 24716 + - uid: 24563 components: - type: Transform pos: -32.5,-35.5 parent: 2 - - uid: 24717 + - uid: 24564 components: - type: Transform pos: -41.430576,-17.448298 parent: 2 - type: Physics canCollide: False - - uid: 24718 + - uid: 24565 components: - type: Transform pos: 24.446495,38.695435 parent: 2 - - uid: 24719 + - uid: 24566 components: - type: Transform pos: 0.49840114,63.529846 parent: 2 - proto: HappyHonk entities: - - uid: 14892 + - uid: 14839 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24720 + - uid: 24567 components: - type: Transform pos: 63.362576,-15.285653 parent: 2 - proto: HappyHonkMime entities: - - uid: 14903 + - uid: 14838 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24721 + - uid: 24568 components: - type: Transform pos: 63.777294,-15.30936 parent: 2 - proto: HappyHonkNukie entities: - - uid: 24722 + - uid: 24569 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -188412,7 +188433,7 @@ entities: parent: 2 - proto: HappyHonkNukieSnacks entities: - - uid: 24723 + - uid: 24570 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -188420,57 +188441,57 @@ entities: parent: 2 - proto: HarpInstrument entities: - - uid: 24724 + - uid: 24571 components: - type: Transform pos: 10.5,66.5 parent: 2 - proto: HeatExchanger entities: - - uid: 24725 + - uid: 24572 components: - type: Transform pos: -52.5,59.5 parent: 2 - - uid: 24726 + - uid: 24573 components: - type: Transform pos: -52.5,57.5 parent: 2 - - uid: 24727 + - uid: 24574 components: - type: Transform pos: -49.5,59.5 parent: 2 - - uid: 24728 + - uid: 24575 components: - type: Transform pos: -49.5,57.5 parent: 2 - proto: HelicopterInstrument entities: - - uid: 24729 + - uid: 24576 components: - type: Transform pos: 63.569263,-24.38388 parent: 2 - proto: Hemostat entities: - - uid: 24730 + - uid: 24577 components: - type: Transform pos: 32.606625,-46.556606 parent: 2 - type: Physics canCollide: False - - uid: 24731 + - uid: 24578 components: - type: Transform pos: 46.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 24732 + - uid: 24579 components: - type: Transform pos: 34.450375,-52.244106 @@ -188479,80 +188500,80 @@ entities: canCollide: False - proto: HighSecArmoryLocked entities: - - uid: 24733 + - uid: 24580 components: - type: MetaData name: запасный выход оружейной - type: Transform pos: 71.5,6.5 parent: 2 - - uid: 24734 + - uid: 24581 components: - type: MetaData name: хранилище скафандров сб - type: Transform pos: 62.5,10.5 parent: 2 - - uid: 24735 + - uid: 24582 components: - type: Transform pos: 56.5,5.5 parent: 2 - - uid: 24736 + - uid: 24583 components: - type: Transform pos: 56.5,4.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 24737 + - uid: 24584 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 24738 + - uid: 24585 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 24739 + - uid: 24586 components: - type: Transform pos: 19.5,14.5 parent: 2 - - uid: 24740 + - uid: 24587 components: - type: Transform pos: -119.5,44.5 parent: 2 - - uid: 24741 + - uid: 24588 components: - type: Transform pos: -117.5,44.5 parent: 2 - - uid: 24742 + - uid: 24589 components: - type: Transform pos: -117.5,27.5 parent: 2 - - uid: 24743 + - uid: 24590 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 24744 + - uid: 24591 components: - type: Transform pos: -119.5,27.5 parent: 2 - - uid: 24745 + - uid: 24592 components: - type: Transform pos: 19.5,15.5 parent: 2 - proto: HolofanProjector entities: - - uid: 24746 + - uid: 24593 components: - type: Transform rot: 3.141592653589793 rad @@ -188560,213 +188581,213 @@ entities: parent: 2 - proto: HospitalCurtains entities: - - uid: 24747 + - uid: 24594 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-38.5 parent: 2 - - uid: 24748 + - uid: 24595 components: - type: Transform pos: 34.5,-40.5 parent: 2 - - uid: 24749 + - uid: 24596 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-37.5 parent: 2 - - uid: 24750 + - uid: 24597 components: - type: Transform pos: 14.5,5.5 parent: 2 - - uid: 24751 + - uid: 24598 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-78.5 parent: 2 - - uid: 24752 + - uid: 24599 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 - - uid: 24753 + - uid: 24600 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-41.5 parent: 2 - - uid: 24754 + - uid: 24601 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-37.5 parent: 2 - - uid: 24755 + - uid: 24602 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-37.5 parent: 2 - - uid: 24756 + - uid: 24603 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-39.5 parent: 2 - - uid: 24757 + - uid: 24604 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-39.5 parent: 2 - - uid: 24758 + - uid: 24605 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-39.5 parent: 2 - - uid: 24759 + - uid: 24606 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-39.5 parent: 2 - - uid: 24760 + - uid: 24607 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-39.5 parent: 2 - - uid: 24761 + - uid: 24608 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-42.5 parent: 2 - - uid: 24762 + - uid: 24609 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 24763 + - uid: 24610 components: - type: Transform pos: 42.5,-72.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 24764 + - uid: 24611 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 24765 + - uid: 24612 components: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 24766 + - uid: 24613 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 24767 + - uid: 24614 components: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 24768 + - uid: 24615 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 24769 + - uid: 24616 components: - type: Transform pos: 10.5,-37.5 parent: 2 - - uid: 24770 + - uid: 24617 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 39446 + - uid: 39273 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,27.5 - parent: 38584 + parent: 38411 - proto: hydroponicsSoil entities: - - uid: 24771 + - uid: 24618 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 24772 + - uid: 24619 components: - type: Transform pos: -38.5,32.5 parent: 2 - - uid: 24773 + - uid: 24620 components: - type: Transform pos: -39.5,31.5 parent: 2 - - uid: 24774 + - uid: 24621 components: - type: Transform pos: -37.5,34.5 parent: 2 - - uid: 24775 + - uid: 24622 components: - type: Transform pos: -40.5,33.5 parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 24776 + - uid: 24623 components: - type: Transform rot: 3.141593671850739 rad pos: 95.462135,6.554744 parent: 2 - - uid: 24777 + - uid: 24624 components: - type: Transform pos: -34.28948,51.89193 parent: 2 - - uid: 39447 + - uid: 39274 components: - type: Transform pos: -19.45492,-1.6743469 - parent: 38584 + parent: 38411 - proto: HydroponicsToolMiniHoe entities: - - uid: 24778 + - uid: 24625 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.50901,6.5391183 parent: 2 - - uid: 24779 + - uid: 24626 components: - type: Transform pos: -29.390923,49.30703 parent: 2 - - uid: 24780 + - uid: 24627 components: - type: Transform pos: -37.601337,34.28246 parent: 2 - proto: HydroponicsToolScythe entities: - - uid: 24781 + - uid: 24628 components: - type: Transform rot: 1.5707963267948966 rad @@ -188774,154 +188795,154 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 24782 + - uid: 24629 components: - type: Transform pos: -40.182777,33.220512 parent: 2 - - uid: 24783 + - uid: 24630 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.33061,52.655056 parent: 2 - - uid: 39448 + - uid: 39275 components: - type: Transform pos: -21.501795,-1.5947876 - parent: 38584 + parent: 38411 - proto: hydroponicsTray entities: - - uid: 24784 + - uid: 24631 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,47.5 parent: 2 - - uid: 24785 + - uid: 24632 components: - type: Transform pos: -31.5,51.5 parent: 2 - - uid: 24786 + - uid: 24633 components: - type: Transform pos: -31.5,52.5 parent: 2 - - uid: 24787 + - uid: 24634 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 24788 + - uid: 24635 components: - type: Transform pos: -31.5,47.5 parent: 2 - - uid: 24789 + - uid: 24636 components: - type: Transform pos: -29.5,51.5 parent: 2 - - uid: 24790 + - uid: 24637 components: - type: Transform pos: -31.5,49.5 parent: 2 - - uid: 24791 + - uid: 24638 components: - type: Transform pos: -27.5,50.5 parent: 2 - - uid: 24792 + - uid: 24639 components: - type: Transform pos: -29.5,50.5 parent: 2 - - uid: 24793 + - uid: 24640 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 24794 + - uid: 24641 components: - type: Transform pos: -29.5,48.5 parent: 2 - - uid: 24795 + - uid: 24642 components: - type: Transform pos: -29.5,49.5 parent: 2 - - uid: 24796 + - uid: 24643 components: - type: Transform pos: -31.5,53.5 parent: 2 - - uid: 24797 + - uid: 24644 components: - type: Transform pos: -31.5,50.5 parent: 2 - - uid: 24798 + - uid: 24645 components: - type: Transform pos: -29.5,52.5 parent: 2 - - uid: 24799 + - uid: 24646 components: - type: Transform pos: -31.5,48.5 parent: 2 - - uid: 24800 + - uid: 24647 components: - type: Transform pos: -27.5,48.5 parent: 2 - - uid: 24801 + - uid: 24648 components: - type: Transform pos: -27.5,49.5 parent: 2 - - uid: 24802 + - uid: 24649 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,7.5 parent: 2 - - uid: 24803 + - uid: 24650 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,7.5 parent: 2 - - uid: 24804 + - uid: 24651 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,7.5 parent: 2 - - uid: 39449 + - uid: 39276 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-1.5 - parent: 38584 - - uid: 39450 + parent: 38411 + - uid: 39277 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-1.5 - parent: 38584 - - uid: 39451 + parent: 38411 + - uid: 39278 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-1.5 - parent: 38584 + parent: 38411 - proto: HydroponicsTrayEmpty entities: - - uid: 6742 + - uid: 24652 components: - type: Transform rot: -1.5707963267948966 rad @@ -188929,7 +188950,7 @@ entities: parent: 2 - proto: Hypopen entities: - - uid: 24805 + - uid: 24653 components: - type: Transform rot: 1.5707973450558423 rad @@ -188937,251 +188958,251 @@ entities: parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 24806 + - uid: 24654 components: - type: Transform pos: -36.5,19.5 parent: 2 - proto: InflatableDoor entities: - - uid: 2796 + - uid: 24655 components: - type: Transform pos: 79.5,-18.5 parent: 2 - - uid: 2798 + - uid: 24656 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 2803 + - uid: 24657 components: - type: Transform pos: 83.5,-21.5 parent: 2 - - uid: 2804 + - uid: 24658 components: - type: Transform pos: 83.5,-18.5 parent: 2 - - uid: 24807 + - uid: 24659 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-71.5 parent: 2 - - uid: 24808 + - uid: 24660 components: - type: Transform pos: 33.5,-60.5 parent: 2 - - uid: 24809 + - uid: 24661 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-66.5 parent: 2 - - uid: 39452 + - uid: 39279 components: - type: Transform pos: -15.5,35.5 - parent: 38584 + parent: 38411 - proto: InflatableWall entities: - - uid: 2805 + - uid: 24662 components: - type: Transform pos: 83.5,-17.5 parent: 2 - - uid: 2823 + - uid: 24663 components: - type: Transform pos: 83.5,-22.5 parent: 2 - - uid: 2824 + - uid: 24664 components: - type: Transform pos: 83.5,-20.5 parent: 2 - - uid: 2825 + - uid: 24665 components: - type: Transform pos: 83.5,-19.5 parent: 2 - - uid: 14753 + - uid: 24666 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 24810 + - uid: 24667 components: - type: Transform pos: 30.5,-69.5 parent: 2 - - uid: 24811 + - uid: 24668 components: - type: Transform pos: 38.5,-62.5 parent: 2 - - uid: 24812 + - uid: 24669 components: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 24813 + - uid: 24670 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 24814 + - uid: 24671 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 - - uid: 24815 + - uid: 24672 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-69.5 parent: 2 - - uid: 24816 + - uid: 24673 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-66.5 parent: 2 - - uid: 24817 + - uid: 24674 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,59.5 parent: 2 - - uid: 24818 + - uid: 24675 components: - type: Transform pos: 31.5,-68.5 parent: 2 - - uid: 24819 + - uid: 24676 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-40.5 parent: 2 - - uid: 24820 + - uid: 24677 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-66.5 parent: 2 - - uid: 24821 + - uid: 24678 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-66.5 parent: 2 - - uid: 25025 + - uid: 24679 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 25029 + - uid: 24680 components: - type: Transform pos: -74.5,-27.5 parent: 2 - - uid: 39453 + - uid: 39280 components: - type: Transform pos: -15.5,34.5 - parent: 38584 + parent: 38411 - proto: IngotGold entities: - - uid: 24822 + - uid: 24681 components: - type: Transform pos: 26.549606,17.730206 parent: 2 - - uid: 39454 + - uid: 39281 components: - type: Transform pos: -9.55835,1.5697021 - parent: 38584 + parent: 38411 - proto: IngotGold1 entities: - - uid: 39455 + - uid: 39282 components: - type: Transform pos: -9.62085,0.53845215 - parent: 38584 - - uid: 39456 + parent: 38411 + - uid: 39283 components: - type: Transform pos: -9.417725,0.99157715 - parent: 38584 + parent: 38411 - proto: IngotSilver entities: - - uid: 24823 + - uid: 24682 components: - type: Transform pos: 22.535658,12.496013 parent: 2 - - uid: 39457 + - uid: 39284 components: - type: Transform pos: -8.5896,4.710327 - parent: 38584 + parent: 38411 - proto: IngotSilver1 entities: - - uid: 39458 + - uid: 39285 components: - type: Transform pos: -9.6521,4.741577 - parent: 38584 - - uid: 39459 + parent: 38411 + - uid: 39286 components: - type: Transform pos: -9.4021,4.475952 - parent: 38584 + parent: 38411 - proto: IntercomAll entities: - - uid: 24824 + - uid: 24683 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 parent: 2 - - uid: 24825 + - uid: 24684 components: - type: Transform pos: -6.5,17.5 parent: 2 - proto: IntercomCommand entities: - - uid: 24826 + - uid: 24685 components: - type: Transform pos: 5.5,17.5 parent: 2 - proto: IntercomEngineering entities: - - uid: 24827 + - uid: 24686 components: - type: Transform pos: -44.5,16.5 parent: 2 - - uid: 24828 + - uid: 24687 components: - type: Transform pos: -61.5,16.5 parent: 2 - - uid: 24829 + - uid: 24688 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,31.5 parent: 2 - - uid: 24830 + - uid: 24689 components: - type: Transform rot: -1.5707963267948966 rad @@ -189189,31 +189210,31 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 24831 + - uid: 24690 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-39.5 parent: 2 - - uid: 24832 + - uid: 24691 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-65.5 parent: 2 - - uid: 24833 + - uid: 24692 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 - - uid: 24834 + - uid: 24693 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-26.5 parent: 2 - - uid: 24835 + - uid: 24694 components: - type: Transform rot: -1.5707963267948966 rad @@ -189221,13 +189242,13 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 24836 + - uid: 24695 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-28.5 parent: 2 - - uid: 24837 + - uid: 24696 components: - type: Transform rot: -1.5707963267948966 rad @@ -189235,24 +189256,24 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 24838 + - uid: 24697 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,5.5 parent: 2 - - uid: 24839 + - uid: 24698 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 2 - - uid: 24840 + - uid: 24699 components: - type: Transform pos: 74.5,4.5 parent: 2 - - uid: 24841 + - uid: 24700 components: - type: Transform rot: 1.5707963267948966 rad @@ -189260,18 +189281,18 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 24842 + - uid: 24701 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,32.5 parent: 2 - - uid: 24843 + - uid: 24702 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 24844 + - uid: 24703 components: - type: Transform rot: -1.5707963267948966 rad @@ -189279,13 +189300,13 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 24845 + - uid: 24704 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 - - uid: 24846 + - uid: 24705 components: - type: Transform rot: -1.5707963267948966 rad @@ -189293,13 +189314,13 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 24847 + - uid: 24706 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,54.5 parent: 2 - - uid: 24848 + - uid: 24707 components: - type: Transform rot: 3.141592653589793 rad @@ -189307,24 +189328,24 @@ entities: parent: 2 - proto: JanitorServiceLight entities: - - uid: 24849 + - uid: 24708 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,5.5 parent: 2 - - uid: 24850 + - uid: 24709 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,27.5 parent: 2 - - uid: 24851 + - uid: 24710 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 24852 + - uid: 24711 components: - type: Transform rot: 3.141592653589793 rad @@ -189332,7 +189353,7 @@ entities: parent: 2 - proto: JetpackBlackFilled entities: - - uid: 24853 + - uid: 24712 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -189340,74 +189361,74 @@ entities: parent: 2 - proto: JetpackBlue entities: - - uid: 24854 + - uid: 24713 components: - type: Transform pos: -45.5,-15.5 parent: 2 - proto: JetpackBlueFilled entities: - - uid: 24855 + - uid: 24714 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 24856 + - uid: 24715 components: - type: Transform pos: -52.5,32.5 parent: 2 - proto: JetpackMini entities: - - uid: 39460 + - uid: 39287 components: - type: Transform pos: 2.5,11.5 - parent: 38584 + parent: 38411 - proto: JetpackSecurityFilled entities: - - uid: 24857 + - uid: 24716 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 24858 + - uid: 24717 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 24859 + - uid: 24718 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 24860 + - uid: 24719 components: - type: Transform pos: 63.5,9.5 parent: 2 - proto: Joint entities: - - uid: 24861 + - uid: 24720 components: - type: Transform pos: -57.645042,57.002453 parent: 2 - - uid: 24862 + - uid: 24721 components: - type: Transform pos: -57.69192,56.814953 parent: 2 - proto: Jukebox entities: - - uid: 24863 + - uid: 24722 components: - type: Transform pos: -18.5,-37.5 parent: 2 - proto: Katana entities: - - uid: 24864 + - uid: 24723 components: - type: MetaData desc: Standing here, I realize you were just like me trying to make history! @@ -189417,38 +189438,38 @@ entities: parent: 2 - proto: KitchenElectricGrill entities: - - uid: 24865 + - uid: 24724 components: - type: Transform pos: -30.5,36.5 parent: 2 - type: ItemPlacer placedEntities: - - 18655 - - uid: 24866 + - 18578 + - uid: 24725 components: - type: Transform pos: 92.5,-4.5 parent: 2 - - uid: 24867 + - uid: 24726 components: - type: Transform pos: 62.5,30.5 parent: 2 - proto: KitchenKnife entities: - - uid: 24868 + - uid: 24727 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.38237,-66.35571 parent: 2 - - uid: 24869 + - uid: 24728 components: - type: Transform pos: 27.5,65.5 parent: 2 - - uid: 24870 + - uid: 24729 components: - type: Transform pos: -29.729101,34.53911 @@ -189457,412 +189478,412 @@ entities: canCollide: False - proto: KitchenMicrowave entities: - - uid: 24871 + - uid: 24730 components: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 24872 + - uid: 24731 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 24873 + - uid: 24732 components: - type: Transform pos: -25.5,-40.5 parent: 2 - - uid: 24874 + - uid: 24733 components: - type: Transform pos: -33.5,34.5 parent: 2 - - uid: 24875 + - uid: 24734 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 24876 + - uid: 24735 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 24877 + - uid: 24736 components: - type: Transform pos: -65.5,18.5 parent: 2 - - uid: 24878 + - uid: 24737 components: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 24879 + - uid: 24738 components: - type: Transform pos: -33.5,35.5 parent: 2 - - uid: 24880 + - uid: 24739 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 24881 + - uid: 24740 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 24882 + - uid: 24741 components: - type: Transform pos: 23.5,65.5 parent: 2 - - uid: 24883 + - uid: 24742 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 24884 + - uid: 24743 components: - type: Transform pos: 91.5,-4.5 parent: 2 - - uid: 39461 + - uid: 39288 components: - type: Transform pos: -18.5,30.5 - parent: 38584 - - uid: 39462 + parent: 38411 + - uid: 39289 components: - type: Transform pos: -17.5,-1.5 - parent: 38584 + parent: 38411 - proto: KitchenReagentGrinder entities: - - uid: 24885 + - uid: 24744 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 24886 + - uid: 24745 components: - type: Transform pos: 95.5,-4.5 parent: 2 - - uid: 24887 + - uid: 24746 components: - type: Transform pos: -24.5,-14.5 parent: 2 - - uid: 24888 + - uid: 24747 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 24889 + - uid: 24748 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 24890 + - uid: 24749 components: - type: Transform pos: -33.5,36.5 parent: 2 - - uid: 24891 + - uid: 24750 components: - type: Transform pos: 26.5,-65.5 parent: 2 - - uid: 24892 + - uid: 24751 components: - type: Transform pos: -5.5,41.5 parent: 2 - - uid: 24893 + - uid: 24752 components: - type: Transform pos: -39.5,52.5 parent: 2 - - uid: 24894 + - uid: 24753 components: - type: Transform pos: -34.5,47.5 parent: 2 - proto: KitchenSpike entities: - - uid: 24895 + - uid: 24754 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 24896 + - uid: 24755 components: - type: Transform pos: -32.5,30.5 parent: 2 - - uid: 24897 + - uid: 24756 components: - type: Transform pos: 26.5,67.5 parent: 2 - - uid: 24898 + - uid: 24757 components: - type: Transform pos: -29.5,-79.5 parent: 2 - proto: KnifePlastic entities: - - uid: 24899 + - uid: 24758 components: - type: Transform rot: 3.141592653589793 rad pos: 65.347626,27.59324 parent: 2 - - uid: 24900 + - uid: 24759 components: - type: Transform rot: 3.141592653589793 rad pos: 65.23825,27.59324 parent: 2 - - uid: 24901 + - uid: 24760 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.508652,-17.53014 parent: 2 - - uid: 24902 + - uid: 24761 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.524275,-17.37389 parent: 2 - - uid: 24903 + - uid: 24762 components: - type: Transform rot: 3.141592653589793 rad pos: 65.48825,27.59324 parent: 2 - - uid: 39463 + - uid: 39290 components: - type: Transform pos: -13.408242,-5.3575134 - parent: 38584 + parent: 38411 - proto: Lamp entities: - - uid: 24904 + - uid: 24763 components: - type: Transform pos: 53.488358,30.704498 parent: 2 - - uid: 24905 + - uid: 24764 components: - type: Transform pos: -34.413235,-15.25878 parent: 2 - - uid: 24906 + - uid: 24765 components: - type: Transform pos: 72.53723,21.71029 parent: 2 - - uid: 24907 + - uid: 24766 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 24908 + - uid: 24767 components: - type: Transform rot: 3.141592653589793 rad pos: 4.355682,-16.29442 parent: 2 - - uid: 24909 + - uid: 24768 components: - type: Transform pos: 24.575024,-52.379463 parent: 2 - - uid: 24910 + - uid: 24769 components: - type: Transform pos: -15.40152,11.692742 parent: 2 - - uid: 24911 + - uid: 24770 components: - type: Transform pos: -18.584768,-41.095764 parent: 2 - - uid: 24912 + - uid: 24771 components: - type: Transform pos: 41.55369,21.383957 parent: 2 - - uid: 24913 + - uid: 24772 components: - type: Transform pos: 27.459814,37.60866 parent: 2 - - uid: 24914 + - uid: 24773 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,28.5 parent: 2 - - uid: 24915 + - uid: 24774 components: - type: Transform pos: 33.652378,-1.3068556 parent: 2 - - uid: 24916 + - uid: 24775 components: - type: Transform pos: -14.380997,-79.49119 parent: 2 - - uid: 24917 + - uid: 24776 components: - type: Transform pos: -46.37526,17.5579 parent: 2 - - uid: 24918 + - uid: 24777 components: - type: Transform pos: 49.699116,-53.372818 parent: 2 - - uid: 24919 + - uid: 24778 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 24920 + - uid: 24779 components: - type: Transform pos: -24.41836,23.55868 parent: 2 - - uid: 24921 + - uid: 24780 components: - type: Transform pos: 48.730324,-44.432247 parent: 2 - - uid: 24922 + - uid: 24781 components: - type: Transform pos: -16.443285,-47.389317 parent: 2 - - uid: 24923 + - uid: 24782 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.536855,46.736298 parent: 2 - - uid: 24924 + - uid: 24783 components: - type: Transform pos: -57.398136,7.639348 parent: 2 - - uid: 24925 + - uid: 24784 components: - type: Transform pos: -23.431923,-79.45605 parent: 2 - - uid: 24926 + - uid: 24785 components: - type: Transform pos: 29.563286,44.666252 parent: 2 - - uid: 24927 + - uid: 24786 components: - type: Transform pos: 34.59761,22.545893 parent: 2 - - uid: 24928 + - uid: 24787 components: - type: Transform pos: -27.460869,19.624147 parent: 2 - - uid: 24929 + - uid: 24788 components: - type: Transform pos: 31.585245,8.603551 parent: 2 - - uid: 24930 + - uid: 24789 components: - type: Transform pos: -62.437016,6.65032 parent: 2 - - uid: 24931 + - uid: 24790 components: - type: Transform pos: 43.548054,-60.36112 parent: 2 - - uid: 24932 + - uid: 24791 components: - type: Transform pos: 43.588223,-25.339705 parent: 2 - - uid: 24933 + - uid: 24792 components: - type: Transform pos: 53.588223,-22.402205 parent: 2 - - uid: 24934 + - uid: 24793 components: - type: Transform pos: 47.632286,-25.284323 parent: 2 - - uid: 24935 + - uid: 24794 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.463715,59.64344 parent: 2 - - uid: 24936 + - uid: 24795 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.345184,12.656024 parent: 2 - - uid: 24937 + - uid: 24796 components: - type: Transform rot: 3.141593671850739 rad pos: 80.62308,-1.2103617 parent: 2 - - uid: 24938 + - uid: 24797 components: - type: Transform rot: 3.141593671850739 rad pos: 84.6387,-1.1791127 parent: 2 - - uid: 24939 + - uid: 24798 components: - type: Transform rot: 3.141593671850739 rad pos: 88.62308,-1.1634886 parent: 2 - - uid: 24940 + - uid: 24799 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.480155,39.872063 parent: 2 - - uid: 39464 + - uid: 39291 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.447085,-4.3240967 - parent: 38584 + parent: 38411 - proto: LampBanana entities: - - uid: 24941 + - uid: 24800 components: - type: Transform pos: -4.5296516,34.793674 parent: 2 - - uid: 24942 + - uid: 24801 components: - type: Transform pos: -36.5,0.5 parent: 2 - - uid: 24943 + - uid: 24802 components: - type: Transform rot: 3.141592653589793 rad @@ -189891,75 +189912,75 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 24944 + - uid: 24803 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.628714,-1.2583096 parent: 2 - - uid: 24945 + - uid: 24804 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.296064,-7.270985 parent: 2 - - uid: 24946 + - uid: 24805 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.666464,-7.2709846 parent: 2 - - uid: 24947 + - uid: 24806 components: - type: Transform pos: 15.555076,-51.159237 parent: 2 - - uid: 24948 + - uid: 24807 components: - type: Transform pos: -15.505793,-5.327181 parent: 2 - - uid: 24949 + - uid: 24808 components: - type: Transform rot: 3.2845950045157224E-05 rad pos: 7.4999056,7.534997 parent: 2 - - uid: 24950 + - uid: 24809 components: - type: Transform pos: 12.52658,2.690349 parent: 2 - - uid: 24951 + - uid: 24810 components: - type: Transform pos: 51.53175,-15.470508 parent: 2 - - uid: 24952 + - uid: 24811 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.608383,2.7133226 parent: 2 - - uid: 24953 + - uid: 24812 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.54723,-1.366355 parent: 2 - - uid: 24954 + - uid: 24813 components: - type: Transform rot: 3.141592653589793 rad pos: -24.441383,-12.320116 parent: 2 - - uid: 24955 + - uid: 24814 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 89.48647,6.2373233 parent: 2 - - uid: 24956 + - uid: 24815 components: - type: Transform rot: 1.5707973450558423 rad @@ -189967,110 +189988,110 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 24957 + - uid: 24816 components: - type: Transform pos: 57.585957,-3.0594435 parent: 2 - - uid: 24958 + - uid: 24817 components: - type: Transform pos: 46.304855,-3.075148 parent: 2 - proto: LandMineExplosive entities: - - uid: 24959 + - uid: 24818 components: - type: Transform pos: 25.484495,19.590271 parent: 2 - - uid: 24960 + - uid: 24819 components: - type: Transform pos: -36.26618,-76.37121 parent: 2 - - uid: 24961 + - uid: 24820 components: - type: Transform pos: -29.624964,-73.38694 parent: 2 - - uid: 24962 + - uid: 24821 components: - type: Transform pos: 10.635908,-81.58474 parent: 2 - - uid: 24963 + - uid: 24822 components: - type: Transform pos: -30.53003,-78.41371 parent: 2 - - uid: 24964 + - uid: 24823 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 94.944466,-7.075639 parent: 2 - - uid: 24965 + - uid: 24824 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 102.5955,-5.8056355 parent: 2 - - uid: 24966 + - uid: 24825 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 102.78937,1.4545923 parent: 2 - - uid: 24967 + - uid: 24826 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.45106,-7.8689337 parent: 2 - - uid: 24968 + - uid: 24827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 79.66605,-6.566653 parent: 2 - - uid: 24969 + - uid: 24828 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 76.59095,-6.7160645 parent: 2 - - uid: 24970 + - uid: 24829 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 85.51197,-6.512925 parent: 2 - - uid: 24971 + - uid: 24830 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 99.69662,5.9101176 parent: 2 - - uid: 24972 + - uid: 24831 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 100.477875,1.0753798 parent: 2 - - uid: 24973 + - uid: 24832 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 103.12242,-2.637576 parent: 2 - - uid: 24974 + - uid: 24833 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 28.495996,16.534618 parent: 2 - - uid: 24975 + - uid: 24834 components: - type: MetaData desc: Она настоящая?.. или нет... @@ -190078,61 +190099,61 @@ entities: rot: 1.0182609457842773E-06 rad pos: 99.183014,-2.5589252 parent: 2 - - uid: 24976 + - uid: 24835 components: - type: Transform pos: 20.62512,19.574646 parent: 2 - proto: LandMineModular entities: - - uid: 24977 + - uid: 24836 components: - type: Transform pos: 10.348714,-79.62576 parent: 2 - - uid: 24978 + - uid: 24837 components: - type: Transform pos: 9.364339,-80.29764 parent: 2 - - uid: 24979 + - uid: 24838 components: - type: Transform pos: 9.708088,-82.43826 parent: 2 - - uid: 24980 + - uid: 24839 components: - type: Transform pos: -38.540127,-55.51454 parent: 2 - proto: Lantern entities: - - uid: 39465 + - uid: 39292 components: - type: Transform pos: -8.5,12.5 - parent: 38584 - - uid: 39466 + parent: 38411 + - uid: 39293 components: - type: Transform pos: -0.5,25.5 - parent: 38584 - - uid: 39467 + parent: 38411 + - uid: 39294 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,13.5 - parent: 38584 + parent: 38411 - proto: LanternFlash entities: - - uid: 24981 + - uid: 24840 components: - type: Transform pos: -14.489479,-74.273415 parent: 2 - type: Physics canCollide: False - - uid: 24982 + - uid: 24841 components: - type: Transform pos: -18.52073,-74.304665 @@ -190141,43 +190162,43 @@ entities: canCollide: False - proto: LargeBeaker entities: - - uid: 24983 + - uid: 24842 components: - type: Transform pos: -10.623464,-52.304737 parent: 2 - - uid: 24984 + - uid: 24843 components: - type: Transform pos: -25.45797,-27.47972 parent: 2 - - uid: 24985 + - uid: 24844 components: - type: Transform pos: 8.488844,-31.37006 parent: 2 - type: Physics canCollide: False - - uid: 24986 + - uid: 24845 components: - type: Transform pos: -26.653925,45.56316 parent: 2 - - uid: 24987 + - uid: 24846 components: - type: Transform pos: -33.420307,37.262516 parent: 2 - proto: LauncherCreamPie entities: - - uid: 24988 + - uid: 24847 components: - type: Transform pos: -5.626899,32.597004 parent: 2 - proto: LedLightTube entities: - - uid: 24989 + - uid: 24848 components: - type: Transform rot: 6.283185307179586 rad @@ -190240,7 +190261,7 @@ entities: min: 1 - !type:DoActsBehavior acts: Destruction - - uid: 24990 + - uid: 24849 components: - type: Transform rot: 6.283185307179586 rad @@ -190303,7 +190324,7 @@ entities: min: 1 - !type:DoActsBehavior acts: Destruction - - uid: 24991 + - uid: 24850 components: - type: Transform rot: 6.283185307179586 rad @@ -190368,7 +190389,7 @@ entities: acts: Destruction - proto: LeftArmBorg entities: - - uid: 24992 + - uid: 24851 components: - type: Transform rot: 3.141592653589793 rad @@ -190376,39 +190397,39 @@ entities: parent: 2 - proto: LemonSeeds entities: - - uid: 24993 + - uid: 24852 components: - type: Transform pos: -70.34853,-20.410847 parent: 2 - proto: LemoonSeeds entities: - - uid: 24994 + - uid: 24853 components: - type: Transform pos: -70.73916,-20.723347 parent: 2 - proto: LightBulbBroken entities: - - uid: 24995 + - uid: 24854 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.984306,-73.144775 parent: 2 - - uid: 24996 + - uid: 24855 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.981056,-60.351532 parent: 2 - - uid: 24997 + - uid: 24856 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.968693,-61.888454 parent: 2 - - uid: 24998 + - uid: 24857 components: - type: Transform rot: -1.5707953085339508 rad @@ -190416,33 +190437,33 @@ entities: parent: 2 - proto: Lighter entities: - - uid: 24999 + - uid: 24858 components: - type: Transform rot: 3.141592653589793 rad pos: 53.769608,31.360748 parent: 2 - - uid: 25000 + - uid: 24859 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.60087,10.400426 parent: 2 - - uid: 25001 + - uid: 24860 components: - type: Transform pos: -62.635532,18.450417 parent: 2 - type: Physics canCollide: False - - uid: 25002 + - uid: 24861 components: - type: Transform pos: -11.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 25003 + - uid: 24862 components: - type: Transform pos: -62.479282,18.606667 @@ -190451,14 +190472,14 @@ entities: canCollide: False - proto: LightReplacer entities: - - uid: 25004 + - uid: 24863 components: - type: Transform pos: -55.503292,12.67932 parent: 2 - type: Physics canCollide: False - - uid: 25005 + - uid: 24864 components: - type: Transform pos: -53.50574,38.601086 @@ -190467,13 +190488,13 @@ entities: canCollide: False - proto: LightTubeBroken entities: - - uid: 25006 + - uid: 24865 components: - type: Transform rot: 3.141592653589793 rad pos: 36.112137,-69.765274 parent: 2 - - uid: 25007 + - uid: 24866 components: - type: Transform rot: -1.5707963267948966 rad @@ -190481,10 +190502,10 @@ entities: parent: 2 - proto: LightTubeCrystalOrange entities: - - uid: 25009 + - uid: 24868 components: - type: Transform - parent: 25008 + parent: 24867 - type: LightBulb lightRadius: 2 lightEnergy: 1 @@ -190492,19 +190513,19 @@ entities: canCollide: False - proto: LightTubeCrystalPink entities: - - uid: 25011 + - uid: 24870 components: - type: Transform - parent: 25010 + parent: 24869 - type: LightBulb lightRadius: 4 lightEnergy: 2 - type: Physics canCollide: False - - uid: 25013 + - uid: 24872 components: - type: Transform - parent: 25012 + parent: 24871 - type: LightBulb lightRadius: 2 lightEnergy: 1 @@ -190512,693 +190533,693 @@ entities: canCollide: False - proto: LightTubeCrystalRed entities: - - uid: 25015 + - uid: 24874 components: - type: Transform - parent: 25847 + parent: 24873 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25017 + - uid: 24876 components: - type: Transform - parent: 25016 + parent: 24875 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25019 + - uid: 24878 components: - type: Transform - parent: 25018 + parent: 24877 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25021 + - uid: 24880 components: - type: Transform - parent: 25020 + parent: 24879 - type: LightBulb lightRadius: 4 lightEnergy: 2 - type: Physics canCollide: False - - uid: 25023 + - uid: 24882 components: - type: Transform - parent: 25022 + parent: 24881 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25027 + - uid: 24884 components: - type: Transform - parent: 25026 + parent: 24883 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25031 + - uid: 24886 components: - type: Transform - parent: 25030 + parent: 24885 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25033 + - uid: 24888 components: - type: Transform - parent: 25032 + parent: 24887 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25035 + - uid: 24890 components: - type: Transform - parent: 25034 + parent: 24889 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25037 + - uid: 24892 components: - type: Transform - parent: 25036 + parent: 24891 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25039 + - uid: 24894 components: - type: Transform - parent: 25038 + parent: 24893 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25041 + - uid: 24896 components: - type: Transform - parent: 25040 + parent: 24895 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25043 + - uid: 24898 components: - type: Transform - parent: 25042 + parent: 24897 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25045 + - uid: 24900 components: - type: Transform - parent: 25044 + parent: 24899 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25047 + - uid: 24902 components: - type: Transform - parent: 25046 + parent: 24901 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25049 + - uid: 24904 components: - type: Transform - parent: 25048 + parent: 24903 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25051 + - uid: 24906 components: - type: Transform - parent: 25050 + parent: 24905 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25053 + - uid: 24908 components: - type: Transform - parent: 25052 + parent: 24907 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25055 + - uid: 24910 components: - type: Transform - parent: 25054 + parent: 24909 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25057 + - uid: 24912 components: - type: Transform - parent: 25056 + parent: 24911 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25059 + - uid: 24914 components: - type: Transform - parent: 25058 + parent: 24913 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25061 + - uid: 24916 components: - type: Transform - parent: 25060 + parent: 24915 - type: LightBulb lightRadius: 2 - type: Physics canCollide: False - - uid: 25063 + - uid: 24918 components: - type: Transform - parent: 25062 + parent: 24917 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25065 + - uid: 24920 components: - type: Transform - parent: 25064 + parent: 24919 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25067 + - uid: 24922 components: - type: Transform - parent: 25066 + parent: 24921 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25069 + - uid: 24924 components: - type: Transform - parent: 25068 + parent: 24923 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25071 + - uid: 24926 components: - type: Transform - parent: 25070 + parent: 24925 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25073 + - uid: 24928 components: - type: Transform - parent: 25072 + parent: 24927 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25075 + - uid: 24930 components: - type: Transform - parent: 25074 + parent: 24929 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25077 + - uid: 24932 components: - type: Transform - parent: 25076 + parent: 24931 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25079 + - uid: 24934 components: - type: Transform - parent: 25078 + parent: 24933 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25081 + - uid: 24936 components: - type: Transform - parent: 25080 + parent: 24935 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25083 + - uid: 24938 components: - type: Transform - parent: 25082 + parent: 24937 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25085 + - uid: 24940 components: - type: Transform - parent: 25084 + parent: 24939 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25087 + - uid: 24942 components: - type: Transform - parent: 25086 + parent: 24941 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25089 + - uid: 24944 components: - type: Transform - parent: 25088 + parent: 24943 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25091 + - uid: 24946 components: - type: Transform - parent: 25090 + parent: 24945 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25093 + - uid: 24948 components: - type: Transform - parent: 25092 + parent: 24947 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25095 + - uid: 24950 components: - type: Transform - parent: 25094 + parent: 24949 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25097 + - uid: 24952 components: - type: Transform - parent: 25096 + parent: 24951 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25099 + - uid: 24954 components: - type: Transform - parent: 25098 + parent: 24953 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25101 + - uid: 24956 components: - type: Transform - parent: 25100 + parent: 24955 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25103 + - uid: 24958 components: - type: Transform - parent: 25102 + parent: 24957 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25105 + - uid: 24960 components: - type: Transform - parent: 25104 + parent: 24959 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25107 + - uid: 24962 components: - type: Transform - parent: 25106 + parent: 24961 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25109 + - uid: 24964 components: - type: Transform - parent: 25108 + parent: 24963 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25111 + - uid: 24966 components: - type: Transform - parent: 25110 + parent: 24965 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25113 + - uid: 24968 components: - type: Transform - parent: 25112 + parent: 24967 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25115 + - uid: 24970 components: - type: Transform - parent: 25114 + parent: 24969 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25117 + - uid: 24972 components: - type: Transform - parent: 25116 + parent: 24971 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25119 + - uid: 24974 components: - type: Transform - parent: 25118 + parent: 24973 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25121 + - uid: 24976 components: - type: Transform - parent: 25120 + parent: 24975 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25123 + - uid: 24978 components: - type: Transform - parent: 25122 + parent: 24977 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25125 + - uid: 24980 components: - type: Transform - parent: 25124 + parent: 24979 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25127 + - uid: 24982 components: - type: Transform - parent: 25126 + parent: 24981 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25129 + - uid: 24984 components: - type: Transform - parent: 25128 + parent: 24983 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25131 + - uid: 24986 components: - type: Transform - parent: 25130 + parent: 24985 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25133 + - uid: 24988 components: - type: Transform - parent: 25132 + parent: 24987 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25135 + - uid: 24990 components: - type: Transform - parent: 25134 + parent: 24989 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25137 + - uid: 24992 components: - type: Transform - parent: 25136 + parent: 24991 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25139 + - uid: 24994 components: - type: Transform - parent: 25138 + parent: 24993 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25141 + - uid: 24996 components: - type: Transform - parent: 25140 + parent: 24995 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25143 + - uid: 24998 components: - type: Transform - parent: 25142 + parent: 24997 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25145 + - uid: 25000 components: - type: Transform - parent: 25144 + parent: 24999 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25147 + - uid: 25002 components: - type: Transform - parent: 25146 + parent: 25001 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25149 + - uid: 25004 components: - type: Transform - parent: 25148 + parent: 25003 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25151 + - uid: 25006 components: - type: Transform - parent: 25150 + parent: 25005 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25153 + - uid: 25008 components: - type: Transform - parent: 25152 + parent: 25007 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25155 + - uid: 25010 components: - type: Transform - parent: 25154 + parent: 25009 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25157 + - uid: 25012 components: - type: Transform - parent: 25156 + parent: 25011 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25159 + - uid: 25014 components: - type: Transform - parent: 25158 + parent: 25013 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25161 + - uid: 25016 components: - type: Transform - parent: 25160 + parent: 25015 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25163 + - uid: 25018 components: - type: Transform - parent: 25162 + parent: 25017 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25165 + - uid: 25020 components: - type: Transform - parent: 25164 + parent: 25019 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - proto: LiquidCarbonDioxideCanister entities: - - uid: 25166 + - uid: 25021 components: - type: Transform pos: -49.5,25.5 parent: 2 - proto: LiquidNitrogenCanister entities: - - uid: 25167 + - uid: 25022 components: - type: Transform pos: -47.5,24.5 parent: 2 - - uid: 25168 + - uid: 25023 components: - type: Transform pos: -47.5,25.5 parent: 2 - proto: LiquidOxygenCanister entities: - - uid: 25169 + - uid: 25024 components: - type: Transform pos: -46.5,24.5 parent: 2 - - uid: 25170 + - uid: 25025 components: - type: Transform pos: -46.5,25.5 parent: 2 - proto: LockableButtonArmory entities: - - uid: 25171 + - uid: 25026 components: - type: MetaData name: арсенал красного кода @@ -191208,9 +191229,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1513: + 1518: - Pressed: Toggle - - uid: 25172 + - uid: 25027 components: - type: MetaData name: дополнительный арсенал @@ -191220,9 +191241,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1514: + 1519: - Pressed: Toggle - - uid: 25173 + - uid: 25028 components: - type: MetaData name: арсенал синего кода @@ -191232,9 +191253,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1512: + 1517: - Pressed: Toggle - - uid: 25174 + - uid: 25029 components: - type: Transform rot: 1.5707963267948966 rad @@ -191242,11 +191263,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1515: + 1520: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: - - uid: 25175 + - uid: 25030 components: - type: Transform rot: 1.5707963267948966 rad @@ -191254,17 +191275,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1548: + 1553: - Pressed: Toggle - 1547: + 1552: - Pressed: Toggle - 1546: + 1551: - Pressed: Toggle - 1549: + 1554: - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - - uid: 25176 + - uid: 25031 components: - type: Transform rot: -1.5707963267948966 rad @@ -191272,39 +191293,39 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29250: + 29048: - Pressed: Toggle - 29335: + 29133: - Pressed: Toggle - 29321: + 29119: - Pressed: Toggle - 29306: + 29104: - Pressed: Toggle - 29342: + 29140: - Pressed: Toggle - 29337: + 29135: - Pressed: Toggle - 29308: + 29106: - Pressed: Toggle - 29334: + 29132: - Pressed: Toggle - 29331: + 29129: - Pressed: Toggle - 29336: + 29134: - Pressed: Toggle - 29307: + 29105: - Pressed: Toggle - 29320: + 29118: - Pressed: Toggle - 29318: + 29116: - Pressed: Toggle - 29319: + 29117: - Pressed: Toggle - 29305: + 29103: - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - - uid: 14956 + - uid: 14897 components: - type: Transform pos: -56.5,33.5 @@ -191333,14 +191354,14 @@ entities: showEnts: False occludes: True ents: - - 14957 - - 14958 - - 14959 + - 14898 + - 14899 + - 14900 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14960 + - uid: 14901 components: - type: Transform pos: -56.5,34.5 @@ -191369,14 +191390,14 @@ entities: showEnts: False occludes: True ents: - - 14962 - - 14961 - - 14963 + - 14903 + - 14902 + - 14904 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14964 + - uid: 14905 components: - type: Transform pos: -56.5,32.5 @@ -191405,16 +191426,16 @@ entities: showEnts: False occludes: True ents: - - 14967 - - 14965 - - 14966 + - 14908 + - 14906 + - 14907 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBooze entities: - - uid: 1836 + - uid: 1840 components: - type: MetaData desc: Обычный шкаф для хранения вещей. @@ -191448,40 +191469,40 @@ entities: showEnts: False occludes: True ents: - - 1837 - - 1838 - - 1839 + - 1841 + - 1842 + - 1843 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBoozeFilled entities: - - uid: 25177 + - uid: 25032 components: - type: Transform pos: -3.5,40.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 25178 + - uid: 25033 components: - type: Transform pos: -38.5,48.5 parent: 2 - - uid: 25179 + - uid: 25034 components: - type: Transform pos: -38.5,49.5 parent: 2 - - uid: 25180 + - uid: 25035 components: - type: Transform pos: -38.5,50.5 parent: 2 - proto: LockerBrigmedic entities: - - uid: 14810 + - uid: 14750 components: - type: Transform pos: 66.5,-2.5 @@ -191510,28 +191531,28 @@ entities: showEnts: False occludes: True ents: - - 14824 - - 14825 - - 14811 - - 14819 - - 14818 - - 14813 - - 14817 - - 14812 - - 14814 - - 14821 - - 14820 - - 14823 - - 14815 - - 14816 - - 14822 + - 14764 + - 14765 + - 14751 + - 14759 + - 14758 + - 14753 + - 14757 + - 14752 + - 14754 + - 14761 + - 14760 + - 14763 + - 14755 + - 14756 + - 14762 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerCaptainFilled entities: - - uid: 25181 + - uid: 25036 components: - type: Transform pos: 11.5,3.5 @@ -191556,7 +191577,7 @@ entities: - 0 - proto: LockerChemistryFilled entities: - - uid: 25182 + - uid: 25037 components: - type: Transform pos: 8.5,-29.481438 @@ -191581,14 +191602,14 @@ entities: - 0 - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 25183 + - uid: 25038 components: - type: Transform pos: -55.5,7.5 parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 25184 + - uid: 25039 components: - type: Transform pos: 20.5,-50.5 @@ -191613,7 +191634,7 @@ entities: - 0 - proto: LockerClown entities: - - uid: 14826 + - uid: 14766 components: - type: Transform pos: -9.5,52.5 @@ -191642,23 +191663,23 @@ entities: showEnts: False occludes: True ents: - - 14832 - - 14830 - - 14831 - - 14827 - - 14837 - - 14834 - - 14833 - - 14829 - - 14838 - - 14836 - - 14835 - - 14828 + - 14772 + - 14770 + - 14771 + - 14767 + - 14777 + - 14774 + - 14773 + - 14769 + - 14778 + - 14776 + - 14775 + - 14768 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25185 + - uid: 25040 components: - type: Transform pos: -4.5,32.5 @@ -191683,7 +191704,7 @@ entities: - 0 - proto: LockerDetective entities: - - uid: 1645 + - uid: 1649 components: - type: MetaData name: шкаф отца Гарсии @@ -191716,14 +191737,14 @@ entities: showEnts: False occludes: True ents: - - 1646 - - 1647 - - 1648 + - 1650 + - 1651 + - 1652 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14916 + - uid: 14857 components: - type: Transform pos: 72.5,-36.5 @@ -191752,19 +191773,19 @@ entities: showEnts: False occludes: True ents: - - 14919 - - 14917 - - 14918 - - 14920 - - 14921 - - 14922 + - 14860 + - 14858 + - 14859 + - 14861 + - 14862 + - 14863 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 25186 + - uid: 25041 components: - type: Transform pos: 29.5,12.5 @@ -191793,15 +191814,15 @@ entities: showEnts: False occludes: True ents: - - 25188 - - 25187 + - 25043 + - 25042 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerElectricalSuppliesFilled entities: - - uid: 25190 + - uid: 25044 components: - type: Transform pos: -58.5,-11.5 @@ -191824,39 +191845,39 @@ entities: - 0 - 0 - 0 - - uid: 25191 + - uid: 25045 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 25192 + - uid: 25046 components: - type: Transform pos: -77.5,-23.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 25193 + - uid: 25047 components: - type: Transform pos: -81.5,15.5 parent: 2 - - uid: 25194 + - uid: 25048 components: - type: Transform pos: -60.5,-12.5 parent: 2 - - uid: 25195 + - uid: 25049 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 25196 + - uid: 25050 components: - type: Transform pos: -60.5,-11.5 parent: 2 - - uid: 25197 + - uid: 25051 components: - type: Transform pos: -60.5,-1.5 @@ -191879,7 +191900,7 @@ entities: - 0 - 0 - 0 - - uid: 25198 + - uid: 25052 components: - type: Transform pos: -60.5,-2.5 @@ -191902,7 +191923,7 @@ entities: - 0 - 0 - 0 - - uid: 25199 + - uid: 25053 components: - type: Transform pos: -55.5,3.5000002 @@ -191925,7 +191946,7 @@ entities: - 0 - 0 - 0 - - uid: 25200 + - uid: 25054 components: - type: Transform pos: -48.5,-3.5 @@ -191948,7 +191969,7 @@ entities: - 0 - 0 - 0 - - uid: 25201 + - uid: 25055 components: - type: Transform pos: -56.5,3.5000002 @@ -191971,7 +191992,7 @@ entities: - 0 - 0 - 0 - - uid: 25202 + - uid: 25056 components: - type: Transform pos: -60.5,-3.5 @@ -191994,7 +192015,7 @@ entities: - 0 - 0 - 0 - - uid: 25203 + - uid: 25057 components: - type: Transform pos: -49.5,-3.5 @@ -192019,7 +192040,7 @@ entities: - 0 - proto: LockerEvidence entities: - - uid: 1668 + - uid: 1672 components: - type: Transform pos: 31.5,12.5 @@ -192050,27 +192071,27 @@ entities: showEnts: False occludes: True ents: - - 1669 + - 1673 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25204 + - uid: 25058 components: - type: Transform pos: 49.5,-8.5 parent: 2 - - uid: 25205 + - uid: 25059 components: - type: Transform pos: 48.5,-6.5 parent: 2 - - uid: 25206 + - uid: 25060 components: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 25207 + - uid: 25061 components: - type: Transform pos: 46.5,1.5 @@ -192093,12 +192114,12 @@ entities: - 0 - 0 - 0 - - uid: 25208 + - uid: 25062 components: - type: Transform pos: 65.5,3.5 parent: 2 - - uid: 25209 + - uid: 25063 components: - type: Transform pos: 6.5,-77.5 @@ -192121,7 +192142,7 @@ entities: - 0 - 0 - 0 - - uid: 25210 + - uid: 25064 components: - type: Transform pos: 6.5,-73.5 @@ -192144,7 +192165,7 @@ entities: - 0 - 0 - 0 - - uid: 25211 + - uid: 25065 components: - type: Transform pos: 39.5,9.5 @@ -192167,7 +192188,7 @@ entities: - 0 - 0 - 0 - - uid: 25212 + - uid: 25066 components: - type: Transform pos: 35.5,11.5 @@ -192190,12 +192211,12 @@ entities: - 0 - 0 - 0 - - uid: 25213 + - uid: 25067 components: - type: Transform pos: 35.5,12.5 parent: 2 - - uid: 25214 + - uid: 25068 components: - type: Transform pos: 39.5,3.5 @@ -192218,7 +192239,7 @@ entities: - 0 - 0 - 0 - - uid: 25215 + - uid: 25069 components: - type: Transform pos: 46.5,13.5 @@ -192241,64 +192262,64 @@ entities: - 0 - 0 - 0 - - uid: 25216 + - uid: 25070 components: - type: Transform pos: 74.5,2.5 parent: 2 - - uid: 25217 + - uid: 25071 components: - type: Transform pos: 74.49999,3.5 parent: 2 - - uid: 25218 + - uid: 25072 components: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 25219 + - uid: 25073 components: - type: Transform pos: 47.5,-8.5 parent: 2 - - uid: 25220 + - uid: 25074 components: - type: Transform pos: 48.5,-8.5 parent: 2 - - uid: 25221 + - uid: 25075 components: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 39468 + - uid: 39295 components: - type: Transform pos: 1.5,-10.5 - parent: 38584 - - uid: 39469 + parent: 38411 + - uid: 39296 components: - type: Transform pos: 1.5,-8.5 - parent: 38584 - - uid: 39470 + parent: 38411 + - uid: 39297 components: - type: Transform pos: 1.5,-9.5 - parent: 38584 - - uid: 39471 + parent: 38411 + - uid: 39298 components: - type: Transform pos: 1.5,-7.5 - parent: 38584 - - uid: 39472 + parent: 38411 + - uid: 39299 components: - type: Transform pos: -2.5,-1.5 - parent: 38584 + parent: 38411 - proto: LockerFreezer entities: - - uid: 25222 + - uid: 25076 components: - type: Transform pos: 18.5,65.5 @@ -192323,7 +192344,7 @@ entities: - 0 - 0 - 0 - - uid: 25223 + - uid: 25077 components: - type: Transform pos: -30.5,25.5 @@ -192346,7 +192367,7 @@ entities: - 0 - 0 - 0 - - uid: 25224 + - uid: 25078 components: - type: Transform pos: -31.5,25.5 @@ -192371,7 +192392,7 @@ entities: - 0 - proto: LockerFreezerBase entities: - - uid: 18591 + - uid: 18517 components: - type: Transform pos: 64.5,30.5 @@ -192402,14 +192423,14 @@ entities: showEnts: False occludes: True ents: - - 18594 - - 18593 - - 18592 + - 18520 + - 18519 + - 18518 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 18652 + - uid: 18575 components: - type: Transform pos: -25.5,-14.5 @@ -192438,21 +192459,21 @@ entities: showEnts: False occludes: True ents: - - 18653 + - 18576 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25225 + - uid: 25079 components: - type: Transform pos: -5.5,38.5 parent: 2 - - uid: 39473 + - uid: 39300 components: - type: Transform pos: -19.5,30.5 - parent: 38584 + parent: 38411 - type: Lock locked: False - type: EntityStorage @@ -192473,21 +192494,21 @@ entities: - 0 - 0 - 0 - - uid: 39474 + - uid: 39301 components: - type: Transform pos: -18.5,-1.5 - parent: 38584 + parent: 38411 - proto: LockerFreezerVaultFilled entities: - - uid: 13180 + - uid: 25080 components: - type: Transform pos: 24.5,12.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 25226 + - uid: 25081 components: - type: Transform pos: -14.5,-5.5 @@ -192512,7 +192533,7 @@ entities: - 0 - proto: LockerHeadOfSecurityFilled entities: - - uid: 15235 + - uid: 15179 components: - type: Transform pos: 34.5,18.5 @@ -192541,15 +192562,15 @@ entities: showEnts: False occludes: True ents: - - 15237 - - 15236 + - 15181 + - 15180 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicalFilled entities: - - uid: 14997 + - uid: 14938 components: - type: Transform pos: 29.5,-21.5 @@ -192578,13 +192599,13 @@ entities: showEnts: False occludes: True ents: - - 14998 - - 14999 + - 14939 + - 14940 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15000 + - uid: 14941 components: - type: Transform pos: 30.5,-21.5 @@ -192613,54 +192634,54 @@ entities: showEnts: False occludes: True ents: - - 15001 + - 14942 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25227 + - uid: 25082 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 25228 + - uid: 25083 components: - type: Transform pos: 22.5,-24.5 parent: 2 - - uid: 25229 + - uid: 25084 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 25230 + - uid: 25085 components: - type: Transform pos: 6.5,-46.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 25231 + - uid: 25086 components: - type: Transform pos: 6.5,-12.5 parent: 2 - - uid: 25232 + - uid: 25087 components: - type: Transform pos: -4.5,-61.5 parent: 2 - - uid: 25233 + - uid: 25088 components: - type: Transform pos: 5.5,65.5 parent: 2 - - uid: 25234 + - uid: 25089 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 25235 + - uid: 25090 components: - type: Transform pos: 32.5,-69.5 @@ -192683,17 +192704,17 @@ entities: - 0 - 0 - 0 - - uid: 25236 + - uid: 25091 components: - type: Transform pos: 9.5,-54.5 parent: 2 - - uid: 25237 + - uid: 25092 components: - type: Transform pos: 8.5,-46.5 parent: 2 - - uid: 25238 + - uid: 25093 components: - type: Transform pos: 44.5,-30.5 @@ -192718,7 +192739,7 @@ entities: - 0 - proto: LockerMime entities: - - uid: 14840 + - uid: 14780 components: - type: Transform pos: -2.5,46.5 @@ -192747,31 +192768,31 @@ entities: showEnts: False occludes: True ents: - - 14859 - - 14858 - - 14857 - - 14850 - - 14841 - - 14844 - - 14849 - - 14856 - - 9974 - - 14846 - - 14855 - - 14847 - - 14852 - - 14854 - - 14853 - - 14845 - - 14848 - - 14843 - - 14842 - - 14851 + - 14800 + - 14799 + - 14798 + - 14791 + - 14781 + - 14784 + - 14790 + - 14797 + - 14789 + - 14786 + - 14796 + - 14787 + - 14793 + - 14795 + - 14794 + - 14785 + - 14788 + - 14783 + - 14782 + - 14792 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25239 + - uid: 25094 components: - type: Transform pos: -6.5,28.5 @@ -192796,7 +192817,7 @@ entities: - 0 - proto: LockerParamedicFilled entities: - - uid: 25240 + - uid: 25095 components: - type: Transform pos: 12.5,-42.5 @@ -192821,14 +192842,14 @@ entities: - 0 - proto: LockerQuarterMasterFilled entities: - - uid: 25241 + - uid: 25096 components: - type: Transform pos: 29.5,40.5 parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 25242 + - uid: 25097 components: - type: Transform pos: -20.5,-45.5 @@ -192853,22 +192874,22 @@ entities: - 0 - proto: LockerSalvageSpecialistFilled entities: - - uid: 25243 + - uid: 25098 components: - type: Transform pos: 24.5,32.5 parent: 2 - - uid: 25244 + - uid: 25099 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 25245 + - uid: 25100 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 25246 + - uid: 25101 components: - type: Transform pos: 11.5,86.5 @@ -192907,7 +192928,7 @@ entities: ent: null - proto: LockerSecurityFilled entities: - - uid: 25247 + - uid: 25102 components: - type: Transform pos: 55.5,13.5 @@ -192930,7 +192951,7 @@ entities: - 0 - 0 - 0 - - uid: 25248 + - uid: 25103 components: - type: Transform pos: 59.5,11.5 @@ -192953,7 +192974,7 @@ entities: - 0 - 0 - 0 - - uid: 25249 + - uid: 25104 components: - type: Transform pos: 59.5,13.5 @@ -192976,7 +192997,7 @@ entities: - 0 - 0 - 0 - - uid: 25250 + - uid: 25105 components: - type: Transform pos: 60.5,13.5 @@ -192999,7 +193020,7 @@ entities: - 0 - 0 - 0 - - uid: 25251 + - uid: 25106 components: - type: Transform pos: 14.5,-29.5 @@ -193022,7 +193043,7 @@ entities: - 0 - 0 - 0 - - uid: 25252 + - uid: 25107 components: - type: Transform pos: 53.5,13.5 @@ -193045,7 +193066,7 @@ entities: - 0 - 0 - 0 - - uid: 25253 + - uid: 25108 components: - type: Transform pos: 60.5,11.5 @@ -193068,7 +193089,7 @@ entities: - 0 - 0 - 0 - - uid: 25254 + - uid: 25109 components: - type: Transform pos: 8.5,-57.5 @@ -193091,7 +193112,7 @@ entities: - 0 - 0 - 0 - - uid: 25255 + - uid: 25110 components: - type: Transform pos: -23.5,2.5 @@ -193114,7 +193135,7 @@ entities: - 0 - 0 - 0 - - uid: 25256 + - uid: 25111 components: - type: Transform pos: -19.5,-27.5 @@ -193137,7 +193158,7 @@ entities: - 0 - 0 - 0 - - uid: 25257 + - uid: 25112 components: - type: Transform pos: 58.5,11.5 @@ -193160,7 +193181,7 @@ entities: - 0 - 0 - 0 - - uid: 25258 + - uid: 25113 components: - type: Transform pos: 3.5,65.5 @@ -193185,7 +193206,7 @@ entities: - 0 - proto: LockerSteel entities: - - uid: 15705 + - uid: 15688 components: - type: Transform pos: 55.5,-34.5 @@ -193216,21 +193237,21 @@ entities: showEnts: False occludes: True ents: - - 15706 - - 15713 - - 15712 - - 15711 - - 15710 - - 15709 - - 15708 - - 15707 + - 15689 + - 15696 + - 15695 + - 15694 + - 15693 + - 15692 + - 15691 + - 15690 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerSyndicatePersonal entities: - - uid: 1388 + - uid: 1392 components: - type: Transform pos: -36.5,-55.5 @@ -193261,18 +193282,18 @@ entities: showEnts: False occludes: True ents: - - 1389 - - 1391 - - 1390 + - 1393 + - 1395 + - 1394 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 39100 + - uid: 38927 components: - type: Transform pos: -22.5,27.5 - parent: 38584 + parent: 38411 - type: Lock locked: False - type: EntityStorage @@ -193299,19 +193320,19 @@ entities: showEnts: False occludes: True ents: - - 39103 - - 39106 - - 39104 - - 39105 - - 39101 - - 39102 + - 38930 + - 38933 + - 38931 + - 38932 + - 38928 + - 38929 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerWallMedical entities: - - uid: 25259 + - uid: 25114 components: - type: Transform rot: 1.5707963267948966 rad @@ -193337,14 +193358,14 @@ entities: - 0 - proto: LockerWarden entities: - - uid: 39475 + - uid: 39302 components: - type: Transform pos: 11.5,-5.5 - parent: 38584 + parent: 38411 - proto: LockerWardenFilled entities: - - uid: 15009 + - uid: 14950 components: - type: Transform pos: 55.5,6.5 @@ -193373,25 +193394,25 @@ entities: showEnts: False occludes: True ents: - - 15016 - - 15013 - - 15010 - - 15011 - - 15012 - - 15015 - - 15014 + - 14957 + - 14954 + - 14951 + - 14952 + - 14953 + - 14956 + - 14955 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerWeldingSuppliesFilled entities: - - uid: 25260 + - uid: 25115 components: - type: Transform pos: 10.500001,-14.5 parent: 2 - - uid: 25261 + - uid: 25116 components: - type: Transform pos: -58.5,-3.5 @@ -193416,39 +193437,39 @@ entities: - 0 - proto: Log entities: - - uid: 25262 + - uid: 25117 components: - type: Transform pos: -67.311874,62.552517 parent: 2 - - uid: 25263 + - uid: 25118 components: - type: Transform pos: -67.39,62.818142 parent: 2 - - uid: 25264 + - uid: 25119 components: - type: Transform pos: -67.29626,62.833767 parent: 2 - - uid: 25265 + - uid: 25120 components: - type: Transform pos: -32.549194,-64.52818 parent: 2 - - uid: 25266 + - uid: 25121 components: - type: Transform pos: -67.54625,62.583767 parent: 2 - - uid: 25267 + - uid: 25122 components: - type: Transform pos: -32.292347,-64.430336 parent: 2 - proto: LuxuryPen entities: - - uid: 25268 + - uid: 25123 components: - type: Transform rot: -1.5707953085339508 rad @@ -193456,24 +193477,24 @@ entities: parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 25269 + - uid: 25124 components: - type: Transform pos: -22.5,-56.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 25270 + - uid: 25125 components: - type: Transform pos: -13.5,-59.5 parent: 2 - - uid: 25271 + - uid: 25126 components: - type: Transform pos: -12.5,-59.5 parent: 2 - - uid: 25272 + - uid: 25127 components: - type: Transform rot: 3.141592653589793 rad @@ -193481,19 +193502,19 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 25273 + - uid: 25128 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 - - uid: 25274 + - uid: 25129 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-59.5 parent: 2 - - uid: 25275 + - uid: 25130 components: - type: Transform rot: 3.141592653589793 rad @@ -193501,197 +193522,197 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 25276 + - uid: 25131 components: - type: Transform pos: -37.5,-40.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 25277 + - uid: 25132 components: - type: Transform pos: 2.5,-30.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 25278 + - uid: 25133 components: - type: Transform pos: 3.5,-29.5 parent: 2 - proto: MachineFrame entities: - - uid: 25279 + - uid: 25134 components: - type: Transform pos: -7.5,-41.5 parent: 2 - - uid: 25280 + - uid: 25135 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 25281 + - uid: 25136 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 25282 + - uid: 25137 components: - type: Transform pos: -44.5,-9.5 parent: 2 - - uid: 25283 + - uid: 25138 components: - type: Transform pos: -45.5,-8.5 parent: 2 - - uid: 25284 + - uid: 25139 components: - type: Transform pos: -45.5,-9.5 parent: 2 - - uid: 25285 + - uid: 25140 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,58.5 parent: 2 - - uid: 25286 + - uid: 25141 components: - type: Transform pos: -7.5,-52.5 parent: 2 - - uid: 25287 + - uid: 25142 components: - type: Transform pos: -112.5,39.5 parent: 2 - - uid: 25288 + - uid: 25143 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 25289 + - uid: 25144 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-35.5 parent: 2 - - uid: 25290 + - uid: 25145 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,52.5 parent: 2 - - uid: 25291 + - uid: 25146 components: - type: Transform pos: -112.5,37.5 parent: 2 - - uid: 25292 + - uid: 25147 components: - type: Transform pos: -114.5,41.5 parent: 2 - - uid: 25293 + - uid: 25148 components: - type: Transform pos: -112.5,41.5 parent: 2 - - uid: 25294 + - uid: 25149 components: - type: Transform pos: -114.5,39.5 parent: 2 - - uid: 25295 + - uid: 25150 components: - type: Transform pos: -114.5,37.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 25297 + - uid: 25151 components: - type: Transform pos: -40.5,-55.5 parent: 2 - - uid: 25298 + - uid: 25152 components: - type: Transform pos: 28.5,-65.5 parent: 2 - - uid: 25300 + - uid: 25153 components: - type: Transform pos: -38.5,-35.5 parent: 2 - - uid: 25301 + - uid: 25154 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 39476 + - uid: 39303 components: - type: Transform pos: 13.5,18.5 - parent: 38584 - - uid: 39477 + parent: 38411 + - uid: 39304 components: - type: Transform pos: 14.5,16.5 - parent: 38584 - - uid: 39478 + parent: 38411 + - uid: 39305 components: - type: Transform pos: 11.5,22.5 - parent: 38584 - - uid: 39479 + parent: 38411 + - uid: 39306 components: - type: Transform pos: -4.5,1.5 - parent: 38584 + parent: 38411 - proto: MagazineBoxMagnum entities: - - uid: 25187 + - uid: 25042 components: - type: Transform - parent: 25186 + parent: 25041 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagazineBoxMagnumPractice entities: - - uid: 25188 + - uid: 25043 components: - type: Transform - parent: 25186 + parent: 25041 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagazineBoxPistolPractice entities: - - uid: 25302 + - uid: 25155 components: - type: Transform pos: 56.684937,19.51429 parent: 2 - proto: MagazineLightRifle entities: - - uid: 25303 + - uid: 25156 components: - type: Transform pos: 40.69412,17.532423 parent: 2 - - uid: 25304 + - uid: 25157 components: - type: Transform pos: 40.4283,17.514713 parent: 2 - proto: MagazineLightRifleMaxim entities: - - uid: 37660 + - uid: 25158 components: - type: MetaData name: проигрыватель @@ -193705,427 +193726,427 @@ entities: - Pullable - proto: MagazineLightRiflePractice entities: - - uid: 25305 + - uid: 25159 components: - type: Transform pos: 41.438423,17.514713 parent: 2 - proto: MagazinePistol entities: - - uid: 25306 + - uid: 25160 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25307 + - uid: 25161 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25308 + - uid: 25162 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25309 + - uid: 25163 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25310 + - uid: 25164 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25311 + - uid: 25165 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25312 + - uid: 25166 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25313 + - uid: 25167 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25314 + - uid: 25168 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.565617,7.4610443 parent: 2 - - uid: 25315 + - uid: 25169 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.516697,8.451722 parent: 2 - - uid: 25316 + - uid: 25170 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.504467,8.378339 parent: 2 - - uid: 25317 + - uid: 25171 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.541157,7.4610443 parent: 2 - - uid: 39480 + - uid: 39307 components: - type: Transform rot: 3.141592653589793 rad pos: 11.3486,-2.849823 - parent: 38584 + parent: 38411 - proto: MaintenanceFluffSpawner entities: - - uid: 25318 + - uid: 25172 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 25319 + - uid: 25173 components: - type: Transform pos: 7.5,48.5 parent: 2 - - uid: 25320 + - uid: 25174 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 25321 + - uid: 25175 components: - type: Transform pos: -37.5,25.5 parent: 2 - - uid: 25322 + - uid: 25176 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 25323 + - uid: 25177 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 25324 + - uid: 25178 components: - type: Transform pos: 20.5,-17.5 parent: 2 - - uid: 25325 + - uid: 25179 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 25326 + - uid: 25180 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 25327 + - uid: 25181 components: - type: Transform pos: -34.5,-56.5 parent: 2 - - uid: 25328 + - uid: 25182 components: - type: Transform pos: -36.5,59.5 parent: 2 - - uid: 25329 + - uid: 25183 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 25330 + - uid: 25184 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 25331 + - uid: 25185 components: - type: Transform pos: 13.5,61.5 parent: 2 - - uid: 25332 + - uid: 25186 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,21.5 parent: 2 - - uid: 25333 + - uid: 25187 components: - type: Transform pos: -40.5,48.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 25334 + - uid: 25188 components: - type: Transform pos: 20.5,41.5 parent: 2 - - uid: 25335 + - uid: 25189 components: - type: Transform pos: 9.5,64.5 parent: 2 - - uid: 25336 + - uid: 25190 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 25337 + - uid: 25191 components: - type: Transform pos: 5.5,87.5 parent: 2 - - uid: 25338 + - uid: 25192 components: - type: Transform pos: 19.5,41.5 parent: 2 - - uid: 25339 + - uid: 25193 components: - type: Transform pos: -113.5,21.5 parent: 2 - - uid: 25340 + - uid: 25194 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 25341 + - uid: 25195 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 25342 + - uid: 25196 components: - type: Transform pos: -42.5,-4.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 25343 + - uid: 25197 components: - type: Transform pos: 20.5,-18.5 parent: 2 - proto: Matchbox entities: - - uid: 25344 + - uid: 25198 components: - type: Transform pos: -45.316975,-32.250988 parent: 2 - - uid: 25345 + - uid: 25199 components: - type: Transform pos: -62.510532,18.544167 parent: 2 - type: Physics canCollide: False - - uid: 25346 + - uid: 25200 components: - type: Transform pos: 72.99635,-45.369106 parent: 2 - proto: MaterialCloth entities: - - uid: 25347 + - uid: 25201 components: - type: Transform pos: -13.644094,1.6663073 parent: 2 - type: Stack count: 29 - - uid: 25348 + - uid: 25202 components: - type: Transform pos: 30.5,-46.5 parent: 2 - proto: MaterialCloth1 entities: - - uid: 15216 + - uid: 15160 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15221 + - uid: 15165 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15226 + - uid: 15170 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MaterialDurathread entities: - - uid: 25349 + - uid: 25203 components: - type: Transform pos: -13.332681,1.5413071 parent: 2 - proto: MaterialReclaimer entities: - - uid: 25351 + - uid: 25204 components: - type: Transform pos: 11.5,37.5 parent: 2 - proto: MaterialWoodPlank1 entities: - - uid: 39481 + - uid: 39308 components: - type: Transform pos: -20.5,13.5 - parent: 38584 - - uid: 39482 + parent: 38411 + - uid: 39309 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,15.5 - parent: 38584 - - uid: 39483 + parent: 38411 + - uid: 39310 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,17.5 - parent: 38584 - - uid: 39484 + parent: 38411 + - uid: 39311 components: - type: Transform pos: -3.5,12.5 - parent: 38584 - - uid: 39485 + parent: 38411 + - uid: 39312 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,25.5 - parent: 38584 - - uid: 39486 + parent: 38411 + - uid: 39313 components: - type: Transform pos: -7.5,21.5 - parent: 38584 + parent: 38411 - proto: MatterBinStockPart entities: - - uid: 25352 + - uid: 25205 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 25353 + - uid: 25206 components: - type: Transform pos: -9.5,-30.5 parent: 2 - proto: Mattress entities: - - uid: 25354 + - uid: 25207 components: - type: Transform pos: 69.5,19.5 parent: 2 - proto: MedicalBed entities: - - uid: 25355 + - uid: 25208 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 25356 + - uid: 25209 components: - type: Transform pos: 70.5,16.5 parent: 2 - - uid: 25357 + - uid: 25210 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 25358 + - uid: 25211 components: - type: Transform pos: 38.5,-67.5 parent: 2 - - uid: 25359 + - uid: 25212 components: - type: Transform pos: 42.5,-67.5 parent: 2 - - uid: 25360 + - uid: 25213 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 25361 + - uid: 25214 components: - type: Transform pos: 36.5,-41.5 parent: 2 - - uid: 25362 + - uid: 25215 components: - type: Transform pos: 34.5,-37.5 parent: 2 - - uid: 25363 + - uid: 25216 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 25364 + - uid: 25217 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 25365 + - uid: 25218 components: - type: Transform pos: 30.5,-52.5 parent: 2 - proto: MedicalScanner entities: - - uid: 25366 + - uid: 25219 components: - type: Transform pos: 10.5,-37.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 25367 + - uid: 25220 components: - type: Transform pos: 28.5,-23.5 parent: 2 - proto: Medkit entities: - - uid: 25368 + - uid: 25221 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -194133,156 +194154,156 @@ entities: parent: 2 - proto: MedkitBruteFilled entities: - - uid: 25369 + - uid: 25222 components: - type: Transform pos: 28.497252,-25.883469 parent: 2 - - uid: 25370 + - uid: 25223 components: - type: Transform pos: 28.497252,-25.688663 parent: 2 - - uid: 25371 + - uid: 25224 components: - type: Transform pos: 60.678944,-5.763924 parent: 2 - - uid: 25372 + - uid: 25225 components: - type: Transform pos: 28.492884,-26.049799 parent: 2 - - uid: 39487 + - uid: 39314 components: - type: Transform pos: -8.4065895,-3.576355 - parent: 38584 + parent: 38411 - proto: MedkitBurnFilled entities: - - uid: 25373 + - uid: 25226 components: - type: Transform pos: 61.667484,-5.7213755 parent: 2 - - uid: 25374 + - uid: 25227 components: - type: Transform pos: -63.42579,4.5084105 parent: 2 - - uid: 25375 + - uid: 25228 components: - type: Transform pos: 28.492886,-24.471674 parent: 2 - - uid: 25376 + - uid: 25229 components: - type: Transform pos: 28.479532,-24.696926 parent: 2 - - uid: 25377 + - uid: 25230 components: - type: Transform pos: 28.479532,-25.0157 parent: 2 - - uid: 25378 + - uid: 25231 components: - type: Transform pos: 69.40965,12.287214 parent: 2 - - uid: 25379 + - uid: 25232 components: - type: Transform pos: -58.513634,3.5297406 parent: 2 - type: Physics canCollide: False - - uid: 39488 + - uid: 39315 components: - type: Transform pos: -7.484714,-3.576355 - parent: 38584 + parent: 38411 - proto: MedkitCombatFilled entities: - - uid: 25380 + - uid: 25233 components: - type: Transform pos: 60.215004,-4.3548026 parent: 2 - - uid: 39489 + - uid: 39316 components: - type: Transform pos: -20.5,27.5 - parent: 38584 + parent: 38411 - proto: MedkitFilled entities: - - uid: 25381 + - uid: 25234 components: - type: Transform rot: 3.141592653589793 rad pos: 33.53191,26.566101 parent: 2 - - uid: 25382 + - uid: 25235 components: - type: Transform pos: 60.215675,-4.7851834 parent: 2 - - uid: 25383 + - uid: 25236 components: - type: Transform pos: 68.3671,12.308491 parent: 2 - - uid: 25384 + - uid: 25237 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 25385 + - uid: 25238 components: - type: Transform pos: 14.52385,-22.462849 parent: 2 - type: Physics canCollide: False - - uid: 25386 + - uid: 25239 components: - type: Transform pos: -5.50263,18.494661 parent: 2 - - uid: 25387 + - uid: 25240 components: - type: Transform pos: 23.182888,-42.310036 parent: 2 - - uid: 25388 + - uid: 25241 components: - type: Transform pos: 81.5,-20.5 parent: 2 - - uid: 25389 + - uid: 25242 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.354641,-44.521282 parent: 2 - - uid: 25390 + - uid: 25243 components: - type: Transform pos: 33.505825,42.528225 parent: 2 - - uid: 25391 + - uid: 25244 components: - type: Transform pos: 36.50758,-18.520462 parent: 2 - type: Physics canCollide: False - - uid: 25392 + - uid: 25245 components: - type: Transform pos: 3.5583289,-13.353186 parent: 2 - - uid: 25393 + - uid: 25246 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -194290,98 +194311,98 @@ entities: parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 25394 + - uid: 25247 components: - type: Transform pos: 60.21086,-5.763924 parent: 2 - - uid: 25395 + - uid: 25248 components: - type: Transform pos: 68.90039,12.308502 parent: 2 - - uid: 25396 + - uid: 25249 components: - type: Transform pos: 32.55548,-26.078274 parent: 2 - - uid: 25397 + - uid: 25250 components: - type: Transform pos: 32.55548,-25.79492 parent: 2 - - uid: 25398 + - uid: 25251 components: - type: Transform pos: 32.570004,-26.357931 parent: 2 - - uid: 25399 + - uid: 25252 components: - type: Transform pos: 4.558329,-13.337561 parent: 2 - - uid: 39490 + - uid: 39317 components: - type: Transform pos: -8.7034645,-3.607605 - parent: 38584 + parent: 38411 - proto: MedkitRadiationFilled entities: - - uid: 25400 + - uid: 25253 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 25401 + - uid: 25254 components: - type: Transform pos: 68.5,-4.5 parent: 2 - - uid: 39491 + - uid: 39318 components: - type: Transform pos: -8.6722145,-3.045105 - parent: 38584 + parent: 38411 - proto: MedkitToxinFilled entities: - - uid: 25402 + - uid: 25255 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - uid: 25403 + - uid: 25256 components: - type: Transform pos: 32.55548,-24.92715 parent: 2 - - uid: 25404 + - uid: 25257 components: - type: Transform pos: 32.55548,-25.175085 parent: 2 - - uid: 25405 + - uid: 25258 components: - type: Transform pos: 61.13557,-5.7852044 parent: 2 - - uid: 25406 + - uid: 25259 components: - type: Transform pos: 32.57,-24.607931 parent: 2 - - uid: 25407 + - uid: 25260 components: - type: Transform pos: -24.596327,-43.40592 parent: 2 - - uid: 39492 + - uid: 39319 components: - type: Transform pos: -7.906589,-3.62323 - parent: 38584 + parent: 38411 - proto: Memorial entities: - - uid: 25408 + - uid: 25261 components: - type: MetaData desc: Монумент в честь победы над врагом! Павшие никогда не будут забыты... @@ -194391,14 +194412,14 @@ entities: parent: 2 - proto: MimanaSeeds entities: - - uid: 25409 + - uid: 25262 components: - type: Transform pos: -70.36416,-20.707722 parent: 2 - proto: MindShieldImplanter entities: - - uid: 25410 + - uid: 25263 components: - type: Transform rot: 3.141592653589793 rad @@ -194406,145 +194427,145 @@ entities: parent: 2 - proto: MinimoogInstrument entities: - - uid: 25411 + - uid: 25264 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-55.5 parent: 2 - - uid: 25412 + - uid: 25265 components: - type: Transform pos: 70.5,-46.5 parent: 2 - proto: MiningDrill entities: - - uid: 39493 + - uid: 39320 components: - type: Transform pos: 13.5,32.5 - parent: 38584 + parent: 38411 - proto: Mirror entities: - - uid: 25413 + - uid: 25266 components: - type: Transform pos: -11.5,55.5 parent: 2 - - uid: 25414 + - uid: 25267 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 - - uid: 25415 + - uid: 25268 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 25416 + - uid: 25269 components: - type: Transform pos: -5.5,55.5 parent: 2 - - uid: 25417 + - uid: 25270 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 25418 + - uid: 25271 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-16.5 parent: 2 - - uid: 25419 + - uid: 25272 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,45.5 parent: 2 - - uid: 25420 + - uid: 25273 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 25421 + - uid: 25274 components: - type: Transform pos: -5.5,35.5 parent: 2 - - uid: 25422 + - uid: 25275 components: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 25423 + - uid: 25276 components: - type: Transform pos: -5.5,29.5 parent: 2 - - uid: 25424 + - uid: 25277 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 25425 + - uid: 25278 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-51.5 parent: 2 - - uid: 25426 + - uid: 25279 components: - type: Transform pos: 13.5,6.5 parent: 2 - proto: MobCatCake entities: - - uid: 25427 + - uid: 25280 components: - type: Transform pos: -57.435246,-48.499123 parent: 2 - proto: ModularGrenade entities: - - uid: 25428 + - uid: 25281 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25429 + - uid: 25282 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25430 + - uid: 25283 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25431 + - uid: 25284 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25432 + - uid: 25285 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.621467,-47.40556 parent: 2 - - uid: 25433 + - uid: 25286 components: - type: Transform pos: 2.4978142,-31.385086 @@ -194553,100 +194574,100 @@ entities: canCollide: False - proto: MopBucket entities: - - uid: 25434 + - uid: 25287 components: - type: Transform pos: 22.477804,-17.365536 parent: 2 - proto: MopBucketFull entities: - - uid: 25435 + - uid: 25288 components: - type: Transform pos: 91.50001,7.5 parent: 2 - - uid: 25436 + - uid: 25289 components: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 25437 + - uid: 25290 components: - type: Transform pos: -77.5,-29.5 parent: 2 - - uid: 25438 + - uid: 25291 components: - type: Transform pos: -40.5,-61.5 parent: 2 - - uid: 39494 + - uid: 39321 components: - type: Transform pos: -13.5,13.5 - parent: 38584 + parent: 38411 - proto: MopItem entities: - - uid: 25439 + - uid: 25292 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 91.478065,7.477974 parent: 2 - - uid: 25440 + - uid: 25293 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.56199,-62.480965 parent: 2 - - uid: 25441 + - uid: 25294 components: - type: Transform pos: -7.4661264,46.474117 parent: 2 - - uid: 25442 + - uid: 25295 components: - type: Transform pos: 3.517602,-48.53627 parent: 2 - - uid: 25443 + - uid: 25296 components: - type: Transform pos: 0.16766292,54.493546 parent: 2 - - uid: 25444 + - uid: 25297 components: - type: Transform pos: 0.53458077,54.493546 parent: 2 - - uid: 25445 + - uid: 25298 components: - type: Transform pos: -77.562874,-29.50979 parent: 2 - type: Physics canCollide: False - - uid: 25446 + - uid: 25299 components: - type: Transform pos: 22.477804,-17.490536 parent: 2 - type: Physics canCollide: False - - uid: 39495 + - uid: 39322 components: - type: Transform pos: -13.487375,13.4696045 - parent: 38584 + parent: 38411 - proto: Morgue entities: - - uid: 25447 + - uid: 25300 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-51.5 parent: 2 - - uid: 25448 + - uid: 25301 components: - type: Transform pos: 9.5,-48.5 @@ -194669,13 +194690,13 @@ entities: - 0 - 0 - 0 - - uid: 25449 + - uid: 25302 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-61.5 parent: 2 - - uid: 25450 + - uid: 25303 components: - type: Transform rot: 1.5707963267948966 rad @@ -194699,7 +194720,7 @@ entities: - 0 - 0 - 0 - - uid: 25451 + - uid: 25304 components: - type: Transform rot: 1.5707963267948966 rad @@ -194723,7 +194744,7 @@ entities: - 0 - 0 - 0 - - uid: 25452 + - uid: 25305 components: - type: Transform rot: 1.5707963267948966 rad @@ -194747,19 +194768,19 @@ entities: - 0 - 0 - 0 - - uid: 25453 + - uid: 25306 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-61.5 parent: 2 - - uid: 25454 + - uid: 25307 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-61.5 parent: 2 - - uid: 25455 + - uid: 25308 components: - type: Transform rot: 1.5707963267948966 rad @@ -194783,7 +194804,7 @@ entities: - 0 - 0 - 0 - - uid: 25456 + - uid: 25309 components: - type: Transform rot: 1.5707963267948966 rad @@ -194807,7 +194828,7 @@ entities: - 0 - 0 - 0 - - uid: 25457 + - uid: 25310 components: - type: Transform pos: 8.5,-48.5 @@ -194830,7 +194851,7 @@ entities: - 0 - 0 - 0 - - uid: 25458 + - uid: 25311 components: - type: Transform rot: 3.141592653589793 rad @@ -194854,19 +194875,19 @@ entities: - 0 - 0 - 0 - - uid: 25459 + - uid: 25312 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-61.5 parent: 2 - - uid: 25460 + - uid: 25313 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-61.5 parent: 2 - - uid: 25461 + - uid: 25314 components: - type: Transform rot: 1.5707963267948966 rad @@ -194890,7 +194911,7 @@ entities: - 0 - 0 - 0 - - uid: 25462 + - uid: 25315 components: - type: Transform pos: 10.5,-48.5 @@ -194913,7 +194934,7 @@ entities: - 0 - 0 - 0 - - uid: 25463 + - uid: 25316 components: - type: Transform rot: 3.141592653589793 rad @@ -194937,7 +194958,7 @@ entities: - 0 - 0 - 0 - - uid: 25464 + - uid: 25317 components: - type: Transform rot: 3.141592653589793 rad @@ -194961,7 +194982,7 @@ entities: - 0 - 0 - 0 - - uid: 25465 + - uid: 25318 components: - type: Transform rot: 3.141592653589793 rad @@ -194985,7 +195006,7 @@ entities: - 0 - 0 - 0 - - uid: 25466 + - uid: 25319 components: - type: Transform rot: 1.5707963267948966 rad @@ -195009,7 +195030,7 @@ entities: - 0 - 0 - 0 - - uid: 25467 + - uid: 25320 components: - type: Transform rot: 3.141592653589793 rad @@ -195033,12 +195054,12 @@ entities: - 0 - 0 - 0 - - uid: 39496 + - uid: 39323 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -195057,35 +195078,35 @@ entities: - 0 - 0 - 0 - - uid: 39497 + - uid: 39324 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-5.5 - parent: 38584 + parent: 38411 - proto: MousetrapArmed entities: - - uid: 25468 + - uid: 25321 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.503742,-63.27595 parent: 2 - type: StepTriggerActive - - uid: 25469 + - uid: 25322 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.561108,47.6237 parent: 2 - - uid: 25470 + - uid: 25323 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5169544,33.6237 parent: 2 - type: StepTriggerActive - - uid: 25471 + - uid: 25324 components: - type: Transform rot: 1.5707963267948966 rad @@ -195093,61 +195114,61 @@ entities: parent: 2 - proto: Multitool entities: - - uid: 25473 + - uid: 25326 components: - type: Transform - parent: 25472 + parent: 25325 - type: Physics canCollide: False - - uid: 25474 + - uid: 25327 components: - type: Transform pos: 50.207417,5.437244 parent: 2 - - uid: 25475 + - uid: 25328 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 25476 + - uid: 25329 components: - type: Transform pos: -9.5,-30.5 parent: 2 - - uid: 25477 + - uid: 25330 components: - type: Transform pos: -5.53388,17.811007 parent: 2 - - uid: 25478 + - uid: 25331 components: - type: Transform pos: -56.627308,-13.403177 parent: 2 - type: Physics canCollide: False - - uid: 25479 + - uid: 25332 components: - type: Transform pos: -26.474976,-47.36569 parent: 2 - - uid: 25480 + - uid: 25333 components: - type: Transform pos: -74.57158,-8.273829 parent: 2 - - uid: 25481 + - uid: 25334 components: - type: Transform pos: -37.6697,8.6269455 parent: 2 - - uid: 25482 + - uid: 25335 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.467197,-41.43791 parent: 2 - - uid: 25483 + - uid: 25336 components: - type: Transform pos: -61.506416,13.606666 @@ -195156,14 +195177,14 @@ entities: canCollide: False - proto: MusicalLungInstrument entities: - - uid: 25484 + - uid: 25337 components: - type: Transform pos: -6.5073404,53.184387 parent: 2 - proto: MusicBoxInstrument entities: - - uid: 25485 + - uid: 25338 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -195171,7 +195192,7 @@ entities: parent: 2 - proto: Nettle entities: - - uid: 25486 + - uid: 25339 components: - type: MetaData desc: Удобный веник из свежей берёзы. @@ -195179,7 +195200,7 @@ entities: - type: Transform pos: -67.42256,58.902588 parent: 2 - - uid: 25487 + - uid: 25340 components: - type: MetaData desc: Удобный веник из свежей берёзы. @@ -195190,116 +195211,116 @@ entities: parent: 2 - proto: NetworkConfigurator entities: - - uid: 25488 + - uid: 25341 components: - type: Transform pos: -25.317003,-43.32779 parent: 2 - proto: NitrogenCanister entities: - - uid: 25489 + - uid: 25342 components: - type: Transform pos: -21.5,-60.5 parent: 2 - - uid: 25490 + - uid: 25343 components: - type: Transform pos: -43.5,-43.5 parent: 2 - - uid: 25491 + - uid: 25344 components: - type: Transform pos: 63.5,13.5 parent: 2 - - uid: 25492 + - uid: 25345 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 25493 + - uid: 25346 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 25494 + - uid: 25347 components: - type: Transform pos: 19.5,28.5 parent: 2 - - uid: 25495 + - uid: 25348 components: - type: Transform pos: 36.5,31.5 parent: 2 - - uid: 25496 + - uid: 25349 components: - type: Transform pos: -120.5,17.5 parent: 2 - - uid: 25497 + - uid: 25350 components: - type: Transform pos: 91.5,26.5 parent: 2 - - uid: 25498 + - uid: 25351 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 25499 + - uid: 25352 components: - type: Transform pos: -70.49999,37.5 parent: 2 - - uid: 25500 + - uid: 25353 components: - type: Transform pos: -23.5,25.500002 parent: 2 - - uid: 25501 + - uid: 25354 components: - type: Transform pos: -7.5,-11.5 parent: 2 - - uid: 39498 + - uid: 39325 components: - type: Transform pos: 16.5,2.5 - parent: 38584 + parent: 38411 - proto: NitrogenTankFilled entities: - - uid: 14836 + - uid: 14776 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14857 + - uid: 14798 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25502 + - uid: 25355 components: - type: Transform pos: -77.649734,-18.332254 parent: 2 - - uid: 25505 + - uid: 25356 components: - type: Transform pos: -77.516975,-18.553493 parent: 2 - - uid: 40934 + - uid: 25357 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5477,-27.74824 parent: 2 - - uid: 40935 + - uid: 25358 components: - type: Transform rot: 3.141592653589793 rad @@ -195307,31 +195328,31 @@ entities: parent: 2 - proto: NitrousOxideCanister entities: - - uid: 25506 + - uid: 25359 components: - type: Transform pos: -48.5,25.5 parent: 2 - - uid: 25507 + - uid: 25360 components: - type: Transform pos: 78.5,23.5 parent: 2 - - uid: 25508 + - uid: 25361 components: - type: Transform pos: -48.5,24.5 parent: 2 - proto: NitrousOxideTankFilled entities: - - uid: 25509 + - uid: 25362 components: - type: Transform pos: 33.549213,-46.450466 parent: 2 - proto: NocturineChemistryBottle entities: - - uid: 25510 + - uid: 25363 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -195339,52 +195360,52 @@ entities: parent: 2 - proto: NodeScanner entities: - - uid: 25511 + - uid: 25364 components: - type: Transform pos: -9.606294,-31.675497 parent: 2 - - uid: 25512 + - uid: 25365 components: - type: Transform pos: -25.606216,-28.370153 parent: 2 - proto: NoticeBoard entities: - - uid: 25513 + - uid: 25366 components: - type: Transform pos: -65.5,-44.5 parent: 2 - - uid: 25514 + - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,31.5 parent: 2 - - uid: 25515 + - uid: 25368 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,2.5 parent: 2 - - uid: 25516 + - uid: 25369 components: - type: Transform pos: 44.5,6.5 parent: 2 - - uid: 25517 + - uid: 25370 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 25518 + - uid: 25371 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 25519 + - uid: 25372 components: - type: Transform rot: -1.5707963267948966 rad @@ -195392,7 +195413,7 @@ entities: parent: 2 - proto: NTFlag entities: - - uid: 25520 + - uid: 25373 components: - type: Transform rot: -1.5707963267948966 rad @@ -195400,7 +195421,7 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 25521 + - uid: 25374 components: - type: Transform rot: -1.5707963267948966 rad @@ -195408,7 +195429,7 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 25522 + - uid: 25375 components: - type: MetaData name: дельта-тян @@ -195417,37 +195438,37 @@ entities: parent: 2 - proto: NukeDiskFake entities: - - uid: 25523 + - uid: 25376 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 9.230305,72.39888 parent: 2 - - uid: 39499 + - uid: 39326 components: - type: Transform pos: 8.5,10.5 - parent: 38584 + parent: 38411 - proto: OcarinaInstrument entities: - - uid: 25524 + - uid: 25377 components: - type: Transform pos: -6.4073434,52.61495 parent: 2 - proto: Ointment entities: - - uid: 25525 + - uid: 25378 components: - type: Transform pos: -31.3629,-42.28948 parent: 2 - - uid: 25526 + - uid: 25379 components: - type: Transform pos: 26.607332,-24.483286 parent: 2 - - uid: 25527 + - uid: 25380 components: - type: Transform rot: 1.5707963267948966 rad @@ -195455,127 +195476,127 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 25528 + - uid: 25381 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 25529 + - uid: 25382 components: - type: Transform pos: 6.5,-49.5 parent: 2 - - uid: 25530 + - uid: 25383 components: - type: Transform pos: 33.5,-51.5 parent: 2 - - uid: 25531 + - uid: 25384 components: - type: Transform pos: 33.5,-47.5 parent: 2 - - uid: 25532 + - uid: 25385 components: - type: Transform pos: 46.5,-37.5 parent: 2 - proto: OreBag entities: - - uid: 25533 + - uid: 25386 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 39500 + - uid: 39327 components: - type: Transform pos: 1.6969376,7.2251587 - parent: 38584 - - uid: 39501 + parent: 38411 + - uid: 39328 components: - type: Transform pos: -20.038795,15.526978 - parent: 38584 - - uid: 39502 + parent: 38411 + - uid: 39329 components: - type: Transform pos: 1.3219376,7.1314087 - parent: 38584 - - uid: 39503 + parent: 38411 + - uid: 39330 components: - type: Transform pos: 1.5406876,7.5689087 - parent: 38584 - - uid: 39504 + parent: 38411 + - uid: 39331 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.43044233,2.6262207 - parent: 38584 + parent: 38411 - proto: OreBox entities: - - uid: 25534 + - uid: 25387 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 52.499996,-47.5 parent: 2 - - uid: 39505 + - uid: 39332 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 39506 + parent: 38411 + - uid: 39333 components: - type: Transform pos: -6.5,3.5 - parent: 38584 - - uid: 39507 + parent: 38411 + - uid: 39334 components: - type: Transform pos: -8.5,14.5 - parent: 38584 - - uid: 39508 + parent: 38411 + - uid: 39335 components: - type: Transform pos: -8.5,15.5 - parent: 38584 - - uid: 39509 + parent: 38411 + - uid: 39336 components: - type: Transform pos: 0.5,16.5 - parent: 38584 - - uid: 39510 + parent: 38411 + - uid: 39337 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 39511 + parent: 38411 + - uid: 39338 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 39512 + parent: 38411 + - uid: 39339 components: - type: Transform pos: -2.5,1.5 - parent: 38584 + parent: 38411 - proto: OreProcessor entities: - - uid: 25535 + - uid: 25388 components: - type: Transform pos: 34.5,32.5 parent: 2 - - uid: 39513 + - uid: 39340 components: - type: Transform pos: 0.5,3.5 - parent: 38584 + parent: 38411 - proto: OrganDionaStomach entities: - - uid: 25536 + - uid: 25389 components: - type: Transform rot: -1.5707963267948966 rad @@ -195583,144 +195604,144 @@ entities: parent: 2 - proto: OrganHumanKidneys entities: - - uid: 15619 + - uid: 15602 components: - type: Transform - parent: 15618 + parent: 15601 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OxygenCanister entities: - - uid: 25537 + - uid: 25390 components: - type: Transform pos: -10.5,-59.5 parent: 2 - - uid: 25538 + - uid: 25391 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 25539 + - uid: 25392 components: - type: Transform pos: 32.5,28.5 parent: 2 - - uid: 25540 + - uid: 25393 components: - type: Transform pos: -29.5,-50.5 parent: 2 - - uid: 25541 + - uid: 25394 components: - type: Transform pos: -76.5,-27.5 parent: 2 - - uid: 25542 + - uid: 25395 components: - type: Transform pos: -41.5,-15.5 parent: 2 - - uid: 25543 + - uid: 25396 components: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 25544 + - uid: 25397 components: - type: Transform pos: 19.5,27.5 parent: 2 - - uid: 25545 + - uid: 25398 components: - type: Transform pos: -31.5,63.500004 parent: 2 - - uid: 25546 + - uid: 25399 components: - type: Transform pos: -45.5,-21.5 parent: 2 - - uid: 25547 + - uid: 25400 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 25548 + - uid: 25401 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 25549 + - uid: 25402 components: - type: Transform pos: -122.5,17.5 parent: 2 - - uid: 25550 + - uid: 25403 components: - type: Transform pos: 91.5,25.5 parent: 2 - - uid: 25551 + - uid: 25404 components: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 25552 + - uid: 25405 components: - type: Transform pos: 11.5,90.5 parent: 2 - - uid: 25553 + - uid: 25406 components: - type: Transform pos: -70.50001,33.5 parent: 2 - - uid: 25554 + - uid: 25407 components: - type: Transform pos: -47.5,-35.5 parent: 2 - - uid: 25555 + - uid: 25408 components: - type: Transform pos: -38.5,43.5 parent: 2 - - uid: 25556 + - uid: 25409 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 39514 + - uid: 39341 components: - type: Transform pos: -18.5,36.5 - parent: 38584 - - uid: 39515 + parent: 38411 + - uid: 39342 components: - type: Transform pos: 16.5,4.5 - parent: 38584 + parent: 38411 - proto: OxygenTankFilled entities: - - uid: 14837 + - uid: 14777 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14858 + - uid: 14799 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PaintingRedBlueYellow entities: - - uid: 25557 + - uid: 25410 components: - type: Transform rot: 3.141592653589793 rad @@ -195728,7 +195749,7 @@ entities: parent: 2 - proto: PaintingTheGreatWave entities: - - uid: 25558 + - uid: 25411 components: - type: Transform pos: -54.5,-47.5 @@ -196082,270 +196103,270 @@ entities: containers: solution@food: !type:ContainerSlot ent: 10 - - uid: 1736 + - uid: 1740 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1737 + - uid: 1741 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1738 + - uid: 1742 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1739 + - uid: 1743 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1740 + - uid: 1744 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1741 + - uid: 1745 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1742 + - uid: 1746 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1743 + - uid: 1747 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1744 + - uid: 1748 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1745 + - uid: 1749 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 14921 + - uid: 14862 components: - type: Transform - parent: 14916 + parent: 14857 - type: Paper content: "Станция погрязла в грязи преступности.. \r\nСлишком много смертей невинных, но ничего. \r\nМой револьвер - путь к очищению. " - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15707 + - uid: 15690 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15708 + - uid: 15691 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15709 + - uid: 15692 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15710 + - uid: 15693 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15711 + - uid: 15694 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15712 + - uid: 15695 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15713 + - uid: 15696 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25559 + - uid: 25412 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.491467,-2.888534 parent: 2 - - uid: 25560 + - uid: 25413 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -58.601784,-43.373722 parent: 2 - - uid: 25561 + - uid: 25414 components: - type: Transform rot: -1.5707953085339508 rad pos: 81.326546,5.56637 parent: 2 - - uid: 25562 + - uid: 25415 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.51772,7.6123247 parent: 2 - - uid: 25563 + - uid: 25416 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.809055,-35.313763 parent: 2 - - uid: 25564 + - uid: 25417 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.725723,-37.42834 parent: 2 - - uid: 25565 + - uid: 25418 components: - type: Transform pos: 54.559055,-38.40751 parent: 2 - - uid: 25566 + - uid: 25419 components: - type: Transform rot: 3.141592653589793 rad pos: 54.600723,-34.45959 parent: 2 - - uid: 25567 + - uid: 25420 components: - type: Transform pos: -17.473228,-41.420036 parent: 2 - - uid: 25569 + - uid: 25422 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25570 + - uid: 25423 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25571 + - uid: 25424 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25572 + - uid: 25425 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25573 + - uid: 25426 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25574 + - uid: 25427 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25575 + - uid: 25428 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.579336,-40.439713 parent: 2 - - uid: 25576 + - uid: 25429 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.422057,-49.2071 parent: 2 - - uid: 25577 + - uid: 25430 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.607666,-16.196762 parent: 2 - - uid: 25578 + - uid: 25431 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.538372,9.353551 parent: 2 - - uid: 25579 + - uid: 25432 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.59338,0.41316766 parent: 2 - - uid: 25580 + - uid: 25433 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.298086,-40.689713 parent: 2 - - uid: 25581 + - uid: 25434 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.332867,-7.728602 parent: 2 - - uid: 25582 + - uid: 25435 components: - type: Transform pos: -20.435146,-43.307297 parent: 2 - - uid: 25583 + - uid: 25436 components: - type: Transform pos: -20.528896,-43.192635 parent: 2 - - uid: 25584 + - uid: 25437 components: - type: Transform pos: -20.622646,-43.119667 parent: 2 - - uid: 25585 + - uid: 25438 components: - type: Transform rot: 6.283185307179586 rad @@ -196354,7 +196375,7 @@ entities: - type: Paper content: > ОНО... - - uid: 25586 + - uid: 25439 components: - type: Transform rot: 6.283185307179586 rad @@ -196363,7 +196384,7 @@ entities: - type: Paper content: > оно на свободе! - - uid: 25587 + - uid: 25440 components: - type: Transform rot: 6.283185307179586 rad @@ -196372,331 +196393,331 @@ entities: - type: Paper content: > Экмперемент в̵͉̘̅Ь̸̨̖̈̈́о̸͉͆|̶̨̫̿̊ #655 - - uid: 25588 + - uid: 25441 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.467596,-3.3337493 parent: 2 - - uid: 25589 + - uid: 25442 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5412,-7.8952684 parent: 2 - - uid: 25590 + - uid: 25443 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.496994,1.136191 parent: 2 - - uid: 25591 + - uid: 25444 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.560791,-16.040512 parent: 2 - - uid: 25592 + - uid: 25445 components: - type: Transform pos: 3.4307036,-60.35931 parent: 2 - - uid: 25593 + - uid: 25446 components: - type: Transform pos: 3.4932036,-60.406185 parent: 2 - - uid: 25594 + - uid: 25447 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.44807,-0.6344657 parent: 2 - - uid: 25595 + - uid: 25448 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.640255,0.35066766 parent: 2 - - uid: 25596 + - uid: 25449 components: - type: Transform rot: 3.141592653589793 rad pos: 11.466052,-52.343544 parent: 2 - - uid: 25597 + - uid: 25450 components: - type: Transform pos: 3.3682036,-60.26556 parent: 2 - - uid: 25598 + - uid: 25451 components: - type: Transform pos: -51.534542,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25599 + - uid: 25452 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.514471,-3.3962493 parent: 2 - - uid: 25600 + - uid: 25453 components: - type: Transform pos: -51.409542,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25601 + - uid: 25454 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.344963,-40.299088 parent: 2 - - uid: 25602 + - uid: 25455 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.598495,-1.6193767 parent: 2 - - uid: 25603 + - uid: 25456 components: - type: Transform pos: -51.690792,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25604 + - uid: 25457 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.329336,-40.455338 parent: 2 - - uid: 25605 + - uid: 25458 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.548086,-40.595963 parent: 2 - - uid: 25606 + - uid: 25459 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.394325,-37.419067 parent: 2 - - uid: 25607 + - uid: 25460 components: - type: Transform pos: -26.638914,-7.6800103 parent: 2 - - uid: 25608 + - uid: 25461 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.513914,-7.8466763 parent: 2 - - uid: 25609 + - uid: 25462 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.458359,-7.9577875 parent: 2 - - uid: 25610 + - uid: 25463 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.428997,9.384801 parent: 2 - - uid: 25611 + - uid: 25464 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.491495,9.306676 parent: 2 - - uid: 25612 + - uid: 25465 components: - type: Transform pos: -4.7436075,45.570145 parent: 2 - - uid: 25613 + - uid: 25466 components: - type: Transform pos: -4.6186075,45.71077 parent: 2 - - uid: 25614 + - uid: 25467 components: - type: Transform pos: -4.3998575,45.67952 parent: 2 - - uid: 25615 + - uid: 25468 components: - type: Transform pos: -4.4779825,45.507645 parent: 2 - - uid: 25616 + - uid: 25469 components: - type: Transform pos: -4.6029825,45.445145 parent: 2 - - uid: 25617 + - uid: 25470 components: - type: Transform pos: -4.6186075,45.42952 parent: 2 - - uid: 25618 + - uid: 25471 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25619 + - uid: 25472 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25620 + - uid: 25473 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25621 + - uid: 25474 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.340981,-58.260864 parent: 2 - - uid: 25622 + - uid: 25475 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.512856,-58.15149 parent: 2 - - uid: 25623 + - uid: 25476 components: - type: Transform pos: -17.632225,-41.50565 parent: 2 - - uid: 25624 + - uid: 25477 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.63197,-35.449177 parent: 2 - - uid: 25625 + - uid: 25478 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.236137,-35.720013 parent: 2 - - uid: 25626 + - uid: 25479 components: - type: Transform pos: 53.309055,-37.011677 parent: 2 - - uid: 25627 + - uid: 25480 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.66322,-36.35543 parent: 2 - - uid: 25628 + - uid: 25481 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.381973,-37.209595 parent: 2 - - uid: 25629 + - uid: 25482 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.48647,4.7216983 parent: 2 - - uid: 25630 + - uid: 25483 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.5646,7.5654497 parent: 2 - - uid: 25631 + - uid: 25484 components: - type: Transform rot: 1.5707973450558423 rad pos: -62.548584,-36.53318 parent: 2 - - uid: 25632 + - uid: 25485 components: - type: Transform rot: -1.5707953085339508 rad pos: -67.861084,-34.439426 parent: 2 - - uid: 25633 + - uid: 25486 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 82.451546,5.6132445 parent: 2 - - uid: 25634 + - uid: 25487 components: - type: Transform rot: -1.5707953085339508 rad pos: -27.556807,0.63810754 parent: 2 - - uid: 25635 + - uid: 25488 components: - type: Transform rot: 1.5707973450558423 rad pos: -27.291182,0.60685766 parent: 2 - - uid: 25636 + - uid: 25489 components: - type: Transform rot: 3.141593671850739 rad pos: 95.86081,12.546649 parent: 2 - - uid: 25637 + - uid: 25490 components: - type: Transform rot: 3.141593671850739 rad pos: 96.563934,12.671649 parent: 2 - - uid: 25638 + - uid: 25491 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 79.7637,-1.3353615 parent: 2 - - uid: 25639 + - uid: 25492 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.0137,-1.3978615 parent: 2 - - uid: 25640 + - uid: 25493 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 83.8262,-1.3041124 parent: 2 - - uid: 25641 + - uid: 25494 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 84.10745,-1.4603624 parent: 2 - - uid: 25642 + - uid: 25495 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 87.87308,-1.2884884 parent: 2 - - uid: 25643 + - uid: 25496 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.18558,-1.4603636 parent: 2 - - uid: 25644 + - uid: 25497 components: - type: Transform rot: -1.5707963267948966 rad @@ -196738,95 +196759,147 @@ entities: [italic]28.05.3024[/italic] Кажется меня начинают в чём-то подозревать.. Их смущает что я постоянно трусь у пермы. Оставлю свои вещи здесь. Блин, кажется глава зовёт.. потом допишу отчёт. - - uid: 25645 + - uid: 25498 components: - type: Transform rot: 3.141593671850739 rad pos: -70.4392,-36.70505 parent: 2 - - uid: 25646 + - uid: 25499 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -51.228695,-35.401863 parent: 2 - - uid: 25647 + - uid: 25500 components: - type: Transform pos: -51.01004,-35.338703 parent: 2 - - uid: 25648 + - uid: 25501 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -58.30491,-43.498722 parent: 2 - - uid: 25649 + - uid: 25502 components: - type: Transform pos: 56.37655,25.567564 parent: 2 - - uid: 25650 + - uid: 25503 components: - type: Transform pos: 56.5953,25.614439 parent: 2 - - uid: 25651 + - uid: 25504 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.528156,-2.5399623 parent: 2 - - uid: 25652 + - uid: 25505 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.619884,-2.7050753 parent: 2 - - uid: 25653 + - uid: 25506 components: - type: Transform rot: 3.141592653589793 rad pos: 25.592388,21.552462 parent: 2 - - uid: 25654 + - uid: 25507 components: - type: Transform rot: 3.141592653589793 rad pos: 25.764263,21.61496 parent: 2 - - uid: 25655 + - uid: 25508 components: - type: Transform rot: 3.141592653589793 rad pos: 25.983013,21.48996 parent: 2 - - uid: 39516 + - uid: 38306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.448128,-38.384327 + parent: 2 + - type: Paper + stampState: paper_stamp-qm + stampedBy: + - stampedColor: '#A23E3EFF' + stampedName: stamp-component-stamped-name-qm + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] Delta-Station МЕД-СНБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ЗАКАЗ НА ЗАКУПКУ РЕСУРСОВ, СНАРЯЖЕНИЯ + ============================================= + + Время от начала смены и дата: + + 11.07.3024 + + Составитель документа: + + Евгения Акишина + + Должность составителя: + + Химик + + Перечень товаров для заказа: + + Резервуар с водой. + + Место доставки товара: + + Медицинский отдел. + + Причина: + + Нехватка воды. + + ============================================= + [italic]Место для печатей[/italic] + - uid: 39343 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.413131,-3.0951538 - parent: 38584 - - uid: 39517 + parent: 38411 + - uid: 39344 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.288131,-3.0795288 - parent: 38584 - - uid: 39518 + parent: 38411 + - uid: 39345 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.607052,33.54294 - parent: 38584 - - uid: 39519 + parent: 38411 + - uid: 39346 components: - type: MetaData name: предсмертная записка - type: Transform rot: 3.141592653589793 rad pos: 13.269722,19.279083 - parent: 38584 + parent: 38411 - type: Paper content: >2- @@ -196837,118 +196910,118 @@ entities: [italic]Кто-бы мог подумать, что листок бумаги и ручка будет последним, что мои руки будут держать прежде, чем я умру. К сожалению, воздух практически закончился, и описать всё, что произошло со мной, я не смогу. - Моё имя - Йонас Андор. Я командир 17-го разведывательного звена, выполняющий особое задание по проникновению в тыл врага. К сожалению, моя группа вступила в неравный бой с теми, кого мы должны были обойти. До последних сил надеялся, что моё подбитое корыто сможет дотянуть до ближайшей базы, но у проклятого астероида, видимо, были свои планы на меня. + Моё имя - Йонас Андор. Я командир 17-го разведывательного звена, выполняющий особое задание по проникновению в тыл врага. К сожалению, моя группа вступила в неравный бой с теми, кого мы должны были обойти. До последних сил надеялся, что моё подбитое корыто сможет дотянуть до ближайшей базы, но у проклятого астероида, видимо, были свои планы на меня. - Воздуха в моём баллоне вот вот не станет, по крайней мере, карп, который не позволяет мне даже выйти в космос, позаботится о моих останках. + Воздуха в моём баллоне вот вот не станет, по крайней мере, карп, который не позволяет мне даже выйти в космос, позаботится о моих останках. Я прожил достойную жизнь. Слава Синдикату![/italic] - - uid: 39520 + - uid: 39347 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.460006,-3.3764038 - parent: 38584 - - uid: 39521 + parent: 38411 + - uid: 39348 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.538131,-2.7982788 - parent: 38584 + parent: 38411 - proto: PaperBin10 entities: - - uid: 25568 + - uid: 25421 components: - type: Transform pos: -12.5,-1.5 parent: 2 - type: Bin items: - - 25569 - - 25570 - - 25571 - - 25572 - - 25573 - - 25574 + - 25422 + - 25423 + - 25424 + - 25425 + - 25426 + - 25427 - type: ContainerContainer containers: bin-container: !type:Container showEnts: False occludes: True ents: - - 25569 - - 25570 - - 25571 - - 25572 - - 25573 - - 25574 - - uid: 25656 + - 25422 + - 25423 + - 25424 + - 25425 + - 25426 + - 25427 + - uid: 25509 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,29.5 parent: 2 - - uid: 25657 + - uid: 25510 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,62.5 parent: 2 - - uid: 25658 + - uid: 25511 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 25659 + - uid: 25512 components: - type: Transform pos: -16.5,-40.5 parent: 2 - - uid: 25660 + - uid: 25513 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 25661 + - uid: 25514 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,23.5 parent: 2 - - uid: 25662 + - uid: 25515 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,19.5 parent: 2 - - uid: 25663 + - uid: 25516 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-47.5 parent: 2 - - uid: 25664 + - uid: 25517 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 - - uid: 25665 + - uid: 25518 components: - type: Transform pos: 21.5,-28.5 parent: 2 - - uid: 25666 + - uid: 25519 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 25667 + - uid: 25520 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 25668 + - uid: 25521 components: - type: Transform rot: -1.5707963267948966 rad @@ -196956,13 +197029,13 @@ entities: parent: 2 - proto: PaperBin20 entities: - - uid: 25669 + - uid: 25522 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-4.5 parent: 2 - - uid: 25670 + - uid: 25523 components: - type: Transform rot: -1.5707963267948966 rad @@ -196970,13 +197043,13 @@ entities: parent: 2 - proto: PaperBin5 entities: - - uid: 25671 + - uid: 25524 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.500004,-43.5 parent: 2 - - uid: 25672 + - uid: 25525 components: - type: Transform rot: 3.141592653589793 rad @@ -196984,24 +197057,24 @@ entities: parent: 2 - proto: PaperCaptainsThoughts entities: - - uid: 25673 + - uid: 25526 components: - type: Transform pos: 7.420329,1.4533973 parent: 2 - proto: PaperDoor entities: - - uid: 25674 + - uid: 25527 components: - type: Transform pos: -46.5,-45.5 parent: 2 - proto: PaperOffice entities: - - uid: 14901 + - uid: 14836 components: - type: Transform - parent: 14891 + parent: 14832 - type: Paper stampState: paper_stamp-centcom stampedBy: @@ -197037,7 +197110,7 @@ entities: [bold]Содержание обращения:[/bold] - Капитан, уведомляю вас, что ваша подписка на КосмоХаб в категории Горячие Вульпакинши была успешно продлена с вашего основного счёта. Нехватка средств на счету была компенсирована вычетом с баланса отдела Снабжения вашей станции. Операция окончательна и не может быть оспорена в соответствии с пользовательским соглашением от 30.01.2986. + Капитан, уведомляю вас, что ваша подписка на КосмоХаб в категории Горячие Вульпакинши была успешно продлена с вашего основного счёта. Нехватка средств на счету была компенсирована вычетом с баланса отдела Снабжения вашей станции. Операция окончательна и не может быть оспорена в соответствии с пользовательским соглашением от 30.01.2986. В случае возникновения вопросов - обратитесь непосредственно в бухгалтерию по коду RT1337. @@ -197047,7 +197120,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25675 + - uid: 25528 components: - type: Transform pos: 25.475117,67.40114 @@ -197090,22 +197163,22 @@ entities: ============================================= [italic]Место для печатей[/italic] - - uid: 25676 + - uid: 25529 components: - type: Transform rot: 3.141592653589793 rad pos: 55.425858,31.376373 parent: 2 - - uid: 25677 + - uid: 25530 components: - type: Transform rot: 3.141592653589793 rad pos: 55.535233,31.501373 parent: 2 - - uid: 25679 + - uid: 25532 components: - type: Transform - parent: 25678 + parent: 25531 - type: Paper stampState: paper_stamp-cmo stampedBy: @@ -197139,66 +197212,66 @@ entities: Все эти врачи работали вместе и помогали друг другу в трудные моменты. Они были настоящей командой профессионалов и всегда старались делать все, чтобы помочь своим пациентам. Благодаря этому, братья по врачебному делу справлялись со своим нелегким трудом на высшем уровне. - type: Physics canCollide: False - - uid: 25680 + - uid: 25533 components: - type: Transform pos: -36.374428,60.761806 parent: 2 - - uid: 25681 + - uid: 25534 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.950905,59.658222 parent: 2 - - uid: 25682 + - uid: 25535 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.54007,61.959106 parent: 2 - - uid: 25683 + - uid: 25536 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.381355,63.286507 parent: 2 - - uid: 25684 + - uid: 25537 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.522644,38.518795 parent: 2 - - uid: 25685 + - uid: 25538 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.417274,61.98857 parent: 2 - - uid: 25686 + - uid: 25539 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.098415,62.947308 parent: 2 - - uid: 25687 + - uid: 25540 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.48461,63.153763 parent: 2 - - uid: 25688 + - uid: 25541 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.686966,61.560875 parent: 2 - - uid: 25689 + - uid: 25542 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.535282,61.885326 parent: 2 - - uid: 25690 + - uid: 25543 components: - type: Transform rot: 3.141592653589793 rad @@ -197206,7 +197279,7 @@ entities: parent: 2 - proto: PaperRolling1 entities: - - uid: 25691 + - uid: 25544 components: - type: MetaData desc: Тонкий лист бумаги, который кто-то уже использовал. @@ -197216,54 +197289,54 @@ entities: parent: 2 - proto: PaperScrap entities: - - uid: 25692 + - uid: 25545 components: - type: Transform pos: 53.283215,-37.653236 parent: 2 - - uid: 25693 + - uid: 25546 components: - type: Transform pos: 55.545273,23.560537 parent: 2 - - uid: 25694 + - uid: 25547 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.89638,23.55645 parent: 2 - - uid: 39522 + - uid: 39349 components: - type: Transform rot: 3.141592653589793 rad pos: -11.53682,4.657074 - parent: 38584 - - uid: 39523 + parent: 38411 + - uid: 39350 components: - type: Transform rot: 3.141592653589793 rad pos: -11.458695,4.938324 - parent: 38584 + parent: 38411 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 25695 + - uid: 25548 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 25696 + - uid: 25549 components: - type: Transform pos: -75.5,-5.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 25697 + - uid: 25550 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 25698 + - uid: 25551 components: - type: Transform rot: -1.5707963267948966 rad @@ -197271,7 +197344,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 25699 + - uid: 25552 components: - type: Transform rot: -1.5707963267948966 rad @@ -197279,7 +197352,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 25700 + - uid: 25553 components: - type: Transform rot: -1.5707963267948966 rad @@ -197287,13 +197360,13 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 25701 + - uid: 25554 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 25702 + - uid: 25555 components: - type: Transform rot: -1.5707963267948966 rad @@ -197301,7 +197374,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 25703 + - uid: 25556 components: - type: Transform rot: -1.5707963267948966 rad @@ -197309,12 +197382,12 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 25704 + - uid: 25557 components: - type: Transform pos: 14.5,-5.5 parent: 2 - - uid: 25705 + - uid: 25558 components: - type: Transform rot: -1.5707963267948966 rad @@ -197322,328 +197395,328 @@ entities: parent: 2 - proto: PartRodMetal entities: - - uid: 25706 + - uid: 25559 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 25707 + - uid: 25560 components: - type: Transform pos: 12.5,81.5 parent: 2 - - uid: 25708 + - uid: 25561 components: - type: Transform pos: 30.5,30.5 parent: 2 - - uid: 25709 + - uid: 25562 components: - type: Transform pos: 21.5,8.5 parent: 2 - proto: PartRodMetal1 entities: - - uid: 25710 + - uid: 25563 components: - type: Transform rot: 3.141593671850739 rad pos: 59.33862,-40.570953 parent: 2 - - uid: 25711 + - uid: 25564 components: - type: Transform pos: -25.351421,-29.692646 parent: 2 - - uid: 25712 + - uid: 25565 components: - type: Transform pos: -40.326496,-30.266003 parent: 2 - - uid: 25713 + - uid: 25566 components: - type: Transform pos: -37.768337,-25.146555 parent: 2 - - uid: 25714 + - uid: 25567 components: - type: Transform pos: -51.80867,-29.275694 parent: 2 - - uid: 25715 + - uid: 25568 components: - type: Transform pos: -25.45559,-29.265266 parent: 2 - - uid: 25716 + - uid: 25569 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.51996,-66.81522 parent: 2 - - uid: 25717 + - uid: 25570 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.572918,-62.433575 parent: 2 - - uid: 25718 + - uid: 25571 components: - type: Transform rot: -1.5707953085339508 rad pos: 61.572994,-40.555332 parent: 2 - - uid: 39524 + - uid: 39351 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.028293,19.568909 - parent: 38584 - - uid: 39525 + parent: 38411 + - uid: 39352 components: - type: Transform rot: 3.141592653589793 rad pos: 8.95761,19.583649 - parent: 38584 + parent: 38411 - proto: Pen entities: - - uid: 1391 + - uid: 1395 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25719 + - uid: 25572 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.491467,-3.7691374 parent: 2 - - uid: 25720 + - uid: 25573 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.097733,30.704498 parent: 2 - - uid: 25721 + - uid: 25574 components: - type: Transform pos: -17.069618,-41.371113 parent: 2 - - uid: 25722 + - uid: 25575 components: - type: Transform pos: 9.351555,32.663494 parent: 2 - - uid: 25723 + - uid: 25576 components: - type: Transform pos: 15.707917,-49.4478 parent: 2 - - uid: 25724 + - uid: 25577 components: - type: Transform pos: -24.506498,22.68696 parent: 2 - type: Physics canCollide: False - - uid: 25725 + - uid: 25578 components: - type: Transform rot: 3.141592653589793 rad pos: -40.579536,61.501842 parent: 2 - - uid: 25726 + - uid: 25579 components: - type: Transform rot: 6.283185307179586 rad pos: -26.690697,-29.727829 parent: 2 - - uid: 25727 + - uid: 25580 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.439426,15.789871 parent: 2 - - uid: 25728 + - uid: 25581 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.626926,15.805496 parent: 2 - - uid: 25729 + - uid: 25582 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.0607932,-16.36893 parent: 2 - - uid: 25730 + - uid: 25583 components: - type: Transform pos: 26.2638,-3.5469248 parent: 2 - - uid: 25731 + - uid: 25584 components: - type: Transform rot: 3.141592653589793 rad pos: 48.420795,18.954248 parent: 2 - - uid: 25732 + - uid: 25585 components: - type: Transform rot: 3.141592653589793 rad pos: 48.639545,18.985498 parent: 2 - - uid: 25733 + - uid: 25586 components: - type: Transform pos: 23.450024,-46.379463 parent: 2 - type: Physics canCollide: False - - uid: 25734 + - uid: 25587 components: - type: Transform pos: -20.383062,-42.942463 parent: 2 - - uid: 25735 + - uid: 25588 components: - type: Transform rot: 6.283185307179586 rad pos: -26.28472,-27.577341 parent: 2 - - uid: 25736 + - uid: 25589 components: - type: Transform pos: 37.470917,-10.411614 parent: 2 - type: Physics canCollide: False - - uid: 25737 + - uid: 25590 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.655098,-3.739999 parent: 2 - - uid: 25738 + - uid: 25591 components: - type: Transform pos: -19.216114,-49.46148 parent: 2 - - uid: 25739 + - uid: 25592 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.316475,63.006268 parent: 2 - - uid: 25740 + - uid: 25593 components: - type: Transform pos: -31.636566,-37.46047 parent: 2 - - uid: 25741 + - uid: 25594 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.440341,-60.388588 parent: 2 - - uid: 25742 + - uid: 25595 components: - type: Transform pos: 11.677389,-52.41908 parent: 2 - - uid: 25743 + - uid: 25596 components: - type: Transform pos: 36.533417,-13.349114 parent: 2 - type: Physics canCollide: False - - uid: 25744 + - uid: 25597 components: - type: Transform pos: -51.472042,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25745 + - uid: 25598 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.613075,-37.497192 parent: 2 - - uid: 25746 + - uid: 25599 components: - type: Transform pos: -12.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 25747 + - uid: 25600 components: - type: Transform pos: -13.537247,-79.39744 parent: 2 - type: Physics canCollide: False - - uid: 25748 + - uid: 25601 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.421505,0.58504266 parent: 2 - - uid: 25749 + - uid: 25602 components: - type: Transform rot: 3.141592653589793 rad pos: 25.701292,0.63588446 parent: 2 - - uid: 25750 + - uid: 25603 components: - type: Transform pos: 51.494473,-22.433455 parent: 2 - type: Physics canCollide: False - - uid: 25751 + - uid: 25604 components: - type: Transform pos: 30.719963,-40.205338 parent: 2 - - uid: 25752 + - uid: 25605 components: - type: Transform pos: 38.53962,22.54246 parent: 2 - type: Physics canCollide: False - - uid: 25753 + - uid: 25606 components: - type: Transform pos: -34.399147,-0.24586654 parent: 2 - - uid: 25754 + - uid: 25607 components: - type: Transform pos: 35.53883,-18.364212 parent: 2 - type: Physics canCollide: False - - uid: 25755 + - uid: 25608 components: - type: Transform pos: 51.46925,-14.439258 parent: 2 - type: Physics canCollide: False - - uid: 25756 + - uid: 25609 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.264614,1.0505768 parent: 2 - - uid: 25757 + - uid: 25610 components: - type: MetaData desc: надпись "взрывчатка" @@ -197651,232 +197724,232 @@ entities: - type: Transform pos: 49.443283,-42.569252 parent: 2 - - uid: 25758 + - uid: 25611 components: - type: Transform pos: -4.5355453,-60.37103 parent: 2 - - uid: 25759 + - uid: 25612 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.783176,15.774246 parent: 2 - - uid: 25760 + - uid: 25613 components: - type: Transform pos: 1.5124657,13.635027 parent: 2 - type: Physics canCollide: False - - uid: 25761 + - uid: 25614 components: - type: Transform pos: -22.454296,-81.41032 parent: 2 - - uid: 25762 + - uid: 25615 components: - type: Transform pos: -46.678894,38.893795 parent: 2 - - uid: 25763 + - uid: 25616 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.20707,60.17441 parent: 2 - - uid: 25764 + - uid: 25617 components: - type: Transform rot: 3.141592653589793 rad pos: -39.69104,27.481401 parent: 2 - - uid: 25765 + - uid: 25618 components: - type: Transform pos: 38.632412,-59.93169 parent: 2 - - uid: 25766 + - uid: 25619 components: - type: Transform pos: 19.428835,-27.442116 parent: 2 - - uid: 25767 + - uid: 25620 components: - type: Transform rot: 3.141592653589793 rad pos: 14.528481,-58.354614 parent: 2 - - uid: 25768 + - uid: 25621 components: - type: Transform pos: 72.66701,-44.147068 parent: 2 - - uid: 25769 + - uid: 25622 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.44131,4.9716973 parent: 2 - - uid: 25770 + - uid: 25623 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.70693,7.581073 parent: 2 - - uid: 25771 + - uid: 25624 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -30.61369,-7.7008057 parent: 2 - - uid: 25772 + - uid: 25625 components: - type: Transform rot: -1.5707953085339508 rad pos: -26.699986,-7.2377434 parent: 2 - - uid: 25773 + - uid: 25626 components: - type: Transform rot: 3.141593671850739 rad pos: -27.52549,0.4504242 parent: 2 - - uid: 25774 + - uid: 25627 components: - type: Transform rot: -1.5707953085339508 rad pos: 96.251434,12.531024 parent: 2 - - uid: 25775 + - uid: 25628 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.2637,-1.4916117 parent: 2 - - uid: 25776 + - uid: 25629 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.3887,-1.4916136 parent: 2 - - uid: 25777 + - uid: 25630 components: - type: Transform pos: 56.04083,25.61718 parent: 2 - - uid: 25778 + - uid: 25631 components: - type: Transform rot: 3.141592653589793 rad pos: 57.21884,29.658722 parent: 2 - - uid: 25779 + - uid: 25632 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.203777,23.580559 parent: 2 - - uid: 25780 + - uid: 25633 components: - type: Transform rot: 3.141592653589793 rad pos: 53.47312,-3.4022193 parent: 2 - - uid: 25781 + - uid: 25634 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.139263,21.552462 parent: 2 - - uid: 25782 + - uid: 25635 components: - type: Transform pos: 22.483013,21.724337 parent: 2 - - uid: 25783 + - uid: 25636 components: - type: Transform rot: 3.141592653589793 rad pos: 26.420513,21.48996 parent: 2 - - uid: 25784 + - uid: 25637 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.592388,21.630585 parent: 2 - - uid: 39526 + - uid: 39353 components: - type: Transform rot: 3.141592653589793 rad pos: -10.475631,-2.3764038 - parent: 38584 - - uid: 39527 + parent: 38411 + - uid: 39354 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.290835,-3.7772217 - parent: 38584 + parent: 38411 - proto: PersonalAI entities: - - uid: 25785 + - uid: 25638 components: - type: Transform pos: -7.4952707,11.598992 parent: 2 - type: Physics canCollide: False - - uid: 25786 + - uid: 25639 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 25787 + - uid: 25640 components: - type: Transform pos: -20.469707,-37.495167 parent: 2 - type: Physics canCollide: False - - uid: 25788 + - uid: 25641 components: - type: Transform pos: -32.382526,-12.516092 parent: 2 - type: Physics canCollide: False - - uid: 25789 + - uid: 25642 components: - type: Transform pos: 37.533417,-13.286614 parent: 2 - type: Physics canCollide: False - - uid: 25790 + - uid: 25643 components: - type: Transform pos: -10.475416,-22.421984 parent: 2 - type: Physics canCollide: False - - uid: 25791 + - uid: 25644 components: - type: Transform pos: -32.48197,16.390942 parent: 2 - - uid: 25792 + - uid: 25645 components: - type: Transform pos: -31.460695,-43.416817 parent: 2 - - uid: 25793 + - uid: 25646 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.194735,-43.42964 parent: 2 - - uid: 25794 + - uid: 25647 components: - type: Transform pos: -24.465235,21.68368 @@ -197885,53 +197958,53 @@ entities: canCollide: False - proto: PetCarrier entities: - - uid: 25795 + - uid: 25648 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-59.5 parent: 2 - - uid: 25796 + - uid: 25649 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 25797 + - uid: 25650 components: - type: Transform pos: -1.5,-16.5 parent: 2 - proto: PhoneInstrument entities: - - uid: 25798 + - uid: 25651 components: - type: Transform pos: 41.402508,19.727028 parent: 2 - type: Physics canCollide: False - - uid: 25799 + - uid: 25652 components: - type: Transform pos: -63.606014,6.5975237 parent: 2 - type: Physics canCollide: False - - uid: 25800 + - uid: 25653 components: - type: Transform pos: -9.435662,10.440056 parent: 2 - type: Physics canCollide: False - - uid: 25801 + - uid: 25654 components: - type: MetaData desc: Ало, это булошная? - type: Transform pos: 72.45427,0.6379792 parent: 2 - - uid: 41052 + - uid: 25655 components: - type: Transform pos: -62.532547,-23.342627 @@ -197944,209 +198017,209 @@ entities: - Pullable - proto: Pickaxe entities: - - uid: 25802 + - uid: 25656 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 55.4228,-49.467365 parent: 2 - - uid: 25803 + - uid: 25657 components: - type: Transform pos: -55.42047,-50.5453 parent: 2 - - uid: 25804 + - uid: 25658 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 25805 + - uid: 25659 components: - type: Transform rot: -4.71238898038469 rad pos: 100.49681,-3.3690634 parent: 2 - - uid: 39528 + - uid: 39355 components: - type: Transform pos: -5.5,14.5 - parent: 38584 - - uid: 39529 + parent: 38411 + - uid: 39356 components: - type: Transform pos: -21.18938,17.355896 - parent: 38584 - - uid: 39530 + parent: 38411 + - uid: 39357 components: - type: Transform pos: 1.5094376,8.475464 - parent: 38584 - - uid: 39531 + parent: 38411 + - uid: 39358 components: - type: Transform pos: 1.5563126,8.209839 - parent: 38584 - - uid: 39532 + parent: 38411 + - uid: 39359 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.460182,3.7668457 - parent: 38584 + parent: 38411 - proto: PillCanister entities: - - uid: 25806 + - uid: 25660 components: - type: Transform pos: 8.582031,-43.28059 parent: 2 - - uid: 25807 + - uid: 25661 components: - type: Transform pos: 8.749899,-43.44664 parent: 2 - - uid: 25808 + - uid: 25662 components: - type: Transform pos: 8.410156,-43.40559 parent: 2 - - uid: 25809 + - uid: 25663 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.785163,-44.64352 parent: 2 - - uid: 25810 + - uid: 25664 components: - type: Transform pos: 22.489054,-37.315258 parent: 2 - proto: PillSpaceDrugs entities: - - uid: 25811 + - uid: 25665 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 25812 + - uid: 25666 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 25813 + - uid: 25667 components: - type: Transform pos: -39.5,54.5 parent: 2 - proto: PinpointerNuclear entities: - - uid: 25814 + - uid: 25668 components: - type: Transform pos: 7.824789,0.54907286 parent: 2 - proto: PinpointerSyndicateNuclear entities: - - uid: 25816 + - uid: 25670 components: - type: Transform - parent: 25815 + parent: 25669 - type: Physics canCollide: False - proto: PlantBag entities: - - uid: 25817 + - uid: 25671 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 97.32841,6.43131 parent: 2 - - uid: 25818 + - uid: 25672 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 97.60966,6.603186 parent: 2 - - uid: 39533 + - uid: 39360 components: - type: Transform pos: -21.59623,-2.532013 - parent: 38584 + parent: 38411 - proto: PlasmaCanister entities: - - uid: 25819 + - uid: 25673 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 25820 + - uid: 25674 components: - type: Transform pos: -59.5,61.5 parent: 2 - - uid: 25821 + - uid: 25675 components: - type: Transform pos: -27.5,-49.5 parent: 2 - - uid: 25822 + - uid: 25676 components: - type: Transform pos: -70.5,29.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 25823 + - uid: 25677 components: - type: Transform rot: 3.141592653589793 rad pos: -119.5,46.5 parent: 2 - - uid: 25824 + - uid: 25678 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,46.5 parent: 2 - - uid: 25825 + - uid: 25679 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-48.5 parent: 2 - - uid: 25826 + - uid: 25680 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 - - uid: 25827 + - uid: 25681 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,46.5 parent: 2 - - uid: 25828 + - uid: 25682 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 25829 + - uid: 25683 components: - type: Transform pos: -117.5,49.5 parent: 2 - - uid: 25830 + - uid: 25684 components: - type: Transform pos: -119.5,49.5 parent: 2 - - uid: 25831 + - uid: 25685 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,47.5 parent: 2 - - uid: 25832 + - uid: 25686 components: - type: Transform rot: 1.5707963267948966 rad @@ -198154,102 +198227,102 @@ entities: parent: 2 - proto: PlasmaTankFilled entities: - - uid: 25833 + - uid: 25687 components: - type: Transform pos: -54.62513,-9.336228 parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 25834 + - uid: 25688 components: - type: Transform pos: 39.5,48.5 parent: 2 - - uid: 25835 + - uid: 25689 components: - type: Transform pos: 39.5,52.5 parent: 2 - - uid: 25836 + - uid: 25690 components: - type: Transform pos: 30.5,61.5 parent: 2 - - uid: 25837 + - uid: 25691 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,48.5 parent: 2 - - uid: 25838 + - uid: 25692 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,52.5 parent: 2 - - uid: 25839 + - uid: 25693 components: - type: Transform pos: 27.5,57.5 parent: 2 - proto: PlasticFlapsOpaque entities: - - uid: 25840 + - uid: 25694 components: - type: Transform pos: -55.5,-18.5 parent: 2 - - uid: 25841 + - uid: 25695 components: - type: Transform pos: -43.5,23.5 parent: 2 - proto: PlastitaniumWindow entities: - - uid: 39534 + - uid: 39361 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39535 + parent: 38411 + - uid: 39362 components: - type: Transform pos: -16.5,33.5 - parent: 38584 + parent: 38411 - proto: Plunger entities: - - uid: 25842 + - uid: 25696 components: - type: Transform pos: -76.535095,-30.484901 parent: 2 - proto: PlushieArachind entities: - - uid: 25843 + - uid: 25697 components: - type: Transform pos: -54.48039,-19.462519 parent: 2 - - uid: 25844 + - uid: 25698 components: - type: Transform pos: 15.5,59.5 parent: 2 - proto: PlushieAtmosian entities: - - uid: 25296 + - uid: 25699 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.6727,-23.279488 parent: 2 - - uid: 25845 + - uid: 25700 components: - type: Transform pos: -43.53502,-44.42827 parent: 2 - - uid: 25846 + - uid: 25701 components: - type: MetaData name: Rombzes @@ -198258,7 +198331,7 @@ entities: parent: 2 - proto: PlushieBee entities: - - uid: 25848 + - uid: 25702 components: - type: MetaData desc: Милая игрушка, напоминающая ещё более милого "программиста" и маппера. Пожалуйста, не давайте ему энергетики... @@ -198266,38 +198339,38 @@ entities: - type: Transform pos: -64.06701,-44.41243 parent: 2 - - uid: 39536 + - uid: 39363 components: - type: Transform pos: 6.435026,-5.5044556 - parent: 38584 + parent: 38411 - proto: PlushieCarp entities: - - uid: 25849 + - uid: 25703 components: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 25851 + - uid: 25704 components: - type: Transform pos: -39.5,-8.5 parent: 2 - - uid: 25852 + - uid: 25705 components: - type: Transform pos: -40.5,-10.5 parent: 2 - proto: PlushieDiona entities: - - uid: 25853 + - uid: 25706 components: - type: Transform pos: -3.4434888,1.7209707 parent: 2 - proto: PlushieHampter entities: - - uid: 25854 + - uid: 25707 components: - type: MetaData desc: Этот хомяк правит целой китайской партией, в отличии от тебя. Слава КНПРМК! @@ -198305,43 +198378,43 @@ entities: - type: Transform pos: -50.5,-44.5 parent: 2 - - uid: 25855 + - uid: 25708 components: - type: Transform pos: 88.424194,-43.53203 parent: 2 - - uid: 25856 + - uid: 25709 components: - type: MetaData name: SayroN - type: Transform pos: -10.535128,-57.3854 parent: 2 - - uid: 25857 + - uid: 25710 components: - type: Transform pos: -80.54381,2.7824435 parent: 2 - proto: PlushieHuman entities: - - uid: 25858 + - uid: 25711 components: - type: Transform pos: -55.544044,-33.47897 parent: 2 - proto: PlushieLamp entities: - - uid: 25859 + - uid: 25712 components: - type: Transform pos: -30.68368,-67.59529 parent: 2 - - uid: 25860 + - uid: 25713 components: - type: Transform pos: -12.554631,54.68616 parent: 2 - - uid: 25861 + - uid: 25714 components: - type: MetaData desc: Думает... @@ -198349,12 +198422,12 @@ entities: - type: Transform pos: -122.46826,32.54152 parent: 2 - - uid: 25862 + - uid: 25715 components: - type: Transform pos: -34.448166,0.61967087 parent: 2 - - uid: 25863 + - uid: 25716 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198362,13 +198435,13 @@ entities: parent: 2 - proto: PlushieLizard entities: - - uid: 25864 + - uid: 25717 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -111.65515,32.620216 parent: 2 - - uid: 25865 + - uid: 25718 components: - type: MetaData name: плюшевый Asfgdh @@ -198377,13 +198450,13 @@ entities: parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 25866 + - uid: 25719 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.42313,-4.4171724 parent: 2 - - uid: 25867 + - uid: 25720 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198391,35 +198464,40 @@ entities: parent: 2 - proto: PlushieMagicarp entities: - - uid: 25869 + - uid: 25721 components: - type: Transform pos: -38.429466,-9.485341 parent: 2 - proto: PlushieMoth entities: - - uid: 25870 + - uid: 25722 components: - type: Transform pos: 79.53357,-36.610157 parent: 2 + - uid: 38309 + components: + - type: Transform + pos: -11.493735,-0.5834905 + parent: 2 - proto: PlushieNuke entities: - - uid: 25872 + - uid: 25723 components: - type: MetaData name: плюшевая коммандер Триннк - type: Transform pos: 14.60019,-27.428131 parent: 2 - - uid: 39537 + - uid: 39364 components: - type: Transform pos: -16.5,30.5 - parent: 38584 + parent: 38411 - proto: PlushiePenguin entities: - - uid: 25873 + - uid: 25724 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198427,21 +198505,21 @@ entities: parent: 2 - proto: PlushieRainbowCarp entities: - - uid: 25874 + - uid: 25725 components: - type: Transform pos: -57.52734,-31.52434 parent: 2 - proto: PlushieRGBee entities: - - uid: 25875 + - uid: 25726 components: - type: Transform pos: 47.448463,-24.545958 parent: 2 - proto: PlushieRouny entities: - - uid: 25876 + - uid: 25727 components: - type: MetaData desc: Милаха @@ -198451,21 +198529,21 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 25877 + - uid: 25728 components: - type: MetaData name: Nagano - type: Transform pos: -31.47719,-65.66022 parent: 2 - - uid: 25878 + - uid: 25729 components: - type: Transform pos: -22.533066,-12.404669 parent: 2 - proto: PlushieSharkGrey entities: - - uid: 25879 + - uid: 25730 components: - type: MetaData desc: Спонсор счастья. @@ -198475,14 +198553,14 @@ entities: parent: 2 - proto: PlushieSharkPink entities: - - uid: 25880 + - uid: 25731 components: - type: MetaData name: Imera - type: Transform pos: -31.465832,-67.69834 parent: 2 - - uid: 25881 + - uid: 25732 components: - type: MetaData name: розовая плюшевая Melissandra @@ -198492,21 +198570,21 @@ entities: parent: 2 - proto: PlushieSlime entities: - - uid: 25882 + - uid: 25733 components: - type: MetaData name: плюшевая meowstushka - type: Transform pos: -52.5,-45.5 parent: 2 - - uid: 25883 + - uid: 25734 components: - type: Transform pos: 36.49726,-4.6241965 parent: 2 - proto: PlushieSnake entities: - - uid: 25884 + - uid: 25735 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198514,12 +198592,12 @@ entities: parent: 2 - proto: PlushieSpaceLizard entities: - - uid: 25885 + - uid: 25736 components: - type: Transform pos: -3.5128639,42.268387 parent: 2 - - uid: 25886 + - uid: 25737 components: - type: MetaData desc: Какой же он позитивный! @@ -198527,7 +198605,7 @@ entities: - type: Transform pos: -122.43088,33.380764 parent: 2 - - uid: 25887 + - uid: 25738 components: - type: MetaData desc: Очаровательная мягкая игрушка, напоминающая унатха в EVA костюме. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростертыми объятиями!". @@ -198535,7 +198613,7 @@ entities: - type: Transform pos: -36.5417,-50.486084 parent: 2 - - uid: 25888 + - uid: 25739 components: - type: MetaData desc: Он смотрит в космос, а космос смотрит в него... Глубоко... @@ -198543,7 +198621,7 @@ entities: - type: Transform pos: 28.562729,105.623215 parent: 2 - - uid: 25889 + - uid: 25740 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198551,124 +198629,124 @@ entities: parent: 2 - proto: PonderingOrb entities: - - uid: 25890 + - uid: 25741 components: - type: Transform pos: -74.52181,-11.459025 parent: 2 - proto: PortableFlasher entities: - - uid: 25891 + - uid: 25742 components: - type: Transform pos: 70.5,3.5 parent: 2 - - uid: 25892 + - uid: 25743 components: - type: Transform pos: 69.5,3.5 parent: 2 - - uid: 25893 + - uid: 25744 components: - type: Transform pos: 68.5,3.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 25895 + - uid: 25745 components: - type: Transform pos: -27.5,-56.5 parent: 2 - - uid: 25896 + - uid: 25746 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 25897 + - uid: 25747 components: - type: Transform pos: 9.5,62.5 parent: 2 - - uid: 25898 + - uid: 25748 components: - type: Transform pos: 2.5,-39.5 parent: 2 - - uid: 25899 + - uid: 25749 components: - type: Transform pos: 52.5,-41.5 parent: 2 - - uid: 25900 + - uid: 25750 components: - type: Transform pos: -32.5,-48.5 parent: 2 - - uid: 25901 + - uid: 25751 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 25902 + - uid: 25752 components: - type: Transform pos: -31.5,64.5 parent: 2 - - uid: 25903 + - uid: 25753 components: - type: Transform pos: -38.5,-17.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 25904 + - uid: 25754 components: - type: Transform pos: 16.5,-54.5 parent: 2 - - uid: 25905 + - uid: 25755 components: - type: Transform pos: -70.5,12.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 25906 + - uid: 25756 components: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 25907 + - uid: 25757 components: - type: Transform pos: -44.5,-5.5 parent: 2 - proto: PortableScrubber entities: - - uid: 25908 + - uid: 25758 components: - type: Transform pos: -45.5,22.5 parent: 2 - - uid: 25909 + - uid: 25759 components: - type: Transform pos: -51.5,23.5 parent: 2 - - uid: 25910 + - uid: 25760 components: - type: Transform pos: -51.5,22.5 parent: 2 - - uid: 25911 + - uid: 25761 components: - type: Transform pos: -45.5,21.5 parent: 2 - proto: PosterBroken entities: - - uid: 25912 + - uid: 25762 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198676,14 +198754,14 @@ entities: parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 25914 + - uid: 25763 components: - type: Transform pos: -56.5,31.5 parent: 2 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 25915 + - uid: 25764 components: - type: MetaData name: Пляжная звезда Триннк! @@ -198692,7 +198770,7 @@ entities: parent: 2 - proto: PosterContrabandBustyBackdoorExoBabes6 entities: - - uid: 25916 + - uid: 25765 components: - type: Transform rot: 3.141593671850739 rad @@ -198700,42 +198778,42 @@ entities: parent: 2 - proto: PosterContrabandClown entities: - - uid: 25917 + - uid: 25766 components: - type: Transform pos: -10.5,25.5 parent: 2 - proto: PosterContrabandCybersun600 entities: - - uid: 25918 + - uid: 25767 components: - type: Transform pos: -47.5,-45.5 parent: 2 - proto: PosterContrabandEAT entities: - - uid: 25919 + - uid: 25768 components: - type: Transform pos: -23.5,29.5 parent: 2 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 25920 + - uid: 25769 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -112.5,45.5 parent: 2 - - uid: 39538 + - uid: 39365 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,33.5 - parent: 38584 + parent: 38411 - proto: PosterContrabandFunPolice entities: - - uid: 25921 + - uid: 25770 components: - type: Transform rot: 3.141592653589793 rad @@ -198743,47 +198821,47 @@ entities: parent: 2 - proto: PosterContrabandGreyTide entities: - - uid: 25922 + - uid: 25771 components: - type: Transform pos: -22.5,24.5 parent: 2 - proto: PosterContrabandKudzu entities: - - uid: 25923 + - uid: 25772 components: - type: Transform pos: -38.5,30.5 parent: 2 - proto: PosterContrabandLamarr entities: - - uid: 25924 + - uid: 25773 components: - type: Transform pos: -53.5,-26.5 parent: 2 - proto: PosterContrabandLustyExomorph entities: - - uid: 25925 + - uid: 25774 components: - type: Transform pos: -29.5,-9.5 parent: 2 - - uid: 25926 + - uid: 25775 components: - type: Transform pos: -67.5,57.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 25927 + - uid: 25776 components: - type: Transform pos: -30.5,-68.5 parent: 2 - proto: PosterContrabandMoth entities: - - uid: 25928 + - uid: 25777 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198791,14 +198869,14 @@ entities: parent: 2 - proto: PosterContrabandRebelsUnite entities: - - uid: 25929 + - uid: 25778 components: - type: Transform pos: 13.5,-2.5 parent: 2 - proto: PosterContrabandRevolver entities: - - uid: 25930 + - uid: 25779 components: - type: Transform rot: 1.5707963267948966 rad @@ -198806,41 +198884,41 @@ entities: parent: 2 - proto: PosterContrabandShamblersJuice entities: - - uid: 25931 + - uid: 25780 components: - type: Transform pos: -53.5,-41.5 parent: 2 - proto: PosterContrabandSpaceCola entities: - - uid: 25932 + - uid: 25781 components: - type: Transform pos: -40.5,-60.5 parent: 2 - proto: PosterContrabandSpaceUp entities: - - uid: 25933 + - uid: 25782 components: - type: Transform pos: -64.5,-48.5 parent: 2 - proto: PosterContrabandSunkist entities: - - uid: 25934 + - uid: 25783 components: - type: Transform pos: -62.5,-48.5 parent: 2 - proto: PosterContrabandVoteWeh entities: - - uid: 25935 + - uid: 25784 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -115.50001,33.5 parent: 2 - - uid: 25936 + - uid: 25785 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198848,7 +198926,7 @@ entities: parent: 2 - proto: PosterContrabandWehWatches entities: - - uid: 25937 + - uid: 25786 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198856,24 +198934,24 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 25938 + - uid: 25787 components: - type: Transform pos: -36.5,-69.5 parent: 2 - - uid: 25939 + - uid: 25788 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,10.5 parent: 2 - - uid: 25940 + - uid: 25789 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-37.5 parent: 2 - - uid: 25941 + - uid: 25790 components: - type: Transform rot: 1.5707963267948966 rad @@ -198881,151 +198959,151 @@ entities: parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 25942 + - uid: 25791 components: - type: Transform pos: 7.5,-39.5 parent: 2 - proto: PosterLegitBlessThisSpess entities: - - uid: 25943 + - uid: 25792 components: - type: Transform pos: 7.5,-53.5 parent: 2 - proto: PosterLegitBuild entities: - - uid: 25944 + - uid: 25793 components: - type: Transform pos: -57.5,43.5 parent: 2 - proto: PosterLegitCarbonDioxide entities: - - uid: 25945 + - uid: 25794 components: - type: Transform pos: -51.5,31.5 parent: 2 - proto: PosterLegitCarpMount entities: - - uid: 25946 + - uid: 25795 components: - type: Transform pos: -66.5,-29.5 parent: 2 - proto: PosterLegitCleanliness entities: - - uid: 25947 + - uid: 25796 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 25948 + - uid: 25797 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 25949 + - uid: 25798 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 25950 + - uid: 25799 components: - type: Transform pos: -31.5,-36.5 parent: 2 - proto: PosterLegitDoNotQuestion entities: - - uid: 25951 + - uid: 25800 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 25952 + - uid: 25801 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 25953 + - uid: 25802 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 25954 + - uid: 25803 components: - type: Transform pos: 71.5,3.5 parent: 2 - proto: PosterLegitEnlist entities: - - uid: 25955 + - uid: 25804 components: - type: Transform pos: 39.5,-1.5 parent: 2 - proto: PosterLegitGetYourLEGS entities: - - uid: 25956 + - uid: 25805 components: - type: Transform pos: -26.5,-15.5 parent: 2 - proto: PosterLegitHelpOthers entities: - - uid: 25957 + - uid: 25806 components: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 25958 + - uid: 25807 components: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 25959 + - uid: 25808 components: - type: Transform pos: 23.5,-29.5 parent: 2 - - uid: 25960 + - uid: 25809 components: - type: Transform pos: 38.5,3.5 parent: 2 - - uid: 25961 + - uid: 25810 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 25962 + - uid: 25811 components: - type: Transform pos: 32.5,-6.5 parent: 2 - proto: PosterLegitHereForYourSafety entities: - - uid: 25963 + - uid: 25812 components: - type: Transform pos: 60.5,2.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 25964 + - uid: 25813 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 25965 + - uid: 25814 components: - type: Transform pos: -15.5,-2.5 parent: 2 - proto: PosterLegitIonRifle entities: - - uid: 25966 + - uid: 25815 components: - type: Transform rot: 1.5707963267948966 rad @@ -199033,249 +199111,249 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 25967 + - uid: 25816 components: - type: Transform pos: -39.5,-59.5 parent: 2 - - uid: 25968 + - uid: 25817 components: - type: Transform pos: -40.5,-59.5 parent: 2 - - uid: 25969 + - uid: 25818 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 25970 + - uid: 25819 components: - type: Transform pos: -14.5,-2.5 parent: 2 - proto: PosterLegitMime entities: - - uid: 25971 + - uid: 25820 components: - type: Transform pos: -4.5,44.5 parent: 2 - proto: PosterLegitNanomichiAd entities: - - uid: 25972 + - uid: 25821 components: - type: Transform pos: -34.5,64.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 25973 + - uid: 25822 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,59.5 parent: 2 - - uid: 25974 + - uid: 25823 components: - type: Transform pos: 49.5,10.5 parent: 2 - - uid: 25975 + - uid: 25824 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - - uid: 25976 + - uid: 25825 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 25977 + - uid: 25826 components: - type: Transform pos: -82.5,12.5 parent: 2 - - uid: 25978 + - uid: 25827 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 25979 + - uid: 25828 components: - type: Transform pos: -21.5,59.5 parent: 2 - - uid: 25980 + - uid: 25829 components: - type: Transform pos: 54.5,-24.5 parent: 2 - - uid: 25981 + - uid: 25830 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 25982 + - uid: 25831 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-12.5 parent: 2 - - uid: 25983 + - uid: 25832 components: - type: Transform pos: -15.5,-44.5 parent: 2 - - uid: 25984 + - uid: 25833 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 25985 + - uid: 25834 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 25986 + - uid: 25835 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 25987 + - uid: 25836 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 25988 + - uid: 25837 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 25989 + - uid: 25838 components: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 25990 + - uid: 25839 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 25991 + - uid: 25840 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - uid: 25992 + - uid: 25841 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 25993 + - uid: 25842 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-32.5 parent: 2 - - uid: 25994 + - uid: 25843 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 25995 + - uid: 25844 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 25996 + - uid: 25845 components: - type: Transform pos: 66.5,-31.5 parent: 2 - - uid: 25997 + - uid: 25846 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 25998 + - uid: 25847 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 25999 + - uid: 25848 components: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 26000 + - uid: 25849 components: - type: Transform pos: 38.5,16.5 parent: 2 - - uid: 26001 + - uid: 25850 components: - type: Transform pos: 40.5,-72.5 parent: 2 - - uid: 26002 + - uid: 25851 components: - type: Transform pos: 46.5,-24.5 parent: 2 - - uid: 26003 + - uid: 25852 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 26004 + - uid: 25853 components: - type: Transform pos: -4.5,-62.5 parent: 2 - - uid: 26005 + - uid: 25854 components: - type: Transform pos: 13.5,12.5 parent: 2 - - uid: 26006 + - uid: 25855 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 26007 + - uid: 25856 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 26008 + - uid: 25857 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - uid: 26009 + - uid: 25858 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 26010 + - uid: 25859 components: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 26011 + - uid: 25860 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-32.5 parent: 2 - - uid: 26012 + - uid: 25861 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-8.5 parent: 2 - - uid: 26013 + - uid: 25862 components: - type: Transform rot: 3.141592653589793 rad @@ -199283,47 +199361,47 @@ entities: parent: 2 - proto: PosterLegitNoERP entities: - - uid: 26014 + - uid: 25863 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 50.5,-21.5 parent: 2 - - uid: 26016 + - uid: 25864 components: - type: Transform pos: -54.5,26.5 parent: 2 - proto: PosterLegitNTTGC entities: - - uid: 26017 + - uid: 25865 components: - type: Transform pos: 64.5,-16.5 parent: 2 - proto: PosterLegitObey entities: - - uid: 26018 + - uid: 25866 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,10.5 parent: 2 - - uid: 26019 + - uid: 25867 components: - type: Transform pos: 73.5,-1.5 parent: 2 - proto: PosterLegitPDAAd entities: - - uid: 26020 + - uid: 25868 components: - type: Transform pos: -38.5,64.5 parent: 2 - proto: PosterLegitPeriodicTable entities: - - uid: 26021 + - uid: 25869 components: - type: Transform rot: 1.5707963267948966 rad @@ -199331,110 +199409,110 @@ entities: parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 26022 + - uid: 25870 components: - type: Transform pos: 52.5,2.5 parent: 2 - - uid: 26023 + - uid: 25871 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 26024 + - uid: 25872 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 26025 + - uid: 25873 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 26026 + - uid: 25874 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 26027 + - uid: 25875 components: - type: Transform pos: 35.5,-2.5 parent: 2 - proto: PosterLegitSafetyInternals entities: - - uid: 26028 + - uid: 25876 components: - type: Transform pos: -48.5,35.5 parent: 2 - - uid: 26029 + - uid: 25877 components: - type: Transform pos: 21.5,-29.5 parent: 2 - proto: PosterLegitSafetyMothPiping entities: - - uid: 26030 + - uid: 25878 components: - type: Transform pos: -19.5,-60.5 parent: 2 - proto: PosterLegitScience entities: - - uid: 26031 + - uid: 25879 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 26032 + - uid: 25880 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-48.5 parent: 2 - - uid: 26033 + - uid: 25881 components: - type: Transform pos: -16.5,-22.5 parent: 2 - - uid: 26034 + - uid: 25882 components: - type: Transform pos: -41.5,-35.5 parent: 2 - proto: PosterLegitSoftCapPopArt entities: - - uid: 26035 + - uid: 25883 components: - type: Transform pos: -25.5,24.5 parent: 2 - proto: PosterLegitWorkForAFuture entities: - - uid: 26036 + - uid: 25884 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 26037 + - uid: 25885 components: - type: Transform pos: -27.5,18.5 parent: 2 - proto: PosterMapDelta entities: - - uid: 26038 + - uid: 25886 components: - type: Transform pos: -15.5,55.5 parent: 2 - - uid: 26039 + - uid: 25887 components: - type: Transform pos: -3.5,25.5 parent: 2 - - uid: 26040 + - uid: 25888 components: - type: Transform rot: 1.5707963267948966 rad @@ -199442,7 +199520,7 @@ entities: parent: 2 - proto: PottedPlant1 entities: - - uid: 25815 + - uid: 25669 components: - type: Transform pos: -49.5,-35.5 @@ -199452,106 +199530,106 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 25816 + ent: 25670 - proto: PottedPlant10 entities: - - uid: 26041 + - uid: 25889 components: - type: Transform pos: -55.5,-46.5 parent: 2 - - uid: 26042 + - uid: 25890 components: - type: Transform pos: -49.5,-42.5 parent: 2 - - uid: 26043 + - uid: 25891 components: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 26044 + - uid: 25892 components: - type: Transform pos: -55.5,-42.5 parent: 2 - proto: PottedPlant15 entities: - - uid: 26045 + - uid: 25893 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 26046 + - uid: 25894 components: - type: Transform pos: -15.5,5.5 parent: 2 - - uid: 26047 + - uid: 25895 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 26048 + - uid: 25896 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 26049 + - uid: 25897 components: - type: Transform pos: 46.5,2.5 parent: 2 - - uid: 26050 + - uid: 25898 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 26051 + - uid: 25899 components: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 26052 + - uid: 25900 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 26053 + - uid: 25901 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 26054 + - uid: 25902 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 26055 + - uid: 25903 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 26056 + - uid: 25904 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 26057 + - uid: 25905 components: - type: Transform pos: 21.5,-52.5 parent: 2 - proto: PottedPlant21 entities: - - uid: 26058 + - uid: 25906 components: - type: Transform pos: 71.5,0.5 parent: 2 - proto: PottedPlant22 entities: - - uid: 26059 + - uid: 25907 components: - type: Transform pos: 91.50001,5.5000005 @@ -199561,34 +199639,34 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 26060 + ent: 25908 - proto: PottedPlantAlt2 entities: - - uid: 26061 + - uid: 25909 components: - type: Transform pos: 81.5,12.5 parent: 2 - proto: PottedPlantAlt4 entities: - - uid: 869 + - uid: 25910 components: - type: Transform pos: -63.83441,-23.085978 parent: 2 - - uid: 6746 + - uid: 25911 components: - type: Transform pos: -59.162537,-22.992228 parent: 2 - - uid: 26062 + - uid: 25912 components: - type: Transform pos: 81.5,14.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 25678 + - uid: 25531 components: - type: Transform pos: 8.5,-39.5 @@ -199598,170 +199676,170 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 25679 + ent: 25532 - proto: PottedPlantRandom entities: - - uid: 26063 + - uid: 25913 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 26064 + - uid: 25914 components: - type: Transform pos: 61.5,21.5 parent: 2 - - uid: 26065 + - uid: 25915 components: - type: Transform pos: 61.5,26.5 parent: 2 - - uid: 26066 + - uid: 25916 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 26067 + - uid: 25917 components: - type: Transform pos: -59.5,-45.5 parent: 2 - - uid: 26068 + - uid: 25918 components: - type: Transform pos: 97.5,0.5 parent: 2 - - uid: 26069 + - uid: 25919 components: - type: Transform pos: -33.5,-64.5 parent: 2 - - uid: 26070 + - uid: 25920 components: - type: Transform pos: -54.5,20.5 parent: 2 - - uid: 26071 + - uid: 25921 components: - type: Transform pos: 55.5,-27.5 parent: 2 - - uid: 26072 + - uid: 25922 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 26073 + - uid: 25923 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 26074 + - uid: 25924 components: - type: Transform pos: -8.5,3.5 parent: 2 - - uid: 26075 + - uid: 25925 components: - type: Transform pos: -34.5,50.5 parent: 2 - - uid: 26076 + - uid: 25926 components: - type: Transform pos: -5.5,34.5 parent: 2 - - uid: 26077 + - uid: 25927 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 26078 + - uid: 25928 components: - type: Transform pos: -4.5,28.5 parent: 2 - - uid: 26079 + - uid: 25929 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 26080 + - uid: 25930 components: - type: Transform pos: 63.5,-30.5 parent: 2 - - uid: 26081 + - uid: 25931 components: - type: Transform pos: -12.5,96.5 parent: 2 - - uid: 26082 + - uid: 25932 components: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 26083 + - uid: 25933 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 26084 + - uid: 25934 components: - type: Transform pos: -7.5,65.5 parent: 2 - - uid: 26085 + - uid: 25935 components: - type: Transform pos: -7.5,60.5 parent: 2 - - uid: 26086 + - uid: 25936 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 26087 + - uid: 25937 components: - type: Transform pos: -29.5,0.5 parent: 2 - - uid: 26088 + - uid: 25938 components: - type: Transform pos: -10.5,96.5 parent: 2 - - uid: 26089 + - uid: 25939 components: - type: Transform pos: -30.5,96.5 parent: 2 - - uid: 26090 + - uid: 25940 components: - type: Transform pos: -10.5,-5.5 parent: 2 - - uid: 26091 + - uid: 25941 components: - type: Transform pos: -22.5,-17.5 parent: 2 - - uid: 26092 + - uid: 25942 components: - type: Transform pos: -75.5,-2.5 parent: 2 - - uid: 26093 + - uid: 25943 components: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 26094 + - uid: 25944 components: - type: Transform pos: 2.5,33.5 parent: 2 - - uid: 26095 + - uid: 25945 components: - type: Transform pos: -14.5,-53.5 @@ -199769,7 +199847,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26096 + - uid: 25946 components: - type: Transform pos: -10.5,-70.5 @@ -199777,7 +199855,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26097 + - uid: 25947 components: - type: Transform pos: -21.5,-23.5 @@ -199785,7 +199863,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26098 + - uid: 25948 components: - type: Transform pos: 55.5,3.5 @@ -199793,27 +199871,27 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26099 + - uid: 25949 components: - type: Transform pos: 10.5,-46.5 parent: 2 - - uid: 26100 + - uid: 25950 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 26101 + - uid: 25951 components: - type: Transform pos: -27.5,-41.5 parent: 2 - - uid: 26102 + - uid: 25952 components: - type: Transform pos: 31.5,2.5 parent: 2 - - uid: 26103 + - uid: 25953 components: - type: Transform pos: -15.5,35.5 @@ -199821,7 +199899,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26104 + - uid: 25954 components: - type: Transform pos: -11.5,-35.5 @@ -199829,12 +199907,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26105 + - uid: 25955 components: - type: Transform pos: 10.5,-40.5 parent: 2 - - uid: 26106 + - uid: 25956 components: - type: Transform pos: -6.5,8.5 @@ -199842,7 +199920,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26107 + - uid: 25957 components: - type: Transform pos: -13.5,7.5 @@ -199850,7 +199928,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26108 + - uid: 25958 components: - type: Transform pos: -13.5,11.5 @@ -199858,7 +199936,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26109 + - uid: 25959 components: - type: Transform pos: 14.5,11.5 @@ -199866,7 +199944,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26110 + - uid: 25960 components: - type: Transform pos: 2.5,37.5 @@ -199874,7 +199952,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26111 + - uid: 25961 components: - type: Transform pos: 31.5,-10.5 @@ -199882,7 +199960,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26112 + - uid: 25962 components: - type: Transform pos: 31.5,-13.5 @@ -199890,22 +199968,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26113 + - uid: 25963 components: - type: Transform pos: 28.5,-31.5 parent: 2 - - uid: 26114 + - uid: 25964 components: - type: Transform pos: 18.5,-48.5 parent: 2 - - uid: 26115 + - uid: 25965 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 26116 + - uid: 25966 components: - type: Transform pos: 4.5,41.5 @@ -199913,7 +199991,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26117 + - uid: 25967 components: - type: Transform pos: -10.5,-63.5 @@ -199921,7 +199999,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26118 + - uid: 25968 components: - type: Transform pos: 44.5,-35.5 @@ -199929,7 +200007,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26119 + - uid: 25969 components: - type: Transform pos: -20.5,-67.5 @@ -199937,17 +200015,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26120 + - uid: 25970 components: - type: Transform pos: -8.5,52.5 parent: 2 - - uid: 26121 + - uid: 25971 components: - type: Transform pos: -7.5,-27.5 parent: 2 - - uid: 26122 + - uid: 25972 components: - type: Transform pos: -54.5,-7.5 @@ -199955,12 +200033,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26123 + - uid: 25973 components: - type: Transform pos: -22.5,19.5 parent: 2 - - uid: 26124 + - uid: 25974 components: - type: Transform pos: 34.5,-71.5 @@ -199968,7 +200046,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26125 + - uid: 25975 components: - type: Transform pos: 30.5,-69.5 @@ -199976,7 +200054,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26126 + - uid: 25976 components: - type: Transform pos: 29.5,-69.5 @@ -199984,12 +200062,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26127 + - uid: 25977 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 26128 + - uid: 25978 components: - type: Transform pos: 34.5,-16.5 @@ -199997,7 +200075,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26129 + - uid: 25979 components: - type: Transform pos: 6.5,-27.5 @@ -200005,12 +200083,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26130 + - uid: 25980 components: - type: Transform pos: -1.5,46.5 parent: 2 - - uid: 26131 + - uid: 25981 components: - type: Transform pos: -10.5,-64.5 @@ -200018,7 +200096,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26132 + - uid: 25982 components: - type: Transform pos: -20.5,39.5 @@ -200026,7 +200104,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26133 + - uid: 25983 components: - type: Transform pos: -34.5,8.5 @@ -200034,7 +200112,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26134 + - uid: 25984 components: - type: Transform pos: -10.5,-75.5 @@ -200042,7 +200120,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26135 + - uid: 25985 components: - type: Transform pos: 11.5,16.5 @@ -200050,7 +200128,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26136 + - uid: 25986 components: - type: Transform pos: 20.5,-44.5 @@ -200058,7 +200136,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26137 + - uid: 25987 components: - type: Transform pos: 24.5,-44.5 @@ -200066,7 +200144,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26138 + - uid: 25988 components: - type: Transform pos: -9.5,15.5 @@ -200074,7 +200152,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26139 + - uid: 25989 components: - type: Transform pos: 8.5,15.5 @@ -200082,7 +200160,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26140 + - uid: 25990 components: - type: Transform pos: 14.5,2.5 @@ -200090,7 +200168,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26141 + - uid: 25991 components: - type: Transform pos: -20.5,43.5 @@ -200098,7 +200176,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26142 + - uid: 25992 components: - type: Transform pos: 8.5,-22.5 @@ -200106,7 +200184,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26143 + - uid: 25993 components: - type: Transform pos: 2.5,-42.5 @@ -200114,7 +200192,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26144 + - uid: 25994 components: - type: Transform pos: -38.5,-14.5 @@ -200122,7 +200200,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26145 + - uid: 25995 components: - type: Transform pos: -75.5,11.5 @@ -200130,7 +200208,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26146 + - uid: 25996 components: - type: Transform pos: -12.5,16.5 @@ -200138,7 +200216,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26147 + - uid: 25997 components: - type: Transform pos: -58.5,-17.5 @@ -200146,7 +200224,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26148 + - uid: 25998 components: - type: Transform pos: -31.5,-15.5 @@ -200154,7 +200232,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26149 + - uid: 25999 components: - type: Transform pos: -34.5,-13.5 @@ -200162,7 +200240,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26150 + - uid: 26000 components: - type: Transform pos: 26.5,-57.5 @@ -200170,7 +200248,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26151 + - uid: 26001 components: - type: Transform pos: 9.5,-16.5 @@ -200178,7 +200256,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26152 + - uid: 26002 components: - type: Transform pos: 11.5,42.5 @@ -200186,7 +200264,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26153 + - uid: 26003 components: - type: Transform pos: 11.5,34.5 @@ -200194,7 +200272,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26154 + - uid: 26004 components: - type: Transform pos: -60.5,11.5 @@ -200202,7 +200280,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26155 + - uid: 26005 components: - type: Transform pos: 24.5,-13.5 @@ -200210,7 +200288,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26156 + - uid: 26006 components: - type: Transform pos: 43.5,-31.5 @@ -200218,7 +200296,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26157 + - uid: 26007 components: - type: Transform pos: -12.5,-75.5 @@ -200226,7 +200304,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26158 + - uid: 26008 components: - type: Transform pos: 28.5,-54.5 @@ -200234,7 +200312,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26159 + - uid: 26009 components: - type: Transform pos: 26.5,-52.5 @@ -200242,7 +200320,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26160 + - uid: 26010 components: - type: Transform pos: -58.5,15.5 @@ -200250,7 +200328,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26161 + - uid: 26011 components: - type: Transform pos: 43.5,-19.5 @@ -200258,7 +200336,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26162 + - uid: 26012 components: - type: Transform pos: 19.5,72.5 @@ -200266,7 +200344,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26163 + - uid: 26013 components: - type: Transform pos: -65.5,16.5 @@ -200274,7 +200352,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26164 + - uid: 26014 components: - type: Transform pos: -62.5,16.5 @@ -200282,7 +200360,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26165 + - uid: 26015 components: - type: Transform pos: -22.5,-63.5 @@ -200290,7 +200368,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26166 + - uid: 26016 components: - type: Transform pos: 3.5,63.5 @@ -200298,7 +200376,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26167 + - uid: 26017 components: - type: Transform pos: -49.5,-11.5 @@ -200306,7 +200384,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26168 + - uid: 26018 components: - type: Transform pos: -25.5,19.5 @@ -200314,7 +200392,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26169 + - uid: 26019 components: - type: Transform pos: -49.5,17.5 @@ -200322,7 +200400,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26170 + - uid: 26020 components: - type: Transform pos: -45.5,19.5 @@ -200330,7 +200408,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26171 + - uid: 26021 components: - type: Transform pos: -15.5,16.5 @@ -200338,7 +200416,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26172 + - uid: 26022 components: - type: Transform pos: -15.5,13.5 @@ -200346,7 +200424,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26173 + - uid: 26023 components: - type: Transform pos: -44.5,-29.5 @@ -200354,7 +200432,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26174 + - uid: 26024 components: - type: Transform pos: 41.5,-59.5 @@ -200362,7 +200440,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26175 + - uid: 26025 components: - type: Transform pos: -4.5,-33.5 @@ -200370,12 +200448,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26176 + - uid: 26026 components: - type: Transform pos: -39.5,63.5 parent: 2 - - uid: 26177 + - uid: 26027 components: - type: Transform pos: 23.5,72.5 @@ -200383,7 +200461,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26178 + - uid: 26028 components: - type: Transform pos: 40.5,-20.5 @@ -200391,7 +200469,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26179 + - uid: 26029 components: - type: Transform pos: -59.5,44.5 @@ -200399,7 +200477,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26180 + - uid: 26030 components: - type: Transform pos: -45.5,44.5 @@ -200407,7 +200485,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26181 + - uid: 26031 components: - type: Transform pos: -51.5,44.5 @@ -200415,7 +200493,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26182 + - uid: 26032 components: - type: Transform pos: -58.5,7.5 @@ -200423,7 +200501,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26183 + - uid: 26033 components: - type: Transform pos: 44.5,-54.5 @@ -200431,7 +200509,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26184 + - uid: 26034 components: - type: Transform pos: 41.5,-55.5 @@ -200439,7 +200517,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26185 + - uid: 26035 components: - type: Transform pos: 53.5,-52.5 @@ -200447,7 +200525,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26186 + - uid: 26036 components: - type: Transform pos: -22.5,-64.5 @@ -200455,7 +200533,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26187 + - uid: 26037 components: - type: Transform pos: 2.5,-63.5 @@ -200463,17 +200541,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26188 + - uid: 26038 components: - type: Transform pos: 29.5,-6.5 parent: 2 - - uid: 26189 + - uid: 26039 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 26190 + - uid: 26040 components: - type: Transform pos: 39.5,17.5 @@ -200481,12 +200559,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26191 + - uid: 26041 components: - type: Transform pos: 91.5,12.5 parent: 2 - - uid: 26192 + - uid: 26042 components: - type: Transform pos: -38.5,14.5 @@ -200494,7 +200572,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26193 + - uid: 26043 components: - type: Transform pos: -36.5,16.5 @@ -200502,7 +200580,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26194 + - uid: 26044 components: - type: Transform pos: -32.5,10.5 @@ -200510,7 +200588,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26195 + - uid: 26045 components: - type: Transform pos: -16.5,53.5 @@ -200518,12 +200596,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26196 + - uid: 26046 components: - type: Transform pos: -6.5,36.5 parent: 2 - - uid: 26197 + - uid: 26047 components: - type: Transform pos: -2.5,-54.5 @@ -200531,12 +200609,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26198 + - uid: 26048 components: - type: Transform pos: 27.5,42.5 parent: 2 - - uid: 26199 + - uid: 26049 components: - type: Transform pos: -2.5,-57.5 @@ -200544,7 +200622,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26200 + - uid: 26050 components: - type: Transform pos: -32.5,14.5 @@ -200552,22 +200630,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26201 + - uid: 26051 components: - type: Transform pos: 47.5,-23.5 parent: 2 - - uid: 26202 + - uid: 26052 components: - type: Transform pos: 59.5,-0.5 parent: 2 - - uid: 26203 + - uid: 26053 components: - type: Transform pos: 74.5,8.5 parent: 2 - - uid: 26204 + - uid: 26054 components: - type: Transform pos: 35.5,-1.5 @@ -200575,7 +200653,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26205 + - uid: 26055 components: - type: Transform pos: -49.5,-17.5 @@ -200583,7 +200661,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26206 + - uid: 26056 components: - type: Transform pos: 36.5,-59.5 @@ -200591,17 +200669,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26207 + - uid: 26057 components: - type: Transform pos: 45.5,-25.5 parent: 2 - - uid: 26208 + - uid: 26058 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 26209 + - uid: 26059 components: - type: Transform pos: -36.5,8.5 @@ -200609,7 +200687,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26210 + - uid: 26060 components: - type: Transform pos: 26.5,-54.5 @@ -200617,12 +200695,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26211 + - uid: 26061 components: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 26212 + - uid: 26062 components: - type: Transform pos: -20.5,53.5 @@ -200630,22 +200708,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26213 + - uid: 26063 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 26214 + - uid: 26064 components: - type: Transform pos: -2.5,36.5 parent: 2 - - uid: 26215 + - uid: 26065 components: - type: Transform pos: 27.5,-6.5 parent: 2 - - uid: 26216 + - uid: 26066 components: - type: Transform pos: 45.5,-49.5 @@ -200653,7 +200731,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26217 + - uid: 26067 components: - type: Transform pos: 5.5,31.5 @@ -200661,17 +200739,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26218 + - uid: 26068 components: - type: Transform pos: 49.5,-25.5 parent: 2 - - uid: 26219 + - uid: 26069 components: - type: Transform pos: 38.5,-35.5 parent: 2 - - uid: 26220 + - uid: 26070 components: - type: Transform pos: 16.5,-23.5 @@ -200679,7 +200757,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26221 + - uid: 26071 components: - type: Transform pos: 34.5,-59.5 @@ -200687,12 +200765,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26222 + - uid: 26072 components: - type: Transform pos: 11.5,0.5 parent: 2 - - uid: 26223 + - uid: 26073 components: - type: Transform pos: -21.5,13.5 @@ -200700,7 +200778,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26224 + - uid: 26074 components: - type: Transform pos: -28.5,19.5 @@ -200708,22 +200786,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26225 + - uid: 26075 components: - type: Transform pos: 50.5,21.5 parent: 2 - - uid: 26226 + - uid: 26076 components: - type: Transform pos: -4.5,52.5 parent: 2 - - uid: 26227 + - uid: 26077 components: - type: Transform pos: -11.5,-27.5 parent: 2 - - uid: 26228 + - uid: 26078 components: - type: Transform pos: -12.5,-74.5 @@ -200731,7 +200809,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26229 + - uid: 26079 components: - type: Transform pos: -16.5,39.5 @@ -200739,12 +200817,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26230 + - uid: 26080 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 26231 + - uid: 26081 components: - type: Transform pos: -21.5,10.5 @@ -200752,7 +200830,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26232 + - uid: 26082 components: - type: Transform pos: 35.5,-59.5 @@ -200760,7 +200838,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26233 + - uid: 26083 components: - type: Transform pos: -16.5,43.5 @@ -200768,7 +200846,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26234 + - uid: 26084 components: - type: Transform pos: -7.5,-57.5 @@ -200776,12 +200854,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26235 + - uid: 26085 components: - type: Transform pos: -28.5,96.5 parent: 2 - - uid: 26236 + - uid: 26086 components: - type: Transform pos: -20.5,-79.5 @@ -200789,7 +200867,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26237 + - uid: 26087 components: - type: Transform pos: -34.5,16.5 @@ -200797,7 +200875,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26238 + - uid: 26088 components: - type: Transform pos: -58.5,9.5 @@ -200805,12 +200883,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26239 + - uid: 26089 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 26240 + - uid: 26090 components: - type: Transform pos: 53.5,-23.5 @@ -200818,7 +200896,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26241 + - uid: 26091 components: - type: Transform pos: -65.5,5.5 @@ -200826,7 +200904,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26242 + - uid: 26092 components: - type: Transform pos: 7.5,62.5 @@ -200834,7 +200912,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26243 + - uid: 26093 components: - type: Transform pos: -12.5,-78.5 @@ -200842,7 +200920,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26244 + - uid: 26094 components: - type: Transform pos: -44.5,-25.5 @@ -200850,7 +200928,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26245 + - uid: 26095 components: - type: Transform pos: 30.5,-65.5 @@ -200858,7 +200936,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26246 + - uid: 26096 components: - type: Transform pos: -12.5,-67.5 @@ -200866,7 +200944,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26247 + - uid: 26097 components: - type: Transform pos: -2.5,-35.5 @@ -200874,12 +200952,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26248 + - uid: 26098 components: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 26249 + - uid: 26099 components: - type: Transform pos: 10.5,-27.5 @@ -200887,7 +200965,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26250 + - uid: 26100 components: - type: Transform pos: -38.5,10.5 @@ -200895,7 +200973,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26251 + - uid: 26101 components: - type: Transform pos: -23.5,8.5 @@ -200903,7 +200981,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26252 + - uid: 26102 components: - type: Transform pos: 49.5,-35.5 @@ -200911,22 +200989,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26253 + - uid: 26103 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 26254 + - uid: 26104 components: - type: Transform pos: -42.5,4.5 parent: 2 - - uid: 26255 + - uid: 26105 components: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 26256 + - uid: 26106 components: - type: Transform pos: -26.5,8.5 @@ -200934,7 +201012,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26257 + - uid: 26107 components: - type: Transform pos: -17.5,-64.5 @@ -200942,7 +201020,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26258 + - uid: 26108 components: - type: Transform pos: -27.5,-13.5 @@ -200950,7 +201028,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26259 + - uid: 26109 components: - type: Transform pos: -67.5,16.5 @@ -200958,7 +201036,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26260 + - uid: 26110 components: - type: Transform pos: 28.5,8.5 @@ -200966,7 +201044,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26261 + - uid: 26111 components: - type: Transform pos: -38.5,-16.5 @@ -200974,12 +201052,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26262 + - uid: 26112 components: - type: Transform pos: -4.5,-16.5 parent: 2 - - uid: 26263 + - uid: 26113 components: - type: Transform pos: 40.5,-16.5 @@ -200987,7 +201065,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26264 + - uid: 26114 components: - type: Transform pos: 53.5,-16.5 @@ -200995,7 +201073,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26265 + - uid: 26115 components: - type: Transform pos: 20.5,-0.5 @@ -201003,7 +201081,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26266 + - uid: 26116 components: - type: Transform pos: 49.5,-31.5 @@ -201011,7 +201089,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26267 + - uid: 26117 components: - type: Transform pos: -56.5,18.5 @@ -201019,7 +201097,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26268 + - uid: 26118 components: - type: Transform pos: -77.5,16.5 @@ -201027,7 +201105,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26269 + - uid: 26119 components: - type: Transform pos: -72.5,16.5 @@ -201035,7 +201113,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26270 + - uid: 26120 components: - type: Transform pos: -15.5,60.5 @@ -201043,17 +201121,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26271 + - uid: 26121 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 26272 + - uid: 26122 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - uid: 26273 + - uid: 26123 components: - type: Transform pos: 42.5,-55.5 @@ -201061,12 +201139,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26274 + - uid: 26124 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 26275 + - uid: 26125 components: - type: Transform pos: -15.5,-64.5 @@ -201074,7 +201152,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26276 + - uid: 26126 components: - type: Transform pos: -60.5,4.5 @@ -201082,311 +201160,311 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26277 + - uid: 26127 components: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 26278 + - uid: 26128 components: - type: Transform pos: 74.5,12.5 parent: 2 - - uid: 26279 + - uid: 26129 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 26280 + - uid: 26130 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 26281 + - uid: 26131 components: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 26282 + - uid: 26132 components: - type: Transform pos: 51.5,-24.5 parent: 2 - - uid: 26283 + - uid: 26133 components: - type: Transform pos: 53.5,-13.5 parent: 2 - - uid: 26284 + - uid: 26134 components: - type: Transform pos: 38.5,-41.5 parent: 2 - - uid: 26285 + - uid: 26135 components: - type: Transform pos: -75.5,-3.5 parent: 2 - - uid: 26286 + - uid: 26136 components: - type: Transform pos: 91.5,23.5 parent: 2 - - uid: 26287 + - uid: 26137 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 26288 + - uid: 26138 components: - type: Transform pos: 59.5,21.5 parent: 2 - - uid: 26289 + - uid: 26139 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 26290 + - uid: 26140 components: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 26291 + - uid: 26141 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 26292 + - uid: 26142 components: - type: Transform pos: -15.5,65.5 parent: 2 - - uid: 26293 + - uid: 26143 components: - type: Transform pos: 55.5,-11.5 parent: 2 - - uid: 26294 + - uid: 26144 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 26295 + - uid: 26145 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 26296 + - uid: 26146 components: - type: Transform pos: -27.5,65.5 parent: 2 - - uid: 26297 + - uid: 26147 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 26298 + - uid: 26148 components: - type: Transform pos: 98.5,14.5 parent: 2 - - uid: 26299 + - uid: 26149 components: - type: Transform pos: 76.5,2.5 parent: 2 - - uid: 26300 + - uid: 26150 components: - type: Transform pos: 76.5,0.5 parent: 2 - - uid: 26301 + - uid: 26151 components: - type: Transform pos: -71.5,-41.5 parent: 2 - - uid: 26302 + - uid: 26152 components: - type: Transform pos: 41.5,-6.5 parent: 2 - - uid: 26303 + - uid: 26153 components: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 26304 + - uid: 26154 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 26305 + - uid: 26155 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 26306 + - uid: 26156 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 26307 + - uid: 26157 components: - type: Transform pos: 58.5,32.5 parent: 2 - - uid: 26308 + - uid: 26158 components: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 26309 + - uid: 26159 components: - type: Transform pos: 17.5,32.5 parent: 2 - - uid: 26310 + - uid: 26160 components: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 26311 + - uid: 26161 components: - type: Transform pos: 12.5,27.5 parent: 2 - - uid: 26312 + - uid: 26162 components: - type: Transform pos: 20.5,21.5 parent: 2 - - uid: 26313 + - uid: 26163 components: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 39539 + - uid: 39366 components: - type: Transform pos: -19.5,32.5 - parent: 38584 - - uid: 39540 + parent: 38411 + - uid: 39367 components: - type: Transform pos: -10.5,-1.5 - parent: 38584 - - uid: 39541 + parent: 38411 + - uid: 39368 components: - type: Transform pos: -14.5,-1.5 - parent: 38584 - - uid: 39542 + parent: 38411 + - uid: 39369 components: - type: Transform pos: -17.5,-7.5 - parent: 38584 - - uid: 39543 + parent: 38411 + - uid: 39370 components: - type: Transform pos: 3.5,-1.5 - parent: 38584 - - uid: 39544 + parent: 38411 + - uid: 39371 components: - type: Transform pos: -22.5,4.5 - parent: 38584 - - uid: 39545 + parent: 38411 + - uid: 39372 components: - type: Transform pos: -22.5,6.5 - parent: 38584 - - uid: 39546 + parent: 38411 + - uid: 39373 components: - type: Transform pos: -13.5,10.5 - parent: 38584 - - uid: 39547 + parent: 38411 + - uid: 39374 components: - type: Transform pos: -11.5,10.5 - parent: 38584 - - uid: 39548 + parent: 38411 + - uid: 39375 components: - type: Transform pos: -2.5,-5.5 - parent: 38584 - - uid: 39549 + parent: 38411 + - uid: 39376 components: - type: Transform pos: -6.5,-3.5 - parent: 38584 - - uid: 39550 + parent: 38411 + - uid: 39377 components: - type: Transform pos: -7.5,0.5 - parent: 38584 - - uid: 39551 + parent: 38411 + - uid: 39378 components: - type: Transform pos: 5.5,0.5 - parent: 38584 + parent: 38411 - proto: PottedPlantRandomPlastic entities: - - uid: 26314 + - uid: 26164 components: - type: Transform pos: 48.5,-2.5 parent: 2 - - uid: 26315 + - uid: 26165 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 26316 + - uid: 26166 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 26317 + - uid: 26167 components: - type: Transform pos: -41.5,-53.5 parent: 2 - - uid: 26318 + - uid: 26168 components: - type: Transform pos: 55.5,-2.5 parent: 2 - - uid: 26319 + - uid: 26169 components: - type: Transform pos: 48.5,-4.5 parent: 2 - - uid: 26320 + - uid: 26170 components: - type: Transform pos: 55.5,-4.5 parent: 2 - - uid: 26321 + - uid: 26171 components: - type: Transform pos: 46.5,-8.5 parent: 2 - - uid: 26322 + - uid: 26172 components: - type: Transform pos: 46.5,-6.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 26323 + - uid: 26173 components: - type: Transform pos: -20.5,-40.5 parent: 2 - - uid: 26324 + - uid: 26174 components: - type: MetaData desc: Выглядит не очень здоровым... @@ -201396,32 +201474,32 @@ entities: parent: 2 - proto: PowerCageHighEmpty entities: - - uid: 39552 + - uid: 39379 components: - type: Transform pos: 10.0045595,21.720764 - parent: 38584 - - uid: 39553 + parent: 38411 + - uid: 39380 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.64746,22.502472 - parent: 38584 + parent: 38411 - proto: PowerCellHigh entities: - - uid: 26325 + - uid: 26175 components: - type: Transform pos: -48.422817,29.613514 parent: 2 - - uid: 26326 + - uid: 26176 components: - type: Transform pos: 27.5,-69.5 parent: 2 - proto: PowerCellRecharger entities: - - uid: 26327 + - uid: 26177 components: - type: Transform pos: -10.5,-27.5 @@ -201446,17 +201524,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26328 + - uid: 26178 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 26329 + - uid: 26179 components: - type: Transform pos: 8.5,-60.5 parent: 2 - - uid: 26330 + - uid: 26180 components: - type: Transform pos: -45.5,-12.5 @@ -201481,13 +201559,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26331 + - uid: 26181 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-40.5 parent: 2 - - uid: 26332 + - uid: 26182 components: - type: Transform pos: -47.5,-29.5 @@ -201512,7 +201590,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26333 + - uid: 26183 components: - type: Transform pos: -60.5,13.5 @@ -201537,13 +201615,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26334 + - uid: 26184 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 - - uid: 26335 + - uid: 26185 components: - type: Transform pos: 11.5,-3.5 @@ -201574,7 +201652,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26336 + - uid: 26186 components: - type: Transform pos: -50.5,-9.5 @@ -201599,18 +201677,18 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26337 + - uid: 26187 components: - type: Transform pos: 38.5,-63.5 parent: 2 - - uid: 26338 + - uid: 26188 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-55.5 parent: 2 - - uid: 26339 + - uid: 26189 components: - type: Transform pos: -22.5,8.5 @@ -201637,7 +201715,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26340 + - uid: 26190 components: - type: Transform pos: 10.5,46.5 @@ -201662,7 +201740,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26341 + - uid: 26191 components: - type: Transform pos: -55.5,9.5 @@ -201687,7 +201765,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26342 + - uid: 26192 components: - type: Transform pos: 7.5,-16.5 @@ -201712,7 +201790,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26343 + - uid: 26193 components: - type: Transform pos: -4.5,12.5 @@ -201743,7 +201821,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26344 + - uid: 26194 components: - type: Transform pos: -53.5,35.5 @@ -201770,7 +201848,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26345 + - uid: 26195 components: - type: Transform pos: -38.5,13.5 @@ -201797,7 +201875,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26346 + - uid: 26196 components: - type: Transform pos: 43.5,-44.5 @@ -201822,7 +201900,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26347 + - uid: 26197 components: - type: Transform pos: -9.5,-35.5 @@ -201847,145 +201925,145 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26348 + - uid: 26198 components: - type: Transform pos: 7.5,90.5 parent: 2 - - uid: 26349 + - uid: 26199 components: - type: Transform pos: 7.5,65.5 parent: 2 - - uid: 26350 + - uid: 26200 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 - - uid: 26351 + - uid: 26201 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-31.5 parent: 2 - - uid: 26352 + - uid: 26202 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-45.5 parent: 2 - - uid: 26353 + - uid: 26203 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-48.5 parent: 2 - - uid: 26354 + - uid: 26204 components: - type: Transform pos: 75.5,-41.5 parent: 2 - - uid: 26355 + - uid: 26205 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,23.5 parent: 2 - - uid: 26356 + - uid: 26206 components: - type: Transform pos: 36.5,37.5 parent: 2 - - uid: 26357 + - uid: 26207 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 39554 + - uid: 39381 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 38584 + parent: 38411 - proto: PowerCellSmall entities: - - uid: 26358 + - uid: 26208 components: - type: Transform pos: 12.279408,82.24263 parent: 2 - - uid: 26359 + - uid: 26209 components: - type: Transform pos: 16.412798,54.560455 parent: 2 - type: Physics canCollide: False - - uid: 26360 + - uid: 26210 components: - type: Transform pos: -50.5,-9.5 parent: 2 - type: Physics canCollide: False - - uid: 26361 + - uid: 26211 components: - type: Transform pos: 43.575706,-44.36233 parent: 2 - type: Physics canCollide: False - - uid: 26362 + - uid: 26212 components: - type: Transform pos: 9.637667,-3.4686117 parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 26363 + - uid: 26213 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,29.5 parent: 2 - - uid: 26364 + - uid: 26214 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,33.5 parent: 2 - - uid: 26365 + - uid: 26215 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,37.5 parent: 2 - - uid: 26366 + - uid: 26216 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,41.5 parent: 2 - - uid: 26367 + - uid: 26217 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,45.5 parent: 2 - - uid: 26368 + - uid: 26218 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,49.5 parent: 2 - - uid: 26369 + - uid: 26219 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 26370 + - uid: 26220 components: - type: Transform rot: 3.141592653589793 rad @@ -201993,194 +202071,194 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 26371 + - uid: 26221 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-8.5 parent: 2 - - uid: 26372 + - uid: 26222 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-6.5 parent: 2 - - uid: 26373 + - uid: 26223 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,21.5 parent: 2 - - uid: 26374 + - uid: 26224 components: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 26375 + - uid: 26225 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 - - uid: 26376 + - uid: 26226 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,31.5 parent: 2 - - uid: 26377 + - uid: 26227 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,31.5 parent: 2 - - uid: 26378 + - uid: 26228 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,29.5 parent: 2 - - uid: 26379 + - uid: 26229 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 2 - - uid: 26380 + - uid: 26230 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,54.5 parent: 2 - - uid: 26381 + - uid: 26231 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 - - uid: 26382 + - uid: 26232 components: - type: Transform pos: -64.5,56.5 parent: 2 - - uid: 26383 + - uid: 26233 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 - - uid: 26384 + - uid: 26234 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 26385 + - uid: 26235 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,63.5 parent: 2 - - uid: 26386 + - uid: 26236 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,72.5 parent: 2 - - uid: 26387 + - uid: 26237 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,93.5 parent: 2 - - uid: 26388 + - uid: 26238 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,87.5 parent: 2 - - uid: 26389 + - uid: 26239 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,59.5 parent: 2 - - uid: 26390 + - uid: 26240 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,31.5 parent: 2 - - uid: 26391 + - uid: 26241 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-64.5 parent: 2 - - uid: 26392 + - uid: 26242 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 26393 + - uid: 26243 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-64.5 parent: 2 - - uid: 26394 + - uid: 26244 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,26.5 parent: 2 - - uid: 26395 + - uid: 26245 components: - type: Transform pos: -8.5,58.5 parent: 2 - - uid: 26396 + - uid: 26246 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 - - uid: 26397 + - uid: 26247 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,67.5 parent: 2 - - uid: 26398 + - uid: 26248 components: - type: Transform pos: -14.5,58.5 parent: 2 - - uid: 26399 + - uid: 26249 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,3.5 parent: 2 - - uid: 26400 + - uid: 26250 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,66.5 parent: 2 - - uid: 26401 + - uid: 26251 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,59.5 parent: 2 - - uid: 26402 + - uid: 26252 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 - - uid: 26403 + - uid: 26253 components: - type: Transform rot: 3.141592653589793 rad @@ -202188,14 +202266,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26404 + - uid: 26254 components: - type: Transform pos: -8.5,-18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26405 + - uid: 26255 components: - type: Transform rot: 3.141592653589793 rad @@ -202203,7 +202281,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26406 + - uid: 26256 components: - type: Transform rot: 1.5707963267948966 rad @@ -202211,7 +202289,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26407 + - uid: 26257 components: - type: Transform rot: -1.5707963267948966 rad @@ -202219,7 +202297,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26408 + - uid: 26258 components: - type: Transform rot: 1.5707963267948966 rad @@ -202227,7 +202305,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26409 + - uid: 26259 components: - type: Transform rot: 1.5707963267948966 rad @@ -202235,7 +202313,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26410 + - uid: 26260 components: - type: Transform rot: 1.5707963267948966 rad @@ -202243,13 +202321,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26411 + - uid: 26261 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-46.5 parent: 2 - - uid: 26412 + - uid: 26262 components: - type: Transform rot: 1.5707963267948966 rad @@ -202257,20 +202335,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26413 + - uid: 26263 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-5.5 parent: 2 - - uid: 26414 + - uid: 26264 components: - type: Transform pos: -58.5,20.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26415 + - uid: 26265 components: - type: Transform rot: -1.5707963267948966 rad @@ -202278,7 +202356,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26416 + - uid: 26266 components: - type: Transform rot: 1.5707963267948966 rad @@ -202286,7 +202364,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26417 + - uid: 26267 components: - type: Transform rot: 3.141592653589793 rad @@ -202294,7 +202372,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26418 + - uid: 26268 components: - type: Transform rot: 1.5707963267948966 rad @@ -202302,7 +202380,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26419 + - uid: 26269 components: - type: Transform rot: 1.5707963267948966 rad @@ -202310,7 +202388,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26420 + - uid: 26270 components: - type: Transform rot: 1.5707963267948966 rad @@ -202318,7 +202396,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26421 + - uid: 26271 components: - type: Transform rot: 1.5707963267948966 rad @@ -202326,7 +202404,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26422 + - uid: 26272 components: - type: Transform rot: 3.141592653589793 rad @@ -202334,7 +202412,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26423 + - uid: 26273 components: - type: Transform rot: 3.141592653589793 rad @@ -202342,20 +202420,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26424 + - uid: 26274 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,14.5 parent: 2 - - uid: 26425 + - uid: 26275 components: - type: Transform pos: -50.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26426 + - uid: 26276 components: - type: Transform rot: 1.5707963267948966 rad @@ -202363,7 +202441,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26427 + - uid: 26277 components: - type: Transform rot: 1.5707963267948966 rad @@ -202371,21 +202449,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26428 + - uid: 26278 components: - type: Transform pos: -2.5,24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26429 + - uid: 26279 components: - type: Transform pos: -20.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26430 + - uid: 26280 components: - type: Transform rot: -1.5707963267948966 rad @@ -202393,30 +202471,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26431 + - uid: 26281 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,29.5 parent: 2 - - uid: 26432 + - uid: 26282 components: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 26433 + - uid: 26283 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-41.5 parent: 2 - - uid: 26434 + - uid: 26284 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,5.5 parent: 2 - - uid: 26435 + - uid: 26285 components: - type: Transform rot: 3.141592653589793 rad @@ -202424,7 +202502,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26436 + - uid: 26286 components: - type: Transform rot: -1.5707963267948966 rad @@ -202432,18 +202510,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26437 + - uid: 26287 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-14.5 parent: 2 - - uid: 26438 + - uid: 26288 components: - type: Transform pos: 28.5,-24.5 parent: 2 - - uid: 26439 + - uid: 26289 components: - type: Transform rot: 3.141592653589793 rad @@ -202451,28 +202529,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26440 + - uid: 26290 components: - type: Transform pos: 53.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26441 + - uid: 26291 components: - type: Transform pos: 57.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26442 + - uid: 26292 components: - type: Transform pos: 50.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26443 + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad @@ -202480,7 +202558,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26444 + - uid: 26294 components: - type: Transform rot: -1.5707963267948966 rad @@ -202488,14 +202566,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26445 + - uid: 26295 components: - type: Transform pos: 5.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26446 + - uid: 26296 components: - type: Transform rot: 3.141592653589793 rad @@ -202503,7 +202581,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26447 + - uid: 26297 components: - type: Transform rot: 1.5707963267948966 rad @@ -202511,7 +202589,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26448 + - uid: 26298 components: - type: Transform rot: 3.141592653589793 rad @@ -202519,29 +202597,29 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26449 + - uid: 26299 components: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 26450 + - uid: 26300 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 - - uid: 26451 + - uid: 26301 components: - type: Transform pos: 29.5,52.5 parent: 2 - - uid: 26452 + - uid: 26302 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,48.5 parent: 2 - - uid: 26453 + - uid: 26303 components: - type: Transform rot: -1.5707963267948966 rad @@ -202549,14 +202627,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26454 + - uid: 26304 components: - type: Transform pos: 46.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26455 + - uid: 26305 components: - type: Transform rot: -1.5707963267948966 rad @@ -202564,12 +202642,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26456 + - uid: 26306 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 26457 + - uid: 26307 components: - type: Transform rot: 1.5707963267948966 rad @@ -202577,13 +202655,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26458 + - uid: 26308 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,48.5 parent: 2 - - uid: 26459 + - uid: 26309 components: - type: Transform rot: 3.141592653589793 rad @@ -202591,7 +202669,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26460 + - uid: 26310 components: - type: Transform rot: 3.141592653589793 rad @@ -202599,14 +202677,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26461 + - uid: 26311 components: - type: Transform pos: -18.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26462 + - uid: 26312 components: - type: Transform rot: 1.5707963267948966 rad @@ -202614,7 +202692,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26463 + - uid: 26313 components: - type: Transform rot: 3.141592653589793 rad @@ -202622,7 +202700,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26464 + - uid: 26314 components: - type: Transform rot: 3.141592653589793 rad @@ -202630,7 +202708,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26465 + - uid: 26315 components: - type: Transform rot: 1.5707963267948966 rad @@ -202638,7 +202716,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26466 + - uid: 26316 components: - type: Transform rot: 3.141592653589793 rad @@ -202647,14 +202725,14 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26467 + - uid: 26317 components: - type: Transform pos: -45.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26468 + - uid: 26318 components: - type: Transform rot: -1.5707963267948966 rad @@ -202662,7 +202740,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26469 + - uid: 26319 components: - type: Transform rot: 3.141592653589793 rad @@ -202670,26 +202748,26 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26470 + - uid: 26320 components: - type: Transform pos: 35.5,52.5 parent: 2 - - uid: 26471 + - uid: 26321 components: - type: Transform pos: 72.5,19.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26472 + - uid: 26322 components: - type: Transform pos: -6.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26473 + - uid: 26323 components: - type: Transform rot: 3.141592653589793 rad @@ -202697,24 +202775,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26474 + - uid: 26324 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 26475 + - uid: 26325 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 - - uid: 26476 + - uid: 26326 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-59.5 parent: 2 - - uid: 26477 + - uid: 26327 components: - type: Transform rot: 1.5707963267948966 rad @@ -202722,7 +202800,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26478 + - uid: 26328 components: - type: Transform rot: -1.5707963267948966 rad @@ -202730,14 +202808,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26479 + - uid: 26329 components: - type: Transform pos: -13.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26480 + - uid: 26330 components: - type: Transform rot: -1.5707963267948966 rad @@ -202745,14 +202823,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26481 + - uid: 26331 components: - type: Transform pos: -7.5,-63.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26482 + - uid: 26332 components: - type: Transform rot: 3.141592653589793 rad @@ -202760,7 +202838,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26483 + - uid: 26333 components: - type: Transform rot: -1.5707963267948966 rad @@ -202768,7 +202846,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26484 + - uid: 26334 components: - type: Transform rot: 3.141592653589793 rad @@ -202776,19 +202854,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26485 + - uid: 26335 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,19.5 parent: 2 - - uid: 26486 + - uid: 26336 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,15.5 parent: 2 - - uid: 26487 + - uid: 26337 components: - type: Transform rot: 3.141592653589793 rad @@ -202796,30 +202874,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26488 + - uid: 26338 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 2 - - uid: 26489 + - uid: 26339 components: - type: Transform pos: -14.5,-64.5 parent: 2 - - uid: 26490 + - uid: 26340 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,24.5 parent: 2 - - uid: 26491 + - uid: 26341 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-39.5 parent: 2 - - uid: 26492 + - uid: 26342 components: - type: Transform rot: 3.141592653589793 rad @@ -202827,7 +202905,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26493 + - uid: 26343 components: - type: Transform rot: -1.5707963267948966 rad @@ -202835,7 +202913,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26494 + - uid: 26344 components: - type: Transform rot: 3.141592653589793 rad @@ -202843,14 +202921,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26495 + - uid: 26345 components: - type: Transform pos: -13.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26496 + - uid: 26346 components: - type: Transform rot: 1.5707963267948966 rad @@ -202858,21 +202936,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26497 + - uid: 26347 components: - type: Transform pos: -8.5,0.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26498 + - uid: 26348 components: - type: Transform pos: -14.5,-3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26499 + - uid: 26349 components: - type: Transform rot: 1.5707963267948966 rad @@ -202880,7 +202958,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26500 + - uid: 26350 components: - type: Transform rot: 3.141592653589793 rad @@ -202888,14 +202966,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26501 + - uid: 26351 components: - type: Transform pos: -18.5,-32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26502 + - uid: 26352 components: - type: Transform rot: 3.141592653589793 rad @@ -202903,7 +202981,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26503 + - uid: 26353 components: - type: Transform rot: -1.5707963267948966 rad @@ -202911,13 +202989,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26504 + - uid: 26354 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 - - uid: 26505 + - uid: 26355 components: - type: Transform rot: 1.5707963267948966 rad @@ -202925,14 +203003,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26506 + - uid: 26356 components: - type: Transform pos: -29.5,55.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26507 + - uid: 26357 components: - type: Transform rot: -1.5707963267948966 rad @@ -202940,7 +203018,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26508 + - uid: 26358 components: - type: Transform rot: 3.141592653589793 rad @@ -202948,14 +203026,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26509 + - uid: 26359 components: - type: Transform pos: 25.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26510 + - uid: 26360 components: - type: Transform rot: 1.5707963267948966 rad @@ -202963,25 +203041,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26511 + - uid: 26361 components: - type: Transform pos: 59.5,-9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26512 + - uid: 26362 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 26513 + - uid: 26363 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 26514 + - uid: 26364 components: - type: Transform rot: 3.141592653589793 rad @@ -202989,7 +203067,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26515 + - uid: 26365 components: - type: Transform rot: 1.5707963267948966 rad @@ -202997,7 +203075,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26516 + - uid: 26366 components: - type: Transform rot: 1.5707963267948966 rad @@ -203005,7 +203083,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26517 + - uid: 26367 components: - type: Transform rot: 1.5707963267948966 rad @@ -203013,7 +203091,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26518 + - uid: 26368 components: - type: Transform rot: -1.5707963267948966 rad @@ -203021,24 +203099,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26519 + - uid: 26369 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 26520 + - uid: 26370 components: - type: Transform pos: 28.5,2.5 parent: 2 - - uid: 26521 + - uid: 26371 components: - type: Transform pos: -51.5,-24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26522 + - uid: 26372 components: - type: Transform rot: 1.5707963267948966 rad @@ -203046,7 +203124,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26523 + - uid: 26373 components: - type: Transform rot: -1.5707963267948966 rad @@ -203054,14 +203132,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26524 + - uid: 26374 components: - type: Transform pos: -9.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26525 + - uid: 26375 components: - type: Transform rot: 1.5707963267948966 rad @@ -203069,7 +203147,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26526 + - uid: 26376 components: - type: Transform rot: 3.141592653589793 rad @@ -203077,14 +203155,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26527 + - uid: 26377 components: - type: Transform pos: 52.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26528 + - uid: 26378 components: - type: Transform rot: 1.5707963267948966 rad @@ -203092,7 +203170,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26529 + - uid: 26379 components: - type: Transform rot: -1.5707963267948966 rad @@ -203100,7 +203178,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26530 + - uid: 26380 components: - type: Transform rot: -1.5707963267948966 rad @@ -203108,7 +203186,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26531 + - uid: 26381 components: - type: Transform rot: 1.5707963267948966 rad @@ -203116,7 +203194,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26532 + - uid: 26382 components: - type: Transform rot: 1.5707963267948966 rad @@ -203124,21 +203202,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26533 + - uid: 26383 components: - type: Transform pos: 16.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26534 + - uid: 26384 components: - type: Transform pos: 22.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26535 + - uid: 26385 components: - type: Transform rot: 1.5707963267948966 rad @@ -203146,7 +203224,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26536 + - uid: 26386 components: - type: Transform rot: 3.141592653589793 rad @@ -203154,7 +203232,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26537 + - uid: 26387 components: - type: Transform rot: -1.5707963267948966 rad @@ -203162,14 +203240,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26538 + - uid: 26388 components: - type: Transform pos: -59.5,42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26539 + - uid: 26389 components: - type: Transform rot: 1.5707963267948966 rad @@ -203177,7 +203255,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26540 + - uid: 26390 components: - type: Transform rot: -1.5707963267948966 rad @@ -203185,12 +203263,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26541 + - uid: 26391 components: - type: Transform pos: 62.5,-2.5 parent: 2 - - uid: 26542 + - uid: 26392 components: - type: Transform rot: 3.141592653589793 rad @@ -203198,13 +203276,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26543 + - uid: 26393 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,52.5 parent: 2 - - uid: 26544 + - uid: 26394 components: - type: Transform rot: 1.5707963267948966 rad @@ -203212,7 +203290,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26545 + - uid: 26395 components: - type: Transform rot: -1.5707963267948966 rad @@ -203220,14 +203298,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26546 + - uid: 26396 components: - type: Transform pos: 10.5,46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26547 + - uid: 26397 components: - type: Transform rot: -1.5707963267948966 rad @@ -203235,7 +203313,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26548 + - uid: 26398 components: - type: Transform rot: -1.5707963267948966 rad @@ -203243,7 +203321,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26549 + - uid: 26399 components: - type: Transform rot: 3.141592653589793 rad @@ -203251,7 +203329,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26550 + - uid: 26400 components: - type: Transform rot: 1.5707963267948966 rad @@ -203259,7 +203337,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26551 + - uid: 26401 components: - type: Transform rot: 1.5707963267948966 rad @@ -203267,7 +203345,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26552 + - uid: 26402 components: - type: Transform rot: 1.5707963267948966 rad @@ -203275,7 +203353,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26553 + - uid: 26403 components: - type: Transform rot: 1.5707963267948966 rad @@ -203284,14 +203362,14 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26554 + - uid: 26404 components: - type: Transform pos: 5.5,-42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26555 + - uid: 26405 components: - type: Transform rot: 1.5707963267948966 rad @@ -203299,7 +203377,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26556 + - uid: 26406 components: - type: Transform rot: 3.141592653589793 rad @@ -203307,21 +203385,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26557 + - uid: 26407 components: - type: Transform pos: -21.5,-79.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26558 + - uid: 26408 components: - type: Transform pos: 9.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26559 + - uid: 26409 components: - type: Transform rot: 3.141592653589793 rad @@ -203329,7 +203407,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26560 + - uid: 26410 components: - type: Transform rot: 3.141592653589793 rad @@ -203337,7 +203415,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26561 + - uid: 26411 components: - type: Transform rot: 1.5707963267948966 rad @@ -203345,7 +203423,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26562 + - uid: 26412 components: - type: Transform rot: 1.5707963267948966 rad @@ -203353,7 +203431,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26563 + - uid: 26413 components: - type: Transform rot: -1.5707963267948966 rad @@ -203361,7 +203439,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26564 + - uid: 26414 components: - type: Transform rot: -1.5707963267948966 rad @@ -203369,7 +203447,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26565 + - uid: 26415 components: - type: Transform rot: -1.5707963267948966 rad @@ -203377,7 +203455,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26566 + - uid: 26416 components: - type: Transform rot: 1.5707963267948966 rad @@ -203385,7 +203463,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26567 + - uid: 26417 components: - type: Transform rot: 1.5707963267948966 rad @@ -203393,34 +203471,34 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26568 + - uid: 26418 components: - type: Transform pos: -50.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26569 + - uid: 26419 components: - type: Transform pos: -55.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26570 + - uid: 26420 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,45.5 parent: 2 - - uid: 26571 + - uid: 26421 components: - type: Transform pos: 9.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26572 + - uid: 26422 components: - type: Transform rot: 1.5707963267948966 rad @@ -203428,7 +203506,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26573 + - uid: 26423 components: - type: Transform rot: 1.5707963267948966 rad @@ -203436,7 +203514,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26574 + - uid: 26424 components: - type: Transform rot: -1.5707963267948966 rad @@ -203444,7 +203522,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26575 + - uid: 26425 components: - type: Transform rot: -1.5707963267948966 rad @@ -203452,7 +203530,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26576 + - uid: 26426 components: - type: Transform rot: 1.5707963267948966 rad @@ -203460,7 +203538,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26577 + - uid: 26427 components: - type: Transform rot: 1.5707963267948966 rad @@ -203468,7 +203546,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26578 + - uid: 26428 components: - type: Transform rot: -1.5707963267948966 rad @@ -203476,7 +203554,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26579 + - uid: 26429 components: - type: Transform rot: 3.141592653589793 rad @@ -203484,7 +203562,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26580 + - uid: 26430 components: - type: Transform rot: 1.5707963267948966 rad @@ -203492,7 +203570,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26581 + - uid: 26431 components: - type: Transform rot: -1.5707963267948966 rad @@ -203500,7 +203578,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26582 + - uid: 26432 components: - type: Transform rot: 3.141592653589793 rad @@ -203508,18 +203586,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26583 + - uid: 26433 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,11.5 parent: 2 - - uid: 26584 + - uid: 26434 components: - type: Transform pos: -19.5,-49.5 parent: 2 - - uid: 26585 + - uid: 26435 components: - type: Transform rot: -1.5707963267948966 rad @@ -203527,7 +203605,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26586 + - uid: 26436 components: - type: Transform rot: -1.5707963267948966 rad @@ -203535,7 +203613,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26587 + - uid: 26437 components: - type: Transform rot: 1.5707963267948966 rad @@ -203543,13 +203621,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26588 + - uid: 26438 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - uid: 26589 + - uid: 26439 components: - type: Transform rot: 3.141592653589793 rad @@ -203557,7 +203635,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26590 + - uid: 26440 components: - type: Transform rot: 3.141592653589793 rad @@ -203565,7 +203643,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26591 + - uid: 26441 components: - type: Transform rot: 3.141592653589793 rad @@ -203573,7 +203651,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26592 + - uid: 26442 components: - type: Transform rot: 1.5707963267948966 rad @@ -203581,7 +203659,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26593 + - uid: 26443 components: - type: Transform rot: 1.5707963267948966 rad @@ -203589,20 +203667,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26594 + - uid: 26444 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,53.5 parent: 2 - - uid: 26595 + - uid: 26445 components: - type: Transform pos: -35.5,-26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26596 + - uid: 26446 components: - type: Transform rot: 1.5707963267948966 rad @@ -203610,7 +203688,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26597 + - uid: 26447 components: - type: Transform rot: 3.141592653589793 rad @@ -203618,33 +203696,33 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26598 + - uid: 26448 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 26599 + - uid: 26449 components: - type: Transform pos: -47.5,-11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26600 + - uid: 26450 components: - type: Transform pos: 17.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26601 + - uid: 26451 components: - type: Transform pos: -63.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26602 + - uid: 26452 components: - type: Transform rot: 3.141592653589793 rad @@ -203652,20 +203730,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26603 + - uid: 26453 components: - type: Transform pos: 21.5,-30.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26604 + - uid: 26454 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 - - uid: 26605 + - uid: 26455 components: - type: Transform rot: 1.5707963267948966 rad @@ -203673,25 +203751,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26606 + - uid: 26456 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,52.5 parent: 2 - - uid: 26607 + - uid: 26457 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,52.5 parent: 2 - - uid: 26608 + - uid: 26458 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,50.5 parent: 2 - - uid: 26609 + - uid: 26459 components: - type: Transform rot: 3.141592653589793 rad @@ -203699,25 +203777,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26610 + - uid: 26460 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,37.5 parent: 2 - - uid: 26611 + - uid: 26461 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,52.5 parent: 2 - - uid: 26612 + - uid: 26462 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,56.5 parent: 2 - - uid: 26613 + - uid: 26463 components: - type: Transform rot: 1.5707963267948966 rad @@ -203725,7 +203803,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26614 + - uid: 26464 components: - type: Transform rot: -1.5707963267948966 rad @@ -203733,13 +203811,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26615 + - uid: 26465 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,33.5 parent: 2 - - uid: 26616 + - uid: 26466 components: - type: Transform rot: 1.5707963267948966 rad @@ -203747,7 +203825,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26617 + - uid: 26467 components: - type: Transform rot: 1.5707963267948966 rad @@ -203755,7 +203833,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26618 + - uid: 26468 components: - type: Transform rot: 1.5707963267948966 rad @@ -203763,7 +203841,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26619 + - uid: 26469 components: - type: Transform rot: -1.5707963267948966 rad @@ -203771,7 +203849,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26620 + - uid: 26470 components: - type: Transform rot: 3.141592653589793 rad @@ -203780,7 +203858,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26621 + - uid: 26471 components: - type: Transform rot: 1.5707963267948966 rad @@ -203788,14 +203866,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26622 + - uid: 26472 components: - type: Transform pos: -21.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26623 + - uid: 26473 components: - type: Transform rot: -1.5707963267948966 rad @@ -203803,13 +203881,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26624 + - uid: 26474 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,36.5 parent: 2 - - uid: 26625 + - uid: 26475 components: - type: Transform rot: 1.5707963267948966 rad @@ -203817,7 +203895,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26626 + - uid: 26476 components: - type: Transform rot: -1.5707963267948966 rad @@ -203825,7 +203903,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26627 + - uid: 26477 components: - type: Transform rot: 1.5707963267948966 rad @@ -203833,7 +203911,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26628 + - uid: 26478 components: - type: Transform rot: 3.141592653589793 rad @@ -203841,7 +203919,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26629 + - uid: 26479 components: - type: Transform rot: -1.5707963267948966 rad @@ -203849,7 +203927,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26630 + - uid: 26480 components: - type: Transform rot: 1.5707963267948966 rad @@ -203857,7 +203935,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26631 + - uid: 26481 components: - type: Transform rot: 1.5707963267948966 rad @@ -203865,20 +203943,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26632 + - uid: 26482 components: - type: Transform pos: -28.5,-1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26633 + - uid: 26483 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-58.5 parent: 2 - - uid: 26634 + - uid: 26484 components: - type: Transform rot: 1.5707963267948966 rad @@ -203886,13 +203964,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26635 + - uid: 26485 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,14.5 parent: 2 - - uid: 26636 + - uid: 26486 components: - type: Transform rot: -1.5707963267948966 rad @@ -203900,7 +203978,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26637 + - uid: 26487 components: - type: Transform rot: 3.141592653589793 rad @@ -203908,13 +203986,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26638 + - uid: 26488 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 - - uid: 26639 + - uid: 26489 components: - type: Transform rot: 3.141592653589793 rad @@ -203922,14 +204000,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26640 + - uid: 26490 components: - type: Transform pos: -7.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26641 + - uid: 26491 components: - type: Transform rot: -1.5707963267948966 rad @@ -203937,7 +204015,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26642 + - uid: 26492 components: - type: Transform rot: -1.5707963267948966 rad @@ -203945,7 +204023,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26643 + - uid: 26493 components: - type: Transform rot: 1.5707963267948966 rad @@ -203953,7 +204031,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26644 + - uid: 26494 components: - type: Transform rot: 1.5707963267948966 rad @@ -203961,7 +204039,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26645 + - uid: 26495 components: - type: Transform rot: 1.5707963267948966 rad @@ -203969,7 +204047,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26646 + - uid: 26496 components: - type: Transform rot: 1.5707963267948966 rad @@ -203977,7 +204055,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26647 + - uid: 26497 components: - type: Transform rot: -1.5707963267948966 rad @@ -203985,14 +204063,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26648 + - uid: 26498 components: - type: Transform pos: -2.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26649 + - uid: 26499 components: - type: Transform rot: 3.141592653589793 rad @@ -204000,13 +204078,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26650 + - uid: 26500 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-47.5 parent: 2 - - uid: 26651 + - uid: 26501 components: - type: Transform rot: 3.141592653589793 rad @@ -204014,13 +204092,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26652 + - uid: 26502 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 - - uid: 26653 + - uid: 26503 components: - type: Transform rot: 1.5707963267948966 rad @@ -204028,19 +204106,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26654 + - uid: 26504 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-24.5 parent: 2 - - uid: 26655 + - uid: 26505 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 - - uid: 26656 + - uid: 26506 components: - type: Transform rot: 3.141592653589793 rad @@ -204048,7 +204126,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26657 + - uid: 26507 components: - type: Transform rot: 3.141592653589793 rad @@ -204056,12 +204134,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26658 + - uid: 26508 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 26659 + - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad @@ -204069,7 +204147,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26660 + - uid: 26510 components: - type: Transform rot: 3.141592653589793 rad @@ -204077,7 +204155,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26661 + - uid: 26511 components: - type: Transform rot: -1.5707963267948966 rad @@ -204085,7 +204163,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26662 + - uid: 26512 components: - type: Transform rot: 3.141592653589793 rad @@ -204093,7 +204171,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26663 + - uid: 26513 components: - type: Transform rot: 3.141592653589793 rad @@ -204101,7 +204179,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26664 + - uid: 26514 components: - type: Transform rot: -1.5707963267948966 rad @@ -204109,7 +204187,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26665 + - uid: 26515 components: - type: Transform rot: -1.5707963267948966 rad @@ -204117,7 +204195,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26666 + - uid: 26516 components: - type: Transform rot: -1.5707963267948966 rad @@ -204125,7 +204203,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26667 + - uid: 26517 components: - type: Transform rot: 1.5707963267948966 rad @@ -204133,13 +204211,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26669 + - uid: 26518 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,8.5 parent: 2 - - uid: 26670 + - uid: 26519 components: - type: Transform rot: 1.5707963267948966 rad @@ -204147,7 +204225,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26671 + - uid: 26520 components: - type: Transform rot: 1.5707963267948966 rad @@ -204155,37 +204233,37 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26672 + - uid: 26521 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,42.5 parent: 2 - - uid: 26674 + - uid: 26522 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,52.5 parent: 2 - - uid: 26675 + - uid: 26523 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 26676 + - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 - - uid: 26677 + - uid: 26525 components: - type: Transform pos: 77.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26678 + - uid: 26526 components: - type: Transform rot: 3.141592653589793 rad @@ -204193,7 +204271,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26679 + - uid: 26527 components: - type: Transform rot: 1.5707963267948966 rad @@ -204201,13 +204279,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26680 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-58.5 parent: 2 - - uid: 26681 + - uid: 26529 components: - type: Transform rot: -1.5707963267948966 rad @@ -204215,7 +204293,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26682 + - uid: 26530 components: - type: Transform rot: 3.141592653589793 rad @@ -204223,7 +204301,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26683 + - uid: 26531 components: - type: Transform rot: 3.141592653589793 rad @@ -204231,7 +204309,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26684 + - uid: 26532 components: - type: Transform rot: 1.5707963267948966 rad @@ -204239,12 +204317,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26685 + - uid: 26533 components: - type: Transform pos: -18.5,-55.5 parent: 2 - - uid: 26686 + - uid: 26534 components: - type: Transform rot: 3.141592653589793 rad @@ -204252,13 +204330,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26687 + - uid: 26535 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 - - uid: 26688 + - uid: 26536 components: - type: Transform rot: 1.5707963267948966 rad @@ -204266,19 +204344,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26689 + - uid: 26537 components: - type: Transform pos: -9.5,-45.5 parent: 2 - - uid: 26690 + - uid: 26538 components: - type: Transform pos: 2.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26691 + - uid: 26539 components: - type: Transform rot: -1.5707963267948966 rad @@ -204286,7 +204364,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26692 + - uid: 26540 components: - type: Transform rot: -1.5707963267948966 rad @@ -204294,7 +204372,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26693 + - uid: 26541 components: - type: Transform rot: 3.141592653589793 rad @@ -204302,7 +204380,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26694 + - uid: 26542 components: - type: Transform rot: -1.5707963267948966 rad @@ -204310,13 +204388,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26695 + - uid: 26543 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,47.5 parent: 2 - - uid: 26696 + - uid: 26544 components: - type: Transform rot: 3.141592653589793 rad @@ -204324,7 +204402,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26697 + - uid: 26545 components: - type: Transform rot: 1.5707963267948966 rad @@ -204332,7 +204410,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26698 + - uid: 26546 components: - type: Transform rot: 1.5707963267948966 rad @@ -204341,7 +204419,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26699 + - uid: 26547 components: - type: Transform rot: -1.5707963267948966 rad @@ -204349,55 +204427,55 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26700 + - uid: 26548 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,5.5 parent: 2 - - uid: 26701 + - uid: 26549 components: - type: Transform pos: 15.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26702 + - uid: 26550 components: - type: Transform pos: -37.5,50.5 parent: 2 - - uid: 26703 + - uid: 26551 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,37.5 parent: 2 - - uid: 26704 + - uid: 26552 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 26705 + - uid: 26553 components: - type: Transform pos: -18.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26706 + - uid: 26554 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-47.5 parent: 2 - - uid: 26707 + - uid: 26555 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - - uid: 26708 + - uid: 26556 components: - type: Transform rot: 3.141592653589793 rad @@ -204405,13 +204483,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26709 + - uid: 26557 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-44.5 parent: 2 - - uid: 26710 + - uid: 26558 components: - type: Transform rot: 3.141592653589793 rad @@ -204419,7 +204497,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26711 + - uid: 26559 components: - type: Transform rot: 3.141592653589793 rad @@ -204427,19 +204505,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26712 + - uid: 26560 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-14.5 parent: 2 - - uid: 26713 + - uid: 26561 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-49.5 parent: 2 - - uid: 26714 + - uid: 26562 components: - type: Transform rot: 3.141592653589793 rad @@ -204447,7 +204525,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26715 + - uid: 26563 components: - type: Transform rot: 1.5707963267948966 rad @@ -204455,31 +204533,31 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26716 + - uid: 26564 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,45.5 parent: 2 - - uid: 26717 + - uid: 26565 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-2.5 parent: 2 - - uid: 26718 + - uid: 26566 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-0.5 parent: 2 - - uid: 26719 + - uid: 26567 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-54.5 parent: 2 - - uid: 26720 + - uid: 26568 components: - type: Transform rot: -1.5707963267948966 rad @@ -204487,25 +204565,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26721 + - uid: 26569 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-16.5 parent: 2 - - uid: 26722 + - uid: 26570 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-27.5 parent: 2 - - uid: 26723 + - uid: 26571 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,31.5 parent: 2 - - uid: 26724 + - uid: 26572 components: - type: Transform rot: -1.5707963267948966 rad @@ -204513,18 +204591,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26725 + - uid: 26573 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 - - uid: 26726 + - uid: 26574 components: - type: Transform pos: -56.5,51.5 parent: 2 - - uid: 26727 + - uid: 26575 components: - type: Transform rot: -1.5707963267948966 rad @@ -204532,7 +204610,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26728 + - uid: 26576 components: - type: Transform rot: -1.5707963267948966 rad @@ -204540,7 +204618,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26729 + - uid: 26577 components: - type: Transform rot: 3.141592653589793 rad @@ -204548,7 +204626,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26730 + - uid: 26578 components: - type: Transform rot: 3.141592653589793 rad @@ -204556,7 +204634,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26731 + - uid: 26579 components: - type: Transform rot: -1.5707963267948966 rad @@ -204564,7 +204642,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26732 + - uid: 26580 components: - type: Transform rot: 1.5707963267948966 rad @@ -204572,7 +204650,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26733 + - uid: 26581 components: - type: Transform rot: 3.141592653589793 rad @@ -204580,19 +204658,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26734 + - uid: 26582 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,28.5 parent: 2 - - uid: 26735 + - uid: 26583 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,16.5 parent: 2 - - uid: 26736 + - uid: 26584 components: - type: Transform rot: -1.5707963267948966 rad @@ -204600,7 +204678,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26737 + - uid: 26585 components: - type: Transform rot: 3.141592653589793 rad @@ -204608,7 +204686,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26738 + - uid: 26586 components: - type: Transform rot: -1.5707963267948966 rad @@ -204616,7 +204694,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26739 + - uid: 26587 components: - type: Transform rot: -1.5707963267948966 rad @@ -204624,7 +204702,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26740 + - uid: 26588 components: - type: Transform rot: 3.141592653589793 rad @@ -204632,19 +204710,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26741 + - uid: 26589 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,45.5 parent: 2 - - uid: 26742 + - uid: 26590 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,40.5 parent: 2 - - uid: 26743 + - uid: 26591 components: - type: Transform rot: 1.5707963267948966 rad @@ -204652,7 +204730,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26744 + - uid: 26592 components: - type: Transform rot: -1.5707963267948966 rad @@ -204660,14 +204738,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26745 + - uid: 26593 components: - type: Transform pos: -46.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26746 + - uid: 26594 components: - type: Transform rot: 3.141592653589793 rad @@ -204675,7 +204753,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26747 + - uid: 26595 components: - type: Transform rot: 1.5707963267948966 rad @@ -204683,14 +204761,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26748 + - uid: 26596 components: - type: Transform pos: 10.5,3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26749 + - uid: 26597 components: - type: Transform rot: 1.5707963267948966 rad @@ -204698,7 +204776,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26750 + - uid: 26598 components: - type: Transform rot: -1.5707963267948966 rad @@ -204706,7 +204784,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26751 + - uid: 26599 components: - type: Transform rot: 3.141592653589793 rad @@ -204714,23 +204792,23 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26752 + - uid: 26600 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-46.5 parent: 2 - - uid: 26753 + - uid: 26601 components: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 26754 + - uid: 26602 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 26755 + - uid: 26603 components: - type: Transform rot: -1.5707963267948966 rad @@ -204738,7 +204816,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26756 + - uid: 26604 components: - type: Transform rot: -1.5707963267948966 rad @@ -204746,7 +204824,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26757 + - uid: 26605 components: - type: Transform rot: 1.5707963267948966 rad @@ -204754,14 +204832,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26758 + - uid: 26606 components: - type: Transform pos: 43.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26759 + - uid: 26607 components: - type: Transform rot: 3.141592653589793 rad @@ -204769,7 +204847,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26760 + - uid: 26608 components: - type: Transform rot: 1.5707963267948966 rad @@ -204777,13 +204855,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26761 + - uid: 26609 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 - - uid: 26762 + - uid: 26610 components: - type: Transform rot: -1.5707963267948966 rad @@ -204791,7 +204869,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26763 + - uid: 26611 components: - type: Transform rot: -1.5707963267948966 rad @@ -204799,7 +204877,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26764 + - uid: 26612 components: - type: Transform rot: 3.141592653589793 rad @@ -204807,20 +204885,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26765 + - uid: 26613 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,21.5 parent: 2 - - uid: 26766 + - uid: 26614 components: - type: Transform pos: -15.5,-77.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26767 + - uid: 26615 components: - type: Transform rot: 1.5707963267948966 rad @@ -204828,25 +204906,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26768 + - uid: 26616 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-46.5 parent: 2 - - uid: 26769 + - uid: 26617 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-52.5 parent: 2 - - uid: 26770 + - uid: 26618 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-52.5 parent: 2 - - uid: 26771 + - uid: 26619 components: - type: Transform rot: -1.5707963267948966 rad @@ -204854,13 +204932,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26772 + - uid: 26620 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 - - uid: 26773 + - uid: 26621 components: - type: Transform rot: 3.141592653589793 rad @@ -204868,29 +204946,29 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26774 + - uid: 26622 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 26775 + - uid: 26623 components: - type: Transform pos: -9.5,-37.5 parent: 2 - - uid: 26776 + - uid: 26624 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-43.5 parent: 2 - - uid: 26777 + - uid: 26625 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 - - uid: 26778 + - uid: 26626 components: - type: Transform rot: -1.5707963267948966 rad @@ -204898,7 +204976,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26779 + - uid: 26627 components: - type: Transform rot: 3.141592653589793 rad @@ -204906,7 +204984,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26780 + - uid: 26628 components: - type: Transform rot: 3.141592653589793 rad @@ -204914,7 +204992,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26781 + - uid: 26629 components: - type: Transform rot: -1.5707963267948966 rad @@ -204922,30 +205000,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26782 + - uid: 26630 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 26783 + - uid: 26631 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-42.5 parent: 2 - - uid: 26784 + - uid: 26632 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 26785 + - uid: 26633 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-37.5 parent: 2 - - uid: 26786 + - uid: 26634 components: - type: Transform rot: 1.5707963267948966 rad @@ -204953,18 +205031,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26787 + - uid: 26635 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-49.5 parent: 2 - - uid: 26788 + - uid: 26636 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 26789 + - uid: 26637 components: - type: Transform rot: 1.5707963267948966 rad @@ -204972,7 +205050,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26790 + - uid: 26638 components: - type: Transform rot: 1.5707963267948966 rad @@ -204980,13 +205058,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26791 + - uid: 26639 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 26792 + - uid: 26640 components: - type: Transform rot: 1.5707963267948966 rad @@ -204994,7 +205072,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26793 + - uid: 26641 components: - type: Transform rot: -1.5707963267948966 rad @@ -205002,7 +205080,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26794 + - uid: 26642 components: - type: Transform rot: -1.5707963267948966 rad @@ -205010,7 +205088,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26795 + - uid: 26643 components: - type: Transform rot: -1.5707963267948966 rad @@ -205018,7 +205096,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26796 + - uid: 26644 components: - type: Transform rot: -1.5707963267948966 rad @@ -205026,13 +205104,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26797 + - uid: 26645 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-40.5 parent: 2 - - uid: 26798 + - uid: 26646 components: - type: Transform rot: 1.5707963267948966 rad @@ -205040,13 +205118,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26799 + - uid: 26647 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,8.5 parent: 2 - - uid: 26800 + - uid: 26648 components: - type: Transform rot: -1.5707963267948966 rad @@ -205054,13 +205132,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26801 + - uid: 26649 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-41.5 parent: 2 - - uid: 26802 + - uid: 26650 components: - type: Transform rot: 1.5707963267948966 rad @@ -205068,14 +205146,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26803 + - uid: 26651 components: - type: Transform pos: 35.5,22.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26804 + - uid: 26652 components: - type: Transform rot: 1.5707963267948966 rad @@ -205083,24 +205161,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26805 + - uid: 26653 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-46.5 parent: 2 - - uid: 26806 + - uid: 26654 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 26807 + - uid: 26655 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-16.5 parent: 2 - - uid: 26808 + - uid: 26656 components: - type: Transform rot: 1.5707963267948966 rad @@ -205108,7 +205186,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26809 + - uid: 26657 components: - type: Transform rot: 1.5707963267948966 rad @@ -205116,14 +205194,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26810 + - uid: 26658 components: - type: Transform pos: -48.5,34.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26811 + - uid: 26659 components: - type: Transform rot: 1.5707963267948966 rad @@ -205131,7 +205209,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26812 + - uid: 26660 components: - type: Transform rot: -1.5707963267948966 rad @@ -205139,7 +205217,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26813 + - uid: 26661 components: - type: Transform rot: 1.5707963267948966 rad @@ -205147,7 +205225,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26814 + - uid: 26662 components: - type: Transform rot: 1.5707963267948966 rad @@ -205155,13 +205233,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26817 + - uid: 26663 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 26818 + - uid: 26664 components: - type: Transform rot: 1.5707963267948966 rad @@ -205169,7 +205247,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26819 + - uid: 26665 components: - type: Transform rot: 1.5707963267948966 rad @@ -205177,7 +205255,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26820 + - uid: 26666 components: - type: Transform rot: -1.5707963267948966 rad @@ -205185,14 +205263,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26821 + - uid: 26667 components: - type: Transform pos: 10.5,-42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26822 + - uid: 26668 components: - type: Transform rot: -1.5707963267948966 rad @@ -205200,18 +205278,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26823 + - uid: 26669 components: - type: Transform pos: -25.5,54.5 parent: 2 - - uid: 26824 + - uid: 26670 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,11.5 parent: 2 - - uid: 26825 + - uid: 26671 components: - type: Transform rot: 1.5707963267948966 rad @@ -205219,7 +205297,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26826 + - uid: 26672 components: - type: Transform rot: 1.5707963267948966 rad @@ -205228,7 +205306,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26827 + - uid: 26673 components: - type: Transform rot: 1.5707963267948966 rad @@ -205236,7 +205314,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26828 + - uid: 26674 components: - type: Transform rot: -1.5707963267948966 rad @@ -205244,7 +205322,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26829 + - uid: 26675 components: - type: Transform rot: 3.141592653589793 rad @@ -205252,7 +205330,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26830 + - uid: 26676 components: - type: Transform rot: 1.5707963267948966 rad @@ -205260,7 +205338,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26831 + - uid: 26677 components: - type: Transform rot: 3.141592653589793 rad @@ -205268,14 +205346,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26832 + - uid: 26678 components: - type: Transform pos: 19.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26833 + - uid: 26679 components: - type: Transform rot: 3.141592653589793 rad @@ -205283,7 +205361,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26834 + - uid: 26680 components: - type: Transform rot: 1.5707963267948966 rad @@ -205291,7 +205369,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26835 + - uid: 26681 components: - type: Transform rot: 1.5707963267948966 rad @@ -205299,7 +205377,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26836 + - uid: 26682 components: - type: Transform rot: -1.5707963267948966 rad @@ -205307,21 +205385,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26837 + - uid: 26683 components: - type: Transform pos: -58.5,-11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26838 + - uid: 26684 components: - type: Transform pos: -59.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26839 + - uid: 26685 components: - type: Transform rot: -1.5707963267948966 rad @@ -205329,7 +205407,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26840 + - uid: 26686 components: - type: Transform rot: -1.5707963267948966 rad @@ -205337,7 +205415,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26841 + - uid: 26687 components: - type: Transform rot: 3.141592653589793 rad @@ -205345,7 +205423,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26842 + - uid: 26688 components: - type: Transform rot: 3.141592653589793 rad @@ -205353,7 +205431,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26843 + - uid: 26689 components: - type: Transform rot: -1.5707963267948966 rad @@ -205361,13 +205439,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26844 + - uid: 26690 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 26845 + - uid: 26691 components: - type: Transform rot: -1.5707963267948966 rad @@ -205375,14 +205453,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26846 + - uid: 26692 components: - type: Transform pos: 8.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26847 + - uid: 26693 components: - type: Transform rot: 3.141592653589793 rad @@ -205390,7 +205468,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26848 + - uid: 26694 components: - type: Transform rot: 3.141592653589793 rad @@ -205398,14 +205476,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26849 + - uid: 26695 components: - type: Transform pos: 21.5,-24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26850 + - uid: 26696 components: - type: Transform rot: -1.5707963267948966 rad @@ -205413,12 +205491,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26851 + - uid: 26697 components: - type: Transform pos: -46.5,55.5 parent: 2 - - uid: 26852 + - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad @@ -205426,19 +205504,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26853 + - uid: 26699 components: - type: Transform pos: 32.5,-46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26854 + - uid: 26700 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 26855 + - uid: 26701 components: - type: Transform rot: 1.5707963267948966 rad @@ -205446,20 +205524,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26856 + - uid: 26702 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-37.5 parent: 2 - - uid: 26857 + - uid: 26703 components: - type: Transform pos: -18.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26858 + - uid: 26704 components: - type: Transform rot: 1.5707963267948966 rad @@ -205467,14 +205545,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26859 + - uid: 26705 components: - type: Transform pos: -23.5,-14.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26860 + - uid: 26706 components: - type: Transform rot: 3.141592653589793 rad @@ -205482,14 +205560,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26861 + - uid: 26707 components: - type: Transform pos: 1.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26862 + - uid: 26708 components: - type: Transform rot: 3.141592653589793 rad @@ -205497,27 +205575,27 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26863 + - uid: 26709 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,52.5 parent: 2 - - uid: 26864 + - uid: 26710 components: - type: Transform pos: 65.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26865 + - uid: 26711 components: - type: Transform pos: -10.5,50.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26866 + - uid: 26712 components: - type: Transform rot: -1.5707963267948966 rad @@ -205525,7 +205603,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26867 + - uid: 26713 components: - type: Transform rot: 1.5707963267948966 rad @@ -205533,7 +205611,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26868 + - uid: 26714 components: - type: Transform rot: 1.5707963267948966 rad @@ -205541,7 +205619,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26869 + - uid: 26715 components: - type: Transform rot: 1.5707963267948966 rad @@ -205549,7 +205627,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26870 + - uid: 26716 components: - type: Transform rot: 1.5707963267948966 rad @@ -205557,13 +205635,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26871 + - uid: 26717 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-39.5 parent: 2 - - uid: 26872 + - uid: 26718 components: - type: Transform rot: 1.5707963267948966 rad @@ -205571,7 +205649,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26873 + - uid: 26719 components: - type: Transform rot: -1.5707963267948966 rad @@ -205579,7 +205657,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26874 + - uid: 26720 components: - type: Transform rot: -1.5707963267948966 rad @@ -205587,7 +205665,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26875 + - uid: 26721 components: - type: Transform rot: -1.5707963267948966 rad @@ -205595,7 +205673,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26876 + - uid: 26722 components: - type: Transform rot: 1.5707963267948966 rad @@ -205603,7 +205681,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26877 + - uid: 26723 components: - type: Transform rot: 1.5707963267948966 rad @@ -205611,28 +205689,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26878 + - uid: 26724 components: - type: Transform pos: -6.5,-74.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26879 + - uid: 26725 components: - type: Transform pos: -1.5,-74.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26880 + - uid: 26726 components: - type: Transform pos: -31.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26881 + - uid: 26727 components: - type: Transform rot: -1.5707963267948966 rad @@ -205640,7 +205718,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26882 + - uid: 26728 components: - type: Transform rot: 1.5707963267948966 rad @@ -205648,21 +205726,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26883 + - uid: 26729 components: - type: Transform pos: -24.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26884 + - uid: 26730 components: - type: Transform pos: 1.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26885 + - uid: 26731 components: - type: Transform rot: 1.5707963267948966 rad @@ -205670,7 +205748,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26886 + - uid: 26732 components: - type: Transform rot: -1.5707963267948966 rad @@ -205678,7 +205756,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26887 + - uid: 26733 components: - type: Transform rot: 1.5707963267948966 rad @@ -205686,7 +205764,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26888 + - uid: 26734 components: - type: Transform rot: 1.5707963267948966 rad @@ -205694,7 +205772,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26889 + - uid: 26735 components: - type: Transform rot: -1.5707963267948966 rad @@ -205702,7 +205780,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26890 + - uid: 26736 components: - type: Transform rot: 1.5707963267948966 rad @@ -205710,25 +205788,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26891 + - uid: 26737 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,8.5 parent: 2 - - uid: 26892 + - uid: 26738 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,16.5 parent: 2 - - uid: 26893 + - uid: 26739 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,26.5 parent: 2 - - uid: 26894 + - uid: 26740 components: - type: Transform rot: 1.5707963267948966 rad @@ -205736,7 +205814,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26895 + - uid: 26741 components: - type: Transform rot: 1.5707963267948966 rad @@ -205744,21 +205822,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26896 + - uid: 26742 components: - type: Transform pos: 68.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26897 + - uid: 26743 components: - type: Transform pos: -63.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26898 + - uid: 26744 components: - type: Transform rot: 1.5707963267948966 rad @@ -205766,7 +205844,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26899 + - uid: 26745 components: - type: Transform rot: -1.5707963267948966 rad @@ -205774,7 +205852,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26900 + - uid: 26746 components: - type: Transform rot: 3.141592653589793 rad @@ -205782,21 +205860,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26901 + - uid: 26747 components: - type: Transform pos: -63.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26902 + - uid: 26748 components: - type: Transform pos: -72.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26903 + - uid: 26749 components: - type: Transform rot: 3.141592653589793 rad @@ -205804,7 +205882,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26904 + - uid: 26750 components: - type: Transform rot: 3.141592653589793 rad @@ -205812,21 +205890,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26905 + - uid: 26751 components: - type: Transform pos: -76.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26906 + - uid: 26752 components: - type: Transform pos: -81.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26907 + - uid: 26753 components: - type: Transform rot: 3.141592653589793 rad @@ -205834,7 +205912,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26908 + - uid: 26754 components: - type: Transform rot: 1.5707963267948966 rad @@ -205842,7 +205920,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26909 + - uid: 26755 components: - type: Transform rot: -1.5707963267948966 rad @@ -205850,7 +205928,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26910 + - uid: 26756 components: - type: Transform rot: -1.5707963267948966 rad @@ -205858,7 +205936,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26911 + - uid: 26757 components: - type: Transform rot: 1.5707963267948966 rad @@ -205866,7 +205944,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26912 + - uid: 26758 components: - type: Transform rot: -1.5707963267948966 rad @@ -205874,21 +205952,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26913 + - uid: 26759 components: - type: Transform pos: 14.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26914 + - uid: 26760 components: - type: Transform pos: 34.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26915 + - uid: 26761 components: - type: Transform rot: 3.141592653589793 rad @@ -205896,7 +205974,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26916 + - uid: 26762 components: - type: Transform rot: 3.141592653589793 rad @@ -205904,7 +205982,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26917 + - uid: 26763 components: - type: Transform rot: 3.141592653589793 rad @@ -205912,21 +205990,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26918 + - uid: 26764 components: - type: Transform pos: -122.5,26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26919 + - uid: 26765 components: - type: Transform pos: -114.5,26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26920 + - uid: 26766 components: - type: Transform rot: 3.141592653589793 rad @@ -205934,7 +206012,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26921 + - uid: 26767 components: - type: Transform rot: -1.5707963267948966 rad @@ -205942,7 +206020,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26922 + - uid: 26768 components: - type: Transform rot: 1.5707963267948966 rad @@ -205950,7 +206028,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26923 + - uid: 26769 components: - type: Transform rot: 1.5707963267948966 rad @@ -205958,7 +206036,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26924 + - uid: 26770 components: - type: Transform rot: -1.5707963267948966 rad @@ -205966,7 +206044,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26925 + - uid: 26771 components: - type: Transform rot: 1.5707963267948966 rad @@ -205974,7 +206052,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26926 + - uid: 26772 components: - type: Transform rot: -1.5707963267948966 rad @@ -205982,7 +206060,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26927 + - uid: 26773 components: - type: Transform rot: -1.5707963267948966 rad @@ -205990,7 +206068,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26928 + - uid: 26774 components: - type: Transform rot: 1.5707963267948966 rad @@ -205998,7 +206076,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26929 + - uid: 26775 components: - type: Transform rot: 1.5707963267948966 rad @@ -206006,7 +206084,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26930 + - uid: 26776 components: - type: Transform rot: -1.5707963267948966 rad @@ -206014,7 +206092,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26931 + - uid: 26777 components: - type: Transform rot: -1.5707963267948966 rad @@ -206022,7 +206100,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26932 + - uid: 26778 components: - type: Transform rot: 1.5707963267948966 rad @@ -206030,7 +206108,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26933 + - uid: 26779 components: - type: Transform rot: 1.5707963267948966 rad @@ -206038,7 +206116,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26934 + - uid: 26780 components: - type: Transform rot: -1.5707963267948966 rad @@ -206046,7 +206124,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26935 + - uid: 26781 components: - type: Transform rot: -1.5707963267948966 rad @@ -206054,7 +206132,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26936 + - uid: 26782 components: - type: Transform rot: 1.5707963267948966 rad @@ -206062,388 +206140,388 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26937 + - uid: 26783 components: - type: Transform pos: 32.5,-43.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26938 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-23.5 parent: 2 - - uid: 26939 + - uid: 26785 components: - type: Transform pos: -23.5,45.5 parent: 2 - - uid: 26940 + - uid: 26786 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,52.5 parent: 2 - - uid: 26943 + - uid: 26787 components: - type: Transform pos: 84.5,14.5 parent: 2 - - uid: 26944 + - uid: 26788 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,23.5 parent: 2 - - uid: 26945 + - uid: 26789 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,12.5 parent: 2 - - uid: 26946 + - uid: 26790 components: - type: Transform pos: 90.5,14.5 parent: 2 - - uid: 26947 + - uid: 26791 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,23.5 parent: 2 - - uid: 26948 + - uid: 26792 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-31.5 parent: 2 - - uid: 26949 + - uid: 26793 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,25.5 parent: 2 - - uid: 26950 + - uid: 26794 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-27.5 parent: 2 - - uid: 26951 + - uid: 26795 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,9.5 parent: 2 - - uid: 26952 + - uid: 26796 components: - type: Transform pos: 54.5,19.5 parent: 2 - - uid: 26953 + - uid: 26797 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,59.5 parent: 2 - - uid: 26954 + - uid: 26798 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,56.5 parent: 2 - - uid: 26955 + - uid: 26799 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,1.5 parent: 2 - - uid: 26956 + - uid: 26800 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 26957 + - uid: 26801 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-16.5 parent: 2 - - uid: 26958 + - uid: 26802 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-12.5 parent: 2 - - uid: 26959 + - uid: 26803 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,66.5 parent: 2 - - uid: 26960 + - uid: 26804 components: - type: Transform pos: 3.5,58.5 parent: 2 - - uid: 26961 + - uid: 26805 components: - type: Transform pos: 90.5,2.5 parent: 2 - - uid: 26962 + - uid: 26806 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,0.5 parent: 2 - - uid: 26963 + - uid: 26807 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,0.5 parent: 2 - - uid: 26964 + - uid: 26808 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,0.5 parent: 2 - - uid: 26965 + - uid: 26809 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,0.5 parent: 2 - - uid: 26966 + - uid: 26810 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 - - uid: 26967 + - uid: 26811 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 2 - - uid: 26968 + - uid: 26812 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 26969 + - uid: 26813 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 26970 + - uid: 26814 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,18.5 parent: 2 - - uid: 26971 + - uid: 26815 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 - - uid: 26972 + - uid: 26816 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 - - uid: 26973 + - uid: 26817 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 - - uid: 39555 + - uid: 39382 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 - parent: 38584 - - uid: 39556 + parent: 38411 + - uid: 39383 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 - parent: 38584 - - uid: 39557 + parent: 38411 + - uid: 39384 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 - parent: 38584 - - uid: 39558 + parent: 38411 + - uid: 39385 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 - parent: 38584 - - uid: 39559 + parent: 38411 + - uid: 39386 components: - type: Transform pos: -0.5,8.5 - parent: 38584 - - uid: 39560 + parent: 38411 + - uid: 39387 components: - type: Transform pos: 12.5,6.5 - parent: 38584 - - uid: 39561 + parent: 38411 + - uid: 39388 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-2.5 - parent: 38584 - - uid: 39562 + parent: 38411 + - uid: 39389 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 - parent: 38584 - - uid: 39563 + parent: 38411 + - uid: 39390 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 38584 - - uid: 39564 + parent: 38411 + - uid: 39391 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-7.5 - parent: 38584 - - uid: 39565 + parent: 38411 + - uid: 39392 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-7.5 - parent: 38584 - - uid: 39566 + parent: 38411 + - uid: 39393 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 - parent: 38584 - - uid: 39567 + parent: 38411 + - uid: 39394 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,5.5 - parent: 38584 - - uid: 39568 + parent: 38411 + - uid: 39395 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 - parent: 38584 - - uid: 39569 + parent: 38411 + - uid: 39396 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 38584 - - uid: 39570 + parent: 38411 + - uid: 39397 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,1.5 - parent: 38584 - - uid: 39571 + parent: 38411 + - uid: 39398 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 - parent: 38584 - - uid: 39572 + parent: 38411 + - uid: 39399 components: - type: Transform pos: -6.5,4.5 - parent: 38584 - - uid: 39573 + parent: 38411 + - uid: 39400 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 - parent: 38584 - - uid: 39574 + parent: 38411 + - uid: 39401 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-3.5 - parent: 38584 - - uid: 39575 + parent: 38411 + - uid: 39402 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-2.5 - parent: 38584 - - uid: 39576 + parent: 38411 + - uid: 39403 components: - type: Transform pos: -15.5,-1.5 - parent: 38584 - - uid: 39577 + parent: 38411 + - uid: 39404 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-4.5 - parent: 38584 - - uid: 39578 + parent: 38411 + - uid: 39405 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,5.5 - parent: 38584 - - uid: 39579 + parent: 38411 + - uid: 39406 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 - parent: 38584 + parent: 38411 - proto: PoweredlightBlue entities: - - uid: 26974 + - uid: 26818 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,38.5 parent: 2 - - uid: 26975 + - uid: 26819 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,44.5 parent: 2 - - uid: 26976 + - uid: 26820 components: - type: Transform pos: 58.5,9.5 parent: 2 - - uid: 26977 + - uid: 26821 components: - type: Transform pos: 48.5,-13.5 parent: 2 - proto: PoweredlightCyan entities: - - uid: 26978 + - uid: 26822 components: - type: Transform pos: -70.5,58.5 parent: 2 - proto: PoweredlightEmpty entities: - - uid: 25008 + - uid: 24867 components: - type: Transform rot: 3.141592653589793 rad @@ -206460,10 +206538,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25009 + ent: 24868 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25010 + - uid: 24869 components: - type: Transform rot: -1.5707963267948966 rad @@ -206480,10 +206558,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25011 + ent: 24870 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25012 + - uid: 24871 components: - type: Transform rot: -1.5707963267948966 rad @@ -206500,10 +206578,23 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25013 + ent: 24872 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25016 + - uid: 24873 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24874 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 24875 components: - type: Transform pos: 27.5,61.5 @@ -206519,10 +206610,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25017 + ent: 24876 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25018 + - uid: 24877 components: - type: Transform pos: 20.5,72.5 @@ -206538,10 +206629,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25019 + ent: 24878 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25020 + - uid: 24879 components: - type: Transform rot: -1.5707963267948966 rad @@ -206558,10 +206649,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25021 + ent: 24880 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25022 + - uid: 24881 components: - type: Transform rot: -1.5707963267948966 rad @@ -206578,10 +206669,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25023 + ent: 24882 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25026 + - uid: 24883 components: - type: Transform rot: -1.5707963267948966 rad @@ -206598,10 +206689,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25027 + ent: 24884 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25030 + - uid: 24885 components: - type: Transform pos: 14.5,62.5 @@ -206617,10 +206708,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25031 + ent: 24886 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25032 + - uid: 24887 components: - type: Transform pos: 55.5,-45.5 @@ -206636,10 +206727,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25033 + ent: 24888 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25034 + - uid: 24889 components: - type: Transform pos: -39.5,-50.5 @@ -206655,10 +206746,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25035 + ent: 24890 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25036 + - uid: 24891 components: - type: Transform pos: -38.5,-64.5 @@ -206674,10 +206765,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25037 + ent: 24892 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25038 + - uid: 24893 components: - type: Transform pos: 12.5,56.5 @@ -206693,10 +206784,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25039 + ent: 24894 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25040 + - uid: 24895 components: - type: Transform rot: -1.5707963267948966 rad @@ -206713,10 +206804,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25041 + ent: 24896 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25042 + - uid: 24897 components: - type: Transform rot: 3.141592653589793 rad @@ -206733,10 +206824,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25043 + ent: 24898 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25044 + - uid: 24899 components: - type: Transform rot: 3.141592653589793 rad @@ -206753,10 +206844,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25045 + ent: 24900 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25046 + - uid: 24901 components: - type: Transform pos: -22.5,-19.5 @@ -206772,10 +206863,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25047 + ent: 24902 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25048 + - uid: 24903 components: - type: Transform rot: -1.5707963267948966 rad @@ -206792,10 +206883,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25049 + ent: 24904 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25050 + - uid: 24905 components: - type: Transform rot: 1.5707963267948966 rad @@ -206812,10 +206903,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25051 + ent: 24906 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25052 + - uid: 24907 components: - type: Transform rot: -1.5707963267948966 rad @@ -206832,10 +206923,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25053 + ent: 24908 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25054 + - uid: 24909 components: - type: Transform rot: -1.5707963267948966 rad @@ -206852,10 +206943,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25055 + ent: 24910 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25056 + - uid: 24911 components: - type: Transform rot: -1.5707963267948966 rad @@ -206872,10 +206963,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25057 + ent: 24912 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25058 + - uid: 24913 components: - type: Transform rot: 3.141592653589793 rad @@ -206892,10 +206983,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25059 + ent: 24914 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25060 + - uid: 24915 components: - type: Transform rot: 3.141592653589793 rad @@ -206912,10 +207003,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25061 + ent: 24916 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25062 + - uid: 24917 components: - type: Transform rot: -1.5707963267948966 rad @@ -206932,10 +207023,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25063 + ent: 24918 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25064 + - uid: 24919 components: - type: Transform rot: 1.5707963267948966 rad @@ -206952,10 +207043,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25065 + ent: 24920 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25066 + - uid: 24921 components: - type: Transform rot: 1.5707963267948966 rad @@ -206972,10 +207063,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25067 + ent: 24922 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25068 + - uid: 24923 components: - type: Transform pos: -41.5,-57.5 @@ -206991,10 +207082,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25069 + ent: 24924 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25070 + - uid: 24925 components: - type: Transform pos: 37.5,-3.5 @@ -207010,10 +207101,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25071 + ent: 24926 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25072 + - uid: 24927 components: - type: Transform pos: -48.5,-33.5 @@ -207029,10 +207120,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25073 + ent: 24928 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25074 + - uid: 24929 components: - type: Transform rot: 3.141592653589793 rad @@ -207049,10 +207140,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25075 + ent: 24930 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25076 + - uid: 24931 components: - type: Transform pos: 7.5,54.5 @@ -207068,10 +207159,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25077 + ent: 24932 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25078 + - uid: 24933 components: - type: Transform pos: -1.5,27.5 @@ -207087,10 +207178,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25079 + ent: 24934 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25080 + - uid: 24935 components: - type: Transform rot: 1.5707963267948966 rad @@ -207107,10 +207198,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25081 + ent: 24936 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25082 + - uid: 24937 components: - type: Transform rot: -1.5707963267948966 rad @@ -207127,10 +207218,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25083 + ent: 24938 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25084 + - uid: 24939 components: - type: Transform rot: 3.141592653589793 rad @@ -207147,10 +207238,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25085 + ent: 24940 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25086 + - uid: 24941 components: - type: Transform pos: -41.5,-19.5 @@ -207166,10 +207257,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25087 + ent: 24942 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25088 + - uid: 24943 components: - type: Transform rot: -1.5707963267948966 rad @@ -207186,10 +207277,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25089 + ent: 24944 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25090 + - uid: 24945 components: - type: Transform pos: -32.5,-17.5 @@ -207205,10 +207296,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25091 + ent: 24946 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25092 + - uid: 24947 components: - type: Transform rot: 1.5707963267948966 rad @@ -207225,10 +207316,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25093 + ent: 24948 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25094 + - uid: 24949 components: - type: Transform rot: -1.5707963267948966 rad @@ -207245,10 +207336,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25095 + ent: 24950 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25096 + - uid: 24951 components: - type: Transform pos: -39.5,-8.5 @@ -207264,10 +207355,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25097 + ent: 24952 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25098 + - uid: 24953 components: - type: Transform rot: 3.141592653589793 rad @@ -207284,10 +207375,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25099 + ent: 24954 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25100 + - uid: 24955 components: - type: Transform rot: -1.5707963267948966 rad @@ -207304,10 +207395,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25101 + ent: 24956 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25102 + - uid: 24957 components: - type: Transform rot: 3.141592653589793 rad @@ -207324,10 +207415,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25103 + ent: 24958 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25104 + - uid: 24959 components: - type: Transform rot: -1.5707963267948966 rad @@ -207344,10 +207435,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25105 + ent: 24960 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25106 + - uid: 24961 components: - type: Transform rot: 1.5707963267948966 rad @@ -207364,10 +207455,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25107 + ent: 24962 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25108 + - uid: 24963 components: - type: Transform pos: -30.5,23.5 @@ -207377,10 +207468,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25109 + ent: 24964 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25110 + - uid: 24965 components: - type: Transform pos: -41.5,40.5 @@ -207396,10 +207487,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25111 + ent: 24966 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25112 + - uid: 24967 components: - type: Transform pos: -38.5,40.5 @@ -207415,10 +207506,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25113 + ent: 24968 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25114 + - uid: 24969 components: - type: Transform rot: -1.5707963267948966 rad @@ -207435,10 +207526,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25115 + ent: 24970 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25116 + - uid: 24971 components: - type: Transform rot: -1.5707963267948966 rad @@ -207455,10 +207546,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25117 + ent: 24972 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25118 + - uid: 24973 components: - type: Transform rot: -1.5707963267948966 rad @@ -207475,10 +207566,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25119 + ent: 24974 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25120 + - uid: 24975 components: - type: Transform rot: 1.5707963267948966 rad @@ -207495,10 +207586,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25121 + ent: 24976 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25122 + - uid: 24977 components: - type: Transform rot: 3.141592653589793 rad @@ -207515,10 +207606,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25123 + ent: 24978 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25124 + - uid: 24979 components: - type: Transform pos: -25.5,57.5 @@ -207534,10 +207625,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25125 + ent: 24980 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25126 + - uid: 24981 components: - type: Transform rot: 1.5707963267948966 rad @@ -207554,10 +207645,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25127 + ent: 24982 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25128 + - uid: 24983 components: - type: Transform pos: -32.5,-69.5 @@ -207573,10 +207664,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25129 + ent: 24984 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25130 + - uid: 24985 components: - type: Transform rot: 1.5707963267948966 rad @@ -207593,10 +207684,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25131 + ent: 24986 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25132 + - uid: 24987 components: - type: Transform pos: -16.5,-61.5 @@ -207612,10 +207703,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25133 + ent: 24988 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25134 + - uid: 24989 components: - type: Transform pos: -8.5,-54.5 @@ -207631,10 +207722,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25135 + ent: 24990 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25136 + - uid: 24991 components: - type: Transform pos: 5.5,-54.5 @@ -207650,10 +207741,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25137 + ent: 24992 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25138 + - uid: 24993 components: - type: Transform rot: 1.5707963267948966 rad @@ -207670,10 +207761,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25139 + ent: 24994 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25140 + - uid: 24995 components: - type: Transform rot: 3.141592653589793 rad @@ -207690,10 +207781,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25141 + ent: 24996 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25142 + - uid: 24997 components: - type: Transform rot: 3.141592653589793 rad @@ -207710,10 +207801,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25143 + ent: 24998 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25144 + - uid: 24999 components: - type: Transform rot: 3.141592653589793 rad @@ -207730,10 +207821,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25145 + ent: 25000 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25146 + - uid: 25001 components: - type: Transform rot: 3.141592653589793 rad @@ -207750,10 +207841,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25147 + ent: 25002 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25148 + - uid: 25003 components: - type: Transform pos: 37.5,-46.5 @@ -207769,10 +207860,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25149 + ent: 25004 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25150 + - uid: 25005 components: - type: Transform pos: 44.5,-46.5 @@ -207788,10 +207879,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25151 + ent: 25006 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25152 + - uid: 25007 components: - type: Transform rot: 1.5707963267948966 rad @@ -207808,10 +207899,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25153 + ent: 25008 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25154 + - uid: 25009 components: - type: Transform rot: 1.5707963267948966 rad @@ -207828,10 +207919,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25155 + ent: 25010 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25156 + - uid: 25011 components: - type: Transform rot: 1.5707963267948966 rad @@ -207848,10 +207939,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25157 + ent: 25012 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25158 + - uid: 25013 components: - type: Transform rot: 3.141592653589793 rad @@ -207868,10 +207959,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25159 + ent: 25014 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25160 + - uid: 25015 components: - type: Transform rot: 3.141592653589793 rad @@ -207888,10 +207979,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25161 + ent: 25016 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25162 + - uid: 25017 components: - type: Transform rot: 3.141592653589793 rad @@ -207908,10 +207999,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25163 + ent: 25018 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25164 + - uid: 25019 components: - type: Transform rot: -1.5707963267948966 rad @@ -207928,23 +208019,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25165 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 25847 - components: - - type: Transform - pos: -63.5,-28.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 25015 + ent: 25020 - type: ApcPowerReceiver powerLoad: 60 - - uid: 26979 + - uid: 26823 components: - type: Transform rot: -1.5707963267948966 rad @@ -207952,7 +208030,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26980 + - uid: 26824 components: - type: Transform pos: 11.5,70.5 @@ -207968,10 +208046,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26981 + ent: 26825 - type: ApcPowerReceiver powerLoad: 100 - - uid: 26982 + - uid: 26826 components: - type: Transform pos: -39.5,29.5 @@ -207987,10 +208065,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26983 + ent: 26827 - type: ApcPowerReceiver powerLoad: 100 - - uid: 26984 + - uid: 26828 components: - type: Transform rot: 3.141592653589793 rad @@ -207998,111 +208076,111 @@ entities: parent: 2 - proto: PoweredlightExterior entities: - - uid: 26985 + - uid: 26829 components: - type: Transform pos: -69.5,25.5 parent: 2 - proto: PoweredlightLED entities: - - uid: 26986 + - uid: 26830 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,22.5 parent: 2 - - uid: 26987 + - uid: 26831 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,27.5 parent: 2 - - uid: 26988 + - uid: 26832 components: - type: Transform pos: -62.5,38.5 parent: 2 - - uid: 26989 + - uid: 26833 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,26.5 parent: 2 - - uid: 26990 + - uid: 26834 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,51.5 parent: 2 - - uid: 26991 + - uid: 26835 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,47.5 parent: 2 - - uid: 26992 + - uid: 26836 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,43.5 parent: 2 - - uid: 26993 + - uid: 26837 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,35.5 parent: 2 - - uid: 26994 + - uid: 26838 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,31.5 parent: 2 - - uid: 26995 + - uid: 26839 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,24.5 parent: 2 - - uid: 26996 + - uid: 26840 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,20.5 parent: 2 - - uid: 38538 + - uid: 38365 components: - type: Transform pos: 2.5,1.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38539 + - uid: 38366 components: - type: Transform pos: 0.5,1.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38540 + - uid: 38367 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38541 + - uid: 38368 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - proto: PoweredlightOrange entities: - - uid: 26997 + - uid: 26841 components: - type: Transform rot: 3.141592653589793 rad @@ -208110,19 +208188,19 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 26998 + - uid: 26842 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,38.5 parent: 2 - - uid: 26999 + - uid: 26843 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 - - uid: 27000 + - uid: 26844 components: - type: Transform rot: -1.5707963267948966 rad @@ -208130,17 +208208,17 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 27001 + - uid: 26845 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 27002 + - uid: 26846 components: - type: Transform pos: 0.49999997,-4.5 parent: 2 - - uid: 27003 + - uid: 26847 components: - type: Transform pos: -1.5,7.5 @@ -208149,17 +208227,17 @@ entities: radius: 8 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27004 + - uid: 26848 components: - type: Transform pos: -85.5,13.5 parent: 2 - - uid: 27005 + - uid: 26849 components: - type: Transform pos: -85.5,15.5 parent: 2 - - uid: 27006 + - uid: 26850 components: - type: Transform pos: 0.5,7.5 @@ -208168,54 +208246,54 @@ entities: radius: 8 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27007 + - uid: 26851 components: - type: Transform pos: -106.5,22.5 parent: 2 - - uid: 27008 + - uid: 26852 components: - type: Transform pos: -106.5,24.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 27009 + - uid: 26853 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-36.5 parent: 2 - - uid: 27010 + - uid: 26854 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-78.5 parent: 2 - - uid: 27011 + - uid: 26855 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,8.5 parent: 2 - - uid: 27012 + - uid: 26856 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,4.5 parent: 2 - - uid: 27013 + - uid: 26857 components: - type: Transform pos: 69.5,10.5 parent: 2 - - uid: 27014 + - uid: 26858 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 27015 + - uid: 26859 components: - type: Transform rot: 1.5707963267948966 rad @@ -208223,7 +208301,7 @@ entities: parent: 2 - proto: PoweredlightSodium entities: - - uid: 27016 + - uid: 26860 components: - type: Transform rot: 3.141592653589793 rad @@ -208231,122 +208309,122 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 27017 + - uid: 26861 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 27018 + - uid: 26862 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 2 - - uid: 27019 + - uid: 26863 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-10.5 parent: 2 - - uid: 27020 + - uid: 26864 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 2 - - uid: 27021 + - uid: 26865 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,84.5 parent: 2 - - uid: 27022 + - uid: 26866 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-2.5 parent: 2 - - uid: 27023 + - uid: 26867 components: - type: Transform pos: 96.5,7.5 parent: 2 - - uid: 27024 + - uid: 26868 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,-2.5 parent: 2 - - uid: 27025 + - uid: 26869 components: - type: Transform pos: -26.5,77.5 parent: 2 - - uid: 27026 + - uid: 26870 components: - type: Transform pos: -32.5,77.5 parent: 2 - - uid: 27027 + - uid: 26871 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,84.5 parent: 2 - - uid: 27028 + - uid: 26872 components: - type: Transform pos: -14.5,77.5 parent: 2 - - uid: 27029 + - uid: 26873 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 27030 + - uid: 26874 components: - type: Transform pos: -8.5,77.5 parent: 2 - - uid: 27031 + - uid: 26875 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-59.5 parent: 2 - - uid: 27032 + - uid: 26876 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-35.5 parent: 2 - - uid: 27033 + - uid: 26877 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,60.5 parent: 2 - - uid: 27034 + - uid: 26878 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,74.5 parent: 2 - - uid: 27035 + - uid: 26879 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,45.5 parent: 2 - - uid: 27036 + - uid: 26880 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,65.5 parent: 2 - - uid: 27037 + - uid: 26881 components: - type: Transform rot: 3.141592653589793 rad @@ -208354,43 +208432,43 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27038 + - uid: 26882 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-5.5 parent: 2 - - uid: 27039 + - uid: 26883 components: - type: Transform pos: 9.5,-76.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27040 + - uid: 26884 components: - type: Transform pos: 69.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27041 + - uid: 26885 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,29.5 parent: 2 - - uid: 27042 + - uid: 26886 components: - type: Transform pos: -59.5,64.5 parent: 2 - - uid: 27043 + - uid: 26887 components: - type: Transform pos: -59.5,61.5 parent: 2 - - uid: 27044 + - uid: 26888 components: - type: Transform rot: 1.5707963267948966 rad @@ -208398,31 +208476,31 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27045 + - uid: 26889 components: - type: Transform pos: 39.5,30.5 parent: 2 - - uid: 27046 + - uid: 26890 components: - type: Transform pos: -15.5,5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27047 + - uid: 26891 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-0.5 parent: 2 - - uid: 27048 + - uid: 26892 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,19.5 parent: 2 - - uid: 27049 + - uid: 26893 components: - type: Transform rot: 3.141592653589793 rad @@ -208430,7 +208508,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27050 + - uid: 26894 components: - type: Transform rot: 1.5707963267948966 rad @@ -208438,7 +208516,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27051 + - uid: 26895 components: - type: Transform rot: 3.141592653589793 rad @@ -208446,7 +208524,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27052 + - uid: 26896 components: - type: Transform rot: -1.5707963267948966 rad @@ -208454,12 +208532,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27053 + - uid: 26897 components: - type: Transform pos: 74.5,3.5 parent: 2 - - uid: 27054 + - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad @@ -208467,28 +208545,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27055 + - uid: 26899 components: - type: Transform pos: 38.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27056 + - uid: 26900 components: - type: Transform pos: 66.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27057 + - uid: 26901 components: - type: Transform pos: -13.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27058 + - uid: 26902 components: - type: Transform rot: 3.141592653589793 rad @@ -208496,35 +208574,35 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27059 + - uid: 26903 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 27060 + - uid: 26904 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,29.5 parent: 2 - - uid: 27061 + - uid: 26905 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,15.5 parent: 2 - - uid: 27062 + - uid: 26906 components: - type: Transform pos: 60.5,19.5 parent: 2 - - uid: 27063 + - uid: 26907 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,15.5 parent: 2 - - uid: 27064 + - uid: 26908 components: - type: Transform rot: 3.141592653589793 rad @@ -208532,7 +208610,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27065 + - uid: 26909 components: - type: Transform rot: 1.5707963267948966 rad @@ -208540,20 +208618,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27066 + - uid: 26910 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-3.5 parent: 2 - - uid: 27067 + - uid: 26911 components: - type: Transform pos: -53.5,6.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27068 + - uid: 26912 components: - type: Transform rot: 3.141592653589793 rad @@ -208561,13 +208639,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27069 + - uid: 26913 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-43.5 parent: 2 - - uid: 27070 + - uid: 26914 components: - type: Transform rot: -1.5707963267948966 rad @@ -208575,7 +208653,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27071 + - uid: 26915 components: - type: Transform rot: 3.141592653589793 rad @@ -208583,12 +208661,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27072 + - uid: 26916 components: - type: Transform pos: 15.5,79.5 parent: 2 - - uid: 27073 + - uid: 26917 components: - type: Transform rot: 1.5707963267948966 rad @@ -208596,14 +208674,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27074 + - uid: 26918 components: - type: Transform pos: -77.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27075 + - uid: 26919 components: - type: Transform rot: 1.5707963267948966 rad @@ -208611,14 +208689,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27076 + - uid: 26920 components: - type: Transform pos: -17.5,-79.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27077 + - uid: 26921 components: - type: Transform rot: 3.141592653589793 rad @@ -208626,21 +208704,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27078 + - uid: 26922 components: - type: Transform pos: 3.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27079 + - uid: 26923 components: - type: Transform pos: 11.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27080 + - uid: 26924 components: - type: Transform rot: 3.141592653589793 rad @@ -208648,7 +208726,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27081 + - uid: 26925 components: - type: Transform rot: 3.141592653589793 rad @@ -208656,7 +208734,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27082 + - uid: 26926 components: - type: Transform rot: 3.141592653589793 rad @@ -208664,7 +208742,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27083 + - uid: 26927 components: - type: Transform rot: -1.5707963267948966 rad @@ -208672,17 +208750,17 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27084 + - uid: 26928 components: - type: Transform pos: -77.5,-18.5 parent: 2 - - uid: 27085 + - uid: 26929 components: - type: Transform pos: -32.5,43.5 parent: 2 - - uid: 27086 + - uid: 26930 components: - type: Transform rot: -1.5707963267948966 rad @@ -208690,7 +208768,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27087 + - uid: 26931 components: - type: Transform rot: 3.141592653589793 rad @@ -208698,7 +208776,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27088 + - uid: 26932 components: - type: Transform rot: 3.141592653589793 rad @@ -208706,7 +208784,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27089 + - uid: 26933 components: - type: Transform rot: 3.141592653589793 rad @@ -208714,7 +208792,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27090 + - uid: 26934 components: - type: Transform rot: 3.141592653589793 rad @@ -208722,7 +208800,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27091 + - uid: 26935 components: - type: Transform rot: 3.141592653589793 rad @@ -208730,7 +208808,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27092 + - uid: 26936 components: - type: Transform rot: 3.141592653589793 rad @@ -208738,14 +208816,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27093 + - uid: 26937 components: - type: Transform pos: 5.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27094 + - uid: 26938 components: - type: Transform rot: -1.5707963267948966 rad @@ -208753,13 +208831,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27095 + - uid: 26939 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-40.5 parent: 2 - - uid: 27096 + - uid: 26940 components: - type: Transform rot: 1.5707963267948966 rad @@ -208767,21 +208845,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27097 + - uid: 26941 components: - type: Transform pos: 15.5,88.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27098 + - uid: 26942 components: - type: Transform pos: 9.5,90.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27099 + - uid: 26943 components: - type: Transform rot: 1.5707963267948966 rad @@ -208789,7 +208867,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27100 + - uid: 26944 components: - type: Transform rot: -1.5707963267948966 rad @@ -208797,24 +208875,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27101 + - uid: 26945 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 27102 + - uid: 26946 components: - type: Transform pos: -9.5,34.5 parent: 2 - - uid: 27103 + - uid: 26947 components: - type: Transform pos: -78.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27104 + - uid: 26948 components: - type: Transform rot: 3.141592653589793 rad @@ -208822,7 +208900,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27105 + - uid: 26949 components: - type: Transform rot: 3.141592653589793 rad @@ -208830,7 +208908,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27106 + - uid: 26950 components: - type: Transform rot: -1.5707963267948966 rad @@ -208838,7 +208916,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27107 + - uid: 26951 components: - type: Transform rot: 3.141592653589793 rad @@ -208846,7 +208924,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27108 + - uid: 26952 components: - type: Transform rot: 3.141592653589793 rad @@ -208854,14 +208932,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27109 + - uid: 26953 components: - type: Transform pos: 14.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27110 + - uid: 26954 components: - type: Transform rot: 3.141592653589793 rad @@ -208869,7 +208947,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27111 + - uid: 26955 components: - type: Transform rot: 3.141592653589793 rad @@ -208877,18 +208955,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27112 + - uid: 26956 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - uid: 27113 + - uid: 26957 components: - type: Transform pos: -2.5,51.5 parent: 2 - - uid: 27114 + - uid: 26958 components: - type: Transform rot: 3.141592653589793 rad @@ -208896,7 +208974,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27115 + - uid: 26959 components: - type: Transform rot: 3.141592653589793 rad @@ -208904,21 +208982,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27116 + - uid: 26960 components: - type: Transform pos: 21.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27117 + - uid: 26961 components: - type: Transform pos: 43.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27118 + - uid: 26962 components: - type: Transform rot: -1.5707963267948966 rad @@ -208926,7 +209004,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27119 + - uid: 26963 components: - type: Transform rot: -1.5707963267948966 rad @@ -208934,13 +209012,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27120 + - uid: 26964 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-40.5 parent: 2 - - uid: 27121 + - uid: 26965 components: - type: Transform rot: -1.5707963267948966 rad @@ -208948,14 +209026,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27122 + - uid: 26966 components: - type: Transform pos: 13.5,88.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27123 + - uid: 26967 components: - type: Transform rot: 3.141592653589793 rad @@ -208963,14 +209041,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27124 + - uid: 26968 components: - type: Transform pos: -23.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27125 + - uid: 26969 components: - type: Transform rot: 3.141592653589793 rad @@ -208978,13 +209056,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27126 + - uid: 26970 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 27127 + - uid: 26971 components: - type: Transform rot: 3.141592653589793 rad @@ -208992,7 +209070,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27128 + - uid: 26972 components: - type: Transform rot: 3.141592653589793 rad @@ -209000,39 +209078,39 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27129 + - uid: 26973 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,27.5 parent: 2 - - uid: 27130 + - uid: 26974 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,35.5 parent: 2 - - uid: 27131 + - uid: 26975 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,27.5 parent: 2 - - uid: 27132 + - uid: 26976 components: - type: Transform pos: -57.5,58.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27133 + - uid: 26977 components: - type: Transform pos: -0.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27134 + - uid: 26978 components: - type: Transform rot: -1.5707963267948966 rad @@ -209040,12 +209118,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27135 + - uid: 26979 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 27136 + - uid: 26980 components: - type: Transform rot: 3.141592653589793 rad @@ -209053,69 +209131,69 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27137 + - uid: 26981 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,3.5 parent: 2 - - uid: 27138 + - uid: 26982 components: - type: Transform pos: -58.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27139 + - uid: 26983 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,3.5 parent: 2 - - uid: 27140 + - uid: 26984 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,3.5 parent: 2 - - uid: 27141 + - uid: 26985 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,26.5 parent: 2 - - uid: 27142 + - uid: 26986 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,41.5 parent: 2 - - uid: 27143 + - uid: 26987 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,40.5 parent: 2 - - uid: 27144 + - uid: 26988 components: - type: Transform pos: 11.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27145 + - uid: 26989 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,44.5 parent: 2 - - uid: 27146 + - uid: 26990 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-52.5 parent: 2 - - uid: 27147 + - uid: 26991 components: - type: Transform rot: -1.5707963267948966 rad @@ -209123,41 +209201,41 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27148 + - uid: 26992 components: - type: Transform pos: -40.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27149 + - uid: 26993 components: - type: Transform pos: -50.5,6.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27150 + - uid: 26994 components: - type: Transform pos: -55.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27151 + - uid: 26995 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-9.5 parent: 2 - - uid: 27152 + - uid: 26996 components: - type: Transform pos: 43.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27153 + - uid: 26997 components: - type: Transform rot: 3.141592653589793 rad @@ -209165,7 +209243,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27154 + - uid: 26998 components: - type: Transform rot: 3.141592653589793 rad @@ -209173,7 +209251,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27155 + - uid: 26999 components: - type: Transform rot: 3.141592653589793 rad @@ -209181,13 +209259,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27156 + - uid: 27000 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,26.5 parent: 2 - - uid: 27157 + - uid: 27001 components: - type: Transform rot: 3.141592653589793 rad @@ -209195,14 +209273,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27158 + - uid: 27002 components: - type: Transform pos: -15.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27159 + - uid: 27003 components: - type: Transform rot: 1.5707963267948966 rad @@ -209210,7 +209288,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27160 + - uid: 27004 components: - type: Transform rot: 1.5707963267948966 rad @@ -209218,7 +209296,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27161 + - uid: 27005 components: - type: Transform rot: 1.5707963267948966 rad @@ -209226,7 +209304,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27162 + - uid: 27006 components: - type: Transform rot: -1.5707963267948966 rad @@ -209234,14 +209312,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27163 + - uid: 27007 components: - type: Transform pos: 67.5,-40.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27164 + - uid: 27008 components: - type: Transform rot: 1.5707963267948966 rad @@ -209249,14 +209327,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27165 + - uid: 27009 components: - type: Transform pos: 43.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27166 + - uid: 27010 components: - type: Transform rot: 1.5707963267948966 rad @@ -209264,7 +209342,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27167 + - uid: 27011 components: - type: Transform rot: 3.141592653589793 rad @@ -209272,13 +209350,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27168 + - uid: 27012 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,55.5 parent: 2 - - uid: 27169 + - uid: 27013 components: - type: Transform rot: 1.5707963267948966 rad @@ -209286,37 +209364,37 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27170 + - uid: 27014 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,26.5 parent: 2 - - uid: 27171 + - uid: 27015 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,26.5 parent: 2 - - uid: 27172 + - uid: 27016 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,34.5 parent: 2 - - uid: 27173 + - uid: 27017 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,31.5 parent: 2 - - uid: 27174 + - uid: 27018 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,29.5 parent: 2 - - uid: 27175 + - uid: 27019 components: - type: Transform rot: 1.5707963267948966 rad @@ -209324,7 +209402,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27176 + - uid: 27020 components: - type: Transform rot: -1.5707963267948966 rad @@ -209332,7 +209410,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27177 + - uid: 27021 components: - type: Transform rot: 3.141592653589793 rad @@ -209340,7 +209418,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27178 + - uid: 27022 components: - type: Transform rot: -1.5707963267948966 rad @@ -209348,21 +209426,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27179 + - uid: 27023 components: - type: Transform pos: -54.5,18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27180 + - uid: 27024 components: - type: Transform pos: -51.5,18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27181 + - uid: 27025 components: - type: Transform rot: 3.141592653589793 rad @@ -209370,7 +209448,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27182 + - uid: 27026 components: - type: Transform rot: 3.141592653589793 rad @@ -209378,7 +209456,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27183 + - uid: 27027 components: - type: Transform rot: -1.5707963267948966 rad @@ -209386,7 +209464,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27184 + - uid: 27028 components: - type: Transform rot: -1.5707963267948966 rad @@ -209394,7 +209472,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27185 + - uid: 27029 components: - type: Transform rot: -1.5707963267948966 rad @@ -209402,7 +209480,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27186 + - uid: 27030 components: - type: Transform rot: 3.141592653589793 rad @@ -209410,7 +209488,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27187 + - uid: 27031 components: - type: Transform rot: 1.5707963267948966 rad @@ -209418,7 +209496,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27188 + - uid: 27032 components: - type: Transform rot: 1.5707963267948966 rad @@ -209426,7 +209504,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27189 + - uid: 27033 components: - type: Transform rot: 1.5707963267948966 rad @@ -209434,7 +209512,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27190 + - uid: 27034 components: - type: Transform rot: 3.141592653589793 rad @@ -209442,7 +209520,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27191 + - uid: 27035 components: - type: Transform rot: 1.5707963267948966 rad @@ -209450,7 +209528,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27192 + - uid: 27036 components: - type: Transform rot: 3.141592653589793 rad @@ -209458,240 +209536,240 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27193 + - uid: 27037 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-59.5 parent: 2 - - uid: 27194 + - uid: 27038 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,26.5 parent: 2 - - uid: 27195 + - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,13.5 parent: 2 - - uid: 27196 + - uid: 27040 components: - type: Transform pos: -77.5,1.5 parent: 2 - - uid: 27197 + - uid: 27041 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-1.5 parent: 2 - - uid: 27198 + - uid: 27042 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,84.5 parent: 2 - - uid: 27199 + - uid: 27043 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,84.5 parent: 2 - - uid: 27200 + - uid: 27044 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,84.5 parent: 2 - - uid: 27201 + - uid: 27045 components: - type: Transform pos: 42.5,5.5 parent: 2 - - uid: 27202 + - uid: 27046 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,12.5 parent: 2 - - uid: 27203 + - uid: 27047 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,5.5 parent: 2 - - uid: 27204 + - uid: 27048 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-2.5 parent: 2 - - uid: 27205 + - uid: 27049 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-2.5 parent: 2 - - uid: 27206 + - uid: 27050 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-2.5 parent: 2 - - uid: 27207 + - uid: 27051 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-4.5 parent: 2 - - uid: 27208 + - uid: 27052 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,6.5 parent: 2 - - uid: 27209 + - uid: 27053 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,6.5 parent: 2 - - uid: 27210 + - uid: 27054 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,6.5 parent: 2 - - uid: 27211 + - uid: 27055 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,24.5 parent: 2 - - uid: 27212 + - uid: 27056 components: - type: Transform pos: 3.5,77.5 parent: 2 - - uid: 27213 + - uid: 27057 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,9.5 parent: 2 - - uid: 27214 + - uid: 27058 components: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 27215 + - uid: 27059 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 - - uid: 27216 + - uid: 27060 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-3.5 parent: 2 - - uid: 27217 + - uid: 27061 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 - - uid: 27218 + - uid: 27062 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,16.5 parent: 2 - - uid: 27219 + - uid: 27063 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 2 - - uid: 27220 + - uid: 27064 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 39580 + - uid: 39407 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,0.5 - parent: 38584 - - uid: 39581 + parent: 38411 + - uid: 39408 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 39582 + parent: 38411 + - uid: 39409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 38584 - - uid: 39583 + parent: 38411 + - uid: 39410 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-8.5 - parent: 38584 - - uid: 39584 + parent: 38411 + - uid: 39411 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,6.5 - parent: 38584 - - uid: 39585 + parent: 38411 + - uid: 39412 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,0.5 - parent: 38584 - - uid: 39586 + parent: 38411 + - uid: 39413 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 - parent: 38584 - - uid: 39587 + parent: 38411 + - uid: 39414 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 - parent: 38584 - - uid: 39588 + parent: 38411 + - uid: 39415 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 39589 + parent: 38411 + - uid: 39416 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 39590 + parent: 38411 + - uid: 39417 components: - type: Transform pos: -13.5,13.5 - parent: 38584 - - uid: 39591 + parent: 38411 + - uid: 39418 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 - parent: 38584 + parent: 38411 - proto: PoweredSmallLightEmpty entities: - - uid: 27221 + - uid: 27065 components: - type: Transform rot: 3.141592653589793 rad @@ -209699,13 +209777,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27222 + - uid: 27066 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-37.5 parent: 2 - - uid: 27223 + - uid: 27067 components: - type: Transform rot: 3.141592653589793 rad @@ -209713,2286 +209791,2286 @@ entities: parent: 2 - proto: PrinterDoc entities: - - uid: 27224 + - uid: 27068 components: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 27225 + - uid: 27069 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 27226 + - uid: 27070 components: - type: Transform pos: 36.5,2.5 parent: 2 - proto: Protolathe entities: - - uid: 27227 + - uid: 27071 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 27228 + - uid: 27072 components: - type: Transform pos: -8.5,-39.5 parent: 2 - proto: PsychBed entities: - - uid: 27229 + - uid: 27073 components: - type: Transform pos: 18.5,-52.5 parent: 2 - proto: PuddleEgg entities: - - uid: 27230 + - uid: 27074 components: - type: Transform pos: 56.5,-38.5 parent: 2 - proto: Rack entities: - - uid: 27231 + - uid: 27075 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,17.5 parent: 2 - - uid: 27232 + - uid: 27076 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,12.5 parent: 2 - - uid: 27233 + - uid: 27077 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 27234 + - uid: 27078 components: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 27235 + - uid: 27079 components: - type: Transform pos: -40.5,45.5 parent: 2 - - uid: 27236 + - uid: 27080 components: - type: Transform pos: -40.5,44.5 parent: 2 - - uid: 27237 + - uid: 27081 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,7.5 parent: 2 - - uid: 27238 + - uid: 27082 components: - type: Transform pos: 95.5,6.5 parent: 2 - - uid: 27239 + - uid: 27083 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-47.5 parent: 2 - - uid: 27240 + - uid: 27084 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-37.5 parent: 2 - - uid: 27241 + - uid: 27085 components: - type: Transform pos: -30.5,-69.5 parent: 2 - - uid: 27242 + - uid: 27086 components: - type: Transform pos: -49.5,-32.5 parent: 2 - - uid: 27243 + - uid: 27087 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-55.5 parent: 2 - - uid: 27244 + - uid: 27088 components: - type: Transform pos: -29.5,-69.5 parent: 2 - - uid: 27245 + - uid: 27089 components: - type: Transform pos: -50.5,-32.5 parent: 2 - - uid: 27246 + - uid: 27090 components: - type: Transform pos: -55.5,-37.5 parent: 2 - - uid: 27247 + - uid: 27091 components: - type: Transform pos: -51.5,-32.5 parent: 2 - - uid: 27248 + - uid: 27092 components: - type: Transform pos: -47.5,-32.5 parent: 2 - - uid: 27249 + - uid: 27093 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 27250 + - uid: 27094 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,36.5 parent: 2 - - uid: 27251 + - uid: 27095 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,36.5 parent: 2 - - uid: 27252 + - uid: 27096 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,36.5 parent: 2 - - uid: 27253 + - uid: 27097 components: - type: Transform pos: 9.5,72.5 parent: 2 - - uid: 27254 + - uid: 27098 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,8.5 parent: 2 - - uid: 27255 + - uid: 27099 components: - type: Transform pos: 50.5,5.5 parent: 2 - - uid: 27256 + - uid: 27100 components: - type: Transform pos: -52.5,32.5 parent: 2 - - uid: 27257 + - uid: 27101 components: - type: Transform pos: -10.5,-43.5 parent: 2 - - uid: 27258 + - uid: 27102 components: - type: Transform pos: -80.5,13.5 parent: 2 - - uid: 27259 + - uid: 27103 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-4.5 parent: 2 - - uid: 27261 + - uid: 27104 components: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 27262 + - uid: 27105 components: - type: Transform pos: -26.5,-47.5 parent: 2 - - uid: 27263 + - uid: 27106 components: - type: Transform pos: -4.5,26.5 parent: 2 - - uid: 27264 + - uid: 27107 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 27265 + - uid: 27108 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-60.5 parent: 2 - - uid: 27266 + - uid: 27109 components: - type: Transform pos: 40.5,-31.5 parent: 2 - - uid: 27267 + - uid: 27110 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 27268 + - uid: 27111 components: - type: Transform pos: -64.5,-31.5 parent: 2 - - uid: 27269 + - uid: 27112 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,1.5 parent: 2 - - uid: 27270 + - uid: 27113 components: - type: Transform pos: 20.5,65.5 parent: 2 - - uid: 27271 + - uid: 27114 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 27272 + - uid: 27115 components: - type: Transform pos: -63.5,4.5 parent: 2 - - uid: 27273 + - uid: 27116 components: - type: Transform pos: 71.5,-4.5 parent: 2 - - uid: 27274 + - uid: 27117 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-43.5 parent: 2 - - uid: 27275 + - uid: 27118 components: - type: Transform pos: -34.5,-56.5 parent: 2 - - uid: 27276 + - uid: 27119 components: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 27277 + - uid: 27120 components: - type: Transform pos: -60.5,20.5 parent: 2 - - uid: 27278 + - uid: 27121 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 27279 + - uid: 27122 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 27280 + - uid: 27123 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-27.5 parent: 2 - - uid: 27281 + - uid: 27124 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,9.5 parent: 2 - - uid: 27282 + - uid: 27125 components: - type: Transform pos: -34.5,13.5 parent: 2 - - uid: 27283 + - uid: 27126 components: - type: Transform pos: -77.5,-19.5 parent: 2 - - uid: 27284 + - uid: 27127 components: - type: Transform pos: 15.5,-54.5 parent: 2 - - uid: 27285 + - uid: 27128 components: - type: Transform pos: 10.5,74.5 parent: 2 - - uid: 27286 + - uid: 27129 components: - type: Transform pos: 23.5,57.5 parent: 2 - - uid: 27287 + - uid: 27130 components: - type: Transform pos: 43.5,-38.5 parent: 2 - - uid: 27288 + - uid: 27131 components: - type: Transform pos: 34.5,-18.5 parent: 2 - - uid: 27289 + - uid: 27132 components: - type: Transform pos: -28.5,13.5 parent: 2 - - uid: 27290 + - uid: 27133 components: - type: Transform pos: -28.5,10.5 parent: 2 - - uid: 27291 + - uid: 27134 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-59.5 parent: 2 - - uid: 27292 + - uid: 27135 components: - type: Transform pos: -36.5,13.5 parent: 2 - - uid: 27293 + - uid: 27136 components: - type: Transform pos: -34.5,11.5 parent: 2 - - uid: 27294 + - uid: 27137 components: - type: Transform pos: -49.5,-12.5 parent: 2 - - uid: 27295 + - uid: 27138 components: - type: Transform pos: -61.5,13.5 parent: 2 - - uid: 27296 + - uid: 27139 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 27297 + - uid: 27140 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,26.5 parent: 2 - - uid: 27298 + - uid: 27141 components: - type: Transform pos: 9.5,84.5 parent: 2 - - uid: 27299 + - uid: 27142 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 27300 + - uid: 27143 components: - type: Transform pos: -3.5,13.5 parent: 2 - - uid: 27301 + - uid: 27144 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 27302 + - uid: 27145 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 27303 + - uid: 27146 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 27304 + - uid: 27147 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 27305 + - uid: 27148 components: - type: Transform pos: 20.5,10.5 parent: 2 - - uid: 27306 + - uid: 27149 components: - type: Transform pos: -15.5,-12.5 parent: 2 - - uid: 27307 + - uid: 27150 components: - type: Transform pos: -40.5,48.5 parent: 2 - - uid: 27308 + - uid: 27151 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,8.5 parent: 2 - - uid: 27309 + - uid: 27152 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 27310 + - uid: 27153 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 27311 + - uid: 27154 components: - type: Transform pos: -15.5,-14.5 parent: 2 - - uid: 27312 + - uid: 27155 components: - type: Transform pos: 20.5,-18.5 parent: 2 - - uid: 27313 + - uid: 27156 components: - type: Transform pos: -36.5,59.5 parent: 2 - - uid: 27314 + - uid: 27157 components: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 27315 + - uid: 27158 components: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 27316 + - uid: 27159 components: - type: Transform pos: 20.5,-17.5 parent: 2 - - uid: 27317 + - uid: 27160 components: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 27318 + - uid: 27161 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 27319 + - uid: 27162 components: - type: Transform pos: 61.5,9.5 parent: 2 - - uid: 27320 + - uid: 27163 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 27321 + - uid: 27164 components: - type: Transform pos: -36.5,19.5 parent: 2 - - uid: 27322 + - uid: 27165 components: - type: Transform pos: 4.5,42.5 parent: 2 - - uid: 27323 + - uid: 27166 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 27324 + - uid: 27167 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,9.5 parent: 2 - - uid: 27325 + - uid: 27168 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,9.5 parent: 2 - - uid: 27326 + - uid: 27169 components: - type: Transform pos: -32.5,-35.5 parent: 2 - - uid: 27327 + - uid: 27170 components: - type: Transform pos: 34.5,-29.5 parent: 2 - - uid: 27328 + - uid: 27171 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,9.5 parent: 2 - - uid: 27329 + - uid: 27172 components: - type: Transform pos: 43.5,-43.5 parent: 2 - - uid: 27330 + - uid: 27173 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,8.5 parent: 2 - - uid: 27331 + - uid: 27174 components: - type: Transform pos: 3.5,-48.5 parent: 2 - - uid: 27332 + - uid: 27175 components: - type: Transform pos: -61.5,11.5 parent: 2 - - uid: 27333 + - uid: 27176 components: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 27334 + - uid: 27177 components: - type: Transform pos: 53.5,-54.5 parent: 2 - - uid: 27335 + - uid: 27178 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-47.5 parent: 2 - - uid: 27336 + - uid: 27179 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 27337 + - uid: 27180 components: - type: Transform pos: -22.5,54.5 parent: 2 - - uid: 27338 + - uid: 27181 components: - type: Transform pos: 36.5,-4.5 parent: 2 - - uid: 27339 + - uid: 27182 components: - type: Transform pos: -39.5,56.5 parent: 2 - - uid: 27340 + - uid: 27183 components: - type: Transform pos: -37.5,25.5 parent: 2 - - uid: 27341 + - uid: 27184 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-41.5 parent: 2 - - uid: 27342 + - uid: 27185 components: - type: Transform pos: -57.5,-20.5 parent: 2 - - uid: 27343 + - uid: 27186 components: - type: Transform pos: -36.5,14.5 parent: 2 - - uid: 27344 + - uid: 27187 components: - type: Transform pos: -36.5,10.5 parent: 2 - - uid: 27345 + - uid: 27188 components: - type: Transform pos: -34.5,14.5 parent: 2 - - uid: 27346 + - uid: 27189 components: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 27347 + - uid: 27190 components: - type: Transform pos: 37.5,-1.5 parent: 2 - - uid: 27348 + - uid: 27191 components: - type: Transform pos: 43.5,-39.5 parent: 2 - - uid: 27349 + - uid: 27192 components: - type: Transform pos: -65.5,-31.5 parent: 2 - - uid: 27350 + - uid: 27193 components: - type: Transform pos: -29.5,-44.5 parent: 2 - - uid: 27351 + - uid: 27194 components: - type: Transform pos: -34.5,19.5 parent: 2 - - uid: 27352 + - uid: 27195 components: - type: Transform pos: 9.5,64.5 parent: 2 - - uid: 27353 + - uid: 27196 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 27354 + - uid: 27197 components: - type: Transform pos: -51.5,-22.5 parent: 2 - - uid: 27355 + - uid: 27198 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 - - uid: 27356 + - uid: 27199 components: - type: Transform pos: 49.5,-11.5 parent: 2 - - uid: 27357 + - uid: 27200 components: - type: Transform pos: -10.5,-57.5 parent: 2 - - uid: 27358 + - uid: 27201 components: - type: Transform pos: -53.5,38.5 parent: 2 - - uid: 27359 + - uid: 27202 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 27360 + - uid: 27203 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-15.5 parent: 2 - - uid: 27361 + - uid: 27204 components: - type: Transform pos: 12.5,62.5 parent: 2 - - uid: 27362 + - uid: 27205 components: - type: Transform pos: 11.5,70.5 parent: 2 - - uid: 27363 + - uid: 27206 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 - - uid: 27364 + - uid: 27207 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 - - uid: 27365 + - uid: 27208 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 27366 + - uid: 27209 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-46.5 parent: 2 - - uid: 27367 + - uid: 27210 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,10.5 parent: 2 - - uid: 27368 + - uid: 27211 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,7.5 parent: 2 - - uid: 27369 + - uid: 27212 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,8.5 parent: 2 - - uid: 27370 + - uid: 27213 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 27371 + - uid: 27214 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,10.5 parent: 2 - - uid: 27372 + - uid: 27215 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 27373 + - uid: 27216 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 27374 + - uid: 27217 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,10.5 parent: 2 - - uid: 27375 + - uid: 27218 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,7.5 parent: 2 - - uid: 27376 + - uid: 27219 components: - type: Transform pos: -41.5,63.5 parent: 2 - - uid: 27377 + - uid: 27220 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 - - uid: 27378 + - uid: 27221 components: - type: Transform pos: -36.5,-54.5 parent: 2 - - uid: 27379 + - uid: 27222 components: - type: Transform pos: 10.5,70.5 parent: 2 - - uid: 27380 + - uid: 27223 components: - type: Transform pos: -31.5,-79.5 parent: 2 - - uid: 27381 + - uid: 27224 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 27382 + - uid: 27225 components: - type: Transform pos: -39.5,-61.5 parent: 2 - - uid: 27383 + - uid: 27226 components: - type: Transform pos: -71.5,-20.5 parent: 2 - - uid: 27384 + - uid: 27227 components: - type: Transform pos: -70.5,-20.5 parent: 2 - - uid: 27385 + - uid: 27228 components: - type: Transform pos: 93.5,7.5 parent: 2 - - uid: 27386 + - uid: 27229 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-1.5 parent: 2 - - uid: 27387 + - uid: 27230 components: - type: Transform pos: 77.5,-1.5 parent: 2 - - uid: 27388 + - uid: 27231 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 27389 + - uid: 27232 components: - type: Transform pos: -42.5,-4.5 parent: 2 - - uid: 27390 + - uid: 27233 components: - type: Transform pos: -70.5,-31.5 parent: 2 - - uid: 27391 + - uid: 27234 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 27392 + - uid: 27235 components: - type: Transform pos: 52.5,-32.5 parent: 2 - - uid: 27393 + - uid: 27236 components: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 27394 + - uid: 27237 components: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 27395 + - uid: 27238 components: - type: Transform pos: 52.5,-42.5 parent: 2 - - uid: 27396 + - uid: 27239 components: - type: Transform pos: 51.5,-47.5 parent: 2 - - uid: 27397 + - uid: 27240 components: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 27398 + - uid: 27241 components: - type: Transform pos: 24.5,21.5 parent: 2 - - uid: 39592 + - uid: 39419 components: - type: Transform pos: -11.5,13.5 - parent: 38584 - - uid: 39593 + parent: 38411 + - uid: 39420 components: - type: Transform pos: 11.5,-1.5 - parent: 38584 - - uid: 39594 + parent: 38411 + - uid: 39421 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,36.5 - parent: 38584 - - uid: 39595 + parent: 38411 + - uid: 39422 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 - parent: 38584 - - uid: 39596 + parent: 38411 + - uid: 39423 components: - type: Transform pos: 10.5,0.5 - parent: 38584 - - uid: 39597 + parent: 38411 + - uid: 39424 components: - type: Transform pos: 9.5,0.5 - parent: 38584 - - uid: 39598 + parent: 38411 + - uid: 39425 components: - type: Transform pos: 11.5,-6.5 - parent: 38584 + parent: 38411 - proto: RadAutoInjector entities: - - uid: 886 + - uid: 878 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: RadiationCollectorNoTank entities: - - uid: 27399 + - uid: 27242 components: - type: Transform pos: -68.5,-12.5 parent: 2 - - uid: 27400 + - uid: 27243 components: - type: Transform pos: -67.5,-12.5 parent: 2 - proto: RadioHandheld entities: - - uid: 27401 + - uid: 27244 components: - type: Transform pos: -38.507664,16.494808 parent: 2 - type: Physics canCollide: False - - uid: 27402 + - uid: 27245 components: - type: Transform pos: -7.4282737,-61.33261 parent: 2 - type: Physics canCollide: False - - uid: 27403 + - uid: 27246 components: - type: Transform pos: -21.521952,8.828284 parent: 2 - type: Physics canCollide: False - - uid: 27404 + - uid: 27247 components: - type: Transform pos: -21.899271,0.773466 parent: 2 - - uid: 27405 + - uid: 27248 components: - type: Transform pos: -21.303202,8.797034 parent: 2 - type: Physics canCollide: False - - uid: 27406 + - uid: 27249 components: - type: Transform pos: 9.521468,46.629864 parent: 2 - type: Physics canCollide: False - - uid: 27407 + - uid: 27250 components: - type: Transform pos: -23.483797,-20.528557 parent: 2 - type: Physics canCollide: False - - uid: 27408 + - uid: 27251 components: - type: Transform pos: 72.508095,-44.48285 parent: 2 - - uid: 27409 + - uid: 27252 components: - type: Transform pos: 0.5350927,62.72263 parent: 2 - proto: Railing entities: - - uid: 27410 + - uid: 27253 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 27411 + - uid: 27254 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-79.5 parent: 2 - - uid: 27412 + - uid: 27255 components: - type: Transform pos: -31.5,-75.5 parent: 2 - - uid: 27413 + - uid: 27256 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 - - uid: 27414 + - uid: 27257 components: - type: Transform pos: -30.5,-75.5 parent: 2 - - uid: 27415 + - uid: 27258 components: - type: Transform pos: -33.5,-75.5 parent: 2 - - uid: 27416 + - uid: 27259 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-76.5 parent: 2 - - uid: 27417 + - uid: 27260 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,64.5 parent: 2 - - uid: 27418 + - uid: 27261 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,63.5 parent: 2 - - uid: 27419 + - uid: 27262 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,62.5 parent: 2 - - uid: 27420 + - uid: 27263 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,61.5 parent: 2 - - uid: 27421 + - uid: 27264 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-18.5 parent: 2 - - uid: 27422 + - uid: 27265 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-23.5 parent: 2 - - uid: 27423 + - uid: 27266 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 - - uid: 27424 + - uid: 27267 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-23.5 parent: 2 - - uid: 27425 + - uid: 27268 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-23.5 parent: 2 - - uid: 27426 + - uid: 27269 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-17.5 parent: 2 - - uid: 27427 + - uid: 27270 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-19.5 parent: 2 - - uid: 27428 + - uid: 27271 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-23.5 parent: 2 - - uid: 27429 + - uid: 27272 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-21.5 parent: 2 - - uid: 27430 + - uid: 27273 components: - type: Transform pos: 57.5,-16.5 parent: 2 - - uid: 27431 + - uid: 27274 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 27432 + - uid: 27275 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-21.5 parent: 2 - - uid: 27433 + - uid: 27276 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 - - uid: 27434 + - uid: 27277 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-20.5 parent: 2 - - uid: 27435 + - uid: 27278 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 27436 + - uid: 27279 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,44.5 parent: 2 - - uid: 27437 + - uid: 27280 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-15.5 parent: 2 - - uid: 27438 + - uid: 27281 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,44.5 parent: 2 - - uid: 27439 + - uid: 27282 components: - type: Transform pos: -62.5,-17.5 parent: 2 - - uid: 27440 + - uid: 27283 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-6.5 parent: 2 - - uid: 27441 + - uid: 27284 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-6.5 parent: 2 - - uid: 27442 + - uid: 27285 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-6.5 parent: 2 - - uid: 27443 + - uid: 27286 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 - - uid: 27444 + - uid: 27287 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,32.5 parent: 2 - - uid: 27445 + - uid: 27288 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,30.5 parent: 2 - - uid: 27446 + - uid: 27289 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,27.5 parent: 2 - - uid: 27447 + - uid: 27290 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,40.5 parent: 2 - - uid: 27448 + - uid: 27291 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,41.5 parent: 2 - - uid: 27449 + - uid: 27292 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,38.5 parent: 2 - - uid: 27450 + - uid: 27293 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 - - uid: 27451 + - uid: 27294 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,31.5 parent: 2 - - uid: 27452 + - uid: 27295 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,28.5 parent: 2 - - uid: 27453 + - uid: 27296 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 27454 + - uid: 27297 components: - type: Transform pos: -16.5,35.5 parent: 2 - - uid: 27455 + - uid: 27298 components: - type: Transform pos: -15.5,35.5 parent: 2 - - uid: 27456 + - uid: 27299 components: - type: Transform pos: -19.5,44.5 parent: 2 - - uid: 27457 + - uid: 27300 components: - type: Transform pos: -17.5,44.5 parent: 2 - - uid: 27458 + - uid: 27301 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,42.5 parent: 2 - - uid: 27459 + - uid: 27302 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,43.5 parent: 2 - - uid: 27460 + - uid: 27303 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,26.5 parent: 2 - - uid: 27461 + - uid: 27304 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,31.5 parent: 2 - - uid: 27462 + - uid: 27305 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,29.5 parent: 2 - - uid: 27463 + - uid: 27306 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,40.5 parent: 2 - - uid: 27464 + - uid: 27307 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,41.5 parent: 2 - - uid: 27465 + - uid: 27308 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,38.5 parent: 2 - - uid: 27466 + - uid: 27309 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,34.5 parent: 2 - - uid: 27467 + - uid: 27310 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,33.5 parent: 2 - - uid: 27468 + - uid: 27311 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-3.5 parent: 2 - - uid: 27469 + - uid: 27312 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,0.5 parent: 2 - - uid: 27470 + - uid: 27313 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,42.5 parent: 2 - - uid: 27471 + - uid: 27314 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,40.5 parent: 2 - - uid: 27472 + - uid: 27315 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,38.5 parent: 2 - - uid: 27473 + - uid: 27316 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,33.5 parent: 2 - - uid: 27474 + - uid: 27317 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 2 - - uid: 27475 + - uid: 27318 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,41.5 parent: 2 - - uid: 27476 + - uid: 27319 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,27.5 parent: 2 - - uid: 27477 + - uid: 27320 components: - type: Transform pos: -18.5,44.5 parent: 2 - - uid: 27478 + - uid: 27321 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-27.5 parent: 2 - - uid: 27479 + - uid: 27322 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-26.5 parent: 2 - - uid: 27480 + - uid: 27323 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-27.5 parent: 2 - - uid: 27481 + - uid: 27324 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-26.5 parent: 2 - - uid: 27482 + - uid: 27325 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,42.5 parent: 2 - - uid: 27483 + - uid: 27326 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-23.5 parent: 2 - - uid: 27484 + - uid: 27327 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 - - uid: 27485 + - uid: 27328 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 27486 + - uid: 27329 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-22.5 parent: 2 - - uid: 27487 + - uid: 27330 components: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 27488 + - uid: 27331 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-76.5 parent: 2 - - uid: 27489 + - uid: 27332 components: - type: Transform pos: -34.5,-75.5 parent: 2 - - uid: 27490 + - uid: 27333 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 - - uid: 27491 + - uid: 27334 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 - - uid: 27492 + - uid: 27335 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 27493 + - uid: 27336 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 27494 + - uid: 27337 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 27495 + - uid: 27338 components: - type: Transform pos: 0.50000006,-9.5 parent: 2 - - uid: 27496 + - uid: 27339 components: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 27497 + - uid: 27340 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 - - uid: 27498 + - uid: 27341 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 27499 + - uid: 27342 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,5.5 parent: 2 - - uid: 27500 + - uid: 27343 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,5.5 parent: 2 - - uid: 39599 + - uid: 39426 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-2.5 - parent: 38584 - - uid: 39600 + parent: 38411 + - uid: 39427 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-1.5 - parent: 38584 - - uid: 39601 + parent: 38411 + - uid: 39428 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 - parent: 38584 - - uid: 39602 + parent: 38411 + - uid: 39429 components: - type: Transform pos: -1.5,23.5 - parent: 38584 - - uid: 39603 + parent: 38411 + - uid: 39430 components: - type: Transform pos: -2.5,23.5 - parent: 38584 - - uid: 39604 + parent: 38411 + - uid: 39431 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,25.5 - parent: 38584 - - uid: 39605 + parent: 38411 + - uid: 39432 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,26.5 - parent: 38584 - - uid: 39606 + parent: 38411 + - uid: 39433 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,27.5 - parent: 38584 - - uid: 39607 + parent: 38411 + - uid: 39434 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,29.5 - parent: 38584 - - uid: 39608 + parent: 38411 + - uid: 39435 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,28.5 - parent: 38584 - - uid: 39609 + parent: 38411 + - uid: 39436 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,16.5 - parent: 38584 - - uid: 39610 + parent: 38411 + - uid: 39437 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,17.5 - parent: 38584 - - uid: 39611 + parent: 38411 + - uid: 39438 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,14.5 - parent: 38584 - - uid: 39612 + parent: 38411 + - uid: 39439 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,18.5 - parent: 38584 - - uid: 39613 + parent: 38411 + - uid: 39440 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 - parent: 38584 - - uid: 39614 + parent: 38411 + - uid: 39441 components: - type: Transform pos: 14.5,20.5 - parent: 38584 - - uid: 39615 + parent: 38411 + - uid: 39442 components: - type: Transform pos: 12.5,20.5 - parent: 38584 - - uid: 39616 + parent: 38411 + - uid: 39443 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,15.5 - parent: 38584 + parent: 38411 - proto: RailingCorner entities: - - uid: 27501 + - uid: 27344 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,28.5 parent: 2 - - uid: 27502 + - uid: 27345 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,44.5 parent: 2 - - uid: 27503 + - uid: 27346 components: - type: Transform pos: -20.5,43.5 parent: 2 - - uid: 27504 + - uid: 27347 components: - type: Transform pos: -14.5,32.5 parent: 2 - - uid: 27505 + - uid: 27348 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,43.5 parent: 2 - - uid: 27506 + - uid: 27349 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,39.5 parent: 2 - - uid: 27507 + - uid: 27350 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,39.5 parent: 2 - - uid: 27508 + - uid: 27351 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 39617 + - uid: 39444 components: - type: Transform pos: -19.5,-3.5 - parent: 38584 - - uid: 39618 + parent: 38411 + - uid: 39445 components: - type: Transform pos: -20.5,24.5 - parent: 38584 + parent: 38411 - proto: RailingCornerSmall entities: - - uid: 14189 + - uid: 27352 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-25.5 parent: 2 - - uid: 14192 + - uid: 27353 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 27509 + - uid: 27354 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-75.5 parent: 2 - - uid: 27510 + - uid: 27355 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-75.5 parent: 2 - - uid: 27511 + - uid: 27356 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-23.5 parent: 2 - - uid: 27512 + - uid: 27357 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-20.5 parent: 2 - - uid: 27513 + - uid: 27358 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,60.5 parent: 2 - - uid: 27514 + - uid: 27359 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-16.5 parent: 2 - - uid: 27515 + - uid: 27360 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-23.5 parent: 2 - - uid: 27516 + - uid: 27361 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-19.5 parent: 2 - - uid: 27517 + - uid: 27362 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-20.5 parent: 2 - - uid: 27518 + - uid: 27363 components: - type: Transform pos: 62.5,-23.5 parent: 2 - - uid: 27519 + - uid: 27364 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 - - uid: 27520 + - uid: 27365 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,44.5 parent: 2 - - uid: 27521 + - uid: 27366 components: - type: Transform pos: -16.5,38.5 parent: 2 - - uid: 27522 + - uid: 27367 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,44.5 parent: 2 - - uid: 27523 + - uid: 27368 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,43.5 parent: 2 - - uid: 27524 + - uid: 27369 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,43.5 parent: 2 - - uid: 27525 + - uid: 27370 components: - type: Transform pos: -15.5,39.5 parent: 2 - - uid: 27526 + - uid: 27371 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 - - uid: 27527 + - uid: 27372 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 - - uid: 27528 + - uid: 27373 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-4.5 parent: 2 - - uid: 27529 + - uid: 27374 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,1.5 parent: 2 - - uid: 27530 + - uid: 27375 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 2 - - uid: 27531 + - uid: 27376 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,38.5 parent: 2 - - uid: 27532 + - uid: 27377 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,39.5 parent: 2 - - uid: 27533 + - uid: 27378 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,65.5 parent: 2 - - uid: 27534 + - uid: 27379 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 27535 + - uid: 27380 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 27536 + - uid: 27381 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 parent: 2 - - uid: 27537 + - uid: 27382 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 27538 + - uid: 27383 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 27539 + - uid: 27384 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 27540 + - uid: 27385 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 27541 + - uid: 27386 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 27542 + - uid: 27387 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 39619 + - uid: 39446 components: - type: Transform pos: -18.5,-3.5 - parent: 38584 - - uid: 39620 + parent: 38411 + - uid: 39447 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-2.5 - parent: 38584 - - uid: 39621 + parent: 38411 + - uid: 39448 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-3.5 - parent: 38584 - - uid: 39622 + parent: 38411 + - uid: 39449 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,23.5 - parent: 38584 - - uid: 39623 + parent: 38411 + - uid: 39450 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,23.5 - parent: 38584 - - uid: 39624 + parent: 38411 + - uid: 39451 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,24.5 - parent: 38584 - - uid: 39625 + parent: 38411 + - uid: 39452 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,30.5 - parent: 38584 - - uid: 39626 + parent: 38411 + - uid: 39453 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,27.5 - parent: 38584 - - uid: 39627 + parent: 38411 + - uid: 39454 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,29.5 - parent: 38584 - - uid: 39628 + parent: 38411 + - uid: 39455 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,13.5 - parent: 38584 - - uid: 39629 + parent: 38411 + - uid: 39456 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,16.5 - parent: 38584 - - uid: 39630 + parent: 38411 + - uid: 39457 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 - parent: 38584 + parent: 38411 - proto: RandomArtifactSpawner entities: - - uid: 27543 + - uid: 27388 components: - type: Transform pos: -37.5,-40.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 27544 + - uid: 27389 components: - type: Transform pos: -3.5,41.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 27545 + - uid: 27390 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 27546 + - uid: 27391 components: - type: Transform pos: 95.5,2.5 parent: 2 - proto: RandomDrinkSoda entities: - - uid: 27547 + - uid: 27392 components: - type: Transform pos: 63.5,24.5 parent: 2 - - uid: 27548 + - uid: 27393 components: - type: Transform pos: 68.5,21.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 27549 + - uid: 27394 components: - type: Transform pos: 63.5,22.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 27550 + - uid: 27395 components: - type: Transform pos: 68.5,23.5 parent: 2 - - uid: 27551 + - uid: 27396 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 27552 + - uid: 27397 components: - type: Transform pos: 7.5,84.5 parent: 2 - - uid: 27553 + - uid: 27398 components: - type: Transform pos: -69.5,16.5 parent: 2 - - uid: 27554 + - uid: 27399 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 27555 + - uid: 27400 components: - type: Transform pos: -75.5,16.5 parent: 2 - - uid: 27556 + - uid: 27401 components: - type: Transform pos: -70.5,16.5 parent: 2 - - uid: 27557 + - uid: 27402 components: - type: Transform pos: -74.5,16.5 parent: 2 - - uid: 27558 + - uid: 27403 components: - type: Transform pos: -36.5,48.5 parent: 2 - - uid: 27559 + - uid: 27404 components: - type: Transform pos: -24.5,38.5 parent: 2 - - uid: 27560 + - uid: 27405 components: - type: Transform pos: -27.5,34.5 parent: 2 - - uid: 27561 + - uid: 27406 components: - type: Transform pos: 92.5,-1.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 27562 + - uid: 27407 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 27563 + - uid: 27408 components: - type: Transform pos: 38.5,29.5 parent: 2 - - uid: 27564 + - uid: 27409 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 27565 + - uid: 27410 components: - type: Transform pos: -24.5,34.5 parent: 2 - proto: RandomInstruments entities: - - uid: 27566 + - uid: 27411 components: - type: Transform pos: -6.5,53.5 parent: 2 - - uid: 27567 + - uid: 27412 components: - type: Transform pos: 44.5,13.5 parent: 2 - - uid: 27568 + - uid: 27413 components: - type: Transform pos: 44.5,9.5 parent: 2 - - uid: 27569 + - uid: 27414 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 27570 + - uid: 27415 components: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 27571 + - uid: 27416 components: - type: Transform pos: 41.5,1.5 parent: 2 - - uid: 27572 + - uid: 27417 components: - type: Transform pos: -70.5,-31.5 parent: 2 - proto: RandomPainting entities: - - uid: 27573 + - uid: 27418 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-0.5 parent: 2 - - uid: 27574 + - uid: 27419 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-0.5 parent: 2 - - uid: 27575 + - uid: 27420 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-2.5 parent: 2 - - uid: 27576 + - uid: 27421 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 27577 + - uid: 27422 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 2 - - uid: 27578 + - uid: 27423 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 2 - - uid: 27579 + - uid: 27424 components: - type: Transform pos: 42.5,27.5 parent: 2 - - uid: 27580 + - uid: 27425 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - - uid: 27581 + - uid: 27426 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-51.5 parent: 2 - - uid: 27582 + - uid: 27427 components: - type: Transform pos: 12.5,-41.5 parent: 2 - - uid: 27583 + - uid: 27428 components: - type: Transform pos: -34.5,-9.5 parent: 2 - - uid: 27584 + - uid: 27429 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,44.5 parent: 2 - - uid: 27585 + - uid: 27430 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 - - uid: 27586 + - uid: 27431 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 - - uid: 27587 + - uid: 27432 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 27588 + - uid: 27433 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,23.5 parent: 2 - - uid: 27589 + - uid: 27434 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,3.5 parent: 2 - - uid: 27590 + - uid: 27435 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 - - uid: 27591 + - uid: 27436 components: - type: Transform rot: 3.141592653589793 rad @@ -212000,372 +212078,372 @@ entities: parent: 2 - proto: RandomPosterAny entities: - - uid: 27592 + - uid: 27437 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 27593 + - uid: 27438 components: - type: Transform pos: -25.5,45.5 parent: 2 - - uid: 27594 + - uid: 27439 components: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 27595 + - uid: 27440 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-63.5 parent: 2 - - uid: 27596 + - uid: 27441 components: - type: Transform pos: 82.5,8.5 parent: 2 - - uid: 27597 + - uid: 27442 components: - type: Transform pos: 90.5,11.5 parent: 2 - proto: RandomPosterContraband entities: - - uid: 27598 + - uid: 27443 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 27599 + - uid: 27444 components: - type: Transform pos: 98.5,-1.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 27600 + - uid: 27445 components: - type: Transform pos: 63.5,27.5 parent: 2 - - uid: 27601 + - uid: 27446 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 27602 + - uid: 27447 components: - type: Transform pos: -11.5,35.5 parent: 2 - - uid: 27603 + - uid: 27448 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 27604 + - uid: 27449 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 27605 + - uid: 27450 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - uid: 27606 + - uid: 27451 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 27607 + - uid: 27452 components: - type: Transform pos: -28.5,66.5 parent: 2 - - uid: 27608 + - uid: 27453 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 27609 + - uid: 27454 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 27610 + - uid: 27455 components: - type: Transform pos: 76.5,7.5 parent: 2 - - uid: 27611 + - uid: 27456 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,7.5 parent: 2 - - uid: 27612 + - uid: 27457 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,17.5 parent: 2 - - uid: 27613 + - uid: 27458 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 27614 + - uid: 27459 components: - type: Transform pos: 23.5,39.5 parent: 2 - - uid: 27615 + - uid: 27460 components: - type: Transform pos: -20.5,54.5 parent: 2 - - uid: 27616 + - uid: 27461 components: - type: Transform pos: -24.5,44.5 parent: 2 - - uid: 27617 + - uid: 27462 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 27618 + - uid: 27463 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,17.5 parent: 2 - - uid: 27619 + - uid: 27464 components: - type: Transform pos: 60.5,26.5 parent: 2 - - uid: 27620 + - uid: 27465 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 - - uid: 27621 + - uid: 27466 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 27622 + - uid: 27467 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,53.5 parent: 2 - - uid: 27623 + - uid: 27468 components: - type: Transform pos: 4.5,87.5 parent: 2 - - uid: 27624 + - uid: 27469 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,29.5 parent: 2 - - uid: 27625 + - uid: 27470 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,31.5 parent: 2 - - uid: 27626 + - uid: 27471 components: - type: Transform pos: -31.5,87.5 parent: 2 - - uid: 27627 + - uid: 27472 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,19.5 parent: 2 - - uid: 27628 + - uid: 27473 components: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 27629 + - uid: 27474 components: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 27630 + - uid: 27475 components: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 27631 + - uid: 27476 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,84.5 parent: 2 - - uid: 27632 + - uid: 27477 components: - type: Transform pos: 17.5,33.5 parent: 2 - - uid: 27633 + - uid: 27478 components: - type: Transform pos: -35.5,51.5 parent: 2 - - uid: 27634 + - uid: 27479 components: - type: Transform pos: 2.5,32.5 parent: 2 - - uid: 27635 + - uid: 27480 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 27636 + - uid: 27481 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,3.5 parent: 2 - - uid: 27637 + - uid: 27482 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-4.5 parent: 2 - - uid: 27638 + - uid: 27483 components: - type: Transform pos: 77.5,7.5 parent: 2 - - uid: 27639 + - uid: 27484 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 27640 + - uid: 27485 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 27641 + - uid: 27486 components: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 27642 + - uid: 27487 components: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 27643 + - uid: 27488 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-8.5 parent: 2 - - uid: 27644 + - uid: 27489 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,3.5 parent: 2 - - uid: 27645 + - uid: 27490 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-1.5 parent: 2 - - uid: 27646 + - uid: 27491 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 27647 + - uid: 27492 components: - type: Transform pos: 60.5,23.5 parent: 2 - - uid: 27648 + - uid: 27493 components: - type: Transform pos: 55.5,20.5 parent: 2 - - uid: 27649 + - uid: 27494 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 27650 + - uid: 27495 components: - type: Transform pos: 54.5,-15.5 parent: 2 - - uid: 27651 + - uid: 27496 components: - type: Transform pos: 59.5,-31.5 parent: 2 - - uid: 27652 + - uid: 27497 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 27653 + - uid: 27498 components: - type: Transform pos: -62.5,39.5 parent: 2 - - uid: 27654 + - uid: 27499 components: - type: Transform pos: 22.5,33.5 parent: 2 - - uid: 27655 + - uid: 27500 components: - type: Transform pos: 86.5,-2.5 parent: 2 - - uid: 27656 + - uid: 27501 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 27657 + - uid: 27502 components: - type: Transform pos: 78.5,-2.5 parent: 2 - - uid: 27658 + - uid: 27503 components: - type: Transform pos: 80.5,5.5 parent: 2 - - uid: 27659 + - uid: 27504 components: - type: Transform pos: 88.5,8.5 parent: 2 - - uid: 27660 + - uid: 27505 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,31.5 parent: 2 - - uid: 27661 + - uid: 27506 components: - type: Transform rot: 3.141592653589793 rad @@ -212373,907 +212451,907 @@ entities: parent: 2 - proto: RandomSnacks entities: - - uid: 27662 + - uid: 27507 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-41.5 parent: 2 - - uid: 27663 + - uid: 27508 components: - type: Transform pos: -6.5,-77.5 parent: 2 - proto: RandomSoap entities: - - uid: 27664 + - uid: 27509 components: - type: Transform pos: 93.5,6.5 parent: 2 - - uid: 27665 + - uid: 27510 components: - type: Transform pos: -39.5,-61.5 parent: 2 - - uid: 27666 + - uid: 27511 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 27667 + - uid: 27512 components: - type: Transform pos: -8.5,32.5 parent: 2 - - uid: 27668 + - uid: 27513 components: - type: Transform pos: -76.5,-31.5 parent: 2 - proto: RandomSpawner entities: - - uid: 27669 + - uid: 27514 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-74.5 parent: 2 - - uid: 27670 + - uid: 27515 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-79.5 parent: 2 - - uid: 27671 + - uid: 27516 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 27672 + - uid: 27517 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-57.5 parent: 2 - - uid: 27673 + - uid: 27518 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-60.5 parent: 2 - - uid: 27674 + - uid: 27519 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-55.5 parent: 2 - - uid: 27675 + - uid: 27520 components: - type: Transform pos: -30.5,86.5 parent: 2 - - uid: 27676 + - uid: 27521 components: - type: Transform pos: -12.5,93.5 parent: 2 - - uid: 27677 + - uid: 27522 components: - type: Transform pos: -30.5,70.5 parent: 2 - - uid: 27678 + - uid: 27523 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 27679 + - uid: 27524 components: - type: Transform pos: -28.5,94.5 parent: 2 - - uid: 27680 + - uid: 27525 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 27681 + - uid: 27526 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-33.5 parent: 2 - - uid: 27682 + - uid: 27527 components: - type: Transform pos: 3.5,-20.5 parent: 2 - - uid: 27683 + - uid: 27528 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 27684 + - uid: 27529 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 27685 + - uid: 27530 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 27686 + - uid: 27531 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 27687 + - uid: 27532 components: - type: Transform pos: 64.5,1.5 parent: 2 - - uid: 27688 + - uid: 27533 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 27689 + - uid: 27534 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 27690 + - uid: 27535 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 27691 + - uid: 27536 components: - type: Transform pos: -10.5,22.5 parent: 2 - - uid: 27692 + - uid: 27537 components: - type: Transform pos: 30.5,4.5 parent: 2 - - uid: 27693 + - uid: 27538 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 27694 + - uid: 27539 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 27695 + - uid: 27540 components: - type: Transform pos: 18.5,2.5 parent: 2 - - uid: 27696 + - uid: 27541 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 - - uid: 27697 + - uid: 27542 components: - type: Transform pos: -7.5,-33.5 parent: 2 - - uid: 27698 + - uid: 27543 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 27699 + - uid: 27544 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 27700 + - uid: 27545 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-14.5 parent: 2 - - uid: 27701 + - uid: 27546 components: - type: Transform pos: 29.5,-67.5 parent: 2 - - uid: 27702 + - uid: 27547 components: - type: Transform pos: -24.5,56.5 parent: 2 - - uid: 27703 + - uid: 27548 components: - type: Transform pos: -34.5,-31.5 parent: 2 - - uid: 27704 + - uid: 27549 components: - type: Transform pos: -32.5,-33.5 parent: 2 - - uid: 27705 + - uid: 27550 components: - type: Transform pos: -37.5,-33.5 parent: 2 - - uid: 27706 + - uid: 27551 components: - type: Transform pos: -33.5,-23.5 parent: 2 - - uid: 27707 + - uid: 27552 components: - type: Transform pos: -38.5,-21.5 parent: 2 - - uid: 27708 + - uid: 27553 components: - type: Transform pos: -41.5,-23.5 parent: 2 - - uid: 27709 + - uid: 27554 components: - type: Transform pos: -42.5,-21.5 parent: 2 - - uid: 27710 + - uid: 27555 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 27711 + - uid: 27556 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 27712 + - uid: 27557 components: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 27713 + - uid: 27558 components: - type: Transform pos: -30.5,-26.5 parent: 2 - - uid: 27714 + - uid: 27559 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 27715 + - uid: 27560 components: - type: Transform pos: -36.5,-28.5 parent: 2 - - uid: 27716 + - uid: 27561 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 27717 + - uid: 27562 components: - type: Transform pos: -41.5,-28.5 parent: 2 - - uid: 27718 + - uid: 27563 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 27719 + - uid: 27564 components: - type: Transform pos: -45.5,-27.5 parent: 2 - - uid: 27720 + - uid: 27565 components: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 27721 + - uid: 27566 components: - type: Transform pos: 5.5,34.5 parent: 2 - - uid: 27722 + - uid: 27567 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 27723 + - uid: 27568 components: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 27724 + - uid: 27569 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 27725 + - uid: 27570 components: - type: Transform pos: 31.5,58.5 parent: 2 - - uid: 27726 + - uid: 27571 components: - type: Transform pos: 15.5,65.5 parent: 2 - - uid: 27727 + - uid: 27572 components: - type: Transform pos: 2.5,39.5 parent: 2 - - uid: 27728 + - uid: 27573 components: - type: Transform pos: -23.5,36.5 parent: 2 - - uid: 27729 + - uid: 27574 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 27730 + - uid: 27575 components: - type: Transform pos: 23.5,52.5 parent: 2 - - uid: 27731 + - uid: 27576 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 27732 + - uid: 27577 components: - type: Transform pos: -16.5,26.5 parent: 2 - - uid: 27733 + - uid: 27578 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-39.5 parent: 2 - - uid: 27734 + - uid: 27579 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-37.5 parent: 2 - - uid: 27735 + - uid: 27580 components: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 27736 + - uid: 27581 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 27737 + - uid: 27582 components: - type: Transform pos: -2.5,62.5 parent: 2 - - uid: 27738 + - uid: 27583 components: - type: Transform pos: 26.5,60.5 parent: 2 - - uid: 27739 + - uid: 27584 components: - type: Transform pos: 30.5,59.5 parent: 2 - - uid: 27740 + - uid: 27585 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-35.5 parent: 2 - - uid: 27741 + - uid: 27586 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-36.5 parent: 2 - - uid: 27742 + - uid: 27587 components: - type: Transform pos: -23.5,-21.5 parent: 2 - - uid: 27743 + - uid: 27588 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 27744 + - uid: 27589 components: - type: Transform pos: -28.5,-61.5 parent: 2 - - uid: 27745 + - uid: 27590 components: - type: Transform pos: 19.5,-54.5 parent: 2 - - uid: 27746 + - uid: 27591 components: - type: Transform pos: 6.5,-54.5 parent: 2 - - uid: 27747 + - uid: 27592 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 27748 + - uid: 27593 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 27749 + - uid: 27594 components: - type: Transform pos: 46.5,-50.5 parent: 2 - - uid: 27750 + - uid: 27595 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 27751 + - uid: 27596 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 27752 + - uid: 27597 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 27753 + - uid: 27598 components: - type: Transform pos: 28.5,61.5 parent: 2 - - uid: 27754 + - uid: 27599 components: - type: Transform pos: -6.5,67.5 parent: 2 - - uid: 27755 + - uid: 27600 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 27756 + - uid: 27601 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 27757 + - uid: 27602 components: - type: Transform pos: -30.5,13.5 parent: 2 - - uid: 27758 + - uid: 27603 components: - type: Transform pos: 36.5,-70.5 parent: 2 - - uid: 27759 + - uid: 27604 components: - type: Transform pos: 2.5,45.5 parent: 2 - - uid: 27760 + - uid: 27605 components: - type: Transform pos: 4.5,69.5 parent: 2 - - uid: 27761 + - uid: 27606 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 27762 + - uid: 27607 components: - type: Transform pos: -19.5,18.5 parent: 2 - - uid: 27763 + - uid: 27608 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 27764 + - uid: 27609 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 27765 + - uid: 27610 components: - type: Transform pos: 26.5,58.5 parent: 2 - - uid: 27766 + - uid: 27611 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 2 - - uid: 27767 + - uid: 27612 components: - type: Transform pos: 40.5,-53.5 parent: 2 - - uid: 27768 + - uid: 27613 components: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 27769 + - uid: 27614 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 27770 + - uid: 27615 components: - type: Transform pos: -10.5,-54.5 parent: 2 - - uid: 27771 + - uid: 27616 components: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 27772 + - uid: 27617 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 27773 + - uid: 27618 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 27774 + - uid: 27619 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 27775 + - uid: 27620 components: - type: Transform pos: -14.5,22.5 parent: 2 - - uid: 27776 + - uid: 27621 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-34.5 parent: 2 - - uid: 27777 + - uid: 27622 components: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 27778 + - uid: 27623 components: - type: Transform pos: -20.5,-17.5 parent: 2 - - uid: 27779 + - uid: 27624 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 27780 + - uid: 27625 components: - type: Transform pos: 5.5,81.5 parent: 2 - - uid: 27781 + - uid: 27626 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 27782 + - uid: 27627 components: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 27783 + - uid: 27628 components: - type: Transform pos: -40.5,19.5 parent: 2 - - uid: 27784 + - uid: 27629 components: - type: Transform pos: 28.5,-9.5 parent: 2 - - uid: 27785 + - uid: 27630 components: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 27786 + - uid: 27631 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 27787 + - uid: 27632 components: - type: Transform pos: -35.5,36.5 parent: 2 - - uid: 27788 + - uid: 27633 components: - type: Transform pos: -4.5,26.5 parent: 2 - - uid: 27789 + - uid: 27634 components: - type: Transform pos: -55.5,-38.5 parent: 2 - - uid: 27790 + - uid: 27635 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-40.5 parent: 2 - - uid: 27791 + - uid: 27636 components: - type: Transform pos: 31.5,-35.5 parent: 2 - - uid: 27792 + - uid: 27637 components: - type: Transform pos: -9.5,-20.5 parent: 2 - - uid: 27793 + - uid: 27638 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 27794 + - uid: 27639 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 27795 + - uid: 27640 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 27796 + - uid: 27641 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 27797 + - uid: 27642 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 27798 + - uid: 27643 components: - type: Transform pos: -48.5,-20.5 parent: 2 - - uid: 27799 + - uid: 27644 components: - type: Transform pos: -73.5,-20.5 parent: 2 - - uid: 27800 + - uid: 27645 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 27801 + - uid: 27646 components: - type: Transform pos: 20.5,71.5 parent: 2 - - uid: 27802 + - uid: 27647 components: - type: Transform pos: 20.5,-21.5 parent: 2 - - uid: 27803 + - uid: 27648 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 27804 + - uid: 27649 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 27805 + - uid: 27650 components: - type: Transform pos: 28.5,58.5 parent: 2 - - uid: 27806 + - uid: 27651 components: - type: Transform pos: -12.5,69.5 parent: 2 - - uid: 27807 + - uid: 27652 components: - type: Transform pos: 26.5,56.5 parent: 2 - - uid: 27808 + - uid: 27653 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 27809 + - uid: 27654 components: - type: Transform pos: 22.5,66.5 parent: 2 - - uid: 27810 + - uid: 27655 components: - type: Transform pos: -13.5,-62.5 parent: 2 - - uid: 27811 + - uid: 27656 components: - type: Transform pos: 16.5,-9.5 parent: 2 - - uid: 27812 + - uid: 27657 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 27813 + - uid: 27658 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 27814 + - uid: 27659 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 27815 + - uid: 27660 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 - - uid: 27816 + - uid: 27661 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 27817 + - uid: 27662 components: - type: Transform pos: -4.5,-47.5 parent: 2 - - uid: 27818 + - uid: 27663 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 27819 + - uid: 27664 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-50.5 parent: 2 - - uid: 27820 + - uid: 27665 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 2 - - uid: 27821 + - uid: 27666 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-52.5 parent: 2 - - uid: 27822 + - uid: 27667 components: - type: Transform pos: -14.5,-58.5 parent: 2 - - uid: 27823 + - uid: 27668 components: - type: Transform pos: -18.5,-57.5 parent: 2 - - uid: 27824 + - uid: 27669 components: - type: Transform pos: -24.5,-56.5 parent: 2 - - uid: 27825 + - uid: 27670 components: - type: Transform pos: -25.5,-51.5 parent: 2 - - uid: 27826 + - uid: 27671 components: - type: Transform pos: -45.5,-36.5 parent: 2 - - uid: 27827 + - uid: 27672 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 27828 + - uid: 27673 components: - type: Transform pos: 72.5,10.5 parent: 2 - - uid: 27829 + - uid: 27674 components: - type: Transform pos: 45.5,15.5 parent: 2 - - uid: 27830 + - uid: 27675 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,0.5 parent: 2 - - uid: 27831 + - uid: 27676 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,5.5 parent: 2 - - uid: 27832 + - uid: 27677 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,6.5 parent: 2 - - uid: 27833 + - uid: 27678 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-2.5 parent: 2 - - uid: 27834 + - uid: 27679 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-3.5 parent: 2 - - uid: 27835 + - uid: 27680 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 - - uid: 27836 + - uid: 27681 components: - type: Transform rot: 1.5707963267948966 rad @@ -213281,533 +213359,533 @@ entities: parent: 2 - proto: RandomSpawner100 entities: - - uid: 9973 + - uid: 27682 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 9977 + - uid: 27683 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-26.5 parent: 2 - - uid: 9978 + - uid: 27684 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-22.5 parent: 2 - - uid: 9979 + - uid: 27685 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-23.5 parent: 2 - - uid: 27837 + - uid: 27686 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-41.5 parent: 2 - - uid: 27838 + - uid: 27687 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-60.5 parent: 2 - - uid: 27839 + - uid: 27688 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-60.5 parent: 2 - - uid: 27840 + - uid: 27689 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-64.5 parent: 2 - - uid: 27841 + - uid: 27690 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 27842 + - uid: 27691 components: - type: Transform pos: 12.5,58.5 parent: 2 - - uid: 27843 + - uid: 27692 components: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 27844 + - uid: 27693 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 27845 + - uid: 27694 components: - type: Transform pos: -61.5,-43.5 parent: 2 - - uid: 27846 + - uid: 27695 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 27847 + - uid: 27696 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 27848 + - uid: 27697 components: - type: Transform pos: -39.5,60.5 parent: 2 - - uid: 27849 + - uid: 27698 components: - type: Transform pos: -35.5,61.5 parent: 2 - - uid: 27850 + - uid: 27699 components: - type: Transform pos: -46.5,-44.5 parent: 2 - - uid: 27851 + - uid: 27700 components: - type: Transform pos: -53.5,-47.5 parent: 2 - - uid: 27852 + - uid: 27701 components: - type: Transform pos: -37.5,26.5 parent: 2 - - uid: 27853 + - uid: 27702 components: - type: Transform pos: 18.5,63.5 parent: 2 - - uid: 27854 + - uid: 27703 components: - type: Transform pos: 19.5,59.5 parent: 2 - - uid: 27855 + - uid: 27704 components: - type: Transform pos: -28.5,54.5 parent: 2 - - uid: 27856 + - uid: 27705 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-39.5 parent: 2 - - uid: 27857 + - uid: 27706 components: - type: Transform pos: -69.5,-45.5 parent: 2 - - uid: 27858 + - uid: 27707 components: - type: Transform pos: 41.5,-43.5 parent: 2 - - uid: 27859 + - uid: 27708 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-28.5 parent: 2 - - uid: 27860 + - uid: 27709 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 - - uid: 27861 + - uid: 27710 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-30.5 parent: 2 - - uid: 39631 + - uid: 39458 components: - type: Transform pos: -11.5,33.5 - parent: 38584 - - uid: 39632 + parent: 38411 + - uid: 39459 components: - type: Transform pos: -1.5,10.5 - parent: 38584 - - uid: 39633 + parent: 38411 + - uid: 39460 components: - type: Transform pos: -7.5,13.5 - parent: 38584 - - uid: 39634 + parent: 38411 + - uid: 39461 components: - type: Transform pos: -8.5,22.5 - parent: 38584 - - uid: 39635 + parent: 38411 + - uid: 39462 components: - type: Transform pos: 1.5,19.5 - parent: 38584 - - uid: 39636 + parent: 38411 + - uid: 39463 components: - type: Transform pos: -3.5,31.5 - parent: 38584 + parent: 38411 - proto: RandomVending entities: - - uid: 27862 + - uid: 27711 components: - type: Transform pos: 12.5,26.5 parent: 2 - - uid: 27863 + - uid: 27712 components: - type: Transform pos: -31.5,90.5 parent: 2 - - uid: 27864 + - uid: 27713 components: - type: Transform pos: -27.5,90.5 parent: 2 - - uid: 27865 + - uid: 27714 components: - type: Transform pos: -13.5,90.5 parent: 2 - - uid: 27866 + - uid: 27715 components: - type: Transform pos: -9.5,90.5 parent: 2 - - uid: 27867 + - uid: 27716 components: - type: Transform pos: -21.5,60.5 parent: 2 - - uid: 27868 + - uid: 27717 components: - type: Transform pos: -21.5,65.5 parent: 2 - - uid: 27869 + - uid: 27718 components: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 27870 + - uid: 27719 components: - type: Transform pos: 5.5,85.5 parent: 2 - - uid: 39637 + - uid: 39464 components: - type: Transform pos: 5.5,-1.5 - parent: 38584 + parent: 38411 - proto: RandomVendingDrinks entities: - - uid: 27871 + - uid: 27720 components: - type: Transform pos: 68.5,26.5 parent: 2 - - uid: 27872 + - uid: 27721 components: - type: Transform pos: -58.5,-45.5 parent: 2 - - uid: 27873 + - uid: 27722 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 27874 + - uid: 27723 components: - type: Transform pos: -26.5,41.5 parent: 2 - - uid: 27875 + - uid: 27724 components: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 27876 + - uid: 27725 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 27877 + - uid: 27726 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 27878 + - uid: 27727 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 27879 + - uid: 27728 components: - type: Transform pos: 43.5,30.5 parent: 2 - - uid: 27880 + - uid: 27729 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 27881 + - uid: 27730 components: - type: Transform pos: -20.5,23.5 parent: 2 - - uid: 27882 + - uid: 27731 components: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 27883 + - uid: 27732 components: - type: Transform pos: 20.5,-7.5 parent: 2 - - uid: 27884 + - uid: 27733 components: - type: Transform pos: -23.5,44.5 parent: 2 - - uid: 27885 + - uid: 27734 components: - type: Transform pos: -8.5,48.5 parent: 2 - - uid: 27886 + - uid: 27735 components: - type: Transform pos: -26.5,29.5 parent: 2 - - uid: 27887 + - uid: 27736 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 27888 + - uid: 27737 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 27889 + - uid: 27738 components: - type: Transform pos: -43.5,20.5 parent: 2 - - uid: 27890 + - uid: 27739 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 27891 + - uid: 27740 components: - type: Transform pos: -11.5,16.5 parent: 2 - - uid: 27892 + - uid: 27741 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,13.5 parent: 2 - - uid: 27893 + - uid: 27742 components: - type: Transform pos: 93.5,12.5 parent: 2 - - uid: 27894 + - uid: 27743 components: - type: Transform pos: -36.5,-67.5 parent: 2 - - uid: 27895 + - uid: 27744 components: - type: Transform pos: 85.5,9.5 parent: 2 - - uid: 27896 + - uid: 27745 components: - type: Transform pos: 13.5,-10.5 parent: 2 - - uid: 39638 + - uid: 39465 components: - type: Transform pos: -18.5,-5.5 - parent: 38584 - - uid: 39639 + parent: 38411 + - uid: 39466 components: - type: Transform pos: 5.5,3.5 - parent: 38584 + parent: 38411 - proto: RandomVendingSnacks entities: - - uid: 27897 + - uid: 27746 components: - type: Transform pos: 69.5,26.5 parent: 2 - - uid: 27898 + - uid: 27747 components: - type: Transform pos: 14.5,-10.5 parent: 2 - - uid: 27899 + - uid: 27748 components: - type: Transform pos: -57.5,-45.5 parent: 2 - - uid: 27900 + - uid: 27749 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 27901 + - uid: 27750 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 27902 + - uid: 27751 components: - type: Transform pos: -27.5,41.5 parent: 2 - - uid: 27903 + - uid: 27752 components: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 27904 + - uid: 27753 components: - type: Transform pos: 55.5,-26.5 parent: 2 - - uid: 27905 + - uid: 27754 components: - type: Transform pos: -8.5,-2.5 parent: 2 - - uid: 27906 + - uid: 27755 components: - type: Transform pos: 43.5,29.5 parent: 2 - - uid: 27907 + - uid: 27756 components: - type: Transform pos: 17.5,-21.5 parent: 2 - - uid: 27908 + - uid: 27757 components: - type: Transform pos: -10.5,16.5 parent: 2 - - uid: 27909 + - uid: 27758 components: - type: Transform pos: 38.5,-30.5 parent: 2 - - uid: 27910 + - uid: 27759 components: - type: Transform pos: -23.5,45.5 parent: 2 - - uid: 27911 + - uid: 27760 components: - type: Transform pos: -6.5,48.5 parent: 2 - - uid: 27912 + - uid: 27761 components: - type: Transform pos: -25.5,-37.5 parent: 2 - - uid: 27913 + - uid: 27762 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 27914 + - uid: 27763 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 27915 + - uid: 27764 components: - type: Transform pos: -25.5,29.5 parent: 2 - - uid: 27916 + - uid: 27765 components: - type: Transform pos: -43.5,21.5 parent: 2 - - uid: 27917 + - uid: 27766 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 27918 + - uid: 27767 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 27919 + - uid: 27768 components: - type: Transform pos: -75.5,1.5 parent: 2 - - uid: 27920 + - uid: 27769 components: - type: Transform pos: 92.5,12.5 parent: 2 - - uid: 27921 + - uid: 27770 components: - type: Transform pos: -35.5,-67.5 parent: 2 - - uid: 27922 + - uid: 27771 components: - type: Transform pos: 86.5,9.5 parent: 2 - - uid: 39640 + - uid: 39467 components: - type: Transform pos: -18.5,-6.5 - parent: 38584 - - uid: 39641 + parent: 38411 + - uid: 39468 components: - type: Transform pos: 5.5,4.5 - parent: 38584 + parent: 38411 - proto: RecorderInstrument entities: - - uid: 27923 + - uid: 27772 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -213815,7 +213893,7 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 27924 + - uid: 27773 components: - type: Transform rot: 1.5707963267948966 rad @@ -213823,5564 +213901,5564 @@ entities: parent: 2 - proto: ReinforcedGirder entities: - - uid: 27925 + - uid: 27774 components: - type: Transform pos: -75.5,54.5 parent: 2 - - uid: 27926 + - uid: 27775 components: - type: Transform pos: -74.5,55.5 parent: 2 - - uid: 27927 + - uid: 27776 components: - type: Transform pos: -74.5,54.5 parent: 2 - - uid: 39642 + - uid: 39469 components: - type: Transform pos: -1.5,25.5 - parent: 38584 - - uid: 39643 + parent: 38411 + - uid: 39470 components: - type: Transform pos: -0.5,26.5 - parent: 38584 - - uid: 39644 + parent: 38411 + - uid: 39471 components: - type: Transform pos: -5.5,19.5 - parent: 38584 - - uid: 39645 + parent: 38411 + - uid: 39472 components: - type: Transform pos: -4.5,19.5 - parent: 38584 - - uid: 39646 + parent: 38411 + - uid: 39473 components: - type: Transform pos: -6.5,19.5 - parent: 38584 - - uid: 39647 + parent: 38411 + - uid: 39474 components: - type: Transform pos: -2.5,26.5 - parent: 38584 - - uid: 39648 + parent: 38411 + - uid: 39475 components: - type: Transform pos: 12.5,24.5 - parent: 38584 - - uid: 39649 + parent: 38411 + - uid: 39476 components: - type: Transform pos: 13.5,22.5 - parent: 38584 - - uid: 39650 + parent: 38411 + - uid: 39477 components: - type: Transform pos: 14.5,15.5 - parent: 38584 - - uid: 39651 + parent: 38411 + - uid: 39478 components: - type: Transform pos: 10.5,15.5 - parent: 38584 + parent: 38411 - proto: ReinforcedPlasmaWindow entities: - - uid: 2810 + - uid: 27777 components: - type: Transform pos: -79.5,1.5 parent: 2 - - uid: 2820 + - uid: 27778 components: - type: Transform pos: -79.5,-0.5 parent: 2 - - uid: 27928 + - uid: 27779 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 27929 + - uid: 27780 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 27930 + - uid: 27781 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 27931 + - uid: 27782 components: - type: Transform pos: 98.5,3.5 parent: 2 - - uid: 27932 + - uid: 27783 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 27933 + - uid: 27784 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-5.5 parent: 2 - - uid: 27934 + - uid: 27785 components: - type: Transform pos: 98.5,2.5 parent: 2 - - uid: 27935 + - uid: 27786 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 27936 + - uid: 27787 components: - type: Transform pos: -72.5,24.5 parent: 2 - - uid: 27937 + - uid: 27788 components: - type: Transform pos: -72.5,23.5 parent: 2 - - uid: 27938 + - uid: 27789 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 27939 + - uid: 27790 components: - type: Transform pos: -72.5,20.5 parent: 2 - - uid: 27940 + - uid: 27791 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-5.5 parent: 2 - - uid: 27941 + - uid: 27792 components: - type: Transform pos: -72.5,21.5 parent: 2 - - uid: 27942 + - uid: 27793 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-5.5 parent: 2 - - uid: 27943 + - uid: 27794 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-5.5 parent: 2 - - uid: 27944 + - uid: 27795 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-5.5 parent: 2 - - uid: 27945 + - uid: 27796 components: - type: Transform pos: -49.5,56.5 parent: 2 - - uid: 27946 + - uid: 27797 components: - type: Transform pos: -56.5,58.5 parent: 2 - - uid: 27947 + - uid: 27798 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 27948 + - uid: 27799 components: - type: Transform pos: -7.5,-46.5 parent: 2 - - uid: 27949 + - uid: 27800 components: - type: Transform pos: -50.5,56.5 parent: 2 - - uid: 27950 + - uid: 27801 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 27951 + - uid: 27802 components: - type: Transform pos: -63.5,53.5 parent: 2 - - uid: 27952 + - uid: 27803 components: - type: Transform pos: -56.5,57.5 parent: 2 - - uid: 27953 + - uid: 27804 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 27954 + - uid: 27805 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 27955 + - uid: 27806 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 27956 + - uid: 27807 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 27957 + - uid: 27808 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 27958 + - uid: 27809 components: - type: Transform pos: -54.5,52.5 parent: 2 - - uid: 27959 + - uid: 27810 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 27960 + - uid: 27811 components: - type: Transform pos: -66.5,53.5 parent: 2 - - uid: 27963 + - uid: 27812 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 27964 + - uid: 27813 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 27965 + - uid: 27814 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 27966 + - uid: 27815 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 27967 + - uid: 27816 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 27968 + - uid: 27817 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 27969 + - uid: 27818 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 27970 + - uid: 27819 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 27971 + - uid: 27820 components: - type: Transform pos: -61.5,53.5 parent: 2 - - uid: 27972 + - uid: 27821 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,52.5 parent: 2 - - uid: 27973 + - uid: 27822 components: - type: Transform pos: -60.5,58.5 parent: 2 - - uid: 27974 + - uid: 27823 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 27975 + - uid: 27824 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 27976 + - uid: 27825 components: - type: Transform pos: 98.5,4.5 parent: 2 - - uid: 27977 + - uid: 27826 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-5.5 parent: 2 - - uid: 27978 + - uid: 27827 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-5.5 parent: 2 - - uid: 27979 + - uid: 27828 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 27980 + - uid: 27829 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 27981 + - uid: 27830 components: - type: Transform pos: -69.5,38.5 parent: 2 - - uid: 27982 + - uid: 27831 components: - type: Transform pos: -69.5,46.5 parent: 2 - - uid: 27983 + - uid: 27832 components: - type: Transform pos: -69.5,40.5 parent: 2 - - uid: 27984 + - uid: 27833 components: - type: Transform pos: -69.5,44.5 parent: 2 - - uid: 27985 + - uid: 27834 components: - type: Transform pos: -69.5,36.5 parent: 2 - - uid: 27986 + - uid: 27835 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 27987 + - uid: 27836 components: - type: Transform pos: -69.5,50.5 parent: 2 - - uid: 27988 + - uid: 27837 components: - type: Transform pos: -69.5,48.5 parent: 2 - - uid: 27989 + - uid: 27838 components: - type: Transform pos: -69.5,42.5 parent: 2 - - uid: 27990 + - uid: 27839 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 27991 + - uid: 27840 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,34.5 parent: 2 - - uid: 27992 + - uid: 27841 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,32.5 parent: 2 - - uid: 27993 + - uid: 27842 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,30.5 parent: 2 - - uid: 27994 + - uid: 27843 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,28.5 parent: 2 - - uid: 27995 + - uid: 27844 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-5.5 parent: 2 - - uid: 27996 + - uid: 27845 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-5.5 parent: 2 - - uid: 39652 + - uid: 39479 components: - type: Transform pos: 14.5,2.5 - parent: 38584 - - uid: 39653 + parent: 38411 + - uid: 39480 components: - type: Transform pos: 14.5,4.5 - parent: 38584 - - uid: 39654 + parent: 38411 + - uid: 39481 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39655 + parent: 38411 + - uid: 39482 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39656 + parent: 38411 + - uid: 39483 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39657 + parent: 38411 + - uid: 39484 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 + parent: 38411 - proto: ReinforcedUraniumWindow entities: - - uid: 27997 + - uid: 27846 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-66.5 parent: 2 - - uid: 27998 + - uid: 27847 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-68.5 parent: 2 - - uid: 27999 + - uid: 27848 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 28000 + - uid: 27849 components: - type: Transform pos: -67.5,-4.5 parent: 2 - - uid: 28001 + - uid: 27850 components: - type: Transform pos: -69.5,-4.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 2828 + - uid: 27851 components: - type: Transform pos: -9.5,65.5 parent: 2 - - uid: 2829 + - uid: 27852 components: - type: Transform pos: -8.5,64.5 parent: 2 - - uid: 2830 + - uid: 27853 components: - type: Transform pos: -14.5,64.5 parent: 2 - - uid: 2831 + - uid: 27854 components: - type: Transform pos: -12.5,65.5 parent: 2 - - uid: 2832 + - uid: 27855 components: - type: Transform pos: -9.5,60.5 parent: 2 - - uid: 2833 + - uid: 27856 components: - type: Transform pos: -10.5,65.5 parent: 2 - - uid: 2834 + - uid: 27857 components: - type: Transform pos: -14.5,63.5 parent: 2 - - uid: 2835 + - uid: 27858 components: - type: Transform pos: -14.5,62.5 parent: 2 - - uid: 2836 + - uid: 27859 components: - type: Transform pos: -13.5,60.5 parent: 2 - - uid: 2837 + - uid: 27860 components: - type: Transform pos: -8.5,63.5 parent: 2 - - uid: 2838 + - uid: 27861 components: - type: Transform pos: -11.5,65.5 parent: 2 - - uid: 2839 + - uid: 27862 components: - type: Transform pos: -12.5,60.5 parent: 2 - - uid: 2840 + - uid: 27863 components: - type: Transform pos: -11.5,60.5 parent: 2 - - uid: 2841 + - uid: 27864 components: - type: Transform pos: -13.5,65.5 parent: 2 - - uid: 2842 + - uid: 27865 components: - type: Transform pos: -10.5,60.5 parent: 2 - - uid: 2843 + - uid: 27866 components: - type: Transform pos: -8.5,61.5 parent: 2 - - uid: 2844 + - uid: 27867 components: - type: Transform pos: -8.5,62.5 parent: 2 - - uid: 2845 + - uid: 27868 components: - type: Transform pos: -14.5,61.5 parent: 2 - - uid: 28002 + - uid: 27869 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 28003 + - uid: 27870 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 28004 + - uid: 27871 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 28005 + - uid: 27872 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 28006 + - uid: 27873 components: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 28007 + - uid: 27874 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 28008 + - uid: 27875 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 2 - - uid: 28009 + - uid: 27876 components: - type: Transform pos: 48.5,29.5 parent: 2 - - uid: 28010 + - uid: 27877 components: - type: Transform pos: 56.5,33.5 parent: 2 - - uid: 28011 + - uid: 27878 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 28012 + - uid: 27879 components: - type: Transform pos: -67.5,38.5 parent: 2 - - uid: 28013 + - uid: 27880 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 28014 + - uid: 27881 components: - type: Transform pos: -67.5,46.5 parent: 2 - - uid: 28015 + - uid: 27882 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 28016 + - uid: 27883 components: - type: Transform pos: 84.5,-0.5 parent: 2 - - uid: 28017 + - uid: 27884 components: - type: Transform pos: 88.5,-0.5 parent: 2 - - uid: 28018 + - uid: 27885 components: - type: Transform pos: 87.5,-0.5 parent: 2 - - uid: 28019 + - uid: 27886 components: - type: Transform pos: 83.5,-0.5 parent: 2 - - uid: 28020 + - uid: 27887 components: - type: Transform pos: -67.5,42.5 parent: 2 - - uid: 28021 + - uid: 27888 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 28022 + - uid: 27889 components: - type: Transform pos: -67.5,48.5 parent: 2 - - uid: 28023 + - uid: 27890 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,9.5 parent: 2 - - uid: 28024 + - uid: 27891 components: - type: Transform pos: 75.5,17.5 parent: 2 - - uid: 28025 + - uid: 27892 components: - type: Transform pos: 75.5,18.5 parent: 2 - - uid: 28026 + - uid: 27893 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 28027 + - uid: 27894 components: - type: Transform pos: -67.5,50.5 parent: 2 - - uid: 28028 + - uid: 27895 components: - type: Transform pos: -72.5,-41.5 parent: 2 - - uid: 28029 + - uid: 27896 components: - type: Transform pos: -72.5,-39.5 parent: 2 - - uid: 28030 + - uid: 27897 components: - type: Transform pos: 31.5,13.5 parent: 2 - - uid: 28031 + - uid: 27898 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 28032 + - uid: 27899 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 - - uid: 28033 + - uid: 27900 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,26.5 parent: 2 - - uid: 28034 + - uid: 27901 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-24.5 parent: 2 - - uid: 28035 + - uid: 27902 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-77.5 parent: 2 - - uid: 28036 + - uid: 27903 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,71.5 parent: 2 - - uid: 28037 + - uid: 27904 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,70.5 parent: 2 - - uid: 28038 + - uid: 27905 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,72.5 parent: 2 - - uid: 28039 + - uid: 27906 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,26.5 parent: 2 - - uid: 28040 + - uid: 27907 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 - - uid: 28041 + - uid: 27908 components: - type: Transform pos: 5.5,86.5 parent: 2 - - uid: 28042 + - uid: 27909 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-11.5 parent: 2 - - uid: 28043 + - uid: 27910 components: - type: Transform pos: 8.5,32.5 parent: 2 - - uid: 28044 + - uid: 27911 components: - type: Transform pos: 4.5,86.5 parent: 2 - - uid: 28045 + - uid: 27912 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 28046 + - uid: 27913 components: - type: Transform pos: -32.5,79.5 parent: 2 - - uid: 28047 + - uid: 27914 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 28048 + - uid: 27915 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 28049 + - uid: 27916 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 28050 + - uid: 27917 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 28051 + - uid: 27918 components: - type: Transform pos: -0.5,62.5 parent: 2 - - uid: 28052 + - uid: 27919 components: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 28053 + - uid: 27920 components: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 28054 + - uid: 27921 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 28055 + - uid: 27922 components: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 28056 + - uid: 27923 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - uid: 28057 + - uid: 27924 components: - type: Transform pos: -9.5,94.5 parent: 2 - - uid: 28058 + - uid: 27925 components: - type: Transform pos: 71.5,14.5 parent: 2 - - uid: 28059 + - uid: 27926 components: - type: Transform pos: -82.5,13.5 parent: 2 - - uid: 28060 + - uid: 27927 components: - type: Transform pos: -60.5,65.5 parent: 2 - - uid: 28061 + - uid: 27928 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 - - uid: 28062 + - uid: 27929 components: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 28063 + - uid: 27930 components: - type: Transform pos: -61.5,64.5 parent: 2 - - uid: 28064 + - uid: 27931 components: - type: Transform pos: -9.5,95.5 parent: 2 - - uid: 28065 + - uid: 27932 components: - type: Transform pos: -56.5,64.5 parent: 2 - - uid: 28066 + - uid: 27933 components: - type: Transform pos: -13.5,94.5 parent: 2 - - uid: 28067 + - uid: 27934 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-5.5 parent: 2 - - uid: 28068 + - uid: 27935 components: - type: Transform pos: 33.5,47.5 parent: 2 - - uid: 28069 + - uid: 27936 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 28070 + - uid: 27937 components: - type: Transform pos: -14.5,82.5 parent: 2 - - uid: 28071 + - uid: 27938 components: - type: Transform pos: 32.5,47.5 parent: 2 - - uid: 28072 + - uid: 27939 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 28073 + - uid: 27940 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 2 - - uid: 28074 + - uid: 27941 components: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 28075 + - uid: 27942 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - - uid: 28076 + - uid: 27943 components: - type: Transform pos: 49.5,15.5 parent: 2 - - uid: 28077 + - uid: 27944 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 28078 + - uid: 27945 components: - type: Transform pos: -30.5,99.5 parent: 2 - - uid: 28079 + - uid: 27946 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 28080 + - uid: 27947 components: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 28081 + - uid: 27948 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 - - uid: 28082 + - uid: 27949 components: - type: Transform pos: -12.5,97.5 parent: 2 - - uid: 28083 + - uid: 27950 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 28084 + - uid: 27951 components: - type: Transform pos: 75.5,15.5 parent: 2 - - uid: 28085 + - uid: 27952 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 28086 + - uid: 27953 components: - type: Transform pos: 51.5,33.5 parent: 2 - - uid: 28087 + - uid: 27954 components: - type: Transform pos: -8.5,82.5 parent: 2 - - uid: 28088 + - uid: 27955 components: - type: Transform pos: -9.5,72.5 parent: 2 - - uid: 28089 + - uid: 27956 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 28090 + - uid: 27957 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 28091 + - uid: 27958 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 28092 + - uid: 27959 components: - type: Transform pos: 30.5,47.5 parent: 2 - - uid: 28093 + - uid: 27960 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,68.5 parent: 2 - - uid: 28094 + - uid: 27961 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,89.5 parent: 2 - - uid: 28095 + - uid: 27962 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 28096 + - uid: 27963 components: - type: Transform pos: 29.5,47.5 parent: 2 - - uid: 28097 + - uid: 27964 components: - type: Transform pos: 58.5,-31.5 parent: 2 - - uid: 28098 + - uid: 27965 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 28099 + - uid: 27966 components: - type: Transform pos: 61.5,-8.5 parent: 2 - - uid: 28100 + - uid: 27967 components: - type: Transform pos: 71.5,15.5 parent: 2 - - uid: 28101 + - uid: 27968 components: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 28102 + - uid: 27969 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 28103 + - uid: 27970 components: - type: Transform pos: 39.5,50.5 parent: 2 - - uid: 28104 + - uid: 27971 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 28105 + - uid: 27972 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 28106 + - uid: 27973 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 28107 + - uid: 27974 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 28108 + - uid: 27975 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,92.5 parent: 2 - - uid: 28109 + - uid: 27976 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,36.5 parent: 2 - - uid: 28110 + - uid: 27977 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,88.5 parent: 2 - - uid: 28111 + - uid: 27978 components: - type: Transform pos: -10.5,97.5 parent: 2 - - uid: 28112 + - uid: 27979 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 28113 + - uid: 27980 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,69.5 parent: 2 - - uid: 28114 + - uid: 27981 components: - type: Transform pos: -13.5,95.5 parent: 2 - - uid: 28115 + - uid: 27982 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 - - uid: 28116 + - uid: 27983 components: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 28117 + - uid: 27984 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,91.5 parent: 2 - - uid: 28118 + - uid: 27985 components: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 28119 + - uid: 27986 components: - type: Transform pos: 48.5,28.5 parent: 2 - - uid: 28120 + - uid: 27987 components: - type: Transform pos: 67.5,-25.5 parent: 2 - - uid: 28121 + - uid: 27988 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-36.5 parent: 2 - - uid: 28122 + - uid: 27989 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 28123 + - uid: 27990 components: - type: Transform pos: 83.5,15.5 parent: 2 - - uid: 28124 + - uid: 27991 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 28125 + - uid: 27992 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 28126 + - uid: 27993 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 28127 + - uid: 27994 components: - type: Transform pos: 48.5,14.5 parent: 2 - - uid: 28128 + - uid: 27995 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,65.5 parent: 2 - - uid: 28129 + - uid: 27996 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,67.5 parent: 2 - - uid: 28130 + - uid: 27997 components: - type: Transform pos: 65.5,-12.5 parent: 2 - - uid: 28131 + - uid: 27998 components: - type: Transform pos: 70.5,-25.5 parent: 2 - - uid: 28132 + - uid: 27999 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,88.5 parent: 2 - - uid: 28133 + - uid: 28000 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 28134 + - uid: 28001 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 28135 + - uid: 28002 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,89.5 parent: 2 - - uid: 28136 + - uid: 28003 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,92.5 parent: 2 - - uid: 28137 + - uid: 28004 components: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 28138 + - uid: 28005 components: - type: Transform pos: -22.5,70.5 parent: 2 - - uid: 28139 + - uid: 28006 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,31.5 parent: 2 - - uid: 28140 + - uid: 28007 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-4.5 parent: 2 - - uid: 28141 + - uid: 28008 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - uid: 28142 + - uid: 28009 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,1.5 parent: 2 - - uid: 28143 + - uid: 28010 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 parent: 2 - - uid: 28144 + - uid: 28011 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 2 - - uid: 28145 + - uid: 28012 components: - type: Transform pos: -4.5,70.5 parent: 2 - - uid: 28146 + - uid: 28013 components: - type: Transform pos: -29.5,-42.5 parent: 2 - - uid: 28147 + - uid: 28014 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 2 - - uid: 28148 + - uid: 28015 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,97.5 parent: 2 - - uid: 28149 + - uid: 28016 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 28150 + - uid: 28017 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-51.5 parent: 2 - - uid: 28151 + - uid: 28018 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 28152 + - uid: 28019 components: - type: Transform pos: -13.5,73.5 parent: 2 - - uid: 28153 + - uid: 28020 components: - type: Transform pos: -9.5,73.5 parent: 2 - - uid: 28154 + - uid: 28021 components: - type: Transform pos: 63.5,-31.5 parent: 2 - - uid: 28155 + - uid: 28022 components: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 28156 + - uid: 28023 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 28157 + - uid: 28024 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 28158 + - uid: 28025 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 28159 + - uid: 28026 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 28160 + - uid: 28027 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 28161 + - uid: 28028 components: - type: Transform pos: 64.5,-24.5 parent: 2 - - uid: 28162 + - uid: 28029 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 28163 + - uid: 28030 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 28164 + - uid: 28031 components: - type: Transform pos: 76.5,-15.5 parent: 2 - - uid: 28165 + - uid: 28032 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-46.5 parent: 2 - - uid: 28166 + - uid: 28033 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 2 - - uid: 28167 + - uid: 28034 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,35.5 parent: 2 - - uid: 28168 + - uid: 28035 components: - type: Transform pos: -10.5,99.5 parent: 2 - - uid: 28169 + - uid: 28036 components: - type: Transform pos: 82.5,15.5 parent: 2 - - uid: 28170 + - uid: 28037 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 28171 + - uid: 28038 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 28172 + - uid: 28039 components: - type: Transform pos: -16.5,3.5 parent: 2 - - uid: 28173 + - uid: 28040 components: - type: Transform pos: 29.5,53.5 parent: 2 - - uid: 28174 + - uid: 28041 components: - type: Transform pos: 39.5,47.5 parent: 2 - - uid: 28175 + - uid: 28042 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 28176 + - uid: 28043 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 28177 + - uid: 28044 components: - type: Transform pos: 76.5,24.5 parent: 2 - - uid: 28178 + - uid: 28045 components: - type: Transform pos: 74.5,24.5 parent: 2 - - uid: 28179 + - uid: 28046 components: - type: Transform pos: -11.5,-6.5 parent: 2 - - uid: 28180 + - uid: 28047 components: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 28181 + - uid: 28048 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 28182 + - uid: 28049 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 28183 + - uid: 28050 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,31.5 parent: 2 - - uid: 28184 + - uid: 28051 components: - type: Transform pos: -13.5,72.5 parent: 2 - - uid: 28185 + - uid: 28052 components: - type: Transform pos: -21.5,70.5 parent: 2 - - uid: 28186 + - uid: 28053 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 2 - - uid: 28187 + - uid: 28054 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-54.5 parent: 2 - - uid: 28188 + - uid: 28055 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,91.5 parent: 2 - - uid: 28189 + - uid: 28056 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 28190 + - uid: 28057 components: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 28191 + - uid: 28058 components: - type: Transform pos: -56.5,16.5 parent: 2 - - uid: 28192 + - uid: 28059 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 28193 + - uid: 28060 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 28194 + - uid: 28061 components: - type: Transform pos: 28.5,53.5 parent: 2 - - uid: 28195 + - uid: 28062 components: - type: Transform pos: 30.5,53.5 parent: 2 - - uid: 28196 + - uid: 28063 components: - type: Transform pos: -44.5,-76.5 parent: 2 - - uid: 28197 + - uid: 28064 components: - type: Transform pos: -73.5,17.5 parent: 2 - - uid: 28198 + - uid: 28065 components: - type: Transform pos: 19.5,-30.5 parent: 2 - - uid: 28199 + - uid: 28066 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 28200 + - uid: 28067 components: - type: Transform pos: 83.5,-46.5 parent: 2 - - uid: 28201 + - uid: 28068 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 28202 + - uid: 28069 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 28203 + - uid: 28070 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,35.5 parent: 2 - - uid: 28204 + - uid: 28071 components: - type: Transform pos: 31.5,-56.5 parent: 2 - - uid: 28205 + - uid: 28072 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 28206 + - uid: 28073 components: - type: Transform pos: 35.5,-56.5 parent: 2 - - uid: 28207 + - uid: 28074 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 28208 + - uid: 28075 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - uid: 28209 + - uid: 28076 components: - type: Transform pos: 41.5,-56.5 parent: 2 - - uid: 28210 + - uid: 28077 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,37.5 parent: 2 - - uid: 28211 + - uid: 28078 components: - type: Transform pos: 13.5,74.5 parent: 2 - - uid: 28212 + - uid: 28079 components: - type: Transform pos: -36.5,64.5 parent: 2 - - uid: 28213 + - uid: 28080 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 28214 + - uid: 28081 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 28215 + - uid: 28082 components: - type: Transform pos: 72.5,-27.5 parent: 2 - - uid: 28216 + - uid: 28083 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 28217 + - uid: 28084 components: - type: Transform pos: -42.5,62.5 parent: 2 - - uid: 28218 + - uid: 28085 components: - type: Transform pos: -37.5,64.5 parent: 2 - - uid: 28219 + - uid: 28086 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,97.5 parent: 2 - - uid: 28220 + - uid: 28087 components: - type: Transform pos: -39.5,64.5 parent: 2 - - uid: 28221 + - uid: 28088 components: - type: Transform pos: 16.5,85.5 parent: 2 - - uid: 28222 + - uid: 28089 components: - type: Transform pos: 16.5,86.5 parent: 2 - - uid: 28223 + - uid: 28090 components: - type: Transform pos: 18.5,86.5 parent: 2 - - uid: 28224 + - uid: 28091 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 28225 + - uid: 28092 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 28226 + - uid: 28093 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 28227 + - uid: 28094 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 28228 + - uid: 28095 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 28229 + - uid: 28096 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 28230 + - uid: 28097 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 28231 + - uid: 28098 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-45.5 parent: 2 - - uid: 28232 + - uid: 28099 components: - type: Transform pos: 20.5,-32.5 parent: 2 - - uid: 28233 + - uid: 28100 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 28234 + - uid: 28101 components: - type: Transform pos: 23.5,-49.5 parent: 2 - - uid: 28235 + - uid: 28102 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 2 - - uid: 28236 + - uid: 28103 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 28237 + - uid: 28104 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 28238 + - uid: 28105 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 28239 + - uid: 28106 components: - type: Transform pos: -4.5,19.5 parent: 2 - - uid: 28240 + - uid: 28107 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 28241 + - uid: 28108 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 28242 + - uid: 28109 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 28243 + - uid: 28110 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 28244 + - uid: 28111 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 28245 + - uid: 28112 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 28246 + - uid: 28113 components: - type: Transform pos: 66.5,-20.5 parent: 2 - - uid: 28247 + - uid: 28114 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 28248 + - uid: 28115 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 28249 + - uid: 28116 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 28250 + - uid: 28117 components: - type: Transform pos: -19.5,70.5 parent: 2 - - uid: 28251 + - uid: 28118 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 28252 + - uid: 28119 components: - type: Transform pos: 70.5,-12.5 parent: 2 - - uid: 28253 + - uid: 28120 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 28254 + - uid: 28121 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,86.5 parent: 2 - - uid: 28255 + - uid: 28122 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 - - uid: 28256 + - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,75.5 parent: 2 - - uid: 28257 + - uid: 28124 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,75.5 parent: 2 - - uid: 28258 + - uid: 28125 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,75.5 parent: 2 - - uid: 28259 + - uid: 28126 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,86.5 parent: 2 - - uid: 28260 + - uid: 28127 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-62.5 parent: 2 - - uid: 28261 + - uid: 28128 components: - type: Transform pos: 65.5,-31.5 parent: 2 - - uid: 28262 + - uid: 28129 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,10.5 parent: 2 - - uid: 28263 + - uid: 28130 components: - type: Transform pos: 4.5,73.5 parent: 2 - - uid: 28264 + - uid: 28131 components: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 28265 + - uid: 28132 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 28266 + - uid: 28133 components: - type: Transform pos: 32.5,57.5 parent: 2 - - uid: 28267 + - uid: 28134 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 28268 + - uid: 28135 components: - type: Transform pos: 16.5,33.5 parent: 2 - - uid: 28269 + - uid: 28136 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,88.5 parent: 2 - - uid: 28270 + - uid: 28137 components: - type: Transform pos: 64.5,-14.5 parent: 2 - - uid: 28271 + - uid: 28138 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 28272 + - uid: 28139 components: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 28273 + - uid: 28140 components: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 28274 + - uid: 28141 components: - type: Transform pos: -66.5,5.5 parent: 2 - - uid: 28275 + - uid: 28142 components: - type: Transform pos: 29.5,62.5 parent: 2 - - uid: 28276 + - uid: 28143 components: - type: Transform pos: 28.5,62.5 parent: 2 - - uid: 28277 + - uid: 28144 components: - type: Transform pos: 74.5,-25.5 parent: 2 - - uid: 28278 + - uid: 28145 components: - type: Transform pos: 63.5,-8.5 parent: 2 - - uid: 28279 + - uid: 28146 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 28280 + - uid: 28147 components: - type: Transform pos: 23.5,-25.5 parent: 2 - - uid: 28281 + - uid: 28148 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 28282 + - uid: 28149 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 28283 + - uid: 28150 components: - type: Transform pos: 23.5,-27.5 parent: 2 - - uid: 28284 + - uid: 28151 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 28285 + - uid: 28152 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 28286 + - uid: 28153 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 28287 + - uid: 28154 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 28288 + - uid: 28155 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 28289 + - uid: 28156 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 28290 + - uid: 28157 components: - type: Transform pos: 4.5,90.5 parent: 2 - - uid: 28291 + - uid: 28158 components: - type: Transform pos: 18.5,31.5 parent: 2 - - uid: 28292 + - uid: 28159 components: - type: Transform pos: 32.5,58.5 parent: 2 - - uid: 28293 + - uid: 28160 components: - type: Transform pos: 65.5,-8.5 parent: 2 - - uid: 28294 + - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-60.5 parent: 2 - - uid: 28295 + - uid: 28162 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 28296 + - uid: 28163 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 28297 + - uid: 28164 components: - type: Transform pos: 2.5,19.5 parent: 2 - - uid: 28298 + - uid: 28165 components: - type: Transform pos: 15.5,16.5 parent: 2 - - uid: 28299 + - uid: 28166 components: - type: Transform pos: -5.5,19.5 parent: 2 - - uid: 28300 + - uid: 28167 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 28301 + - uid: 28168 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 28302 + - uid: 28169 components: - type: Transform pos: 38.5,-71.5 parent: 2 - - uid: 28303 + - uid: 28170 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 28304 + - uid: 28171 components: - type: Transform pos: 77.5,-17.5 parent: 2 - - uid: 28305 + - uid: 28172 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 28306 + - uid: 28173 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 28307 + - uid: 28174 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 28308 + - uid: 28175 components: - type: Transform pos: 66.5,-28.5 parent: 2 - - uid: 28309 + - uid: 28176 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 28310 + - uid: 28177 components: - type: Transform pos: -20.5,-26.5 parent: 2 - - uid: 28311 + - uid: 28178 components: - type: Transform pos: 4.5,19.5 parent: 2 - - uid: 28312 + - uid: 28179 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 28313 + - uid: 28180 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 28314 + - uid: 28181 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 28315 + - uid: 28182 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 28316 + - uid: 28183 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 28317 + - uid: 28184 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 28318 + - uid: 28185 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 28319 + - uid: 28186 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 28320 + - uid: 28187 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 28321 + - uid: 28188 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 28322 + - uid: 28189 components: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 28323 + - uid: 28190 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 28324 + - uid: 28191 components: - type: Transform pos: -47.5,26.5 parent: 2 - - uid: 28325 + - uid: 28192 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 28326 + - uid: 28193 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 28327 + - uid: 28194 components: - type: Transform pos: -75.5,8.5 parent: 2 - - uid: 28328 + - uid: 28195 components: - type: Transform pos: 64.5,-8.5 parent: 2 - - uid: 28329 + - uid: 28196 components: - type: Transform pos: -59.5,15.5 parent: 2 - - uid: 28330 + - uid: 28197 components: - type: Transform pos: -60.5,16.5 parent: 2 - - uid: 28331 + - uid: 28198 components: - type: Transform pos: -61.5,17.5 parent: 2 - - uid: 28332 + - uid: 28199 components: - type: Transform pos: -61.5,18.5 parent: 2 - - uid: 28333 + - uid: 28200 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 28334 + - uid: 28201 components: - type: Transform pos: 6.5,17.5 parent: 2 - - uid: 28335 + - uid: 28202 components: - type: Transform pos: 5.5,19.5 parent: 2 - - uid: 28336 + - uid: 28203 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 28337 + - uid: 28204 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 28338 + - uid: 28205 components: - type: Transform pos: 5.5,18.5 parent: 2 - - uid: 28339 + - uid: 28206 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 28340 + - uid: 28207 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 28341 + - uid: 28208 components: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 28342 + - uid: 28209 components: - type: Transform pos: 71.5,12.5 parent: 2 - - uid: 28343 + - uid: 28210 components: - type: Transform pos: -65.5,-48.5 parent: 2 - - uid: 28344 + - uid: 28211 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 28345 + - uid: 28212 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 28346 + - uid: 28213 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 28347 + - uid: 28214 components: - type: Transform pos: 85.5,11.5 parent: 2 - - uid: 28348 + - uid: 28215 components: - type: Transform pos: 68.5,-14.5 parent: 2 - - uid: 28349 + - uid: 28216 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 28350 + - uid: 28217 components: - type: Transform pos: 72.5,-25.5 parent: 2 - - uid: 28351 + - uid: 28218 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 28352 + - uid: 28219 components: - type: Transform pos: 71.5,16.5 parent: 2 - - uid: 28353 + - uid: 28220 components: - type: Transform pos: -55.5,17.5 parent: 2 - - uid: 28354 + - uid: 28221 components: - type: Transform pos: 79.5,-22.5 parent: 2 - - uid: 28355 + - uid: 28222 components: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 28356 + - uid: 28223 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 28357 + - uid: 28224 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 28358 + - uid: 28225 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 28359 + - uid: 28226 components: - type: Transform pos: -12.5,21.5 parent: 2 - - uid: 28360 + - uid: 28227 components: - type: Transform pos: -10.5,21.5 parent: 2 - - uid: 28361 + - uid: 28228 components: - type: Transform pos: 0.5,19.5 parent: 2 - - uid: 28362 + - uid: 28229 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 28363 + - uid: 28230 components: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 28364 + - uid: 28231 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 28365 + - uid: 28232 components: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 28366 + - uid: 28233 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 28367 + - uid: 28234 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 28368 + - uid: 28235 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 28369 + - uid: 28236 components: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 28370 + - uid: 28237 components: - type: Transform pos: 19.5,-37.5 parent: 2 - - uid: 28371 + - uid: 28238 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 28372 + - uid: 28239 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 28373 + - uid: 28240 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 28374 + - uid: 28241 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 28375 + - uid: 28242 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 28376 + - uid: 28243 components: - type: Transform pos: 42.5,-71.5 parent: 2 - - uid: 28377 + - uid: 28244 components: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 28378 + - uid: 28245 components: - type: Transform pos: 4.5,63.5 parent: 2 - - uid: 28379 + - uid: 28246 components: - type: Transform pos: -43.5,32.5 parent: 2 - - uid: 28380 + - uid: 28247 components: - type: Transform pos: 33.5,19.5 parent: 2 - - uid: 28381 + - uid: 28248 components: - type: Transform pos: -12.5,99.5 parent: 2 - - uid: 28382 + - uid: 28249 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-69.5 parent: 2 - - uid: 28383 + - uid: 28250 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 28384 + - uid: 28251 components: - type: Transform pos: 78.5,-19.5 parent: 2 - - uid: 28385 + - uid: 28252 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 28386 + - uid: 28253 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 28387 + - uid: 28254 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-73.5 parent: 2 - - uid: 28388 + - uid: 28255 components: - type: Transform pos: 24.5,60.5 parent: 2 - - uid: 28389 + - uid: 28256 components: - type: Transform pos: 24.5,61.5 parent: 2 - - uid: 28390 + - uid: 28257 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 28391 + - uid: 28258 components: - type: Transform pos: 5.5,32.5 parent: 2 - - uid: 28392 + - uid: 28259 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 28393 + - uid: 28260 components: - type: Transform pos: 16.5,69.5 parent: 2 - - uid: 28394 + - uid: 28261 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 28395 + - uid: 28262 components: - type: Transform pos: 37.5,53.5 parent: 2 - - uid: 28396 + - uid: 28263 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 28397 + - uid: 28264 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-42.5 parent: 2 - - uid: 28398 + - uid: 28265 components: - type: Transform pos: -26.5,-79.5 parent: 2 - - uid: 28399 + - uid: 28266 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 28400 + - uid: 28267 components: - type: Transform pos: 14.5,89.5 parent: 2 - - uid: 28401 + - uid: 28268 components: - type: Transform pos: -44.5,-72.5 parent: 2 - - uid: 28402 + - uid: 28269 components: - type: Transform pos: -44.5,-73.5 parent: 2 - - uid: 28403 + - uid: 28270 components: - type: Transform pos: 74.5,26.5 parent: 2 - - uid: 28404 + - uid: 28271 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 28405 + - uid: 28272 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 28406 + - uid: 28273 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 28407 + - uid: 28274 components: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 28408 + - uid: 28275 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 28409 + - uid: 28276 components: - type: Transform pos: 16.5,65.5 parent: 2 - - uid: 28410 + - uid: 28277 components: - type: Transform pos: 16.5,72.5 parent: 2 - - uid: 28411 + - uid: 28278 components: - type: Transform pos: -46.5,-75.5 parent: 2 - - uid: 28412 + - uid: 28279 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 28413 + - uid: 28280 components: - type: Transform pos: -29.5,-24.5 parent: 2 - - uid: 28414 + - uid: 28281 components: - type: Transform pos: 66.5,-25.5 parent: 2 - - uid: 28415 + - uid: 28282 components: - type: Transform pos: 3.5,19.5 parent: 2 - - uid: 28416 + - uid: 28283 components: - type: Transform pos: 38.5,53.5 parent: 2 - - uid: 28417 + - uid: 28284 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 28418 + - uid: 28285 components: - type: Transform pos: 12.5,-36.5 parent: 2 - - uid: 28419 + - uid: 28286 components: - type: Transform pos: -71.5,17.5 parent: 2 - - uid: 28420 + - uid: 28287 components: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 28421 + - uid: 28288 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 28422 + - uid: 28289 components: - type: Transform pos: 23.5,-31.5 parent: 2 - - uid: 28423 + - uid: 28290 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 28424 + - uid: 28291 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 28425 + - uid: 28292 components: - type: Transform pos: -43.5,34.5 parent: 2 - - uid: 28426 + - uid: 28293 components: - type: Transform pos: 2.5,-58.5 parent: 2 - - uid: 28427 + - uid: 28294 components: - type: Transform pos: 78.5,-14.5 parent: 2 - - uid: 28428 + - uid: 28295 components: - type: Transform pos: -42.5,54.5 parent: 2 - - uid: 28429 + - uid: 28296 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 28430 + - uid: 28297 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 28431 + - uid: 28298 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 28432 + - uid: 28299 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,91.5 parent: 2 - - uid: 28433 + - uid: 28300 components: - type: Transform pos: -35.5,64.5 parent: 2 - - uid: 28434 + - uid: 28301 components: - type: Transform pos: -59.5,9.5 parent: 2 - - uid: 28435 + - uid: 28302 components: - type: Transform pos: 70.5,-27.5 parent: 2 - - uid: 28436 + - uid: 28303 components: - type: Transform pos: 24.5,62.5 parent: 2 - - uid: 28437 + - uid: 28304 components: - type: Transform pos: 36.5,53.5 parent: 2 - - uid: 28438 + - uid: 28305 components: - type: Transform pos: 16.5,67.5 parent: 2 - - uid: 28439 + - uid: 28306 components: - type: Transform pos: 41.5,16.5 parent: 2 - - uid: 28440 + - uid: 28307 components: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 28441 + - uid: 28308 components: - type: Transform pos: 13.5,75.5 parent: 2 - - uid: 28442 + - uid: 28309 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 28443 + - uid: 28310 components: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 28444 + - uid: 28311 components: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 28445 + - uid: 28312 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 28446 + - uid: 28313 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 28447 + - uid: 28314 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,50.5 parent: 2 - - uid: 28448 + - uid: 28315 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 28449 + - uid: 28316 components: - type: Transform pos: 37.5,47.5 parent: 2 - - uid: 28450 + - uid: 28317 components: - type: Transform pos: -28.5,99.5 parent: 2 - - uid: 28451 + - uid: 28318 components: - type: Transform pos: -67.5,21.5 parent: 2 - - uid: 28452 + - uid: 28319 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 28453 + - uid: 28320 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 28454 + - uid: 28321 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 28455 + - uid: 28322 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 28456 + - uid: 28323 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 28457 + - uid: 28324 components: - type: Transform pos: -53.5,39.5 parent: 2 - - uid: 28458 + - uid: 28325 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 28459 + - uid: 28326 components: - type: Transform pos: -57.5,33.5 parent: 2 - - uid: 28460 + - uid: 28327 components: - type: Transform pos: -36.5,-30.5 parent: 2 - - uid: 28461 + - uid: 28328 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 28462 + - uid: 28329 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 28463 + - uid: 28330 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 28464 + - uid: 28331 components: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 28465 + - uid: 28332 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 28466 + - uid: 28333 components: - type: Transform pos: 15.5,-37.5 parent: 2 - - uid: 28467 + - uid: 28334 components: - type: Transform pos: 31.5,53.5 parent: 2 - - uid: 28468 + - uid: 28335 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 28469 + - uid: 28336 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 28470 + - uid: 28337 components: - type: Transform pos: -33.5,64.5 parent: 2 - - uid: 28471 + - uid: 28338 components: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 28472 + - uid: 28339 components: - type: Transform pos: -45.5,29.5 parent: 2 - - uid: 28473 + - uid: 28340 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 28474 + - uid: 28341 components: - type: Transform pos: -45.5,34.5 parent: 2 - - uid: 28475 + - uid: 28342 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 28476 + - uid: 28343 components: - type: Transform pos: 25.5,-70.5 parent: 2 - - uid: 28477 + - uid: 28344 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 28478 + - uid: 28345 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 - - uid: 28479 + - uid: 28346 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 28480 + - uid: 28347 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 28481 + - uid: 28348 components: - type: Transform pos: -42.5,-53.5 parent: 2 - - uid: 28482 + - uid: 28349 components: - type: Transform pos: -42.5,-52.5 parent: 2 - - uid: 28483 + - uid: 28350 components: - type: Transform pos: -78.5,-30.5 parent: 2 - - uid: 28484 + - uid: 28351 components: - type: Transform pos: -68.5,-46.5 parent: 2 - - uid: 28485 + - uid: 28352 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 28486 + - uid: 28353 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 28487 + - uid: 28354 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 28488 + - uid: 28355 components: - type: Transform pos: 15.5,-26.5 parent: 2 - - uid: 28489 + - uid: 28356 components: - type: Transform pos: 28.5,-64.5 parent: 2 - - uid: 28490 + - uid: 28357 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 28491 + - uid: 28358 components: - type: Transform pos: 9.5,-21.5 parent: 2 - - uid: 28492 + - uid: 28359 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 28493 + - uid: 28360 components: - type: Transform pos: 19.5,-31.5 parent: 2 - - uid: 28494 + - uid: 28361 components: - type: Transform pos: 16.5,-56.5 parent: 2 - - uid: 28495 + - uid: 28362 components: - type: Transform pos: 72.5,-14.5 parent: 2 - - uid: 28496 + - uid: 28363 components: - type: Transform pos: 66.5,-14.5 parent: 2 - - uid: 28497 + - uid: 28364 components: - type: Transform pos: 24.5,71.5 parent: 2 - - uid: 28498 + - uid: 28365 components: - type: Transform pos: -57.5,8.5 parent: 2 - - uid: 28499 + - uid: 28366 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 28500 + - uid: 28367 components: - type: Transform pos: 4.5,92.5 parent: 2 - - uid: 28503 + - uid: 28368 components: - type: Transform pos: 60.5,-42.5 parent: 2 - - uid: 28504 + - uid: 28369 components: - type: Transform pos: 81.5,-22.5 parent: 2 - - uid: 28505 + - uid: 28370 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 28506 + - uid: 28371 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-70.5 parent: 2 - - uid: 28507 + - uid: 28372 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 28508 + - uid: 28373 components: - type: Transform pos: 12.5,39.5 parent: 2 - - uid: 28509 + - uid: 28374 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 28510 + - uid: 28375 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 28511 + - uid: 28376 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 28512 + - uid: 28377 components: - type: Transform pos: 74.5,-35.5 parent: 2 - - uid: 28513 + - uid: 28378 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 28514 + - uid: 28379 components: - type: Transform pos: 76.5,-20.5 parent: 2 - - uid: 28515 + - uid: 28380 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 28516 + - uid: 28381 components: - type: Transform pos: 64.5,-26.5 parent: 2 - - uid: 28517 + - uid: 28382 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 28518 + - uid: 28383 components: - type: Transform pos: 71.5,-25.5 parent: 2 - - uid: 28519 + - uid: 28384 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 28520 + - uid: 28385 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-42.5 parent: 2 - - uid: 28521 + - uid: 28386 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 28522 + - uid: 28387 components: - type: Transform pos: 67.5,-27.5 parent: 2 - - uid: 28523 + - uid: 28388 components: - type: Transform pos: 34.5,47.5 parent: 2 - - uid: 28524 + - uid: 28389 components: - type: Transform pos: 12.5,44.5 parent: 2 - - uid: 28525 + - uid: 28390 components: - type: Transform pos: 10.5,32.5 parent: 2 - - uid: 28527 + - uid: 28391 components: - type: Transform pos: -27.5,86.5 parent: 2 - - uid: 28528 + - uid: 28392 components: - type: Transform pos: 82.5,-19.5 parent: 2 - - uid: 28529 + - uid: 28393 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 28530 + - uid: 28394 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 28531 + - uid: 28395 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-36.5 parent: 2 - - uid: 28532 + - uid: 28396 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 28533 + - uid: 28397 components: - type: Transform pos: 74.5,-14.5 parent: 2 - - uid: 28534 + - uid: 28398 components: - type: Transform pos: 75.5,-14.5 parent: 2 - - uid: 28535 + - uid: 28399 components: - type: Transform pos: 68.5,-12.5 parent: 2 - - uid: 28536 + - uid: 28400 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 28537 + - uid: 28401 components: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 28538 + - uid: 28402 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 28539 + - uid: 28403 components: - type: Transform pos: 34.5,53.5 parent: 2 - - uid: 28540 + - uid: 28404 components: - type: Transform pos: 6.5,38.5 parent: 2 - - uid: 28541 + - uid: 28405 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-78.5 parent: 2 - - uid: 28542 + - uid: 28406 components: - type: Transform pos: 9.5,38.5 parent: 2 - - uid: 28543 + - uid: 28407 components: - type: Transform pos: 11.5,38.5 parent: 2 - - uid: 28544 + - uid: 28408 components: - type: Transform pos: -44.5,-75.5 parent: 2 - - uid: 28545 + - uid: 28409 components: - type: Transform pos: 38.5,47.5 parent: 2 - - uid: 28546 + - uid: 28410 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,72.5 parent: 2 - - uid: 28547 + - uid: 28411 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 28548 + - uid: 28412 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 28549 + - uid: 28413 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 28550 + - uid: 28414 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 28551 + - uid: 28415 components: - type: Transform pos: 35.5,53.5 parent: 2 - - uid: 28552 + - uid: 28416 components: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 28553 + - uid: 28417 components: - type: Transform pos: 32.5,53.5 parent: 2 - - uid: 28554 + - uid: 28418 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 28555 + - uid: 28419 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,18.5 parent: 2 - - uid: 28556 + - uid: 28420 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 28557 + - uid: 28421 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,73.5 parent: 2 - - uid: 28558 + - uid: 28422 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,82.5 parent: 2 - - uid: 28559 + - uid: 28423 components: - type: Transform pos: 62.5,-31.5 parent: 2 - - uid: 28560 + - uid: 28424 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 28561 + - uid: 28425 components: - type: Transform pos: -55.5,31.5 parent: 2 - - uid: 28562 + - uid: 28426 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 28563 + - uid: 28427 components: - type: Transform pos: -31.5,94.5 parent: 2 - - uid: 28564 + - uid: 28428 components: - type: Transform pos: -67.5,13.5 parent: 2 - - uid: 28565 + - uid: 28429 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 28566 + - uid: 28430 components: - type: Transform pos: 66.5,-9.5 parent: 2 - - uid: 28567 + - uid: 28431 components: - type: Transform pos: 66.5,-24.5 parent: 2 - - uid: 28568 + - uid: 28432 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-52.5 parent: 2 - - uid: 28569 + - uid: 28433 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 - - uid: 28570 + - uid: 28434 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 28571 + - uid: 28435 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 28572 + - uid: 28436 components: - type: Transform pos: 37.5,21.5 parent: 2 - - uid: 28573 + - uid: 28437 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - uid: 28574 + - uid: 28438 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 28575 + - uid: 28439 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 28576 + - uid: 28440 components: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 28577 + - uid: 28441 components: - type: Transform pos: -43.5,33.5 parent: 2 - - uid: 28578 + - uid: 28442 components: - type: Transform pos: 7.5,91.5 parent: 2 - - uid: 28579 + - uid: 28443 components: - type: Transform pos: 26.5,62.5 parent: 2 - - uid: 28580 + - uid: 28444 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 28581 + - uid: 28445 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 28582 + - uid: 28446 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 28583 + - uid: 28447 components: - type: Transform pos: 79.5,-17.5 parent: 2 - - uid: 28584 + - uid: 28448 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 28585 + - uid: 28449 components: - type: Transform pos: 81.5,-17.5 parent: 2 - - uid: 28586 + - uid: 28450 components: - type: Transform pos: -61.5,-48.5 parent: 2 - - uid: 28587 + - uid: 28451 components: - type: Transform pos: -11.5,-38.5 parent: 2 - - uid: 28588 + - uid: 28452 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 28589 + - uid: 28453 components: - type: Transform pos: 12.5,16.5 parent: 2 - - uid: 28590 + - uid: 28454 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 28591 + - uid: 28455 components: - type: Transform pos: -15.5,-42.5 parent: 2 - - uid: 28592 + - uid: 28456 components: - type: Transform pos: -63.5,-48.5 parent: 2 - - uid: 28593 + - uid: 28457 components: - type: Transform pos: -11.5,-42.5 parent: 2 - - uid: 28594 + - uid: 28458 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 28595 + - uid: 28459 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 28596 + - uid: 28460 components: - type: Transform pos: -6.5,19.5 parent: 2 - - uid: 28597 + - uid: 28461 components: - type: Transform pos: 12.5,21.5 parent: 2 - - uid: 28598 + - uid: 28462 components: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 28599 + - uid: 28463 components: - type: Transform pos: -53.5,31.5 parent: 2 - - uid: 28600 + - uid: 28464 components: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 28601 + - uid: 28465 components: - type: Transform pos: 64.5,-15.5 parent: 2 - - uid: 28602 + - uid: 28466 components: - type: Transform pos: -66.5,9.5 parent: 2 - - uid: 28603 + - uid: 28467 components: - type: Transform pos: 66.5,-12.5 parent: 2 - - uid: 28604 + - uid: 28468 components: - type: Transform pos: 61.5,-31.5 parent: 2 - - uid: 28605 + - uid: 28469 components: - type: Transform pos: 65.5,-27.5 parent: 2 - - uid: 28606 + - uid: 28470 components: - type: Transform pos: -31.5,95.5 parent: 2 - - uid: 28607 + - uid: 28471 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 28608 + - uid: 28472 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-38.5 parent: 2 - - uid: 28609 + - uid: 28473 components: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 28611 + - uid: 28474 components: - type: Transform pos: 59.5,-42.5 parent: 2 - - uid: 28612 + - uid: 28475 components: - type: Transform pos: -0.5,-82.5 parent: 2 - - uid: 28613 + - uid: 28476 components: - type: Transform pos: 77.5,-27.5 parent: 2 - - uid: 28614 + - uid: 28477 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 28615 + - uid: 28478 components: - type: Transform pos: -57.5,37.5 parent: 2 - - uid: 28616 + - uid: 28479 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 28617 + - uid: 28480 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 28618 + - uid: 28481 components: - type: Transform pos: -3.5,19.5 parent: 2 - - uid: 28619 + - uid: 28482 components: - type: Transform pos: -1.5,19.5 parent: 2 - - uid: 28620 + - uid: 28483 components: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 28621 + - uid: 28484 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 28622 + - uid: 28485 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 28623 + - uid: 28486 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 28624 + - uid: 28487 components: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 28625 + - uid: 28488 components: - type: Transform pos: 76.5,-14.5 parent: 2 - - uid: 28626 + - uid: 28489 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 28627 + - uid: 28490 components: - type: Transform pos: 41.5,-75.5 parent: 2 - - uid: 28628 + - uid: 28491 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 28629 + - uid: 28492 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 28630 + - uid: 28493 components: - type: Transform pos: -44.5,17.5 parent: 2 - - uid: 28631 + - uid: 28494 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,31.5 parent: 2 - - uid: 28632 + - uid: 28495 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 28633 + - uid: 28496 components: - type: Transform pos: -69.5,17.5 parent: 2 - - uid: 28634 + - uid: 28497 components: - type: Transform pos: 30.5,-27.5 parent: 2 - - uid: 28635 + - uid: 28498 components: - type: Transform pos: -61.5,-2.5 parent: 2 - - uid: 28636 + - uid: 28499 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,89.5 parent: 2 - - uid: 28637 + - uid: 28500 components: - type: Transform pos: 84.5,11.5 parent: 2 - - uid: 28638 + - uid: 28501 components: - type: Transform pos: 25.5,-64.5 parent: 2 - - uid: 28639 + - uid: 28502 components: - type: Transform pos: 35.5,47.5 parent: 2 - - uid: 28640 + - uid: 28503 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 28641 + - uid: 28504 components: - type: Transform pos: 76.5,26.5 parent: 2 - - uid: 28642 + - uid: 28505 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 28643 + - uid: 28506 components: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 28644 + - uid: 28507 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 28645 + - uid: 28508 components: - type: Transform pos: 66.5,-27.5 parent: 2 - - uid: 28646 + - uid: 28509 components: - type: Transform pos: -45.5,32.5 parent: 2 - - uid: 28647 + - uid: 28510 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 28648 + - uid: 28511 components: - type: Transform pos: 30.5,41.5 parent: 2 - - uid: 28649 + - uid: 28512 components: - type: Transform pos: 30.5,42.5 parent: 2 - - uid: 28650 + - uid: 28513 components: - type: Transform pos: 3.5,79.5 parent: 2 - - uid: 28651 + - uid: 28514 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 28652 + - uid: 28515 components: - type: Transform pos: 30.5,43.5 parent: 2 - - uid: 28653 + - uid: 28516 components: - type: Transform pos: 39.5,53.5 parent: 2 - - uid: 28654 + - uid: 28517 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-68.5 parent: 2 - - uid: 28655 + - uid: 28518 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 28656 + - uid: 28519 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 28657 + - uid: 28520 components: - type: Transform pos: 3.5,32.5 parent: 2 - - uid: 28658 + - uid: 28521 components: - type: Transform pos: 54.5,-7.5 parent: 2 - - uid: 28659 + - uid: 28522 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 28660 + - uid: 28523 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 28661 + - uid: 28524 components: - type: Transform pos: -23.5,3.5 parent: 2 - - uid: 28662 + - uid: 28525 components: - type: Transform pos: 66.5,-19.5 parent: 2 - - uid: 28663 + - uid: 28526 components: - type: Transform pos: 66.5,-17.5 parent: 2 - - uid: 28664 + - uid: 28527 components: - type: Transform pos: 78.5,-27.5 parent: 2 - - uid: 28665 + - uid: 28528 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 28666 + - uid: 28529 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 28667 + - uid: 28530 components: - type: Transform pos: 58.5,-8.5 parent: 2 - - uid: 28668 + - uid: 28531 components: - type: Transform pos: 82.5,-17.5 parent: 2 - - uid: 28669 + - uid: 28532 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 28670 + - uid: 28533 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 28671 + - uid: 28534 components: - type: Transform pos: 78.5,-13.5 parent: 2 - - uid: 28672 + - uid: 28535 components: - type: Transform pos: 18.5,30.5 parent: 2 - - uid: 28673 + - uid: 28536 components: - type: Transform pos: -42.5,60.5 parent: 2 - - uid: 28674 + - uid: 28537 components: - type: Transform pos: -5.5,70.5 parent: 2 - - uid: 28675 + - uid: 28538 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,86.5 parent: 2 - - uid: 28676 + - uid: 28539 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 28677 + - uid: 28540 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,89.5 parent: 2 - - uid: 28678 + - uid: 28541 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,29.5 parent: 2 - - uid: 28679 + - uid: 28542 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,88.5 parent: 2 - - uid: 28680 + - uid: 28543 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 28681 + - uid: 28544 components: - type: Transform pos: -45.5,33.5 parent: 2 - - uid: 28682 + - uid: 28545 components: - type: Transform pos: 73.5,-12.5 parent: 2 - - uid: 28683 + - uid: 28546 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,92.5 parent: 2 - - uid: 28684 + - uid: 28547 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,92.5 parent: 2 - - uid: 28685 + - uid: 28548 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,91.5 parent: 2 - - uid: 28686 + - uid: 28549 components: - type: Transform pos: -36.5,17.5 parent: 2 - - uid: 28687 + - uid: 28550 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 28688 + - uid: 28551 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 28689 + - uid: 28552 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 28690 + - uid: 28553 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 2 - - uid: 28691 + - uid: 28554 components: - type: Transform pos: 78.5,-22.5 parent: 2 - - uid: 28692 + - uid: 28555 components: - type: Transform pos: 77.5,-22.5 parent: 2 - - uid: 28693 + - uid: 28556 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 28694 + - uid: 28557 components: - type: Transform pos: 59.5,-8.5 parent: 2 - - uid: 28695 + - uid: 28558 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 28696 + - uid: 28559 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 28697 + - uid: 28560 components: - type: Transform pos: -27.5,95.5 parent: 2 - - uid: 28698 + - uid: 28561 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-36.5 parent: 2 - - uid: 28699 + - uid: 28562 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 28700 + - uid: 28563 components: - type: Transform pos: -26.5,82.5 parent: 2 - - uid: 28701 + - uid: 28564 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 28702 + - uid: 28565 components: - type: Transform pos: 25.5,-69.5 parent: 2 - - uid: 28703 + - uid: 28566 components: - type: Transform pos: -13.5,49.5 parent: 2 - - uid: 28704 + - uid: 28567 components: - type: Transform pos: -51.5,33.5 parent: 2 - - uid: 28705 + - uid: 28568 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 28706 + - uid: 28569 components: - type: Transform pos: 80.5,13.5 parent: 2 - - uid: 28707 + - uid: 28570 components: - type: Transform pos: -27.5,73.5 parent: 2 - - uid: 28708 + - uid: 28571 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 28709 + - uid: 28572 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-3.5 parent: 2 - - uid: 28710 + - uid: 28573 components: - type: Transform pos: -45.5,-75.5 parent: 2 - - uid: 28711 + - uid: 28574 components: - type: Transform pos: 48.5,21.5 parent: 2 - - uid: 28712 + - uid: 28575 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 28713 + - uid: 28576 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-2.5 parent: 2 - - uid: 28714 + - uid: 28577 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 28715 + - uid: 28578 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-4.5 parent: 2 - - uid: 28716 + - uid: 28579 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 28717 + - uid: 28580 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 28718 + - uid: 28581 components: - type: Transform pos: 8.5,45.5 parent: 2 - - uid: 28719 + - uid: 28582 components: - type: Transform pos: 4.5,89.5 parent: 2 - - uid: 28720 + - uid: 28583 components: - type: Transform pos: -14.5,79.5 parent: 2 - - uid: 28721 + - uid: 28584 components: - type: Transform pos: -8.5,79.5 parent: 2 - - uid: 28722 + - uid: 28585 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 28723 + - uid: 28586 components: - type: Transform pos: 7.5,86.5 parent: 2 - - uid: 28724 + - uid: 28587 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 28725 + - uid: 28588 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 28726 + - uid: 28589 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 28727 + - uid: 28590 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 28728 + - uid: 28591 components: - type: Transform pos: 21.5,-49.5 parent: 2 - - uid: 28729 + - uid: 28592 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 28730 + - uid: 28593 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 28731 + - uid: 28594 components: - type: Transform pos: -15.5,-36.5 parent: 2 - - uid: 28732 + - uid: 28595 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 28733 + - uid: 28596 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - uid: 28734 + - uid: 28597 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 28735 + - uid: 28598 components: - type: Transform pos: -46.5,26.5 parent: 2 - - uid: 28736 + - uid: 28599 components: - type: Transform pos: -50.5,23.5 parent: 2 - - uid: 28737 + - uid: 28600 components: - type: Transform pos: -61.5,-3.5 parent: 2 - - uid: 28738 + - uid: 28601 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 28739 + - uid: 28602 components: - type: Transform pos: -43.5,27.5 parent: 2 - - uid: 28740 + - uid: 28603 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 28741 + - uid: 28604 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - - uid: 28742 + - uid: 28605 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 28743 + - uid: 28606 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 28744 + - uid: 28607 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 28745 + - uid: 28608 components: - type: Transform pos: -3.5,-60.5 parent: 2 - - uid: 28746 + - uid: 28609 components: - type: Transform pos: 37.5,19.5 parent: 2 - - uid: 28748 + - uid: 28610 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 28749 + - uid: 28611 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 28750 + - uid: 28612 components: - type: Transform pos: -57.5,35.5 parent: 2 - - uid: 28751 + - uid: 28613 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 28752 + - uid: 28614 components: - type: Transform pos: -42.5,61.5 parent: 2 - - uid: 28753 + - uid: 28615 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 28754 + - uid: 28616 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 28755 + - uid: 28617 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 28756 + - uid: 28618 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 28757 + - uid: 28619 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 28758 + - uid: 28620 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 28759 + - uid: 28621 components: - type: Transform pos: 52.5,-7.5 parent: 2 - - uid: 28760 + - uid: 28622 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 28761 + - uid: 28623 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 28762 + - uid: 28624 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 28763 + - uid: 28625 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 28764 + - uid: 28626 components: - type: Transform pos: -57.5,-51.5 parent: 2 - - uid: 28765 + - uid: 28627 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 2 - - uid: 28766 + - uid: 28628 components: - type: Transform pos: -27.5,94.5 parent: 2 - - uid: 28767 + - uid: 28629 components: - type: Transform pos: 13.5,82.5 parent: 2 - - uid: 28768 + - uid: 28630 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 28769 + - uid: 28631 components: - type: Transform pos: -26.5,79.5 parent: 2 - - uid: 28770 + - uid: 28632 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 28771 + - uid: 28633 components: - type: Transform pos: 56.5,-41.5 parent: 2 - - uid: 28772 + - uid: 28634 components: - type: Transform pos: 83.5,-43.5 parent: 2 - - uid: 28773 + - uid: 28635 components: - type: Transform pos: 74.5,-12.5 parent: 2 - - uid: 28774 + - uid: 28636 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 28775 + - uid: 28637 components: - type: Transform pos: 42.5,16.5 parent: 2 - - uid: 28776 + - uid: 28638 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 28777 + - uid: 28639 components: - type: Transform pos: 29.5,55.5 parent: 2 - - uid: 28778 + - uid: 28640 components: - type: Transform pos: 25.5,62.5 parent: 2 - - uid: 28779 + - uid: 28641 components: - type: Transform pos: 8.5,40.5 parent: 2 - - uid: 28780 + - uid: 28642 components: - type: Transform pos: 55.5,-41.5 parent: 2 - - uid: 28781 + - uid: 28643 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 28782 + - uid: 28644 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 28783 + - uid: 28645 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 28784 + - uid: 28646 components: - type: Transform pos: 78.5,-12.5 parent: 2 - - uid: 28785 + - uid: 28647 components: - type: Transform pos: 17.5,88.5 parent: 2 - - uid: 28786 + - uid: 28648 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 28787 + - uid: 28649 components: - type: Transform pos: 16.5,88.5 parent: 2 - - uid: 28788 + - uid: 28650 components: - type: Transform pos: 12.5,90.5 parent: 2 - - uid: 28789 + - uid: 28651 components: - type: Transform pos: 18.5,88.5 parent: 2 - - uid: 28791 + - uid: 28652 components: - type: Transform pos: 44.5,22.5 parent: 2 - - uid: 28792 + - uid: 28653 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 28793 + - uid: 28654 components: - type: Transform pos: 78.5,-20.5 parent: 2 - - uid: 28794 + - uid: 28655 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-62.5 parent: 2 - - uid: 28795 + - uid: 28656 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 28796 + - uid: 28657 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 28797 + - uid: 28658 components: - type: Transform pos: 57.5,-41.5 parent: 2 - - uid: 28798 + - uid: 28659 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 28799 + - uid: 28660 components: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 28800 + - uid: 28661 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 28801 + - uid: 28662 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 28802 + - uid: 28663 components: - type: Transform pos: 30.5,55.5 parent: 2 - - uid: 28803 + - uid: 28664 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 28804 + - uid: 28665 components: - type: Transform pos: -35.5,22.5 parent: 2 - - uid: 28805 + - uid: 28666 components: - type: Transform pos: 4.5,88.5 parent: 2 - - uid: 28806 + - uid: 28667 components: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 28807 + - uid: 28668 components: - type: Transform pos: 22.5,-56.5 parent: 2 - - uid: 28808 + - uid: 28669 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 28809 + - uid: 28670 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 28810 + - uid: 28671 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 28811 + - uid: 28672 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 28812 + - uid: 28673 components: - type: Transform pos: -43.5,28.5 parent: 2 - - uid: 28813 + - uid: 28674 components: - type: Transform pos: 6.5,92.5 parent: 2 - - uid: 28814 + - uid: 28675 components: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 28815 + - uid: 28676 components: - type: Transform pos: 15.5,-40.5 parent: 2 - - uid: 28816 + - uid: 28677 components: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 28817 + - uid: 28678 components: - type: Transform pos: 57.5,-42.5 parent: 2 - - uid: 28818 + - uid: 28679 components: - type: Transform pos: 71.5,-12.5 parent: 2 - - uid: 28819 + - uid: 28680 components: - type: Transform pos: -58.5,16.5 parent: 2 - - uid: 28820 + - uid: 28681 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 28821 + - uid: 28682 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 28822 + - uid: 28683 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 28823 + - uid: 28684 components: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 28824 + - uid: 28685 components: - type: Transform pos: 24.5,70.5 parent: 2 - - uid: 28825 + - uid: 28686 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 28826 + - uid: 28687 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 28827 + - uid: 28688 components: - type: Transform pos: 17.5,86.5 parent: 2 - - uid: 28828 + - uid: 28689 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 28829 + - uid: 28690 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 28830 + - uid: 28691 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 28831 + - uid: 28692 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 28832 + - uid: 28693 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 28833 + - uid: 28694 components: - type: Transform pos: 11.5,41.5 parent: 2 - - uid: 28834 + - uid: 28695 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 28835 + - uid: 28696 components: - type: Transform pos: 44.5,-59.5 parent: 2 - - uid: 28836 + - uid: 28697 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 28837 + - uid: 28698 components: - type: Transform pos: 33.5,-68.5 parent: 2 - - uid: 28838 + - uid: 28699 components: - type: Transform pos: 9.5,21.5 parent: 2 - - uid: 28839 + - uid: 28700 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 28840 + - uid: 28701 components: - type: Transform pos: 39.5,-58.5 parent: 2 - - uid: 28841 + - uid: 28702 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 28842 + - uid: 28703 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 28843 + - uid: 28704 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 28844 + - uid: 28705 components: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 28845 + - uid: 28706 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 28846 + - uid: 28707 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 28847 + - uid: 28708 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 28848 + - uid: 28709 components: - type: Transform pos: 33.5,-66.5 parent: 2 - - uid: 28849 + - uid: 28710 components: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 28850 + - uid: 28711 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 28851 + - uid: 28712 components: - type: Transform pos: -60.5,47.5 parent: 2 - - uid: 28852 + - uid: 28713 components: - type: Transform pos: -60.5,49.5 parent: 2 - - uid: 28853 + - uid: 28714 components: - type: Transform pos: -60.5,51.5 parent: 2 - - uid: 28854 + - uid: 28715 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 28855 + - uid: 28716 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 28856 + - uid: 28717 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 28857 + - uid: 28718 components: - type: Transform pos: -50.5,-16.5 parent: 2 - - uid: 28858 + - uid: 28719 components: - type: Transform pos: -14.5,-21.5 parent: 2 - - uid: 28859 + - uid: 28720 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 28860 + - uid: 28721 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,57.5 parent: 2 - - uid: 28861 + - uid: 28722 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 28862 + - uid: 28723 components: - type: Transform pos: -75.5,17.5 parent: 2 - - uid: 28863 + - uid: 28724 components: - type: Transform pos: -47.5,-0.5 parent: 2 - - uid: 28864 + - uid: 28725 components: - type: Transform pos: 3.5,82.5 parent: 2 - - uid: 28865 + - uid: 28726 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 28866 + - uid: 28727 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 28867 + - uid: 28728 components: - type: Transform pos: -55.5,39.5 parent: 2 - - uid: 28868 + - uid: 28729 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 28869 + - uid: 28730 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 28870 + - uid: 28731 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 28871 + - uid: 28732 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 28872 + - uid: 28733 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 28873 + - uid: 28734 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-2.5 parent: 2 - - uid: 28874 + - uid: 28735 components: - type: Transform pos: -79.5,11.5 parent: 2 - - uid: 28875 + - uid: 28736 components: - type: Transform pos: 58.5,-42.5 parent: 2 - - uid: 28876 + - uid: 28737 components: - type: Transform pos: 23.5,58.5 parent: 2 - - uid: 28877 + - uid: 28738 components: - type: Transform pos: -74.5,17.5 parent: 2 - - uid: 28878 + - uid: 28739 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 28879 + - uid: 28740 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-42.5 parent: 2 - - uid: 28880 + - uid: 28741 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 28881 + - uid: 28742 components: - type: Transform pos: -50.5,22.5 parent: 2 - - uid: 28882 + - uid: 28743 components: - type: Transform pos: 74.5,-27.5 parent: 2 - - uid: 28883 + - uid: 28744 components: - type: Transform pos: 82.5,11.5 parent: 2 - - uid: 28884 + - uid: 28745 components: - type: Transform pos: 81.5,11.5 parent: 2 - - uid: 28885 + - uid: 28746 components: - type: Transform pos: 8.5,39.5 parent: 2 - - uid: 28886 + - uid: 28747 components: - type: Transform pos: 9.5,41.5 parent: 2 - - uid: 28887 + - uid: 28748 components: - type: Transform pos: 16.5,89.5 parent: 2 - - uid: 28888 + - uid: 28749 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 28889 + - uid: 28750 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 28890 + - uid: 28751 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 28891 + - uid: 28752 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 28892 + - uid: 28753 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 28893 + - uid: 28754 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 28894 + - uid: 28755 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 28895 + - uid: 28756 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 28896 + - uid: 28757 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 28897 + - uid: 28758 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 28898 + - uid: 28759 components: - type: Transform pos: -6.5,-84.5 parent: 2 - - uid: 28899 + - uid: 28760 components: - type: Transform pos: -6.5,-85.5 parent: 2 - - uid: 28900 + - uid: 28761 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 28901 + - uid: 28762 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 28902 + - uid: 28763 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 28903 + - uid: 28764 components: - type: Transform pos: -1.5,-84.5 parent: 2 - - uid: 28904 + - uid: 28765 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 28905 + - uid: 28766 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 28906 + - uid: 28767 components: - type: Transform pos: -3.5,70.5 parent: 2 - - uid: 28907 + - uid: 28768 components: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 28908 + - uid: 28769 components: - type: Transform pos: 0.5,70.5 parent: 2 - - uid: 28909 + - uid: 28770 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 28910 + - uid: 28771 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 28911 + - uid: 28772 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 28912 + - uid: 28773 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 28913 + - uid: 28774 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-42.5 parent: 2 - - uid: 28914 + - uid: 28775 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-42.5 parent: 2 - - uid: 28915 + - uid: 28776 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-35.5 parent: 2 - - uid: 28967 + - uid: 28777 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 28986 + - uid: 28778 components: - type: Transform pos: 85.5,15.5 parent: 2 - - uid: 28987 + - uid: 28779 components: - type: Transform pos: 86.5,15.5 parent: 2 - - uid: 28988 + - uid: 28780 components: - type: Transform pos: 90.5,17.5 parent: 2 - - uid: 28989 + - uid: 28781 components: - type: Transform pos: 90.5,18.5 parent: 2 - - uid: 28990 + - uid: 28782 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,13.5 parent: 2 - - uid: 28991 + - uid: 28783 components: - type: Transform pos: -67.5,30.5 parent: 2 - - uid: 28992 + - uid: 28784 components: - type: Transform pos: -71.5,-42.5 parent: 2 - - uid: 28993 + - uid: 28785 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 28994 + - uid: 28786 components: - type: Transform pos: 79.5,-0.5 parent: 2 - - uid: 28995 + - uid: 28787 components: - type: Transform pos: -70.5,-43.5 parent: 2 - - uid: 28996 + - uid: 28788 components: - type: Transform pos: -72.5,-40.5 parent: 2 - - uid: 28997 + - uid: 28789 components: - type: Transform pos: -67.5,36.5 parent: 2 - - uid: 28998 + - uid: 28790 components: - type: Transform pos: -70.5,-45.5 parent: 2 - - uid: 28999 + - uid: 28791 components: - type: Transform pos: -67.5,34.5 parent: 2 - - uid: 29000 + - uid: 28792 components: - type: Transform pos: -67.5,52.5 parent: 2 - - uid: 29001 + - uid: 28793 components: - type: Transform pos: -67.5,40.5 parent: 2 - - uid: 29002 + - uid: 28794 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 29003 + - uid: 28795 components: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 29004 + - uid: 28796 components: - type: Transform pos: -67.5,32.5 parent: 2 - - uid: 29005 + - uid: 28797 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 29006 + - uid: 28798 components: - type: Transform pos: -67.5,28.5 parent: 2 - - uid: 29007 + - uid: 28799 components: - type: Transform pos: -67.5,23.5 parent: 2 - - uid: 29008 + - uid: 28800 components: - type: Transform pos: -67.5,22.5 parent: 2 - - uid: 29009 + - uid: 28801 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 29010 + - uid: 28802 components: - type: Transform pos: -64.5,39.5 parent: 2 - - uid: 29011 + - uid: 28803 components: - type: Transform pos: -66.5,39.5 parent: 2 - - uid: 29012 + - uid: 28804 components: - type: Transform pos: -65.5,39.5 parent: 2 - - uid: 29013 + - uid: 28805 components: - type: Transform pos: -60.5,39.5 parent: 2 - - uid: 29014 + - uid: 28806 components: - type: Transform pos: 75.5,14.5 parent: 2 - - uid: 29015 + - uid: 28807 components: - type: Transform pos: 32.5,13.5 parent: 2 - - uid: 29016 + - uid: 28808 components: - type: Transform pos: -70.5,-44.5 parent: 2 - - uid: 29017 + - uid: 28809 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,2.5 parent: 2 - - uid: 29018 + - uid: 28810 components: - type: Transform pos: 80.5,-0.5 parent: 2 - - uid: 29019 + - uid: 28811 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,0.5 parent: 2 - - uid: 29020 + - uid: 28812 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,12.5 parent: 2 - - uid: 29021 + - uid: 28813 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,13.5 parent: 2 - - uid: 29022 + - uid: 28814 components: - type: Transform pos: 57.5,33.5 parent: 2 - - uid: 29023 + - uid: 28815 components: - type: Transform pos: 62.5,31.5 parent: 2 - - uid: 29024 + - uid: 28816 components: - type: Transform pos: 48.5,30.5 parent: 2 - - uid: 29025 + - uid: 28817 components: - type: Transform pos: 52.5,33.5 parent: 2 - - uid: 29026 + - uid: 28818 components: - type: Transform pos: 37.5,36.5 parent: 2 - - uid: 29027 + - uid: 28819 components: - type: Transform pos: 37.5,37.5 parent: 2 - - uid: 29028 + - uid: 28820 components: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 29029 + - uid: 28821 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 2 - - uid: 29030 + - uid: 28822 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 39658 + - uid: 39485 components: - type: Transform pos: -16.5,7.5 - parent: 38584 - - uid: 39659 + parent: 38411 + - uid: 39486 components: - type: Transform pos: -16.5,3.5 - parent: 38584 - - uid: 39660 + parent: 38411 + - uid: 39487 components: - type: Transform pos: 2.5,4.5 - parent: 38584 - - uid: 39661 + parent: 38411 + - uid: 39488 components: - type: Transform pos: -19.5,3.5 - parent: 38584 - - uid: 39662 + parent: 38411 + - uid: 39489 components: - type: Transform pos: 2.5,0.5 - parent: 38584 - - uid: 39663 + parent: 38411 + - uid: 39490 components: - type: Transform pos: -19.5,7.5 - parent: 38584 - - uid: 39664 + parent: 38411 + - uid: 39491 components: - type: Transform pos: -22.5,7.5 - parent: 38584 - - uid: 39665 + parent: 38411 + - uid: 39492 components: - type: Transform pos: -22.5,3.5 - parent: 38584 - - uid: 39666 + parent: 38411 + - uid: 39493 components: - type: Transform pos: 2.5,2.5 - parent: 38584 + parent: 38411 - proto: RemoteSignaller entities: - - uid: 29031 + - uid: 28823 components: - type: Transform pos: 4.2665925,17.572363 parent: 2 - type: Physics canCollide: False - - uid: 29032 + - uid: 28824 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.654764,-46.826454 parent: 2 - - uid: 29033 + - uid: 28825 components: - type: Transform pos: -29.074722,-47.399815 parent: 2 - - uid: 29034 + - uid: 28826 components: - type: Transform pos: -29.269024,-47.335896 parent: 2 - - uid: 29035 + - uid: 28827 components: - type: Transform pos: -26.325718,-44.254265 parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 29036 + - uid: 28828 components: - type: Transform pos: -19.5,-53.5 parent: 2 - proto: Retractor entities: - - uid: 29037 + - uid: 28829 components: - type: Transform pos: 34.481625,-52.525356 parent: 2 - type: Physics canCollide: False - - uid: 29038 + - uid: 28830 components: - type: Transform pos: 32.606625,-46.306606 @@ -219389,182 +219467,182 @@ entities: canCollide: False - proto: RevolverCapGun entities: - - uid: 29039 + - uid: 28831 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.316975,-32.407238 parent: 2 - - uid: 29040 + - uid: 28832 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.6451,-32.469738 parent: 2 - - uid: 29041 + - uid: 28833 components: - type: Transform pos: 63.422493,-25.025986 parent: 2 - proto: RiotShield entities: - - uid: 29042 + - uid: 28834 components: - type: Transform pos: 71.730034,-4.411479 parent: 2 - - uid: 29043 + - uid: 28835 components: - type: Transform pos: 71.51738,-4.5708656 parent: 2 - - uid: 29044 + - uid: 28836 components: - type: Transform pos: 71.30472,-4.411479 parent: 2 - proto: RipleyLLeg entities: - - uid: 29045 + - uid: 28837 components: - type: Transform pos: 6.2382493,45.321095 parent: 2 - proto: RitualDagger entities: - - uid: 29046 + - uid: 28838 components: - type: Transform pos: -32.479275,-77.35582 parent: 2 - proto: RockGuitarInstrument entities: - - uid: 29047 + - uid: 28839 components: - type: Transform pos: -8.51535,28.534096 parent: 2 - proto: RollerBed entities: - - uid: 29048 + - uid: 28840 components: - type: Transform pos: 10.537059,-44.266212 parent: 2 - - uid: 29049 + - uid: 28841 components: - type: Transform pos: 12.465898,-40.386826 parent: 2 - - uid: 29050 + - uid: 28842 components: - type: Transform pos: 13.481434,-40.38545 parent: 2 - - uid: 29051 + - uid: 28843 components: - type: Transform pos: 3.5143418,-42.36247 parent: 2 - - uid: 29052 + - uid: 28844 components: - type: Transform pos: 60.490154,-2.4327555 parent: 2 - - uid: 29053 + - uid: 28845 components: - type: Transform pos: 70.469666,14.589865 parent: 2 - - uid: 29054 + - uid: 28846 components: - type: Transform pos: 10.507141,-45.24613 parent: 2 - proto: RubberStampApproved entities: - - uid: 29055 + - uid: 28847 components: - type: Transform pos: -12.316359,5.70477 parent: 2 - type: Physics canCollide: False - - uid: 29056 + - uid: 28848 components: - type: Transform pos: 20.247395,39.6103 parent: 2 - type: Physics canCollide: False - - uid: 29057 + - uid: 28849 components: - type: Transform pos: 34.291264,-0.77321684 parent: 2 - proto: RubberStampDenied entities: - - uid: 29058 + - uid: 28850 components: - type: Transform pos: -12.57951,5.7410216 parent: 2 - - uid: 29059 + - uid: 28851 components: - type: Transform pos: 20.247395,39.4228 parent: 2 - type: Physics canCollide: False - - uid: 29060 + - uid: 28852 components: - type: Transform pos: 34.54203,-0.81746423 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 29061 + - uid: 28853 components: - type: Transform pos: -9.5,-54.5 parent: 2 - - uid: 29062 + - uid: 28854 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 29063 + - uid: 28855 components: - type: Transform pos: -36.5,43.5 parent: 2 - proto: SalvageHumanCorpseSpawner entities: - - uid: 29064 + - uid: 28856 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-35.5 parent: 2 - - uid: 29065 + - uid: 28857 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 - - uid: 41034 + - uid: 28858 components: - type: Transform pos: -73.5,-31.5 parent: 2 - - uid: 41035 + - uid: 28859 components: - type: Transform pos: -71.5,-23.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 29066 + - uid: 28860 components: - type: Transform rot: 1.5707963267948966 rad @@ -219572,19 +219650,19 @@ entities: parent: 2 - proto: Saw entities: - - uid: 29067 + - uid: 28861 components: - type: Transform pos: -3.547987,-52.47366 parent: 2 - - uid: 29068 + - uid: 28862 components: - type: Transform pos: 48.360306,-35.411346 parent: 2 - proto: SawElectric entities: - - uid: 29069 + - uid: 28863 components: - type: Transform pos: 32.606625,-52.525356 @@ -219593,21 +219671,21 @@ entities: canCollide: False - proto: SaxophoneInstrument entities: - - uid: 29070 + - uid: 28864 components: - type: Transform pos: 47.52265,-53.668365 parent: 2 - proto: Scalpel entities: - - uid: 29071 + - uid: 28865 components: - type: Transform pos: 32.575375,-52.244106 parent: 2 - type: Physics canCollide: False - - uid: 29072 + - uid: 28866 components: - type: Transform rot: 0.00042098568519577384 rad @@ -219615,272 +219693,272 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 29073 + - uid: 28867 components: - type: Transform pos: -3.4022403,-52.248302 parent: 2 - - uid: 29074 + - uid: 28868 components: - type: Transform pos: 7.5100083,-49.5816 parent: 2 - - uid: 29075 + - uid: 28869 components: - type: Transform pos: 7.485925,-49.268597 parent: 2 - - uid: 29076 + - uid: 28870 components: - type: Transform pos: 3.4711235,-44.77761 parent: 2 - proto: ScalpelLaser entities: - - uid: 29077 + - uid: 28871 components: - type: Transform pos: 49.458958,-44.049076 parent: 2 - proto: ScalpelShiv entities: - - uid: 26060 + - uid: 25908 components: - type: Transform - parent: 26059 + parent: 25907 - type: Physics canCollide: False - proto: Screen entities: - - uid: 29078 + - uid: 28872 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 29079 + - uid: 28873 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 29080 + - uid: 28874 components: - type: Transform pos: -1.5,-66.5 parent: 2 - - uid: 29081 + - uid: 28875 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 29082 + - uid: 28876 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 29083 + - uid: 28877 components: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 29084 + - uid: 28878 components: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 29085 + - uid: 28879 components: - type: Transform pos: 15.5,-10.5 parent: 2 - - uid: 29086 + - uid: 28880 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 29087 + - uid: 28881 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 29088 + - uid: 28882 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 29089 + - uid: 28883 components: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 29090 + - uid: 28884 components: - type: Transform pos: -24.5,45.5 parent: 2 - - uid: 29091 + - uid: 28885 components: - type: Transform pos: 0.5,59.5 parent: 2 - - uid: 29092 + - uid: 28886 components: - type: Transform pos: -21.5,56.5 parent: 2 - proto: Screwdriver entities: - - uid: 29093 + - uid: 28887 components: - type: Transform rot: 3.141592653589793 rad pos: -33.514565,-61.153294 parent: 2 - - uid: 29094 + - uid: 28888 components: - type: Transform rot: 3.141592653589793 rad pos: -6.3283224,-39.523468 parent: 2 - - uid: 29095 + - uid: 28889 components: - type: Transform pos: -43.499428,-48.582058 parent: 2 - - uid: 29096 + - uid: 28890 components: - type: Transform pos: 50.500298,5.5841293 parent: 2 - type: Physics canCollide: False - - uid: 29097 + - uid: 28891 components: - type: Transform pos: 2.4575934,-31.30756 parent: 2 - type: Physics canCollide: False - - uid: 29098 + - uid: 28892 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.44178,21.588465 parent: 2 - - uid: 29099 + - uid: 28893 components: - type: Transform rot: 3.141593671850739 rad pos: 9.661092,72.76665 parent: 2 - - uid: 39667 + - uid: 39494 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5896,0.44470215 - parent: 38584 + parent: 38411 - proto: SecurityTechFab entities: - - uid: 29100 + - uid: 28894 components: - type: Transform pos: 51.5,3.5 parent: 2 - proto: SeedExtractor entities: - - uid: 29101 + - uid: 28895 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 29102 + - uid: 28896 components: - type: Transform pos: -27.5,52.5 parent: 2 - - uid: 29103 + - uid: 28897 components: - type: Transform pos: -40.5,35.5 parent: 2 - - uid: 39668 + - uid: 39495 components: - type: Transform pos: -21.5,-3.5 - parent: 38584 + parent: 38411 - proto: ShardGlass entities: - - uid: 9976 + - uid: 28898 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.844826,-22.4828 parent: 2 - - uid: 9980 + - uid: 28899 components: - type: Transform pos: -62.313576,-25.5453 parent: 2 - - uid: 12858 + - uid: 28900 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.11045,-26.029676 parent: 2 - - uid: 29104 + - uid: 28901 components: - type: Transform rot: 1.5707973450558423 rad pos: 60.479244,-41.30533 parent: 2 - - uid: 29105 + - uid: 28902 components: - type: Transform pos: -35.57051,-59.450092 parent: 2 - - uid: 29106 + - uid: 28903 components: - type: Transform rot: 3.141592653589793 rad pos: -26.777552,-22.366966 parent: 2 - - uid: 29107 + - uid: 28904 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.93237,-23.169579 parent: 2 - - uid: 29108 + - uid: 28905 components: - type: Transform pos: -25.92311,-29.102797 parent: 2 - - uid: 29109 + - uid: 28906 components: - type: Transform pos: 2.4845634,44.46363 parent: 2 - type: Physics canCollide: False - - uid: 29110 + - uid: 28907 components: - type: Transform pos: 0.5470634,47.46363 parent: 2 - type: Physics canCollide: False - - uid: 29111 + - uid: 28908 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.800411,-68.15144 parent: 2 - - uid: 29112 + - uid: 28909 components: - type: Transform rot: 3.141592653589793 rad pos: 35.220165,-67.21759 parent: 2 - - uid: 29113 + - uid: 28910 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -219888,72 +219966,72 @@ entities: parent: 2 - proto: ShardGlassPlasma entities: - - uid: 39669 + - uid: 39496 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.633086,19.539398 - parent: 38584 - - uid: 39670 + parent: 38411 + - uid: 39497 components: - type: Transform pos: 7.7922745,19.362396 - parent: 38584 + parent: 38411 - proto: ShardGlassReinforced entities: - - uid: 29114 + - uid: 28911 components: - type: Transform pos: -30.067194,-28.961529 parent: 2 - - uid: 29115 + - uid: 28912 components: - type: Transform pos: -29.817194,-29.910105 parent: 2 - - uid: 29116 + - uid: 28913 components: - type: Transform pos: -32.254696,-24.604336 parent: 2 - - uid: 29117 + - uid: 28914 components: - type: Transform pos: -32.67136,-24.312468 parent: 2 - - uid: 29118 + - uid: 28915 components: - type: Transform pos: -34.129696,-31.369452 parent: 2 - - uid: 29119 + - uid: 28916 components: - type: Transform pos: -38.556778,-25.261044 parent: 2 - - uid: 29120 + - uid: 28917 components: - type: Transform pos: -40.494278,-30.660627 parent: 2 - - uid: 29121 + - uid: 28918 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.93743,-73.582275 parent: 2 - - uid: 29122 + - uid: 28919 components: - type: Transform rot: 3.141592653589793 rad pos: 39.773544,-67.367836 parent: 2 - - uid: 29123 + - uid: 28920 components: - type: Transform pos: 39.27354,-67.75846 parent: 2 - - uid: 29124 + - uid: 28921 components: - type: Transform rot: -1.5707963267948966 rad @@ -219961,116 +220039,116 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 29125 + - uid: 28922 components: - type: Transform pos: -45.459835,-16.570187 parent: 2 - - uid: 29126 + - uid: 28923 components: - type: Transform pos: -3.504601,-29.492645 parent: 2 - - uid: 39671 + - uid: 39498 components: - type: Transform pos: 9.700856,0.52041626 - parent: 38584 + parent: 38411 - proto: SheetGlass10 entities: - - uid: 14726 + - uid: 14667 components: - type: Transform - parent: 14725 + parent: 14666 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14732 + - uid: 14673 components: - type: Transform - parent: 14731 + parent: 14672 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15651 + - uid: 15634 components: - type: Transform - parent: 15650 + parent: 15633 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15653 + - uid: 15636 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29127 + - uid: 28924 components: - type: Transform pos: -25.449247,11.530908 parent: 2 - - uid: 29128 + - uid: 28925 components: - type: Transform pos: -28.510048,14.600449 parent: 2 - - uid: 29129 + - uid: 28926 components: - type: Transform pos: -28.452291,9.444831 parent: 2 - - uid: 29130 + - uid: 28927 components: - type: Transform pos: 21.5,8.5 parent: 2 - proto: SheetPlasma entities: - - uid: 29131 + - uid: 28928 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 29132 + - uid: 28929 components: - type: Transform pos: -70.50429,10.487547 parent: 2 - proto: SheetPlasma1 entities: - - uid: 29133 + - uid: 28930 components: - type: Transform pos: 8.515777,-30.469122 parent: 2 - - uid: 29134 + - uid: 28931 components: - type: Transform pos: -31.487455,-41.879337 parent: 2 - proto: SheetPlasteel entities: - - uid: 29135 + - uid: 28932 components: - type: Transform pos: -32.5,11.5 parent: 2 - proto: SheetPlasteel1 entities: - - uid: 13982 + - uid: 28933 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.594574,-23.373238 parent: 2 - - uid: 29136 + - uid: 28934 components: - type: Transform pos: -25.61184,-29.536287 parent: 2 - - uid: 29137 + - uid: 28935 components: - type: Transform rot: -2.220446049250313E-16 rad @@ -220078,303 +220156,303 @@ entities: parent: 2 - proto: SheetPlasteel10 entities: - - uid: 29138 + - uid: 28936 components: - type: Transform pos: 10.818345,-3.4416718 parent: 2 - proto: SheetPlastic entities: - - uid: 29139 + - uid: 28937 components: - type: Transform pos: -45.459835,-16.463928 parent: 2 - - uid: 29140 + - uid: 28938 components: - type: Transform pos: -3.592601,-29.581203 parent: 2 - proto: SheetPlastic10 entities: - - uid: 14721 + - uid: 14662 components: - type: Transform - parent: 14720 + parent: 14661 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15654 + - uid: 15637 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29141 + - uid: 28939 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 29142 + - uid: 28940 components: - type: Transform pos: -25.393255,11.543351 parent: 2 - - uid: 29143 + - uid: 28941 components: - type: Transform pos: -28.495718,14.554519 parent: 2 - - uid: 29144 + - uid: 28942 components: - type: Transform pos: -77.47386,-19.460953 parent: 2 - - uid: 29145 + - uid: 28943 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 29146 + - uid: 28944 components: - type: Transform pos: 10.718415,70.38263 parent: 2 - proto: SheetRGlass entities: - - uid: 29147 + - uid: 28945 components: - type: Transform pos: -47.60266,29.432966 parent: 2 - - uid: 29148 + - uid: 28946 components: - type: Transform pos: -32.5,11.5 parent: 2 - proto: SheetSteel entities: - - uid: 14959 + - uid: 14900 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14963 + - uid: 14904 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14967 + - uid: 14908 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29149 + - uid: 28947 components: - type: Transform pos: -48.5,36.5 parent: 2 - - uid: 29150 + - uid: 28948 components: - type: Transform pos: -49.5,36.5 parent: 2 - - uid: 29151 + - uid: 28949 components: - type: Transform pos: -47.5,36.5 parent: 2 - - uid: 29152 + - uid: 28950 components: - type: Transform pos: 29.5,30.5 parent: 2 - - uid: 29153 + - uid: 28951 components: - type: Transform pos: 12.5,76.5 parent: 2 - - uid: 29154 + - uid: 28952 components: - type: Transform pos: -45.459835,-16.694153 parent: 2 - - uid: 29155 + - uid: 28953 components: - type: Transform pos: -3.4868789,-29.510355 parent: 2 - - uid: 29157 + - uid: 28954 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 39672 + - uid: 39499 components: - type: Transform pos: 9.482106,0.55166626 - parent: 38584 + parent: 38411 - proto: SheetSteel1 entities: - - uid: 15104 + - uid: 28955 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.844574,-22.732615 parent: 2 - - uid: 29158 + - uid: 28956 components: - type: Transform rot: 1.5707973450558423 rad pos: -70.49613,-41.486595 parent: 2 - - uid: 29159 + - uid: 28957 components: - type: Transform pos: -43.47599,-48.46487 parent: 2 - - uid: 29160 + - uid: 28958 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29161 + - uid: 28959 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29162 + - uid: 28960 components: - type: Transform rot: 3.141592653589793 rad pos: 36.567745,-64.77981 parent: 2 - - uid: 29163 + - uid: 28961 components: - type: Transform pos: 29.64587,-68.67043 parent: 2 - - uid: 29164 + - uid: 28962 components: - type: Transform pos: 40.13075,-66.49325 parent: 2 - - uid: 29165 + - uid: 28963 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.155964,-60.68074 parent: 2 - - uid: 29166 + - uid: 28964 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29167 + - uid: 28965 components: - type: Transform pos: 21.5,69.5 parent: 2 - - uid: 29169 + - uid: 28967 components: - type: Transform - parent: 29168 + parent: 28966 - type: Physics canCollide: False - type: InsideEntityStorage - proto: SheetSteel10 entities: - - uid: 14708 + - uid: 14649 components: - type: Transform - parent: 14707 + parent: 14648 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14711 + - uid: 14652 components: - type: Transform - parent: 14710 + parent: 14651 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14714 + - uid: 14655 components: - type: Transform - parent: 14713 + parent: 14654 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14719 + - uid: 14660 components: - type: Transform - parent: 14718 + parent: 14659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14740 + - uid: 14681 components: - type: Transform - parent: 14739 + parent: 14680 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15655 + - uid: 15638 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29170 + - uid: 28968 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 29171 + - uid: 28969 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 29172 + - uid: 28970 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 29173 + - uid: 28971 components: - type: Transform pos: -28.407343,9.355234 parent: 2 - - uid: 29174 + - uid: 28972 components: - type: Transform pos: 46.5,-55.5 parent: 2 - - uid: 29175 + - uid: 28973 components: - type: Transform pos: 54.5,-47.5 parent: 2 - proto: SheetUranium entities: - - uid: 15591 + - uid: 15574 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics @@ -220382,28 +220460,28 @@ entities: - type: InsideEntityStorage - proto: SheetUranium1 entities: - - uid: 15592 + - uid: 15575 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15593 + - uid: 15576 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15594 + - uid: 15577 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics @@ -220411,1078 +220489,1078 @@ entities: - type: InsideEntityStorage - proto: Shovel entities: - - uid: 29176 + - uid: 28974 components: - type: Transform pos: 20.5,26.5 parent: 2 - proto: ShowcaseRobot entities: - - uid: 29177 + - uid: 28975 components: - type: Transform pos: -25.5,2.5 parent: 2 - proto: ShowcaseRobotAntique entities: - - uid: 29178 + - uid: 28976 components: - type: Transform pos: 6.5,45.5 parent: 2 - proto: ShuttersNormal entities: - - uid: 29179 + - uid: 28977 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 29180 + - uid: 28978 components: - type: Transform pos: 14.5,25.5 parent: 2 - - uid: 29181 + - uid: 28979 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 29182 + - uid: 28980 components: - type: Transform pos: 11.5,-6.5 parent: 2 - - uid: 29183 + - uid: 28981 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 29184 + - uid: 28982 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 29185 + - uid: 28983 components: - type: Transform pos: 15.5,25.5 parent: 2 - - uid: 29186 + - uid: 28984 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - uid: 29187 + - uid: 28985 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 29188 + - uid: 28986 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,8.5 parent: 2 - - uid: 29189 + - uid: 28987 components: - type: Transform pos: 12.5,-17.5 parent: 2 - - uid: 29190 + - uid: 28988 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 29191 + - uid: 28989 components: - type: MetaData name: незаконченная химическая лаборатория - type: Transform pos: -38.5,55.5 parent: 2 - - uid: 29192 + - uid: 28990 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,9.5 parent: 2 - - uid: 29193 + - uid: 28991 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,8.5 parent: 2 - - uid: 29194 + - uid: 28992 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,11.5 parent: 2 - - uid: 29195 + - uid: 28993 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 29196 + - uid: 28994 components: - type: Transform pos: 14.5,-17.5 parent: 2 - - uid: 29197 + - uid: 28995 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 29198 + - uid: 28996 components: - type: Transform pos: 13.5,-17.5 parent: 2 - - uid: 29199 + - uid: 28997 components: - type: Transform pos: 1.5,55.5 parent: 2 - - uid: 29200 + - uid: 28998 components: - type: Transform pos: 2.5,55.5 parent: 2 - - uid: 29201 + - uid: 28999 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-36.5 parent: 2 - - uid: 29202 + - uid: 29000 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-36.5 parent: 2 - - uid: 29203 + - uid: 29001 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-36.5 parent: 2 - - uid: 29204 + - uid: 29002 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-40.5 parent: 2 - - uid: 29205 + - uid: 29003 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-37.5 parent: 2 - - uid: 29206 + - uid: 29004 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 29207 + - uid: 29005 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 29208 + - uid: 29006 components: - type: Transform pos: 18.5,68.5 parent: 2 - - uid: 29209 + - uid: 29007 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,1.5 parent: 2 - - uid: 29210 + - uid: 29008 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,2.5 parent: 2 - - uid: 29211 + - uid: 29009 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,3.5 parent: 2 - - uid: 29212 + - uid: 29010 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,4.5 parent: 2 - - uid: 29213 + - uid: 29011 components: - type: Transform pos: 16.5,25.5 parent: 2 - - uid: 39673 + - uid: 39500 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39674 + parent: 38411 + - uid: 39501 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39675 + parent: 38411 + - uid: 39502 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39676 + parent: 38411 + - uid: 39503 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 + parent: 38411 - proto: ShuttersNormalOpen entities: - - uid: 29214 + - uid: 29012 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 29215 + - uid: 29013 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 29216 + - uid: 29014 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 29217 + - uid: 29015 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 29218 + - uid: 29016 components: - type: Transform pos: -6.5,66.5 parent: 2 - - uid: 29219 + - uid: 29017 components: - type: Transform pos: 19.5,68.5 parent: 2 - - uid: 29220 + - uid: 29018 components: - type: Transform pos: 21.5,68.5 parent: 2 - - uid: 29221 + - uid: 29019 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 29222 + - uid: 29020 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 29223 + - uid: 29021 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-37.5 parent: 2 - - uid: 29224 + - uid: 29022 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-38.5 parent: 2 - - uid: 29225 + - uid: 29023 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,36.5 parent: 2 - - uid: 29226 + - uid: 29024 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 29227 + - uid: 29025 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-0.5 parent: 2 - - uid: 29228 + - uid: 29026 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,1.5 parent: 2 - - uid: 29229 + - uid: 29027 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-36.5 parent: 2 - - uid: 29230 + - uid: 29028 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 29231 + - uid: 29029 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 29232 + - uid: 29030 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 29233 + - uid: 29031 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-36.5 parent: 2 - - uid: 29234 + - uid: 29032 components: - type: Transform pos: -16.5,-0.5 parent: 2 - - uid: 29235 + - uid: 29033 components: - type: Transform pos: -16.5,4.5 parent: 2 - - uid: 29236 + - uid: 29034 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 29237 + - uid: 29035 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 29238 + - uid: 29036 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 29239 + - uid: 29037 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 29240 + - uid: 29038 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 29241 + - uid: 29039 components: - type: Transform pos: 14.5,50.5 parent: 2 - - uid: 29242 + - uid: 29040 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 29243 + - uid: 29041 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 29244 + - uid: 29042 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 29245 + - uid: 29043 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 - - uid: 29246 + - uid: 29044 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 29247 + - uid: 29045 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,37.5 parent: 2 - - uid: 29248 + - uid: 29046 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 29249 + - uid: 29047 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 29250 + - uid: 29048 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 29251 + - uid: 29049 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 29252 + - uid: 29050 components: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 29253 + - uid: 29051 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 29254 + - uid: 29052 components: - type: Transform pos: 14.5,49.5 parent: 2 - - uid: 29255 + - uid: 29053 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 29256 + - uid: 29054 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 29257 + - uid: 29055 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 29258 + - uid: 29056 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 - - uid: 29259 + - uid: 29057 components: - type: Transform pos: 13.5,29.5 parent: 2 - - uid: 29260 + - uid: 29058 components: - type: Transform pos: 14.5,31.5 parent: 2 - - uid: 29261 + - uid: 29059 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 29262 + - uid: 29060 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,41.5 parent: 2 - - uid: 29263 + - uid: 29061 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 29264 + - uid: 29062 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 29265 + - uid: 29063 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 29266 + - uid: 29064 components: - type: Transform pos: -4.5,66.5 parent: 2 - - uid: 29267 + - uid: 29065 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,42.5 parent: 2 - - uid: 29268 + - uid: 29066 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 29269 + - uid: 29067 components: - type: Transform pos: -17.5,66.5 parent: 2 - - uid: 29270 + - uid: 29068 components: - type: Transform pos: -16.5,66.5 parent: 2 - - uid: 29271 + - uid: 29069 components: - type: Transform pos: -3.5,66.5 parent: 2 - - uid: 29272 + - uid: 29070 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 29273 + - uid: 29071 components: - type: Transform pos: -28.5,38.5 parent: 2 - - uid: 29274 + - uid: 29072 components: - type: Transform pos: -27.5,34.5 parent: 2 - - uid: 29275 + - uid: 29073 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 29276 + - uid: 29074 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 29277 + - uid: 29075 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 29278 + - uid: 29076 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 29279 + - uid: 29077 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 29280 + - uid: 29078 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 29281 + - uid: 29079 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 29282 + - uid: 29080 components: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 29283 + - uid: 29081 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 29284 + - uid: 29082 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 29285 + - uid: 29083 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-4.5 parent: 2 - - uid: 29286 + - uid: 29084 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-5.5 parent: 2 - - uid: 29287 + - uid: 29085 components: - type: Transform pos: -18.5,66.5 parent: 2 - - uid: 29288 + - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-3.5 parent: 2 - - uid: 29289 + - uid: 29087 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 2 - - uid: 29290 + - uid: 29088 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-0.5 parent: 2 - - uid: 29291 + - uid: 29089 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,0.5 parent: 2 - - uid: 29292 + - uid: 29090 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,1.5 parent: 2 - - uid: 29293 + - uid: 29091 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,2.5 parent: 2 - - uid: 29294 + - uid: 29092 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 - - uid: 29295 + - uid: 29093 components: - type: Transform pos: -2.5,66.5 parent: 2 - - uid: 29296 + - uid: 29094 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 29297 + - uid: 29095 components: - type: Transform pos: 15.5,-45.5 parent: 2 - - uid: 29298 + - uid: 29096 components: - type: Transform pos: 15.5,-46.5 parent: 2 - - uid: 29299 + - uid: 29097 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 29300 + - uid: 29098 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 29301 + - uid: 29099 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 29302 + - uid: 29100 components: - type: Transform pos: -19.5,66.5 parent: 2 - - uid: 29303 + - uid: 29101 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 29304 + - uid: 29102 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 29305 + - uid: 29103 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,19.5 parent: 2 - - uid: 29306 + - uid: 29104 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,22.5 parent: 2 - - uid: 29307 + - uid: 29105 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,21.5 parent: 2 - - uid: 29308 + - uid: 29106 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,18.5 parent: 2 - - uid: 29309 + - uid: 29107 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,24.5 parent: 2 - - uid: 29310 + - uid: 29108 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 29311 + - uid: 29109 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 29312 + - uid: 29110 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 29313 + - uid: 29111 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 29314 + - uid: 29112 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 29315 + - uid: 29113 components: - type: Transform pos: -27.5,38.5 parent: 2 - - uid: 29316 + - uid: 29114 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 29317 + - uid: 29115 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 29318 + - uid: 29116 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,21.5 parent: 2 - - uid: 29319 + - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,20.5 parent: 2 - - uid: 29320 + - uid: 29118 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,19.5 parent: 2 - - uid: 29321 + - uid: 29119 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 29322 + - uid: 29120 components: - type: Transform pos: -0.5,-62.5 parent: 2 - - uid: 29323 + - uid: 29121 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 29324 + - uid: 29122 components: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 29325 + - uid: 29123 components: - type: Transform pos: -27.5,35.5 parent: 2 - - uid: 29326 + - uid: 29124 components: - type: Transform pos: -27.5,33.5 parent: 2 - - uid: 29327 + - uid: 29125 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 29328 + - uid: 29126 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 29329 + - uid: 29127 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-80.5 parent: 2 - - uid: 29330 + - uid: 29128 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 29331 + - uid: 29129 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,16.5 parent: 2 - - uid: 29332 + - uid: 29130 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 29333 + - uid: 29131 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 29334 + - uid: 29132 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,16.5 parent: 2 - - uid: 29335 + - uid: 29133 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 29336 + - uid: 29134 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,16.5 parent: 2 - - uid: 29337 + - uid: 29135 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,19.5 parent: 2 - - uid: 29338 + - uid: 29136 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,20.5 parent: 2 - - uid: 29339 + - uid: 29137 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,20.5 parent: 2 - - uid: 29340 + - uid: 29138 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,21.5 parent: 2 - - uid: 29341 + - uid: 29139 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 29342 + - uid: 29140 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,21.5 parent: 2 - - uid: 29343 + - uid: 29141 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-51.5 parent: 2 - - uid: 29344 + - uid: 29142 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 29345 + - uid: 29143 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 29346 + - uid: 29144 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 29347 + - uid: 29145 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 29348 + - uid: 29146 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-52.5 parent: 2 - - uid: 29349 + - uid: 29147 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-42.5 parent: 2 - - uid: 29350 + - uid: 29148 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 29351 + - uid: 29149 components: - type: Transform pos: -5.5,66.5 parent: 2 - - uid: 29352 + - uid: 29150 components: - type: Transform pos: -20.5,66.5 parent: 2 - - uid: 29353 + - uid: 29151 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 29354 + - uid: 29152 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 29355 + - uid: 29153 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 29356 + - uid: 29154 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 29357 + - uid: 29155 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 29358 + - uid: 29156 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-50.5 parent: 2 - - uid: 29359 + - uid: 29157 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 - - uid: 29360 + - uid: 29158 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 - - uid: 29361 + - uid: 29159 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 29362 + - uid: 29160 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-45.5 parent: 2 - - uid: 29363 + - uid: 29161 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 29364 + - uid: 29162 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 29365 + - uid: 29163 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 - - uid: 29366 + - uid: 29164 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-6.5 parent: 2 - - uid: 29367 + - uid: 29165 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 - - uid: 29368 + - uid: 29166 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-45.5 parent: 2 - - uid: 29369 + - uid: 29167 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-45.5 parent: 2 - - uid: 29370 + - uid: 29168 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-45.5 parent: 2 - - uid: 29371 + - uid: 29169 components: - type: Transform rot: 3.141592653589793 rad @@ -221490,116 +221568,116 @@ entities: parent: 2 - proto: ShuttersRadiation entities: - - uid: 29372 + - uid: 29170 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 29373 + - uid: 29171 components: - type: Transform pos: -69.5,-4.5 parent: 2 - - uid: 29374 + - uid: 29172 components: - type: Transform pos: -67.5,-4.5 parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 29375 + - uid: 29173 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 29376 + - uid: 29174 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,49.5 parent: 2 - - uid: 29377 + - uid: 29175 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,51.5 parent: 2 - - uid: 29378 + - uid: 29176 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 29379 + - uid: 29177 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 29380 + - uid: 29178 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 29381 + - uid: 29179 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,7.5 parent: 2 - - uid: 29382 + - uid: 29180 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,47.5 parent: 2 - - uid: 29383 + - uid: 29181 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,5.5 parent: 2 - - uid: 29384 + - uid: 29182 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 29385 + - uid: 29183 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 29386 + - uid: 29184 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 29387 + - uid: 29185 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 29388 + - uid: 29186 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 29389 + - uid: 29187 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 29390 + - uid: 29188 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,7.5 parent: 2 - - uid: 29391 + - uid: 29189 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,5.5 parent: 2 - - uid: 29392 + - uid: 29190 components: - type: Transform rot: -1.5707963267948966 rad @@ -221607,99 +221685,99 @@ entities: parent: 2 - proto: ShuttersWindow entities: - - uid: 29393 + - uid: 29191 components: - type: Transform pos: -21.5,-16.5 parent: 2 - - uid: 29394 + - uid: 29192 components: - type: Transform pos: -21.5,-15.5 parent: 2 - proto: ShuttersWindowOpen entities: - - uid: 29395 + - uid: 29193 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 29396 + - uid: 29194 components: - type: Transform pos: 45.5,13.5 parent: 2 - proto: ShuttleGunPerforatorCircuitboard entities: - - uid: 39677 + - uid: 39504 components: - type: Transform pos: 10.5,22.5 - parent: 38584 + parent: 38411 - proto: ShuttleWindow entities: - - uid: 38542 + - uid: 38369 components: - type: Transform pos: 2.5,4.5 - parent: 38484 - - uid: 38543 + parent: 38311 + - uid: 38370 components: - type: Transform pos: 1.5,5.5 - parent: 38484 - - uid: 38544 + parent: 38311 + - uid: 38371 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 - parent: 38484 - - uid: 38545 + parent: 38311 + - uid: 38372 components: - type: Transform pos: 2.5,5.5 - parent: 38484 - - uid: 38546 + parent: 38311 + - uid: 38373 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 - parent: 38484 - - uid: 38547 + parent: 38311 + - uid: 38374 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 - parent: 38484 - - uid: 38548 + parent: 38311 + - uid: 38375 components: - type: Transform pos: 0.5,5.5 - parent: 38484 - - uid: 38549 + parent: 38311 + - uid: 38376 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 - parent: 38484 - - uid: 38550 + parent: 38311 + - uid: 38377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 - parent: 38484 + parent: 38311 - proto: SignalButton entities: - - uid: 29397 + - uid: 29195 components: - type: Transform pos: 14.5,-2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29181: + 28979: - Pressed: Toggle - - uid: 29398 + - uid: 29196 components: - type: Transform rot: 3.141592653589793 rad @@ -221707,9 +221785,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29355: + 29153: - Pressed: Toggle - - uid: 29399 + - uid: 29197 components: - type: Transform rot: -1.5707963267948966 rad @@ -221717,13 +221795,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29213: + 29011: - Pressed: Toggle - 29185: + 28983: - Pressed: Toggle - 29180: + 28978: - Pressed: Toggle - - uid: 29400 + - uid: 29198 components: - type: Transform rot: -1.5707953085339508 rad @@ -221731,11 +221809,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1544: + 1549: - Pressed: Toggle - 1545: + 1550: - Pressed: Close - - uid: 29401 + - uid: 29199 components: - type: Transform rot: 1.5707963267948966 rad @@ -221743,11 +221821,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1541: + 1546: - Pressed: Toggle - 1542: + 1547: - Pressed: Toggle - - uid: 29402 + - uid: 29200 components: - type: Transform rot: -1.5707963267948966 rad @@ -221755,11 +221833,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29393: + 29191: - Pressed: Toggle - 29394: + 29192: - Pressed: Toggle - - uid: 29403 + - uid: 29201 components: - type: Transform rot: 1.5707963267948966 rad @@ -221767,11 +221845,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29186: + 28984: - Pressed: Toggle - 29182: + 28980: - Pressed: Toggle - - uid: 29404 + - uid: 29202 components: - type: MetaData name: аварийные гермозатворы тюремного крыла @@ -221780,13 +221858,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1577: + 1582: - Pressed: Toggle - 1550: + 1555: - Pressed: Toggle - 1551: + 1556: - Pressed: Toggle - - uid: 29405 + - uid: 29203 components: - type: Transform rot: 3.141592653589793 rad @@ -221794,13 +221872,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1536: + 1541: - Pressed: Toggle - 1537: + 1542: - Pressed: Toggle - 1535: + 1540: - Pressed: Toggle - - uid: 29406 + - uid: 29204 components: - type: Transform rot: 1.5707963267948966 rad @@ -221808,11 +221886,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29347: + 29145: - Pressed: Toggle - 29240: + 29038: - Pressed: Toggle - - uid: 29407 + - uid: 29205 components: - type: MetaData name: Window Shutters @@ -221822,11 +221900,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29350: + 29148: - Pressed: Toggle - 29263: + 29061: - Pressed: Toggle - - uid: 29408 + - uid: 29206 components: - type: Transform rot: 3.141592653589793 rad @@ -221834,25 +221912,25 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29246: + 29044: - Pressed: Toggle - 29323: + 29121: - Pressed: Toggle - 29244: + 29042: - Pressed: Toggle - 29345: + 29143: - Pressed: Toggle - 29243: + 29041: - Pressed: Toggle - 29300: + 29098: - Pressed: Toggle - 29304: + 29102: - Pressed: Toggle - 29251: + 29049: - Pressed: Toggle - 29303: + 29101: - Pressed: Toggle - - uid: 29409 + - uid: 29207 components: - type: MetaData name: аварийные гермозатворы брига @@ -221861,19 +221939,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1563: + 1568: - Pressed: Toggle - 1573: + 1578: - Pressed: Toggle - 1562: + 1567: - Pressed: Toggle - 1576: + 1581: - Pressed: Toggle - 1572: + 1577: - Pressed: Toggle - 1561: + 1566: - Pressed: Toggle - - uid: 29410 + - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad @@ -221881,15 +221959,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1558: + 1563: - Pressed: Toggle - 1560: + 1565: - Pressed: Toggle - 1559: + 1564: - Pressed: Toggle - 1552: + 1557: - Pressed: Toggle - - uid: 29411 + - uid: 29209 components: - type: Transform rot: 1.5707963267948966 rad @@ -221897,9 +221975,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1556: + 1561: - Pressed: Toggle - - uid: 29412 + - uid: 29210 components: - type: Transform rot: -1.5707963267948966 rad @@ -221907,31 +221985,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29354: + 29152: - Pressed: Toggle - 29346: + 29144: - Pressed: Toggle - 29353: + 29151: - Pressed: Toggle - 29279: + 29077: - Pressed: Toggle - 29272: + 29070: - Pressed: Toggle - 29284: + 29082: - Pressed: Toggle - 29299: + 29097: - Pressed: Toggle - 29344: + 29142: - Pressed: Toggle - 29242: + 29040: - Pressed: Toggle - 29252: + 29050: - Pressed: Toggle - 29280: + 29078: - Pressed: Toggle - 29249: + 29047: - Pressed: Toggle - - uid: 29413 + - uid: 29211 components: - type: Transform rot: 3.141592653589793 rad @@ -221939,15 +222017,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1570: + 1575: - Pressed: Toggle - 1566: + 1571: - Pressed: Toggle - 1575: + 1580: - Pressed: Toggle - 1555: + 1560: - Pressed: Toggle - - uid: 29414 + - uid: 29212 components: - type: Transform rot: -1.5707963267948966 rad @@ -221955,20 +222033,20 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 38016: + 37854: - Pressed: Toggle - - uid: 29415 + - uid: 29213 components: - type: Transform pos: -60.5,12.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29194: + 28992: - Pressed: Toggle - 29192: + 28990: - Pressed: Toggle - - uid: 29416 + - uid: 29214 components: - type: Transform rot: -1.5707963267948966 rad @@ -221976,19 +222054,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29361: + 29159: - Pressed: Toggle - 29360: + 29158: - Pressed: Toggle - 29359: + 29157: - Pressed: Toggle - 29358: + 29156: - Pressed: Toggle - 29343: + 29141: - Pressed: Toggle - 29348: + 29146: - Pressed: Toggle - - uid: 29417 + - uid: 29215 components: - type: Transform rot: -1.5707963267948966 rad @@ -221996,17 +222074,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29371: + 29169: - Pressed: Toggle - 29370: + 29168: - Pressed: Toggle - 29369: + 29167: - Pressed: Toggle - 29368: + 29166: - Pressed: Toggle - 29362: + 29160: - Pressed: Toggle - - uid: 29418 + - uid: 29216 components: - type: Transform rot: -1.5707963267948966 rad @@ -222014,17 +222092,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29295: + 29093: - Pressed: Toggle - 29271: + 29069: - Pressed: Toggle - 29266: + 29064: - Pressed: Toggle - 29351: + 29149: - Pressed: Toggle - 29218: + 29016: - Pressed: Toggle - - uid: 29419 + - uid: 29217 components: - type: Transform rot: 3.141592653589793 rad @@ -222032,15 +222110,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1571: + 1576: - Pressed: Toggle - 1568: + 1573: - Pressed: Toggle - 1567: + 1572: - Pressed: Toggle - 1553: + 1558: - Pressed: Toggle - - uid: 29420 + - uid: 29218 components: - type: Transform rot: 1.5707963267948966 rad @@ -222048,22 +222126,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29234: + 29032: - Pressed: Toggle - - uid: 29421 + - uid: 29219 components: - type: Transform pos: -20.5,-44.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29206: + 29004: - Pressed: Toggle - 29207: + 29005: - Pressed: Toggle - 29197: + 28995: - Pressed: Toggle - - uid: 29422 + - uid: 29220 components: - type: Transform rot: 1.5707963267948966 rad @@ -222071,13 +222149,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29265: + 29063: - Pressed: Toggle - 29317: + 29115: - Pressed: Toggle - 29248: + 29046: - Pressed: Toggle - - uid: 29423 + - uid: 29221 components: - type: Transform rot: 1.5707963267948966 rad @@ -222085,31 +222163,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29235: + 29033: - Pressed: Toggle - - uid: 29424 + - uid: 29222 components: - type: Transform pos: -72.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1510: + 1515: - Pressed: Toggle - 1520: + 1525: - Pressed: Toggle - 1526: + 1531: - Pressed: Toggle - - uid: 29425 + - uid: 29223 components: - type: Transform pos: -34.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1565: + 1570: - Pressed: Toggle - - uid: 29426 + - uid: 29224 components: - type: Transform rot: 1.5707963267948966 rad @@ -222117,13 +222195,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29392: + 29190: - Pressed: Toggle - 29381: + 29179: - Pressed: Toggle - 29391: + 29189: - Pressed: Toggle - - uid: 29427 + - uid: 29225 components: - type: Transform rot: 3.141592653589793 rad @@ -222131,16 +222209,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1554: + 1559: - Pressed: Toggle - - uid: 29428 + - uid: 29226 components: - type: MetaData name: R&D Shutters - type: Transform pos: -4.665589,-36.21264 parent: 2 - - uid: 29429 + - uid: 29227 components: - type: Transform rot: -1.5707963267948966 rad @@ -222148,26 +222226,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29270: + 29068: - Pressed: Toggle - 29269: + 29067: - Pressed: Toggle - 29287: + 29085: - Pressed: Toggle - 29302: + 29100: - Pressed: Toggle - 29352: + 29150: - Pressed: Toggle - - uid: 29430 + - uid: 29228 components: - type: Transform pos: -38.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1574: + 1579: - Pressed: Toggle - - uid: 29431 + - uid: 29229 components: - type: Transform rot: -1.5707963267948966 rad @@ -222175,37 +222253,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29187: + 28985: - Pressed: Toggle - 29195: + 28993: - Pressed: Toggle - 29193: + 28991: - Pressed: Toggle - 29188: + 28986: - Pressed: Toggle - - uid: 29432 + - uid: 29230 components: - type: Transform pos: -42.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1564: + 1569: - Pressed: Toggle - - uid: 29433 + - uid: 29231 components: - type: Transform pos: 35.881416,10.445328 parent: 2 - type: DeviceLinkSource linkedPorts: - 29226: + 29024: - Pressed: Toggle - 29222: + 29020: - Pressed: Toggle - 29230: + 29028: - Pressed: Toggle - - uid: 29434 + - uid: 29232 components: - type: Transform rot: 1.5707963267948966 rad @@ -222213,18 +222291,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29189: + 28987: - Pressed: Toggle - 29198: + 28996: - Pressed: Toggle - 29196: + 28994: - Pressed: Toggle - - uid: 29435 + - uid: 29233 components: - type: Transform pos: -4.353089,-36.21264 parent: 2 - - uid: 29436 + - uid: 29234 components: - type: Transform rot: 3.141592653589793 rad @@ -222232,22 +222310,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1557: + 1562: - Pressed: Toggle - - uid: 29437 + - uid: 29235 components: - type: Transform pos: 37.198734,10.464645 parent: 2 - type: DeviceLinkSource linkedPorts: - 1573: + 1578: - Pressed: Toggle - 1576: + 1581: - Pressed: Toggle - 1561: + 1566: - Pressed: Toggle - - uid: 29438 + - uid: 29236 components: - type: Transform rot: 1.5707963267948966 rad @@ -222255,9 +222333,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29396: + 29194: - Pressed: Toggle - - uid: 29439 + - uid: 29237 components: - type: Transform rot: 1.5707963267948966 rad @@ -222265,9 +222343,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29395: + 29193: - Pressed: Toggle - - uid: 29440 + - uid: 29238 components: - type: Transform rot: 1.5707963267948966 rad @@ -222275,18 +222353,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29356: + 29154: - Pressed: Toggle - - uid: 29441 + - uid: 29239 components: - type: Transform pos: -37.5,55.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29191: + 28989: - Pressed: Toggle - - uid: 29442 + - uid: 29240 components: - type: Transform rot: -1.5707963267948966 rad @@ -222294,13 +222372,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1538: - - Pressed: Toggle - 1511: + 1543: - Pressed: Toggle 1516: - Pressed: Toggle - - uid: 29443 + 1521: + - Pressed: Toggle + - uid: 29241 components: - type: Transform rot: 3.141592653589793 rad @@ -222308,9 +222386,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1569: + 1574: - Pressed: Toggle - - uid: 29444 + - uid: 29242 components: - type: Transform rot: 3.141592653589793 rad @@ -222318,21 +222396,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29349: + 29147: - Pressed: Toggle - 29224: + 29022: - Pressed: Toggle - 29223: + 29021: - Pressed: Toggle - 29367: + 29165: - Pressed: Toggle - 29229: + 29027: - Pressed: Toggle - 29233: + 29031: - Pressed: Toggle - 29294: + 29092: - Pressed: Toggle - - uid: 29445 + - uid: 29243 components: - type: Transform rot: 1.5707963267948966 rad @@ -222340,29 +222418,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29247: + 29045: - Pressed: Toggle - 29225: + 29023: - Pressed: Toggle - 29245: + 29043: - Pressed: Toggle - 29264: + 29062: - Pressed: Toggle - 29268: + 29066: - Pressed: Toggle - 29257: + 29055: - Pressed: Toggle - 29255: + 29053: - Pressed: Toggle - 29283: + 29081: - Pressed: Toggle - 29253: + 29051: - Pressed: Toggle - 29239: + 29037: - Pressed: Toggle - 29256: + 29054: - Pressed: Toggle - - uid: 29446 + - uid: 29244 components: - type: Transform rot: 1.5707963267948966 rad @@ -222370,11 +222448,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29254: + 29052: - Pressed: Toggle - 29241: + 29039: - Pressed: Toggle - - uid: 29447 + - uid: 29245 components: - type: Transform rot: 1.5707963267948966 rad @@ -222382,32 +222460,32 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29199: + 28997: - Pressed: Toggle - 29200: + 28998: - Pressed: Toggle - - uid: 29448 + - uid: 29246 components: - type: Transform pos: -31.5,38.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29273: + 29071: - Pressed: Toggle - 29315: + 29113: - Pressed: Toggle - 29316: + 29114: - Pressed: Toggle - 29324: + 29122: - Pressed: Toggle - 29274: + 29072: - Pressed: Toggle - 29326: + 29124: - Pressed: Toggle - 29327: + 29125: - Pressed: Toggle - - uid: 29449 + - uid: 29247 components: - type: Transform rot: 3.141592653589793 rad @@ -222415,13 +222493,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1534: + 1539: - Pressed: Toggle - 1521: + 1526: - Pressed: Toggle - 1525: + 1530: - Pressed: Toggle - - uid: 29450 + - uid: 29248 components: - type: Transform rot: -1.5707963267948966 rad @@ -222429,11 +222507,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29241: + 29039: - Pressed: Toggle - 29254: + 29052: - Pressed: Toggle - - uid: 29451 + - uid: 29249 components: - type: Transform rot: -1.5707963267948966 rad @@ -222441,13 +222519,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1524: + 1529: - Pressed: Toggle - 1522: + 1527: - Pressed: Toggle - 1523: + 1528: - Pressed: Toggle - - uid: 29452 + - uid: 29250 components: - type: Transform rot: 1.5707963267948966 rad @@ -222455,15 +222533,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29277: + 29075: - Pressed: Toggle - 29301: + 29099: - Pressed: Toggle - 29328: + 29126: - Pressed: Toggle - 29332: + 29130: - Pressed: Toggle - - uid: 29453 + - uid: 29251 components: - type: Transform rot: 1.5707963267948966 rad @@ -222471,17 +222549,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29278: + 29076: - Pressed: Toggle - 29261: + 29059: - Pressed: Toggle - 29333: + 29131: - Pressed: Toggle - 29276: + 29074: - Pressed: Toggle - 29275: + 29073: - Pressed: Toggle - - uid: 29454 + - uid: 29252 components: - type: Transform rot: -1.5707963267948966 rad @@ -222489,9 +222567,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 38017: + 37855: - Pressed: Toggle - - uid: 29455 + - uid: 29253 components: - type: Transform rot: 1.5707963267948966 rad @@ -222499,13 +222577,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29221: + 29019: - Pressed: Toggle - 29322: + 29120: - Pressed: Toggle - 29281: + 29079: - Pressed: Toggle - - uid: 29456 + - uid: 29254 components: - type: Transform rot: 1.5707963267948966 rad @@ -222513,11 +222591,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29238: + 29036: - Pressed: Toggle - 29237: + 29035: - Pressed: Toggle - - uid: 29457 + - uid: 29255 components: - type: Transform rot: 1.5707963267948966 rad @@ -222525,15 +222603,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29363: + 29161: - Pressed: Toggle - 29364: + 29162: - Pressed: Toggle - 29365: + 29163: - Pressed: Toggle - 29366: + 29164: - Pressed: Toggle - - uid: 29458 + - uid: 29256 components: - type: Transform rot: 1.5707963267948966 rad @@ -222541,24 +222619,24 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1539: + 1544: - Pressed: Toggle - 1540: + 1545: - Pressed: Toggle - - uid: 29459 + - uid: 29257 components: - type: Transform pos: 37.43311,10.48027 parent: 2 - type: DeviceLinkSource linkedPorts: - 1563: + 1568: - Pressed: Toggle - 1562: + 1567: - Pressed: Toggle - 1572: + 1577: - Pressed: Toggle - - uid: 29460 + - uid: 29258 components: - type: Transform rot: 3.141592653589793 rad @@ -222566,13 +222644,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29296: + 29094: - Pressed: Toggle - 29297: + 29095: - Pressed: Toggle - 29298: + 29096: - Pressed: Toggle - - uid: 29461 + - uid: 29259 components: - type: Transform rot: 3.141592653589793 rad @@ -222580,13 +222658,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29236: + 29034: - Pressed: Toggle - 29231: + 29029: - Pressed: Toggle - 29232: + 29030: - Pressed: Toggle - - uid: 29462 + - uid: 29260 components: - type: Transform rot: 1.5707963267948966 rad @@ -222594,19 +222672,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29390: + 29188: - Pressed: Toggle - 29383: + 29181: - Pressed: Toggle - 29387: + 29185: - Pressed: Toggle - 29388: + 29186: - Pressed: Toggle - 29389: + 29187: - Pressed: Toggle - 29375: + 29173: - Pressed: Toggle - - uid: 29463 + - uid: 29261 components: - type: Transform rot: 1.5707973450558423 rad @@ -222614,9 +222692,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27204: + 27048: - Pressed: Toggle - - uid: 29464 + - uid: 29262 components: - type: Transform rot: 1.5707973450558423 rad @@ -222624,9 +222702,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27206: + 27050: - Pressed: Toggle - - uid: 29465 + - uid: 29263 components: - type: Transform rot: 1.5707973450558423 rad @@ -222634,9 +222712,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27205: + 27049: - Pressed: Toggle - - uid: 29466 + - uid: 29264 components: - type: Transform rot: -1.5707953085339508 rad @@ -222644,15 +222722,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29209: + 29007: - Pressed: Toggle - 29210: + 29008: - Pressed: Toggle - 29211: + 29009: - Pressed: Toggle - 29212: + 29010: - Pressed: Toggle - - uid: 29467 + - uid: 29265 components: - type: Transform rot: -1.5707963267948966 rad @@ -222660,9 +222738,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29282: + 29080: - Pressed: Toggle - - uid: 29468 + - uid: 29266 components: - type: Transform rot: 1.5707963267948966 rad @@ -222670,9 +222748,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27215: + 27059: - Pressed: Toggle - - uid: 29469 + - uid: 29267 components: - type: Transform rot: -1.5707963267948966 rad @@ -222680,9 +222758,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27216: + 27060: - Pressed: Toggle - - uid: 29470 + - uid: 29268 components: - type: Transform pos: -23.5,62.5 @@ -222691,7 +222769,7 @@ entities: linkedPorts: 150: - Pressed: DoorBolt - - uid: 29471 + - uid: 29269 components: - type: Transform pos: -23.5,64.5 @@ -222700,7 +222778,7 @@ entities: linkedPorts: 141: - Pressed: DoorBolt - - uid: 29472 + - uid: 29270 components: - type: Transform pos: -23.5,60.5 @@ -222709,13 +222787,13 @@ entities: linkedPorts: 148: - Pressed: DoorBolt - - uid: 29473 + - uid: 29271 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 - - uid: 29474 + - uid: 29272 components: - type: Transform rot: -1.5707963267948966 rad @@ -222725,7 +222803,7 @@ entities: linkedPorts: 140: - Pressed: DoorBolt - - uid: 29475 + - uid: 29273 components: - type: Transform rot: -1.5707963267948966 rad @@ -222737,7 +222815,7 @@ entities: - Pressed: DoorBolt 168: - Pressed: DoorBolt - - uid: 29476 + - uid: 29274 components: - type: Transform rot: 1.5707963267948966 rad @@ -222747,7 +222825,7 @@ entities: linkedPorts: 155: - Pressed: DoorBolt - - uid: 29477 + - uid: 29275 components: - type: Transform rot: 1.5707963267948966 rad @@ -222757,7 +222835,7 @@ entities: linkedPorts: 136: - Pressed: DoorBolt - - uid: 29478 + - uid: 29276 components: - type: Transform rot: 1.5707963267948966 rad @@ -222767,7 +222845,7 @@ entities: linkedPorts: 161: - Pressed: DoorBolt - - uid: 29479 + - uid: 29277 components: - type: Transform rot: 1.5707963267948966 rad @@ -222777,24 +222855,24 @@ entities: linkedPorts: 156: - Pressed: DoorBolt - - uid: 39678 + - uid: 39505 components: - type: Transform pos: -14.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceLinkSource linkedPorts: - 39673: + 39500: - Pressed: Toggle - 39674: + 39501: - Pressed: Toggle - 39675: + 39502: - Pressed: Toggle - 39676: + 39503: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 29480 + - uid: 29278 components: - type: Transform rot: -1.5707963267948966 rad @@ -222802,47 +222880,47 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1528: + 1533: - Pressed: Toggle - 1530: + 1535: - Pressed: Toggle - - uid: 29481 + - uid: 29279 components: - type: Transform pos: -64.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29374: + 29172: - Pressed: Toggle - 29373: + 29171: - Pressed: Toggle - 29372: + 29170: - Pressed: Toggle - - uid: 29482 + - uid: 29280 components: - type: Transform pos: 30.127745,-0.26775646 parent: 2 - type: DeviceLinkSource linkedPorts: - 29286: + 29084: - Pressed: Toggle - 29285: + 29083: - Pressed: Toggle - 29289: + 29087: - Pressed: Toggle - 29290: + 29088: - Pressed: Toggle - 29291: + 29089: - Pressed: Toggle - 29292: + 29090: - Pressed: Toggle - 29293: + 29091: - Pressed: Toggle - 29288: + 29086: - Pressed: Toggle - - uid: 29483 + - uid: 29281 components: - type: Transform rot: -1.5707963267948966 rad @@ -222850,11 +222928,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1529: + 1534: - Pressed: Toggle - 1527: + 1532: - Pressed: Toggle - - uid: 29484 + - uid: 29282 components: - type: Transform rot: 1.5707963267948966 rad @@ -222862,22 +222940,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1531: + 1536: - Pressed: Toggle - 1517: + 1522: - Pressed: Toggle - 1532: + 1537: - Pressed: Toggle - - uid: 29485 + - uid: 29283 components: - type: Transform pos: 8.5,-21.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24851: + 24710: - Pressed: Toggle - - uid: 29486 + - uid: 29284 components: - type: Transform rot: 1.5707963267948966 rad @@ -222885,13 +222963,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29258: + 29056: - Pressed: Toggle - 29267: + 29065: - Pressed: Toggle - 29262: + 29060: - Pressed: Toggle - - uid: 29487 + - uid: 29285 components: - type: Transform rot: 1.5707963267948966 rad @@ -222899,13 +222977,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1533: + 1538: - Pressed: Toggle - 1509: + 1514: - Pressed: Toggle - 1518: + 1523: - Pressed: Toggle - - uid: 29488 + - uid: 29286 components: - type: Transform rot: -1.5707963267948966 rad @@ -222913,9 +222991,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24849: + 24708: - Pressed: Toggle - - uid: 29489 + - uid: 29287 components: - type: Transform rot: 1.5707963267948966 rad @@ -222923,9 +223001,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24850: + 24709: - Pressed: Toggle - - uid: 29490 + - uid: 29288 components: - type: Transform rot: 3.141592653589793 rad @@ -222933,15 +223011,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29310: + 29108: - Pressed: Toggle - 29341: + 29139: - Pressed: Toggle - 29313: + 29111: - Pressed: Toggle - 29314: + 29112: - Pressed: Toggle - - uid: 29491 + - uid: 29289 components: - type: Transform rot: 3.141592653589793 rad @@ -222949,26 +223027,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29312: + 29110: - Pressed: Toggle - 29330: + 29128: - Pressed: Toggle - 29311: + 29109: - Pressed: Toggle - 29329: + 29127: - Pressed: Toggle - - uid: 29492 + - uid: 29290 components: - type: Transform pos: -78.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29228: + 29026: - Pressed: Toggle - 29227: + 29025: - Pressed: Toggle - - uid: 29493 + - uid: 29291 components: - type: Transform rot: 3.141592653589793 rad @@ -222976,9 +223054,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24852: + 24711: - Pressed: Toggle - - uid: 29494 + - uid: 29292 components: - type: Transform rot: 1.5707963267948966 rad @@ -222986,13 +223064,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29260: + 29058: - Pressed: Toggle - 29259: + 29057: - Pressed: Toggle - 29357: + 29155: - Pressed: Toggle - - uid: 29495 + - uid: 29293 components: - type: Transform rot: 1.5707973450558423 rad @@ -223000,9 +223078,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1543: + 1548: - Pressed: Toggle - - uid: 29496 + - uid: 29294 components: - type: Transform rot: 3.141593671850739 rad @@ -223010,9 +223088,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1543: + 1548: - Pressed: Toggle - - uid: 29497 + - uid: 29295 components: - type: Transform rot: 3.141593671850739 rad @@ -223020,31 +223098,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29201: + 28999: - Pressed: Toggle - 29202: + 29000: - Pressed: Toggle - 29203: + 29001: - Pressed: Toggle - 29205: + 29003: - Pressed: Toggle - 29204: + 29002: - Pressed: Toggle - proto: SignArcade entities: - - uid: 29498 + - uid: 29296 components: - type: Transform pos: -29.5,-59.5 parent: 2 - proto: SignArmory entities: - - uid: 29499 + - uid: 29297 components: - type: Transform pos: 56.5,6.5 parent: 2 - - uid: 29500 + - uid: 29298 components: - type: Transform rot: 1.5707963267948966 rad @@ -223052,43 +223130,43 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 29501 + - uid: 29299 components: - type: Transform pos: -54.5,19.5 parent: 2 - proto: SignBio entities: - - uid: 29502 + - uid: 29300 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 29503 + - uid: 29301 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 29504 + - uid: 29302 components: - type: Transform pos: 26.5,-53.5 parent: 2 - proto: SignBiohazard entities: - - uid: 29505 + - uid: 29303 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 29506 + - uid: 29304 components: - type: Transform pos: 28.5,-53.5 parent: 2 - proto: SignBiohazardMed entities: - - uid: 29507 + - uid: 29305 components: - type: Transform rot: 1.5707963267948966 rad @@ -223096,55 +223174,55 @@ entities: parent: 2 - proto: SignBridge entities: - - uid: 29508 + - uid: 29306 components: - type: Transform pos: 15.5,17.5 parent: 2 - - uid: 29509 + - uid: 29307 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 29510 + - uid: 29308 components: - type: Transform pos: -16.5,17.5 parent: 2 - - uid: 29511 + - uid: 29309 components: - type: Transform pos: 15.5,12.5 parent: 2 - proto: SignCanisters entities: - - uid: 29512 + - uid: 29310 components: - type: Transform pos: -24.5,-48.5 parent: 2 - proto: SignChem entities: - - uid: 29513 + - uid: 29311 components: - type: Transform pos: -37.5,56.5 parent: 2 - proto: SignChemistry1 entities: - - uid: 29514 + - uid: 29312 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 29515 + - uid: 29313 components: - type: Transform pos: 1.5,-32.5 parent: 2 - proto: SignCloning entities: - - uid: 29516 + - uid: 29314 components: - type: Transform rot: 1.5707963267948966 rad @@ -223152,20 +223230,20 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 29517 + - uid: 29315 components: - type: Transform pos: 19.5,-36.5 parent: 2 - proto: SignDirectionalBridge entities: - - uid: 29518 + - uid: 29316 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.508827,7.2060776 parent: 2 - - uid: 29519 + - uid: 29317 components: - type: Transform rot: 3.141592653589793 rad @@ -223173,24 +223251,24 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 29520 + - uid: 29318 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.508827,7.7060776 parent: 2 - - uid: 29521 + - uid: 29319 components: - type: Transform pos: -20.53457,21.45121 parent: 2 - - uid: 29522 + - uid: 29320 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4954174,-21.28422 parent: 2 - - uid: 29523 + - uid: 29321 components: - type: Transform rot: 3.141592653589793 rad @@ -223198,44 +223276,44 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 29524 + - uid: 29322 components: - type: Transform pos: -20.465418,3.2079785 parent: 2 - - uid: 29525 + - uid: 29323 components: - type: Transform pos: -20.53457,21.185585 parent: 2 - - uid: 29526 + - uid: 29324 components: - type: Transform pos: 1.4544559,-21.818363 parent: 2 - - uid: 29527 + - uid: 29325 components: - type: Transform pos: -2.5215883,-62.742023 parent: 2 - - uid: 29528 + - uid: 29326 components: - type: Transform pos: -2.4954174,-21.78422 parent: 2 - - uid: 29529 + - uid: 29327 components: - type: Transform pos: 1.4627867,-62.75765 parent: 2 - - uid: 29530 + - uid: 29328 components: - type: Transform pos: 19.544283,3.1722114 parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 29531 + - uid: 29329 components: - type: Transform rot: -1.5707963267948966 rad @@ -223243,34 +223321,34 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 29532 + - uid: 29330 components: - type: Transform pos: -20.465418,3.4582398 parent: 2 - - uid: 29533 + - uid: 29331 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.244955 parent: 2 - - uid: 29534 + - uid: 29332 components: - type: Transform pos: 19.544283,3.4222114 parent: 2 - - uid: 29535 + - uid: 29333 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4471617,-62.50765 parent: 2 - - uid: 29536 + - uid: 29334 components: - type: Transform pos: 1.504024,25.238964 parent: 2 - - uid: 29537 + - uid: 29335 components: - type: Transform rot: 1.5707963267948966 rad @@ -223278,28 +223356,28 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 29538 + - uid: 29336 components: - type: Transform rot: -1.5707953085339508 rad pos: -2.4999108,-21.532824 parent: 2 - - uid: 29539 + - uid: 29337 components: - type: Transform pos: -20.53457,21.716835 parent: 2 - - uid: 29540 + - uid: 29338 components: - type: Transform pos: -20.508827,7.4560776 parent: 2 - - uid: 29541 + - uid: 29339 components: - type: Transform pos: 19.514046,7.286875 parent: 2 - - uid: 29542 + - uid: 29340 components: - type: Transform rot: 3.141592653589793 rad @@ -223307,36 +223385,36 @@ entities: parent: 2 - proto: SignDirectionalSec entities: - - uid: 29543 + - uid: 29341 components: - type: Transform pos: -20.465418,3.7397835 parent: 2 - - uid: 29544 + - uid: 29342 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4471617,-62.25765 parent: 2 - - uid: 29545 + - uid: 29343 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.776205 parent: 2 - - uid: 29546 + - uid: 29344 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.4544559,-21.302738 parent: 2 - - uid: 29547 + - uid: 29345 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.544283,3.6722114 parent: 2 - - uid: 29548 + - uid: 29346 components: - type: Transform rot: 1.5707963267948966 rad @@ -223344,19 +223422,19 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 29549 + - uid: 29347 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.504024,25.520214 parent: 2 - - uid: 29550 + - uid: 29348 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.526205 parent: 2 - - uid: 29551 + - uid: 29349 components: - type: Transform rot: 3.141592653589793 rad @@ -223364,115 +223442,115 @@ entities: parent: 2 - proto: SignDisposalSpace entities: - - uid: 29552 + - uid: 29350 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,60.5 parent: 2 - - uid: 29553 + - uid: 29351 components: - type: Transform pos: -67.5,53.5 parent: 2 - - uid: 29554 + - uid: 29352 components: - type: Transform pos: 27.5,-70.5 parent: 2 - proto: SignDoors entities: - - uid: 29555 + - uid: 29353 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,86.5 parent: 2 - - uid: 29556 + - uid: 29354 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,75.5 parent: 2 - - uid: 29557 + - uid: 29355 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,29.5 parent: 2 - - uid: 29558 + - uid: 29356 components: - type: Transform pos: 13.5,79.5 parent: 2 - - uid: 29559 + - uid: 29357 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,80.5 parent: 2 - - uid: 29560 + - uid: 29358 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,74.5 parent: 2 - - uid: 29561 + - uid: 29359 components: - type: Transform pos: -16.5,-17.5 parent: 2 - - uid: 29562 + - uid: 29360 components: - type: Transform pos: -44.5,53.5 parent: 2 - - uid: 29563 + - uid: 29361 components: - type: Transform pos: 6.5,91.5 parent: 2 - - uid: 29564 + - uid: 29362 components: - type: Transform pos: -42.5,49.5 parent: 2 - - uid: 29565 + - uid: 29363 components: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 29566 + - uid: 29364 components: - type: Transform pos: -15.5,17.5 parent: 2 - - uid: 29567 + - uid: 29365 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 29568 + - uid: 29366 components: - type: Transform pos: -40.5,-73.5 parent: 2 - - uid: 29569 + - uid: 29367 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 29570 + - uid: 29368 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 29571 + - uid: 29369 components: - type: Transform pos: 12.5,86.5 parent: 2 - - uid: 29572 + - uid: 29370 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -223480,244 +223558,244 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 29573 + - uid: 29371 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 5.5,-12.5 parent: 2 - - uid: 29574 + - uid: 29372 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 5.5000005,-10.5 parent: 2 - - uid: 29575 + - uid: 29373 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -6.5,-12.5 parent: 2 - - uid: 29576 + - uid: 29374 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 3.5,-10.5 parent: 2 - - uid: 29577 + - uid: 29375 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -4.4999995,-10.5 parent: 2 - - uid: 29578 + - uid: 29376 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -6.4999995,-10.5 parent: 2 - - uid: 29579 + - uid: 29377 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -4.5,-12.5 parent: 2 - - uid: 29580 + - uid: 29378 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 3.5000002,-12.5 parent: 2 - - uid: 29581 + - uid: 29379 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 98.50001,5.5000005 parent: 2 - - uid: 29582 + - uid: 29380 components: - type: Transform rot: 1.5707973450558423 rad pos: 82.50001,-5.5 parent: 2 - - uid: 29583 + - uid: 29381 components: - type: Transform pos: -79.5,-17.5 parent: 2 - - uid: 29584 + - uid: 29382 components: - type: Transform pos: -105.5,-1.5 parent: 2 - - uid: 29585 + - uid: 29383 components: - type: Transform pos: -86.5,-21.5 parent: 2 - - uid: 29586 + - uid: 29384 components: - type: Transform pos: -94.5,-21.5 parent: 2 - - uid: 29587 + - uid: 29385 components: - type: Transform pos: -94.5,4.5 parent: 2 - - uid: 29588 + - uid: 29386 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 29589 + - uid: 29387 components: - type: Transform pos: -104.5,3.5 parent: 2 - - uid: 29590 + - uid: 29388 components: - type: Transform pos: -105.5,-13.5 parent: 2 - - uid: 29591 + - uid: 29389 components: - type: Transform pos: -94.5,6.5 parent: 2 - - uid: 29592 + - uid: 29390 components: - type: Transform pos: -86.5,6.5 parent: 2 - - uid: 29593 + - uid: 29391 components: - type: Transform pos: -94.5,-19.5 parent: 2 - - uid: 29594 + - uid: 29392 components: - type: Transform pos: -86.5,-19.5 parent: 2 - - uid: 29595 + - uid: 29393 components: - type: Transform pos: -104.5,-18.5 parent: 2 - - uid: 29596 + - uid: 29394 components: - type: Transform pos: -103.5,-13.5 parent: 2 - - uid: 29597 + - uid: 29395 components: - type: Transform pos: -103.5,-1.5 parent: 2 - - uid: 29598 + - uid: 29396 components: - type: Transform pos: -79.5,3.5 parent: 2 - - uid: 29599 + - uid: 29397 components: - type: Transform rot: 1.5707973450558423 rad pos: 90.50001,-5.5 parent: 2 - - uid: 29600 + - uid: 29398 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 98.5,0.5 parent: 2 - - uid: 29601 + - uid: 29399 components: - type: Transform rot: 1.5707973450558423 rad pos: 78.50001,-5.5 parent: 2 - - uid: 29602 + - uid: 29400 components: - type: Transform rot: 1.5707973450558423 rad pos: 86.50001,-5.5 parent: 2 - - uid: 29603 + - uid: 29401 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 75.5,-0.5 parent: 2 - - uid: 29604 + - uid: 29402 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 75.49999,3.5 parent: 2 - - uid: 29605 + - uid: 29403 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.5,11.5 parent: 2 - - uid: 39679 + - uid: 39506 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 39680 + parent: 38411 + - uid: 39507 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 + parent: 38411 - proto: SignEngineering entities: - - uid: 29606 + - uid: 29404 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,11.5 parent: 2 - - uid: 29607 + - uid: 29405 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,85.5 parent: 2 - - uid: 29608 + - uid: 29406 components: - type: Transform pos: -9.5,-78.5 parent: 2 - proto: SignEscapePods entities: - - uid: 29609 + - uid: 29407 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,96.5 parent: 2 - - uid: 29610 + - uid: 29408 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,80.5 parent: 2 - - uid: 29611 + - uid: 29409 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,70.5 parent: 2 - - uid: 29612 + - uid: 29410 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,87.5 parent: 2 - - uid: 29613 + - uid: 29411 components: - type: Transform rot: 1.5707963267948966 rad @@ -223725,13 +223803,13 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 29614 + - uid: 29412 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -14.5,-10.5 parent: 2 - - uid: 29615 + - uid: 29413 components: - type: Transform rot: 3.141592653589793 rad @@ -223739,34 +223817,34 @@ entities: parent: 2 - proto: SignExamroom entities: - - uid: 29616 + - uid: 29414 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 29617 + - uid: 29415 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 29618 + - uid: 29416 components: - type: Transform pos: 15.5,-28.5 parent: 2 - proto: SignFlammableMed entities: - - uid: 29619 + - uid: 29417 components: - type: Transform pos: -44.5,52.5 parent: 2 - - uid: 29620 + - uid: 29418 components: - type: Transform pos: -44.5,50.5 parent: 2 - - uid: 29621 + - uid: 29419 components: - type: Transform rot: -1.5707963267948966 rad @@ -223774,21 +223852,21 @@ entities: parent: 2 - proto: SignHydro2 entities: - - uid: 29622 + - uid: 29420 components: - type: Transform pos: -23.5,52.5 parent: 2 - proto: SignInterrogation entities: - - uid: 29623 + - uid: 29421 components: - type: Transform pos: 54.5,-1.5 parent: 2 - proto: SignKiddiePlaque entities: - - uid: 2806 + - uid: 29422 components: - type: MetaData desc: Объявление гласящее о проведении ремонтных работ в области пляжа. @@ -223796,7 +223874,7 @@ entities: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 29624 + - uid: 29423 components: - type: MetaData desc: Опора несущая конструкция "Delta ZXC-322" @@ -223805,7 +223883,7 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,54.5 parent: 2 - - uid: 29625 + - uid: 29424 components: - type: MetaData desc: Скромная табличка с сертификатом докторской степени. @@ -223816,7 +223894,7 @@ entities: parent: 2 - proto: SignLibrary entities: - - uid: 29626 + - uid: 29425 components: - type: Transform rot: 1.5707963267948966 rad @@ -223824,71 +223902,71 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 29627 + - uid: 29426 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 29628 + - uid: 29427 components: - type: Transform pos: 15.5,-21.5 parent: 2 - - uid: 29629 + - uid: 29428 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 29630 + - uid: 29429 components: - type: Transform pos: 25.5,-41.5 parent: 2 - - uid: 29631 + - uid: 29430 components: - type: Transform pos: 15.5,-27.5 parent: 2 - - uid: 29632 + - uid: 29431 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 29633 + - uid: 29432 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 29634 + - uid: 29433 components: - type: Transform pos: 19.5,-41.5 parent: 2 - - uid: 29635 + - uid: 29434 components: - type: Transform pos: 42.5,-33.5 parent: 2 - - uid: 29636 + - uid: 29435 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 39681 + - uid: 39508 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 - parent: 38584 + parent: 38411 - proto: SignMorgue entities: - - uid: 29637 + - uid: 29436 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-47.5 parent: 2 - - uid: 29638 + - uid: 29437 components: - type: Transform rot: 1.5707963267948966 rad @@ -223896,59 +223974,59 @@ entities: parent: 2 - proto: SignNanotrasen1 entities: - - uid: 29639 + - uid: 29438 components: - type: Transform pos: -2.5,20.5 parent: 2 - proto: SignNanotrasen2 entities: - - uid: 29640 + - uid: 29439 components: - type: Transform pos: -1.5,20.5 parent: 2 - proto: SignNanotrasen3 entities: - - uid: 29641 + - uid: 29440 components: - type: Transform pos: -0.5,20.5 parent: 2 - proto: SignNanotrasen4 entities: - - uid: 29642 + - uid: 29441 components: - type: Transform pos: 0.5,20.5 parent: 2 - proto: SignNanotrasen5 entities: - - uid: 29643 + - uid: 29442 components: - type: Transform pos: 1.5,20.5 parent: 2 - proto: SignNosmoking entities: - - uid: 29644 + - uid: 29443 components: - type: Transform pos: 17.5,-22.5 parent: 2 - proto: SignRadiationMed entities: - - uid: 29645 + - uid: 29444 components: - type: Transform pos: -50.5,3.5 parent: 2 - - uid: 29646 + - uid: 29445 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 29647 + - uid: 29446 components: - type: Transform rot: -1.5707963267948966 rad @@ -223956,186 +224034,186 @@ entities: parent: 2 - proto: SignRobo entities: - - uid: 29648 + - uid: 29447 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 29649 + - uid: 29448 components: - type: Transform pos: -2.5,-49.5 parent: 2 - proto: SignScience1 entities: - - uid: 29650 + - uid: 29449 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 29651 + - uid: 29450 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 29652 + - uid: 29451 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 29653 + - uid: 29452 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 29654 + - uid: 29453 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 29655 + - uid: 29454 components: - type: Transform pos: -16.5,-21.5 parent: 2 - - uid: 29656 + - uid: 29455 components: - type: Transform pos: -30.5,-42.5 parent: 2 - - uid: 29657 + - uid: 29456 components: - type: Transform pos: -21.5,-46.5 parent: 2 - - uid: 29658 + - uid: 29457 components: - type: Transform pos: -2.5,-32.5 parent: 2 - proto: SignSecurearea entities: - - uid: 29659 + - uid: 29458 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 29660 + - uid: 29459 components: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 29661 + - uid: 29460 components: - type: Transform pos: 61.5,13.5 parent: 2 - - uid: 29662 + - uid: 29461 components: - type: Transform pos: 14.5,-6.5 parent: 2 - - uid: 29663 + - uid: 29462 components: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 29664 + - uid: 29463 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - uid: 29665 + - uid: 29464 components: - type: Transform pos: -42.5,52.5 parent: 2 - - uid: 29666 + - uid: 29465 components: - type: Transform pos: -67.5,19.5 parent: 2 - - uid: 29667 + - uid: 29466 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 29668 + - uid: 29467 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 29669 + - uid: 29468 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 29670 + - uid: 29469 components: - type: Transform pos: -45.5,26.5 parent: 2 - - uid: 29671 + - uid: 29470 components: - type: Transform pos: 28.5,-62.5 parent: 2 - - uid: 29672 + - uid: 29471 components: - type: Transform pos: -50.5,17.5 parent: 2 - - uid: 29673 + - uid: 29472 components: - type: Transform pos: -50.5,7.5 parent: 2 - - uid: 29674 + - uid: 29473 components: - type: Transform pos: -42.5,50.5 parent: 2 - - uid: 29675 + - uid: 29474 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 29676 + - uid: 29475 components: - type: Transform pos: -78.5,17.5 parent: 2 - - uid: 29677 + - uid: 29476 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,27.5 parent: 2 - - uid: 29678 + - uid: 29477 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.49999,35.5 parent: 2 - - uid: 29679 + - uid: 29478 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,31.5 parent: 2 - - uid: 29680 + - uid: 29479 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,43.5 parent: 2 - - uid: 29681 + - uid: 29480 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,47.5 parent: 2 - - uid: 29682 + - uid: 29481 components: - type: Transform rot: 1.5707973450558423 rad @@ -224143,280 +224221,280 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 39682 + - uid: 39509 components: - type: Transform pos: -2.5,9.5 - parent: 38584 - - uid: 39683 + parent: 38411 + - uid: 39510 components: - type: Transform pos: -4.5,15.5 - parent: 38584 + parent: 38411 - proto: SignSecureSmall entities: - - uid: 39684 + - uid: 39511 components: - type: Transform pos: -13.5,36.5 - parent: 38584 + parent: 38411 - proto: SignSecureSmallRed entities: - - uid: 39685 + - uid: 39512 components: - type: Transform pos: -13.5,34.5 - parent: 38584 + parent: 38411 - proto: SignSecurity entities: - - uid: 29683 + - uid: 29482 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 29684 + - uid: 29483 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,20.5 parent: 2 - - uid: 39686 + - uid: 39513 components: - type: Transform pos: 2.5,2.5 - parent: 38584 + parent: 38411 - proto: SignShipDock entities: - - uid: 29685 + - uid: 29484 components: - type: Transform pos: 80.5,11.5 parent: 2 - proto: SignShock entities: - - uid: 29686 + - uid: 29485 components: - type: Transform pos: -55.5,8.5 parent: 2 - - uid: 29687 + - uid: 29486 components: - type: Transform pos: -58.5,8.5 parent: 2 - - uid: 29688 + - uid: 29487 components: - type: Transform pos: -40.5,-75.5 parent: 2 - - uid: 29689 + - uid: 29488 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 29690 + - uid: 29489 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 29691 + - uid: 29490 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 29692 + - uid: 29491 components: - type: Transform pos: 28.5,32.5 parent: 2 - - uid: 29693 + - uid: 29492 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 29694 + - uid: 29493 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 29695 + - uid: 29494 components: - type: Transform pos: -49.5,-25.5 parent: 2 - - uid: 29696 + - uid: 29495 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 29697 + - uid: 29496 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 29698 + - uid: 29497 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 29699 + - uid: 29498 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 29700 + - uid: 29499 components: - type: Transform pos: 42.5,10.5 parent: 2 - - uid: 29701 + - uid: 29500 components: - type: Transform pos: 12.5,88.5 parent: 2 - - uid: 29702 + - uid: 29501 components: - type: Transform pos: 42.5,6.5 parent: 2 - - uid: 29703 + - uid: 29502 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 29704 + - uid: 29503 components: - type: Transform rot: 1.5707973450558423 rad pos: 84.50001,-9.5 parent: 2 - - uid: 29705 + - uid: 29504 components: - type: Transform rot: 1.5707973450558423 rad pos: 104.49999,3.5 parent: 2 - - uid: 29706 + - uid: 29505 components: - type: Transform rot: 1.5707973450558423 rad pos: 102.50001,7.5 parent: 2 - - uid: 29707 + - uid: 29506 components: - type: Transform rot: 1.5707973450558423 rad pos: 104.50001,-8.500001 parent: 2 - - uid: 29708 + - uid: 29507 components: - type: Transform rot: 1.5707973450558423 rad pos: 93.50001,-9.5 parent: 2 - - uid: 29709 + - uid: 29508 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 29710 + - uid: 29509 components: - type: Transform pos: 19.5,12.5 parent: 2 - proto: SignSmoking entities: - - uid: 29711 + - uid: 29510 components: - type: Transform pos: -21.5,-47.5 parent: 2 - - uid: 29712 + - uid: 29511 components: - type: Transform pos: -26.5,-36.5 parent: 2 - - uid: 29713 + - uid: 29512 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 29714 + - uid: 29513 components: - type: Transform pos: 9.5,-47.5 parent: 2 - - uid: 29715 + - uid: 29514 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 29716 + - uid: 29515 components: - type: Transform pos: 33.5,-65.5 parent: 2 - - uid: 29717 + - uid: 29516 components: - type: Transform pos: -57.5,34.5 parent: 2 - - uid: 29718 + - uid: 29517 components: - type: Transform pos: -10.5,-29.5 parent: 2 - - uid: 29719 + - uid: 29518 components: - type: Transform pos: 77.5,-19.5 parent: 2 - - uid: 29720 + - uid: 29519 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 29721 + - uid: 29520 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 29722 + - uid: 29521 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 29723 + - uid: 29522 components: - type: Transform pos: 9.5,-36.5 parent: 2 - - uid: 29724 + - uid: 29523 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 29725 + - uid: 29524 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 29726 + - uid: 29525 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 29727 + - uid: 29526 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 29728 + - uid: 29527 components: - type: Transform pos: 8.5,88.5 parent: 2 - - uid: 29729 + - uid: 29528 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224424,7 +224502,7 @@ entities: parent: 2 - proto: SignSomethingOld entities: - - uid: 29730 + - uid: 29529 components: - type: MetaData desc: Гражданин, вступай в силы морской пехоты Правительства Земли! Защити Землю, идем в будущие вместе с EarthGov. @@ -224434,96 +224512,96 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 29731 + - uid: 29530 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,75.5 parent: 2 - - uid: 29732 + - uid: 29531 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,87.5 parent: 2 - - uid: 29733 + - uid: 29532 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,80.5 parent: 2 - - uid: 29734 + - uid: 29533 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,87.5 parent: 2 - - uid: 29735 + - uid: 29534 components: - type: Transform pos: 9.5,91.5 parent: 2 - - uid: 29736 + - uid: 29535 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 29737 + - uid: 29536 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 29738 + - uid: 29537 components: - type: Transform pos: -59.5,-17.5 parent: 2 - - uid: 29739 + - uid: 29538 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,86.5 parent: 2 - - uid: 29740 + - uid: 29539 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 29741 + - uid: 29540 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 29742 + - uid: 29541 components: - type: Transform pos: -60.5,-15.5 parent: 2 - - uid: 29743 + - uid: 29542 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 29744 + - uid: 29543 components: - type: Transform pos: -11.5,-82.5 parent: 2 - - uid: 29745 + - uid: 29544 components: - type: Transform pos: 4.5,91.5 parent: 2 - proto: SignToxins entities: - - uid: 29746 + - uid: 29545 components: - type: Transform pos: -26.5,-42.5 parent: 2 - proto: SignVirology entities: - - uid: 29747 + - uid: 29546 components: - type: Transform rot: 3.141592653589793 rad @@ -224531,194 +224609,194 @@ entities: parent: 2 - proto: SignXenobio2 entities: - - uid: 29748 + - uid: 29547 components: - type: Transform pos: -43.5,-29.5 parent: 2 - - uid: 29749 + - uid: 29548 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 29750 + - uid: 29549 components: - type: Transform pos: -43.5,-25.5 parent: 2 - proto: Sink entities: - - uid: 29751 + - uid: 29550 components: - type: Transform rot: -1.5707953085339508 rad pos: 79.50001,4.5 parent: 2 - - uid: 29752 + - uid: 29551 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 29753 + - uid: 29552 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,37.5 parent: 2 - - uid: 29754 + - uid: 29553 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 29755 + - uid: 29554 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 29756 + - uid: 29555 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 - - uid: 29757 + - uid: 29556 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-16.5 parent: 2 - - uid: 29758 + - uid: 29557 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,40.5 parent: 2 - - uid: 29759 + - uid: 29558 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-46.5 parent: 2 - - uid: 29760 + - uid: 29559 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-25.5 parent: 2 - - uid: 29761 + - uid: 29560 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 2 - - uid: 29762 + - uid: 29561 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 - - uid: 29763 + - uid: 29562 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 39687 + - uid: 39514 components: - type: Transform pos: 3.5,-7.5 - parent: 38584 + parent: 38411 - proto: SinkStemlessWater entities: - - uid: 29764 + - uid: 29563 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.139833,62.402996 parent: 2 - - uid: 29765 + - uid: 29564 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.118998,63.413414 parent: 2 - - uid: 29766 + - uid: 29565 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.119,64.319664 parent: 2 - - uid: 29767 + - uid: 29566 components: - type: Transform pos: 28.5,-28.5 parent: 2 - - uid: 39688 + - uid: 39515 components: - type: Transform pos: -8.5,10.5 - parent: 38584 - - uid: 39689 + parent: 38411 + - uid: 39516 components: - type: Transform pos: -6.5,10.5 - parent: 38584 - - uid: 39690 + parent: 38411 + - uid: 39517 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 39691 + parent: 38411 + - uid: 39518 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,27.5 - parent: 38584 + parent: 38411 - proto: SinkWide entities: - - uid: 29768 + - uid: 29567 components: - type: Transform rot: 1.5707973450558423 rad pos: 91.50001,6.5000005 parent: 2 - - uid: 29769 + - uid: 29568 components: - type: Transform pos: 30.5,-37.5 parent: 2 - - uid: 29770 + - uid: 29569 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 29771 + - uid: 29570 components: - type: Transform pos: 23.5,67.5 parent: 2 - - uid: 29772 + - uid: 29571 components: - type: Transform pos: -27.5,55.5 parent: 2 - - uid: 29773 + - uid: 29572 components: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 29774 + - uid: 29573 components: - type: Transform pos: -28.5,55.5 parent: 2 - - uid: 29775 + - uid: 29574 components: - type: Transform rot: 1.5707973450558423 rad pos: 91.5,-2.5 parent: 2 - - uid: 29776 + - uid: 29575 components: - type: Transform rot: 3.141592653589793 rad @@ -224726,135 +224804,135 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 29777 + - uid: 29576 components: - type: Transform pos: 9.5,-34.5 parent: 2 - - uid: 29778 + - uid: 29577 components: - type: Transform pos: 2.5,-48.5 parent: 2 - - uid: 29779 + - uid: 29578 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 29780 + - uid: 29579 components: - type: Transform pos: -29.5,44.5 parent: 2 - proto: SMESBasic entities: - - uid: 29781 + - uid: 29580 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 29782 + - uid: 29581 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 29783 + - uid: 29582 components: - type: MetaData name: солнечные панели СЗ 2 - type: Transform pos: -57.5,61.5 parent: 2 - - uid: 29784 + - uid: 29583 components: - type: MetaData name: инженерный 3 - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 29785 + - uid: 29584 components: - type: MetaData name: солнечные панели СЗ 1 - type: Transform pos: -59.5,60.5 parent: 2 - - uid: 29786 + - uid: 29585 components: - type: MetaData name: инженерный 2 - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 29787 + - uid: 29586 components: - type: MetaData name: служба безопасности - type: Transform pos: 73.5,-2.5 parent: 2 - - uid: 29788 + - uid: 29587 components: - type: MetaData name: РИТЭГ - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 29789 + - uid: 29588 components: - type: MetaData name: солнечные панели ЮЗ - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 29790 + - uid: 29589 components: - type: MetaData name: медицинский - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 29791 + - uid: 29590 components: - type: MetaData name: инженерный 4 - type: Transform pos: -44.5,2.5 parent: 2 - - uid: 29792 + - uid: 29591 components: - type: MetaData name: инженерный 1 - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 29793 + - uid: 29592 components: - type: MetaData name: УЧ - type: Transform pos: -80.5,-11.5 parent: 2 - - uid: 29794 + - uid: 29593 components: - type: Transform pos: -73.5,12.5 parent: 2 - - uid: 29795 + - uid: 29594 components: - type: MetaData name: солнечные панели СВ - type: Transform pos: 14.5,88.5 parent: 2 - - uid: 29796 + - uid: 29595 components: - type: MetaData name: солнечные панели ЮВ - type: Transform pos: 79.5,-44.5 parent: 2 - - uid: 29797 + - uid: 29596 components: - type: MetaData name: ИИ @@ -224864,36 +224942,36 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 8000000 autoRecharge: True - - uid: 29798 + - uid: 29597 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 39692 + - uid: 39519 components: - type: Transform pos: 8.5,5.5 - parent: 38584 - - uid: 39693 + parent: 38411 + - uid: 39520 components: - type: Transform pos: 9.5,5.5 - parent: 38584 + parent: 38411 - proto: SMESMachineCircuitboard entities: - - uid: 29799 + - uid: 29598 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 29800 + - uid: 29599 components: - type: Transform pos: -38.5,11.5 parent: 2 - proto: Soap entities: - - uid: 29801 + - uid: 29600 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224901,7 +224979,7 @@ entities: parent: 2 - proto: SoapHomemade entities: - - uid: 29802 + - uid: 29601 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224909,26 +224987,26 @@ entities: parent: 2 - proto: SoapNT entities: - - uid: 29803 + - uid: 29602 components: - type: Transform pos: 20.509054,-13.490537 parent: 2 - proto: SodaDispenser entities: - - uid: 29804 + - uid: 29603 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-4.5 parent: 2 - - uid: 29805 + - uid: 29604 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 29806 + - uid: 29605 components: - type: Transform rot: -1.5707963267948966 rad @@ -224952,26 +225030,26 @@ entities: showEnts: False occludes: True ents: [] - - uid: 29807 + - uid: 29606 components: - type: Transform pos: 65.5,30.5 parent: 2 - proto: SodiumLightTube entities: - - uid: 26981 + - uid: 26825 components: - type: Transform - parent: 26980 + parent: 26824 - type: LightBulb lightRadius: 8 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26983 + - uid: 26827 components: - type: Transform - parent: 26982 + parent: 26826 - type: LightBulb lightRadius: 4 lightEnergy: 2 @@ -224979,1281 +225057,1281 @@ entities: canCollide: False - proto: SolarPanel entities: - - uid: 29808 + - uid: 29607 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,82.5 parent: 2 - - uid: 29809 + - uid: 29608 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 29810 + - uid: 29609 components: - type: Transform pos: -57.5,-84.5 parent: 2 - - uid: 29811 + - uid: 29610 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 29812 + - uid: 29611 components: - type: Transform pos: -56.5,-84.5 parent: 2 - - uid: 29813 + - uid: 29612 components: - type: Transform pos: -47.5,-86.5 parent: 2 - - uid: 29814 + - uid: 29613 components: - type: Transform pos: -46.5,-86.5 parent: 2 - - uid: 29815 + - uid: 29614 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 29816 + - uid: 29615 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 29817 + - uid: 29616 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 29818 + - uid: 29617 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 29819 + - uid: 29618 components: - type: Transform pos: -56.5,-90.5 parent: 2 - - uid: 29820 + - uid: 29619 components: - type: Transform pos: 23.5,90.5 parent: 2 - - uid: 29821 + - uid: 29620 components: - type: Transform pos: -81.5,74.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29822 + - uid: 29621 components: - type: Transform pos: -79.5,74.5 parent: 2 - - uid: 29823 + - uid: 29622 components: - type: Transform pos: -73.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29824 + - uid: 29623 components: - type: Transform pos: -71.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29825 + - uid: 29624 components: - type: Transform pos: -71.5,74.5 parent: 2 - - uid: 29826 + - uid: 29625 components: - type: Transform pos: -72.5,74.5 parent: 2 - - uid: 29827 + - uid: 29626 components: - type: Transform pos: 24.5,98.5 parent: 2 - - uid: 29828 + - uid: 29627 components: - type: Transform pos: -69.5,70.5 parent: 2 - - uid: 29829 + - uid: 29628 components: - type: Transform pos: -80.5,76.5 parent: 2 - - uid: 29830 + - uid: 29629 components: - type: Transform pos: -81.5,78.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29831 + - uid: 29630 components: - type: Transform pos: -81.5,76.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29832 + - uid: 29631 components: - type: Transform pos: -77.5,78.5 parent: 2 - - uid: 29833 + - uid: 29632 components: - type: Transform pos: -72.5,78.5 parent: 2 - - uid: 29834 + - uid: 29633 components: - type: Transform pos: -70.5,78.5 parent: 2 - - uid: 29835 + - uid: 29634 components: - type: Transform pos: -72.5,76.5 parent: 2 - - uid: 29836 + - uid: 29635 components: - type: Transform pos: -73.5,78.5 parent: 2 - - uid: 29837 + - uid: 29636 components: - type: Transform pos: -69.5,78.5 parent: 2 - - uid: 29838 + - uid: 29637 components: - type: Transform pos: -78.5,74.5 parent: 2 - - uid: 29839 + - uid: 29638 components: - type: Transform pos: -79.5,76.5 parent: 2 - - uid: 29840 + - uid: 29639 components: - type: Transform pos: -70.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29841 + - uid: 29640 components: - type: Transform pos: -80.5,78.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29842 + - uid: 29641 components: - type: Transform pos: -68.5,72.5 parent: 2 - - uid: 29843 + - uid: 29642 components: - type: Transform pos: -69.5,72.5 parent: 2 - - uid: 29844 + - uid: 29643 components: - type: Transform pos: -72.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29845 + - uid: 29644 components: - type: Transform pos: -79.5,78.5 parent: 2 - - uid: 29846 + - uid: 29645 components: - type: Transform pos: -70.5,70.5 parent: 2 - - uid: 29847 + - uid: 29646 components: - type: Transform pos: -71.5,72.5 parent: 2 - - uid: 29848 + - uid: 29647 components: - type: Transform pos: -73.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29849 + - uid: 29648 components: - type: Transform pos: -78.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29850 + - uid: 29649 components: - type: Transform pos: -72.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29851 + - uid: 29650 components: - type: Transform pos: -77.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29852 + - uid: 29651 components: - type: Transform pos: -78.5,76.5 parent: 2 - - uid: 29853 + - uid: 29652 components: - type: Transform pos: 22.5,100.5 parent: 2 - - uid: 29854 + - uid: 29653 components: - type: Transform pos: -56.5,-82.5 parent: 2 - - uid: 29855 + - uid: 29654 components: - type: Transform pos: -57.5,-82.5 parent: 2 - - uid: 29856 + - uid: 29655 components: - type: Transform pos: -48.5,-80.5 parent: 2 - - uid: 29857 + - uid: 29656 components: - type: Transform pos: -49.5,-80.5 parent: 2 - - uid: 29858 + - uid: 29657 components: - type: Transform pos: 22.5,94.5 parent: 2 - - uid: 29859 + - uid: 29658 components: - type: Transform pos: 23.5,96.5 parent: 2 - - uid: 29860 + - uid: 29659 components: - type: Transform pos: 24.5,96.5 parent: 2 - - uid: 29861 + - uid: 29660 components: - type: Transform pos: -54.5,-80.5 parent: 2 - - uid: 29862 + - uid: 29661 components: - type: Transform pos: -55.5,-80.5 parent: 2 - - uid: 29863 + - uid: 29662 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 29864 + - uid: 29663 components: - type: Transform pos: -57.5,-80.5 parent: 2 - - uid: 29865 + - uid: 29664 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 29866 + - uid: 29665 components: - type: Transform pos: -55.5,-88.5 parent: 2 - - uid: 29867 + - uid: 29666 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-44.5 parent: 2 - - uid: 29868 + - uid: 29667 components: - type: Transform pos: 30.5,98.5 parent: 2 - - uid: 29869 + - uid: 29668 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 29870 + - uid: 29669 components: - type: Transform pos: 23.5,94.5 parent: 2 - - uid: 29871 + - uid: 29670 components: - type: Transform pos: 30.5,90.5 parent: 2 - - uid: 29872 + - uid: 29671 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 29873 + - uid: 29672 components: - type: Transform pos: 23.5,100.5 parent: 2 - - uid: 29874 + - uid: 29673 components: - type: Transform pos: 30.5,92.5 parent: 2 - - uid: 29875 + - uid: 29674 components: - type: Transform pos: -48.5,-90.5 parent: 2 - - uid: 29876 + - uid: 29675 components: - type: Transform pos: -47.5,-90.5 parent: 2 - - uid: 29877 + - uid: 29676 components: - type: Transform pos: -81.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29878 + - uid: 29677 components: - type: Transform pos: -80.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29879 + - uid: 29678 components: - type: Transform pos: -78.5,70.5 parent: 2 - - uid: 29880 + - uid: 29679 components: - type: Transform pos: -79.5,70.5 parent: 2 - - uid: 29881 + - uid: 29680 components: - type: Transform pos: -80.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29882 + - uid: 29681 components: - type: Transform pos: -71.5,76.5 parent: 2 - - uid: 29883 + - uid: 29682 components: - type: Transform pos: -77.5,76.5 parent: 2 - - uid: 29884 + - uid: 29683 components: - type: Transform pos: -45.5,-84.5 parent: 2 - - uid: 29885 + - uid: 29684 components: - type: Transform pos: -45.5,-88.5 parent: 2 - - uid: 29886 + - uid: 29685 components: - type: Transform pos: -55.5,-82.5 parent: 2 - - uid: 29887 + - uid: 29686 components: - type: Transform pos: -54.5,-84.5 parent: 2 - - uid: 29888 + - uid: 29687 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 29889 + - uid: 29688 components: - type: Transform pos: -47.5,-84.5 parent: 2 - - uid: 29890 + - uid: 29689 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 29891 + - uid: 29690 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 29892 + - uid: 29691 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 29893 + - uid: 29692 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 29894 + - uid: 29693 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 29895 + - uid: 29694 components: - type: Transform pos: -54.5,-82.5 parent: 2 - - uid: 29896 + - uid: 29695 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 29897 + - uid: 29696 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 29898 + - uid: 29697 components: - type: Transform pos: -44.5,-84.5 parent: 2 - - uid: 29899 + - uid: 29698 components: - type: Transform pos: -47.5,-82.5 parent: 2 - - uid: 29900 + - uid: 29699 components: - type: Transform pos: -81.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29901 + - uid: 29700 components: - type: Transform pos: -79.5,72.5 parent: 2 - - uid: 29902 + - uid: 29701 components: - type: Transform pos: -80.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1125 - - uid: 29903 + - uid: 29702 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,80.5 parent: 2 - - uid: 29904 + - uid: 29703 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 29905 + - uid: 29704 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,80.5 parent: 2 - - uid: 29906 + - uid: 29705 components: - type: Transform pos: -77.5,70.5 parent: 2 - - uid: 29907 + - uid: 29706 components: - type: Transform pos: 26.5,98.5 parent: 2 - - uid: 29908 + - uid: 29707 components: - type: Transform pos: -73.5,76.5 parent: 2 - - uid: 29909 + - uid: 29708 components: - type: Transform pos: -81.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29910 + - uid: 29709 components: - type: Transform pos: -56.5,-88.5 parent: 2 - - uid: 29911 + - uid: 29710 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,82.5 parent: 2 - - uid: 29912 + - uid: 29711 components: - type: Transform pos: 34.5,92.5 parent: 2 - - uid: 29913 + - uid: 29712 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,80.5 parent: 2 - - uid: 29914 + - uid: 29713 components: - type: Transform pos: -68.5,74.5 parent: 2 - - uid: 29915 + - uid: 29714 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,80.5 parent: 2 - - uid: 29916 + - uid: 29715 components: - type: Transform pos: 25.5,100.5 parent: 2 - - uid: 29917 + - uid: 29716 components: - type: Transform pos: 34.5,90.5 parent: 2 - - uid: 29918 + - uid: 29717 components: - type: Transform pos: -69.5,76.5 parent: 2 - - uid: 29919 + - uid: 29718 components: - type: Transform pos: -56.5,-80.5 parent: 2 - - uid: 29920 + - uid: 29719 components: - type: Transform pos: -57.5,-90.5 parent: 2 - - uid: 29921 + - uid: 29720 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,80.5 parent: 2 - - uid: 29922 + - uid: 29721 components: - type: Transform pos: -78.5,72.5 parent: 2 - - uid: 29923 + - uid: 29722 components: - type: Transform pos: -71.5,70.5 parent: 2 - - uid: 29924 + - uid: 29723 components: - type: Transform pos: -70.5,74.5 parent: 2 - - uid: 29925 + - uid: 29724 components: - type: Transform pos: 26.5,92.5 parent: 2 - - uid: 29926 + - uid: 29725 components: - type: Transform pos: 31.5,90.5 parent: 2 - - uid: 29927 + - uid: 29726 components: - type: Transform pos: 33.5,92.5 parent: 2 - - uid: 29928 + - uid: 29727 components: - type: Transform pos: 33.5,90.5 parent: 2 - - uid: 29929 + - uid: 29728 components: - type: Transform pos: -78.5,78.5 parent: 2 - - uid: 29930 + - uid: 29729 components: - type: Transform pos: -70.5,72.5 parent: 2 - - uid: 29931 + - uid: 29730 components: - type: Transform pos: -46.5,-82.5 parent: 2 - - uid: 29932 + - uid: 29731 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 29933 + - uid: 29732 components: - type: Transform pos: -82.5,74.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29934 + - uid: 29733 components: - type: Transform pos: -79.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29935 + - uid: 29734 components: - type: Transform pos: -45.5,-90.5 parent: 2 - - uid: 29936 + - uid: 29735 components: - type: Transform pos: 26.5,100.5 parent: 2 - - uid: 29937 + - uid: 29736 components: - type: Transform pos: 22.5,90.5 parent: 2 - - uid: 29938 + - uid: 29737 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 29939 + - uid: 29738 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 29940 + - uid: 29739 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 29941 + - uid: 29740 components: - type: Transform pos: 26.5,90.5 parent: 2 - - uid: 29942 + - uid: 29741 components: - type: Transform pos: 32.5,92.5 parent: 2 - - uid: 29943 + - uid: 29742 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-50.5 parent: 2 - - uid: 29944 + - uid: 29743 components: - type: Transform pos: 30.5,100.5 parent: 2 - - uid: 29945 + - uid: 29744 components: - type: Transform pos: 31.5,96.5 parent: 2 - - uid: 29946 + - uid: 29745 components: - type: Transform pos: 25.5,96.5 parent: 2 - - uid: 29947 + - uid: 29746 components: - type: Transform pos: 32.5,96.5 parent: 2 - - uid: 29948 + - uid: 29747 components: - type: Transform pos: -69.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29949 + - uid: 29748 components: - type: Transform pos: -80.5,74.5 parent: 2 - - uid: 29950 + - uid: 29749 components: - type: Transform pos: -58.5,-84.5 parent: 2 - - uid: 29951 + - uid: 29750 components: - type: Transform pos: 22.5,98.5 parent: 2 - - uid: 29952 + - uid: 29751 components: - type: Transform pos: 21.5,96.5 parent: 2 - - uid: 29953 + - uid: 29752 components: - type: Transform pos: 31.5,98.5 parent: 2 - - uid: 29954 + - uid: 29753 components: - type: Transform pos: 34.5,100.5 parent: 2 - - uid: 29955 + - uid: 29754 components: - type: Transform pos: 31.5,92.5 parent: 2 - - uid: 29956 + - uid: 29755 components: - type: Transform pos: 32.5,100.5 parent: 2 - - uid: 29957 + - uid: 29756 components: - type: Transform pos: 21.5,94.5 parent: 2 - - uid: 29958 + - uid: 29757 components: - type: Transform pos: 22.5,92.5 parent: 2 - - uid: 29959 + - uid: 29758 components: - type: Transform pos: 35.5,96.5 parent: 2 - - uid: 29960 + - uid: 29759 components: - type: Transform pos: 32.5,98.5 parent: 2 - - uid: 29961 + - uid: 29760 components: - type: Transform pos: 23.5,98.5 parent: 2 - - uid: 29962 + - uid: 29761 components: - type: Transform pos: 25.5,92.5 parent: 2 - - uid: 29963 + - uid: 29762 components: - type: Transform pos: -72.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29964 + - uid: 29763 components: - type: Transform pos: 34.5,96.5 parent: 2 - - uid: 29965 + - uid: 29764 components: - type: Transform pos: 34.5,98.5 parent: 2 - - uid: 29966 + - uid: 29765 components: - type: Transform pos: 34.5,94.5 parent: 2 - - uid: 29967 + - uid: 29766 components: - type: Transform pos: 24.5,92.5 parent: 2 - - uid: 29968 + - uid: 29767 components: - type: Transform pos: -45.5,-86.5 parent: 2 - - uid: 29969 + - uid: 29768 components: - type: Transform pos: -82.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29970 + - uid: 29769 components: - type: Transform pos: -47.5,-88.5 parent: 2 - - uid: 29971 + - uid: 29770 components: - type: Transform pos: 33.5,100.5 parent: 2 - - uid: 29972 + - uid: 29771 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 29973 + - uid: 29772 components: - type: Transform pos: -57.5,-88.5 parent: 2 - - uid: 29974 + - uid: 29773 components: - type: Transform pos: 33.5,94.5 parent: 2 - - uid: 29975 + - uid: 29774 components: - type: Transform pos: 31.5,94.5 parent: 2 - - uid: 29976 + - uid: 29775 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 29977 + - uid: 29776 components: - type: Transform pos: 25.5,98.5 parent: 2 - - uid: 29978 + - uid: 29777 components: - type: Transform pos: -55.5,-90.5 parent: 2 - - uid: 29979 + - uid: 29778 components: - type: Transform pos: -71.5,78.5 parent: 2 - - uid: 29980 + - uid: 29779 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 29981 + - uid: 29780 components: - type: Transform pos: -46.5,-90.5 parent: 2 - - uid: 29982 + - uid: 29781 components: - type: Transform pos: -69.5,74.5 parent: 2 - - uid: 29983 + - uid: 29782 components: - type: Transform pos: -70.5,76.5 parent: 2 - - uid: 29984 + - uid: 29783 components: - type: Transform pos: 25.5,90.5 parent: 2 - - uid: 29985 + - uid: 29784 components: - type: Transform pos: 23.5,92.5 parent: 2 - - uid: 29986 + - uid: 29785 components: - type: Transform pos: -54.5,-88.5 parent: 2 - - uid: 29987 + - uid: 29786 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,82.5 parent: 2 - - uid: 29988 + - uid: 29787 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,82.5 parent: 2 - - uid: 29989 + - uid: 29788 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,82.5 parent: 2 - - uid: 29990 + - uid: 29789 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,80.5 parent: 2 - - uid: 29991 + - uid: 29790 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,80.5 parent: 2 - - uid: 29992 + - uid: 29791 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,80.5 parent: 2 - - uid: 29993 + - uid: 29792 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,80.5 parent: 2 - - uid: 29994 + - uid: 29793 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,80.5 parent: 2 - - uid: 29995 + - uid: 29794 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,82.5 parent: 2 - - uid: 29996 + - uid: 29795 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,82.5 parent: 2 - - uid: 29997 + - uid: 29796 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,82.5 parent: 2 - - uid: 29998 + - uid: 29797 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,82.5 parent: 2 - - uid: 29999 + - uid: 29798 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,82.5 parent: 2 - - uid: 30000 + - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-38.5 parent: 2 - - uid: 30001 + - uid: 29800 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-37.5 parent: 2 - - uid: 30002 + - uid: 29801 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-38.5 parent: 2 - - uid: 30003 + - uid: 29802 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-44.5 parent: 2 - - uid: 30004 + - uid: 29803 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-44.5 parent: 2 - - uid: 30005 + - uid: 29804 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-37.5 parent: 2 - - uid: 30006 + - uid: 29805 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-42.5 parent: 2 - - uid: 30007 + - uid: 29806 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-42.5 parent: 2 - - uid: 30008 + - uid: 29807 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-51.5 parent: 2 - - uid: 30009 + - uid: 29808 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-38.5 parent: 2 - - uid: 30010 + - uid: 29809 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-49.5 parent: 2 - - uid: 30011 + - uid: 29810 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-48.5 parent: 2 - - uid: 30012 + - uid: 29811 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-49.5 parent: 2 - - uid: 30013 + - uid: 29812 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-46.5 parent: 2 - - uid: 30014 + - uid: 29813 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-46.5 parent: 2 - - uid: 30015 + - uid: 29814 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-46.5 parent: 2 - - uid: 30016 + - uid: 29815 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-44.5 parent: 2 - - uid: 30017 + - uid: 29816 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-46.5 parent: 2 - - uid: 30018 + - uid: 29817 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-46.5 parent: 2 - - uid: 30019 + - uid: 29818 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-51.5 parent: 2 - - uid: 30020 + - uid: 29819 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-48.5 parent: 2 - - uid: 30021 + - uid: 29820 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-49.5 parent: 2 - - uid: 30022 + - uid: 29821 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-52.5 parent: 2 - - uid: 30023 + - uid: 29822 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-42.5 parent: 2 - - uid: 30024 + - uid: 29823 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-36.5 parent: 2 - - uid: 30025 + - uid: 29824 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-52.5 parent: 2 - - uid: 30026 + - uid: 29825 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-39.5 parent: 2 - - uid: 30027 + - uid: 29826 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-40.5 parent: 2 - - uid: 30028 + - uid: 29827 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-42.5 parent: 2 - - uid: 30029 + - uid: 29828 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-42.5 parent: 2 - - uid: 30030 + - uid: 29829 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-39.5 parent: 2 - - uid: 30031 + - uid: 29830 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-36.5 parent: 2 - - uid: 30032 + - uid: 29831 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-48.5 parent: 2 - - uid: 30033 + - uid: 29832 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-37.5 parent: 2 - - uid: 30034 + - uid: 29833 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-40.5 parent: 2 - - uid: 30035 + - uid: 29834 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-50.5 parent: 2 - - uid: 30036 + - uid: 29835 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-40.5 parent: 2 - - uid: 30037 + - uid: 29836 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-52.5 parent: 2 - - uid: 30038 + - uid: 29837 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-39.5 parent: 2 - - uid: 30039 + - uid: 29838 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-51.5 parent: 2 - - uid: 30040 + - uid: 29839 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-50.5 parent: 2 - - uid: 30041 + - uid: 29840 components: - type: Transform rot: 1.5707963267948966 rad @@ -226261,59 +226339,59 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 30042 + - uid: 29841 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-8.5 parent: 2 - - uid: 30043 + - uid: 29842 components: - type: Transform pos: 35.5,94.5 parent: 2 - - uid: 30044 + - uid: 29843 components: - type: Transform pos: 31.5,100.5 parent: 2 - - uid: 30045 + - uid: 29844 components: - type: Transform pos: 24.5,90.5 parent: 2 - - uid: 30046 + - uid: 29845 components: - type: Transform pos: 33.5,96.5 parent: 2 - - uid: 30047 + - uid: 29846 components: - type: Transform pos: 24.5,94.5 parent: 2 - - uid: 30048 + - uid: 29847 components: - type: Transform pos: 25.5,94.5 parent: 2 - - uid: 30049 + - uid: 29848 components: - type: Transform pos: 22.5,96.5 parent: 2 - - uid: 30050 + - uid: 29849 components: - type: Transform pos: 24.5,100.5 parent: 2 - - uid: 30051 + - uid: 29850 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-38.5 parent: 2 - - uid: 30052 + - uid: 29851 components: - type: Transform rot: -1.5707963267948966 rad @@ -226321,157 +226399,157 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 30053 + - uid: 29852 components: - type: Transform pos: -51.5,-93.5 parent: 2 - - uid: 30054 + - uid: 29853 components: - type: Transform pos: 28.5,103.5 parent: 2 - - uid: 30055 + - uid: 29854 components: - type: Transform pos: 88.5,-44.5 parent: 2 - - uid: 30056 + - uid: 29855 components: - type: Transform pos: -75.5,84.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 30057 + - uid: 29856 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-2.5 parent: 2 - - uid: 30058 + - uid: 29857 components: - type: Transform pos: 42.5,-3.5 parent: 2 - - uid: 30059 + - uid: 29858 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-60.5 parent: 2 - - uid: 30060 + - uid: 29859 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-69.5 parent: 2 - - uid: 30061 + - uid: 29860 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 - - uid: 30062 + - uid: 29861 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-3.5 parent: 2 - - uid: 30063 + - uid: 29862 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-77.5 parent: 2 - - uid: 30064 + - uid: 29863 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-81.5 parent: 2 - - uid: 30065 + - uid: 29864 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 30066 + - uid: 29865 components: - type: Transform pos: -112.5,30.5 parent: 2 - - uid: 30067 + - uid: 29866 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,45.5 parent: 2 - - uid: 30068 + - uid: 29867 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 - - uid: 30069 + - uid: 29868 components: - type: Transform pos: 10.5,71.5 parent: 2 - proto: SpaceCash entities: - - uid: 30070 + - uid: 29869 components: - type: Transform pos: 59.386833,-30.475864 parent: 2 - - uid: 30071 + - uid: 29870 components: - type: Transform pos: 59.65246,-30.288364 parent: 2 - proto: SpaceCash10 entities: - - uid: 30072 + - uid: 29871 components: - type: Transform pos: -39.591003,-10.269159 parent: 2 - - uid: 30073 + - uid: 29872 components: - type: Transform pos: -39.856525,-9.26621 parent: 2 - - uid: 30074 + - uid: 29873 components: - type: Transform pos: -39.60576,-9.384204 parent: 2 - proto: SpaceCash500 entities: - - uid: 14519 + - uid: 14461 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15620 + - uid: 15603 components: - type: Transform - parent: 15618 + parent: 15601 - type: Physics canCollide: False - type: InsideEntityStorage - proto: SpaceHeaterAnchored entities: - - uid: 30075 + - uid: 29874 components: - type: Transform pos: -67.5,60.5 parent: 2 - proto: SpaceHeaterEnabled entities: - - uid: 30076 + - uid: 29875 components: - type: Transform pos: -69.5,54.5 @@ -226484,89 +226562,89 @@ entities: heatCapacity: 3500 - proto: Spaceshroom entities: - - uid: 30077 + - uid: 29876 components: - type: Transform pos: -26.5,-73.5 parent: 2 - - uid: 30078 + - uid: 29877 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 30079 + - uid: 29878 components: - type: Transform pos: -27.5,-69.5 parent: 2 - - uid: 30080 + - uid: 29879 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 30081 + - uid: 29880 components: - type: Transform pos: -15.5,-62.5 parent: 2 - - uid: 30082 + - uid: 29881 components: - type: Transform pos: -17.5,-62.5 parent: 2 - - uid: 30083 + - uid: 29882 components: - type: Transform pos: -26.5,-56.5 parent: 2 - - uid: 30084 + - uid: 29883 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 30085 + - uid: 29884 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 30086 + - uid: 29885 components: - type: Transform pos: -50.5,-25.5 parent: 2 - - uid: 30087 + - uid: 29886 components: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 30088 + - uid: 29887 components: - type: Transform pos: -52.5,-24.5 parent: 2 - - uid: 30089 + - uid: 29888 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 30090 + - uid: 29889 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 30091 + - uid: 29890 components: - type: Transform pos: -36.5,-21.5 parent: 2 - - uid: 30092 + - uid: 29891 components: - type: Transform pos: -34.5,-17.5 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 30093 + - uid: 29892 components: - type: Transform rot: 1.5707963267948966 rad @@ -226574,279 +226652,279 @@ entities: parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 30094 + - uid: 29893 components: - type: Transform pos: 13.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30095 + - uid: 29894 components: - type: Transform pos: 14.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30096 + - uid: 29895 components: - type: Transform pos: 15.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30097 + - uid: 29896 components: - type: Transform pos: 81.5,-51.5 parent: 2 - proto: SpawnMobAlexander entities: - - uid: 30098 + - uid: 29897 components: - type: Transform pos: -33.5,41.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 30099 + - uid: 29898 components: - type: Transform pos: -33.5,46.5 parent: 2 - proto: SpawnMobBear entities: - - uid: 30100 + - uid: 29899 components: - type: Transform pos: -44.5,-63.5 parent: 2 - - uid: 39694 + - uid: 39521 components: - type: Transform pos: -19.5,17.5 - parent: 38584 + parent: 38411 - proto: SpawnMobButterfly entities: - - uid: 30101 + - uid: 29900 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 30102 + - uid: 29901 components: - type: Transform pos: 1.5,-1.5 parent: 2 - proto: SpawnMobCarp entities: - - uid: 39695 + - uid: 39522 components: - type: Transform pos: 5.5,9.5 - parent: 38584 - - uid: 39696 + parent: 38411 + - uid: 39523 components: - type: Transform pos: -23.5,21.5 - parent: 38584 - - uid: 39697 + parent: 38411 + - uid: 39524 components: - type: Transform pos: -27.5,30.5 - parent: 38584 - - uid: 39698 + parent: 38411 + - uid: 39525 components: - type: Transform pos: -22.5,38.5 - parent: 38584 - - uid: 39699 + parent: 38411 + - uid: 39526 components: - type: Transform pos: 11.5,19.5 - parent: 38584 - - uid: 39700 + parent: 38411 + - uid: 39527 components: - type: Transform pos: 3.5,23.5 - parent: 38584 - - uid: 39701 + parent: 38411 + - uid: 39528 components: - type: Transform pos: -16.5,12.5 - parent: 38584 + parent: 38411 - proto: SpawnMobCatBingus entities: - - uid: 30103 + - uid: 29902 components: - type: Transform pos: 1.5,50.5 parent: 2 - - uid: 30104 + - uid: 29903 components: - type: Transform pos: 20.5,-45.5 parent: 2 - proto: SpawnMobCatKitten entities: - - uid: 30105 + - uid: 29904 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 30106 + - uid: 29905 components: - type: Transform pos: 0.5,-15.5 parent: 2 - proto: SpawnMobCatSpace entities: - - uid: 30107 + - uid: 29906 components: - type: Transform pos: -11.5,19.5 parent: 2 - proto: SpawnMobCockroach entities: - - uid: 30108 + - uid: 29907 components: - type: Transform pos: 73.5,-4.5 parent: 2 - - uid: 30109 + - uid: 29908 components: - type: Transform pos: 69.5,19.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 30110 + - uid: 29909 components: - type: Transform pos: -13.5,0.5 parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 30111 + - uid: 29910 components: - type: Transform pos: -52.5,33.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 30112 + - uid: 29911 components: - type: Transform pos: 11.5,5.5 parent: 2 - proto: SpawnMobGorillaLargo entities: - - uid: 30113 + - uid: 29912 components: - type: Transform pos: 27.5,41.5 parent: 2 - - uid: 30122 + - uid: 29913 components: - type: Transform pos: -26.5,52.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 30114 + - uid: 29914 components: - type: Transform pos: 52.5,9.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 30115 + - uid: 29915 components: - type: Transform pos: -7.5,42.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 30116 + - uid: 29916 components: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 30117 + - uid: 29917 components: - type: Transform pos: -28.5,58.5 parent: 2 - - uid: 30118 + - uid: 29918 components: - type: Transform pos: -60.5,-20.5 parent: 2 - - uid: 30119 + - uid: 29919 components: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 30120 + - uid: 29920 components: - type: Transform pos: 15.5,72.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 30121 + - uid: 29921 components: - type: Transform pos: -37.5,50.5 parent: 2 - proto: SpawnMobShiva entities: - - uid: 30123 + - uid: 29922 components: - type: Transform pos: 40.5,22.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 30124 + - uid: 29923 components: - type: Transform pos: -21.5,-5.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 30125 + - uid: 29924 components: - type: Transform pos: -20.5,-39.5 parent: 2 - proto: SpawnMobSpaceSpider entities: - - uid: 30126 + - uid: 29925 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-34.5 parent: 2 - - uid: 30127 + - uid: 29926 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-37.5 parent: 2 - - uid: 41046 + - uid: 29927 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 - - uid: 41047 + - uid: 29928 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 41048 + - uid: 29929 components: - type: Transform rot: -1.5707963267948966 rad @@ -226854,1258 +226932,1258 @@ entities: parent: 2 - proto: SpawnMobWalter entities: - - uid: 30128 + - uid: 29930 components: - type: Transform pos: 7.5,-29.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 30129 + - uid: 29931 components: - type: Transform pos: -53.5,33.5 parent: 2 - - uid: 30130 + - uid: 29932 components: - type: Transform pos: -53.5,34.5 parent: 2 - - uid: 30131 + - uid: 29933 components: - type: Transform pos: -53.5,32.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 30132 + - uid: 29934 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 30133 + - uid: 29935 components: - type: Transform pos: -7.5,41.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 30134 + - uid: 29936 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 30135 + - uid: 29937 components: - type: Transform pos: -7.5,-38.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 30136 + - uid: 29938 components: - type: Transform pos: -24.5,50.5 parent: 2 - - uid: 30137 + - uid: 29939 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 30138 + - uid: 29940 components: - type: Transform pos: -32.5,51.5 parent: 2 - - uid: 30139 + - uid: 29941 components: - type: Transform pos: -37.5,48.5 parent: 2 - proto: SpawnPointBoxer entities: - - uid: 30140 + - uid: 29942 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 30141 + - uid: 29943 components: - type: Transform pos: 59.5,-20.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 30142 + - uid: 29944 components: - type: Transform pos: 8.5,6.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 30143 + - uid: 29945 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 30144 + - uid: 29946 components: - type: Transform pos: 15.5,26.5 parent: 2 - - uid: 30145 + - uid: 29947 components: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 30146 + - uid: 29948 components: - type: Transform pos: 19.5,38.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 30147 + - uid: 29949 components: - type: Transform pos: -16.5,-74.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 30148 + - uid: 29950 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 30149 + - uid: 29951 components: - type: Transform pos: -30.5,35.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 30150 + - uid: 29952 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 30151 + - uid: 29953 components: - type: Transform pos: 5.5,-29.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 30152 + - uid: 29954 components: - type: Transform pos: -63.5,8.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 30153 + - uid: 29955 components: - type: Transform pos: 23.5,-47.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 30154 + - uid: 29956 components: - type: Transform pos: -12.5,52.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 30155 + - uid: 29957 components: - type: Transform pos: 32.5,9.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 30156 + - uid: 29958 components: - type: Transform pos: -13.5,4.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 30157 + - uid: 29959 components: - type: Transform pos: 40.5,20.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 30158 + - uid: 29960 components: - type: Transform pos: 1.5,52.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 30159 + - uid: 29961 components: - type: Transform pos: -27.5,89.5 parent: 2 - - uid: 30160 + - uid: 29962 components: - type: Transform pos: -27.5,91.5 parent: 2 - - uid: 30161 + - uid: 29963 components: - type: Transform pos: -31.5,91.5 parent: 2 - - uid: 30162 + - uid: 29964 components: - type: Transform pos: -31.5,89.5 parent: 2 - - uid: 30163 + - uid: 29965 components: - type: Transform pos: -9.5,89.5 parent: 2 - - uid: 30164 + - uid: 29966 components: - type: Transform pos: -13.5,91.5 parent: 2 - - uid: 30165 + - uid: 29967 components: - type: Transform pos: -13.5,89.5 parent: 2 - - uid: 30166 + - uid: 29968 components: - type: Transform pos: -9.5,91.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 30167 + - uid: 29969 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 30168 + - uid: 29970 components: - type: Transform pos: 33.5,-0.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 30169 + - uid: 29971 components: - type: Transform pos: -21.5,-10.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 30170 + - uid: 29972 components: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 30171 + - uid: 29973 components: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 30172 + - uid: 29974 components: - type: Transform pos: 5.5,-49.5 parent: 2 - - uid: 30173 + - uid: 29975 components: - type: Transform pos: 22.5,-39.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 30174 + - uid: 29976 components: - type: Transform pos: 22.5,-26.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 30175 + - uid: 29977 components: - type: Transform pos: -1.5,44.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 30176 + - uid: 29978 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 30177 + - uid: 29979 components: - type: Transform pos: -2.5,54.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 30178 + - uid: 29980 components: - type: Transform pos: -0.5,23.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 30179 + - uid: 29981 components: - type: Transform pos: 13.5,-43.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 30180 + - uid: 29982 components: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 30181 + - uid: 29983 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 30182 + - uid: 29984 components: - type: Transform pos: -23.5,10.5 parent: 2 - - uid: 30183 + - uid: 29985 components: - type: Transform pos: -26.5,10.5 parent: 2 - - uid: 30184 + - uid: 29986 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 30185 + - uid: 29987 components: - type: Transform pos: -23.5,13.5 parent: 2 - - uid: 30186 + - uid: 29988 components: - type: Transform pos: -23.5,59.5 parent: 2 - proto: SpawnPointPilot entities: - - uid: 30187 + - uid: 29989 components: - type: Transform pos: 98.5,12.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 30188 + - uid: 29990 components: - type: Transform pos: 15.5,-50.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 30189 + - uid: 29991 components: - type: Transform pos: 28.5,36.5 parent: 2 - proto: SpawnPointReporter entities: - - uid: 30190 + - uid: 29992 components: - type: Transform pos: -23.5,22.5 parent: 2 - - uid: 30191 + - uid: 29993 components: - type: Transform pos: -26.5,20.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 30192 + - uid: 29994 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - uid: 30193 + - uid: 29995 components: - type: Transform pos: -17.5,-57.5 parent: 2 - - uid: 30194 + - uid: 29996 components: - type: Transform pos: -24.5,-51.5 parent: 2 - - uid: 30195 + - uid: 29997 components: - type: Transform pos: -23.5,-23.5 parent: 2 - - uid: 30196 + - uid: 29998 components: - type: Transform pos: -9.5,-46.5 parent: 2 - - uid: 30197 + - uid: 29999 components: - type: Transform pos: -29.5,-46.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 30198 + - uid: 30000 components: - type: Transform pos: -16.5,-46.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 30199 + - uid: 30001 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 30200 + - uid: 30002 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 30201 + - uid: 30003 components: - type: Transform pos: 22.5,31.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 30202 + - uid: 30004 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 30203 + - uid: 30005 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 30204 + - uid: 30006 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 30205 + - uid: 30007 components: - type: Transform pos: -4.5,-30.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 30206 + - uid: 30008 components: - type: Transform pos: 69.5,24.5 parent: 2 - - uid: 30207 + - uid: 30009 components: - type: Transform pos: 64.5,24.5 parent: 2 - - uid: 30208 + - uid: 30010 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 30209 + - uid: 30011 components: - type: Transform pos: 46.5,20.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 30210 + - uid: 30012 components: - type: Transform pos: 67.5,24.5 parent: 2 - - uid: 30211 + - uid: 30013 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 30212 + - uid: 30014 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 30213 + - uid: 30015 components: - type: Transform pos: 46.5,21.5 parent: 2 - - uid: 30214 + - uid: 30016 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 30215 + - uid: 30017 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 30216 + - uid: 30018 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 30217 + - uid: 30019 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 30218 + - uid: 30020 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 30219 + - uid: 30021 components: - type: Transform pos: 2.5,62.5 parent: 2 - - uid: 30220 + - uid: 30022 components: - type: Transform pos: 57.5,15.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 30221 + - uid: 30023 components: - type: Transform pos: -30.5,41.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 30222 + - uid: 30024 components: - type: Transform pos: -46.5,-13.5 parent: 2 - - uid: 30223 + - uid: 30025 components: - type: Transform pos: -48.5,-13.5 parent: 2 - - uid: 30224 + - uid: 30026 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 30225 + - uid: 30027 components: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 30226 + - uid: 30028 components: - type: Transform pos: -78.5,-0.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 30227 + - uid: 30029 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 30228 + - uid: 30030 components: - type: Transform pos: -71.5,14.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 30229 + - uid: 30031 components: - type: Transform pos: 50.5,8.5 parent: 2 - proto: SpawnPointZookeeper entities: - - uid: 30230 + - uid: 30032 components: - type: Transform pos: 3.5,-15.5 parent: 2 - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 30231 + - uid: 30033 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30232 + - uid: 30034 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30233 + - uid: 30035 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30234 + - uid: 30036 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30235 + - uid: 30037 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30236 + - uid: 30038 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30237 + - uid: 30039 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30238 + - uid: 30040 components: - type: Transform pos: 24.5,40.5 parent: 2 - proto: SpeedLoaderMagnum entities: - - uid: 30239 + - uid: 30041 components: - type: Transform pos: 36.701893,18.372128 parent: 2 - proto: SpiderWeb entities: - - uid: 30240 + - uid: 30042 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-33.5 parent: 2 - - uid: 30241 + - uid: 30043 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-33.5 parent: 2 - - uid: 30242 + - uid: 30044 components: - type: Transform pos: -71.5,-34.5 parent: 2 - - uid: 30243 + - uid: 30045 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-37.5 parent: 2 - - uid: 30244 + - uid: 30046 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-37.5 parent: 2 - - uid: 30245 + - uid: 30047 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-37.5 parent: 2 - - uid: 30246 + - uid: 30048 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-37.5 parent: 2 - - uid: 30247 + - uid: 30049 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 - - uid: 30248 + - uid: 30050 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-34.5 parent: 2 - - uid: 30249 + - uid: 30051 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-35.5 parent: 2 - - uid: 30250 + - uid: 30052 components: - type: Transform pos: -70.5,-36.5 parent: 2 - - uid: 30251 + - uid: 30053 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-36.5 parent: 2 - - uid: 30252 + - uid: 30054 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-36.5 parent: 2 - - uid: 30253 + - uid: 30055 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 - - uid: 30254 + - uid: 30056 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 - - uid: 30255 + - uid: 30057 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-36.5 parent: 2 - - uid: 30256 + - uid: 30058 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 - - uid: 30257 + - uid: 30059 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 - - uid: 30258 + - uid: 30060 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 - - uid: 30259 + - uid: 30061 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 - - uid: 30260 + - uid: 30062 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-36.5 parent: 2 - - uid: 30261 + - uid: 30063 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 30262 + - uid: 30064 components: - type: Transform pos: -40.5,-17.5 parent: 2 - - uid: 30263 + - uid: 30065 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 2 - - uid: 30264 + - uid: 30066 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - uid: 30265 + - uid: 30067 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 30266 + - uid: 30068 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-35.5 parent: 2 - - uid: 30267 + - uid: 30069 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-36.5 parent: 2 - - uid: 30268 + - uid: 30070 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-35.5 parent: 2 - - uid: 30269 + - uid: 30071 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 30270 + - uid: 30072 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-33.5 parent: 2 - - uid: 30271 + - uid: 30073 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 30272 + - uid: 30074 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-37.5 parent: 2 - - uid: 30273 + - uid: 30075 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-37.5 parent: 2 - - uid: 30274 + - uid: 30076 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-35.5 parent: 2 - - uid: 30275 + - uid: 30077 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-37.5 parent: 2 - - uid: 30276 + - uid: 30078 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-36.5 parent: 2 - - uid: 30277 + - uid: 30079 components: - type: Transform pos: -61.5,-37.5 parent: 2 - - uid: 30278 + - uid: 30080 components: - type: Transform pos: -61.5,-36.5 parent: 2 - - uid: 30279 + - uid: 30081 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-33.5 parent: 2 - - uid: 30280 + - uid: 30082 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-33.5 parent: 2 - - uid: 30281 + - uid: 30083 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-33.5 parent: 2 - - uid: 30282 + - uid: 30084 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - - uid: 30283 + - uid: 30085 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-37.5 parent: 2 - - uid: 30284 + - uid: 30086 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-37.5 parent: 2 - - uid: 30285 + - uid: 30087 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-33.5 parent: 2 - - uid: 30286 + - uid: 30088 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-33.5 parent: 2 - - uid: 30287 + - uid: 30089 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-37.5 parent: 2 - - uid: 30288 + - uid: 30090 components: - type: Transform pos: -62.5,-37.5 parent: 2 - - uid: 40938 + - uid: 30091 components: - type: Transform pos: -71.5,-32.5 parent: 2 - - uid: 40939 + - uid: 30092 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-30.5 parent: 2 - - uid: 40940 + - uid: 30093 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-29.5 parent: 2 - - uid: 40941 + - uid: 30094 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-29.5 parent: 2 - - uid: 40942 + - uid: 30095 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-31.5 parent: 2 - - uid: 40943 + - uid: 30096 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-30.5 parent: 2 - - uid: 40944 + - uid: 30097 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-31.5 parent: 2 - - uid: 40945 + - uid: 30098 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-31.5 parent: 2 - - uid: 40946 + - uid: 30099 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-31.5 parent: 2 - - uid: 40947 + - uid: 30100 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-30.5 parent: 2 - - uid: 40948 + - uid: 30101 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-32.5 parent: 2 - - uid: 40949 + - uid: 30102 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-31.5 parent: 2 - - uid: 40950 + - uid: 30103 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-31.5 parent: 2 - - uid: 40951 + - uid: 30104 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-30.5 parent: 2 - - uid: 40952 + - uid: 30105 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-30.5 parent: 2 - - uid: 40953 + - uid: 30106 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-30.5 parent: 2 - - uid: 40954 + - uid: 30107 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-29.5 parent: 2 - - uid: 40955 + - uid: 30108 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-22.5 parent: 2 - - uid: 40956 + - uid: 30109 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-23.5 parent: 2 - - uid: 40957 + - uid: 30110 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-24.5 parent: 2 - - uid: 40958 + - uid: 30111 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-22.5 parent: 2 - - uid: 40959 + - uid: 30112 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-23.5 parent: 2 - - uid: 40960 + - uid: 30113 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-24.5 parent: 2 - - uid: 40961 + - uid: 30114 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 40962 + - uid: 30115 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-26.5 parent: 2 - - uid: 40963 + - uid: 30116 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-27.5 parent: 2 - - uid: 40964 + - uid: 30117 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-30.5 parent: 2 - - uid: 40965 + - uid: 30118 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-29.5 parent: 2 - - uid: 40966 + - uid: 30119 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 40967 + - uid: 30120 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-28.5 parent: 2 - - uid: 40968 + - uid: 30121 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-28.5 parent: 2 - - uid: 40969 + - uid: 30122 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-28.5 parent: 2 - - uid: 40970 + - uid: 30123 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 - - uid: 40971 + - uid: 30124 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-26.5 parent: 2 - - uid: 40972 + - uid: 30125 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-27.5 parent: 2 - - uid: 40973 + - uid: 30126 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-25.5 parent: 2 - - uid: 40974 + - uid: 30127 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-24.5 parent: 2 - - uid: 40975 + - uid: 30128 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 - - uid: 40976 + - uid: 30129 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 - - uid: 40977 + - uid: 30130 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-23.5 parent: 2 - - uid: 40978 + - uid: 30131 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 - - uid: 40979 + - uid: 30132 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-23.5 parent: 2 - - uid: 40980 + - uid: 30133 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-24.5 parent: 2 - - uid: 40981 + - uid: 30134 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-23.5 parent: 2 - - uid: 40982 + - uid: 30135 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-31.5 parent: 2 - - uid: 41016 + - uid: 30136 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-25.5 parent: 2 - - uid: 41017 + - uid: 30137 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-26.5 parent: 2 - - uid: 41018 + - uid: 30138 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-27.5 parent: 2 - - uid: 41019 + - uid: 30139 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-26.5 parent: 2 - - uid: 41020 + - uid: 30140 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-26.5 parent: 2 - - uid: 41021 + - uid: 30141 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-25.5 parent: 2 - - uid: 41022 + - uid: 30142 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-24.5 parent: 2 - - uid: 41023 + - uid: 30143 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-25.5 parent: 2 - - uid: 41024 + - uid: 30144 components: - type: Transform rot: 3.141592653589793 rad @@ -228113,38 +228191,38 @@ entities: parent: 2 - proto: Spoon entities: - - uid: 30289 + - uid: 30145 components: - type: Transform rot: -1.5707953085339508 rad pos: -74.282104,-34.276745 parent: 2 - - uid: 30290 + - uid: 30146 components: - type: Transform pos: -31.475065,36.564438 parent: 2 - proto: SpoonPlastic entities: - - uid: 30291 + - uid: 30147 components: - type: Transform rot: 3.141592653589793 rad pos: 64.98825,27.640116 parent: 2 - - uid: 30292 + - uid: 30148 components: - type: Transform rot: 3.141592653589793 rad pos: 64.86325,27.640116 parent: 2 - - uid: 30293 + - uid: 30149 components: - type: Transform rot: 3.141592653589793 rad pos: 65.082,27.640116 parent: 2 - - uid: 30294 + - uid: 30150 components: - type: Transform rot: 3.141592653589793 rad @@ -228152,71 +228230,71 @@ entities: parent: 2 - proto: SprayBottle entities: - - uid: 30295 + - uid: 30151 components: - type: Transform pos: 26.487522,-68.49196 parent: 2 - type: Physics canCollide: False - - uid: 30296 + - uid: 30152 components: - type: Transform pos: 28.736155,-26.569202 parent: 2 - proto: SprayBottleSpaceCleaner entities: - - uid: 30297 + - uid: 30153 components: - type: Transform pos: 93.58091,7.554364 parent: 2 - - uid: 30298 + - uid: 30154 components: - type: Transform pos: -39.305145,-61.47805 parent: 2 - - uid: 30299 + - uid: 30155 components: - type: Transform pos: 3.2526941,-48.487885 parent: 2 - - uid: 30300 + - uid: 30156 components: - type: Transform pos: 34.471386,-30.622177 parent: 2 - type: Physics canCollide: False - - uid: 30301 + - uid: 30157 components: - type: Transform pos: 3.4554992,-45.05886 parent: 2 - - uid: 30302 + - uid: 30158 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.36849,7.433058 parent: 2 - - uid: 39702 + - uid: 39529 components: - type: Transform pos: -11.299875,13.5789795 - parent: 38584 - - uid: 39703 + parent: 38411 + - uid: 39530 components: - type: Transform pos: -11.72175,13.2977295 - parent: 38584 + parent: 38411 - proto: SprayPainter entities: - - uid: 30303 + - uid: 30159 components: - type: Transform pos: -28.478903,10.493882 parent: 2 - - uid: 30304 + - uid: 30160 components: - type: Transform pos: -54.48809,-5.204091 @@ -228225,140 +228303,140 @@ entities: canCollide: False - proto: Stairs entities: - - uid: 30305 + - uid: 30161 components: - type: Transform pos: -52.5,16.5 parent: 2 - - uid: 30306 + - uid: 30162 components: - type: Transform pos: -51.5,16.5 parent: 2 - - uid: 30307 + - uid: 30163 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 30308 + - uid: 30164 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,0.5 parent: 2 - - uid: 30309 + - uid: 30165 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,1.5 parent: 2 - - uid: 30310 + - uid: 30166 components: - type: Transform pos: 84.5,3.5 parent: 2 - - uid: 30311 + - uid: 30167 components: - type: Transform pos: 86.5,3.5 parent: 2 - - uid: 30312 + - uid: 30168 components: - type: Transform pos: 31.5,-3.5 parent: 2 - - uid: 30313 + - uid: 30169 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,0.5 parent: 2 - - uid: 30314 + - uid: 30170 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,2.5 parent: 2 - - uid: 30315 + - uid: 30171 components: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 30316 + - uid: 30172 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-70.5 parent: 2 - - uid: 30317 + - uid: 30173 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-69.5 parent: 2 - - uid: 30318 + - uid: 30174 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-68.5 parent: 2 - - uid: 30319 + - uid: 30175 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-70.5 parent: 2 - - uid: 30320 + - uid: 30176 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-69.5 parent: 2 - - uid: 30321 + - uid: 30177 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-68.5 parent: 2 - - uid: 30322 + - uid: 30178 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 30323 + - uid: 30179 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 30324 + - uid: 30180 components: - type: Transform pos: -54.5,16.5 parent: 2 - - uid: 39704 + - uid: 39531 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 - - uid: 39705 + parent: 38411 + - uid: 39532 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 - - uid: 39706 + parent: 38411 + - uid: 39533 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 + parent: 38411 - proto: StairStageDark entities: - - uid: 30325 + - uid: 30181 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-78.5 parent: 2 - - uid: 30326 + - uid: 30182 components: - type: Transform rot: -1.5707963267948966 rad @@ -228366,21 +228444,21 @@ entities: parent: 2 - proto: StairStageWhite entities: - - uid: 39707 + - uid: 39534 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-4.5 - parent: 38584 + parent: 38411 - proto: StairStageWood entities: - - uid: 30327 + - uid: 30183 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 2 - - uid: 30328 + - uid: 30184 components: - type: Transform rot: 3.141592653589793 rad @@ -228388,54 +228466,54 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 30329 + - uid: 30185 components: - type: Transform pos: 32.5,-30.5 parent: 2 - - uid: 30330 + - uid: 30186 components: - type: Transform pos: 26.5,-25.5 parent: 2 - - uid: 30331 + - uid: 30187 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 30332 + - uid: 30188 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 30333 + - uid: 30189 components: - type: Transform pos: 24.5,-25.5 parent: 2 - - uid: 30334 + - uid: 30190 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 39708 + - uid: 39535 components: - type: Transform pos: -5.5,-5.5 - parent: 38584 - - uid: 39709 + parent: 38411 + - uid: 39536 components: - type: Transform pos: -4.5,-5.5 - parent: 38584 + parent: 38411 - proto: StationGoalPaper entities: - - uid: 1647 + - uid: 1651 components: - type: MetaData name: разрешение на ношение оружия - type: Transform - parent: 1645 + parent: 1649 - type: Paper content: >- [color=#1b487e]███░███░░░░██░░░░[/color] @@ -228473,61 +228551,61 @@ entities: - type: InsideEntityStorage - proto: StationMap entities: - - uid: 30335 + - uid: 30191 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 2 - - uid: 30336 + - uid: 30192 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,66.5 parent: 2 - - uid: 30337 + - uid: 30193 components: - type: Transform pos: -21.5,53.5 parent: 2 - - uid: 30338 + - uid: 30194 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 2 - - uid: 30339 + - uid: 30195 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-52.5 parent: 2 - - uid: 30340 + - uid: 30196 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-78.5 parent: 2 - - uid: 30341 + - uid: 30197 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 - - uid: 30342 + - uid: 30198 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,6.5 parent: 2 - - uid: 30343 + - uid: 30199 components: - type: Transform pos: 50.5,20.5 parent: 2 - proto: StationMapAssembly entities: - - uid: 30344 + - uid: 30200 components: - type: Transform rot: 1.5707963267948966 rad @@ -228535,33 +228613,33 @@ entities: parent: 2 - proto: StationMapBroken entities: - - uid: 30345 + - uid: 30201 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-61.5 parent: 2 - - uid: 30346 + - uid: 30202 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-40.5 parent: 2 - - uid: 30347 + - uid: 30203 components: - type: Transform pos: -63.5,-34.5 parent: 2 - proto: StatueVenusBlue entities: - - uid: 30348 + - uid: 30204 components: - type: Transform pos: -11.5,62.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 30349 + - uid: 30205 components: - type: Transform rot: 3.141592653589793 rad @@ -228569,7 +228647,7 @@ entities: parent: 2 - proto: StealthBox entities: - - uid: 30350 + - uid: 30206 components: - type: Transform pos: 55.50523,-7.4137764 @@ -228578,25 +228656,25 @@ entities: lastVisibility: 1.5 - proto: SteelBench entities: - - uid: 30351 + - uid: 30207 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,26.5 parent: 2 - - uid: 30352 + - uid: 30208 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,25.5 parent: 2 - - uid: 30353 + - uid: 30209 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-36.5 parent: 2 - - uid: 30354 + - uid: 30210 components: - type: Transform rot: 1.5707963267948966 rad @@ -228604,7 +228682,7 @@ entities: parent: 2 - proto: SteelOre1 entities: - - uid: 30355 + - uid: 30211 components: - type: Transform rot: 3.141593671850739 rad @@ -228612,188 +228690,188 @@ entities: parent: 2 - proto: Stool entities: - - uid: 30356 + - uid: 30212 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.54447,14.7 parent: 2 - - uid: 30357 + - uid: 30213 components: - type: Transform rot: 3.141592653589793 rad pos: -31.521593,-65.5285 parent: 2 - - uid: 30358 + - uid: 30214 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,72.5 parent: 2 - - uid: 30359 + - uid: 30215 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-10.5 parent: 2 - - uid: 30360 + - uid: 30216 components: - type: Transform pos: 0.47216275,51.47862 parent: 2 - - uid: 30361 + - uid: 30217 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,61.5 parent: 2 - - uid: 30362 + - uid: 30218 components: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 30363 + - uid: 30219 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-30.5 parent: 2 - - uid: 30364 + - uid: 30220 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-31.5 parent: 2 - - uid: 30365 + - uid: 30221 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,28.5 parent: 2 - - uid: 30366 + - uid: 30222 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,27.5 parent: 2 - - uid: 30367 + - uid: 30223 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,27.5 parent: 2 - - uid: 30368 + - uid: 30224 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,26.5 parent: 2 - - uid: 30369 + - uid: 30225 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,33.5 parent: 2 - - uid: 30370 + - uid: 30226 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,32.5 parent: 2 - - uid: 30371 + - uid: 30227 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,34.5 parent: 2 - - uid: 30372 + - uid: 30228 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,33.5 parent: 2 - - uid: 30373 + - uid: 30229 components: - type: Transform pos: -5.5659666,27.617414 parent: 2 - - uid: 30374 + - uid: 30230 components: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 30375 + - uid: 30231 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,26.5 parent: 2 - - uid: 30376 + - uid: 30232 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,72.5 parent: 2 - - uid: 30377 + - uid: 30233 components: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 30378 + - uid: 30234 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-13.5 parent: 2 - - uid: 30379 + - uid: 30235 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,31.5 parent: 2 - - uid: 30380 + - uid: 30236 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-9.5 parent: 2 - - uid: 30381 + - uid: 30237 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-14.5 parent: 2 - - uid: 30382 + - uid: 30238 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,34.5 parent: 2 - - uid: 30383 + - uid: 30239 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 - - uid: 30384 + - uid: 30240 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-14.5 parent: 2 - - uid: 30385 + - uid: 30241 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-13.5 parent: 2 - - uid: 30386 + - uid: 30242 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-34.5 parent: 2 - - uid: 30387 + - uid: 30243 components: - type: Transform rot: -1.5707963267948966 rad @@ -228801,336 +228879,336 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 30388 + - uid: 30244 components: - type: Transform pos: 93.5,-0.5 parent: 2 - - uid: 30389 + - uid: 30245 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,37.5 parent: 2 - - uid: 30390 + - uid: 30246 components: - type: Transform pos: 13.5,59.5 parent: 2 - - uid: 30391 + - uid: 30247 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,17.5 parent: 2 - - uid: 30392 + - uid: 30248 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-55.5 parent: 2 - - uid: 30393 + - uid: 30249 components: - type: Transform pos: 18.5,69.5 parent: 2 - - uid: 30394 + - uid: 30250 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,36.5 parent: 2 - - uid: 30395 + - uid: 30251 components: - type: Transform pos: 20.5,69.5 parent: 2 - - uid: 30396 + - uid: 30252 components: - type: Transform pos: 15.5,59.5 parent: 2 - - uid: 30397 + - uid: 30253 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,33.5 parent: 2 - - uid: 30398 + - uid: 30254 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,35.5 parent: 2 - - uid: 30399 + - uid: 30255 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,34.5 parent: 2 - - uid: 30400 + - uid: 30256 components: - type: Transform pos: 22.5,69.5 parent: 2 - - uid: 30401 + - uid: 30257 components: - type: Transform pos: 14.5,59.5 parent: 2 - - uid: 30402 + - uid: 30258 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,61.5 parent: 2 - - uid: 30403 + - uid: 30259 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,17.5 parent: 2 - - uid: 30404 + - uid: 30260 components: - type: Transform pos: -62.5,-43.5 parent: 2 - - uid: 30405 + - uid: 30261 components: - type: Transform pos: -63.5,-43.5 parent: 2 - - uid: 30406 + - uid: 30262 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 30407 + - uid: 30263 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,61.5 parent: 2 - - uid: 30408 + - uid: 30264 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,61.5 parent: 2 - - uid: 30409 + - uid: 30265 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,59.5 parent: 2 - - uid: 30410 + - uid: 30266 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,58.5 parent: 2 - - uid: 30411 + - uid: 30267 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,39.5 parent: 2 - - uid: 30412 + - uid: 30268 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,40.5 parent: 2 - - uid: 30413 + - uid: 30269 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 - - uid: 30414 + - uid: 30270 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,42.5 parent: 2 - - uid: 30415 + - uid: 30271 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 - - uid: 30416 + - uid: 30272 components: - type: Transform pos: 94.5,-0.5 parent: 2 - - uid: 30417 + - uid: 30273 components: - type: Transform pos: 91.5,-0.5 parent: 2 - - uid: 30418 + - uid: 30274 components: - type: Transform pos: 92.5,-0.5 parent: 2 - proto: StorageCanister entities: - - uid: 30419 + - uid: 30275 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 30420 + - uid: 30276 components: - type: Transform pos: -58.5,34.5 parent: 2 - - uid: 30421 + - uid: 30277 components: - type: Transform pos: -26.5,-50.5 parent: 2 - - uid: 30422 + - uid: 30278 components: - type: Transform pos: -26.5,-49.5 parent: 2 - - uid: 30423 + - uid: 30279 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 30424 + - uid: 30280 components: - type: Transform pos: -58.5,33.5 parent: 2 - - uid: 30425 + - uid: 30281 components: - type: Transform pos: -58.5,32.5 parent: 2 - proto: Stunbaton entities: - - uid: 30426 + - uid: 30282 components: - type: Transform pos: 71.60599,-2.5342655 parent: 2 - - uid: 30427 + - uid: 30283 components: - type: Transform pos: 71.39333,-2.4280078 parent: 2 - - uid: 30428 + - uid: 30284 components: - type: Transform pos: 71.37561,-2.569685 parent: 2 - - uid: 30429 + - uid: 30285 components: - type: Transform pos: 11.549865,-31.462252 parent: 2 - proto: SubstationBasic entities: - - uid: 30430 + - uid: 30286 components: - type: MetaData name: хранилище - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 30431 + - uid: 30287 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 30432 + - uid: 30288 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 30433 + - uid: 30289 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 30434 + - uid: 30290 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 30435 + - uid: 30291 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 30436 + - uid: 30292 components: - type: MetaData name: утилизаторная В - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 30437 + - uid: 30293 components: - type: MetaData name: атмосферная С 2 - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 30438 + - uid: 30294 components: - type: MetaData name: атмосферная Ю - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 30439 + - uid: 30295 components: - type: MetaData name: тех. тоннели ЮЗ - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 30440 + - uid: 30296 components: - type: MetaData name: суд, офисы АВД и детектива - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 30441 + - uid: 30297 components: - type: MetaData name: коридор и утилизаторная З - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 30442 + - uid: 30298 components: - type: MetaData name: служба безопасности - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 30443 + - uid: 30299 components: - type: MetaData name: солнечные панели ЮЗ - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 30444 + - uid: 30300 components: - type: MetaData name: отбытие и церковь - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 30445 + - uid: 30301 components: - type: MetaData name: мостик @@ -229141,14 +229219,14 @@ entities: loadingNetworkDemand: 124.980965 currentSupply: 124.980965 supplyRampPosition: 124.980965 - - uid: 30446 + - uid: 30302 components: - type: MetaData name: генератор гравитации - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 30447 + - uid: 30303 components: - type: MetaData name: сервисный З @@ -229157,14 +229235,14 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 - - uid: 30448 + - uid: 30304 components: - type: MetaData name: тех. тоннели СЗ нижняя часть - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 30449 + - uid: 30305 components: - type: MetaData name: медицинский В @@ -229175,28 +229253,28 @@ entities: loadingNetworkDemand: 205.02036 currentSupply: 205.02036 supplyRampPosition: 205.02036 - - uid: 30450 + - uid: 30306 components: - type: MetaData name: тех помещения СВ - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 30451 + - uid: 30307 components: - type: MetaData name: библиотека - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 30452 + - uid: 30308 components: - type: MetaData name: дормитории - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 30453 + - uid: 30309 components: - type: MetaData name: атмосферная С 1 @@ -229207,7 +229285,7 @@ entities: loadingNetworkDemand: 15.000059 currentReceiving: 15.000059 currentSupply: 15.000059 - - uid: 30454 + - uid: 30310 components: - type: MetaData name: тех. тоннели СЗ верхняя часть @@ -229216,92 +229294,92 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 - - uid: 30455 + - uid: 30311 components: - type: MetaData name: снабжение - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 30456 + - uid: 30312 components: - type: Transform pos: -43.5,46.5 parent: 2 - - uid: 30457 + - uid: 30313 components: - type: MetaData name: сервисный В - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 30458 + - uid: 30314 components: - type: MetaData name: инженерный С - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 30459 + - uid: 30315 components: - type: MetaData name: токсины - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 30460 + - uid: 30316 components: - type: MetaData name: РИТЭГ и УЧ - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 30461 + - uid: 30317 components: - type: MetaData name: солнечные панели СВ - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 30462 + - uid: 30318 components: - type: Transform pos: -43.5,47.5 parent: 2 - - uid: 30463 + - uid: 30319 components: - type: MetaData name: генератор теслы - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 30464 + - uid: 30320 components: - type: MetaData name: пристройка - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 30465 + - uid: 30321 components: - type: MetaData name: ИИ - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 39710 + - uid: 39537 components: - type: Transform pos: 8.5,4.5 - parent: 38584 + parent: 38411 - proto: SubstationMachineCircuitboard entities: - - uid: 30466 + - uid: 30322 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 30467 + - uid: 30323 components: - type: Transform rot: 3.141592653589793 rad @@ -229309,22 +229387,22 @@ entities: parent: 2 - proto: SubstationWallBasic entities: - - uid: 38551 + - uid: 38378 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 - parent: 38484 + parent: 38311 - proto: SugarcaneSeeds entities: - - uid: 30468 + - uid: 30324 components: - type: Transform pos: -70.72353,-20.442097 parent: 2 - proto: SuitStorageAtmos entities: - - uid: 30469 + - uid: 30325 components: - type: Transform pos: -52.5,36.5 @@ -229347,145 +229425,145 @@ entities: - 0 - 0 - 0 - - uid: 30470 + - uid: 30326 components: - type: Transform pos: -52.5,37.5 parent: 2 - - uid: 30471 + - uid: 30327 components: - type: Transform pos: -52.5,38.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 30472 + - uid: 30328 components: - type: Transform pos: 7.5,3.5 parent: 2 - proto: SuitStorageCMO entities: - - uid: 30473 + - uid: 30329 components: - type: Transform pos: 20.5,-52.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 30474 + - uid: 30330 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 30475 + - uid: 30331 components: - type: Transform pos: -78.5,7.5 parent: 2 - - uid: 30476 + - uid: 30332 components: - type: Transform pos: -78.5,3.5 parent: 2 - - uid: 30477 + - uid: 30333 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 30478 + - uid: 30334 components: - type: Transform pos: -80.5,15.5 parent: 2 - - uid: 30479 + - uid: 30335 components: - type: Transform pos: -48.5,-11.5 parent: 2 - - uid: 30480 + - uid: 30336 components: - type: Transform pos: -47.5,-11.5 parent: 2 - - uid: 30481 + - uid: 30337 components: - type: Transform pos: -46.5,-11.5 parent: 2 - - uid: 30482 + - uid: 30338 components: - type: Transform pos: -75.5,7.5 parent: 2 - - uid: 30483 + - uid: 30339 components: - type: Transform pos: -75.5,4.5 parent: 2 - - uid: 30484 + - uid: 30340 components: - type: Transform pos: -75.5,5.5 parent: 2 - - uid: 30485 + - uid: 30341 components: - type: Transform pos: -75.5,6.5 parent: 2 - - uid: 30486 + - uid: 30342 components: - type: Transform pos: -75.5,3.5 parent: 2 - - uid: 30487 + - uid: 30343 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 30488 + - uid: 30344 components: - type: Transform pos: 15.5,79.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 30489 + - uid: 30345 components: - type: Transform pos: -13.5,-14.5 parent: 2 - - uid: 30490 + - uid: 30346 components: - type: Transform pos: -13.5,-13.5 parent: 2 - - uid: 30491 + - uid: 30347 components: - type: Transform pos: -13.5,-15.5 parent: 2 - - uid: 30492 + - uid: 30348 components: - type: Transform pos: -13.5,-12.5 parent: 2 - - uid: 30493 + - uid: 30349 components: - type: Transform pos: -60.5,64.5 parent: 2 - - uid: 30494 + - uid: 30350 components: - type: Transform pos: -77.5,-27.5 parent: 2 - - uid: 30495 + - uid: 30351 components: - type: Transform pos: -11.5,-12.5 parent: 2 - - uid: 30496 + - uid: 30352 components: - type: Transform pos: -11.5,-13.5 @@ -229508,7 +229586,7 @@ entities: - 0 - 0 - 0 - - uid: 30497 + - uid: 30353 components: - type: Transform pos: -11.5,-14.5 @@ -229531,99 +229609,99 @@ entities: - 0 - 0 - 0 - - uid: 30498 + - uid: 30354 components: - type: Transform pos: -11.5,-15.5 parent: 2 - proto: SuitStorageEVAEmergency entities: - - uid: 30499 + - uid: 30355 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 30500 + - uid: 30356 components: - type: Transform pos: -9.5,-14.5 parent: 2 - - uid: 30501 + - uid: 30357 components: - type: Transform pos: -9.5,-13.5 parent: 2 - - uid: 30502 + - uid: 30358 components: - type: Transform pos: -9.5,-12.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 30503 + - uid: 30359 components: - type: Transform pos: 91.5,9.5 parent: 2 - - uid: 30504 + - uid: 30360 components: - type: Transform pos: 90.5,9.5 parent: 2 - - uid: 30505 + - uid: 30361 components: - type: Transform pos: 89.5,9.5 parent: 2 - - uid: 39711 + - uid: 39538 components: - type: Transform pos: -2.5,8.5 - parent: 38584 - - uid: 39712 + parent: 38411 + - uid: 39539 components: - type: Transform pos: -2.5,7.5 - parent: 38584 - - uid: 39713 + parent: 38411 + - uid: 39540 components: - type: Transform pos: -2.5,6.5 - parent: 38584 + parent: 38411 - proto: SuitStorageHOS entities: - - uid: 30506 + - uid: 30362 components: - type: Transform pos: 34.5,19.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 30507 + - uid: 30363 components: - type: Transform pos: -20.5,-47.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 30508 + - uid: 30364 components: - type: Transform pos: 29.5,28.5 parent: 2 - - uid: 30509 + - uid: 30365 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 30510 + - uid: 30366 components: - type: Transform pos: 29.5,26.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 30511 + - uid: 30367 components: - type: Transform pos: 66.5,13.5 @@ -229646,7 +229724,7 @@ entities: - 0 - 0 - 0 - - uid: 30512 + - uid: 30368 components: - type: Transform pos: 65.5,13.5 @@ -229669,7 +229747,7 @@ entities: - 0 - 0 - 0 - - uid: 30513 + - uid: 30369 components: - type: Transform pos: 66.5,11.5 @@ -229692,7 +229770,7 @@ entities: - 0 - 0 - 0 - - uid: 30514 + - uid: 30370 components: - type: Transform pos: 64.5,13.5 @@ -229715,7 +229793,7 @@ entities: - 0 - 0 - 0 - - uid: 30515 + - uid: 30371 components: - type: Transform pos: 64.5,11.5 @@ -229738,7 +229816,7 @@ entities: - 0 - 0 - 0 - - uid: 30516 + - uid: 30372 components: - type: Transform pos: 65.5,11.5 @@ -229761,51 +229839,51 @@ entities: - 0 - 0 - 0 - - uid: 30517 + - uid: 30373 components: - type: Transform pos: 78.5,10.5 parent: 2 - - uid: 30518 + - uid: 30374 components: - type: Transform pos: 76.5,10.5 parent: 2 - - uid: 30519 + - uid: 30375 components: - type: Transform pos: 77.5,10.5 parent: 2 - - uid: 39714 + - uid: 39541 components: - type: Transform pos: 9.5,-2.5 - parent: 38584 - - uid: 39715 + parent: 38411 + - uid: 39542 components: - type: Transform pos: 9.5,-3.5 - parent: 38584 - - uid: 39716 + parent: 38411 + - uid: 39543 components: - type: Transform pos: 9.5,-5.5 - parent: 38584 - - uid: 39717 + parent: 38411 + - uid: 39544 components: - type: Transform pos: 9.5,-6.5 - parent: 38584 + parent: 38411 - proto: SuitStorageWarden entities: - - uid: 30520 + - uid: 30376 components: - type: Transform pos: 55.5,9.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 30521 + - uid: 30377 components: - type: Transform rot: -1.5707963267948966 rad @@ -229813,7 +229891,7 @@ entities: parent: 2 - type: SurveillanceCamera id: хранилище - - uid: 30522 + - uid: 30378 components: - type: Transform pos: 9.5,-9.5 @@ -229823,7 +229901,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Капитанская Мастерская - - uid: 30523 + - uid: 30379 components: - type: Transform pos: -11.5,7.5 @@ -229833,7 +229911,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Комната совещаний - - uid: 30524 + - uid: 30380 components: - type: Transform rot: -1.5707963267948966 rad @@ -229844,7 +229922,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Питание мостика - - uid: 30525 + - uid: 30381 components: - type: Transform pos: -8.5,13.5 @@ -229854,7 +229932,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Левое крыло мостика - - uid: 30526 + - uid: 30382 components: - type: Transform pos: 7.5,13.5 @@ -229864,7 +229942,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Правое крыло мостика - - uid: 30527 + - uid: 30383 components: - type: Transform pos: 9.5,-5.5 @@ -229874,7 +229952,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мастерская - - uid: 30528 + - uid: 30384 components: - type: Transform rot: 1.5707963267948966 rad @@ -229885,7 +229963,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Офис Главы Персонала - - uid: 30529 + - uid: 30385 components: - type: Transform rot: 1.5707963267948966 rad @@ -229896,7 +229974,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Кабинет АВД - - uid: 30530 + - uid: 30386 components: - type: Transform pos: -1.5,12.5 @@ -229906,7 +229984,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик - - uid: 30531 + - uid: 30387 components: - type: Transform pos: -14.5,-16.5 @@ -229916,7 +229994,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Хранилище EVA - - uid: 30532 + - uid: 30388 components: - type: Transform rot: -1.5707963267948966 rad @@ -229927,7 +230005,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Генератор гравитации - - uid: 30533 + - uid: 30389 components: - type: Transform pos: -10.5,-9.5 @@ -229939,7 +230017,7 @@ entities: id: EVA, Кабинет Главы Персонала - proto: SurveillanceCameraEngineering entities: - - uid: 30534 + - uid: 30390 components: - type: Transform rot: 3.141592653589793 rad @@ -229950,7 +230028,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Зал инженерии - - uid: 30535 + - uid: 30391 components: - type: Transform rot: -1.5707963267948966 rad @@ -229961,7 +230039,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вход в Атмос - - uid: 30536 + - uid: 30392 components: - type: Transform rot: 3.141592653589793 rad @@ -229972,7 +230050,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Коридор генератора гравитации - - uid: 30537 + - uid: 30393 components: - type: Transform rot: 3.141592653589793 rad @@ -229983,7 +230061,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Северо-восточные панели - - uid: 30538 + - uid: 30394 components: - type: Transform pos: -58.5,-9.5 @@ -229993,7 +230071,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Ускоритель частиц - - uid: 30539 + - uid: 30395 components: - type: Transform pos: -46.5,-9.5 @@ -230003,7 +230081,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад инженерии - - uid: 30540 + - uid: 30396 components: - type: Transform pos: -45.5,4.5 @@ -230013,7 +230091,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Подстанции инженерии - - uid: 30541 + - uid: 30397 components: - type: Transform rot: -1.5707963267948966 rad @@ -230024,7 +230102,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад прибытия - - uid: 30542 + - uid: 30398 components: - type: Transform rot: 3.141592653589793 rad @@ -230035,7 +230113,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Наблюдательные комнаты - - uid: 30543 + - uid: 30399 components: - type: Transform rot: -1.5707963267948966 rad @@ -230046,7 +230124,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вид сбоку суперматерии - - uid: 30544 + - uid: 30400 components: - type: Transform pos: -50.5,44.5 @@ -230056,7 +230134,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Суперматерия - - uid: 30545 + - uid: 30401 components: - type: Transform rot: 3.141592653589793 rad @@ -230067,7 +230145,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Атмос - - uid: 30546 + - uid: 30402 components: - type: Transform rot: -1.5707963267948966 rad @@ -230078,7 +230156,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад электроники - - uid: 30547 + - uid: 30403 components: - type: Transform rot: 1.5707963267948966 rad @@ -230089,7 +230167,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Фильтры Атмоса - - uid: 30548 + - uid: 30404 components: - type: Transform pos: -53.5,4.5 @@ -230099,7 +230177,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вход в комнату совещаний - - uid: 30549 + - uid: 30405 components: - type: Transform rot: -1.5707963267948966 rad @@ -230110,7 +230188,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Офис Старшего Инженера - - uid: 30550 + - uid: 30406 components: - type: Transform rot: 3.141592653589793 rad @@ -230121,7 +230199,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Комната совещаний инженеров - - uid: 30551 + - uid: 30407 components: - type: Transform rot: -1.5707963267948966 rad @@ -230134,7 +230212,7 @@ entities: id: Комната питания суперматерии - proto: SurveillanceCameraGeneral entities: - - uid: 30552 + - uid: 30408 components: - type: Transform rot: 1.5707963267948966 rad @@ -230145,7 +230223,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад, инженерный) - - uid: 30553 + - uid: 30409 components: - type: Transform rot: 1.5707963267948966 rad @@ -230156,7 +230234,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Суд - - uid: 30554 + - uid: 30410 components: - type: Transform rot: 3.141592653589793 rad @@ -230167,7 +230245,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: север библиотеки - - uid: 30555 + - uid: 30411 components: - type: Transform pos: -2.5,-81.5 @@ -230177,7 +230255,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Шлюзы стыковки (отбытие) - - uid: 30556 + - uid: 30412 components: - type: Transform rot: 3.141592653589793 rad @@ -230188,7 +230266,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (восток, жилой отсек) - - uid: 30557 + - uid: 30413 components: - type: Transform rot: 1.5707963267948966 rad @@ -230199,7 +230277,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад, глава персонала) - - uid: 30558 + - uid: 30414 components: - type: Transform pos: -24.5,-17.5 @@ -230209,7 +230287,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: барахолка - - uid: 30559 + - uid: 30415 components: - type: Transform rot: 3.141592653589793 rad @@ -230220,7 +230298,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормиторий 2 - - uid: 30560 + - uid: 30416 components: - type: Transform rot: -1.5707963267948966 rad @@ -230231,13 +230309,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад) - - uid: 30561 + - uid: 30417 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,24.5 parent: 2 - - uid: 30562 + - uid: 30418 components: - type: Transform rot: 3.141592653589793 rad @@ -230248,7 +230326,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Север эвакуации - - uid: 30563 + - uid: 30419 components: - type: Transform rot: 3.141592653589793 rad @@ -230259,7 +230337,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (бриг) - - uid: 30564 + - uid: 30420 components: - type: Transform rot: -1.5707963267948966 rad @@ -230270,7 +230348,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (восток) - - uid: 30565 + - uid: 30421 components: - type: Transform rot: 1.5707963267948966 rad @@ -230281,7 +230359,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (юго-восток) - - uid: 30566 + - uid: 30422 components: - type: Transform pos: -22.5,67.5 @@ -230291,7 +230369,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - - uid: 30567 + - uid: 30423 components: - type: Transform rot: -1.5707963267948966 rad @@ -230302,7 +230380,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: северный сервис - - uid: 30568 + - uid: 30424 components: - type: Transform pos: 37.5,-15.5 @@ -230312,12 +230390,12 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Раздевалка дормитория 2 - - uid: 30569 + - uid: 30425 components: - type: Transform pos: 1.5,22.5 parent: 2 - - uid: 30570 + - uid: 30426 components: - type: Transform rot: 3.141592653589793 rad @@ -230328,7 +230406,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (юг, EVA) - - uid: 30571 + - uid: 30427 components: - type: Transform rot: 3.141592653589793 rad @@ -230339,7 +230417,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Спортзал - - uid: 30572 + - uid: 30428 components: - type: Transform rot: -1.5707963267948966 rad @@ -230349,7 +230427,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraGeneral id: Стыковочные шлюз (восток, прибытие) - - uid: 30573 + - uid: 30429 components: - type: Transform rot: -1.5707963267948966 rad @@ -230360,7 +230438,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: южный сервис - - uid: 30574 + - uid: 30430 components: - type: Transform rot: 3.141592653589793 rad @@ -230371,7 +230449,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (север, карго) - - uid: 30575 + - uid: 30431 components: - type: Transform pos: -28.5,-15.5 @@ -230381,13 +230459,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Комната библиотеки - - uid: 30576 + - uid: 30432 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,16.5 parent: 2 - - uid: 30577 + - uid: 30433 components: - type: Transform pos: 0.5,67.5 @@ -230397,7 +230475,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: КПП прибытие - - uid: 30578 + - uid: 30434 components: - type: Transform rot: 3.141592653589793 rad @@ -230408,18 +230486,18 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Раздевалка дормитория 1 - - uid: 30579 + - uid: 30435 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,87.5 parent: 2 - - uid: 30580 + - uid: 30436 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 30581 + - uid: 30437 components: - type: Transform rot: 1.5707963267948966 rad @@ -230430,7 +230508,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (РНД, мед отсек, юг) - - uid: 30582 + - uid: 30438 components: - type: Transform rot: 1.5707963267948966 rad @@ -230441,7 +230519,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: медицинский КПП прибытия - - uid: 30583 + - uid: 30439 components: - type: Transform pos: 46.5,-20.5 @@ -230451,13 +230529,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормиторий 1 - - uid: 30584 + - uid: 30440 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 2 - - uid: 30585 + - uid: 30441 components: - type: Transform rot: 3.141592653589793 rad @@ -230468,7 +230546,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - Коридор - - uid: 30586 + - uid: 30442 components: - type: Transform rot: 1.5707963267948966 rad @@ -230479,7 +230557,7 @@ entities: - SurveillanceCameraGeneral id: Коридор (восток, суд) - type: ActiveUserInterface - - uid: 30587 + - uid: 30443 components: - type: Transform rot: -1.5707963267948966 rad @@ -230490,7 +230568,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Медицинский КПП эвакуации - - uid: 30588 + - uid: 30444 components: - type: Transform rot: 3.141592653589793 rad @@ -230501,7 +230579,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Голографическая зона - - uid: 30589 + - uid: 30445 components: - type: Transform rot: 3.141592653589793 rad @@ -230512,7 +230590,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Библиотека - - uid: 30590 + - uid: 30446 components: - type: Transform rot: -1.5707963267948966 rad @@ -230523,7 +230601,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: КПП отбытия - - uid: 30591 + - uid: 30447 components: - type: Transform pos: -2.5,-20.5 @@ -230533,7 +230611,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Камера (юг, Т) - - uid: 30592 + - uid: 30448 components: - type: Transform rot: -1.5707963267948966 rad @@ -230544,7 +230622,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Склад инструментов - - uid: 30593 + - uid: 30449 components: - type: Transform rot: -1.5707963267948966 rad @@ -230555,7 +230633,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - Коридор - - uid: 30594 + - uid: 30450 components: - type: Transform rot: -1.5707963267948966 rad @@ -230566,13 +230644,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад) - - uid: 30595 + - uid: 30451 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-18.5 parent: 2 - - uid: 30597 + - uid: 30452 components: - type: Transform rot: -1.5707963267948966 rad @@ -230585,7 +230663,7 @@ entities: id: Коридор (восток) - proto: SurveillanceCameraMedical entities: - - uid: 30598 + - uid: 30453 components: - type: Transform rot: 1.5707963267948966 rad @@ -230596,7 +230674,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Зона пациентов вирусологии - - uid: 30599 + - uid: 30454 components: - type: Transform pos: 24.5,-40.5 @@ -230606,7 +230684,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Кислородные канистры медбея - - uid: 30600 + - uid: 30455 components: - type: Transform rot: 1.5707963267948966 rad @@ -230617,7 +230695,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Химия - - uid: 30601 + - uid: 30456 components: - type: Transform rot: 3.141592653589793 rad @@ -230628,7 +230706,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Лаборатория вирусологии - - uid: 30602 + - uid: 30457 components: - type: Transform rot: 1.5707963267948966 rad @@ -230639,7 +230717,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Вирусология - - uid: 30603 + - uid: 30458 components: - type: Transform rot: -1.5707963267948966 rad @@ -230650,7 +230728,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Нижнее крыло медбея - - uid: 30604 + - uid: 30459 components: - type: Transform rot: 1.5707963267948966 rad @@ -230661,7 +230739,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Офис вирусологии - - uid: 30605 + - uid: 30460 components: - type: Transform pos: 9.5,-27.5 @@ -230671,7 +230749,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Лобби медбея - - uid: 30606 + - uid: 30461 components: - type: Transform rot: 1.5707963267948966 rad @@ -230682,7 +230760,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Операционная - - uid: 30607 + - uid: 30462 components: - type: Transform rot: -1.5707963267948966 rad @@ -230693,7 +230771,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Генетики - - uid: 30608 + - uid: 30463 components: - type: Transform rot: 3.141592653589793 rad @@ -230704,7 +230782,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Приёмная генетиков - - uid: 30609 + - uid: 30464 components: - type: Transform rot: 1.5707963267948966 rad @@ -230715,7 +230793,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Кабинет психолога - - uid: 30610 + - uid: 30465 components: - type: Transform rot: 1.5707963267948966 rad @@ -230726,7 +230804,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Вход в вирусологию - - uid: 30611 + - uid: 30466 components: - type: Transform rot: 1.5707963267948966 rad @@ -230737,7 +230815,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Медициниские палаты - - uid: 30612 + - uid: 30467 components: - type: Transform rot: 3.141592653589793 rad @@ -230748,7 +230826,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Смотровая - - uid: 30613 + - uid: 30468 components: - type: Transform rot: 3.141592653589793 rad @@ -230759,7 +230837,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Офис главного врача - - uid: 30614 + - uid: 30469 components: - type: Transform rot: -1.5707963267948966 rad @@ -230774,75 +230852,75 @@ entities: defaultTarget: start - proto: SurveillanceCameraRouterCommand entities: - - uid: 30615 + - uid: 30470 components: - type: Transform pos: -122.5,40.5 parent: 2 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 30616 + - uid: 30471 components: - type: Transform pos: -122.5,39.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 30617 + - uid: 30472 components: - type: Transform pos: -122.5,42.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 30618 + - uid: 30473 components: - type: Transform pos: -122.5,41.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 30619 + - uid: 30474 components: - type: Transform pos: -124.5,38.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 30620 + - uid: 30475 components: - type: Transform pos: -124.5,37.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 30621 + - uid: 30476 components: - type: Transform pos: 42.5,17.5 parent: 2 - - uid: 30622 + - uid: 30477 components: - type: Transform pos: -124.5,40.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 30623 + - uid: 30478 components: - type: Transform pos: -124.5,39.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 30624 + - uid: 30479 components: - type: Transform pos: -124.5,41.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 30625 + - uid: 30480 components: - type: Transform rot: 1.5707963267948966 rad @@ -230853,7 +230931,7 @@ entities: - SurveillanceCameraScience nameSet: True id: камера огнеопасных токсинов - - uid: 30626 + - uid: 30481 components: - type: Transform rot: 1.5707963267948966 rad @@ -230864,7 +230942,7 @@ entities: - SurveillanceCameraScience nameSet: True id: РнД - - uid: 30627 + - uid: 30482 components: - type: Transform rot: 1.5707963267948966 rad @@ -230875,7 +230953,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Приёмная научного - - uid: 30628 + - uid: 30483 components: - type: Transform rot: 1.5707963267948966 rad @@ -230886,7 +230964,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Офис Научного Руководителя - - uid: 30629 + - uid: 30484 components: - type: Transform rot: 3.141592653589793 rad @@ -230897,7 +230975,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Коридор - - uid: 30630 + - uid: 30485 components: - type: Transform rot: 1.5707963267948966 rad @@ -230908,7 +230986,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Вход в научный - - uid: 30631 + - uid: 30486 components: - type: Transform rot: 3.141592653589793 rad @@ -230919,7 +230997,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Западный коридор - - uid: 30632 + - uid: 30487 components: - type: Transform rot: 1.5707963267948966 rad @@ -230930,13 +231008,13 @@ entities: - SurveillanceCameraScience nameSet: True id: Северный коридор - - uid: 30633 + - uid: 30488 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-39.5 parent: 2 - - uid: 30634 + - uid: 30489 components: - type: Transform pos: -24.5,-53.5 @@ -230946,7 +231024,7 @@ entities: - SurveillanceCameraScience nameSet: True id: хранилище газов - - uid: 30635 + - uid: 30490 components: - type: Transform pos: -7.5,-43.5 @@ -230956,7 +231034,7 @@ entities: - SurveillanceCameraScience nameSet: True id: робототехника - - uid: 30636 + - uid: 30491 components: - type: Transform pos: -7.5,-52.5 @@ -230966,7 +231044,7 @@ entities: - SurveillanceCameraScience nameSet: True id: химия - - uid: 30637 + - uid: 30492 components: - type: Transform rot: 1.5707963267948966 rad @@ -230977,7 +231055,7 @@ entities: - SurveillanceCameraScience nameSet: True id: южный коридор - - uid: 30638 + - uid: 30493 components: - type: Transform rot: 3.141592653589793 rad @@ -230990,7 +231068,7 @@ entities: id: генератор аномалий - proto: SurveillanceCameraSecurity entities: - - uid: 30639 + - uid: 30494 components: - type: Transform rot: 1.5707963267948966 rad @@ -231001,7 +231079,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП прибытие - - uid: 30640 + - uid: 30495 components: - type: Transform rot: -1.5707963267948966 rad @@ -231012,7 +231090,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис охраны - - uid: 30641 + - uid: 30496 components: - type: Transform rot: 1.5707963267948966 rad @@ -231023,7 +231101,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Дополнительная комната детектива - - uid: 30642 + - uid: 30497 components: - type: Transform rot: -1.5707963267948966 rad @@ -231034,7 +231112,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор Брига - - uid: 30643 + - uid: 30498 components: - type: Transform pos: 50.5,11.5 @@ -231044,7 +231122,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Гардероб охраны - - uid: 30644 + - uid: 30499 components: - type: Transform rot: -1.5707963267948966 rad @@ -231055,7 +231133,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Кабинет детектива - - uid: 30645 + - uid: 30500 components: - type: Transform pos: 43.5,17.5 @@ -231065,7 +231143,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис Главы Службы Безопасности - - uid: 30646 + - uid: 30501 components: - type: Transform rot: -1.5707963267948966 rad @@ -231076,7 +231154,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис Смотрителя - - uid: 30647 + - uid: 30502 components: - type: Transform rot: 3.141592653589793 rad @@ -231087,7 +231165,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Тюремный лазарет - - uid: 30648 + - uid: 30503 components: - type: Transform rot: -1.5707963267948966 rad @@ -231098,7 +231176,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПЗ отбытия - - uid: 30649 + - uid: 30504 components: - type: Transform rot: 1.5707963267948966 rad @@ -231109,7 +231187,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Загрузочный док охраны - - uid: 30650 + - uid: 30505 components: - type: Transform rot: -1.5707963267948966 rad @@ -231120,7 +231198,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Аварийный запас оружейной - - uid: 30651 + - uid: 30506 components: - type: Transform rot: -1.5707963267948966 rad @@ -231131,7 +231209,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор ожидания охраны - - uid: 30652 + - uid: 30507 components: - type: Transform rot: -1.5707963267948966 rad @@ -231142,7 +231220,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Верхний коридор тюремного крыла - - uid: 30653 + - uid: 30508 components: - type: Transform pos: 40.5,-0.5 @@ -231152,7 +231230,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Приёмная охраны - - uid: 30654 + - uid: 30509 components: - type: Transform rot: -1.5707963267948966 rad @@ -231163,7 +231241,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП комната ожидания - - uid: 30655 + - uid: 30510 components: - type: Transform rot: 3.141592653589793 rad @@ -231174,7 +231252,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП отбытие - - uid: 30656 + - uid: 30511 components: - type: Transform rot: -1.5707963267948966 rad @@ -231185,7 +231263,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор тюремного крыла - - uid: 30657 + - uid: 30512 components: - type: Transform rot: -1.5707963267948966 rad @@ -231196,7 +231274,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: портовая - - uid: 30658 + - uid: 30513 components: - type: Transform rot: 1.5707963267948966 rad @@ -231207,7 +231285,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната отдыха - - uid: 30659 + - uid: 30514 components: - type: Transform rot: 3.141592653589793 rad @@ -231220,7 +231298,7 @@ entities: id: Стрельбище - proto: SurveillanceCameraService entities: - - uid: 30660 + - uid: 30515 components: - type: Transform rot: -1.5707963267948966 rad @@ -231231,7 +231309,7 @@ entities: - SurveillanceCameraService nameSet: True id: Кухня - - uid: 30661 + - uid: 30516 components: - type: Transform rot: 3.141592653589793 rad @@ -231242,7 +231320,7 @@ entities: - SurveillanceCameraService nameSet: True id: Столовая - - uid: 30662 + - uid: 30517 components: - type: Transform rot: 3.141592653589793 rad @@ -231255,7 +231333,7 @@ entities: id: Офис репортёра - type: Construction defaultTarget: start - - uid: 30663 + - uid: 30518 components: - type: Transform rot: 1.5707963267948966 rad @@ -231266,7 +231344,7 @@ entities: - SurveillanceCameraService nameSet: True id: Морг церкви - - uid: 30664 + - uid: 30519 components: - type: Transform pos: -12.5,-81.5 @@ -231276,7 +231354,7 @@ entities: - SurveillanceCameraService nameSet: True id: Офис священника - - uid: 30665 + - uid: 30520 components: - type: Transform rot: 1.5707963267948966 rad @@ -231287,7 +231365,7 @@ entities: - SurveillanceCameraService nameSet: True id: Крематорий церкви - - uid: 30666 + - uid: 30521 components: - type: Transform rot: -1.5707963267948966 rad @@ -231298,7 +231376,7 @@ entities: - SurveillanceCameraService nameSet: True id: Церковь - - uid: 30667 + - uid: 30522 components: - type: Transform rot: 1.5707963267948966 rad @@ -231309,7 +231387,7 @@ entities: - SurveillanceCameraService nameSet: True id: Мини склад инструментов - - uid: 30668 + - uid: 30523 components: - type: Transform rot: 1.5707963267948966 rad @@ -231320,7 +231398,7 @@ entities: - SurveillanceCameraService nameSet: True id: Гидропоника - - uid: 30669 + - uid: 30524 components: - type: Transform rot: 1.5707963267948966 rad @@ -231331,12 +231409,12 @@ entities: - SurveillanceCameraService nameSet: True id: Театр - - uid: 30670 + - uid: 30525 components: - type: Transform pos: -10.5,36.5 parent: 2 - - uid: 30671 + - uid: 30526 components: - type: Transform pos: 2.5,-16.5 @@ -231348,7 +231426,7 @@ entities: id: Кабинет Зоотехника - proto: SurveillanceCameraSupply entities: - - uid: 30672 + - uid: 30527 components: - type: Transform pos: 23.5,27.5 @@ -231358,7 +231436,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Комната утилизаторов - - uid: 30673 + - uid: 30528 components: - type: Transform rot: 3.141592653589793 rad @@ -231369,7 +231447,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад Карго - - uid: 30674 + - uid: 30529 components: - type: Transform pos: 26.5,34.5 @@ -231379,7 +231457,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Офис Квартирмейстера - - uid: 30675 + - uid: 30530 components: - type: MetaData name: Лобби снабжения @@ -231392,7 +231470,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Лобби Снабжения - - uid: 30676 + - uid: 30531 components: - type: Transform rot: 3.141592653589793 rad @@ -231403,7 +231481,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Приёмная снабжения - - uid: 30677 + - uid: 30532 components: - type: Transform rot: -1.5707963267948966 rad @@ -231414,7 +231492,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Вспомогательный офис доставок - - uid: 30678 + - uid: 30533 components: - type: Transform rot: 1.5707963267948966 rad @@ -231425,7 +231503,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Служебное помещение Снабжения - - uid: 30679 + - uid: 30534 components: - type: Transform rot: -1.5707963267948966 rad @@ -231436,7 +231514,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад отдела снабжения - - uid: 30680 + - uid: 30535 components: - type: Transform rot: -1.5707963267948966 rad @@ -231449,38 +231527,38 @@ entities: id: Отдел снабжения - proto: SurveillanceCameraWirelessRouterConstructed entities: - - uid: 30681 + - uid: 30536 components: - type: Transform pos: -122.5,36.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 30682 + - uid: 30537 components: - type: Transform pos: -124.5,42.5 parent: 2 - - uid: 30683 + - uid: 30538 components: - type: Transform pos: -122.5,37.5 parent: 2 - - uid: 30684 + - uid: 30539 components: - type: Transform pos: -122.5,38.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 30685 + - uid: 30540 components: - type: Transform pos: -28.5,21.5 parent: 2 - proto: SurveillanceWirelessCameraMovableCircuitboard entities: - - uid: 30686 + - uid: 30541 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -231488,89 +231566,89 @@ entities: parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 30687 + - uid: 30542 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,22.5 parent: 2 - - uid: 30688 + - uid: 30543 components: - type: Transform pos: -11.5,34.5 parent: 2 - - uid: 30689 + - uid: 30544 components: - type: Transform pos: -25.5,23.5 parent: 2 - proto: SyndicatePersonalAI entities: - - uid: 14895 + - uid: 14835 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30690 + - uid: 30545 components: - type: Transform pos: -50.465153,-35.402077 parent: 2 - proto: Syringe entities: - - uid: 14825 + - uid: 14765 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30691 + - uid: 30546 components: - type: Transform pos: -73.80836,-34.700375 parent: 2 - - uid: 30692 + - uid: 30547 components: - type: Transform pos: -9.800658,-52.379917 parent: 2 - - uid: 30693 + - uid: 30548 components: - type: Transform rot: 3.141592653589793 rad pos: 0.41809002,-13.439805 parent: 2 - - uid: 30694 + - uid: 30549 components: - type: Transform pos: 31.376213,-41.392838 parent: 2 - - uid: 30695 + - uid: 30550 components: - type: Transform pos: 7.5551,-22.431599 parent: 2 - type: Physics canCollide: False - - uid: 30696 + - uid: 30551 components: - type: Transform pos: -39.525764,53.757282 parent: 2 - - uid: 30697 + - uid: 30552 components: - type: Transform pos: 20.315166,-24.35081 parent: 2 - - uid: 30698 + - uid: 30553 components: - type: Transform pos: -39.525764,53.550793 parent: 2 - - uid: 30699 + - uid: 30554 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -231578,26 +231656,26 @@ entities: parent: 2 - proto: SyringeInaprovaline entities: - - uid: 30700 + - uid: 30555 components: - type: Transform pos: 26.57574,-27.461426 parent: 2 - type: Physics canCollide: False - - uid: 30701 + - uid: 30556 components: - type: Transform pos: 25.5,-31.5 parent: 2 - proto: SyringeTranexamicAcid entities: - - uid: 30702 + - uid: 30557 components: - type: Transform pos: 31.5,-31.5 parent: 2 - - uid: 30703 + - uid: 30558 components: - type: Transform rot: 1.5707963267948966 rad @@ -231605,1491 +231683,1481 @@ entities: parent: 2 - proto: Table entities: - - uid: 30704 + - uid: 30559 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,21.5 parent: 2 - - uid: 30705 + - uid: 30560 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,22.5 parent: 2 - - uid: 30706 + - uid: 30561 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,24.5 parent: 2 - - uid: 30707 + - uid: 30562 components: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 30708 + - uid: 30563 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,23.5 parent: 2 - - uid: 30709 + - uid: 30564 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,24.5 parent: 2 - - uid: 30710 + - uid: 30565 components: - type: Transform pos: 68.5,30.5 parent: 2 - - uid: 30711 + - uid: 30566 components: - type: Transform pos: 66.5,27.5 parent: 2 - - uid: 30712 + - uid: 30567 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,23.5 parent: 2 - - uid: 30713 + - uid: 30568 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 30714 + - uid: 30569 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 - - uid: 30715 + - uid: 30570 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,22.5 parent: 2 - - uid: 30716 + - uid: 30571 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 - - uid: 30717 + - uid: 30572 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 30718 + - uid: 30573 components: - type: Transform pos: 65.5,27.5 parent: 2 - - uid: 30719 + - uid: 30574 components: - type: Transform pos: 65.5,30.5 parent: 2 - - uid: 30720 + - uid: 30575 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,37.5 parent: 2 - - uid: 30721 + - uid: 30576 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,21.5 parent: 2 - - uid: 30722 + - uid: 30577 components: - type: Transform pos: 17.5,28.5 parent: 2 - - uid: 30723 + - uid: 30578 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 30724 + - uid: 30579 components: - type: Transform pos: -34.5,47.5 parent: 2 - - uid: 30725 - components: - - type: Transform - pos: -34.5,48.5 - parent: 2 - - uid: 30726 + - uid: 30581 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-54.5 parent: 2 - - uid: 30727 + - uid: 30582 components: - type: Transform pos: 10.5,-3.5 parent: 2 - - uid: 30728 + - uid: 30583 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-4.5 parent: 2 - - uid: 30729 + - uid: 30584 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-4.5 parent: 2 - - uid: 30730 + - uid: 30585 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-3.5 parent: 2 - - uid: 30731 + - uid: 30586 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-4.5 parent: 2 - - uid: 30732 + - uid: 30587 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-4.5 parent: 2 - - uid: 30733 + - uid: 30588 components: - type: Transform pos: -46.5,11.5 parent: 2 - - uid: 30734 + - uid: 30589 components: - type: Transform pos: -46.5,-32.5 parent: 2 - - uid: 30735 + - uid: 30590 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-10.5 parent: 2 - - uid: 30736 + - uid: 30591 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-10.5 parent: 2 - - uid: 30737 + - uid: 30592 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-61.5 parent: 2 - - uid: 30738 + - uid: 30593 components: - type: Transform pos: -48.5,11.5 parent: 2 - - uid: 30739 + - uid: 30594 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 30740 + - uid: 30595 components: - type: Transform pos: -47.5,11.5 parent: 2 - - uid: 30741 + - uid: 30596 components: - type: Transform pos: 55.5,-24.5 parent: 2 - - uid: 30742 + - uid: 30597 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 30743 + - uid: 30598 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 30744 + - uid: 30599 components: - type: Transform pos: -34.5,52.5 parent: 2 - - uid: 30745 + - uid: 30600 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 30746 + - uid: 30601 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 30747 + - uid: 30602 components: - type: Transform pos: -21.5,-16.5 parent: 2 - - uid: 30748 + - uid: 30603 components: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 30749 + - uid: 30604 components: - type: Transform pos: -23.5,-14.5 parent: 2 - - uid: 30750 + - uid: 30605 components: - type: Transform pos: -24.5,-14.5 parent: 2 - - uid: 30751 + - uid: 30606 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 30752 + - uid: 30607 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 30753 + - uid: 30608 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 30754 + - uid: 30609 components: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 30755 + - uid: 30610 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 30756 + - uid: 30611 components: - type: Transform pos: -24.5,-17.5 parent: 2 - - uid: 30757 + - uid: 30612 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 30758 + - uid: 30613 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 30759 + - uid: 30614 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 30760 + - uid: 30615 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 30761 + - uid: 30616 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 30762 + - uid: 30617 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,38.5 parent: 2 - - uid: 30763 + - uid: 30618 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,29.5 parent: 2 - - uid: 30764 + - uid: 30619 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-71.5 parent: 2 - - uid: 30765 + - uid: 30620 components: - type: Transform pos: -39.5,52.5 parent: 2 - - uid: 30766 + - uid: 30621 components: - type: Transform pos: -39.5,53.5 parent: 2 - - uid: 30767 + - uid: 30622 components: - type: Transform pos: -7.5,-39.5 parent: 2 - - uid: 30768 + - uid: 30623 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 30769 + - uid: 30624 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,60.5 parent: 2 - - uid: 30770 + - uid: 30625 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 30771 + - uid: 30626 components: - type: Transform pos: 14.5,-57.5 parent: 2 - - uid: 30772 + - uid: 30627 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 30773 + - uid: 30628 components: - type: Transform pos: -62.5,0.5 parent: 2 - - uid: 30775 + - uid: 30629 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 30776 + - uid: 30630 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - uid: 30777 + - uid: 30631 components: - type: Transform pos: 43.5,-37.5 parent: 2 - - uid: 30778 + - uid: 30632 components: - type: Transform pos: -40.5,3.5 parent: 2 - - uid: 30779 + - uid: 30633 components: - type: Transform pos: 4.5,43.5 parent: 2 - - uid: 30780 + - uid: 30634 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 30781 + - uid: 30635 components: - type: Transform pos: 54.5,-42.5 parent: 2 - - uid: 30782 + - uid: 30636 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,38.5 parent: 2 - - uid: 30783 + - uid: 30637 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 30784 + - uid: 30638 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 30785 + - uid: 30639 components: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 30786 + - uid: 30640 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 - - uid: 30787 + - uid: 30641 components: - type: Transform pos: 36.5,-18.5 parent: 2 - - uid: 30788 + - uid: 30642 components: - type: Transform pos: 35.5,-18.5 parent: 2 - - uid: 30789 + - uid: 30643 components: - type: Transform pos: 36.5,-19.5 parent: 2 - - uid: 30790 + - uid: 30644 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 30791 + - uid: 30645 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 30792 + - uid: 30646 components: - type: Transform pos: 3.5,37.5 parent: 2 - - uid: 30793 + - uid: 30647 components: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 30794 + - uid: 30648 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,59.5 parent: 2 - - uid: 30795 + - uid: 30649 components: - type: Transform pos: 8.5,37.5 parent: 2 - - uid: 30796 + - uid: 30650 components: - type: Transform pos: -0.5,50.5 parent: 2 - - uid: 30797 + - uid: 30651 components: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 30798 + - uid: 30652 components: - type: Transform pos: 12.5,-51.5 parent: 2 - - uid: 30799 + - uid: 30653 components: - type: Transform pos: 7.5,-49.5 parent: 2 - - uid: 30800 + - uid: 30654 components: - type: Transform pos: 0.5,50.5 parent: 2 - - uid: 30801 + - uid: 30655 components: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 30802 + - uid: 30656 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 30803 + - uid: 30657 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 30804 + - uid: 30658 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 30805 + - uid: 30659 components: - type: Transform pos: 36.5,-71.5 parent: 2 - - uid: 30806 + - uid: 30660 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 30807 + - uid: 30661 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 30808 + - uid: 30662 components: - type: Transform pos: -39.5,-50.5 parent: 2 - - uid: 30809 + - uid: 30663 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,62.5 parent: 2 - - uid: 30810 + - uid: 30664 components: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 30811 + - uid: 30665 components: - type: Transform pos: -77.5,-30.5 parent: 2 - - uid: 30812 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 - - uid: 30813 + - uid: 30667 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 30814 + - uid: 30668 components: - type: Transform pos: 2.5,-27.5 parent: 2 - - uid: 30815 + - uid: 30669 components: - type: Transform pos: 36.5,-9.5 parent: 2 - - uid: 30816 + - uid: 30670 components: - type: Transform pos: -44.5,-24.5 parent: 2 - - uid: 30817 + - uid: 30671 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 30818 + - uid: 30672 components: - type: Transform pos: 7.5,48.5 parent: 2 - - uid: 30819 + - uid: 30673 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 30820 + - uid: 30674 components: - type: Transform pos: -30.5,-31.5 parent: 2 - - uid: 30821 + - uid: 30675 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,42.5 parent: 2 - - uid: 30822 + - uid: 30676 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 30823 + - uid: 30677 components: - type: Transform pos: -31.5,36.5 parent: 2 - - uid: 30824 + - uid: 30678 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 30825 + - uid: 30679 components: - type: Transform pos: 12.5,75.5 parent: 2 - - uid: 30826 + - uid: 30680 components: - type: Transform pos: 38.5,-63.5 parent: 2 - - uid: 30827 + - uid: 30681 components: - type: Transform pos: 24.5,38.5 parent: 2 - - uid: 30828 + - uid: 30682 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 - - uid: 30829 + - uid: 30683 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 2 - - uid: 30830 + - uid: 30684 components: - type: Transform pos: -24.5,35.5 parent: 2 - - uid: 30831 + - uid: 30685 components: - type: Transform pos: -24.5,37.5 parent: 2 - - uid: 30832 + - uid: 30686 components: - type: Transform pos: -38.5,40.5 parent: 2 - - uid: 30833 + - uid: 30687 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 30834 + - uid: 30688 components: - type: Transform pos: 43.5,-44.5 parent: 2 - - uid: 30835 + - uid: 30689 components: - type: Transform pos: 79.5,-20.5 parent: 2 - - uid: 30836 + - uid: 30690 components: - type: Transform pos: 81.5,-20.5 parent: 2 - - uid: 30837 + - uid: 30691 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 30838 + - uid: 30692 components: - type: Transform pos: 11.5,40.5 parent: 2 - - uid: 30839 + - uid: 30693 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,28.5 parent: 2 - - uid: 30840 + - uid: 30694 components: - type: Transform pos: 23.5,65.5 parent: 2 - - uid: 30841 + - uid: 30695 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 - - uid: 30842 + - uid: 30696 components: - type: Transform pos: 20.5,0.5 parent: 2 - - uid: 30843 + - uid: 30697 components: - type: Transform pos: 9.5,85.5 parent: 2 - - uid: 30844 + - uid: 30698 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,13.5 parent: 2 - - uid: 30845 + - uid: 30699 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-55.5 parent: 2 - - uid: 30846 + - uid: 30700 components: - type: Transform pos: -10.5,-22.5 parent: 2 - - uid: 30847 + - uid: 30701 components: - type: Transform pos: -33.5,34.5 parent: 2 - - uid: 30848 + - uid: 30702 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 30849 + - uid: 30703 components: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 30850 + - uid: 30704 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 30851 + - uid: 30705 components: - type: Transform pos: 22.5,65.5 parent: 2 - - uid: 30852 + - uid: 30706 components: - type: Transform pos: -41.5,40.5 parent: 2 - - uid: 30853 + - uid: 30707 components: - type: Transform pos: -24.5,34.5 parent: 2 - - uid: 30854 + - uid: 30708 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,32.5 parent: 2 - - uid: 30855 + - uid: 30709 components: - type: Transform pos: -8.5,-27.5 parent: 2 - - uid: 30856 + - uid: 30710 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 30857 + - uid: 30711 components: - type: Transform pos: -33.5,37.5 parent: 2 - - uid: 30858 + - uid: 30712 components: - type: Transform pos: 6.5,-48.5 parent: 2 - - uid: 30859 + - uid: 30713 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 30860 + - uid: 30714 components: - type: Transform pos: 11.5,-52.5 parent: 2 - - uid: 30861 + - uid: 30715 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 30862 + - uid: 30716 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 30863 + - uid: 30717 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 30864 + - uid: 30718 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 30865 + - uid: 30719 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 - - uid: 30866 + - uid: 30720 components: - type: Transform pos: 36.5,-10.5 parent: 2 - - uid: 30867 + - uid: 30721 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 30868 + - uid: 30722 components: - type: Transform pos: -29.5,34.5 parent: 2 - - uid: 30869 + - uid: 30723 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-43.5 parent: 2 - - uid: 30870 + - uid: 30724 components: - type: Transform pos: 6.5,33.5 parent: 2 - - uid: 30871 + - uid: 30725 components: - type: Transform pos: -24.5,52.5 parent: 2 - - uid: 30872 + - uid: 30726 components: - type: Transform pos: -25.5,54.5 parent: 2 - - uid: 30873 + - uid: 30727 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,32.5 parent: 2 - - uid: 30874 + - uid: 30728 components: - type: Transform pos: 19.5,26.5 parent: 2 - - uid: 30875 + - uid: 30729 components: - type: Transform pos: 27.5,67.5 parent: 2 - - uid: 30876 + - uid: 30730 components: - type: Transform pos: -24.5,38.5 parent: 2 - - uid: 30877 + - uid: 30731 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 2 - - uid: 30878 + - uid: 30732 components: - type: Transform pos: -24.5,-68.5 parent: 2 - - uid: 30879 + - uid: 30733 components: - type: Transform pos: -30.5,34.5 parent: 2 - - uid: 30880 + - uid: 30734 components: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 30881 + - uid: 30735 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-44.5 parent: 2 - - uid: 30882 + - uid: 30736 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 - - uid: 30883 + - uid: 30737 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-43.5 parent: 2 - - uid: 30884 + - uid: 30738 components: - type: Transform pos: 49.5,-37.5 parent: 2 - - uid: 30885 + - uid: 30739 components: - type: Transform pos: -24.5,-66.5 parent: 2 - - uid: 30886 + - uid: 30740 components: - type: Transform pos: 49.5,-42.5 parent: 2 - - uid: 30887 + - uid: 30741 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 30888 + - uid: 30742 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 30889 + - uid: 30743 components: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 30890 + - uid: 30744 components: - type: Transform pos: -33.5,35.5 parent: 2 - - uid: 30891 + - uid: 30745 components: - type: Transform pos: -15.5,-27.5 parent: 2 - - uid: 30892 + - uid: 30746 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 30893 + - uid: 30747 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 30894 + - uid: 30748 components: - type: Transform pos: 17.5,65.5 parent: 2 - - uid: 30895 + - uid: 30749 components: - type: Transform pos: -27.5,45.5 parent: 2 - - uid: 30896 + - uid: 30750 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-41.5 parent: 2 - - uid: 30897 + - uid: 30751 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-47.5 parent: 2 - - uid: 30898 + - uid: 30752 components: - type: Transform pos: -23.5,-74.5 parent: 2 - - uid: 30899 + - uid: 30753 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 30900 + - uid: 30754 components: - type: Transform pos: -33.5,36.5 parent: 2 - - uid: 30901 + - uid: 30755 components: - type: Transform pos: 14.5,-22.5 parent: 2 - - uid: 30902 + - uid: 30756 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 2 - - uid: 30903 + - uid: 30757 components: - type: Transform pos: -26.5,45.5 parent: 2 - - uid: 30904 + - uid: 30758 components: - type: Transform pos: -77.5,-18.5 parent: 2 - - uid: 30905 + - uid: 30759 components: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 30906 + - uid: 30760 components: - type: Transform pos: 36.5,-13.5 parent: 2 - - uid: 30907 + - uid: 30761 components: - type: Transform pos: -33.5,33.5 parent: 2 - - uid: 30908 + - uid: 30762 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 - - uid: 30909 + - uid: 30763 components: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 30910 + - uid: 30764 components: - type: Transform pos: -24.5,-64.5 parent: 2 - - uid: 30911 + - uid: 30765 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 30912 + - uid: 30766 components: - type: Transform pos: 12.5,76.5 parent: 2 - - uid: 30913 + - uid: 30767 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 30914 + - uid: 30768 components: - type: Transform pos: -34.5,51.5 parent: 2 - - uid: 30915 + - uid: 30769 components: - type: Transform pos: 12.5,81.5 parent: 2 - - uid: 30916 + - uid: 30770 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 - - uid: 30917 + - uid: 30771 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-16.5 parent: 2 - - uid: 30918 + - uid: 30772 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 30919 + - uid: 30773 components: - type: Transform pos: 23.5,8.5 parent: 2 - - uid: 30920 + - uid: 30774 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 30921 + - uid: 30775 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 30922 + - uid: 30776 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-51.5 parent: 2 - - uid: 30923 + - uid: 30777 components: - type: Transform pos: -30.5,36.5 parent: 2 - - uid: 30924 + - uid: 30778 components: - type: Transform pos: 12.5,82.5 parent: 2 - - uid: 30925 + - uid: 30779 components: - type: Transform pos: 3.5,-27.5 parent: 2 - - uid: 30926 + - uid: 30780 components: - type: Transform pos: 20.5,-6.5 parent: 2 - - uid: 30927 + - uid: 30781 components: - type: Transform pos: -33.5,38.5 parent: 2 - - uid: 30928 + - uid: 30782 components: - type: Transform pos: 4.5,37.5 parent: 2 - - uid: 30929 + - uid: 30783 components: - type: Transform pos: 4.5,39.5 parent: 2 - - uid: 30930 + - uid: 30784 components: - type: Transform pos: 6.5,39.5 parent: 2 - - uid: 30931 + - uid: 30785 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 30932 + - uid: 30786 components: - type: Transform pos: 38.5,-19.5 parent: 2 - - uid: 30933 + - uid: 30787 components: - type: Transform pos: -31.5,34.5 parent: 2 - - uid: 30934 + - uid: 30788 components: - type: Transform pos: 27.5,65.5 parent: 2 - - uid: 30935 + - uid: 30789 components: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 30936 + - uid: 30790 components: - type: Transform pos: -44.5,-30.5 parent: 2 - - uid: 30937 + - uid: 30791 components: - type: Transform pos: -8.5,-22.5 parent: 2 - - uid: 30938 + - uid: 30792 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,9.5 parent: 2 - - uid: 30939 + - uid: 30793 components: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 30940 + - uid: 30794 components: - type: Transform pos: 38.5,-12.5 parent: 2 - - uid: 30941 + - uid: 30795 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 30942 + - uid: 30796 components: - type: Transform pos: 12.5,-52.5 parent: 2 - - uid: 30943 + - uid: 30797 components: - type: Transform pos: 74.5,-39.5 parent: 2 - - uid: 30944 + - uid: 30798 components: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 30945 + - uid: 30799 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,63.5 parent: 2 - - uid: 30946 + - uid: 30800 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,63.5 parent: 2 - - uid: 30947 + - uid: 30801 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-45.5 parent: 2 - - uid: 30948 + - uid: 30802 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-50.5 parent: 2 - - uid: 30949 + - uid: 30803 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-45.5 parent: 2 - - uid: 30950 + - uid: 30804 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 30951 + - uid: 30805 components: - type: Transform pos: -29.5,36.5 parent: 2 - - uid: 30952 + - uid: 30806 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 30953 + - uid: 30807 components: - type: Transform pos: -28.5,45.5 parent: 2 - - uid: 30954 + - uid: 30808 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,47.5 parent: 2 - - uid: 30955 + - uid: 30809 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,47.5 parent: 2 - - uid: 30956 + - uid: 30810 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,47.5 parent: 2 - - uid: 30957 + - uid: 30811 components: - type: Transform pos: -18.5,-32.5 parent: 2 - - uid: 30958 + - uid: 30812 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 30959 + - uid: 30813 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-4.5 parent: 2 - - uid: 30960 + - uid: 30814 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-1.5 parent: 2 - - uid: 30961 + - uid: 30815 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-1.5 parent: 2 - - uid: 30962 + - uid: 30816 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-1.5 parent: 2 - - uid: 30963 + - uid: 30817 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-1.5 parent: 2 - - uid: 30964 + - uid: 30818 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-1.5 parent: 2 - - uid: 30965 + - uid: 30819 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-1.5 parent: 2 - - uid: 30966 + - uid: 30820 components: - type: Transform pos: 100.5,-1.5 parent: 2 - - uid: 30967 + - uid: 30821 components: - type: Transform pos: 100.5,-2.5 parent: 2 - - uid: 30968 + - uid: 30822 components: - type: Transform pos: 100.5,-3.5 parent: 2 - - uid: 30969 + - uid: 30823 components: - type: Transform pos: 17.5,27.5 parent: 2 - - uid: 30970 + - uid: 30824 components: - type: Transform pos: 67.5,27.5 parent: 2 - - uid: 30971 + - uid: 30825 components: - type: Transform pos: 64.5,27.5 parent: 2 - - uid: 30972 + - uid: 30826 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 30973 + - uid: 30827 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-8.5 parent: 2 - - uid: 39718 + - uid: 39545 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 - parent: 38584 - - uid: 39719 + parent: 38411 + - uid: 39546 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-2.5 - parent: 38584 - - uid: 39720 + parent: 38411 + - uid: 39547 components: - type: Transform pos: 11.5,-4.5 - parent: 38584 - - uid: 39721 + parent: 38411 + - uid: 39548 components: - type: Transform pos: 11.5,-2.5 - parent: 38584 - - uid: 39722 + parent: 38411 + - uid: 39549 components: - type: Transform pos: 11.5,-3.5 - parent: 38584 - - uid: 39723 + parent: 38411 + - uid: 39550 components: - type: Transform pos: 3.5,0.5 - parent: 38584 - - uid: 39724 + parent: 38411 + - uid: 39551 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,30.5 - parent: 38584 - - uid: 39725 + parent: 38411 + - uid: 39552 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,30.5 - parent: 38584 - - uid: 39726 + parent: 38411 + - uid: 39553 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-3.5 - parent: 38584 - - uid: 39727 + parent: 38411 + - uid: 39554 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-1.5 - parent: 38584 + parent: 38411 - proto: TableBrass entities: - - uid: 30974 + - uid: 30828 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,62.5 parent: 2 - - uid: 30975 + - uid: 30829 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,62.5 parent: 2 - - uid: 30976 + - uid: 30830 components: - type: Transform rot: 3.141592653589793 rad @@ -233097,64 +233165,64 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 30977 + - uid: 30831 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,7.5 parent: 2 - - uid: 30978 + - uid: 30832 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,5.5 parent: 2 - - uid: 30979 + - uid: 30833 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,28.5 parent: 2 - - uid: 30980 + - uid: 30834 components: - type: Transform pos: -39.5,-9.5 parent: 2 - - uid: 30981 + - uid: 30835 components: - type: Transform pos: -40.5,-9.5 parent: 2 - - uid: 30982 + - uid: 30836 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 - - uid: 30983 + - uid: 30837 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-2.5 parent: 2 - - uid: 30984 + - uid: 30838 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 30985 + - uid: 30839 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,1.5 parent: 2 - - uid: 30986 + - uid: 30840 components: - type: Transform pos: -39.5,-10.5 parent: 2 - - uid: 30987 + - uid: 30841 components: - type: Transform rot: -1.5707963267948966 rad @@ -233162,571 +233230,571 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 30988 + - uid: 30842 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 30989 + - uid: 30843 components: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 30990 + - uid: 30844 components: - type: Transform pos: 10.5,67.5 parent: 2 - - uid: 30991 + - uid: 30845 components: - type: Transform pos: 78.5,8.5 parent: 2 - - uid: 30992 + - uid: 30846 components: - type: Transform pos: 76.5,8.5 parent: 2 - proto: TableCounterWood entities: - - uid: 30993 + - uid: 30847 components: - type: Transform pos: 93.5,-1.5 parent: 2 - - uid: 30994 + - uid: 30848 components: - type: Transform pos: 94.5,-1.5 parent: 2 - - uid: 30995 + - uid: 30849 components: - type: Transform pos: 92.5,-1.5 parent: 2 - - uid: 30996 + - uid: 30850 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,60.5 parent: 2 - - uid: 30997 + - uid: 30851 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,59.5 parent: 2 - - uid: 30998 + - uid: 30852 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,58.5 parent: 2 - - uid: 30999 + - uid: 30853 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,61.5 parent: 2 - - uid: 31000 + - uid: 30854 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,62.5 parent: 2 - - uid: 31001 + - uid: 30855 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 - - uid: 31002 + - uid: 30856 components: - type: Transform pos: -55.5,-44.5 parent: 2 - - uid: 31003 + - uid: 30857 components: - type: Transform pos: -55.5,-45.5 parent: 2 - - uid: 31004 + - uid: 30858 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 31005 + - uid: 30859 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-44.5 parent: 2 - - uid: 31006 + - uid: 30860 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-44.5 parent: 2 - - uid: 31007 + - uid: 30861 components: - type: Transform pos: -49.5,-48.5 parent: 2 - - uid: 31008 + - uid: 30862 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 31009 + - uid: 30863 components: - type: Transform pos: 91.5,-1.5 parent: 2 - proto: TableFancyPink entities: - - uid: 31010 + - uid: 30864 components: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 31011 + - uid: 30865 components: - type: Transform pos: -62.5,-40.5 parent: 2 - - uid: 31012 + - uid: 30866 components: - type: Transform pos: -70.5,-40.5 parent: 2 - - uid: 31013 + - uid: 30867 components: - type: Transform pos: -68.5,-43.5 parent: 2 - proto: TableFancyRed entities: - - uid: 31014 + - uid: 30868 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 31015 + - uid: 30869 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 31016 + - uid: 30870 components: - type: Transform pos: -11.5,36.5 parent: 2 - - uid: 31017 + - uid: 30871 components: - type: Transform pos: -11.5,38.5 parent: 2 - proto: TableFrame entities: - - uid: 1356 + - uid: 30872 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-25.5 parent: 2 - - uid: 31018 + - uid: 30873 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 31019 + - uid: 30874 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 31020 + - uid: 30875 components: - type: Transform pos: -39.5,-71.5 parent: 2 - - uid: 31021 + - uid: 30876 components: - type: Transform pos: -39.5,-72.5 parent: 2 - - uid: 31022 + - uid: 30877 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-71.5 parent: 2 - - uid: 31023 + - uid: 30878 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-74.5 parent: 2 - - uid: 31024 + - uid: 30879 components: - type: Transform pos: 27.5,-65.5 parent: 2 - proto: TableGlass entities: - - uid: 1053 + - uid: 30880 components: - type: Transform pos: -61.5,-25.5 parent: 2 - - uid: 31025 + - uid: 30881 components: - type: Transform pos: -26.5,43.5 parent: 2 - - uid: 31026 + - uid: 30882 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,68.5 parent: 2 - - uid: 31027 + - uid: 30883 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,84.5 parent: 2 - - uid: 31028 + - uid: 30884 components: - type: Transform pos: -27.5,43.5 parent: 2 - - uid: 31029 + - uid: 30885 components: - type: Transform pos: 7.5,90.5 parent: 2 - - uid: 31030 + - uid: 30886 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 31031 + - uid: 30887 components: - type: Transform pos: 21.5,-52.5 parent: 2 - - uid: 31032 + - uid: 30888 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 31033 + - uid: 30889 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,77.5 parent: 2 - - uid: 31034 + - uid: 30890 components: - type: Transform pos: 43.5,-60.5 parent: 2 - - uid: 31035 + - uid: 30891 components: - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 31036 + - uid: 30892 components: - type: Transform pos: 32.5,-25.5 parent: 2 - - uid: 31037 + - uid: 30893 components: - type: Transform pos: 45.5,-60.5 parent: 2 - - uid: 31038 + - uid: 30894 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 31039 + - uid: 30895 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 31040 + - uid: 30896 components: - type: Transform pos: 3.5,-29.5 parent: 2 - - uid: 31041 + - uid: 30897 components: - type: Transform pos: 13.5,-37.5 parent: 2 - - uid: 31042 + - uid: 30898 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 31043 + - uid: 30899 components: - type: Transform pos: 24.5,-46.5 parent: 2 - - uid: 31044 + - uid: 30900 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 31045 + - uid: 30901 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 31046 + - uid: 30902 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 31047 + - uid: 30903 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 31048 + - uid: 30904 components: - type: Transform pos: 41.5,-74.5 parent: 2 - - uid: 31049 + - uid: 30905 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 31050 + - uid: 30906 components: - type: Transform pos: 31.5,-26.5 parent: 2 - - uid: 31051 + - uid: 30907 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 31052 + - uid: 30908 components: - type: Transform pos: 27.5,-69.5 parent: 2 - - uid: 31053 + - uid: 30909 components: - type: Transform pos: 38.5,-74.5 parent: 2 - - uid: 31054 + - uid: 30910 components: - type: Transform pos: 26.5,-68.5 parent: 2 - - uid: 31055 + - uid: 30911 components: - type: Transform pos: -7.5,36.5 parent: 2 - - uid: 31056 + - uid: 30912 components: - type: Transform pos: 26.5,-27.5 parent: 2 - - uid: 31057 + - uid: 30913 components: - type: Transform pos: 30.5,-26.5 parent: 2 - - uid: 31058 + - uid: 30914 components: - type: Transform pos: 42.5,-70.5 parent: 2 - - uid: 31059 + - uid: 30915 components: - type: Transform pos: -5.5,41.5 parent: 2 - - uid: 31060 + - uid: 30916 components: - type: Transform pos: 26.5,-65.5 parent: 2 - - uid: 31061 + - uid: 30917 components: - type: Transform pos: -5.5,42.5 parent: 2 - - uid: 31062 + - uid: 30918 components: - type: Transform pos: -5.5,40.5 parent: 2 - - uid: 31063 + - uid: 30919 components: - type: Transform pos: -5.5,43.5 parent: 2 - - uid: 31064 + - uid: 30920 components: - type: Transform pos: 38.5,-60.5 parent: 2 - - uid: 31065 + - uid: 30921 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 31066 + - uid: 30922 components: - type: Transform pos: 24.5,-42.5 parent: 2 - - uid: 31067 + - uid: 30923 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 31068 + - uid: 30924 components: - type: Transform pos: 20.5,-40.5 parent: 2 - - uid: 31069 + - uid: 30925 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 31070 + - uid: 30926 components: - type: Transform pos: 42.5,-69.5 parent: 2 - - uid: 31071 + - uid: 30927 components: - type: Transform pos: 6.5,-42.5 parent: 2 - - uid: 31072 + - uid: 30928 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 31073 + - uid: 30929 components: - type: Transform pos: 23.5,-46.5 parent: 2 - - uid: 31074 + - uid: 30930 components: - type: Transform pos: 28.5,-25.5 parent: 2 - - uid: 31075 + - uid: 30931 components: - type: Transform pos: 28.5,-24.5 parent: 2 - - uid: 31076 + - uid: 30932 components: - type: Transform pos: 28.5,-26.5 parent: 2 - - uid: 31077 + - uid: 30933 components: - type: Transform pos: 38.5,-59.5 parent: 2 - - uid: 31078 + - uid: 30934 components: - type: Transform pos: 39.5,-59.5 parent: 2 - - uid: 31079 + - uid: 30935 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-30.5 parent: 2 - - uid: 31080 + - uid: 30936 components: - type: Transform pos: 30.5,-46.5 parent: 2 - - uid: 31081 + - uid: 30937 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 31082 + - uid: 30938 components: - type: Transform pos: 26.5,-69.5 parent: 2 - - uid: 31083 + - uid: 30939 components: - type: Transform pos: 23.5,-42.5 parent: 2 - - uid: 31084 + - uid: 30940 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 31085 + - uid: 30941 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 31086 + - uid: 30942 components: - type: Transform pos: -4.5,-63.5 parent: 2 - - uid: 31087 + - uid: 30943 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 31088 + - uid: 30944 components: - type: Transform pos: -6.5,-77.5 parent: 2 - - uid: 31089 + - uid: 30945 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 31090 + - uid: 30946 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 31091 + - uid: 30947 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,77.5 parent: 2 - - uid: 31092 + - uid: 30948 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-66.5 parent: 2 - - uid: 31093 + - uid: 30949 components: - type: Transform rot: 3.141592653589793 rad @@ -233734,2456 +233802,2456 @@ entities: parent: 2 - proto: TablePlasmaGlass entities: - - uid: 31094 + - uid: 30950 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 31095 + - uid: 30951 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-56.5 parent: 2 - - uid: 31096 + - uid: 30952 components: - type: Transform pos: -18.5,-55.5 parent: 2 - - uid: 31097 + - uid: 30953 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 31098 + - uid: 30954 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-47.5 parent: 2 - - uid: 31099 + - uid: 30955 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 39728 + - uid: 39555 components: - type: Transform pos: -20.5,33.5 - parent: 38584 - - uid: 39729 + parent: 38411 + - uid: 39556 components: - type: Transform pos: -20.5,34.5 - parent: 38584 + parent: 38411 - proto: TableReinforced entities: - - uid: 31100 + - uid: 30956 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-4.5 parent: 2 - - uid: 31101 + - uid: 30957 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-2.5 parent: 2 - - uid: 31102 + - uid: 30958 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 - - uid: 31103 + - uid: 30959 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-3.5 parent: 2 - - uid: 31104 + - uid: 30960 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 - - uid: 31105 + - uid: 30961 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 - - uid: 31106 + - uid: 30962 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-3.5 parent: 2 - - uid: 31107 + - uid: 30963 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-3.5 parent: 2 - - uid: 31108 + - uid: 30964 components: - type: Transform pos: 46.5,11.5 parent: 2 - - uid: 31109 + - uid: 30965 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,27.5 parent: 2 - - uid: 31110 + - uid: 30966 components: - type: Transform pos: 56.5,23.5 parent: 2 - - uid: 31111 + - uid: 30967 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 31112 + - uid: 30968 components: - type: Transform pos: 53.5,25.5 parent: 2 - - uid: 31113 + - uid: 30969 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 31114 + - uid: 30970 components: - type: Transform pos: 52.5,25.5 parent: 2 - - uid: 31115 + - uid: 30971 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,29.5 parent: 2 - - uid: 31116 + - uid: 30972 components: - type: Transform pos: 53.5,23.5 parent: 2 - - uid: 31117 + - uid: 30973 components: - type: Transform pos: 55.5,23.5 parent: 2 - - uid: 31118 + - uid: 30974 components: - type: Transform pos: 52.5,23.5 parent: 2 - - uid: 31119 + - uid: 30975 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,31.5 parent: 2 - - uid: 31120 + - uid: 30976 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,30.5 parent: 2 - - uid: 31121 + - uid: 30977 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,29.5 parent: 2 - - uid: 31122 + - uid: 30978 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,31.5 parent: 2 - - uid: 31123 + - uid: 30979 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,27.5 parent: 2 - - uid: 31124 + - uid: 30980 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,30.5 parent: 2 - - uid: 31125 + - uid: 30981 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,30.5 parent: 2 - - uid: 31126 + - uid: 30982 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,29.5 parent: 2 - - uid: 31127 + - uid: 30983 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 2 - - uid: 31128 + - uid: 30984 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-0.5 parent: 2 - - uid: 31129 + - uid: 30985 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 31130 + - uid: 30986 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-31.5 parent: 2 - - uid: 31131 + - uid: 30987 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 - - uid: 31132 + - uid: 30988 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,14.5 parent: 2 - - uid: 31133 + - uid: 30989 components: - type: Transform pos: -57.5,56.5 parent: 2 - - uid: 31134 + - uid: 30990 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,31.5 parent: 2 - - uid: 31135 + - uid: 30991 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,29.5 parent: 2 - - uid: 31136 + - uid: 30992 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,32.5 parent: 2 - - uid: 31137 + - uid: 30993 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,31.5 parent: 2 - - uid: 31138 + - uid: 30994 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,29.5 parent: 2 - - uid: 31139 + - uid: 30995 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,32.5 parent: 2 - - uid: 31140 + - uid: 30996 components: - type: Transform pos: 9.5,-33.5 parent: 2 - - uid: 31141 + - uid: 30997 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 31142 + - uid: 30998 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-28.5 parent: 2 - - uid: 31143 + - uid: 30999 components: - type: Transform pos: 9.5,32.5 parent: 2 - - uid: 31144 + - uid: 31000 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-34.5 parent: 2 - - uid: 31145 + - uid: 31001 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 31146 + - uid: 31002 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,43.5 parent: 2 - - uid: 31147 + - uid: 31003 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 31148 + - uid: 31004 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 31149 + - uid: 31005 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 31150 + - uid: 31006 components: - type: Transform pos: 2.5,-59.5 parent: 2 - - uid: 31151 + - uid: 31007 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,11.5 parent: 2 - - uid: 31152 + - uid: 31008 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,14.5 parent: 2 - - uid: 31153 + - uid: 31009 components: - type: Transform pos: -60.5,22.5 parent: 2 - - uid: 31154 + - uid: 31010 components: - type: Transform pos: -60.5,23.5 parent: 2 - - uid: 31155 + - uid: 31011 components: - type: Transform pos: -14.5,4.5 parent: 2 - - uid: 31156 + - uid: 31012 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,14.5 parent: 2 - - uid: 31157 + - uid: 31013 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,28.5 parent: 2 - - uid: 31158 + - uid: 31014 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 2 - - uid: 31159 + - uid: 31015 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,62.5 parent: 2 - - uid: 31160 + - uid: 31016 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 31161 + - uid: 31017 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 31162 + - uid: 31018 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 31163 + - uid: 31019 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 31164 + - uid: 31020 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-28.5 parent: 2 - - uid: 31165 + - uid: 31021 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-59.5 parent: 2 - - uid: 31166 + - uid: 31022 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,18.5 parent: 2 - - uid: 31167 + - uid: 31023 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-15.5 parent: 2 - - uid: 31168 + - uid: 31024 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-15.5 parent: 2 - - uid: 31169 + - uid: 31025 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 - - uid: 31170 + - uid: 31026 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 - - uid: 31171 + - uid: 31027 components: - type: Transform pos: 72.5,23.5 parent: 2 - - uid: 31172 + - uid: 31028 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 31173 + - uid: 31029 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,61.5 parent: 2 - - uid: 31174 + - uid: 31030 components: - type: Transform pos: 72.5,22.5 parent: 2 - - uid: 31175 + - uid: 31031 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 - - uid: 31176 + - uid: 31032 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 31177 + - uid: 31033 components: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 31178 + - uid: 31034 components: - type: Transform pos: -22.5,0.5 parent: 2 - - uid: 31179 + - uid: 31035 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,0.5 parent: 2 - - uid: 31180 + - uid: 31036 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 31181 + - uid: 31037 components: - type: Transform pos: 50.5,7.5 parent: 2 - - uid: 31182 + - uid: 31038 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-4.5 parent: 2 - - uid: 31183 + - uid: 31039 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,30.5 parent: 2 - - uid: 31184 + - uid: 31040 components: - type: Transform pos: -10.5,-52.5 parent: 2 - - uid: 31185 + - uid: 31041 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 - - uid: 31186 + - uid: 31042 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-52.5 parent: 2 - - uid: 31187 + - uid: 31043 components: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 31188 + - uid: 31044 components: - type: Transform pos: -9.5,-52.5 parent: 2 - - uid: 31189 + - uid: 31045 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,21.5 parent: 2 - - uid: 31190 + - uid: 31046 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 31191 + - uid: 31047 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,15.5 parent: 2 - - uid: 31192 + - uid: 31048 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,16.5 parent: 2 - - uid: 31193 + - uid: 31049 components: - type: Transform pos: -24.5,-43.5 parent: 2 - - uid: 31194 + - uid: 31050 components: - type: Transform pos: 8.5,-60.5 parent: 2 - - uid: 31195 + - uid: 31051 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,19.5 parent: 2 - - uid: 31196 + - uid: 31052 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,15.5 parent: 2 - - uid: 31197 + - uid: 31053 components: - type: Transform pos: 58.5,13.5 parent: 2 - - uid: 31198 + - uid: 31054 components: - type: Transform pos: 50.5,6.5 parent: 2 - - uid: 31199 + - uid: 31055 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,16.5 parent: 2 - - uid: 31200 + - uid: 31056 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 31201 + - uid: 31057 components: - type: Transform pos: -8.5,-52.5 parent: 2 - - uid: 31202 + - uid: 31058 components: - type: Transform pos: 70.5,12.5 parent: 2 - - uid: 31203 + - uid: 31059 components: - type: Transform pos: -10.5,-51.5 parent: 2 - - uid: 31204 + - uid: 31060 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,21.5 parent: 2 - - uid: 31205 + - uid: 31061 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-42.5 parent: 2 - - uid: 31206 + - uid: 31062 components: - type: Transform pos: 53.5,3.5 parent: 2 - - uid: 31207 + - uid: 31063 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 31208 + - uid: 31064 components: - type: Transform rot: 3.141592653589793 rad pos: -121.5,21.5 parent: 2 - - uid: 31209 + - uid: 31065 components: - type: Transform pos: 54.5,3.5 parent: 2 - - uid: 31210 + - uid: 31066 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 31211 + - uid: 31067 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 31212 + - uid: 31068 components: - type: Transform pos: 69.5,12.5 parent: 2 - - uid: 31213 + - uid: 31069 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 31214 + - uid: 31070 components: - type: Transform pos: 56.5,13.5 parent: 2 - - uid: 31215 + - uid: 31071 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 31216 + - uid: 31072 components: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 31217 + - uid: 31073 components: - type: Transform pos: 46.5,2.5 parent: 2 - - uid: 31218 + - uid: 31074 components: - type: Transform pos: -15.5,5.5 parent: 2 - - uid: 31219 + - uid: 31075 components: - type: Transform pos: 4.5,18.5 parent: 2 - - uid: 31220 + - uid: 31076 components: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 31221 + - uid: 31077 components: - type: Transform pos: -25.5,-27.5 parent: 2 - - uid: 31222 + - uid: 31078 components: - type: Transform pos: -5.5,18.5 parent: 2 - - uid: 31223 + - uid: 31079 components: - type: Transform pos: 20.5,38.5 parent: 2 - - uid: 31224 + - uid: 31080 components: - type: Transform pos: -7.5,-61.5 parent: 2 - - uid: 31225 + - uid: 31081 components: - type: Transform pos: -45.5,17.5 parent: 2 - - uid: 31226 + - uid: 31082 components: - type: Transform pos: -45.5,-16.5 parent: 2 - - uid: 31227 + - uid: 31083 components: - type: Transform pos: 27.5,37.5 parent: 2 - - uid: 31228 + - uid: 31084 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 31229 + - uid: 31085 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 31230 + - uid: 31086 components: - type: Transform pos: 3.5,-60.5 parent: 2 - - uid: 31231 + - uid: 31087 components: - type: Transform pos: -41.5,-13.5 parent: 2 - - uid: 31232 + - uid: 31088 components: - type: Transform pos: -40.5,-13.5 parent: 2 - - uid: 31233 + - uid: 31089 components: - type: Transform pos: -4.5,-60.5 parent: 2 - - uid: 31234 + - uid: 31090 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,34.5 parent: 2 - - uid: 31235 + - uid: 31091 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 31236 + - uid: 31092 components: - type: Transform pos: -65.5,17.5 parent: 2 - - uid: 31237 + - uid: 31093 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,12.5 parent: 2 - - uid: 31238 + - uid: 31094 components: - type: Transform pos: -16.5,-40.5 parent: 2 - - uid: 31239 + - uid: 31095 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 31240 + - uid: 31096 components: - type: Transform pos: 10.5,46.5 parent: 2 - - uid: 31241 + - uid: 31097 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,16.5 parent: 2 - - uid: 31242 + - uid: 31098 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 31243 + - uid: 31099 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 31244 + - uid: 31100 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 31245 + - uid: 31101 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-44.5 parent: 2 - - uid: 31246 + - uid: 31102 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 31247 + - uid: 31103 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,21.5 parent: 2 - - uid: 31248 + - uid: 31104 components: - type: Transform pos: 20.5,39.5 parent: 2 - - uid: 31249 + - uid: 31105 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 31250 + - uid: 31106 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 31251 + - uid: 31107 components: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 31252 + - uid: 31108 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 31253 + - uid: 31109 components: - type: Transform pos: -20.5,-42.5 parent: 2 - - uid: 31254 + - uid: 31110 components: - type: Transform pos: -20.5,-43.5 parent: 2 - - uid: 31255 + - uid: 31111 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 31256 + - uid: 31112 components: - type: Transform pos: -5.5,12.5 parent: 2 - - uid: 31257 + - uid: 31113 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,62.5 parent: 2 - - uid: 31258 + - uid: 31114 components: - type: Transform pos: 3.5,12.5 parent: 2 - - uid: 31259 + - uid: 31115 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-13.5 parent: 2 - - uid: 31260 + - uid: 31116 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-31.5 parent: 2 - - uid: 31261 + - uid: 31117 components: - type: Transform pos: -65.5,18.5 parent: 2 - - uid: 31262 + - uid: 31118 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 31263 + - uid: 31119 components: - type: Transform pos: -63.5,18.5 parent: 2 - - uid: 31264 + - uid: 31120 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 31265 + - uid: 31121 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 31266 + - uid: 31122 components: - type: Transform pos: -16.5,-37.5 parent: 2 - - uid: 31267 + - uid: 31123 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 31268 + - uid: 31124 components: - type: Transform pos: -56.5,-1.5 parent: 2 - - uid: 31269 + - uid: 31125 components: - type: Transform pos: -26.5,-44.5 parent: 2 - - uid: 31270 + - uid: 31126 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 31271 + - uid: 31127 components: - type: Transform pos: -45.5,-13.5 parent: 2 - - uid: 31272 + - uid: 31128 components: - type: Transform pos: -53.5,35.5 parent: 2 - - uid: 31273 + - uid: 31129 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 31274 + - uid: 31130 components: - type: Transform pos: -47.5,-25.5 parent: 2 - - uid: 31275 + - uid: 31131 components: - type: Transform pos: -59.5,42.5 parent: 2 - - uid: 31276 + - uid: 31132 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-45.5 parent: 2 - - uid: 31277 + - uid: 31133 components: - type: Transform pos: -37.5,16.5 parent: 2 - - uid: 31278 + - uid: 31134 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - - uid: 31279 + - uid: 31135 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 31280 + - uid: 31136 components: - type: Transform pos: 33.5,32.5 parent: 2 - - uid: 31281 + - uid: 31137 components: - type: Transform pos: 7.5,65.5 parent: 2 - - uid: 31282 + - uid: 31138 components: - type: Transform pos: 21.5,68.5 parent: 2 - - uid: 31283 + - uid: 31139 components: - type: Transform pos: 19.5,68.5 parent: 2 - - uid: 31284 + - uid: 31140 components: - type: Transform pos: -62.5,9.5 parent: 2 - - uid: 31285 + - uid: 31141 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-40.5 parent: 2 - - uid: 31286 + - uid: 31142 components: - type: Transform pos: -40.5,-29.5 parent: 2 - - uid: 31287 + - uid: 31143 components: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 31288 + - uid: 31144 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 31289 + - uid: 31145 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 31290 + - uid: 31146 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 31291 + - uid: 31147 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 31292 + - uid: 31148 components: - type: Transform pos: -57.5,-1.5 parent: 2 - - uid: 31293 + - uid: 31149 components: - type: Transform pos: -45.5,-15.5 parent: 2 - - uid: 31294 + - uid: 31150 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 31295 + - uid: 31151 components: - type: Transform pos: -47.5,-29.5 parent: 2 - - uid: 31296 + - uid: 31152 components: - type: Transform pos: -50.5,-5.5 parent: 2 - - uid: 31297 + - uid: 31153 components: - type: Transform pos: -45.5,-17.5 parent: 2 - - uid: 31298 + - uid: 31154 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-5.5 parent: 2 - - uid: 31299 + - uid: 31155 components: - type: Transform pos: -62.5,8.5 parent: 2 - - uid: 31300 + - uid: 31156 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - uid: 31301 + - uid: 31157 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 31302 + - uid: 31158 components: - type: Transform pos: -42.5,-25.5 parent: 2 - - uid: 31303 + - uid: 31159 components: - type: Transform pos: -38.5,-25.5 parent: 2 - - uid: 31304 + - uid: 31160 components: - type: Transform pos: -34.5,-25.5 parent: 2 - - uid: 31305 + - uid: 31161 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 31306 + - uid: 31162 components: - type: Transform pos: -24.5,12.5 parent: 2 - - uid: 31307 + - uid: 31163 components: - type: Transform pos: -38.5,13.5 parent: 2 - - uid: 31308 + - uid: 31164 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-5.5 parent: 2 - - uid: 31309 + - uid: 31165 components: - type: Transform pos: -9.5,-35.5 parent: 2 - - uid: 31310 + - uid: 31166 components: - type: Transform pos: -50.5,-9.5 parent: 2 - - uid: 31311 + - uid: 31167 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - uid: 31312 + - uid: 31168 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,12.5 parent: 2 - - uid: 31313 + - uid: 31169 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 31314 + - uid: 31170 components: - type: Transform pos: -45.5,-12.5 parent: 2 - - uid: 31315 + - uid: 31171 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,12.5 parent: 2 - - uid: 31316 + - uid: 31172 components: - type: Transform pos: -9.5,-32.5 parent: 2 - - uid: 31317 + - uid: 31173 components: - type: Transform pos: -33.5,8.5 parent: 2 - - uid: 31318 + - uid: 31174 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-24.5 parent: 2 - - uid: 31319 + - uid: 31175 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-24.5 parent: 2 - - uid: 31320 + - uid: 31176 components: - type: Transform pos: -49.5,20.5 parent: 2 - - uid: 31321 + - uid: 31177 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 - - uid: 31322 + - uid: 31178 components: - type: Transform pos: -38.5,9.5 parent: 2 - - uid: 31323 + - uid: 31179 components: - type: Transform pos: -54.5,-5.5 parent: 2 - - uid: 31324 + - uid: 31180 components: - type: Transform pos: -57.5,-17.5 parent: 2 - - uid: 31325 + - uid: 31181 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 31326 + - uid: 31182 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 31327 + - uid: 31183 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 31328 + - uid: 31184 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 31329 + - uid: 31185 components: - type: Transform pos: -6.5,-47.5 parent: 2 - - uid: 31330 + - uid: 31186 components: - type: Transform pos: 68.5,12.5 parent: 2 - - uid: 31331 + - uid: 31187 components: - type: Transform pos: -54.5,9.5 parent: 2 - - uid: 31332 + - uid: 31188 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-13.5 parent: 2 - - uid: 31333 + - uid: 31189 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 31334 + - uid: 31190 components: - type: Transform pos: -6.5,-46.5 parent: 2 - - uid: 31335 + - uid: 31191 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 31336 + - uid: 31192 components: - type: Transform pos: -32.5,9.5 parent: 2 - - uid: 31337 + - uid: 31193 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 31338 + - uid: 31194 components: - type: Transform pos: -59.5,52.5 parent: 2 - - uid: 31339 + - uid: 31195 components: - type: Transform pos: 27.5,35.5 parent: 2 - - uid: 31340 + - uid: 31196 components: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 31341 + - uid: 31197 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,35.5 parent: 2 - - uid: 31342 + - uid: 31198 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,37.5 parent: 2 - - uid: 31343 + - uid: 31199 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,33.5 parent: 2 - - uid: 31344 + - uid: 31200 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 31345 + - uid: 31201 components: - type: Transform pos: -63.5,9.5 parent: 2 - - uid: 31346 + - uid: 31202 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 31347 + - uid: 31203 components: - type: Transform pos: 18.5,68.5 parent: 2 - - uid: 31348 + - uid: 31204 components: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 31349 + - uid: 31205 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 31350 + - uid: 31206 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 31351 + - uid: 31207 components: - type: Transform pos: 2.5,65.5 parent: 2 - - uid: 31352 + - uid: 31208 components: - type: Transform pos: 29.5,44.5 parent: 2 - - uid: 31353 + - uid: 31209 components: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 31354 + - uid: 31210 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 31355 + - uid: 31211 components: - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 31356 + - uid: 31212 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 31357 + - uid: 31213 components: - type: Transform pos: -58.5,3.5 parent: 2 - - uid: 31358 + - uid: 31214 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,36.5 parent: 2 - - uid: 31359 + - uid: 31215 components: - type: Transform pos: -59.5,54.5 parent: 2 - - uid: 31360 + - uid: 31216 components: - type: Transform pos: -59.5,53.5 parent: 2 - - uid: 31361 + - uid: 31217 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,38.5 parent: 2 - - uid: 31362 + - uid: 31218 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 31363 + - uid: 31219 components: - type: Transform pos: -46.5,17.5 parent: 2 - - uid: 31364 + - uid: 31220 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,32.5 parent: 2 - - uid: 31365 + - uid: 31221 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 31366 + - uid: 31222 components: - type: Transform pos: 29.5,-0.5 parent: 2 - - uid: 31368 + - uid: 31223 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 31370 + - uid: 31224 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 31371 + - uid: 31225 components: - type: Transform pos: 29.5,0.5 parent: 2 - - uid: 31372 + - uid: 31226 components: - type: Transform pos: -36.5,-29.5 parent: 2 - - uid: 31373 + - uid: 31227 components: - type: Transform pos: -54.5,-10.5 parent: 2 - - uid: 31375 + - uid: 31228 components: - type: Transform pos: 14.5,39.5 parent: 2 - - uid: 31376 + - uid: 31229 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 31377 + - uid: 31230 components: - type: Transform pos: 47.5,-35.5 parent: 2 - - uid: 31378 + - uid: 31231 components: - type: Transform pos: -63.5,11.5 parent: 2 - - uid: 31379 + - uid: 31232 components: - type: Transform pos: 4.5,17.5 parent: 2 - - uid: 31380 + - uid: 31233 components: - type: Transform pos: -64.5,18.5 parent: 2 - - uid: 31381 + - uid: 31234 components: - type: Transform pos: -55.5,9.5 parent: 2 - - uid: 31382 + - uid: 31235 components: - type: Transform pos: 72.5,0.5 parent: 2 - - uid: 31383 + - uid: 31236 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 31384 + - uid: 31237 components: - type: Transform pos: -32.5,15.5 parent: 2 - - uid: 31385 + - uid: 31238 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 31386 + - uid: 31239 components: - type: Transform pos: 45.5,-35.5 parent: 2 - - uid: 31387 + - uid: 31240 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,38.5 parent: 2 - - uid: 31388 + - uid: 31241 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-47.5 parent: 2 - - uid: 31389 + - uid: 31242 components: - type: Transform pos: -60.5,13.5 parent: 2 - - uid: 31390 + - uid: 31243 components: - type: Transform pos: -38.5,15.5 parent: 2 - - uid: 31391 + - uid: 31244 components: - type: Transform pos: -45.5,-11.5 parent: 2 - - uid: 31392 + - uid: 31245 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 31393 + - uid: 31246 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 31394 + - uid: 31247 components: - type: Transform pos: -44.5,18.5 parent: 2 - - uid: 31395 + - uid: 31248 components: - type: Transform pos: 4.5,12.5 parent: 2 - - uid: 31396 + - uid: 31249 components: - type: Transform pos: -15.5,-16.5 parent: 2 - - uid: 31397 + - uid: 31250 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 31398 + - uid: 31251 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 31399 + - uid: 31252 components: - type: Transform pos: -26.5,-28.5 parent: 2 - - uid: 31400 + - uid: 31253 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 31401 + - uid: 31254 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 31402 + - uid: 31255 components: - type: Transform pos: -31.5,-41.5 parent: 2 - - uid: 31403 + - uid: 31256 components: - type: Transform pos: -40.5,-17.5 parent: 2 - - uid: 31404 + - uid: 31257 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-31.5 parent: 2 - - uid: 31405 + - uid: 31258 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,12.5 parent: 2 - - uid: 31406 + - uid: 31259 components: - type: Transform pos: -26.5,-43.5 parent: 2 - - uid: 31407 + - uid: 31260 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 31408 + - uid: 31261 components: - type: Transform pos: -2.5,18.5 parent: 2 - - uid: 31409 + - uid: 31262 components: - type: Transform pos: -27.5,-43.5 parent: 2 - - uid: 31410 + - uid: 31263 components: - type: Transform pos: -32.5,8.5 parent: 2 - - uid: 31411 + - uid: 31264 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 31412 + - uid: 31265 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 31413 + - uid: 31266 components: - type: Transform pos: 15.5,54.5 parent: 2 - - uid: 31414 + - uid: 31267 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 31415 + - uid: 31268 components: - type: Transform pos: 16.5,54.5 parent: 2 - - uid: 31416 + - uid: 31269 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 31417 + - uid: 31270 components: - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 31418 + - uid: 31271 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 31419 + - uid: 31272 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 31420 + - uid: 31273 components: - type: Transform pos: -21.5,8.5 parent: 2 - - uid: 31421 + - uid: 31274 components: - type: Transform pos: -38.5,16.5 parent: 2 - - uid: 31422 + - uid: 31275 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,48.5 parent: 2 - - uid: 31423 + - uid: 31276 components: - type: Transform pos: 48.5,-35.5 parent: 2 - - uid: 31424 + - uid: 31277 components: - type: Transform pos: -47.5,-26.5 parent: 2 - - uid: 31425 + - uid: 31278 components: - type: Transform pos: -17.5,-41.5 parent: 2 - - uid: 31426 + - uid: 31279 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 31427 + - uid: 31280 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 31428 + - uid: 31281 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 31429 + - uid: 31282 components: - type: Transform pos: -4.5,12.5 parent: 2 - - uid: 31430 + - uid: 31283 components: - type: Transform pos: -8.5,-35.5 parent: 2 - - uid: 31431 + - uid: 31284 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 31432 + - uid: 31285 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 31433 + - uid: 31286 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 31434 + - uid: 31287 components: - type: Transform pos: -32.5,11.5 parent: 2 - - uid: 31435 + - uid: 31288 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 31436 + - uid: 31289 components: - type: Transform pos: -54.5,-9.5 parent: 2 - - uid: 31437 + - uid: 31290 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 31438 + - uid: 31291 components: - type: Transform pos: -22.5,15.5 parent: 2 - - uid: 31439 + - uid: 31292 components: - type: Transform pos: -24.5,11.5 parent: 2 - - uid: 31440 + - uid: 31293 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 31441 + - uid: 31294 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,16.5 parent: 2 - - uid: 31442 + - uid: 31295 components: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 31443 + - uid: 31296 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - uid: 31444 + - uid: 31297 components: - type: Transform pos: 46.5,-0.5 parent: 2 - - uid: 31445 + - uid: 31298 components: - type: Transform pos: -46.5,37.5 parent: 2 - - uid: 31446 + - uid: 31299 components: - type: Transform pos: -46.5,38.5 parent: 2 - - uid: 31447 + - uid: 31300 components: - type: Transform pos: -46.5,39.5 parent: 2 - - uid: 31448 + - uid: 31301 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 31449 + - uid: 31302 components: - type: Transform pos: 37.5,9.5 parent: 2 - - uid: 31450 + - uid: 31303 components: - type: Transform pos: 10.5,-77.5 parent: 2 - - uid: 31451 + - uid: 31304 components: - type: Transform pos: 10.5,-73.5 parent: 2 - - uid: 31452 + - uid: 31305 components: - type: Transform pos: -74.5,-35.5 parent: 2 - - uid: 31453 + - uid: 31306 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - uid: 31454 + - uid: 31307 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 31455 + - uid: 31308 components: - type: Transform pos: 68.5,-4.5 parent: 2 - - uid: 31456 + - uid: 31309 components: - type: Transform pos: -73.5,-35.5 parent: 2 - - uid: 31457 + - uid: 31310 components: - type: Transform pos: -74.5,-8.5 parent: 2 - - uid: 31458 + - uid: 31311 components: - type: Transform pos: 59.5,3.5 parent: 2 - - uid: 31459 + - uid: 31312 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,16.5 parent: 2 - - uid: 31460 + - uid: 31313 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 - - uid: 31461 + - uid: 31314 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,8.5 parent: 2 - - uid: 31462 + - uid: 31315 components: - type: Transform pos: 51.5,7.5 parent: 2 - - uid: 31463 + - uid: 31316 components: - type: Transform pos: 67.5,3.5 parent: 2 - - uid: 31464 + - uid: 31317 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - uid: 31465 + - uid: 31318 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-26.5 parent: 2 - - uid: 31466 + - uid: 31319 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,21.5 parent: 2 - - uid: 31467 + - uid: 31320 components: - type: Transform rot: 3.141592653589793 rad pos: -113.5,21.5 parent: 2 - - uid: 31468 + - uid: 31321 components: - type: Transform pos: 63.5,3.5 parent: 2 - - uid: 31469 + - uid: 31322 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,16.5 parent: 2 - - uid: 31470 + - uid: 31323 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 31471 + - uid: 31324 components: - type: Transform pos: -75.5,9.5 parent: 2 - - uid: 31472 + - uid: 31325 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,27.5 parent: 2 - - uid: 31473 + - uid: 31326 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 31474 + - uid: 31327 components: - type: Transform pos: 8.5,-79.5 parent: 2 - - uid: 31475 + - uid: 31328 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 31476 + - uid: 31329 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,63.5 parent: 2 - - uid: 31477 + - uid: 31330 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 31478 + - uid: 31331 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 31479 + - uid: 31332 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,10.5 parent: 2 - - uid: 31480 + - uid: 31333 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 31481 + - uid: 31334 components: - type: Transform pos: 59.5,27.5 parent: 2 - - uid: 31482 + - uid: 31335 components: - type: Transform pos: 59.5,28.5 parent: 2 - - uid: 31483 + - uid: 31336 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,23.5 parent: 2 - - uid: 31484 + - uid: 31337 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,22.5 parent: 2 - - uid: 31485 + - uid: 31338 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,27.5 parent: 2 - - uid: 31486 + - uid: 31339 components: - type: Transform pos: -58.5,31.5 parent: 2 - - uid: 31487 + - uid: 31340 components: - type: Transform pos: 46.5,7.5 parent: 2 - - uid: 31488 + - uid: 31341 components: - type: Transform pos: 58.5,-3.5 parent: 2 - - uid: 31489 + - uid: 31342 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 31490 + - uid: 31343 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 2 - - uid: 31491 + - uid: 31344 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,21.5 parent: 2 - - uid: 31492 + - uid: 31345 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,21.5 parent: 2 - - uid: 31493 + - uid: 31346 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,21.5 parent: 2 - - uid: 31494 + - uid: 31347 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 31495 + - uid: 31348 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 31496 + - uid: 31349 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,21.5 parent: 2 - - uid: 39730 + - uid: 39557 components: - type: Transform pos: 2.5,1.5 - parent: 38584 - - uid: 39731 + parent: 38411 + - uid: 39558 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,0.5 - parent: 38584 - - uid: 39732 + parent: 38411 + - uid: 39559 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,0.5 - parent: 38584 - - uid: 39733 + parent: 38411 + - uid: 39560 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,4.5 - parent: 38584 - - uid: 39734 + parent: 38411 + - uid: 39561 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,4.5 - parent: 38584 - - uid: 39735 + parent: 38411 + - uid: 39562 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,3.5 - parent: 38584 - - uid: 39736 + parent: 38411 + - uid: 39563 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,1.5 - parent: 38584 - - uid: 39737 + parent: 38411 + - uid: 39564 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 - parent: 38584 - - uid: 39738 + parent: 38411 + - uid: 39565 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-2.5 - parent: 38584 - - uid: 39739 + parent: 38411 + - uid: 39566 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-3.5 - parent: 38584 - - uid: 39740 + parent: 38411 + - uid: 39567 components: - type: Transform pos: 1.5,6.5 - parent: 38584 - - uid: 39741 + parent: 38411 + - uid: 39568 components: - type: Transform pos: 1.5,7.5 - parent: 38584 - - uid: 39742 + parent: 38411 + - uid: 39569 components: - type: Transform pos: 1.5,8.5 - parent: 38584 - - uid: 39743 + parent: 38411 + - uid: 39570 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 - parent: 38584 - - uid: 39744 + parent: 38411 + - uid: 39571 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 38584 - - uid: 39745 + parent: 38411 + - uid: 39572 components: - type: Transform pos: 1.5,-1.5 - parent: 38584 - - uid: 39746 + parent: 38411 + - uid: 39573 components: - type: Transform pos: -11.5,4.5 - parent: 38584 - - uid: 39747 + parent: 38411 + - uid: 39574 components: - type: Transform pos: -11.5,5.5 - parent: 38584 - - uid: 39748 + parent: 38411 + - uid: 39575 components: - type: Transform pos: -11.5,6.5 - parent: 38584 + parent: 38411 - proto: TableReinforcedGlass entities: - - uid: 31497 + - uid: 31350 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 2 - - uid: 31498 + - uid: 31351 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 - - uid: 31499 + - uid: 31352 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 31500 + - uid: 31353 components: - type: Transform pos: 23.5,12.5 parent: 2 - - uid: 31501 + - uid: 31354 components: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 31502 + - uid: 31355 components: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 31503 + - uid: 31356 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,19.5 parent: 2 - - uid: 31504 + - uid: 31357 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 31505 + - uid: 31358 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-24.5 parent: 2 - - uid: 31506 + - uid: 31359 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 - - uid: 31507 + - uid: 31360 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 - - uid: 31508 + - uid: 31361 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 - - uid: 31509 + - uid: 31362 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 - - uid: 31510 + - uid: 31363 components: - type: Transform pos: -79.5,13.5 parent: 2 - - uid: 31511 + - uid: 31364 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - uid: 31512 + - uid: 31365 components: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 31513 + - uid: 31366 components: - type: Transform pos: 71.5,-2.5 parent: 2 - - uid: 31514 + - uid: 31367 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 31515 + - uid: 31368 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - uid: 31516 + - uid: 31369 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 - - uid: 31517 + - uid: 31370 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-31.5 parent: 2 - - uid: 31518 + - uid: 31371 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 31519 + - uid: 31372 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 2 - - uid: 31520 + - uid: 31373 components: - type: Transform pos: 34.5,-52.5 parent: 2 - - uid: 31521 + - uid: 31374 components: - type: Transform pos: 32.5,-46.5 parent: 2 - - uid: 31522 + - uid: 31375 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-27.5 parent: 2 - - uid: 31523 + - uid: 31376 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-24.5 parent: 2 - - uid: 31524 + - uid: 31377 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 - - uid: 31525 + - uid: 31378 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 31526 + - uid: 31379 components: - type: Transform pos: 35.5,-41.5 parent: 2 - - uid: 31527 + - uid: 31380 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-41.5 parent: 2 - - uid: 31528 + - uid: 31381 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 31529 + - uid: 31382 components: - type: Transform pos: 33.5,-52.5 parent: 2 - - uid: 31530 + - uid: 31383 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-41.5 parent: 2 - - uid: 31531 + - uid: 31384 components: - type: Transform pos: 33.5,-46.5 parent: 2 - - uid: 31532 + - uid: 31385 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 31533 + - uid: 31386 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,18.5 parent: 2 - - uid: 31534 + - uid: 31387 components: - type: Transform rot: 3.141592653589793 rad @@ -236191,1331 +236259,1331 @@ entities: parent: 2 - proto: TableStone entities: - - uid: 31535 + - uid: 31388 components: - type: Transform pos: -27.5,62.5 parent: 2 - - uid: 31536 + - uid: 31389 components: - type: Transform pos: -27.5,63.5 parent: 2 - - uid: 31537 + - uid: 31390 components: - type: Transform pos: -27.5,64.5 parent: 2 - - uid: 31538 + - uid: 31391 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-1.5 parent: 2 - - uid: 31539 + - uid: 31392 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 31540 + - uid: 31393 components: - type: Transform pos: 78.5,6.5 parent: 2 - proto: TableWood entities: - - uid: 284 + - uid: 31394 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-25.5 parent: 2 - - uid: 14187 + - uid: 31395 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 25028 + - uid: 31396 components: - type: Transform pos: -60.5,-23.5 parent: 2 - - uid: 31541 + - uid: 31397 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-35.5 parent: 2 - - uid: 31542 + - uid: 31398 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-35.5 parent: 2 - - uid: 31543 + - uid: 31399 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 31544 + - uid: 31400 components: - type: Transform pos: -57.5,-43.5 parent: 2 - - uid: 31545 + - uid: 31401 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,5.5 parent: 2 - - uid: 31546 + - uid: 31402 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,5.5 parent: 2 - - uid: 31547 + - uid: 31403 components: - type: Transform pos: 95.5,2.5 parent: 2 - - uid: 31548 + - uid: 31404 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 31549 + - uid: 31405 components: - type: Transform pos: 89.5,6.5 parent: 2 - - uid: 31550 + - uid: 31406 components: - type: Transform pos: 89.5,4.5 parent: 2 - - uid: 31551 + - uid: 31407 components: - type: Transform pos: 89.5,7.5 parent: 2 - - uid: 31552 + - uid: 31408 components: - type: Transform pos: -33.5,-66.5 parent: 2 - - uid: 31553 + - uid: 31409 components: - type: Transform pos: -33.5,-67.5 parent: 2 - - uid: 31554 + - uid: 31410 components: - type: Transform pos: -33.5,-79.5 parent: 2 - - uid: 31555 + - uid: 31411 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,58.5 parent: 2 - - uid: 31556 + - uid: 31412 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,59.5 parent: 2 - - uid: 31557 + - uid: 31413 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-72.5 parent: 2 - - uid: 31558 + - uid: 31414 components: - type: Transform pos: -34.5,-79.5 parent: 2 - - uid: 31559 + - uid: 31415 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-30.5 parent: 2 - - uid: 31560 + - uid: 31416 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-9.5 parent: 2 - - uid: 31561 + - uid: 31417 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,29.5 parent: 2 - - uid: 31562 + - uid: 31418 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,26.5 parent: 2 - - uid: 31563 + - uid: 31419 components: - type: Transform pos: -3.5,38.5 parent: 2 - - uid: 31564 + - uid: 31420 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 31565 + - uid: 31421 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 31566 + - uid: 31422 components: - type: Transform pos: -26.5,-8.5 parent: 2 - - uid: 31567 + - uid: 31423 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 31568 + - uid: 31424 components: - type: Transform pos: -8.5,-3.5 parent: 2 - - uid: 31569 + - uid: 31425 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-4.5 parent: 2 - - uid: 31570 + - uid: 31426 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,28.5 parent: 2 - - uid: 31571 + - uid: 31427 components: - type: Transform pos: -13.5,1.5 parent: 2 - - uid: 31572 + - uid: 31428 components: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 31573 + - uid: 31429 components: - type: Transform pos: -10.5,-1.5 parent: 2 - - uid: 31574 + - uid: 31430 components: - type: Transform pos: -27.5,0.5 parent: 2 - - uid: 31575 + - uid: 31431 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 31576 + - uid: 31432 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 31577 + - uid: 31433 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 31578 + - uid: 31434 components: - type: Transform pos: 40.5,23.5 parent: 2 - - uid: 31579 + - uid: 31435 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 31580 + - uid: 31436 components: - type: Transform pos: 15.5,-51.5 parent: 2 - - uid: 31581 + - uid: 31437 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-39.5 parent: 2 - - uid: 31582 + - uid: 31438 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-8.5 parent: 2 - - uid: 31583 + - uid: 31439 components: - type: Transform pos: -25.5,-41.5 parent: 2 - - uid: 31584 + - uid: 31440 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 31585 + - uid: 31441 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 31586 + - uid: 31442 components: - type: Transform pos: -11.5,54.5 parent: 2 - - uid: 31587 + - uid: 31443 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-39.5 parent: 2 - - uid: 31588 + - uid: 31444 components: - type: Transform pos: -8.5,32.5 parent: 2 - - uid: 31589 + - uid: 31445 components: - type: Transform pos: 18.5,-50.5 parent: 2 - - uid: 31590 + - uid: 31446 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-7.5 parent: 2 - - uid: 31591 + - uid: 31447 components: - type: Transform pos: 24.5,-52.5 parent: 2 - - uid: 31592 + - uid: 31448 components: - type: Transform pos: 14.5,7.5 parent: 2 - - uid: 31593 + - uid: 31449 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 31594 + - uid: 31450 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 31595 + - uid: 31451 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 31596 + - uid: 31452 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 31597 + - uid: 31453 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 31598 + - uid: 31454 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 31599 + - uid: 31455 components: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 31600 + - uid: 31456 components: - type: Transform pos: -7.5,11.5 parent: 2 - - uid: 31601 + - uid: 31457 components: - type: Transform pos: -15.5,8.5 parent: 2 - - uid: 31602 + - uid: 31458 components: - type: Transform pos: -15.5,7.5 parent: 2 - - uid: 31603 + - uid: 31459 components: - type: Transform pos: -15.5,10.5 parent: 2 - - uid: 31604 + - uid: 31460 components: - type: Transform pos: -15.5,11.5 parent: 2 - - uid: 31605 + - uid: 31461 components: - type: Transform pos: -15.5,-5.5 parent: 2 - - uid: 31606 + - uid: 31462 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 31607 + - uid: 31463 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 31608 + - uid: 31464 components: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 31609 + - uid: 31465 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 31610 + - uid: 31466 components: - type: Transform pos: -8.5,-0.5 parent: 2 - - uid: 31611 + - uid: 31467 components: - type: Transform pos: -8.5,0.5 parent: 2 - - uid: 31612 + - uid: 31468 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 31613 + - uid: 31469 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 31614 + - uid: 31470 components: - type: Transform pos: -9.5,10.5 parent: 2 - - uid: 31615 + - uid: 31471 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 31616 + - uid: 31472 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 31617 + - uid: 31473 components: - type: Transform pos: -23.5,-12.5 parent: 2 - - uid: 31618 + - uid: 31474 components: - type: Transform pos: 46.5,-55.5 parent: 2 - - uid: 31619 + - uid: 31475 components: - type: Transform pos: 33.5,2.5 parent: 2 - - uid: 31620 + - uid: 31476 components: - type: Transform pos: 47.5,-51.5 parent: 2 - - uid: 31621 + - uid: 31477 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 31622 + - uid: 31478 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 31623 + - uid: 31479 components: - type: Transform pos: 30.5,12.5 parent: 2 - - uid: 31624 + - uid: 31480 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,40.5 parent: 2 - - uid: 31625 + - uid: 31481 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 - - uid: 31626 + - uid: 31482 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,9.5 parent: 2 - - uid: 31627 + - uid: 31483 components: - type: Transform pos: -3.5,41.5 parent: 2 - - uid: 31628 + - uid: 31484 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 31629 + - uid: 31485 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,0.5 parent: 2 - - uid: 31630 + - uid: 31486 components: - type: Transform pos: -15.5,-73.5 parent: 2 - - uid: 31631 + - uid: 31487 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 31632 + - uid: 31488 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 31633 + - uid: 31489 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 31634 + - uid: 31490 components: - type: Transform pos: 43.5,-25.5 parent: 2 - - uid: 31635 + - uid: 31491 components: - type: Transform pos: -8.5,31.5 parent: 2 - - uid: 31636 + - uid: 31492 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,48.5 parent: 2 - - uid: 31637 + - uid: 31493 components: - type: Transform pos: -12.5,-79.5 parent: 2 - - uid: 31638 + - uid: 31494 components: - type: Transform pos: -57.5,7.5 parent: 2 - - uid: 31639 + - uid: 31495 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 31640 + - uid: 31496 components: - type: Transform pos: -12.5,-80.5 parent: 2 - - uid: 31641 + - uid: 31497 components: - type: Transform pos: -2.5,14.5 parent: 2 - - uid: 31642 + - uid: 31498 components: - type: Transform pos: -2.5,12.5 parent: 2 - - uid: 31643 + - uid: 31499 components: - type: Transform pos: 1.5,12.5 parent: 2 - - uid: 31644 + - uid: 31500 components: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 31645 + - uid: 31501 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 31646 + - uid: 31502 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,53.5 parent: 2 - - uid: 31647 + - uid: 31503 components: - type: Transform pos: -6.5,32.5 parent: 2 - - uid: 31648 + - uid: 31504 components: - type: Transform pos: -25.5,-40.5 parent: 2 - - uid: 31649 + - uid: 31505 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - uid: 31650 + - uid: 31506 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,54.5 parent: 2 - - uid: 31651 + - uid: 31507 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 31652 + - uid: 31508 components: - type: Transform pos: 8.5,0.5 parent: 2 - - uid: 31653 + - uid: 31509 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 31654 + - uid: 31510 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 31655 + - uid: 31511 components: - type: Transform pos: 33.5,-1.5 parent: 2 - - uid: 31656 + - uid: 31512 components: - type: Transform pos: 34.5,-31.5 parent: 2 - - uid: 31657 + - uid: 31513 components: - type: Transform pos: 34.5,-30.5 parent: 2 - - uid: 31658 + - uid: 31514 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 31659 + - uid: 31515 components: - type: Transform pos: -20.5,-81.5 parent: 2 - - uid: 31660 + - uid: 31516 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 31661 + - uid: 31517 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,52.5 parent: 2 - - uid: 31662 + - uid: 31518 components: - type: Transform pos: 51.5,-16.5 parent: 2 - - uid: 31663 + - uid: 31519 components: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 31664 + - uid: 31520 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 31665 + - uid: 31521 components: - type: Transform pos: 51.5,-53.5 parent: 2 - - uid: 31666 + - uid: 31522 components: - type: Transform pos: 53.5,-53.5 parent: 2 - - uid: 31667 + - uid: 31523 components: - type: Transform pos: 39.5,-49.5 parent: 2 - - uid: 31668 + - uid: 31524 components: - type: Transform pos: 49.5,-53.5 parent: 2 - - uid: 31669 + - uid: 31525 components: - type: Transform pos: -23.5,23.5 parent: 2 - - uid: 31670 + - uid: 31526 components: - type: Transform pos: -3.5,39.5 parent: 2 - - uid: 31671 + - uid: 31527 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 31672 + - uid: 31528 components: - type: Transform pos: 38.5,18.5 parent: 2 - - uid: 31673 + - uid: 31529 components: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 31674 + - uid: 31530 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 31675 + - uid: 31531 components: - type: Transform pos: -14.5,-64.5 parent: 2 - - uid: 31676 + - uid: 31532 components: - type: Transform pos: -12.5,-64.5 parent: 2 - - uid: 31677 + - uid: 31533 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 31678 + - uid: 31534 components: - type: Transform pos: -22.5,-4.5 parent: 2 - - uid: 31679 + - uid: 31535 components: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 31680 + - uid: 31536 components: - type: Transform pos: -4.5,46.5 parent: 2 - - uid: 31681 + - uid: 31537 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 31682 + - uid: 31538 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,42.5 parent: 2 - - uid: 31683 + - uid: 31539 components: - type: Transform pos: -19.5,-79.5 parent: 2 - - uid: 31684 + - uid: 31540 components: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 31685 + - uid: 31541 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 31686 + - uid: 31542 components: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 31687 + - uid: 31543 components: - type: Transform pos: 23.5,69.5 parent: 2 - - uid: 31688 + - uid: 31544 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 31689 + - uid: 31545 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,10.5 parent: 2 - - uid: 31690 + - uid: 31546 components: - type: Transform pos: 42.5,23.5 parent: 2 - - uid: 31691 + - uid: 31547 components: - type: Transform pos: 53.5,-25.5 parent: 2 - - uid: 31692 + - uid: 31548 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 31693 + - uid: 31549 components: - type: Transform pos: 38.5,22.5 parent: 2 - - uid: 31694 + - uid: 31550 components: - type: Transform pos: 43.5,-54.5 parent: 2 - - uid: 31695 + - uid: 31551 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 31696 + - uid: 31552 components: - type: Transform pos: -21.5,19.5 parent: 2 - - uid: 31697 + - uid: 31553 components: - type: Transform pos: -14.5,-74.5 parent: 2 - - uid: 31698 + - uid: 31554 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 31699 + - uid: 31555 components: - type: Transform pos: -5.5,32.5 parent: 2 - - uid: 31700 + - uid: 31556 components: - type: Transform pos: -22.5,23.5 parent: 2 - - uid: 31701 + - uid: 31557 components: - type: Transform pos: -24.5,23.5 parent: 2 - - uid: 31702 + - uid: 31558 components: - type: Transform pos: -23.5,-4.5 parent: 2 - - uid: 31703 + - uid: 31559 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 31704 + - uid: 31560 components: - type: Transform pos: 15.5,-48.5 parent: 2 - - uid: 31705 + - uid: 31561 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 31706 + - uid: 31562 components: - type: Transform pos: 47.5,-24.5 parent: 2 - - uid: 31707 + - uid: 31563 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 31708 + - uid: 31564 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 31709 + - uid: 31565 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,43.5 parent: 2 - - uid: 31710 + - uid: 31566 components: - type: Transform pos: 21.5,72.5 parent: 2 - - uid: 31711 + - uid: 31567 components: - type: Transform pos: 51.5,-22.5 parent: 2 - - uid: 31712 + - uid: 31568 components: - type: Transform pos: -22.5,-81.5 parent: 2 - - uid: 31713 + - uid: 31569 components: - type: Transform pos: -12.5,-81.5 parent: 2 - - uid: 31714 + - uid: 31570 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 31715 + - uid: 31571 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,39.5 parent: 2 - - uid: 31716 + - uid: 31572 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 31717 + - uid: 31573 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 - - uid: 31718 + - uid: 31574 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 31719 + - uid: 31575 components: - type: Transform pos: 34.5,2.5 parent: 2 - - uid: 31720 + - uid: 31576 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 31721 + - uid: 31577 components: - type: Transform pos: -33.5,-1.5 parent: 2 - - uid: 31722 + - uid: 31578 components: - type: Transform pos: -20.5,-64.5 parent: 2 - - uid: 31723 + - uid: 31579 components: - type: Transform pos: -4.5,45.5 parent: 2 - - uid: 31724 + - uid: 31580 components: - type: Transform pos: -16.5,-47.5 parent: 2 - - uid: 31725 + - uid: 31581 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,54.5 parent: 2 - - uid: 31726 + - uid: 31582 components: - type: Transform pos: -24.5,22.5 parent: 2 - - uid: 31727 + - uid: 31583 components: - type: Transform pos: -14.5,-73.5 parent: 2 - - uid: 31728 + - uid: 31584 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 31729 + - uid: 31585 components: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 31730 + - uid: 31586 components: - type: Transform pos: -14.5,-79.5 parent: 2 - - uid: 31731 + - uid: 31587 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 31732 + - uid: 31588 components: - type: Transform pos: -122.5,32.5 parent: 2 - - uid: 31733 + - uid: 31589 components: - type: Transform pos: -31.5,-12.5 parent: 2 - - uid: 31734 + - uid: 31590 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 31735 + - uid: 31591 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 2 - - uid: 31736 + - uid: 31592 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 31737 + - uid: 31593 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 31738 + - uid: 31594 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 31739 + - uid: 31595 components: - type: Transform pos: 43.5,-24.5 parent: 2 - - uid: 31740 + - uid: 31596 components: - type: Transform pos: -18.5,-74.5 parent: 2 - - uid: 31741 + - uid: 31597 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 31742 + - uid: 31598 components: - type: Transform pos: -22.5,-12.5 parent: 2 - - uid: 31743 + - uid: 31599 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 31744 + - uid: 31600 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,8.5 parent: 2 - - uid: 31745 + - uid: 31601 components: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 31746 + - uid: 31602 components: - type: Transform pos: 47.5,-53.5 parent: 2 - - uid: 31747 + - uid: 31603 components: - type: Transform pos: -23.5,-79.5 parent: 2 - - uid: 31748 + - uid: 31604 components: - type: Transform pos: -33.5,-10.5 parent: 2 - - uid: 31749 + - uid: 31605 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 31750 + - uid: 31606 components: - type: Transform pos: -34.5,-15.5 parent: 2 - - uid: 31751 + - uid: 31607 components: - type: Transform pos: -34.5,-14.5 parent: 2 - - uid: 31752 + - uid: 31608 components: - type: Transform pos: -33.5,-15.5 parent: 2 - - uid: 31753 + - uid: 31609 components: - type: Transform pos: -27.5,-10.5 parent: 2 - - uid: 31754 + - uid: 31610 components: - type: Transform pos: -27.5,-11.5 parent: 2 - - uid: 31755 + - uid: 31611 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 31756 + - uid: 31612 components: - type: Transform pos: 51.5,-54.5 parent: 2 - - uid: 31757 + - uid: 31613 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 31758 + - uid: 31614 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 31759 + - uid: 31615 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 31760 + - uid: 31616 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 31761 + - uid: 31617 components: - type: Transform pos: 47.5,-25.5 parent: 2 - - uid: 31762 + - uid: 31618 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 31763 + - uid: 31619 components: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 31764 + - uid: 31620 components: - type: Transform pos: -34.5,-11.5 parent: 2 - - uid: 31765 + - uid: 31621 components: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 31766 + - uid: 31622 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 31767 + - uid: 31623 components: - type: Transform pos: 38.5,-31.5 parent: 2 - - uid: 31768 + - uid: 31624 components: - type: Transform pos: -39.5,28.5 parent: 2 - - uid: 31769 + - uid: 31625 components: - type: Transform pos: -39.5,27.5 parent: 2 - - uid: 31770 + - uid: 31626 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 31771 + - uid: 31627 components: - type: Transform pos: -4.5,34.5 parent: 2 - - uid: 31772 + - uid: 31628 components: - type: Transform pos: -77.5,-0.5 parent: 2 - - uid: 31773 + - uid: 31629 components: - type: Transform pos: -76.5,-0.5 parent: 2 - - uid: 31774 + - uid: 31630 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 31775 + - uid: 31631 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 31776 + - uid: 31632 components: - type: Transform pos: 95.5,12.5 parent: 2 - - uid: 31777 + - uid: 31633 components: - type: Transform pos: 95.5,12.5 parent: 2 - - uid: 31778 + - uid: 31634 components: - type: Transform pos: 96.5,12.5 parent: 2 - - uid: 31779 + - uid: 31635 components: - type: Transform pos: 96.5,12.5 parent: 2 - - uid: 39749 + - uid: 39576 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-5.5 - parent: 38584 - - uid: 39750 + parent: 38411 + - uid: 39577 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-5.5 - parent: 38584 - - uid: 39751 + parent: 38411 + - uid: 39578 components: - type: Transform pos: 3.5,-3.5 - parent: 38584 - - uid: 39752 + parent: 38411 + - uid: 39579 components: - type: Transform pos: 3.5,-4.5 - parent: 38584 + parent: 38411 - proto: TargetClown entities: - - uid: 31780 + - uid: 31636 components: - type: Transform pos: 66.5,19.5 parent: 2 - - uid: 31781 + - uid: 31637 components: - type: Transform pos: 61.5,16.5 parent: 2 - - uid: 31782 + - uid: 31638 components: - type: Transform pos: 64.5,15.5 parent: 2 - proto: TargetHuman entities: - - uid: 31783 + - uid: 31639 components: - type: Transform pos: 60.5,18.5 parent: 2 - - uid: 31784 + - uid: 31640 components: - type: Transform rot: 3.141592653589793 rad @@ -237523,33 +237591,33 @@ entities: parent: 2 - proto: TargetStrange entities: - - uid: 31785 + - uid: 31641 components: - type: Transform pos: 66.5,17.5 parent: 2 - proto: TargetSyndicate entities: - - uid: 31786 + - uid: 31642 components: - type: Transform pos: 63.5,19.5 parent: 2 - - uid: 31787 + - uid: 31643 components: - type: Transform pos: 66.5,15.5 parent: 2 - proto: TegCenter entities: - - uid: 31788 + - uid: 31644 components: - type: Transform pos: -50.5,51.5 parent: 2 - proto: TegCirculator entities: - - uid: 31789 + - uid: 31645 components: - type: Transform rot: -1.5707963267948966 rad @@ -237557,7 +237625,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 31790 + - uid: 31646 components: - type: Transform rot: 1.5707963267948966 rad @@ -237567,7 +237635,7 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 17757 + - uid: 17741 components: - type: Transform pos: -112.5,40.5 @@ -237578,7 +237646,7 @@ entities: showEnts: False occludes: True ents: - - 17758 + - 17742 machine_board: !type:Container showEnts: False occludes: True @@ -237587,7 +237655,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17759 + - uid: 17743 components: - type: Transform pos: -112.5,42.5 @@ -237598,7 +237666,7 @@ entities: showEnts: False occludes: True ents: - - 17760 + - 17744 machine_board: !type:Container showEnts: False occludes: True @@ -237607,7 +237675,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17761 + - uid: 17745 components: - type: Transform pos: -114.5,40.5 @@ -237618,7 +237686,7 @@ entities: showEnts: False occludes: True ents: - - 17762 + - 17746 machine_board: !type:Container showEnts: False occludes: True @@ -237627,7 +237695,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17763 + - uid: 17747 components: - type: Transform pos: -114.5,38.5 @@ -237638,7 +237706,7 @@ entities: showEnts: False occludes: True ents: - - 17764 + - 17748 machine_board: !type:Container showEnts: False occludes: True @@ -237647,7 +237715,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17765 + - uid: 17749 components: - type: Transform pos: -112.5,38.5 @@ -237658,7 +237726,7 @@ entities: showEnts: False occludes: True ents: - - 17766 + - 17750 machine_board: !type:Container showEnts: False occludes: True @@ -237667,7 +237735,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17767 + - uid: 17751 components: - type: Transform pos: -114.5,42.5 @@ -237678,7 +237746,7 @@ entities: showEnts: False occludes: True ents: - - 17768 + - 17752 machine_board: !type:Container showEnts: False occludes: True @@ -237687,7 +237755,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17769 + - uid: 17753 components: - type: Transform pos: -114.5,36.5 @@ -237698,7 +237766,7 @@ entities: showEnts: False occludes: True ents: - - 17770 + - 17754 machine_board: !type:Container showEnts: False occludes: True @@ -237707,7 +237775,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17771 + - uid: 17755 components: - type: Transform pos: -112.5,36.5 @@ -237718,7 +237786,7 @@ entities: showEnts: False occludes: True ents: - - 17772 + - 17756 machine_board: !type:Container showEnts: False occludes: True @@ -237729,10 +237797,10 @@ entities: ents: [] - proto: Telecrystal1 entities: - - uid: 14899 + - uid: 14841 components: - type: Transform - parent: 14891 + parent: 14832 - type: Stack count: 3 - type: Physics @@ -237740,7 +237808,7 @@ entities: - type: InsideEntityStorage - proto: TeslaGenerator entities: - - uid: 31791 + - uid: 31647 components: - type: Transform rot: -1.5707963267948966 rad @@ -237748,29 +237816,29 @@ entities: parent: 2 - proto: TeslaGroundingRod entities: - - uid: 31792 + - uid: 31648 components: - type: Transform pos: -72.5,-11.5 parent: 2 - - uid: 31793 + - uid: 31649 components: - type: Transform pos: -71.5,-12.5 parent: 2 - - uid: 31794 + - uid: 31650 components: - type: Transform pos: -70.5,-11.5 parent: 2 - - uid: 31795 + - uid: 31651 components: - type: Transform pos: -70.5,-12.5 parent: 2 - proto: ThievingGloves entities: - - uid: 31796 + - uid: 31652 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -237778,69 +237846,69 @@ entities: parent: 2 - proto: ThrowingStar entities: - - uid: 31797 + - uid: 31653 components: - type: Transform pos: -55.80172,-48.262436 parent: 2 - - uid: 31798 + - uid: 31654 components: - type: Transform pos: -55.447693,-48.173943 parent: 2 - proto: Thruster entities: - - uid: 38552 + - uid: 38379 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 - parent: 38484 + parent: 38311 - type: Thruster enabled: False - - uid: 38553 + - uid: 38380 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 38484 - - uid: 38554 + parent: 38311 + - uid: 38381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 - parent: 38484 - - uid: 38555 + parent: 38311 + - uid: 38382 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 38484 - - uid: 38556 + parent: 38311 + - uid: 38383 components: - type: Transform pos: -0.5,3.5 - parent: 38484 - - uid: 38557 + parent: 38311 + - uid: 38384 components: - type: Transform pos: 3.5,3.5 - parent: 38484 - - uid: 39753 + parent: 38311 + - uid: 39580 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,22.5 - parent: 38584 + parent: 38411 - proto: ThrusterUnanchored entities: - - uid: 31799 + - uid: 31655 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,79.5 parent: 2 - - uid: 31800 + - uid: 31656 components: - type: Transform rot: 3.141592653589793 rad @@ -237848,234 +237916,234 @@ entities: parent: 2 - proto: TimerTrigger entities: - - uid: 31801 + - uid: 31657 components: - type: Transform pos: -6.651689,-45.493202 parent: 2 - - uid: 31802 + - uid: 31658 components: - type: Transform pos: -8.329771,-22.38098 parent: 2 - type: Physics canCollide: False - - uid: 31803 + - uid: 31659 components: - type: Transform pos: -8.329771,-22.38098 parent: 2 - type: Physics canCollide: False - - uid: 31804 + - uid: 31660 components: - type: Transform pos: 4.6103425,17.634863 parent: 2 - type: Physics canCollide: False - - uid: 31805 + - uid: 31661 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31806 + - uid: 31662 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31807 + - uid: 31663 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31808 + - uid: 31664 components: - type: Transform pos: -6.5579386,-45.305702 parent: 2 - - uid: 31809 + - uid: 31665 components: - type: Transform pos: -28.420214,-47.4508 parent: 2 - - uid: 31810 + - uid: 31666 components: - type: Transform pos: -26.49764,-44.19028 parent: 2 - proto: TintedWindow entities: - - uid: 31811 + - uid: 31667 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,5.5 parent: 2 - - uid: 31812 + - uid: 31668 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-71.5 parent: 2 - - uid: 31813 + - uid: 31669 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-71.5 parent: 2 - - uid: 31814 + - uid: 31670 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-71.5 parent: 2 - - uid: 31815 + - uid: 31671 components: - type: Transform pos: 64.5,7.5 parent: 2 - - uid: 31816 + - uid: 31672 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 31817 + - uid: 31673 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 31818 + - uid: 31674 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 31819 + - uid: 31675 components: - type: Transform pos: -11.5,-64.5 parent: 2 - - uid: 31820 + - uid: 31676 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 31821 + - uid: 31677 components: - type: Transform pos: -11.5,-67.5 parent: 2 - - uid: 31822 + - uid: 31678 components: - type: Transform pos: 64.5,6.5 parent: 2 - - uid: 31823 + - uid: 31679 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 31824 + - uid: 31680 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 31825 + - uid: 31681 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 31826 + - uid: 31682 components: - type: Transform pos: 8.5,90.5 parent: 2 - - uid: 31827 + - uid: 31683 components: - type: Transform pos: 27.5,39.5 parent: 2 - - uid: 31831 + - uid: 31684 components: - type: Transform pos: 42.5,-19.5 parent: 2 - - uid: 31832 + - uid: 31685 components: - type: Transform pos: -59.5,5.5 parent: 2 - - uid: 31833 + - uid: 31686 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 31834 + - uid: 31687 components: - type: Transform pos: 60.5,6.5 parent: 2 - - uid: 31835 + - uid: 31688 components: - type: Transform pos: 60.5,3.5 parent: 2 - - uid: 31836 + - uid: 31689 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 31837 + - uid: 31690 components: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 31838 + - uid: 31691 components: - type: Transform pos: 60.5,9.5 parent: 2 - - uid: 31839 + - uid: 31692 components: - type: Transform pos: 60.5,8.5 parent: 2 - - uid: 31840 + - uid: 31693 components: - type: Transform pos: 60.5,7.5 parent: 2 - - uid: 31841 + - uid: 31694 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 31842 + - uid: 31695 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 31843 + - uid: 31696 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 31844 + - uid: 31697 components: - type: Transform pos: 64.5,3.5 parent: 2 - - uid: 31845 + - uid: 31698 components: - type: Transform pos: 64.5,9.5 parent: 2 - - uid: 31846 + - uid: 31699 components: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 31847 + - uid: 31700 components: - type: Transform rot: 3.141592653589793 rad @@ -238083,145 +238151,145 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 31848 + - uid: 31701 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 31849 + - uid: 31702 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 - - uid: 31850 + - uid: 31703 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 39754 + - uid: 39581 components: - type: Transform pos: -24.5,29.5 - parent: 38584 + parent: 38411 - proto: ToiletEmpty entities: - - uid: 9971 + - uid: 31704 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-28.5 parent: 2 - - uid: 31851 + - uid: 31705 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 - - uid: 31852 + - uid: 31706 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 31853 + - uid: 31707 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - uid: 31854 + - uid: 31708 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,4.5 parent: 2 - - uid: 31855 + - uid: 31709 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-17.5 parent: 2 - - uid: 31856 + - uid: 31710 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 - - uid: 31857 + - uid: 31711 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,59.5 parent: 2 - - uid: 31858 + - uid: 31712 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-17.5 parent: 2 - - uid: 31859 + - uid: 31713 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-17.5 parent: 2 - - uid: 31860 + - uid: 31714 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,61.5 parent: 2 - - uid: 31861 + - uid: 31715 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,63.5 parent: 2 - - uid: 31862 + - uid: 31716 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,7.5 parent: 2 - - uid: 31863 + - uid: 31717 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,11.5 parent: 2 - - uid: 31864 + - uid: 31718 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-0.5 parent: 2 - - uid: 39755 + - uid: 39582 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,6.5 - parent: 38584 - - uid: 39756 + parent: 38411 + - uid: 39583 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 - parent: 38584 - - uid: 39757 + parent: 38411 + - uid: 39584 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 - parent: 38584 - - uid: 39758 + parent: 38411 + - uid: 39585 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-9.5 - parent: 38584 + parent: 38411 - proto: ToolboxArtistic entities: - - uid: 25472 + - uid: 25325 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238229,7 +238297,7 @@ entities: parent: 2 - type: Storage storedItems: - 25473: + 25326: position: 0,0 _rotation: South - type: ContainerContainer @@ -238238,153 +238306,153 @@ entities: showEnts: False occludes: True ents: - - 25473 + - 25326 - proto: ToolboxArtisticFilled entities: - - uid: 31865 + - uid: 31719 components: - type: Transform pos: 11.538271,66.851814 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 31866 + - uid: 31720 components: - type: Transform pos: -30.593908,-69.36092 parent: 2 - - uid: 31868 + - uid: 31721 components: - type: Transform pos: 50.406548,5.7091293 parent: 2 - type: Physics canCollide: False - - uid: 31869 + - uid: 31722 components: - type: Transform pos: -75.49426,10.685502 parent: 2 - - uid: 31870 + - uid: 31723 components: - type: Transform pos: -54.558506,-10.404935 parent: 2 - - uid: 31871 + - uid: 31724 components: - type: Transform pos: 43.61331,-43.55242 parent: 2 - - uid: 31872 + - uid: 31725 components: - type: Transform pos: -26.465704,-47.24205 parent: 2 - - uid: 31873 + - uid: 31726 components: - type: Transform pos: -38.55521,9.470851 parent: 2 - - uid: 31874 + - uid: 31727 components: - type: Transform pos: -21.482216,9.539601 parent: 2 - - uid: 31875 + - uid: 31728 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.563776,-11.260524 parent: 2 - - uid: 39759 + - uid: 39586 components: - type: Transform pos: 10.466481,0.44229126 - parent: 38584 + parent: 38411 - proto: ToolboxEmergencyFilled entities: - - uid: 31876 + - uid: 31729 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 10.517169,-11.592889 parent: 2 - - uid: 31877 + - uid: 31730 components: - type: Transform pos: -80.41574,13.495791 parent: 2 - - uid: 31878 + - uid: 31731 components: - type: Transform pos: -22.489403,54.56775 parent: 2 - type: Physics canCollide: False - - uid: 31879 + - uid: 31732 components: - type: Transform pos: 2.4599905,13.561341 parent: 2 - type: Physics canCollide: False - - uid: 31880 + - uid: 31733 components: - type: Transform pos: 8.4538,-59.464375 parent: 2 - - uid: 31881 + - uid: 31734 components: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 31882 + - uid: 31735 components: - type: Transform pos: 9.453719,84.54114 parent: 2 - - uid: 31883 + - uid: 31736 components: - type: Transform pos: -40.5,48.5 parent: 2 - - uid: 31884 + - uid: 31737 components: - type: Transform pos: 20.503912,8.6244135 parent: 2 - type: Physics canCollide: False - - uid: 31885 + - uid: 31738 components: - type: Transform pos: 46.4966,-0.37165457 parent: 2 - - uid: 31886 + - uid: 31739 components: - type: Transform pos: -59.538986,54.299515 parent: 2 - - uid: 31887 + - uid: 31740 components: - type: Transform pos: 6.4913983,-71.35235 parent: 2 - - uid: 31888 + - uid: 31741 components: - type: Transform pos: 43.45706,-43.349297 parent: 2 - proto: ToolboxGolden entities: - - uid: 15740 + - uid: 15723 components: - type: Transform pos: -0.53291434,9.720282 parent: 2 - type: Storage storedItems: - 15742: + 15725: position: 2,1 _rotation: East - type: ContainerContainer @@ -238393,22 +238461,22 @@ entities: showEnts: False occludes: True ents: - - 15741 - - 15742 - - uid: 31889 + - 15724 + - 15725 + - uid: 31742 components: - type: Transform pos: 26.580854,17.05833 parent: 2 - proto: ToolboxMechanical entities: - - uid: 31890 + - uid: 31743 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.67167,-3.9190269 parent: 2 - - uid: 31891 + - uid: 31744 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238416,165 +238484,165 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 31892 + - uid: 31745 components: - type: Transform pos: -58.476357,31.612507 parent: 2 - - uid: 31893 + - uid: 31746 components: - type: Transform pos: -59.507816,53.99283 parent: 2 - - uid: 31894 + - uid: 31747 components: - type: Transform pos: -62.666298,-44.365036 parent: 2 - - uid: 31895 + - uid: 31748 components: - type: Transform pos: 50.562798,5.5216293 parent: 2 - type: Physics canCollide: False - - uid: 31897 + - uid: 31749 components: - type: Transform pos: -15.499809,-16.38254 parent: 2 - - uid: 31898 + - uid: 31750 components: - type: Transform pos: -28.478916,13.554777 parent: 2 - - uid: 31899 + - uid: 31751 components: - type: Transform pos: 14.527084,77.63588 parent: 2 - - uid: 31900 + - uid: 31752 components: - type: Transform pos: 32.489235,26.592016 parent: 2 - - uid: 31901 + - uid: 31753 components: - type: Transform pos: -24.563105,12.558601 parent: 2 - type: Physics canCollide: False - - uid: 31902 + - uid: 31754 components: - type: Transform pos: -36.384415,-35.374123 parent: 2 - - uid: 31903 + - uid: 31755 components: - type: Transform pos: -61.499516,11.58782 parent: 2 - type: Physics canCollide: False - - uid: 31904 + - uid: 31756 components: - type: Transform pos: 10.370622,74.69084 parent: 2 - type: Physics canCollide: False - - uid: 31905 + - uid: 31757 components: - type: Transform pos: -7.4405484,-35.500793 parent: 2 - - uid: 31906 + - uid: 31758 components: - type: Transform pos: -54.52714,-4.515595 parent: 2 - - uid: 31907 + - uid: 31759 components: - type: Transform pos: -26.465704,-47.570175 parent: 2 - - uid: 31908 + - uid: 31760 components: - type: Transform pos: -7.706174,-35.20392 parent: 2 - - uid: 31909 + - uid: 31761 components: - type: Transform pos: 43.404045,-37.16125 parent: 2 - - uid: 31910 + - uid: 31762 components: - type: Transform pos: 1.4968867,18.6292 parent: 2 - type: Physics canCollide: False - - uid: 31911 + - uid: 31763 components: - type: Transform pos: 12.456568,-14.593374 parent: 2 - - uid: 31912 + - uid: 31764 components: - type: Transform pos: -41.44116,-13.354926 parent: 2 - - uid: 31913 + - uid: 31765 components: - type: Transform pos: 15.397692,39.61709 parent: 2 - type: Physics canCollide: False - - uid: 31914 + - uid: 31766 components: - type: Transform pos: -32.484383,8.549018 parent: 2 - - uid: 31915 + - uid: 31767 components: - type: Transform pos: -21.560526,9.336472 parent: 2 - - uid: 31916 + - uid: 31768 components: - type: Transform pos: 78.40447,-43.407154 parent: 2 - - uid: 39760 + - uid: 39587 components: - type: Transform pos: 10.560231,0.72354126 - parent: 38584 + parent: 38411 - proto: ToolboxSyndicate entities: - - uid: 31917 + - uid: 31769 components: - type: Transform pos: -73.55307,-35.373505 parent: 2 - proto: Torch entities: - - uid: 31918 + - uid: 31770 components: - type: Transform pos: 43.700527,-24.265348 parent: 2 - proto: ToyAi entities: - - uid: 31919 + - uid: 31771 components: - type: Transform pos: 63.624302,-26.3102 parent: 2 - - uid: 31920 + - uid: 31772 components: - type: MetaData desc: Ядро искусственого интеллекта @@ -238587,62 +238655,62 @@ entities: color: '#6FA8DCFF' - proto: ToyFigurineBoxer entities: - - uid: 31921 + - uid: 31773 components: - type: Transform pos: 55.368248,-14.191161 parent: 2 - - uid: 31922 + - uid: 31774 components: - type: Transform pos: 55.649498,-14.425536 parent: 2 - proto: ToyFigurineClown entities: - - uid: 14838 + - uid: 14778 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31923 + - uid: 31775 components: - type: Transform pos: -38.339348,1.7481683 parent: 2 - proto: ToyFigurineHoloClown entities: - - uid: 31924 + - uid: 31776 components: - type: Transform pos: -38.604866,1.9251596 parent: 2 - proto: ToyFigurineMime entities: - - uid: 14859 + - uid: 14800 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ToyFigurineMusician entities: - - uid: 31925 + - uid: 31777 components: - type: Transform pos: -2.522966,53.778133 parent: 2 - proto: ToyFigurineNukie entities: - - uid: 31926 + - uid: 31778 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -51.6071,-37.429165 parent: 2 - - uid: 31927 + - uid: 31779 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238650,7 +238718,7 @@ entities: parent: 2 - proto: ToyFigurineNukieCommander entities: - - uid: 31928 + - uid: 31780 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238658,21 +238726,21 @@ entities: parent: 2 - proto: ToyGygax entities: - - uid: 31930 + - uid: 31781 components: - type: Transform pos: 63.75272,-24.7508 parent: 2 - proto: ToyHammer entities: - - uid: 31931 + - uid: 31782 components: - type: Transform pos: 12.5,62.5 parent: 2 - proto: ToyIan entities: - - uid: 31932 + - uid: 31783 components: - type: MetaData name: игрушечный толян @@ -238680,47 +238748,47 @@ entities: rot: 1.0182609457842773E-06 rad pos: -34.543114,-81.48599 parent: 2 - - uid: 31933 + - uid: 31784 components: - type: Transform pos: -39.784107,-59.57446 parent: 2 - - uid: 31934 + - uid: 31785 components: - type: Transform pos: -39.26327,-59.584873 parent: 2 - - uid: 31935 + - uid: 31786 components: - type: Transform pos: -49.254475,-32.563488 parent: 2 - - uid: 31936 + - uid: 31787 components: - type: Transform pos: -49.7701,-32.594738 parent: 2 - - uid: 31937 + - uid: 31788 components: - type: Transform pos: -49.660725,-32.23536 parent: 2 - - uid: 31938 + - uid: 31789 components: - type: Transform pos: -30.515251,-64.45057 parent: 2 - - uid: 31939 + - uid: 31790 components: - type: Transform pos: -13.006457,0.4996575 parent: 2 - - uid: 31940 + - uid: 31791 components: - type: Transform pos: 63.385803,-24.640722 parent: 2 - - uid: 31941 + - uid: 31792 components: - type: MetaData desc: Какой пушистый негодяй. @@ -238730,44 +238798,44 @@ entities: parent: 2 - proto: ToyMarauder entities: - - uid: 31942 + - uid: 31793 components: - type: Transform pos: 63.31242,-26.108395 parent: 2 - - uid: 31943 + - uid: 31794 components: - type: Transform pos: -34.4959,1.8669009 parent: 2 - proto: ToyMouse entities: - - uid: 31944 + - uid: 31795 components: - type: Transform pos: -47.504475,-32.329113 parent: 2 - proto: ToyNuke entities: - - uid: 31945 + - uid: 31796 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -50.997726,-37.679165 parent: 2 - - uid: 31946 + - uid: 31797 components: - type: Transform pos: -47.3951,-32.204113 parent: 2 - - uid: 31947 + - uid: 31798 components: - type: Transform pos: 14.269184,-27.278599 parent: 2 - proto: ToyOwlman entities: - - uid: 40932 + - uid: 31799 components: - type: MetaData name: Расмус @@ -238779,69 +238847,69 @@ entities: radius: 2 - proto: ToyRubberDuck entities: - - uid: 31948 + - uid: 31800 components: - type: Transform pos: -4.5347166,26.351791 parent: 2 - - uid: 31949 + - uid: 31801 components: - type: Transform pos: 14.571413,5.5797076 parent: 2 - - uid: 39761 + - uid: 39588 components: - type: Transform pos: 3.503645,-9.450317 - parent: 38584 + parent: 38411 - proto: ToySpawner entities: - - uid: 31950 + - uid: 31802 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 31951 + - uid: 31803 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 31952 + - uid: 31804 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 31953 + - uid: 31805 components: - type: Transform pos: -26.5,54.5 parent: 2 - proto: ToySword entities: - - uid: 31954 + - uid: 31806 components: - type: Transform pos: -49.973225,-32.125988 parent: 2 - - uid: 31955 + - uid: 31807 components: - type: Transform pos: -50.473225,-32.360363 parent: 2 - proto: TrackingImplanter entities: - - uid: 31956 + - uid: 31808 components: - type: Transform pos: 26.62773,16.042706 parent: 2 - - uid: 31957 + - uid: 31809 components: - type: Transform rot: 3.141592653589793 rad pos: 74.49902,-0.6281295 parent: 2 - - uid: 31958 + - uid: 31810 components: - type: Transform rot: 3.141592653589793 rad @@ -238849,38 +238917,38 @@ entities: parent: 2 - proto: TrainingBomb entities: - - uid: 31959 + - uid: 31811 components: - type: Transform pos: 79.5,-51.5 parent: 2 - proto: TrashBag entities: - - uid: 31960 + - uid: 31812 components: - type: Transform pos: -1.5508432,32.560196 parent: 2 - type: Physics canCollide: False - - uid: 31961 + - uid: 31813 components: - type: Transform pos: 0.8097693,54.4752 parent: 2 - - uid: 31962 + - uid: 31814 components: - type: Transform pos: 0.60796434,54.310085 parent: 2 - - uid: 31963 + - uid: 31815 components: - type: Transform pos: -1.4883432,31.528946 parent: 2 - type: Physics canCollide: False - - uid: 31964 + - uid: 31816 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238888,54 +238956,54 @@ entities: parent: 2 - proto: TrashBananaPeel entities: - - uid: 31965 + - uid: 31817 components: - type: Transform pos: 40.50665,20.421618 parent: 2 - - uid: 31966 + - uid: 31818 components: - type: Transform pos: 50.5141,8.351975 parent: 2 - - uid: 31967 + - uid: 31819 components: - type: Transform pos: -37.424778,0.47973192 parent: 2 - - uid: 31968 + - uid: 31820 components: - type: Transform pos: -37.575375,2.4238644 parent: 2 - - uid: 31969 + - uid: 31821 components: - type: Transform pos: -36.613472,1.4679323 parent: 2 - - uid: 31970 + - uid: 31822 components: - type: Transform pos: -7.333141,33.313103 parent: 2 - - uid: 31971 + - uid: 31823 components: - type: Transform pos: -38.46857,-56.55106 parent: 2 - proto: trayScanner entities: - - uid: 31972 + - uid: 31824 components: - type: Transform pos: -46.617897,11.574662 parent: 2 - - uid: 31973 + - uid: 31825 components: - type: Transform pos: -46.992897,11.527788 parent: 2 - - uid: 31974 + - uid: 31826 components: - type: Transform rot: -1.5707963267948966 rad @@ -238943,498 +239011,498 @@ entities: parent: 2 - proto: Truncheon entities: - - uid: 15014 + - uid: 14955 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31975 + - uid: 31827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.62287,7.394455 parent: 2 - - uid: 31976 + - uid: 31828 components: - type: Transform pos: 57.30327,7.5272903 parent: 2 - - uid: 31977 + - uid: 31829 components: - type: Transform pos: 57.475143,7.4647903 parent: 2 - proto: TwoWayLever entities: - - uid: 31978 + - uid: 31830 components: - type: Transform pos: -51.5,-9.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1523: + 1528: - Left: Open - Right: Open - Middle: Close - 1522: + 1527: - Left: Open - Right: Open - Middle: Close - 1524: + 1529: - Left: Open - Right: Open - Middle: Close - - uid: 31979 + - uid: 31831 components: - type: Transform pos: 24.5,51.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15548: + 15531: - Left: Forward - Right: Reverse - Middle: Off - 15556: + 15539: - Left: Forward - Right: Reverse - Middle: Off - 15547: + 15530: - Left: Forward - Right: Reverse - Middle: Off - 15537: + 15520: - Left: Forward - Right: Reverse - Middle: Off - 15534: + 15517: - Left: Forward - Right: Reverse - Middle: Off - 15529: + 15512: - Left: Forward - Right: Reverse - Middle: Off - 15539: + 15522: - Left: Forward - Right: Reverse - Middle: Off - 15532: + 15515: - Left: Forward - Right: Reverse - Middle: Off - 15530: + 15513: - Left: Forward - Right: Reverse - Middle: Off - 15533: + 15516: - Left: Forward - Right: Reverse - Middle: Off - 15531: + 15514: - Left: Forward - Right: Reverse - Middle: Off - 15536: + 15519: - Left: Forward - Right: Reverse - Middle: Off - 15535: + 15518: - Left: Forward - Right: Reverse - Middle: Off - 15528: + 15511: - Left: Forward - Right: Reverse - Middle: Off - 15527: + 15510: - Left: Forward - Right: Reverse - Middle: Off - 15557: + 15540: - Left: Forward - Right: Reverse - Middle: Off - - uid: 31980 + - uid: 31832 components: - type: Transform pos: 24.5,49.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15543: + 15526: - Left: Forward - Right: Reverse - Middle: Off - 15526: + 15509: - Left: Forward - Right: Reverse - Middle: Off - 15523: + 15506: - Left: Forward - Right: Reverse - Middle: Off - 15525: + 15508: - Left: Forward - Right: Reverse - Middle: Off - 15520: + 15503: - Left: Forward - Right: Reverse - Middle: Off - 15521: + 15504: - Left: Forward - Right: Reverse - Middle: Off - 15524: + 15507: - Left: Forward - Right: Reverse - Middle: Off - 15519: + 15502: - Left: Forward - Right: Reverse - Middle: Off - 15518: + 15501: - Left: Forward - Right: Reverse - Middle: Off - 15517: + 15500: - Left: Forward - Right: Reverse - Middle: Off - 15516: + 15499: - Left: Forward - Right: Reverse - Middle: Off - 15561: + 15544: - Left: Forward - Right: Reverse - Middle: Off - 15563: + 15546: - Left: Forward - Right: Reverse - Middle: Off - 15560: + 15543: - Left: Forward - Right: Reverse - Middle: Off - 15562: + 15545: - Left: Forward - Right: Reverse - Middle: Off - 15546: + 15529: - Left: Forward - Right: Reverse - Middle: Off - 15549: + 15532: - Left: Forward - Right: Reverse - Middle: Off - 15538: + 15521: - Left: Forward - Right: Reverse - Middle: Off - 15551: + 15534: - Left: Forward - Right: Reverse - Middle: Off - 15552: + 15535: - Left: Forward - Right: Reverse - Middle: Off - 15559: + 15542: - Left: Forward - Right: Reverse - Middle: Off - 15555: + 15538: - Left: Forward - Right: Reverse - Middle: Off - - uid: 31981 + - uid: 31833 components: - type: Transform pos: -51.5,44.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29380: + 29178: - Left: Open - Right: Open - Middle: Close - 29378: + 29176: - Left: Open - Right: Open - Middle: Close - 29379: + 29177: - Left: Open - Right: Open - Middle: Close - 29386: + 29184: - Left: Open - Right: Open - Middle: Close - 29385: + 29183: - Left: Open - Right: Open - Middle: Close - 29384: + 29182: - Left: Open - Right: Open - Middle: Close - 29382: + 29180: - Left: Open - Right: Open - Middle: Close - 29376: + 29174: - Left: Open - Right: Open - Middle: Close - 29377: + 29175: - Left: Open - Right: Open - Middle: Close - - uid: 31982 + - uid: 31834 components: - type: Transform pos: 30.5,59.5 parent: 2 - - uid: 31983 + - uid: 31835 components: - type: Transform pos: 24.5,57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 27924: + 27773: - Left: Forward - Right: Reverse - Middle: Off - 15564: + 15547: - Left: Forward - Right: Reverse - Middle: Off - 15522: + 15505: - Left: Forward - Right: Reverse - Middle: Off - 15566: + 15549: - Left: Forward - Right: Reverse - Middle: Off - 15565: + 15548: - Left: Forward - Right: Reverse - Middle: Off - 15545: + 15528: - Left: Forward - Right: Reverse - Middle: Off - 15550: + 15533: - Left: Forward - Right: Reverse - Middle: Off - 15568: + 15551: - Left: Forward - Right: Reverse - Middle: Off - 15544: + 15527: - Left: Forward - Right: Reverse - Middle: Off - 15553: + 15536: - Left: Forward - Right: Reverse - Middle: Off - 15571: + 15554: - Left: Forward - Right: Reverse - Middle: Off - 15540: + 15523: - Left: Forward - Right: Reverse - Middle: Off - 15554: + 15537: - Left: Forward - Right: Reverse - Middle: Off - 15558: + 15541: - Left: Forward - Right: Reverse - Middle: Off - 15567: + 15550: - Left: Forward - Right: Reverse - Middle: Off - 15570: + 15553: - Left: Forward - Right: Reverse - Middle: Off - 15541: + 15524: - Left: Forward - Right: Reverse - Middle: Off - 15542: + 15525: - Left: Forward - Right: Reverse - Middle: Off - 15569: + 15552: - Left: Forward - Right: Reverse - Middle: Off - 1508: + 1513: - Left: Open - Right: Open - Middle: Close - proto: UnfinishedMachineFrame entities: - - uid: 31984 + - uid: 31836 components: - type: Transform pos: 49.5,-30.5 parent: 2 - - uid: 31985 + - uid: 31837 components: - type: Transform pos: 0.5,44.5 parent: 2 - - uid: 31986 + - uid: 31838 components: - type: Transform pos: 0.5,45.5 parent: 2 - - uid: 31987 + - uid: 31839 components: - type: Transform pos: -37.5,-38.5 parent: 2 - - uid: 31988 + - uid: 31840 components: - type: Transform pos: -36.5,52.5 parent: 2 - - uid: 39762 + - uid: 39589 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 - parent: 38584 + parent: 38411 - proto: UniformPrinter entities: - - uid: 31989 + - uid: 31841 components: - type: Transform pos: -13.5,2.5 parent: 2 - proto: UniformShortsRed entities: - - uid: 15217 + - uid: 15161 components: - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15222 + - uid: 15166 components: - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15227 + - uid: 15171 components: - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31990 + - uid: 31842 components: - type: Transform pos: 55.305378,-23.720034 parent: 2 - - uid: 31991 + - uid: 31843 components: - type: Transform pos: 55.649128,-23.673159 parent: 2 - - uid: 31992 + - uid: 31844 components: - type: Transform pos: 55.696003,-23.391909 parent: 2 - - uid: 31993 + - uid: 31845 components: - type: Transform pos: 55.336628,-23.391909 parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 15218 + - uid: 15162 components: - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15223 + - uid: 15167 components: - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15228 + - uid: 15172 components: - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31994 + - uid: 31846 components: - type: Transform pos: 55.711628,-24.032534 parent: 2 - - uid: 31995 + - uid: 31847 components: - type: Transform pos: 55.305378,-24.438784 parent: 2 - - uid: 31996 + - uid: 31848 components: - type: Transform pos: 55.727253,-24.407534 parent: 2 - - uid: 31997 + - uid: 31849 components: - type: Transform pos: 55.242878,-24.079409 parent: 2 - proto: VaccinatorMachineCircuitboard entities: - - uid: 31998 + - uid: 31850 components: - type: Transform pos: 28.897463,-66.57021 parent: 2 - proto: VariantCubeBox entities: - - uid: 31999 + - uid: 31851 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 51.45035,-47.490284 parent: 2 - - uid: 32000 + - uid: 31852 components: - type: Transform pos: -27.332859,-27.821 parent: 2 - - uid: 32001 + - uid: 31853 components: - type: Transform pos: 40.340553,-65.455154 @@ -239443,751 +239511,751 @@ entities: canCollide: False - proto: VendingBarDrobe entities: - - uid: 32002 + - uid: 31854 components: - type: Transform pos: -3.5,36.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 32003 + - uid: 31855 components: - type: Transform pos: -56.5,38.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 32004 + - uid: 31856 components: - type: Transform pos: 5.5,10.5 parent: 2 - - uid: 32005 + - uid: 31857 components: - type: Transform pos: -5.5,39.5 parent: 2 - - uid: 32006 + - uid: 31858 components: - type: Transform pos: -62.5,-47.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 32007 + - uid: 31859 components: - type: Transform pos: 22.5,38.5 parent: 2 - - uid: 32008 + - uid: 31860 components: - type: Transform pos: 22.5,37.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 32009 + - uid: 31861 components: - type: Transform pos: -8.5,4.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 32010 + - uid: 31862 components: - type: Transform pos: -19.5,-81.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 32011 + - uid: 31863 components: - type: Transform pos: -28.5,27.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 32012 + - uid: 31864 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 32013 + - uid: 31865 components: - type: Transform pos: -28.5,28.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 32014 + - uid: 31866 components: - type: Transform pos: 7.5,-35.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 32015 + - uid: 31867 components: - type: Transform pos: 6.5,-35.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 32016 + - uid: 31868 components: - type: Transform pos: 12.5,-10.5 parent: 2 - - uid: 32017 + - uid: 31869 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 32018 + - uid: 31870 components: - type: Transform pos: -9.5,66.5 parent: 2 - - uid: 32019 + - uid: 31871 components: - type: Transform pos: -13.5,59.5 parent: 2 - - uid: 32020 + - uid: 31872 components: - type: Transform pos: -12.5,-5.5 parent: 2 - - uid: 32021 + - uid: 31873 components: - type: MetaData name: cigarette machine - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 32022 + - uid: 31874 components: - type: MetaData name: cigarette machine - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 32023 + - uid: 31875 components: - type: MetaData name: cigarette machine - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 32024 + - uid: 31876 components: - type: MetaData name: cigarette machine - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 32025 + - uid: 31877 components: - type: MetaData name: cigarette machine - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 32026 + - uid: 31878 components: - type: MetaData name: cigarette machine - type: Transform pos: -65.5,13.5 parent: 2 - - uid: 32027 + - uid: 31879 components: - type: MetaData name: cigarette machine - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 32028 + - uid: 31880 components: - type: MetaData name: cigarette machine - type: Transform pos: 55.5,-30.5 parent: 2 - - uid: 32029 + - uid: 31881 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 39763 + - uid: 39590 components: - type: Transform pos: 3.5,4.5 - parent: 38584 + parent: 38411 - proto: VendingMachineClothing entities: - - uid: 32030 + - uid: 31882 components: - type: Transform pos: -9.5,59.5 parent: 2 - - uid: 32031 + - uid: 31883 components: - type: Transform pos: -13.5,66.5 parent: 2 - - uid: 32032 + - uid: 31884 components: - type: Transform pos: -9.5,34.5 parent: 2 - - uid: 32033 + - uid: 31885 components: - type: Transform pos: 33.5,-16.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 32034 + - uid: 31886 components: - type: Transform pos: 14.5,46.5 parent: 2 - - uid: 32035 + - uid: 31887 components: - type: MetaData name: Hot drinks machine - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 32036 + - uid: 31888 components: - type: MetaData name: Hot drinks machine - type: Transform pos: 38.5,-28.5 parent: 2 - - uid: 32037 + - uid: 31889 components: - type: Transform pos: 9.5,16.5 parent: 2 - - uid: 32038 + - uid: 31890 components: - type: Transform pos: -25.5,-38.5 parent: 2 - - uid: 32039 + - uid: 31891 components: - type: Transform pos: -57.5,-35.5 parent: 2 - proto: VendingMachineCola entities: - - uid: 32040 + - uid: 31892 components: - type: Transform pos: 18.5,72.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 32041 + - uid: 31893 components: - type: Transform pos: -28.5,38.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 32042 + - uid: 31894 components: - type: Transform pos: -25.5,-10.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 32043 + - uid: 31895 components: - type: Transform pos: 28.5,12.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 32044 + - uid: 31896 components: - type: Transform pos: -29.5,31.5 parent: 2 - proto: VendingMachineDiscount entities: - - uid: 32045 + - uid: 31897 components: - type: Transform pos: -57.5,-36.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 32046 + - uid: 31898 components: - type: Transform pos: -50.5,-3.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 32047 + - uid: 31899 components: - type: Transform pos: -48.5,-0.5 parent: 2 - - uid: 39764 + - uid: 39591 components: - type: Transform pos: 7.5,0.5 - parent: 38584 + parent: 38411 - proto: VendingMachineGames entities: - - uid: 32048 + - uid: 31900 components: - type: Transform pos: 84.5,7.5 parent: 2 - - uid: 32049 + - uid: 31901 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 32050 + - uid: 31902 components: - type: Transform pos: -29.5,-15.5 parent: 2 - - uid: 39765 + - uid: 39592 components: - type: Transform pos: -9.5,-6.5 - parent: 38584 + parent: 38411 - proto: VendingMachineGeneDrobe entities: - - uid: 32051 + - uid: 31903 components: - type: Transform pos: 7.5,-46.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 32052 + - uid: 31904 components: - type: Transform pos: -8.5,54.5 parent: 2 - - uid: 32053 + - uid: 31905 components: - type: Transform pos: -22.5,28.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 32054 + - uid: 31906 components: - type: Transform pos: -33.5,54.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 32055 + - uid: 31907 components: - type: Transform pos: 2.5,50.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 32056 + - uid: 31908 components: - type: Transform pos: 37.5,2.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 32057 + - uid: 31909 components: - type: Transform pos: 28.5,-21.5 parent: 2 - - uid: 32058 + - uid: 31910 components: - type: Transform pos: 68.5,13.5 parent: 2 - - uid: 32059 + - uid: 31911 components: - type: Transform pos: 18.5,-46.5 parent: 2 - - uid: 32060 + - uid: 31912 components: - type: Transform pos: 38.5,-40.5 parent: 2 - - uid: 32061 + - uid: 31913 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 39766 + - uid: 39593 components: - type: Transform pos: -4.5,-3.5 - parent: 38584 + parent: 38411 - proto: VendingMachineMediDrobe entities: - - uid: 32062 + - uid: 31914 components: - type: Transform pos: 31.5,-21.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 32063 + - uid: 31915 components: - type: Transform pos: -31.5,55.5 parent: 2 - proto: VendingMachineRestockSecTech entities: - - uid: 15015 + - uid: 14956 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: VendingMachineRoboDrobe entities: - - uid: 32064 + - uid: 31916 components: - type: Transform pos: -3.5,-37.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 32065 + - uid: 31917 components: - type: Transform pos: -3.5,-43.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 32066 + - uid: 31918 components: - type: Transform pos: 13.5,46.5 parent: 2 - - uid: 32067 + - uid: 31919 components: - type: Transform pos: 33.5,28.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 32068 + - uid: 31920 components: - type: Transform pos: -24.5,-23.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 32069 + - uid: 31921 components: - type: Transform pos: 57.5,13.5 parent: 2 - - uid: 32070 + - uid: 31922 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 32071 + - uid: 31923 components: - type: Transform pos: 50.5,-6.5 parent: 2 - - uid: 39767 + - uid: 39594 components: - type: Transform pos: 9.5,-1.5 - parent: 38584 + parent: 38411 - proto: VendingMachineSecDrobe entities: - - uid: 32072 + - uid: 31924 components: - type: Transform pos: 0.5,65.5 parent: 2 - - uid: 32073 + - uid: 31925 components: - type: Transform pos: 54.5,13.5 parent: 2 - - uid: 39768 + - uid: 39595 components: - type: Transform pos: 9.5,-7.5 - parent: 38584 + parent: 38411 - proto: VendingMachineSeeds entities: - - uid: 32074 + - uid: 31926 components: - type: Transform pos: -32.5,55.5 parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 32075 + - uid: 31927 components: - type: Transform pos: 95.5,5.5 parent: 2 - - uid: 39769 + - uid: 39596 components: - type: Transform pos: -21.5,-4.5 - parent: 38584 + parent: 38411 - proto: VendingMachineShamblersJuice entities: - - uid: 32076 + - uid: 31928 components: - type: Transform pos: -45.5,-44.5 parent: 2 - proto: VendingMachineSnack entities: - - uid: 32077 + - uid: 31929 components: - type: Transform pos: 17.5,72.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 32078 + - uid: 31930 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - uid: 32079 + - uid: 31931 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 32080 + - uid: 31932 components: - type: Transform pos: -50.5,-19.5 parent: 2 - proto: VendingMachineSyndieDrobe entities: - - uid: 32081 + - uid: 31933 components: - type: Transform pos: -39.5,-78.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 32082 + - uid: 31934 components: - type: Transform pos: -48.5,-9.5 parent: 2 - - uid: 32083 + - uid: 31935 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 32084 + - uid: 31936 components: - type: Transform pos: -71.5,-9.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 32085 + - uid: 31937 components: - type: Transform pos: 63.5,11.5 parent: 2 - - uid: 32086 + - uid: 31938 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 32087 + - uid: 31939 components: - type: Transform pos: 34.5,42.5 parent: 2 - - uid: 32088 + - uid: 31940 components: - type: Transform pos: 22.5,26.5 parent: 2 - - uid: 32089 + - uid: 31941 components: - type: Transform pos: 77.5,8.5 parent: 2 - - uid: 32090 + - uid: 31942 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 32091 + - uid: 31943 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 32092 + - uid: 31944 components: - type: Transform pos: 93.5,9.5 parent: 2 - - uid: 32093 + - uid: 31945 components: - type: Transform pos: -60.5,24.5 parent: 2 - - uid: 39770 + - uid: 39597 components: - type: Transform pos: -14.5,34.5 - parent: 38584 + parent: 38411 - proto: VendingMachineTheater entities: - - uid: 32094 + - uid: 31946 components: - type: Transform pos: 40.5,-49.5 parent: 2 - - uid: 32095 + - uid: 31947 components: - type: Transform pos: -8.5,34.5 parent: 2 - - uid: 32096 + - uid: 31948 components: - type: Transform pos: 12.5,70.5 parent: 2 - - uid: 32097 + - uid: 31949 components: - type: Transform pos: 36.5,-16.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 32098 + - uid: 31950 components: - type: Transform pos: -12.5,-55.5 parent: 2 - - uid: 32099 + - uid: 31951 components: - type: Transform pos: -9.5,-27.5 parent: 2 - - uid: 32100 + - uid: 31952 components: - type: Transform pos: -28.5,12.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 32101 + - uid: 31953 components: - type: Transform pos: 45.5,-63.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 32102 + - uid: 31954 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-3.5 parent: 2 - - uid: 32103 + - uid: 31955 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,14.5 parent: 2 - - uid: 32104 + - uid: 31956 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 32105 + - uid: 31957 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-64.5 parent: 2 - - uid: 32106 + - uid: 31958 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 32107 + - uid: 31959 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-33.5 parent: 2 - - uid: 32108 + - uid: 31960 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 - - uid: 32109 + - uid: 31961 components: - type: Transform pos: 32.5,-32.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 32110 + - uid: 31962 components: - type: Transform pos: 35.5,-16.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 32111 + - uid: 31963 components: - type: Transform pos: 13.5,-3.5 parent: 2 - - uid: 32112 + - uid: 31964 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 32113 + - uid: 31965 components: - type: Transform pos: -28.5,11.5 parent: 2 - - uid: 32114 + - uid: 31966 components: - type: Transform pos: -48.5,-1.5 parent: 2 - - uid: 39771 + - uid: 39598 components: - type: Transform pos: 8.5,0.5 - parent: 38584 + parent: 38411 - proto: VibraphoneInstrument entities: - - uid: 32115 + - uid: 31967 components: - type: Transform rot: 3.141592653589793 rad @@ -240195,12 +240263,12 @@ entities: parent: 2 - proto: ViolinInstrument entities: - - uid: 32116 + - uid: 31968 components: - type: Transform pos: 47.444527,-50.30899 parent: 2 - - uid: 32117 + - uid: 31969 components: - type: Transform pos: 47.511616,-55.279068 @@ -240209,7 +240277,7 @@ entities: canCollide: False - proto: WallmountTelescreenFrame entities: - - uid: 32118 + - uid: 31970 components: - type: Transform rot: 3.141592653589793 rad @@ -240217,25572 +240285,25572 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 32119 + - uid: 31971 components: - type: Transform pos: -13.5,25.5 parent: 2 - - uid: 32120 + - uid: 31972 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-74.5 parent: 2 - - uid: 32121 + - uid: 31973 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 32122 + - uid: 31974 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 32123 + - uid: 31975 components: - type: Transform pos: 26.5,7.5 parent: 2 - - uid: 32124 + - uid: 31976 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 - - uid: 32125 + - uid: 31977 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,14.5 parent: 2 - - uid: 32126 + - uid: 31978 components: - type: Transform pos: 50.5,-17.5 parent: 2 - proto: WallmountTelevisionFrame entities: - - uid: 32128 + - uid: 31979 components: - type: Transform pos: -70.5,-38.5 parent: 2 - - uid: 32129 + - uid: 31980 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-80.5 parent: 2 - - uid: 32130 + - uid: 31981 components: - type: Transform pos: -26.5,40.5 parent: 2 - - uid: 32131 + - uid: 31982 components: - type: Transform pos: -26.5,70.5 parent: 2 - - uid: 32132 + - uid: 31983 components: - type: Transform pos: -11.5,47.5 parent: 2 - - uid: 32133 + - uid: 31984 components: - type: Transform pos: -26.5,44.5 parent: 2 - proto: WallPlasma entities: - - uid: 32134 + - uid: 31985 components: - type: Transform pos: -65.5,-44.5 parent: 2 - - uid: 32135 + - uid: 31986 components: - type: Transform pos: -66.5,-44.5 parent: 2 - - uid: 32136 + - uid: 31987 components: - type: Transform pos: -61.5,-44.5 parent: 2 - proto: WallPlastitanium entities: - - uid: 39772 + - uid: 39599 components: - type: Transform pos: -23.5,31.5 - parent: 38584 - - uid: 39773 + parent: 38411 + - uid: 39600 components: - type: Transform pos: -23.5,29.5 - parent: 38584 - - uid: 39774 + parent: 38411 + - uid: 39601 components: - type: Transform pos: -15.5,37.5 - parent: 38584 - - uid: 39775 + parent: 38411 + - uid: 39602 components: - type: Transform pos: -19.5,27.5 - parent: 38584 - - uid: 39776 + parent: 38411 + - uid: 39603 components: - type: Transform pos: -23.5,26.5 - parent: 38584 - - uid: 39777 + parent: 38411 + - uid: 39604 components: - type: Transform pos: -23.5,33.5 - parent: 38584 - - uid: 39778 + parent: 38411 + - uid: 39605 components: - type: Transform pos: -24.5,30.5 - parent: 38584 - - uid: 39779 + parent: 38411 + - uid: 39606 components: - type: Transform pos: -13.5,37.5 - parent: 38584 - - uid: 39780 + parent: 38411 + - uid: 39607 components: - type: Transform pos: -14.5,33.5 - parent: 38584 - - uid: 39781 + parent: 38411 + - uid: 39608 components: - type: Transform pos: -13.5,36.5 - parent: 38584 - - uid: 39782 + parent: 38411 + - uid: 39609 components: - type: Transform pos: -16.5,37.5 - parent: 38584 - - uid: 39783 + parent: 38411 + - uid: 39610 components: - type: Transform pos: -23.5,34.5 - parent: 38584 - - uid: 39784 + parent: 38411 + - uid: 39611 components: - type: Transform pos: -23.5,35.5 - parent: 38584 - - uid: 39785 + parent: 38411 + - uid: 39612 components: - type: Transform pos: -15.5,36.5 - parent: 38584 - - uid: 39786 + parent: 38411 + - uid: 39613 components: - type: Transform pos: -20.5,29.5 - parent: 38584 - - uid: 39787 + parent: 38411 + - uid: 39614 components: - type: Transform pos: -14.5,37.5 - parent: 38584 - - uid: 39788 + parent: 38411 + - uid: 39615 components: - type: Transform pos: -22.5,26.5 - parent: 38584 - - uid: 39789 + parent: 38411 + - uid: 39616 components: - type: Transform pos: -15.5,30.5 - parent: 38584 - - uid: 39790 + parent: 38411 + - uid: 39617 components: - type: Transform pos: -22.5,29.5 - parent: 38584 - - uid: 39791 + parent: 38411 + - uid: 39618 components: - type: Transform pos: -25.5,30.5 - parent: 38584 - - uid: 39792 + parent: 38411 + - uid: 39619 components: - type: Transform pos: -18.5,37.5 - parent: 38584 - - uid: 39793 + parent: 38411 + - uid: 39620 components: - type: Transform pos: -17.5,37.5 - parent: 38584 - - uid: 39794 + parent: 38411 + - uid: 39621 components: - type: Transform pos: -21.5,26.5 - parent: 38584 - - uid: 39795 + parent: 38411 + - uid: 39622 components: - type: Transform pos: -24.5,26.5 - parent: 38584 - - uid: 39796 + parent: 38411 + - uid: 39623 components: - type: Transform pos: -23.5,27.5 - parent: 38584 - - uid: 39797 + parent: 38411 + - uid: 39624 components: - type: Transform pos: 12.5,21.5 - parent: 38584 - - uid: 39798 + parent: 38411 + - uid: 39625 components: - type: Transform pos: 12.5,17.5 - parent: 38584 - - uid: 39799 + parent: 38411 + - uid: 39626 components: - type: Transform pos: -19.5,34.5 - parent: 38584 - - uid: 39800 + parent: 38411 + - uid: 39627 components: - type: Transform pos: -15.5,31.5 - parent: 38584 - - uid: 39801 + parent: 38411 + - uid: 39628 components: - type: Transform pos: -19.5,26.5 - parent: 38584 - - uid: 39802 + parent: 38411 + - uid: 39629 components: - type: Transform pos: 14.5,21.5 - parent: 38584 - - uid: 39803 + parent: 38411 + - uid: 39630 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,20.5 - parent: 38584 - - uid: 39804 + parent: 38411 + - uid: 39631 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,18.5 - parent: 38584 - - uid: 39805 + parent: 38411 + - uid: 39632 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,18.5 - parent: 38584 - - uid: 39806 + parent: 38411 + - uid: 39633 components: - type: Transform pos: 15.5,18.5 - parent: 38584 - - uid: 39807 + parent: 38411 + - uid: 39634 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,20.5 - parent: 38584 - - uid: 39808 + parent: 38411 + - uid: 39635 components: - type: Transform pos: 13.5,17.5 - parent: 38584 - - uid: 39809 + parent: 38411 + - uid: 39636 components: - type: Transform pos: 14.5,17.5 - parent: 38584 - - uid: 39810 + parent: 38411 + - uid: 39637 components: - type: Transform pos: 13.5,21.5 - parent: 38584 - - uid: 39811 + parent: 38411 + - uid: 39638 components: - type: Transform pos: 15.5,20.5 - parent: 38584 - - uid: 39812 + parent: 38411 + - uid: 39639 components: - type: Transform pos: 11.5,21.5 - parent: 38584 - - uid: 39813 + parent: 38411 + - uid: 39640 components: - type: Transform pos: -15.5,29.5 - parent: 38584 - - uid: 39814 + parent: 38411 + - uid: 39641 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,20.5 - parent: 38584 - - uid: 39815 + parent: 38411 + - uid: 39642 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,23.5 - parent: 38584 - - uid: 39816 + parent: 38411 + - uid: 39643 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,16.5 - parent: 38584 - - uid: 39817 + parent: 38411 + - uid: 39644 components: - type: Transform pos: -15.5,32.5 - parent: 38584 - - uid: 39818 + parent: 38411 + - uid: 39645 components: - type: Transform pos: 11.5,15.5 - parent: 38584 - - uid: 39819 + parent: 38411 + - uid: 39646 components: - type: Transform pos: 10.5,23.5 - parent: 38584 - - uid: 39820 + parent: 38411 + - uid: 39647 components: - type: Transform pos: 12.5,15.5 - parent: 38584 - - uid: 39821 + parent: 38411 + - uid: 39648 components: - type: Transform pos: -25.5,27.5 - parent: 38584 - - uid: 39822 + parent: 38411 + - uid: 39649 components: - type: Transform pos: -17.5,29.5 - parent: 38584 - - uid: 39823 + parent: 38411 + - uid: 39650 components: - type: Transform pos: -18.5,29.5 - parent: 38584 - - uid: 39824 + parent: 38411 + - uid: 39651 components: - type: Transform pos: 12.5,23.5 - parent: 38584 - - uid: 39825 + parent: 38411 + - uid: 39652 components: - type: Transform pos: -20.5,26.5 - parent: 38584 - - uid: 39826 + parent: 38411 + - uid: 39653 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,22.5 - parent: 38584 - - uid: 39827 + parent: 38411 + - uid: 39654 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,18.5 - parent: 38584 - - uid: 39828 + parent: 38411 + - uid: 39655 components: - type: Transform pos: -16.5,29.5 - parent: 38584 - - uid: 39829 + parent: 38411 + - uid: 39656 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,16.5 - parent: 38584 - - uid: 39830 + parent: 38411 + - uid: 39657 components: - type: Transform pos: -13.5,33.5 - parent: 38584 - - uid: 39831 + parent: 38411 + - uid: 39658 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,15.5 - parent: 38584 - - uid: 39832 + parent: 38411 + - uid: 39659 components: - type: Transform pos: 11.5,23.5 - parent: 38584 - - uid: 39833 + parent: 38411 + - uid: 39660 components: - type: Transform pos: 11.5,17.5 - parent: 38584 - - uid: 39834 + parent: 38411 + - uid: 39661 components: - type: Transform pos: 12.5,14.5 - parent: 38584 - - uid: 39835 + parent: 38411 + - uid: 39662 components: - type: Transform pos: -13.5,34.5 - parent: 38584 - - uid: 39836 + parent: 38411 + - uid: 39663 components: - type: Transform pos: -19.5,35.5 - parent: 38584 - - uid: 39837 + parent: 38411 + - uid: 39664 components: - type: Transform pos: -19.5,33.5 - parent: 38584 - - uid: 39838 + parent: 38411 + - uid: 39665 components: - type: Transform pos: -19.5,36.5 - parent: 38584 - - uid: 39839 + parent: 38411 + - uid: 39666 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,23.5 - parent: 38584 - - uid: 39840 + parent: 38411 + - uid: 39667 components: - type: Transform pos: -23.5,32.5 - parent: 38584 - - uid: 39841 + parent: 38411 + - uid: 39668 components: - type: Transform pos: -25.5,29.5 - parent: 38584 - - uid: 39842 + parent: 38411 + - uid: 39669 components: - type: Transform pos: -25.5,26.5 - parent: 38584 - - uid: 39843 + parent: 38411 + - uid: 39670 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 39844 + parent: 38411 + - uid: 39671 components: - type: Transform pos: -19.5,37.5 - parent: 38584 - - uid: 39845 + parent: 38411 + - uid: 39672 components: - type: Transform pos: -15.5,33.5 - parent: 38584 - - uid: 39846 + parent: 38411 + - uid: 39673 components: - type: Transform pos: -19.5,29.5 - parent: 38584 - - uid: 39847 + parent: 38411 + - uid: 39674 components: - type: Transform pos: -23.5,30.5 - parent: 38584 + parent: 38411 - proto: WallPlastitaniumDiagonal entities: - - uid: 39848 + - uid: 39675 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,24.5 - parent: 38584 - - uid: 39849 + parent: 38411 + - uid: 39676 components: - type: Transform pos: 14.5,18.5 - parent: 38584 - - uid: 39850 + parent: 38411 + - uid: 39677 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,18.5 - parent: 38584 - - uid: 39851 + parent: 38411 + - uid: 39678 components: - type: Transform pos: 8.5,20.5 - parent: 38584 - - uid: 39852 + parent: 38411 + - uid: 39679 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,20.5 - parent: 38584 - - uid: 39853 + parent: 38411 + - uid: 39680 components: - type: Transform pos: 10.5,21.5 - parent: 38584 - - uid: 39854 + parent: 38411 + - uid: 39681 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,17.5 - parent: 38584 - - uid: 39855 + parent: 38411 + - uid: 39682 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,21.5 - parent: 38584 - - uid: 39856 + parent: 38411 + - uid: 39683 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,23.5 - parent: 38584 - - uid: 39857 + parent: 38411 + - uid: 39684 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,15.5 - parent: 38584 - - uid: 39858 + parent: 38411 + - uid: 39685 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,14.5 - parent: 38584 - - uid: 39859 + parent: 38411 + - uid: 39686 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,14.5 - parent: 38584 - - uid: 39860 + parent: 38411 + - uid: 39687 components: - type: Transform pos: 11.5,24.5 - parent: 38584 - - uid: 39861 + parent: 38411 + - uid: 39688 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,18.5 - parent: 38584 - - uid: 39862 + parent: 38411 + - uid: 39689 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,17.5 - parent: 38584 - - uid: 39863 + parent: 38411 + - uid: 39690 components: - type: Transform pos: 9.5,23.5 - parent: 38584 - - uid: 39864 + parent: 38411 + - uid: 39691 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,15.5 - parent: 38584 - - uid: 39865 + parent: 38411 + - uid: 39692 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,20.5 - parent: 38584 + parent: 38411 - proto: WallReinforced entities: - - uid: 871 + - uid: 31988 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 872 + - uid: 31989 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 1355 + - uid: 31990 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-25.5 parent: 2 - - uid: 2802 + - uid: 31991 components: - type: Transform pos: 83.5,-24.5 parent: 2 - - uid: 2827 + - uid: 31992 components: - type: Transform pos: -40.5,-72.5 parent: 2 - - uid: 6733 + - uid: 31993 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-22.5 parent: 2 - - uid: 6739 + - uid: 31994 components: - type: Transform pos: -63.5,-27.5 parent: 2 - - uid: 6741 + - uid: 31995 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 - - uid: 6743 + - uid: 31996 components: - type: Transform pos: -60.5,-27.5 parent: 2 - - uid: 9966 + - uid: 31997 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-26.5 parent: 2 - - uid: 9972 + - uid: 31998 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-29.5 parent: 2 - - uid: 12050 + - uid: 31999 components: - type: Transform pos: -63.5,-21.5 parent: 2 - - uid: 13153 + - uid: 32000 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-22.5 parent: 2 - - uid: 13155 + - uid: 32001 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 - - uid: 14188 + - uid: 32002 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-21.5 parent: 2 - - uid: 15039 + - uid: 32003 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-24.5 parent: 2 - - uid: 17439 + - uid: 32004 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-23.5 parent: 2 - - uid: 17695 + - uid: 32005 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 - - uid: 17733 + - uid: 32006 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-27.5 parent: 2 - - uid: 17801 + - uid: 32007 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-28.5 parent: 2 - - uid: 18039 + - uid: 32008 components: - type: Transform pos: -64.5,-27.5 parent: 2 - - uid: 18839 + - uid: 32009 components: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 23209 + - uid: 32010 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-24.5 parent: 2 - - uid: 23234 + - uid: 32011 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-26.5 parent: 2 - - uid: 31369 + - uid: 32012 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-23.5 parent: 2 - - uid: 31374 + - uid: 32013 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-27.5 parent: 2 - - uid: 32127 + - uid: 32014 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-26.5 parent: 2 - - uid: 32137 + - uid: 32015 components: - type: Transform pos: 27.5,14.5 parent: 2 - - uid: 32138 + - uid: 32016 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 32139 + - uid: 32017 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 32140 + - uid: 32018 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 32141 + - uid: 32019 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 32142 + - uid: 32020 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 32143 + - uid: 32021 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 32144 + - uid: 32022 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 32145 + - uid: 32023 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 32146 + - uid: 32024 components: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 32147 + - uid: 32025 components: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 32148 + - uid: 32026 components: - type: Transform pos: 23.5,18.5 parent: 2 - - uid: 32149 + - uid: 32027 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 32150 + - uid: 32028 components: - type: Transform pos: 26.5,18.5 parent: 2 - - uid: 32151 + - uid: 32029 components: - type: Transform pos: 19.5,19.5 parent: 2 - - uid: 32152 + - uid: 32030 components: - type: Transform pos: 20.5,18.5 parent: 2 - - uid: 32153 + - uid: 32031 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 32154 + - uid: 32032 components: - type: Transform pos: -15.5,20.5 parent: 2 - - uid: 32155 + - uid: 32033 components: - type: Transform pos: 27.5,11.5 parent: 2 - - uid: 32156 + - uid: 32034 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-1.5 parent: 2 - - uid: 32157 + - uid: 32035 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 32158 + - uid: 32036 components: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 32159 + - uid: 32037 components: - type: Transform pos: -15.5,19.5 parent: 2 - - uid: 32160 + - uid: 32038 components: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 32161 + - uid: 32039 components: - type: Transform pos: 14.5,20.5 parent: 2 - - uid: 32162 + - uid: 32040 components: - type: Transform pos: -15.5,18.5 parent: 2 - - uid: 32163 + - uid: 32041 components: - type: Transform pos: 19.5,12.5 parent: 2 - - uid: 32164 + - uid: 32042 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-5.5 parent: 2 - - uid: 32165 + - uid: 32043 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-4.5 parent: 2 - - uid: 32166 + - uid: 32044 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-6.5 parent: 2 - - uid: 32167 + - uid: 32045 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-9.5 parent: 2 - - uid: 32168 + - uid: 32046 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-1.5 parent: 2 - - uid: 32169 + - uid: 32047 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-1.5 parent: 2 - - uid: 32170 + - uid: 32048 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-1.5 parent: 2 - - uid: 32171 + - uid: 32049 components: - type: Transform pos: 71.5,25.5 parent: 2 - - uid: 32172 + - uid: 32050 components: - type: Transform pos: 71.5,27.5 parent: 2 - - uid: 32173 + - uid: 32051 components: - type: Transform pos: 64.5,31.5 parent: 2 - - uid: 32174 + - uid: 32052 components: - type: Transform pos: 65.5,31.5 parent: 2 - - uid: 32175 + - uid: 32053 components: - type: Transform pos: -2.5,70.5 parent: 2 - - uid: 32176 + - uid: 32054 components: - type: Transform pos: 2.5,70.5 parent: 2 - - uid: 32177 + - uid: 32055 components: - type: Transform pos: -20.5,70.5 parent: 2 - - uid: 32178 + - uid: 32056 components: - type: Transform pos: -25.5,70.5 parent: 2 - - uid: 32179 + - uid: 32057 components: - type: Transform pos: 37.5,38.5 parent: 2 - - uid: 32180 + - uid: 32058 components: - type: Transform pos: 36.5,40.5 parent: 2 - - uid: 32181 + - uid: 32059 components: - type: Transform pos: 37.5,40.5 parent: 2 - - uid: 32182 + - uid: 32060 components: - type: Transform pos: 59.5,32.5 parent: 2 - - uid: 32183 + - uid: 32061 components: - type: Transform pos: 49.5,32.5 parent: 2 - - uid: 32184 + - uid: 32062 components: - type: Transform pos: 50.5,33.5 parent: 2 - - uid: 32185 + - uid: 32063 components: - type: Transform pos: 58.5,33.5 parent: 2 - - uid: 32186 + - uid: 32064 components: - type: Transform pos: -16.5,-29.5 parent: 2 - - uid: 32187 + - uid: 32065 components: - type: Transform pos: 68.5,31.5 parent: 2 - - uid: 32188 + - uid: 32066 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,31.5 parent: 2 - - uid: 32189 + - uid: 32067 components: - type: Transform pos: 67.5,31.5 parent: 2 - - uid: 32190 + - uid: 32068 components: - type: Transform pos: 69.5,31.5 parent: 2 - - uid: 32191 + - uid: 32069 components: - type: Transform pos: -47.5,-3.5 parent: 2 - - uid: 32192 + - uid: 32070 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 32193 + - uid: 32071 components: - type: Transform pos: 61.5,31.5 parent: 2 - - uid: 32194 + - uid: 32072 components: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 32195 + - uid: 32073 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,32.5 parent: 2 - - uid: 32196 + - uid: 32074 components: - type: Transform pos: 69.5,29.5 parent: 2 - - uid: 32197 + - uid: 32075 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,33.5 parent: 2 - - uid: 32198 + - uid: 32076 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,33.5 parent: 2 - - uid: 32199 + - uid: 32077 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,32.5 parent: 2 - - uid: 32200 + - uid: 32078 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,31.5 parent: 2 - - uid: 32201 + - uid: 32079 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,33.5 parent: 2 - - uid: 32202 + - uid: 32080 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,33.5 parent: 2 - - uid: 32203 + - uid: 32081 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,33.5 parent: 2 - - uid: 32204 + - uid: 32082 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 32205 + - uid: 32083 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 32206 + - uid: 32084 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 32207 + - uid: 32085 components: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 32208 + - uid: 32086 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - uid: 32209 + - uid: 32087 components: - type: Transform pos: -7.5,-10.5 parent: 2 - - uid: 32210 + - uid: 32088 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 32211 + - uid: 32089 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 32212 + - uid: 32090 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 32213 + - uid: 32091 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 32214 + - uid: 32092 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-50.5 parent: 2 - - uid: 32215 + - uid: 32093 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-54.5 parent: 2 - - uid: 32216 + - uid: 32094 components: - type: Transform pos: -8.5,-10.5 parent: 2 - - uid: 32217 + - uid: 32095 components: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 32218 + - uid: 32096 components: - type: Transform pos: 14.5,-11.5 parent: 2 - - uid: 32219 + - uid: 32097 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 32220 + - uid: 32098 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 32221 + - uid: 32099 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 32222 + - uid: 32100 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 32223 + - uid: 32101 components: - type: Transform pos: 12.5,-11.5 parent: 2 - - uid: 32224 + - uid: 32102 components: - type: Transform pos: 3.5,78.5 parent: 2 - - uid: 32225 + - uid: 32103 components: - type: Transform pos: 3.5,85.5 parent: 2 - - uid: 32226 + - uid: 32104 components: - type: Transform pos: 4.5,85.5 parent: 2 - - uid: 32227 + - uid: 32105 components: - type: Transform pos: 4.5,76.5 parent: 2 - - uid: 32228 + - uid: 32106 components: - type: Transform pos: 4.5,78.5 parent: 2 - - uid: 32229 + - uid: 32107 components: - type: Transform pos: 4.5,83.5 parent: 2 - - uid: 32230 + - uid: 32108 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 - - uid: 32231 + - uid: 32109 components: - type: Transform pos: 2.5,76.5 parent: 2 - - uid: 32232 + - uid: 32110 components: - type: Transform pos: 3.5,83.5 parent: 2 - - uid: 32233 + - uid: 32111 components: - type: Transform pos: 2.5,78.5 parent: 2 - - uid: 32234 + - uid: 32112 components: - type: Transform pos: 2.5,83.5 parent: 2 - - uid: 32235 + - uid: 32113 components: - type: Transform pos: 3.5,76.5 parent: 2 - - uid: 32236 + - uid: 32114 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,8.5 parent: 2 - - uid: 32237 + - uid: 32115 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-1.5 parent: 2 - - uid: 32238 + - uid: 32116 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,4.5 parent: 2 - - uid: 32239 + - uid: 32117 components: - type: Transform pos: 98.5,-0.5 parent: 2 - - uid: 32240 + - uid: 32118 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,37.5 parent: 2 - - uid: 32241 + - uid: 32119 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,38.5 parent: 2 - - uid: 32242 + - uid: 32120 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,39.5 parent: 2 - - uid: 32243 + - uid: 32121 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,36.5 parent: 2 - - uid: 32244 + - uid: 32122 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,25.5 parent: 2 - - uid: 32245 + - uid: 32123 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,25.5 parent: 2 - - uid: 32246 + - uid: 32124 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,39.5 parent: 2 - - uid: 32247 + - uid: 32125 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-0.5 parent: 2 - - uid: 32248 + - uid: 32126 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,26.5 parent: 2 - - uid: 32249 + - uid: 32127 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,39.5 parent: 2 - - uid: 32250 + - uid: 32128 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,26.5 parent: 2 - - uid: 32251 + - uid: 32129 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,25.5 parent: 2 - - uid: 32252 + - uid: 32130 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,25.5 parent: 2 - - uid: 32253 + - uid: 32131 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,50.5 parent: 2 - - uid: 32254 + - uid: 32132 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,27.5 parent: 2 - - uid: 32255 + - uid: 32133 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,29.5 parent: 2 - - uid: 32256 + - uid: 32134 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,31.5 parent: 2 - - uid: 32257 + - uid: 32135 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,19.5 parent: 2 - - uid: 32258 + - uid: 32136 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,27.5 parent: 2 - - uid: 32259 + - uid: 32137 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,19.5 parent: 2 - - uid: 32260 + - uid: 32138 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,19.5 parent: 2 - - uid: 32261 + - uid: 32139 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,19.5 parent: 2 - - uid: 32262 + - uid: 32140 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,30.5 parent: 2 - - uid: 32263 + - uid: 32141 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,8.5 parent: 2 - - uid: 32264 + - uid: 32142 components: - type: Transform pos: 92.5,-5.5 parent: 2 - - uid: 32265 + - uid: 32143 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 32266 + - uid: 32144 components: - type: Transform pos: 94.5,-5.5 parent: 2 - - uid: 32267 + - uid: 32145 components: - type: Transform pos: 95.5,-5.5 parent: 2 - - uid: 32268 + - uid: 32146 components: - type: Transform pos: 96.5,-5.5 parent: 2 - - uid: 32269 + - uid: 32147 components: - type: Transform pos: 96.5,-4.5 parent: 2 - - uid: 32270 + - uid: 32148 components: - type: Transform pos: 97.5,-4.5 parent: 2 - - uid: 32271 + - uid: 32149 components: - type: Transform pos: 98.5,-4.5 parent: 2 - - uid: 32272 + - uid: 32150 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,-4.5 parent: 2 - - uid: 32273 + - uid: 32151 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-3.5 parent: 2 - - uid: 32274 + - uid: 32152 components: - type: Transform rot: 1.5707963267948966 rad pos: 100.5,-0.5 parent: 2 - - uid: 32275 + - uid: 32153 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,-0.5 parent: 2 - - uid: 32276 + - uid: 32154 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 32277 + - uid: 32155 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,5.5 parent: 2 - - uid: 32278 + - uid: 32156 components: - type: Transform pos: 94.5,8.5 parent: 2 - - uid: 32279 + - uid: 32157 components: - type: Transform pos: 95.5,8.5 parent: 2 - - uid: 32280 + - uid: 32158 components: - type: Transform pos: 91.5,-5.5 parent: 2 - - uid: 32281 + - uid: 32159 components: - type: Transform pos: 83.5,3.5 parent: 2 - - uid: 32282 + - uid: 32160 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,7.5 parent: 2 - - uid: 32283 + - uid: 32161 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 32284 + - uid: 32162 components: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 32285 + - uid: 32163 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,0.5 parent: 2 - - uid: 32286 + - uid: 32164 components: - type: Transform pos: 76.5,-4.5 parent: 2 - - uid: 32287 + - uid: 32165 components: - type: Transform pos: -77.5,19.5 parent: 2 - - uid: 32288 + - uid: 32166 components: - type: Transform pos: -77.5,20.5 parent: 2 - - uid: 32289 + - uid: 32167 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,43.5 parent: 2 - - uid: 32290 + - uid: 32168 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,47.5 parent: 2 - - uid: 32291 + - uid: 32169 components: - type: Transform pos: -77.5,22.5 parent: 2 - - uid: 32292 + - uid: 32170 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,35.5 parent: 2 - - uid: 32293 + - uid: 32171 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,32.5 parent: 2 - - uid: 32294 + - uid: 32172 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,40.5 parent: 2 - - uid: 32295 + - uid: 32173 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,27.5 parent: 2 - - uid: 32296 + - uid: 32174 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,33.5 parent: 2 - - uid: 32297 + - uid: 32175 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,35.5 parent: 2 - - uid: 32298 + - uid: 32176 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,42.5 parent: 2 - - uid: 32299 + - uid: 32177 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,35.5 parent: 2 - - uid: 32300 + - uid: 32178 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,35.5 parent: 2 - - uid: 32301 + - uid: 32179 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,41.5 parent: 2 - - uid: 32302 + - uid: 32180 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,34.5 parent: 2 - - uid: 32303 + - uid: 32181 components: - type: Transform pos: 78.5,-5.5 parent: 2 - - uid: 32304 + - uid: 32182 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,47.5 parent: 2 - - uid: 32305 + - uid: 32183 components: - type: Transform pos: 94.5,7.5 parent: 2 - - uid: 32306 + - uid: 32184 components: - type: Transform pos: -32.5,76.5 parent: 2 - - uid: 32307 + - uid: 32185 components: - type: Transform pos: -33.5,78.5 parent: 2 - - uid: 32308 + - uid: 32186 components: - type: Transform pos: -33.5,83.5 parent: 2 - - uid: 32309 + - uid: 32187 components: - type: Transform pos: -31.5,78.5 parent: 2 - - uid: 32310 + - uid: 32188 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 32311 + - uid: 32189 components: - type: Transform pos: -32.5,83.5 parent: 2 - - uid: 32312 + - uid: 32190 components: - type: Transform pos: 26.5,46.5 parent: 2 - - uid: 32313 + - uid: 32191 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,83.5 parent: 2 - - uid: 32314 + - uid: 32192 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,78.5 parent: 2 - - uid: 32315 + - uid: 32193 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,78.5 parent: 2 - - uid: 32316 + - uid: 32194 components: - type: Transform pos: -27.5,78.5 parent: 2 - - uid: 32317 + - uid: 32195 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-2.5 parent: 2 - - uid: 32318 + - uid: 32196 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,85.5 parent: 2 - - uid: 32319 + - uid: 32197 components: - type: Transform pos: 26.5,47.5 parent: 2 - - uid: 32320 + - uid: 32198 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,76.5 parent: 2 - - uid: 32321 + - uid: 32199 components: - type: Transform pos: -27.5,76.5 parent: 2 - - uid: 32322 + - uid: 32200 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,39.5 parent: 2 - - uid: 32323 + - uid: 32201 components: - type: Transform pos: -26.5,85.5 parent: 2 - - uid: 32324 + - uid: 32202 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 32325 + - uid: 32203 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,83.5 parent: 2 - - uid: 32326 + - uid: 32204 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,27.5 parent: 2 - - uid: 32327 + - uid: 32205 components: - type: Transform pos: -27.5,85.5 parent: 2 - - uid: 32328 + - uid: 32206 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,85.5 parent: 2 - - uid: 32329 + - uid: 32207 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,47.5 parent: 2 - - uid: 32330 + - uid: 32208 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,39.5 parent: 2 - - uid: 32331 + - uid: 32209 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,51.5 parent: 2 - - uid: 32332 + - uid: 32210 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,76.5 parent: 2 - - uid: 32333 + - uid: 32211 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,76.5 parent: 2 - - uid: 32334 + - uid: 32212 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,78.5 parent: 2 - - uid: 32335 + - uid: 32213 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,83.5 parent: 2 - - uid: 32336 + - uid: 32214 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 32337 + - uid: 32215 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-4.5 parent: 2 - - uid: 32338 + - uid: 32216 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-0.5 parent: 2 - - uid: 32339 + - uid: 32217 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-1.5 parent: 2 - - uid: 32340 + - uid: 32218 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-0.5 parent: 2 - - uid: 32341 + - uid: 32219 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-4.5 parent: 2 - - uid: 32342 + - uid: 32220 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-3.5 parent: 2 - - uid: 32343 + - uid: 32221 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-3.5 parent: 2 - - uid: 32344 + - uid: 32222 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-2.5 parent: 2 - - uid: 32345 + - uid: 32223 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-2.5 parent: 2 - - uid: 32346 + - uid: 32224 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-1.5 parent: 2 - - uid: 32347 + - uid: 32225 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-4.5 parent: 2 - - uid: 32348 + - uid: 32226 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,6.5 parent: 2 - - uid: 32349 + - uid: 32227 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,7.5 parent: 2 - - uid: 32350 + - uid: 32228 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 32351 + - uid: 32229 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 32352 + - uid: 32230 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,3.5 parent: 2 - - uid: 32353 + - uid: 32231 components: - type: Transform rot: 1.5707963267948966 rad pos: 100.5,-4.5 parent: 2 - - uid: 32354 + - uid: 32232 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,5.5 parent: 2 - - uid: 32355 + - uid: 32233 components: - type: Transform pos: -33.5,76.5 parent: 2 - - uid: 32356 + - uid: 32234 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,43.5 parent: 2 - - uid: 32357 + - uid: 32235 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,31.5 parent: 2 - - uid: 32358 + - uid: 32236 components: - type: Transform pos: 29.5,23.5 parent: 2 - - uid: 32359 + - uid: 32237 components: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 32360 + - uid: 32238 components: - type: Transform pos: 29.5,22.5 parent: 2 - - uid: 32361 + - uid: 32239 components: - type: Transform pos: 29.5,21.5 parent: 2 - - uid: 32362 + - uid: 32240 components: - type: Transform pos: -72.5,-42.5 parent: 2 - - uid: 32363 + - uid: 32241 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,43.5 parent: 2 - - uid: 32364 + - uid: 32242 components: - type: Transform pos: 33.5,13.5 parent: 2 - - uid: 32365 + - uid: 32243 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,85.5 parent: 2 - - uid: 32366 + - uid: 32244 components: - type: Transform pos: -66.5,-48.5 parent: 2 - - uid: 32367 + - uid: 32245 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 32368 + - uid: 32246 components: - type: Transform pos: 27.5,23.5 parent: 2 - - uid: 32369 + - uid: 32247 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,8.5 parent: 2 - - uid: 32370 + - uid: 32248 components: - type: Transform pos: 27.5,47.5 parent: 2 - - uid: 32371 + - uid: 32249 components: - type: Transform pos: 87.5,3.5 parent: 2 - - uid: 32372 + - uid: 32250 components: - type: Transform pos: -27.5,83.5 parent: 2 - - uid: 32373 + - uid: 32251 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,49.5 parent: 2 - - uid: 32374 + - uid: 32252 components: - type: Transform pos: -26.5,76.5 parent: 2 - - uid: 32375 + - uid: 32253 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,78.5 parent: 2 - - uid: 32376 + - uid: 32254 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,31.5 parent: 2 - - uid: 32377 + - uid: 32255 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,47.5 parent: 2 - - uid: 32378 + - uid: 32256 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,76.5 parent: 2 - - uid: 32379 + - uid: 32257 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,78.5 parent: 2 - - uid: 32380 + - uid: 32258 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,51.5 parent: 2 - - uid: 32381 + - uid: 32259 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,27.5 parent: 2 - - uid: 32382 + - uid: 32260 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,83.5 parent: 2 - - uid: 32383 + - uid: 32261 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,76.5 parent: 2 - - uid: 32384 + - uid: 32262 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 32385 + - uid: 32263 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,20.5 parent: 2 - - uid: 32386 + - uid: 32264 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,43.5 parent: 2 - - uid: 32387 + - uid: 32265 components: - type: Transform pos: 26.5,53.5 parent: 2 - - uid: 32388 + - uid: 32266 components: - type: Transform pos: -15.5,70.5 parent: 2 - - uid: 32389 + - uid: 32267 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,27.5 parent: 2 - - uid: 32390 + - uid: 32268 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,85.5 parent: 2 - - uid: 32391 + - uid: 32269 components: - type: Transform pos: -25.5,83.5 parent: 2 - - uid: 32392 + - uid: 32270 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,85.5 parent: 2 - - uid: 32393 + - uid: 32271 components: - type: Transform pos: -31.5,76.5 parent: 2 - - uid: 32394 + - uid: 32272 components: - type: Transform pos: -25.5,85.5 parent: 2 - - uid: 32395 + - uid: 32273 components: - type: Transform pos: 26.5,54.5 parent: 2 - - uid: 32396 + - uid: 32274 components: - type: Transform pos: -32.5,85.5 parent: 2 - - uid: 32397 + - uid: 32275 components: - type: Transform pos: -31.5,85.5 parent: 2 - - uid: 32398 + - uid: 32276 components: - type: Transform pos: -33.5,85.5 parent: 2 - - uid: 32399 + - uid: 32277 components: - type: Transform pos: -26.5,83.5 parent: 2 - - uid: 32400 + - uid: 32278 components: - type: Transform pos: -25.5,78.5 parent: 2 - - uid: 32401 + - uid: 32279 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,78.5 parent: 2 - - uid: 32402 + - uid: 32280 components: - type: Transform pos: -25.5,76.5 parent: 2 - - uid: 32403 + - uid: 32281 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-4.5 parent: 2 - - uid: 32404 + - uid: 32282 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-3.5 parent: 2 - - uid: 32405 + - uid: 32283 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-2.5 parent: 2 - - uid: 32406 + - uid: 32284 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-1.5 parent: 2 - - uid: 32407 + - uid: 32285 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,47.5 parent: 2 - - uid: 32408 + - uid: 32286 components: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 32409 + - uid: 32287 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-0.5 parent: 2 - - uid: 32410 + - uid: 32288 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,35.5 parent: 2 - - uid: 32411 + - uid: 32289 components: - type: Transform pos: -67.5,57.5 parent: 2 - - uid: 32412 + - uid: 32290 components: - type: Transform pos: -68.5,57.5 parent: 2 - - uid: 32413 + - uid: 32291 components: - type: Transform pos: -43.5,-2.5 parent: 2 - - uid: 32414 + - uid: 32292 components: - type: Transform pos: -63.5,60.5 parent: 2 - - uid: 32415 + - uid: 32293 components: - type: Transform pos: -63.5,-19.5 parent: 2 - - uid: 32416 + - uid: 32294 components: - type: Transform pos: -66.5,-19.5 parent: 2 - - uid: 32417 + - uid: 32295 components: - type: Transform pos: -71.5,53.5 parent: 2 - - uid: 32418 + - uid: 32296 components: - type: Transform pos: -72.5,53.5 parent: 2 - - uid: 32419 + - uid: 32297 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-34.5 parent: 2 - - uid: 32420 + - uid: 32298 components: - type: Transform pos: -70.5,59.5 parent: 2 - - uid: 32421 + - uid: 32299 components: - type: Transform pos: -69.5,59.5 parent: 2 - - uid: 32422 + - uid: 32300 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 32423 + - uid: 32301 components: - type: Transform pos: -72.5,57.5 parent: 2 - - uid: 32424 + - uid: 32302 components: - type: Transform pos: -72.5,59.5 parent: 2 - - uid: 32425 + - uid: 32303 components: - type: Transform pos: -72.5,54.5 parent: 2 - - uid: 32426 + - uid: 32304 components: - type: Transform pos: -69.5,53.5 parent: 2 - - uid: 32427 + - uid: 32305 components: - type: Transform pos: -72.5,55.5 parent: 2 - - uid: 32428 + - uid: 32306 components: - type: Transform pos: -71.5,59.5 parent: 2 - - uid: 32429 + - uid: 32307 components: - type: Transform pos: 96.5,8.5 parent: 2 - - uid: 32430 + - uid: 32308 components: - type: Transform pos: -72.5,56.5 parent: 2 - - uid: 32431 + - uid: 32309 components: - type: Transform pos: -72.5,58.5 parent: 2 - - uid: 32432 + - uid: 32310 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-3.5 parent: 2 - - uid: 32433 + - uid: 32311 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,56.5 parent: 2 - - uid: 32434 + - uid: 32312 components: - type: Transform pos: -70.5,53.5 parent: 2 - - uid: 32435 + - uid: 32313 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,15.5 parent: 2 - - uid: 32436 + - uid: 32314 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-23.5 parent: 2 - - uid: 32437 + - uid: 32315 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-60.5 parent: 2 - - uid: 32438 + - uid: 32316 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 2 - - uid: 32439 + - uid: 32317 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-33.5 parent: 2 - - uid: 32440 + - uid: 32318 components: - type: Transform pos: -62.5,63.5 parent: 2 - - uid: 32441 + - uid: 32319 components: - type: Transform pos: -63.5,58.5 parent: 2 - - uid: 32442 + - uid: 32320 components: - type: Transform pos: -66.5,63.5 parent: 2 - - uid: 32443 + - uid: 32321 components: - type: Transform pos: -63.5,62.5 parent: 2 - - uid: 32444 + - uid: 32322 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-38.5 parent: 2 - - uid: 32445 + - uid: 32323 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-39.5 parent: 2 - - uid: 32446 + - uid: 32324 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 - - uid: 32447 + - uid: 32325 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-39.5 parent: 2 - - uid: 32448 + - uid: 32326 components: - type: Transform pos: -65.5,63.5 parent: 2 - - uid: 32449 + - uid: 32327 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 32450 + - uid: 32328 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 - - uid: 32451 + - uid: 32329 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-80.5 parent: 2 - - uid: 32452 + - uid: 32330 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-33.5 parent: 2 - - uid: 32453 + - uid: 32331 components: - type: Transform pos: -64.5,57.5 parent: 2 - - uid: 32454 + - uid: 32332 components: - type: Transform pos: -63.5,57.5 parent: 2 - - uid: 32455 + - uid: 32333 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,11.5 parent: 2 - - uid: 32456 + - uid: 32334 components: - type: Transform pos: -63.5,63.5 parent: 2 - - uid: 32457 + - uid: 32335 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-80.5 parent: 2 - - uid: 32458 + - uid: 32336 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 - - uid: 32459 + - uid: 32337 components: - type: Transform pos: -68.5,60.5 parent: 2 - - uid: 32460 + - uid: 32338 components: - type: Transform pos: -64.5,63.5 parent: 2 - - uid: 32461 + - uid: 32339 components: - type: Transform pos: -65.5,-19.5 parent: 2 - - uid: 32462 + - uid: 32340 components: - type: Transform pos: -62.5,62.5 parent: 2 - - uid: 32463 + - uid: 32341 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-10.5 parent: 2 - - uid: 32464 + - uid: 32342 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - uid: 32465 + - uid: 32343 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - - uid: 32466 + - uid: 32344 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,70.5 parent: 2 - - uid: 32467 + - uid: 32345 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,70.5 parent: 2 - - uid: 32468 + - uid: 32346 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - - uid: 32469 + - uid: 32347 components: - type: Transform pos: -13.5,71.5 parent: 2 - - uid: 32470 + - uid: 32348 components: - type: Transform pos: 11.5,83.5 parent: 2 - - uid: 32471 + - uid: 32349 components: - type: Transform pos: 13.5,85.5 parent: 2 - - uid: 32472 + - uid: 32350 components: - type: Transform pos: -31.5,71.5 parent: 2 - - uid: 32473 + - uid: 32351 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 32474 + - uid: 32352 components: - type: Transform pos: 13.5,83.5 parent: 2 - - uid: 32475 + - uid: 32353 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-67.5 parent: 2 - - uid: 32476 + - uid: 32354 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-52.5 parent: 2 - - uid: 32477 + - uid: 32355 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,26.5 parent: 2 - - uid: 32478 + - uid: 32356 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,22.5 parent: 2 - - uid: 32479 + - uid: 32357 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,26.5 parent: 2 - - uid: 32480 + - uid: 32358 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,26.5 parent: 2 - - uid: 32481 + - uid: 32359 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,25.5 parent: 2 - - uid: 32482 + - uid: 32360 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-13.5 parent: 2 - - uid: 32483 + - uid: 32361 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 2 - - uid: 32484 + - uid: 32362 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 32485 + - uid: 32363 components: - type: Transform pos: 64.5,-16.5 parent: 2 - - uid: 32486 + - uid: 32364 components: - type: Transform pos: 64.5,-12.5 parent: 2 - - uid: 32487 + - uid: 32365 components: - type: Transform pos: 52.5,2.5 parent: 2 - - uid: 32488 + - uid: 32366 components: - type: Transform pos: -9.5,87.5 parent: 2 - - uid: 32489 + - uid: 32367 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,27.5 parent: 2 - - uid: 32490 + - uid: 32368 components: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 32491 + - uid: 32369 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,27.5 parent: 2 - - uid: 32492 + - uid: 32370 components: - type: Transform pos: -61.5,63.5 parent: 2 - - uid: 32493 + - uid: 32371 components: - type: Transform pos: -61.5,62.5 parent: 2 - - uid: 32494 + - uid: 32372 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 32495 + - uid: 32373 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,61.5 parent: 2 - - uid: 32496 + - uid: 32374 components: - type: Transform pos: 64.5,2.5 parent: 2 - - uid: 32497 + - uid: 32375 components: - type: Transform pos: -9.5,71.5 parent: 2 - - uid: 32498 + - uid: 32376 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 32500 + - uid: 32377 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,62.5 parent: 2 - - uid: 32501 + - uid: 32378 components: - type: Transform pos: -13.5,99.5 parent: 2 - - uid: 32502 + - uid: 32379 components: - type: Transform pos: -67.5,-18.5 parent: 2 - - uid: 32503 + - uid: 32380 components: - type: Transform pos: 79.5,20.5 parent: 2 - - uid: 32504 + - uid: 32381 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,27.5 parent: 2 - - uid: 32505 + - uid: 32382 components: - type: Transform pos: 71.5,8.5 parent: 2 - - uid: 32506 + - uid: 32383 components: - type: Transform pos: -74.5,-4.5 parent: 2 - - uid: 32507 + - uid: 32384 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 - - uid: 32508 + - uid: 32385 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,6.5 parent: 2 - - uid: 32509 + - uid: 32386 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,15.5 parent: 2 - - uid: 32510 + - uid: 32387 components: - type: Transform pos: 88.5,9.5 parent: 2 - - uid: 32511 + - uid: 32388 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,3.5 parent: 2 - - uid: 32512 + - uid: 32389 components: - type: Transform pos: 71.5,-5.5 parent: 2 - - uid: 32513 + - uid: 32390 components: - type: Transform pos: 67.5,10.5 parent: 2 - - uid: 32514 + - uid: 32391 components: - type: Transform pos: 37.5,31.5 parent: 2 - - uid: 32515 + - uid: 32392 components: - type: Transform pos: -56.5,65.5 parent: 2 - - uid: 32516 + - uid: 32393 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 32517 + - uid: 32394 components: - type: Transform pos: -57.5,65.5 parent: 2 - - uid: 32518 + - uid: 32395 components: - type: Transform pos: 12.5,84.5 parent: 2 - - uid: 32519 + - uid: 32396 components: - type: Transform pos: -103.5,-5.5 parent: 2 - - uid: 32520 + - uid: 32397 components: - type: Transform pos: -63.5,59.5 parent: 2 - - uid: 32521 + - uid: 32398 components: - type: Transform pos: -9.5,97.5 parent: 2 - - uid: 32522 + - uid: 32399 components: - type: Transform pos: 67.5,-3.5 parent: 2 - - uid: 32523 + - uid: 32400 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-68.5 parent: 2 - - uid: 32524 + - uid: 32401 components: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 32525 + - uid: 32402 components: - type: Transform pos: 87.5,9.5 parent: 2 - - uid: 32526 + - uid: 32403 components: - type: Transform pos: 56.5,9.5 parent: 2 - - uid: 32527 + - uid: 32404 components: - type: Transform pos: 61.5,11.5 parent: 2 - - uid: 32528 + - uid: 32405 components: - type: Transform pos: 44.5,25.5 parent: 2 - - uid: 32529 + - uid: 32406 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,45.5 parent: 2 - - uid: 32530 + - uid: 32407 components: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 32531 + - uid: 32408 components: - type: Transform pos: -75.5,-36.5 parent: 2 - - uid: 32532 + - uid: 32409 components: - type: Transform pos: -75.5,-34.5 parent: 2 - - uid: 32533 + - uid: 32410 components: - type: Transform pos: -27.5,99.5 parent: 2 - - uid: 32535 + - uid: 32411 components: - type: Transform pos: -75.5,-35.5 parent: 2 - - uid: 32536 + - uid: 32412 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,62.5 parent: 2 - - uid: 32537 + - uid: 32413 components: - type: Transform pos: -61.5,65.5 parent: 2 - - uid: 32538 + - uid: 32414 components: - type: Transform pos: 67.5,17.5 parent: 2 - - uid: 32539 + - uid: 32415 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 32540 + - uid: 32416 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 32541 + - uid: 32417 components: - type: Transform pos: -60.5,-49.5 parent: 2 - - uid: 32542 + - uid: 32418 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,62.5 parent: 2 - - uid: 32543 + - uid: 32419 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-78.5 parent: 2 - - uid: 32544 + - uid: 32420 components: - type: Transform pos: -73.5,-36.5 parent: 2 - - uid: 32545 + - uid: 32421 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-8.5 parent: 2 - - uid: 32546 + - uid: 32422 components: - type: Transform pos: 78.5,-0.5 parent: 2 - - uid: 32547 + - uid: 32423 components: - type: Transform pos: -9.5,98.5 parent: 2 - - uid: 32548 + - uid: 32424 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-41.5 parent: 2 - - uid: 32549 + - uid: 32425 components: - type: Transform pos: -59.5,21.5 parent: 2 - - uid: 32550 + - uid: 32426 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-79.5 parent: 2 - - uid: 32551 + - uid: 32427 components: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 32552 + - uid: 32428 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,15.5 parent: 2 - - uid: 32553 + - uid: 32429 components: - type: Transform pos: -19.5,-59.5 parent: 2 - - uid: 32554 + - uid: 32430 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,44.5 parent: 2 - - uid: 32555 + - uid: 32431 components: - type: Transform pos: 79.5,21.5 parent: 2 - - uid: 32556 + - uid: 32432 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,27.5 parent: 2 - - uid: 32557 + - uid: 32433 components: - type: Transform pos: 68.5,20.5 parent: 2 - - uid: 32558 + - uid: 32434 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 - - uid: 32559 + - uid: 32435 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-0.5 parent: 2 - - uid: 32560 + - uid: 32436 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-0.5 parent: 2 - - uid: 32561 + - uid: 32437 components: - type: Transform pos: -23.5,-59.5 parent: 2 - - uid: 32562 + - uid: 32438 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-53.5 parent: 2 - - uid: 32563 + - uid: 32439 components: - type: Transform pos: -66.5,-18.5 parent: 2 - - uid: 32564 + - uid: 32440 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 - - uid: 32565 + - uid: 32441 components: - type: Transform pos: -9.5,99.5 parent: 2 - - uid: 32566 + - uid: 32442 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 32567 + - uid: 32443 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,60.5 parent: 2 - - uid: 32568 + - uid: 32444 components: - type: Transform pos: -74.5,-36.5 parent: 2 - - uid: 32569 + - uid: 32445 components: - type: Transform pos: -75.5,-33.5 parent: 2 - - uid: 32570 + - uid: 32446 components: - type: Transform pos: 48.5,26.5 parent: 2 - - uid: 32571 + - uid: 32447 components: - type: Transform pos: -41.5,-66.5 parent: 2 - - uid: 32572 + - uid: 32448 components: - type: Transform pos: -41.5,-64.5 parent: 2 - - uid: 32573 + - uid: 32449 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,75.5 parent: 2 - - uid: 32574 + - uid: 32450 components: - type: Transform pos: 54.5,2.5 parent: 2 - - uid: 32575 + - uid: 32451 components: - type: Transform pos: 67.5,18.5 parent: 2 - - uid: 32576 + - uid: 32452 components: - type: Transform pos: 58.5,14.5 parent: 2 - - uid: 32577 + - uid: 32453 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,65.5 parent: 2 - - uid: 32578 + - uid: 32454 components: - type: Transform pos: 79.5,22.5 parent: 2 - - uid: 32579 + - uid: 32455 components: - type: Transform pos: 75.5,7.5 parent: 2 - - uid: 32580 + - uid: 32456 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,4.5 parent: 2 - - uid: 32581 + - uid: 32457 components: - type: Transform pos: -13.5,98.5 parent: 2 - - uid: 32582 + - uid: 32458 components: - type: Transform pos: 59.5,14.5 parent: 2 - - uid: 32583 + - uid: 32459 components: - type: Transform pos: 62.5,14.5 parent: 2 - - uid: 32584 + - uid: 32460 components: - type: Transform pos: 67.5,-5.5 parent: 2 - - uid: 32585 + - uid: 32461 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 32586 + - uid: 32462 components: - type: Transform pos: 61.5,14.5 parent: 2 - - uid: 32587 + - uid: 32463 components: - type: Transform pos: 78.5,-2.5 parent: 2 - - uid: 32588 + - uid: 32464 components: - type: Transform pos: 58.5,10.5 parent: 2 - - uid: 32589 + - uid: 32465 components: - type: Transform pos: 54.5,-48.5 parent: 2 - - uid: 32590 + - uid: 32466 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,29.5 parent: 2 - - uid: 32591 + - uid: 32467 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,66.5 parent: 2 - - uid: 32592 + - uid: 32468 components: - type: Transform pos: -31.5,99.5 parent: 2 - - uid: 32593 + - uid: 32469 components: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 32594 + - uid: 32470 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,21.5 parent: 2 - - uid: 32595 + - uid: 32471 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,3.5 parent: 2 - - uid: 32596 + - uid: 32472 components: - type: Transform pos: -80.5,-10.5 parent: 2 - - uid: 32597 + - uid: 32473 components: - type: Transform pos: 67.5,-1.5 parent: 2 - - uid: 32598 + - uid: 32474 components: - type: Transform pos: 71.5,9.5 parent: 2 - - uid: 32599 + - uid: 32475 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 32600 + - uid: 32476 components: - type: Transform pos: 73.5,-5.5 parent: 2 - - uid: 32601 + - uid: 32477 components: - type: Transform pos: 67.5,15.5 parent: 2 - - uid: 32602 + - uid: 32478 components: - type: Transform pos: -27.5,102.5 parent: 2 - - uid: 32603 + - uid: 32479 components: - type: Transform pos: 70.5,17.5 parent: 2 - - uid: 32604 + - uid: 32480 components: - type: Transform pos: 64.5,14.5 parent: 2 - - uid: 32605 + - uid: 32481 components: - type: Transform pos: -13.5,97.5 parent: 2 - - uid: 32606 + - uid: 32482 components: - type: Transform pos: 56.5,2.5 parent: 2 - - uid: 32607 + - uid: 32483 components: - type: Transform pos: -31.5,105.5 parent: 2 - - uid: 32608 + - uid: 32484 components: - type: Transform pos: 66.5,10.5 parent: 2 - - uid: 32609 + - uid: 32485 components: - type: Transform pos: -78.5,-14.5 parent: 2 - - uid: 32610 + - uid: 32486 components: - type: Transform pos: -27.5,100.5 parent: 2 - - uid: 32611 + - uid: 32487 components: - type: Transform pos: 71.5,10.5 parent: 2 - - uid: 32612 + - uid: 32488 components: - type: Transform pos: 75.5,19.5 parent: 2 - - uid: 32613 + - uid: 32489 components: - type: Transform pos: 71.5,2.5 parent: 2 - - uid: 32614 + - uid: 32490 components: - type: Transform pos: 15.5,-57.5 parent: 2 - - uid: 32615 + - uid: 32491 components: - type: Transform pos: -9.5,93.5 parent: 2 - - uid: 32616 + - uid: 32492 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 - - uid: 32617 + - uid: 32493 components: - type: Transform pos: 60.5,20.5 parent: 2 - - uid: 32618 + - uid: 32494 components: - type: Transform pos: 56.5,10.5 parent: 2 - - uid: 32619 + - uid: 32495 components: - type: Transform pos: 66.5,-5.5 parent: 2 - - uid: 32620 + - uid: 32496 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 32621 + - uid: 32497 components: - type: Transform pos: -13.5,100.5 parent: 2 - - uid: 32622 + - uid: 32498 components: - type: Transform pos: 70.5,-5.5 parent: 2 - - uid: 32623 + - uid: 32499 components: - type: Transform pos: 28.5,25.5 parent: 2 - - uid: 32624 + - uid: 32500 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-42.5 parent: 2 - - uid: 32625 + - uid: 32501 components: - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 32626 + - uid: 32502 components: - type: Transform pos: 67.5,13.5 parent: 2 - - uid: 32627 + - uid: 32503 components: - type: Transform pos: -82.5,12.5 parent: 2 - - uid: 32628 + - uid: 32504 components: - type: Transform pos: 55.5,-48.5 parent: 2 - - uid: 32629 + - uid: 32505 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 - - uid: 32630 + - uid: 32506 components: - type: Transform pos: 78.5,20.5 parent: 2 - - uid: 32631 + - uid: 32507 components: - type: Transform pos: 75.5,8.5 parent: 2 - - uid: 32632 + - uid: 32508 components: - type: Transform pos: 72.5,-5.5 parent: 2 - - uid: 32633 + - uid: 32509 components: - type: Transform pos: 70.5,2.5 parent: 2 - - uid: 32634 + - uid: 32510 components: - type: Transform pos: 64.5,-5.5 parent: 2 - - uid: 32635 + - uid: 32511 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,14.5 parent: 2 - - uid: 32636 + - uid: 32512 components: - type: Transform pos: -81.5,16.5 parent: 2 - - uid: 32637 + - uid: 32513 components: - type: Transform pos: -81.5,12.5 parent: 2 - - uid: 32638 + - uid: 32514 components: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 32639 + - uid: 32515 components: - type: Transform pos: 75.5,16.5 parent: 2 - - uid: 32640 + - uid: 32516 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 32641 + - uid: 32517 components: - type: Transform pos: 14.5,-62.5 parent: 2 - - uid: 32643 + - uid: 32518 components: - type: Transform pos: 69.5,2.5 parent: 2 - - uid: 32644 + - uid: 32519 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-79.5 parent: 2 - - uid: 32645 + - uid: 32520 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-79.5 parent: 2 - - uid: 32646 + - uid: 32521 components: - type: Transform pos: 75.5,12.5 parent: 2 - - uid: 32647 + - uid: 32522 components: - type: Transform pos: 61.5,20.5 parent: 2 - - uid: 32648 + - uid: 32523 components: - type: Transform pos: -72.5,-36.5 parent: 2 - - uid: 32649 + - uid: 32524 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,30.5 parent: 2 - - uid: 32650 + - uid: 32525 components: - type: Transform pos: -80.5,-14.5 parent: 2 - - uid: 32651 + - uid: 32526 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,27.5 parent: 2 - - uid: 32652 + - uid: 32527 components: - type: Transform pos: 48.5,27.5 parent: 2 - - uid: 32653 + - uid: 32528 components: - type: Transform pos: -9.5,96.5 parent: 2 - - uid: 32654 + - uid: 32529 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,31.5 parent: 2 - - uid: 32655 + - uid: 32530 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,70.5 parent: 2 - - uid: 32656 + - uid: 32531 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,27.5 parent: 2 - - uid: 32657 + - uid: 32532 components: - type: Transform pos: -79.5,-14.5 parent: 2 - - uid: 32658 + - uid: 32533 components: - type: Transform pos: 70.5,20.5 parent: 2 - - uid: 32659 + - uid: 32534 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 32660 + - uid: 32535 components: - type: Transform pos: -25.5,-59.5 parent: 2 - - uid: 32661 + - uid: 32536 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,31.5 parent: 2 - - uid: 32662 + - uid: 32537 components: - type: Transform pos: -45.5,7.5 parent: 2 - - uid: 32663 + - uid: 32538 components: - type: Transform pos: -9.5,-53.5 parent: 2 - - uid: 32664 + - uid: 32539 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-36.5 parent: 2 - - uid: 32665 + - uid: 32540 components: - type: Transform pos: -75.5,-4.5 parent: 2 - - uid: 32666 + - uid: 32541 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-63.5 parent: 2 - - uid: 32667 + - uid: 32542 components: - type: Transform pos: 14.5,80.5 parent: 2 - - uid: 32668 + - uid: 32543 components: - type: Transform pos: -27.5,70.5 parent: 2 - - uid: 32669 + - uid: 32544 components: - type: Transform pos: 53.5,2.5 parent: 2 - - uid: 32670 + - uid: 32545 components: - type: Transform pos: 32.5,39.5 parent: 2 - - uid: 32671 + - uid: 32546 components: - type: Transform pos: 72.5,-1.5 parent: 2 - - uid: 32672 + - uid: 32547 components: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 32673 + - uid: 32548 components: - type: Transform pos: 38.5,16.5 parent: 2 - - uid: 32674 + - uid: 32549 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-42.5 parent: 2 - - uid: 32675 + - uid: 32550 components: - type: Transform pos: 50.5,-5.5 parent: 2 - - uid: 32676 + - uid: 32551 components: - type: Transform pos: 61.5,2.5 parent: 2 - - uid: 32677 + - uid: 32552 components: - type: Transform pos: 63.5,10.5 parent: 2 - - uid: 32678 + - uid: 32553 components: - type: Transform pos: 62.5,20.5 parent: 2 - - uid: 32679 + - uid: 32554 components: - type: Transform pos: 63.5,20.5 parent: 2 - - uid: 32680 + - uid: 32555 components: - type: Transform pos: 63.5,2.5 parent: 2 - - uid: 32681 + - uid: 32556 components: - type: Transform pos: 64.5,20.5 parent: 2 - - uid: 32682 + - uid: 32557 components: - type: Transform pos: 65.5,20.5 parent: 2 - - uid: 32683 + - uid: 32558 components: - type: Transform pos: 66.5,20.5 parent: 2 - - uid: 32684 + - uid: 32559 components: - type: Transform pos: 67.5,20.5 parent: 2 - - uid: 32685 + - uid: 32560 components: - type: Transform pos: 69.5,20.5 parent: 2 - - uid: 32686 + - uid: 32561 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,2.5 parent: 2 - - uid: 32687 + - uid: 32562 components: - type: Transform pos: -36.5,-53.5 parent: 2 - - uid: 32688 + - uid: 32563 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-47.5 parent: 2 - - uid: 32689 + - uid: 32564 components: - type: Transform pos: 82.5,-24.5 parent: 2 - - uid: 32690 + - uid: 32565 components: - type: Transform pos: 56.5,6.5 parent: 2 - - uid: 32691 + - uid: 32566 components: - type: Transform pos: 71.5,4.5 parent: 2 - - uid: 32692 + - uid: 32567 components: - type: Transform pos: 56.5,-5.5 parent: 2 - - uid: 32693 + - uid: 32568 components: - type: Transform pos: -24.5,-59.5 parent: 2 - - uid: 32694 + - uid: 32569 components: - type: Transform pos: 61.5,13.5 parent: 2 - - uid: 32695 + - uid: 32570 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,2.5 parent: 2 - - uid: 32696 + - uid: 32571 components: - type: Transform pos: 75.5,13.5 parent: 2 - - uid: 32697 + - uid: 32572 components: - type: Transform pos: 75.5,11.5 parent: 2 - - uid: 32698 + - uid: 32573 components: - type: Transform pos: -76.5,-4.5 parent: 2 - - uid: 32699 + - uid: 32574 components: - type: Transform pos: -21.5,-59.5 parent: 2 - - uid: 32700 + - uid: 32575 components: - type: Transform pos: 68.5,17.5 parent: 2 - - uid: 32701 + - uid: 32576 components: - type: Transform pos: 76.5,20.5 parent: 2 - - uid: 32702 + - uid: 32577 components: - type: Transform pos: 75.5,20.5 parent: 2 - - uid: 32703 + - uid: 32578 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - uid: 32704 + - uid: 32579 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - - uid: 32705 + - uid: 32580 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 - - uid: 32706 + - uid: 32581 components: - type: Transform pos: -13.5,96.5 parent: 2 - - uid: 32707 + - uid: 32582 components: - type: Transform pos: -46.5,3.5 parent: 2 - - uid: 32708 + - uid: 32583 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 - - uid: 32709 + - uid: 32584 components: - type: Transform pos: -13.5,103.5 parent: 2 - - uid: 32710 + - uid: 32585 components: - type: Transform pos: -39.5,-7.5 parent: 2 - - uid: 32711 + - uid: 32586 components: - type: Transform pos: 15.5,76.5 parent: 2 - - uid: 32712 + - uid: 32587 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-41.5 parent: 2 - - uid: 32713 + - uid: 32588 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 - - uid: 32714 + - uid: 32589 components: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 32715 + - uid: 32590 components: - type: Transform pos: 71.5,7.5 parent: 2 - - uid: 32716 + - uid: 32591 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 32717 + - uid: 32592 components: - type: Transform pos: 14.5,76.5 parent: 2 - - uid: 32718 + - uid: 32593 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,31.5 parent: 2 - - uid: 32719 + - uid: 32594 components: - type: Transform pos: -27.5,104.5 parent: 2 - - uid: 32720 + - uid: 32595 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 32721 + - uid: 32596 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-8.5 parent: 2 - - uid: 32722 + - uid: 32597 components: - type: Transform pos: -38.5,-47.5 parent: 2 - - uid: 32723 + - uid: 32598 components: - type: Transform pos: -37.5,-47.5 parent: 2 - - uid: 32724 + - uid: 32599 components: - type: Transform pos: -36.5,-47.5 parent: 2 - - uid: 32725 + - uid: 32600 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,6.5 parent: 2 - - uid: 32726 + - uid: 32601 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-46.5 parent: 2 - - uid: 32727 + - uid: 32602 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-46.5 parent: 2 - - uid: 32728 + - uid: 32603 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-46.5 parent: 2 - - uid: 32729 + - uid: 32604 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,1.5 parent: 2 - - uid: 32730 + - uid: 32605 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 32731 + - uid: 32606 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 32732 + - uid: 32607 components: - type: Transform pos: 60.5,2.5 parent: 2 - - uid: 32733 + - uid: 32608 components: - type: Transform pos: 67.5,11.5 parent: 2 - - uid: 32734 + - uid: 32609 components: - type: Transform pos: 68.5,-1.5 parent: 2 - - uid: 32735 + - uid: 32610 components: - type: Transform pos: -26.5,-42.5 parent: 2 - - uid: 32736 + - uid: 32611 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-46.5 parent: 2 - - uid: 32737 + - uid: 32612 components: - type: Transform pos: -9.5,70.5 parent: 2 - - uid: 32738 + - uid: 32613 components: - type: Transform pos: 59.5,10.5 parent: 2 - - uid: 32739 + - uid: 32614 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,30.5 parent: 2 - - uid: 32740 + - uid: 32615 components: - type: Transform pos: 64.5,10.5 parent: 2 - - uid: 32741 + - uid: 32616 components: - type: Transform pos: 49.5,-1.5 parent: 2 - - uid: 32742 + - uid: 32617 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-71.5 parent: 2 - - uid: 32743 + - uid: 32618 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-4.5 parent: 2 - - uid: 32744 + - uid: 32619 components: - type: Transform pos: -31.5,87.5 parent: 2 - - uid: 32745 + - uid: 32620 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,28.5 parent: 2 - - uid: 32746 + - uid: 32621 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,29.5 parent: 2 - - uid: 32747 + - uid: 32622 components: - type: Transform pos: -26.5,-41.5 parent: 2 - - uid: 32748 + - uid: 32623 components: - type: Transform pos: 51.5,2.5 parent: 2 - - uid: 32749 + - uid: 32624 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,4.5 parent: 2 - - uid: 32750 + - uid: 32625 components: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 32751 + - uid: 32626 components: - type: Transform pos: 73.5,-1.5 parent: 2 - - uid: 32752 + - uid: 32627 components: - type: Transform pos: 50.5,2.5 parent: 2 - - uid: 32753 + - uid: 32628 components: - type: Transform pos: 71.5,5.5 parent: 2 - - uid: 32754 + - uid: 32629 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-42.5 parent: 2 - - uid: 32755 + - uid: 32630 components: - type: Transform pos: 9.5,-60.5 parent: 2 - - uid: 32756 + - uid: 32631 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 32757 + - uid: 32632 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-3.5 parent: 2 - - uid: 32758 + - uid: 32633 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-45.5 parent: 2 - - uid: 32759 + - uid: 32634 components: - type: Transform pos: -114.5,34.5 parent: 2 - - uid: 32760 + - uid: 32635 components: - type: Transform pos: -22.5,-42.5 parent: 2 - - uid: 32761 + - uid: 32636 components: - type: Transform pos: 67.5,-4.5 parent: 2 - - uid: 32762 + - uid: 32637 components: - type: Transform pos: -9.5,101.5 parent: 2 - - uid: 32763 + - uid: 32638 components: - type: Transform pos: -125.5,34.5 parent: 2 - - uid: 32764 + - uid: 32639 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 - - uid: 32765 + - uid: 32640 components: - type: Transform pos: 56.5,3.5 parent: 2 - - uid: 32766 + - uid: 32641 components: - type: Transform pos: 30.5,44.5 parent: 2 - - uid: 32767 + - uid: 32642 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 32768 + - uid: 32643 components: - type: Transform pos: 56.5,8.5 parent: 2 - - uid: 32769 + - uid: 32644 components: - type: Transform pos: 32.5,35.5 parent: 2 - - uid: 32770 + - uid: 32645 components: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 32771 + - uid: 32646 components: - type: Transform pos: -58.5,21.5 parent: 2 - - uid: 32772 + - uid: 32647 components: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 32773 + - uid: 32648 components: - type: Transform pos: 71.5,11.5 parent: 2 - - uid: 32774 + - uid: 32649 components: - type: Transform pos: -8.5,70.5 parent: 2 - - uid: 32775 + - uid: 32650 components: - type: Transform pos: 75.5,-2.5 parent: 2 - - uid: 32776 + - uid: 32651 components: - type: Transform pos: 57.5,10.5 parent: 2 - - uid: 32777 + - uid: 32652 components: - type: Transform pos: 56.5,14.5 parent: 2 - - uid: 32778 + - uid: 32653 components: - type: Transform pos: 49.5,10.5 parent: 2 - - uid: 32779 + - uid: 32654 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,27.5 parent: 2 - - uid: 32780 + - uid: 32655 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,40.5 parent: 2 - - uid: 32781 + - uid: 32656 components: - type: Transform pos: 39.5,14.5 parent: 2 - - uid: 32782 + - uid: 32657 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 32783 + - uid: 32658 components: - type: Transform pos: 65.5,10.5 parent: 2 - - uid: 32784 + - uid: 32659 components: - type: Transform pos: 63.5,14.5 parent: 2 - - uid: 32785 + - uid: 32660 components: - type: Transform pos: 60.5,14.5 parent: 2 - - uid: 32786 + - uid: 32661 components: - type: Transform pos: -34.5,-35.5 parent: 2 - - uid: 32787 + - uid: 32662 components: - type: Transform pos: 67.5,-2.5 parent: 2 - - uid: 32788 + - uid: 32663 components: - type: Transform pos: -27.5,105.5 parent: 2 - - uid: 32789 + - uid: 32664 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,55.5 parent: 2 - - uid: 32790 + - uid: 32665 components: - type: Transform pos: 84.5,15.5 parent: 2 - - uid: 32791 + - uid: 32666 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 32792 + - uid: 32667 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,46.5 parent: 2 - - uid: 32793 + - uid: 32668 components: - type: Transform pos: 33.5,18.5 parent: 2 - - uid: 32794 + - uid: 32669 components: - type: Transform pos: -75.5,2.5 parent: 2 - - uid: 32795 + - uid: 32670 components: - type: Transform pos: -26.5,-40.5 parent: 2 - - uid: 32796 + - uid: 32671 components: - type: Transform pos: 67.5,12.5 parent: 2 - - uid: 32797 + - uid: 32672 components: - type: Transform pos: 80.5,12.5 parent: 2 - - uid: 32798 + - uid: 32673 components: - type: Transform pos: 53.5,14.5 parent: 2 - - uid: 32799 + - uid: 32674 components: - type: Transform pos: 37.5,-68.5 parent: 2 - - uid: 32800 + - uid: 32675 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-37.5 parent: 2 - - uid: 32801 + - uid: 32676 components: - type: Transform pos: 56.5,7.5 parent: 2 - - uid: 32802 + - uid: 32677 components: - type: Transform pos: 37.5,-65.5 parent: 2 - - uid: 32803 + - uid: 32678 components: - type: Transform pos: 71.5,20.5 parent: 2 - - uid: 32804 + - uid: 32679 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 32805 + - uid: 32680 components: - type: Transform pos: 67.5,16.5 parent: 2 - - uid: 32806 + - uid: 32681 components: - type: Transform pos: 67.5,14.5 parent: 2 - - uid: 32807 + - uid: 32682 components: - type: Transform pos: 71.5,19.5 parent: 2 - - uid: 32808 + - uid: 32683 components: - type: Transform pos: 71.5,17.5 parent: 2 - - uid: 32809 + - uid: 32684 components: - type: Transform pos: 70.5,-1.5 parent: 2 - - uid: 32810 + - uid: 32685 components: - type: Transform pos: 65.5,2.5 parent: 2 - - uid: 32811 + - uid: 32686 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,54.5 parent: 2 - - uid: 32812 + - uid: 32687 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,6.5 parent: 2 - - uid: 32813 + - uid: 32688 components: - type: Transform pos: 55.5,2.5 parent: 2 - - uid: 32814 + - uid: 32689 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,74.5 parent: 2 - - uid: 32815 + - uid: 32690 components: - type: Transform pos: 13.5,-62.5 parent: 2 - - uid: 32816 + - uid: 32691 components: - type: Transform pos: 81.5,15.5 parent: 2 - - uid: 32817 + - uid: 32692 components: - type: Transform pos: 80.5,15.5 parent: 2 - - uid: 32818 + - uid: 32693 components: - type: Transform pos: -31.5,101.5 parent: 2 - - uid: 32819 + - uid: 32694 components: - type: Transform pos: -31.5,104.5 parent: 2 - - uid: 32820 + - uid: 32695 components: - type: Transform pos: 42.5,-68.5 parent: 2 - - uid: 32821 + - uid: 32696 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 2 - - uid: 32822 + - uid: 32697 components: - type: Transform pos: 41.5,-64.5 parent: 2 - - uid: 32823 + - uid: 32698 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,87.5 parent: 2 - - uid: 32824 + - uid: 32699 components: - type: Transform pos: -31.5,100.5 parent: 2 - - uid: 32825 + - uid: 32700 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 - - uid: 32826 + - uid: 32701 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 32827 + - uid: 32702 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 32828 + - uid: 32703 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 32829 + - uid: 32704 components: - type: Transform pos: 38.5,-64.5 parent: 2 - - uid: 32830 + - uid: 32705 components: - type: Transform pos: 39.5,-64.5 parent: 2 - - uid: 32831 + - uid: 32706 components: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 32832 + - uid: 32707 components: - type: Transform pos: 42.5,-64.5 parent: 2 - - uid: 32833 + - uid: 32708 components: - type: Transform pos: -74.5,-2.5 parent: 2 - - uid: 32834 + - uid: 32709 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 32835 + - uid: 32710 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 32836 + - uid: 32711 components: - type: Transform pos: 10.5,4.5 parent: 2 - - uid: 32837 + - uid: 32712 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 32838 + - uid: 32713 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 32839 + - uid: 32714 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 32840 + - uid: 32715 components: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 32841 + - uid: 32716 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 32842 + - uid: 32717 components: - type: Transform pos: 11.5,12.5 parent: 2 - - uid: 32843 + - uid: 32718 components: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 32844 + - uid: 32719 components: - type: Transform pos: 13.5,12.5 parent: 2 - - uid: 32845 + - uid: 32720 components: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 32846 + - uid: 32721 components: - type: Transform pos: 15.5,12.5 parent: 2 - - uid: 32847 + - uid: 32722 components: - type: Transform pos: 77.5,29.5 parent: 2 - - uid: 32848 + - uid: 32723 components: - type: Transform pos: 78.5,24.5 parent: 2 - - uid: 32849 + - uid: 32724 components: - type: Transform pos: 79.5,24.5 parent: 2 - - uid: 32850 + - uid: 32725 components: - type: Transform pos: 79.5,23.5 parent: 2 - - uid: 32851 + - uid: 32726 components: - type: Transform pos: 72.5,20.5 parent: 2 - - uid: 32852 + - uid: 32727 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 32853 + - uid: 32728 components: - type: Transform pos: 15.5,10.5 parent: 2 - - uid: 32854 + - uid: 32729 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 32855 + - uid: 32730 components: - type: Transform pos: 15.5,8.5 parent: 2 - - uid: 32856 + - uid: 32731 components: - type: Transform pos: 15.5,7.5 parent: 2 - - uid: 32857 + - uid: 32732 components: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 32858 + - uid: 32733 components: - type: Transform pos: 14.5,6.5 parent: 2 - - uid: 32859 + - uid: 32734 components: - type: Transform pos: 13.5,6.5 parent: 2 - - uid: 32860 + - uid: 32735 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 32861 + - uid: 32736 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 32862 + - uid: 32737 components: - type: Transform pos: 7.5,12.5 parent: 2 - - uid: 32863 + - uid: 32738 components: - type: Transform pos: 6.5,12.5 parent: 2 - - uid: 32864 + - uid: 32739 components: - type: Transform pos: 5.5,12.5 parent: 2 - - uid: 32865 + - uid: 32740 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 32866 + - uid: 32741 components: - type: Transform pos: -12.5,6.5 parent: 2 - - uid: 32867 + - uid: 32742 components: - type: Transform pos: -8.5,-6.5 parent: 2 - - uid: 32868 + - uid: 32743 components: - type: Transform pos: -10.5,-6.5 parent: 2 - - uid: 32869 + - uid: 32744 components: - type: Transform pos: -12.5,-6.5 parent: 2 - - uid: 32870 + - uid: 32745 components: - type: Transform pos: -13.5,-6.5 parent: 2 - - uid: 32871 + - uid: 32746 components: - type: Transform pos: -14.5,-6.5 parent: 2 - - uid: 32872 + - uid: 32747 components: - type: Transform pos: -15.5,-6.5 parent: 2 - - uid: 32873 + - uid: 32748 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - uid: 32874 + - uid: 32749 components: - type: Transform pos: -16.5,-5.5 parent: 2 - - uid: 32875 + - uid: 32750 components: - type: Transform pos: -16.5,-4.5 parent: 2 - - uid: 32876 + - uid: 32751 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 32877 + - uid: 32752 components: - type: Transform pos: -16.5,-2.5 parent: 2 - - uid: 32878 + - uid: 32753 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 32879 + - uid: 32754 components: - type: Transform pos: -14.5,-2.5 parent: 2 - - uid: 32880 + - uid: 32755 components: - type: Transform pos: -14.5,-1.5 parent: 2 - - uid: 32881 + - uid: 32756 components: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 32882 + - uid: 32757 components: - type: Transform pos: -14.5,2.5 parent: 2 - - uid: 32883 + - uid: 32758 components: - type: Transform pos: -14.5,5.5 parent: 2 - - uid: 32884 + - uid: 32759 components: - type: Transform pos: -11.5,6.5 parent: 2 - - uid: 32885 + - uid: 32760 components: - type: Transform pos: -8.5,6.5 parent: 2 - - uid: 32886 + - uid: 32761 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 32887 + - uid: 32762 components: - type: Transform pos: -14.5,6.5 parent: 2 - - uid: 32888 + - uid: 32763 components: - type: Transform pos: -15.5,6.5 parent: 2 - - uid: 32889 + - uid: 32764 components: - type: Transform pos: -16.5,6.5 parent: 2 - - uid: 32890 + - uid: 32765 components: - type: Transform pos: -16.5,7.5 parent: 2 - - uid: 32891 + - uid: 32766 components: - type: Transform pos: -16.5,11.5 parent: 2 - - uid: 32892 + - uid: 32767 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 32893 + - uid: 32768 components: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 32894 + - uid: 32769 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 32895 + - uid: 32770 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 32896 + - uid: 32771 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,7.5 parent: 2 - - uid: 32897 + - uid: 32772 components: - type: Transform pos: 13.5,79.5 parent: 2 - - uid: 32898 + - uid: 32773 components: - type: Transform pos: 13.5,77.5 parent: 2 - - uid: 32899 + - uid: 32774 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,5.5 parent: 2 - - uid: 32900 + - uid: 32775 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,5.5 parent: 2 - - uid: 32901 + - uid: 32776 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,5.5 parent: 2 - - uid: 32902 + - uid: 32777 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-20.5 parent: 2 - - uid: 32903 + - uid: 32778 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-20.5 parent: 2 - - uid: 32904 + - uid: 32779 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-20.5 parent: 2 - - uid: 32905 + - uid: 32780 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-20.5 parent: 2 - - uid: 32906 + - uid: 32781 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 32907 + - uid: 32782 components: - type: Transform pos: 49.5,-5.5 parent: 2 - - uid: 32908 + - uid: 32783 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,80.5 parent: 2 - - uid: 32909 + - uid: 32784 components: - type: Transform pos: 75.5,-4.5 parent: 2 - - uid: 32910 + - uid: 32785 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 32911 + - uid: 32786 components: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 32912 + - uid: 32787 components: - type: Transform pos: -4.5,11.5 parent: 2 - - uid: 32913 + - uid: 32788 components: - type: Transform pos: -2.5,11.5 parent: 2 - - uid: 32914 + - uid: 32789 components: - type: Transform pos: -1.5,11.5 parent: 2 - - uid: 32915 + - uid: 32790 components: - type: Transform pos: -0.5,11.5 parent: 2 - - uid: 32916 + - uid: 32791 components: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 32917 + - uid: 32792 components: - type: Transform pos: 1.5,11.5 parent: 2 - - uid: 32918 + - uid: 32793 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 32919 + - uid: 32794 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 32920 + - uid: 32795 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 32921 + - uid: 32796 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 32922 + - uid: 32797 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 32923 + - uid: 32798 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 32924 + - uid: 32799 components: - type: Transform pos: -7.5,2.5 parent: 2 - - uid: 32925 + - uid: 32800 components: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 32926 + - uid: 32801 components: - type: Transform pos: -7.5,0.5 parent: 2 - - uid: 32927 + - uid: 32802 components: - type: Transform pos: -7.5,3.5 parent: 2 - - uid: 32928 + - uid: 32803 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 32929 + - uid: 32804 components: - type: Transform pos: -7.5,5.5 parent: 2 - - uid: 32930 + - uid: 32805 components: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 32931 + - uid: 32806 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 32932 + - uid: 32807 components: - type: Transform pos: -6.5,7.5 parent: 2 - - uid: 32933 + - uid: 32808 components: - type: Transform pos: -5.5,7.5 parent: 2 - - uid: 32934 + - uid: 32809 components: - type: Transform pos: -5.5,8.5 parent: 2 - - uid: 32935 + - uid: 32810 components: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 32936 + - uid: 32811 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 32937 + - uid: 32812 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 32938 + - uid: 32813 components: - type: Transform pos: -13.5,93.5 parent: 2 - - uid: 32939 + - uid: 32814 components: - type: Transform pos: -9.5,102.5 parent: 2 - - uid: 32940 + - uid: 32815 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 32941 + - uid: 32816 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 32942 + - uid: 32817 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 32943 + - uid: 32818 components: - type: Transform pos: -37.5,-80.5 parent: 2 - - uid: 32944 + - uid: 32819 components: - type: Transform pos: -9.5,103.5 parent: 2 - - uid: 32945 + - uid: 32820 components: - type: Transform pos: -37.5,-79.5 parent: 2 - - uid: 32946 + - uid: 32821 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 32947 + - uid: 32822 components: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 32948 + - uid: 32823 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 32949 + - uid: 32824 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 32950 + - uid: 32825 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 32951 + - uid: 32826 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 32952 + - uid: 32827 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 32953 + - uid: 32828 components: - type: Transform pos: -3.5,11.5 parent: 2 - - uid: 32954 + - uid: 32829 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 32955 + - uid: 32830 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 32956 + - uid: 32831 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 32957 + - uid: 32832 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 32958 + - uid: 32833 components: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 32959 + - uid: 32834 components: - type: Transform pos: 68.5,2.5 parent: 2 - - uid: 32960 + - uid: 32835 components: - type: Transform pos: 4.5,10.5 parent: 2 - - uid: 32961 + - uid: 32836 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 32962 + - uid: 32837 components: - type: Transform pos: 6.5,6.5 parent: 2 - - uid: 32963 + - uid: 32838 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-66.5 parent: 2 - - uid: 32964 + - uid: 32839 components: - type: Transform pos: -7.5,-6.5 parent: 2 - - uid: 32965 + - uid: 32840 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 32966 + - uid: 32841 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 32967 + - uid: 32842 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 32968 + - uid: 32843 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 32969 + - uid: 32844 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 32970 + - uid: 32845 components: - type: Transform pos: 15.5,-59.5 parent: 2 - - uid: 32971 + - uid: 32846 components: - type: Transform pos: 4.5,9.5 parent: 2 - - uid: 32972 + - uid: 32847 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 32973 + - uid: 32848 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 32974 + - uid: 32849 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,23.5 parent: 2 - - uid: 32975 + - uid: 32850 components: - type: Transform pos: 73.5,26.5 parent: 2 - - uid: 32976 + - uid: 32851 components: - type: Transform pos: 80.5,14.5 parent: 2 - - uid: 32977 + - uid: 32852 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 32978 + - uid: 32853 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 32979 + - uid: 32854 components: - type: Transform pos: 71.5,21.5 parent: 2 - - uid: 32980 + - uid: 32855 components: - type: Transform pos: 71.5,22.5 parent: 2 - - uid: 32981 + - uid: 32856 components: - type: Transform pos: 71.5,23.5 parent: 2 - - uid: 32982 + - uid: 32857 components: - type: Transform pos: 71.5,24.5 parent: 2 - - uid: 32983 + - uid: 32858 components: - type: Transform pos: 72.5,24.5 parent: 2 - - uid: 32984 + - uid: 32859 components: - type: Transform pos: 73.5,25.5 parent: 2 - - uid: 32985 + - uid: 32860 components: - type: Transform pos: 49.5,14.5 parent: 2 - - uid: 32986 + - uid: 32861 components: - type: Transform pos: -55.5,21.5 parent: 2 - - uid: 32987 + - uid: 32862 components: - type: Transform pos: 13.5,76.5 parent: 2 - - uid: 32988 + - uid: 32863 components: - type: Transform pos: 44.5,24.5 parent: 2 - - uid: 32989 + - uid: 32864 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,42.5 parent: 2 - - uid: 32990 + - uid: 32865 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-8.5 parent: 2 - - uid: 32991 + - uid: 32866 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-48.5 parent: 2 - - uid: 32992 + - uid: 32867 components: - type: Transform pos: 8.5,85.5 parent: 2 - - uid: 32993 + - uid: 32868 components: - type: Transform pos: -81.5,-10.5 parent: 2 - - uid: 32994 + - uid: 32869 components: - type: Transform pos: -16.5,-27.5 parent: 2 - - uid: 32995 + - uid: 32870 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 32996 + - uid: 32871 components: - type: Transform pos: 36.5,13.5 parent: 2 - - uid: 32997 + - uid: 32872 components: - type: Transform pos: 35.5,13.5 parent: 2 - - uid: 32998 + - uid: 32873 components: - type: Transform pos: 38.5,13.5 parent: 2 - - uid: 32999 + - uid: 32874 components: - type: Transform pos: 38.5,-1.5 parent: 2 - - uid: 33000 + - uid: 32875 components: - type: Transform pos: -77.5,21.5 parent: 2 - - uid: 33001 + - uid: 32876 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 33002 + - uid: 32877 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 33003 + - uid: 32878 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,33.5 parent: 2 - - uid: 33004 + - uid: 32879 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,1.5 parent: 2 - - uid: 33005 + - uid: 32880 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,41.5 parent: 2 - - uid: 33006 + - uid: 32881 components: - type: Transform pos: 4.5,93.5 parent: 2 - - uid: 33007 + - uid: 32882 components: - type: Transform pos: -64.5,2.5 parent: 2 - - uid: 33008 + - uid: 32883 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 33009 + - uid: 32884 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,34.5 parent: 2 - - uid: 33010 + - uid: 32885 components: - type: Transform pos: 26.5,39.5 parent: 2 - - uid: 33011 + - uid: 32886 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,43.5 parent: 2 - - uid: 33012 + - uid: 32887 components: - type: Transform pos: 34.5,13.5 parent: 2 - - uid: 33013 + - uid: 32888 components: - type: Transform pos: 37.5,13.5 parent: 2 - - uid: 33014 + - uid: 32889 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 33015 + - uid: 32890 components: - type: Transform pos: -103.5,-9.5 parent: 2 - - uid: 33016 + - uid: 32891 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-39.5 parent: 2 - - uid: 33017 + - uid: 32892 components: - type: Transform pos: 75.5,-40.5 parent: 2 - - uid: 33018 + - uid: 32893 components: - type: Transform pos: -102.5,-20.5 parent: 2 - - uid: 33019 + - uid: 32894 components: - type: Transform pos: 71.5,-52.5 parent: 2 - - uid: 33020 + - uid: 32895 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,23.5 parent: 2 - - uid: 33021 + - uid: 32896 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,43.5 parent: 2 - - uid: 33022 + - uid: 32897 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 33023 + - uid: 32898 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-40.5 parent: 2 - - uid: 33024 + - uid: 32899 components: - type: Transform pos: 42.5,-1.5 parent: 2 - - uid: 33025 + - uid: 32900 components: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 33026 + - uid: 32901 components: - type: Transform pos: 10.5,-72.5 parent: 2 - - uid: 33027 + - uid: 32902 components: - type: Transform pos: 11.5,-72.5 parent: 2 - - uid: 33028 + - uid: 32903 components: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 33029 + - uid: 32904 components: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 33030 + - uid: 32905 components: - type: Transform pos: -24.5,-31.5 parent: 2 - - uid: 33031 + - uid: 32906 components: - type: Transform pos: 38.5,-65.5 parent: 2 - - uid: 33032 + - uid: 32907 components: - type: Transform pos: 42.5,-65.5 parent: 2 - - uid: 33033 + - uid: 32908 components: - type: Transform pos: 53.5,-33.5 parent: 2 - - uid: 33034 + - uid: 32909 components: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 33035 + - uid: 32910 components: - type: Transform pos: -41.5,-63.5 parent: 2 - - uid: 33036 + - uid: 32911 components: - type: Transform pos: -49.5,6.5 parent: 2 - - uid: 33037 + - uid: 32912 components: - type: Transform pos: 11.5,-74.5 parent: 2 - - uid: 33038 + - uid: 32913 components: - type: Transform pos: 25.5,68.5 parent: 2 - - uid: 33039 + - uid: 32914 components: - type: Transform pos: -22.5,-59.5 parent: 2 - - uid: 33040 + - uid: 32915 components: - type: Transform pos: -2.5,-82.5 parent: 2 - - uid: 33041 + - uid: 32916 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-66.5 parent: 2 - - uid: 33042 + - uid: 32917 components: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 33043 + - uid: 32918 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,74.5 parent: 2 - - uid: 33044 + - uid: 32919 components: - type: Transform pos: -32.5,80.5 parent: 2 - - uid: 33045 + - uid: 32920 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 33046 + - uid: 32921 components: - type: Transform pos: 8.5,88.5 parent: 2 - - uid: 33047 + - uid: 32922 components: - type: Transform pos: 19.5,-53.5 parent: 2 - - uid: 33048 + - uid: 32923 components: - type: Transform pos: 19.5,-51.5 parent: 2 - - uid: 33049 + - uid: 32924 components: - type: Transform pos: 37.5,29.5 parent: 2 - - uid: 33050 + - uid: 32925 components: - type: Transform pos: 11.5,-77.5 parent: 2 - - uid: 33051 + - uid: 32926 components: - type: Transform pos: 19.5,-47.5 parent: 2 - - uid: 33052 + - uid: 32927 components: - type: Transform pos: -35.5,-32.5 parent: 2 - - uid: 33053 + - uid: 32928 components: - type: Transform pos: -37.5,17.5 parent: 2 - - uid: 33054 + - uid: 32929 components: - type: Transform pos: -65.5,53.5 parent: 2 - - uid: 33055 + - uid: 32930 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,5.5 parent: 2 - - uid: 33056 + - uid: 32931 components: - type: Transform pos: -64.5,53.5 parent: 2 - - uid: 33057 + - uid: 32932 components: - type: Transform pos: -68.5,53.5 parent: 2 - - uid: 33058 + - uid: 32933 components: - type: Transform pos: -60.5,52.5 parent: 2 - - uid: 33059 + - uid: 32934 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,23.5 parent: 2 - - uid: 33060 + - uid: 32935 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,5.5 parent: 2 - - uid: 33061 + - uid: 32936 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 33062 + - uid: 32937 components: - type: Transform pos: -24.5,-32.5 parent: 2 - - uid: 33063 + - uid: 32938 components: - type: Transform pos: -21.5,-22.5 parent: 2 - - uid: 33064 + - uid: 32939 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 33065 + - uid: 32940 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 33066 + - uid: 32941 components: - type: Transform pos: -37.5,-20.5 parent: 2 - - uid: 33067 + - uid: 32942 components: - type: Transform pos: -42.5,41.5 parent: 2 - - uid: 33068 + - uid: 32943 components: - type: Transform pos: -44.5,20.5 parent: 2 - - uid: 33069 + - uid: 32944 components: - type: Transform pos: -72.5,-21.5 parent: 2 - - uid: 33070 + - uid: 32945 components: - type: Transform pos: -72.5,-22.5 parent: 2 - - uid: 33071 + - uid: 32946 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 33072 + - uid: 32947 components: - type: Transform pos: -71.5,-21.5 parent: 2 - - uid: 33073 + - uid: 32948 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 33074 + - uid: 32949 components: - type: Transform pos: -44.5,-31.5 parent: 2 - - uid: 33075 + - uid: 32950 components: - type: Transform pos: -44.5,-49.5 parent: 2 - - uid: 33076 + - uid: 32951 components: - type: Transform pos: 72.5,-2.5 parent: 2 - - uid: 33077 + - uid: 32952 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 33078 + - uid: 32953 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 33079 + - uid: 32954 components: - type: Transform pos: -44.5,21.5 parent: 2 - - uid: 33080 + - uid: 32955 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-9.5 parent: 2 - - uid: 33081 + - uid: 32956 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-18.5 parent: 2 - - uid: 33082 + - uid: 32957 components: - type: Transform pos: 24.5,-53.5 parent: 2 - - uid: 33083 + - uid: 32958 components: - type: Transform pos: -50.5,-23.5 parent: 2 - - uid: 33084 + - uid: 32959 components: - type: Transform pos: -2.5,-49.5 parent: 2 - - uid: 33085 + - uid: 32960 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,6.5 parent: 2 - - uid: 33086 + - uid: 32961 components: - type: Transform pos: -49.5,-23.5 parent: 2 - - uid: 33087 + - uid: 32962 components: - type: Transform pos: 25.5,-53.5 parent: 2 - - uid: 33088 + - uid: 32963 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 33089 + - uid: 32964 components: - type: Transform pos: -48.5,-49.5 parent: 2 - - uid: 33090 + - uid: 32965 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-46.5 parent: 2 - - uid: 33091 + - uid: 32966 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-41.5 parent: 2 - - uid: 33092 + - uid: 32967 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-13.5 parent: 2 - - uid: 33093 + - uid: 32968 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 - - uid: 33094 + - uid: 32969 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-15.5 parent: 2 - - uid: 33095 + - uid: 32970 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 33096 + - uid: 32971 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-18.5 parent: 2 - - uid: 33097 + - uid: 32972 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-16.5 parent: 2 - - uid: 33098 + - uid: 32973 components: - type: Transform pos: -47.5,-4.5 parent: 2 - - uid: 33099 + - uid: 32974 components: - type: Transform pos: -70.5,-42.5 parent: 2 - - uid: 33100 + - uid: 32975 components: - type: Transform pos: -74.5,6.5 parent: 2 - - uid: 33101 + - uid: 32976 components: - type: Transform pos: -74.5,7.5 parent: 2 - - uid: 33102 + - uid: 32977 components: - type: Transform pos: -74.5,8.5 parent: 2 - - uid: 33103 + - uid: 32978 components: - type: Transform pos: -48.5,-10.5 parent: 2 - - uid: 33104 + - uid: 32979 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,19.5 parent: 2 - - uid: 33105 + - uid: 32980 components: - type: Transform pos: -51.5,-23.5 parent: 2 - - uid: 33106 + - uid: 32981 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 33107 + - uid: 32982 components: - type: Transform pos: -74.5,4.5 parent: 2 - - uid: 33108 + - uid: 32983 components: - type: Transform pos: -53.5,-24.5 parent: 2 - - uid: 33109 + - uid: 32984 components: - type: Transform pos: -22.5,-48.5 parent: 2 - - uid: 33110 + - uid: 32985 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - uid: 33111 + - uid: 32986 components: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 33112 + - uid: 32987 components: - type: Transform pos: -10.5,17.5 parent: 2 - - uid: 33113 + - uid: 32988 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 33114 + - uid: 32989 components: - type: Transform pos: 21.5,-23.5 parent: 2 - - uid: 33115 + - uid: 32990 components: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 33116 + - uid: 32991 components: - type: Transform pos: 46.5,-59.5 parent: 2 - - uid: 33117 + - uid: 32992 components: - type: Transform pos: -72.5,17.5 parent: 2 - - uid: 33118 + - uid: 32993 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 - - uid: 33119 + - uid: 32994 components: - type: Transform pos: 30.5,-64.5 parent: 2 - - uid: 33120 + - uid: 32995 components: - type: Transform pos: -15.5,-48.5 parent: 2 - - uid: 33121 + - uid: 32996 components: - type: Transform pos: -18.5,-48.5 parent: 2 - - uid: 33122 + - uid: 32997 components: - type: Transform pos: -76.5,-32.5 parent: 2 - - uid: 33123 + - uid: 32998 components: - type: Transform pos: -48.5,10.5 parent: 2 - - uid: 33124 + - uid: 32999 components: - type: Transform pos: 54.5,-31.5 parent: 2 - - uid: 33125 + - uid: 33000 components: - type: Transform pos: 55.5,-31.5 parent: 2 - - uid: 33126 + - uid: 33001 components: - type: Transform pos: 29.5,25.5 parent: 2 - - uid: 33127 + - uid: 33002 components: - type: Transform pos: 30.5,34.5 parent: 2 - - uid: 33128 + - uid: 33003 components: - type: Transform pos: -13.5,104.5 parent: 2 - - uid: 33129 + - uid: 33004 components: - type: Transform pos: -18.5,-82.5 parent: 2 - - uid: 33130 + - uid: 33005 components: - type: Transform pos: -19.5,-82.5 parent: 2 - - uid: 33131 + - uid: 33006 components: - type: Transform pos: -23.5,-82.5 parent: 2 - - uid: 33132 + - uid: 33007 components: - type: Transform pos: -27.5,-78.5 parent: 2 - - uid: 33133 + - uid: 33008 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,19.5 parent: 2 - - uid: 33134 + - uid: 33009 components: - type: Transform pos: 4.5,70.5 parent: 2 - - uid: 33135 + - uid: 33010 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 33136 + - uid: 33011 components: - type: Transform pos: -34.5,64.5 parent: 2 - - uid: 33137 + - uid: 33012 components: - type: Transform pos: -42.5,58.5 parent: 2 - - uid: 33138 + - uid: 33013 components: - type: Transform pos: -13.5,101.5 parent: 2 - - uid: 33139 + - uid: 33014 components: - type: Transform pos: 6.5,93.5 parent: 2 - - uid: 33140 + - uid: 33015 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - uid: 33141 + - uid: 33016 components: - type: Transform pos: -39.5,-25.5 parent: 2 - - uid: 33142 + - uid: 33017 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-45.5 parent: 2 - - uid: 33143 + - uid: 33018 components: - type: Transform pos: -43.5,25.5 parent: 2 - - uid: 33144 + - uid: 33019 components: - type: Transform pos: -39.5,-30.5 parent: 2 - - uid: 33145 + - uid: 33020 components: - type: Transform pos: -39.5,-29.5 parent: 2 - - uid: 33146 + - uid: 33021 components: - type: Transform pos: -42.5,59.5 parent: 2 - - uid: 33147 + - uid: 33022 components: - type: Transform pos: -38.5,-20.5 parent: 2 - - uid: 33148 + - uid: 33023 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 33149 + - uid: 33024 components: - type: Transform pos: 27.5,15.5 parent: 2 - - uid: 33150 + - uid: 33025 components: - type: Transform pos: 72.5,-4.5 parent: 2 - - uid: 33151 + - uid: 33026 components: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 33152 + - uid: 33027 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 33153 + - uid: 33028 components: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 33154 + - uid: 33029 components: - type: Transform pos: -47.5,-49.5 parent: 2 - - uid: 33155 + - uid: 33030 components: - type: Transform pos: 11.5,-76.5 parent: 2 - - uid: 33156 + - uid: 33031 components: - type: Transform pos: -67.5,53.5 parent: 2 - - uid: 33157 + - uid: 33032 components: - type: Transform pos: -43.5,-4.5 parent: 2 - - uid: 33158 + - uid: 33033 components: - type: Transform pos: -45.5,-10.5 parent: 2 - - uid: 33159 + - uid: 33034 components: - type: Transform pos: -42.5,-49.5 parent: 2 - - uid: 33160 + - uid: 33035 components: - type: Transform pos: -53.5,-23.5 parent: 2 - - uid: 33161 + - uid: 33036 components: - type: Transform pos: 9.5,-0.5 parent: 2 - - uid: 33162 + - uid: 33037 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 33163 + - uid: 33038 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-27.5 parent: 2 - - uid: 33164 + - uid: 33039 components: - type: Transform pos: -42.5,49.5 parent: 2 - - uid: 33165 + - uid: 33040 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 33166 + - uid: 33041 components: - type: Transform pos: -26.5,-77.5 parent: 2 - - uid: 33167 + - uid: 33042 components: - type: Transform pos: -10.5,-53.5 parent: 2 - - uid: 33168 + - uid: 33043 components: - type: Transform pos: 28.5,67.5 parent: 2 - - uid: 33169 + - uid: 33044 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-47.5 parent: 2 - - uid: 33170 + - uid: 33045 components: - type: Transform pos: 19.5,73.5 parent: 2 - - uid: 33171 + - uid: 33046 components: - type: Transform pos: -27.5,101.5 parent: 2 - - uid: 33172 + - uid: 33047 components: - type: Transform pos: -39.5,-31.5 parent: 2 - - uid: 33173 + - uid: 33048 components: - type: Transform pos: 15.5,-56.5 parent: 2 - - uid: 33174 + - uid: 33049 components: - type: Transform pos: 75.5,-27.5 parent: 2 - - uid: 33175 + - uid: 33050 components: - type: Transform pos: -61.5,12.5 parent: 2 - - uid: 33176 + - uid: 33051 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 33177 + - uid: 33052 components: - type: Transform pos: 26.5,25.5 parent: 2 - - uid: 33178 + - uid: 33053 components: - type: Transform pos: -66.5,6.5 parent: 2 - - uid: 33179 + - uid: 33054 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 33180 + - uid: 33055 components: - type: Transform pos: -42.5,-76.5 parent: 2 - - uid: 33181 + - uid: 33056 components: - type: Transform pos: -31.5,13.5 parent: 2 - - uid: 33182 + - uid: 33057 components: - type: Transform pos: -31.5,14.5 parent: 2 - - uid: 33183 + - uid: 33058 components: - type: Transform pos: -40.5,-20.5 parent: 2 - - uid: 33184 + - uid: 33059 components: - type: Transform pos: -111.5,34.5 parent: 2 - - uid: 33185 + - uid: 33060 components: - type: Transform pos: 33.5,-21.5 parent: 2 - - uid: 33186 + - uid: 33061 components: - type: Transform pos: -61.5,-10.5 parent: 2 - - uid: 33187 + - uid: 33062 components: - type: Transform pos: 91.5,11.5 parent: 2 - - uid: 33188 + - uid: 33063 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,93.5 parent: 2 - - uid: 33189 + - uid: 33064 components: - type: Transform pos: -63.5,-0.5 parent: 2 - - uid: 33190 + - uid: 33065 components: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 33191 + - uid: 33066 components: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 33192 + - uid: 33067 components: - type: Transform pos: -64.5,-0.5 parent: 2 - - uid: 33193 + - uid: 33068 components: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 33194 + - uid: 33069 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,6.5 parent: 2 - - uid: 33195 + - uid: 33070 components: - type: Transform pos: -78.5,-21.5 parent: 2 - - uid: 33196 + - uid: 33071 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 33197 + - uid: 33072 components: - type: Transform pos: -104.5,-7.5 parent: 2 - - uid: 33198 + - uid: 33073 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 33199 + - uid: 33074 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-37.5 parent: 2 - - uid: 33200 + - uid: 33075 components: - type: Transform pos: 33.5,-25.5 parent: 2 - - uid: 33201 + - uid: 33076 components: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 33202 + - uid: 33077 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-37.5 parent: 2 - - uid: 33203 + - uid: 33078 components: - type: Transform pos: 30.5,-70.5 parent: 2 - - uid: 33204 + - uid: 33079 components: - type: Transform pos: -37.5,-34.5 parent: 2 - - uid: 33205 + - uid: 33080 components: - type: Transform pos: 33.5,-72.5 parent: 2 - - uid: 33206 + - uid: 33081 components: - type: Transform pos: -30.5,-55.5 parent: 2 - - uid: 33207 + - uid: 33082 components: - type: Transform pos: -48.5,-23.5 parent: 2 - - uid: 33208 + - uid: 33083 components: - type: Transform pos: -77.5,-24.5 parent: 2 - - uid: 33209 + - uid: 33084 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 33210 + - uid: 33085 components: - type: Transform pos: -77.5,-21.5 parent: 2 - - uid: 33211 + - uid: 33086 components: - type: Transform pos: 25.5,-47.5 parent: 2 - - uid: 33212 + - uid: 33087 components: - type: Transform pos: 25.5,-48.5 parent: 2 - - uid: 33213 + - uid: 33088 components: - type: Transform pos: -9.5,100.5 parent: 2 - - uid: 33214 + - uid: 33089 components: - type: Transform pos: 15.5,73.5 parent: 2 - - uid: 33215 + - uid: 33090 components: - type: Transform pos: -58.5,8.5 parent: 2 - - uid: 33216 + - uid: 33091 components: - type: Transform pos: -36.5,38.5 parent: 2 - - uid: 33217 + - uid: 33092 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 33218 + - uid: 33093 components: - type: Transform pos: -44.5,43.5 parent: 2 - - uid: 33219 + - uid: 33094 components: - type: Transform pos: -57.5,59.5 parent: 2 - - uid: 33220 + - uid: 33095 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,2.5 parent: 2 - - uid: 33221 + - uid: 33096 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 33222 + - uid: 33097 components: - type: Transform pos: -121.5,33.5 parent: 2 - - uid: 33223 + - uid: 33098 components: - type: Transform pos: 23.5,73.5 parent: 2 - - uid: 33224 + - uid: 33099 components: - type: Transform pos: 21.5,73.5 parent: 2 - - uid: 33225 + - uid: 33100 components: - type: Transform pos: 9.5,-59.5 parent: 2 - - uid: 33226 + - uid: 33101 components: - type: Transform pos: -16.5,17.5 parent: 2 - - uid: 33227 + - uid: 33102 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 33228 + - uid: 33103 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 33229 + - uid: 33104 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 33230 + - uid: 33105 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 33231 + - uid: 33106 components: - type: Transform pos: -1.5,33.5 parent: 2 - - uid: 33233 + - uid: 33107 components: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 33234 + - uid: 33108 components: - type: Transform pos: 9.5,-17.5 parent: 2 - - uid: 33235 + - uid: 33109 components: - type: Transform pos: -35.5,-56.5 parent: 2 - - uid: 33236 + - uid: 33110 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 33237 + - uid: 33111 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 33238 + - uid: 33112 components: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 33239 + - uid: 33113 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 33240 + - uid: 33114 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 33241 + - uid: 33115 components: - type: Transform pos: -47.5,-23.5 parent: 2 - - uid: 33242 + - uid: 33116 components: - type: Transform pos: 20.5,-23.5 parent: 2 - - uid: 33243 + - uid: 33117 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 33244 + - uid: 33118 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 33245 + - uid: 33119 components: - type: Transform pos: 87.5,11.5 parent: 2 - - uid: 33246 + - uid: 33120 components: - type: Transform pos: -44.5,-20.5 parent: 2 - - uid: 33247 + - uid: 33121 components: - type: Transform pos: -33.5,-47.5 parent: 2 - - uid: 33248 + - uid: 33122 components: - type: Transform pos: -6.5,-15.5 parent: 2 - - uid: 33249 + - uid: 33123 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 33250 + - uid: 33124 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 33251 + - uid: 33125 components: - type: Transform pos: 19.5,-45.5 parent: 2 - - uid: 33252 + - uid: 33126 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - uid: 33253 + - uid: 33127 components: - type: Transform pos: -47.5,3.5 parent: 2 - - uid: 33254 + - uid: 33128 components: - type: Transform pos: -45.5,36.5 parent: 2 - - uid: 33255 + - uid: 33129 components: - type: Transform pos: 66.5,-23.5 parent: 2 - - uid: 33256 + - uid: 33130 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-31.5 parent: 2 - - uid: 33257 + - uid: 33131 components: - type: Transform pos: -21.5,-38.5 parent: 2 - - uid: 33258 + - uid: 33132 components: - type: Transform pos: -68.5,-18.5 parent: 2 - - uid: 33259 + - uid: 33133 components: - type: Transform pos: -73.5,3.5 parent: 2 - - uid: 33260 + - uid: 33134 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-45.5 parent: 2 - - uid: 33261 + - uid: 33135 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 33262 + - uid: 33136 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 33263 + - uid: 33137 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-42.5 parent: 2 - - uid: 33264 + - uid: 33138 components: - type: Transform pos: -18.5,-22.5 parent: 2 - - uid: 33265 + - uid: 33139 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 33266 + - uid: 33140 components: - type: Transform pos: -15.5,-28.5 parent: 2 - - uid: 33267 + - uid: 33141 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 33269 + - uid: 33142 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 33270 + - uid: 33143 components: - type: Transform pos: -60.5,60.5 parent: 2 - - uid: 33271 + - uid: 33144 components: - type: Transform pos: -60.5,61.5 parent: 2 - - uid: 33272 + - uid: 33145 components: - type: Transform pos: -60.5,59.5 parent: 2 - - uid: 33273 + - uid: 33146 components: - type: Transform pos: -68.5,59.5 parent: 2 - - uid: 33274 + - uid: 33147 components: - type: Transform pos: -68.5,56.5 parent: 2 - - uid: 33275 + - uid: 33148 components: - type: Transform pos: 9.5,-61.5 parent: 2 - - uid: 33276 + - uid: 33149 components: - type: Transform pos: -43.5,-10.5 parent: 2 - - uid: 33277 + - uid: 33150 components: - type: Transform pos: 32.5,-20.5 parent: 2 - - uid: 33278 + - uid: 33151 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 33279 + - uid: 33152 components: - type: Transform pos: 20.5,-41.5 parent: 2 - - uid: 33280 + - uid: 33153 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 33281 + - uid: 33154 components: - type: Transform pos: -122.5,34.5 parent: 2 - - uid: 33282 + - uid: 33155 components: - type: Transform pos: 33.5,-20.5 parent: 2 - - uid: 33283 + - uid: 33156 components: - type: Transform pos: -52.5,-49.5 parent: 2 - - uid: 33284 + - uid: 33157 components: - type: Transform pos: -69.5,-18.5 parent: 2 - - uid: 33285 + - uid: 33158 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,5.5 parent: 2 - - uid: 33286 + - uid: 33159 components: - type: Transform pos: -74.5,-3.5 parent: 2 - - uid: 33287 + - uid: 33160 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 33288 + - uid: 33161 components: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 33289 + - uid: 33162 components: - type: Transform pos: -72.5,-23.5 parent: 2 - - uid: 33290 + - uid: 33163 components: - type: Transform pos: 25.5,-56.5 parent: 2 - - uid: 33291 + - uid: 33164 components: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 33292 + - uid: 33165 components: - type: Transform pos: 25.5,-57.5 parent: 2 - - uid: 33293 + - uid: 33166 components: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 33294 + - uid: 33167 components: - type: Transform pos: -68.5,58.5 parent: 2 - - uid: 33295 + - uid: 33168 components: - type: Transform pos: -61.5,20.5 parent: 2 - - uid: 33296 + - uid: 33169 components: - type: Transform pos: -63.5,3.5 parent: 2 - - uid: 33297 + - uid: 33170 components: - type: Transform pos: -64.5,-1.5 parent: 2 - - uid: 33298 + - uid: 33171 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 33299 + - uid: 33172 components: - type: Transform pos: 43.5,-72.5 parent: 2 - - uid: 33300 + - uid: 33173 components: - type: Transform pos: -64.5,19.5 parent: 2 - - uid: 33301 + - uid: 33174 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-5.5 parent: 2 - - uid: 33302 + - uid: 33175 components: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 33303 + - uid: 33176 components: - type: Transform pos: 23.5,-53.5 parent: 2 - - uid: 33304 + - uid: 33177 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 33305 + - uid: 33178 components: - type: Transform pos: 43.5,-75.5 parent: 2 - - uid: 33306 + - uid: 33179 components: - type: Transform pos: -15.5,17.5 parent: 2 - - uid: 33307 + - uid: 33180 components: - type: Transform pos: -19.5,-22.5 parent: 2 - - uid: 33308 + - uid: 33181 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 33309 + - uid: 33182 components: - type: Transform pos: 43.5,-68.5 parent: 2 - - uid: 33310 + - uid: 33183 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,11.5 parent: 2 - - uid: 33311 + - uid: 33184 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.5 parent: 2 - - uid: 33312 + - uid: 33185 components: - type: Transform pos: -63.5,19.5 parent: 2 - - uid: 33313 + - uid: 33186 components: - type: Transform pos: 43.5,-66.5 parent: 2 - - uid: 33314 + - uid: 33187 components: - type: Transform pos: -52.5,-18.5 parent: 2 - - uid: 33315 + - uid: 33188 components: - type: Transform pos: -48.5,-18.5 parent: 2 - - uid: 33316 + - uid: 33189 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,5.5 parent: 2 - - uid: 33317 + - uid: 33190 components: - type: Transform pos: 75.5,-5.5 parent: 2 - - uid: 33318 + - uid: 33191 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-17.5 parent: 2 - - uid: 33319 + - uid: 33192 components: - type: Transform pos: -49.5,35.5 parent: 2 - - uid: 33320 + - uid: 33193 components: - type: Transform pos: -66.5,19.5 parent: 2 - - uid: 33321 + - uid: 33194 components: - type: Transform pos: -68.5,9.5 parent: 2 - - uid: 33322 + - uid: 33195 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,4.5 parent: 2 - - uid: 33323 + - uid: 33196 components: - type: Transform pos: -24.5,-25.5 parent: 2 - - uid: 33324 + - uid: 33197 components: - type: Transform pos: -39.5,18.5 parent: 2 - - uid: 33325 + - uid: 33198 components: - type: Transform pos: -56.5,56.5 parent: 2 - - uid: 33326 + - uid: 33199 components: - type: Transform pos: -45.5,38.5 parent: 2 - - uid: 33327 + - uid: 33200 components: - type: Transform pos: -56.5,55.5 parent: 2 - - uid: 33328 + - uid: 33201 components: - type: Transform pos: -45.5,37.5 parent: 2 - - uid: 33329 + - uid: 33202 components: - type: Transform pos: -69.5,-46.5 parent: 2 - - uid: 33330 + - uid: 33203 components: - type: Transform pos: -67.5,-46.5 parent: 2 - - uid: 33331 + - uid: 33204 components: - type: Transform pos: 74.5,-5.5 parent: 2 - - uid: 33332 + - uid: 33205 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,5.5 parent: 2 - - uid: 33333 + - uid: 33206 components: - type: Transform pos: 29.5,-56.5 parent: 2 - - uid: 33334 + - uid: 33207 components: - type: Transform pos: 33.5,-64.5 parent: 2 - - uid: 33335 + - uid: 33208 components: - type: Transform pos: -59.5,3.5 parent: 2 - - uid: 33336 + - uid: 33209 components: - type: Transform pos: -61.5,-0.5 parent: 2 - - uid: 33337 + - uid: 33210 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 - - uid: 33338 + - uid: 33211 components: - type: Transform pos: 25.5,-60.5 parent: 2 - - uid: 33339 + - uid: 33212 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 33340 + - uid: 33213 components: - type: Transform pos: -32.5,-34.5 parent: 2 - - uid: 33341 + - uid: 33214 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 33342 + - uid: 33215 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - uid: 33343 + - uid: 33216 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 33344 + - uid: 33217 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 33345 + - uid: 33218 components: - type: Transform pos: -34.5,-47.5 parent: 2 - - uid: 33346 + - uid: 33219 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - uid: 33347 + - uid: 33220 components: - type: Transform pos: 15.5,-1.5 parent: 2 - - uid: 33348 + - uid: 33221 components: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 33349 + - uid: 33222 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 33350 + - uid: 33223 components: - type: Transform pos: -25.5,-54.5 parent: 2 - - uid: 33351 + - uid: 33224 components: - type: Transform pos: -41.5,-43.5 parent: 2 - - uid: 33352 + - uid: 33225 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 33353 + - uid: 33226 components: - type: Transform pos: 13.5,-0.5 parent: 2 - - uid: 33354 + - uid: 33227 components: - type: Transform pos: -25.5,-58.5 parent: 2 - - uid: 33355 + - uid: 33228 components: - type: Transform pos: -41.5,-44.5 parent: 2 - - uid: 33356 + - uid: 33229 components: - type: Transform pos: -16.5,-10.5 parent: 2 - - uid: 33357 + - uid: 33230 components: - type: Transform pos: -21.5,-37.5 parent: 2 - - uid: 33358 + - uid: 33231 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 33359 + - uid: 33232 components: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 33360 + - uid: 33233 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-44.5 parent: 2 - - uid: 33361 + - uid: 33234 components: - type: Transform pos: -35.5,-53.5 parent: 2 - - uid: 33362 + - uid: 33235 components: - type: Transform pos: -116.5,20.5 parent: 2 - - uid: 33363 + - uid: 33236 components: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 33364 + - uid: 33237 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 33365 + - uid: 33238 components: - type: Transform pos: -16.5,-60.5 parent: 2 - - uid: 33366 + - uid: 33239 components: - type: Transform pos: 76.5,-16.5 parent: 2 - - uid: 33367 + - uid: 33240 components: - type: Transform pos: 6.5,-41.5 parent: 2 - - uid: 33368 + - uid: 33241 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 33369 + - uid: 33242 components: - type: Transform pos: 15.5,17.5 parent: 2 - - uid: 33370 + - uid: 33243 components: - type: Transform pos: 28.5,-58.5 parent: 2 - - uid: 33371 + - uid: 33244 components: - type: Transform pos: -43.5,49.5 parent: 2 - - uid: 33372 + - uid: 33245 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 33373 + - uid: 33246 components: - type: Transform pos: -56.5,62.5 parent: 2 - - uid: 33374 + - uid: 33247 components: - type: Transform pos: -57.5,43.5 parent: 2 - - uid: 33375 + - uid: 33248 components: - type: Transform pos: -79.5,8.5 parent: 2 - - uid: 33376 + - uid: 33249 components: - type: Transform pos: -79.5,12.5 parent: 2 - - uid: 33377 + - uid: 33250 components: - type: Transform pos: -59.5,-4.5 parent: 2 - - uid: 33378 + - uid: 33251 components: - type: Transform pos: -43.5,-9.5 parent: 2 - - uid: 33379 + - uid: 33252 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 33380 + - uid: 33253 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 33381 + - uid: 33254 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 33382 + - uid: 33255 components: - type: Transform pos: -45.5,39.5 parent: 2 - - uid: 33383 + - uid: 33256 components: - type: Transform pos: -115.5,33.5 parent: 2 - - uid: 33384 + - uid: 33257 components: - type: Transform pos: -42.5,40.5 parent: 2 - - uid: 33385 + - uid: 33258 components: - type: Transform pos: 15.5,80.5 parent: 2 - - uid: 33386 + - uid: 33259 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 33387 + - uid: 33260 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 - - uid: 33388 + - uid: 33261 components: - type: Transform pos: 25.5,-62.5 parent: 2 - - uid: 33389 + - uid: 33262 components: - type: Transform pos: 27.5,-62.5 parent: 2 - - uid: 33390 + - uid: 33263 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,5.5 parent: 2 - - uid: 33391 + - uid: 33264 components: - type: Transform pos: -60.5,-21.5 parent: 2 - - uid: 33392 + - uid: 33265 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-20.5 parent: 2 - - uid: 33393 + - uid: 33266 components: - type: Transform pos: -61.5,0.5 parent: 2 - - uid: 33394 + - uid: 33267 components: - type: Transform pos: -60.5,3.5 parent: 2 - - uid: 33395 + - uid: 33268 components: - type: Transform pos: -78.5,-27.5 parent: 2 - - uid: 33396 + - uid: 33269 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-48.5 parent: 2 - - uid: 33397 + - uid: 33270 components: - type: Transform pos: 29.5,-58.5 parent: 2 - - uid: 33398 + - uid: 33271 components: - type: Transform pos: 25.5,-45.5 parent: 2 - - uid: 33399 + - uid: 33272 components: - type: Transform pos: -51.5,-49.5 parent: 2 - - uid: 33400 + - uid: 33273 components: - type: Transform pos: -79.5,3.5 parent: 2 - - uid: 33401 + - uid: 33274 components: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 33402 + - uid: 33275 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,3.5 parent: 2 - - uid: 33403 + - uid: 33276 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,2.5 parent: 2 - - uid: 33404 + - uid: 33277 components: - type: Transform pos: -60.5,21.5 parent: 2 - - uid: 33405 + - uid: 33278 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 33406 + - uid: 33279 components: - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 33407 + - uid: 33280 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 33408 + - uid: 33281 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 33409 + - uid: 33282 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-42.5 parent: 2 - - uid: 33410 + - uid: 33283 components: - type: Transform pos: -36.5,-56.5 parent: 2 - - uid: 33411 + - uid: 33284 components: - type: Transform pos: -39.5,41.5 parent: 2 - - uid: 33412 + - uid: 33285 components: - type: Transform pos: -45.5,40.5 parent: 2 - - uid: 33413 + - uid: 33286 components: - type: Transform pos: -40.5,41.5 parent: 2 - - uid: 33414 + - uid: 33287 components: - type: Transform pos: -42.5,38.5 parent: 2 - - uid: 33415 + - uid: 33288 components: - type: Transform pos: -41.5,-56.5 parent: 2 - - uid: 33416 + - uid: 33289 components: - type: Transform pos: -35.5,-55.5 parent: 2 - - uid: 33417 + - uid: 33290 components: - type: Transform pos: 90.5,19.5 parent: 2 - - uid: 33418 + - uid: 33291 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 33419 + - uid: 33292 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 33420 + - uid: 33293 components: - type: Transform pos: -76.5,-17.5 parent: 2 - - uid: 33421 + - uid: 33294 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,0.5 parent: 2 - - uid: 33422 + - uid: 33295 components: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 33423 + - uid: 33296 components: - type: Transform pos: -41.5,-42.5 parent: 2 - - uid: 33424 + - uid: 33297 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 33425 + - uid: 33298 components: - type: Transform pos: 15.5,-0.5 parent: 2 - - uid: 33426 + - uid: 33299 components: - type: Transform pos: 15.5,5.5 parent: 2 - - uid: 33427 + - uid: 33300 components: - type: Transform pos: -49.5,-31.5 parent: 2 - - uid: 33428 + - uid: 33301 components: - type: Transform pos: -20.5,-54.5 parent: 2 - - uid: 33429 + - uid: 33302 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-43.5 parent: 2 - - uid: 33430 + - uid: 33303 components: - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 33431 + - uid: 33304 components: - type: Transform pos: 45.5,-64.5 parent: 2 - - uid: 33432 + - uid: 33305 components: - type: Transform pos: -23.5,-54.5 parent: 2 - - uid: 33433 + - uid: 33306 components: - type: Transform pos: 15.5,4.5 parent: 2 - - uid: 33434 + - uid: 33307 components: - type: Transform pos: -41.5,41.5 parent: 2 - - uid: 33435 + - uid: 33308 components: - type: Transform pos: -41.5,-45.5 parent: 2 - - uid: 33436 + - uid: 33309 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,5.5 parent: 2 - - uid: 33437 + - uid: 33310 components: - type: Transform pos: 43.5,-74.5 parent: 2 - - uid: 33438 + - uid: 33311 components: - type: Transform pos: 29.5,-62.5 parent: 2 - - uid: 33439 + - uid: 33312 components: - type: Transform pos: 43.5,-67.5 parent: 2 - - uid: 33440 + - uid: 33313 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 33441 + - uid: 33314 components: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 33442 + - uid: 33315 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 33443 + - uid: 33316 components: - type: Transform pos: -72.5,-27.5 parent: 2 - - uid: 33445 + - uid: 33317 components: - type: Transform pos: -77.5,-28.5 parent: 2 - - uid: 33446 + - uid: 33318 components: - type: Transform pos: -78.5,-29.5 parent: 2 - - uid: 33447 + - uid: 33319 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-20.5 parent: 2 - - uid: 33448 + - uid: 33320 components: - type: Transform pos: -50.5,35.5 parent: 2 - - uid: 33450 + - uid: 33321 components: - type: Transform pos: 15.5,-11.5 parent: 2 - - uid: 33451 + - uid: 33322 components: - type: Transform pos: -46.5,-20.5 parent: 2 - - uid: 33452 + - uid: 33323 components: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 33453 + - uid: 33324 components: - type: Transform pos: -124.5,34.5 parent: 2 - - uid: 33454 + - uid: 33325 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-13.5 parent: 2 - - uid: 33455 + - uid: 33326 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-51.5 parent: 2 - - uid: 33456 + - uid: 33327 components: - type: Transform pos: 43.5,-64.5 parent: 2 - - uid: 33457 + - uid: 33328 components: - type: Transform pos: -77.5,12.5 parent: 2 - - uid: 33458 + - uid: 33329 components: - type: Transform pos: -47.5,16.5 parent: 2 - - uid: 33459 + - uid: 33330 components: - type: Transform pos: -78.5,12.5 parent: 2 - - uid: 33460 + - uid: 33331 components: - type: Transform pos: -66.5,-4.5 parent: 2 - - uid: 33461 + - uid: 33332 components: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 33462 + - uid: 33333 components: - type: Transform pos: 38.5,-0.5 parent: 2 - - uid: 33463 + - uid: 33334 components: - type: Transform pos: 47.5,-56.5 parent: 2 - - uid: 33464 + - uid: 33335 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - uid: 33465 + - uid: 33336 components: - type: Transform pos: -54.5,6.5 parent: 2 - - uid: 33466 + - uid: 33337 components: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 33467 + - uid: 33338 components: - type: Transform pos: 53.5,-5.5 parent: 2 - - uid: 33468 + - uid: 33339 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 33469 + - uid: 33340 components: - type: Transform pos: -37.5,-5.5 parent: 2 - - uid: 33470 + - uid: 33341 components: - type: Transform pos: 54.5,-6.5 parent: 2 - - uid: 33471 + - uid: 33342 components: - type: Transform pos: 73.5,-14.5 parent: 2 - - uid: 33472 + - uid: 33343 components: - type: Transform pos: -66.5,10.5 parent: 2 - - uid: 33473 + - uid: 33344 components: - type: Transform pos: -65.5,12.5 parent: 2 - - uid: 33474 + - uid: 33345 components: - type: Transform pos: 24.5,59.5 parent: 2 - - uid: 33475 + - uid: 33346 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 33476 + - uid: 33347 components: - type: Transform pos: -43.5,7.5 parent: 2 - - uid: 33477 + - uid: 33348 components: - type: Transform pos: -60.5,12.5 parent: 2 - - uid: 33478 + - uid: 33349 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,41.5 parent: 2 - - uid: 33479 + - uid: 33350 components: - type: Transform pos: -54.5,8.5 parent: 2 - - uid: 33480 + - uid: 33351 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 33481 + - uid: 33352 components: - type: Transform pos: 63.5,-6.5 parent: 2 - - uid: 33482 + - uid: 33353 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 - - uid: 33483 + - uid: 33354 components: - type: Transform pos: -27.5,103.5 parent: 2 - - uid: 33484 + - uid: 33355 components: - type: Transform pos: 60.5,-6.5 parent: 2 - - uid: 33485 + - uid: 33356 components: - type: Transform pos: 3.5,-82.5 parent: 2 - - uid: 33486 + - uid: 33357 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,45.5 parent: 2 - - uid: 33487 + - uid: 33358 components: - type: Transform pos: -32.5,64.5 parent: 2 - - uid: 33488 + - uid: 33359 components: - type: Transform pos: 8.5,87.5 parent: 2 - - uid: 33489 + - uid: 33360 components: - type: Transform pos: -42.5,64.5 parent: 2 - - uid: 33490 + - uid: 33361 components: - type: Transform pos: -44.5,50.5 parent: 2 - - uid: 33491 + - uid: 33362 components: - type: Transform pos: -38.5,-2.5 parent: 2 - - uid: 33492 + - uid: 33363 components: - type: Transform pos: -13.5,105.5 parent: 2 - - uid: 33493 + - uid: 33364 components: - type: Transform pos: -41.5,-47.5 parent: 2 - - uid: 33494 + - uid: 33365 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 33495 + - uid: 33366 components: - type: Transform pos: -41.5,-46.5 parent: 2 - - uid: 33496 + - uid: 33367 components: - type: Transform pos: -30.5,-24.5 parent: 2 - - uid: 33497 + - uid: 33368 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,90.5 parent: 2 - - uid: 33498 + - uid: 33369 components: - type: Transform pos: 15.5,85.5 parent: 2 - - uid: 33499 + - uid: 33370 components: - type: Transform pos: 8.5,86.5 parent: 2 - - uid: 33500 + - uid: 33371 components: - type: Transform pos: -13.5,87.5 parent: 2 - - uid: 33501 + - uid: 33372 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-44.5 parent: 2 - - uid: 33502 + - uid: 33373 components: - type: Transform pos: -35.5,-47.5 parent: 2 - - uid: 33503 + - uid: 33374 components: - type: Transform pos: 90.5,16.5 parent: 2 - - uid: 33504 + - uid: 33375 components: - type: Transform pos: -39.5,-54.5 parent: 2 - - uid: 33505 + - uid: 33376 components: - type: Transform pos: 24.5,-56.5 parent: 2 - - uid: 33506 + - uid: 33377 components: - type: Transform pos: -31.5,103.5 parent: 2 - - uid: 33507 + - uid: 33378 components: - type: Transform pos: 16.5,80.5 parent: 2 - - uid: 33508 + - uid: 33379 components: - type: Transform pos: 25.5,64.5 parent: 2 - - uid: 33509 + - uid: 33380 components: - type: Transform pos: -40.5,-47.5 parent: 2 - - uid: 33510 + - uid: 33381 components: - type: Transform pos: -54.5,7.5 parent: 2 - - uid: 33511 + - uid: 33382 components: - type: Transform pos: -55.5,8.5 parent: 2 - - uid: 33512 + - uid: 33383 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,43.5 parent: 2 - - uid: 33513 + - uid: 33384 components: - type: Transform pos: -66.5,12.5 parent: 2 - - uid: 33514 + - uid: 33385 components: - type: Transform pos: 53.5,-39.5 parent: 2 - - uid: 33515 + - uid: 33386 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 33516 + - uid: 33387 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 33517 + - uid: 33388 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,40.5 parent: 2 - - uid: 33518 + - uid: 33389 components: - type: Transform pos: -39.5,-23.5 parent: 2 - - uid: 33519 + - uid: 33390 components: - type: Transform pos: -11.5,-82.5 parent: 2 - - uid: 33520 + - uid: 33391 components: - type: Transform pos: -39.5,-24.5 parent: 2 - - uid: 33521 + - uid: 33392 components: - type: Transform pos: 12.5,83.5 parent: 2 - - uid: 33522 + - uid: 33393 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,87.5 parent: 2 - - uid: 33523 + - uid: 33394 components: - type: Transform pos: 12.5,85.5 parent: 2 - - uid: 33524 + - uid: 33395 components: - type: Transform pos: -46.5,56.5 parent: 2 - - uid: 33525 + - uid: 33396 components: - type: Transform pos: 4.5,91.5 parent: 2 - - uid: 33526 + - uid: 33397 components: - type: Transform pos: -56.5,63.5 parent: 2 - - uid: 33527 + - uid: 33398 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 33528 + - uid: 33399 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,43.5 parent: 2 - - uid: 33529 + - uid: 33400 components: - type: Transform pos: -39.5,22.5 parent: 2 - - uid: 33530 + - uid: 33401 components: - type: Transform pos: -32.5,-80.5 parent: 2 - - uid: 33531 + - uid: 33402 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 33532 + - uid: 33403 components: - type: Transform pos: -37.5,-4.5 parent: 2 - - uid: 33533 + - uid: 33404 components: - type: Transform pos: -39.5,-22.5 parent: 2 - - uid: 33534 + - uid: 33405 components: - type: Transform pos: -37.5,-6.5 parent: 2 - - uid: 33535 + - uid: 33406 components: - type: Transform pos: -42.5,44.5 parent: 2 - - uid: 33536 + - uid: 33407 components: - type: Transform pos: 9.5,-32.5 parent: 2 - - uid: 33537 + - uid: 33408 components: - type: Transform pos: -43.5,36.5 parent: 2 - - uid: 33538 + - uid: 33409 components: - type: Transform pos: -43.5,3.5 parent: 2 - - uid: 33539 + - uid: 33410 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-8.5 parent: 2 - - uid: 33540 + - uid: 33411 components: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 33541 + - uid: 33412 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-17.5 parent: 2 - - uid: 33542 + - uid: 33413 components: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 33543 + - uid: 33414 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-8.5 parent: 2 - - uid: 33544 + - uid: 33415 components: - type: Transform pos: -43.5,2.5 parent: 2 - - uid: 33545 + - uid: 33416 components: - type: Transform pos: 22.5,-23.5 parent: 2 - - uid: 33546 + - uid: 33417 components: - type: Transform pos: -31.5,-33.5 parent: 2 - - uid: 33547 + - uid: 33418 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-17.5 parent: 2 - - uid: 33548 + - uid: 33419 components: - type: Transform pos: -78.5,-25.5 parent: 2 - - uid: 33549 + - uid: 33420 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 33550 + - uid: 33421 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-13.5 parent: 2 - - uid: 33551 + - uid: 33422 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,5.5 parent: 2 - - uid: 33552 + - uid: 33423 components: - type: Transform pos: -77.5,-32.5 parent: 2 - - uid: 33553 + - uid: 33424 components: - type: Transform pos: -40.5,-34.5 parent: 2 - - uid: 33554 + - uid: 33425 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 33555 + - uid: 33426 components: - type: Transform pos: -123.5,34.5 parent: 2 - - uid: 33556 + - uid: 33427 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 33557 + - uid: 33428 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-47.5 parent: 2 - - uid: 33558 + - uid: 33429 components: - type: Transform pos: -78.5,8.5 parent: 2 - - uid: 33559 + - uid: 33430 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-11.5 parent: 2 - - uid: 33560 + - uid: 33431 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 - - uid: 33561 + - uid: 33432 components: - type: Transform pos: 90.5,22.5 parent: 2 - - uid: 33562 + - uid: 33433 components: - type: Transform pos: 77.5,27.5 parent: 2 - - uid: 33563 + - uid: 33434 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 33564 + - uid: 33435 components: - type: Transform pos: -59.5,-17.5 parent: 2 - - uid: 33565 + - uid: 33436 components: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 33566 + - uid: 33437 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-41.5 parent: 2 - - uid: 33567 + - uid: 33438 components: - type: Transform pos: -31.5,-32.5 parent: 2 - - uid: 33568 + - uid: 33439 components: - type: Transform pos: -41.5,-39.5 parent: 2 - - uid: 33569 + - uid: 33440 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 - - uid: 33570 + - uid: 33441 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 33571 + - uid: 33442 components: - type: Transform pos: -31.5,12.5 parent: 2 - - uid: 33572 + - uid: 33443 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 33573 + - uid: 33444 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-8.5 parent: 2 - - uid: 33574 + - uid: 33445 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 33575 + - uid: 33446 components: - type: Transform pos: -24.5,-78.5 parent: 2 - - uid: 33576 + - uid: 33447 components: - type: Transform pos: -39.5,-55.5 parent: 2 - - uid: 33577 + - uid: 33448 components: - type: Transform pos: -40.5,-70.5 parent: 2 - - uid: 33578 + - uid: 33449 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 33579 + - uid: 33450 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-66.5 parent: 2 - - uid: 33580 + - uid: 33451 components: - type: Transform pos: 41.5,14.5 parent: 2 - - uid: 33581 + - uid: 33452 components: - type: Transform pos: -31.5,102.5 parent: 2 - - uid: 33582 + - uid: 33453 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 33583 + - uid: 33454 components: - type: Transform pos: -17.5,-82.5 parent: 2 - - uid: 33584 + - uid: 33455 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 33585 + - uid: 33456 components: - type: Transform pos: -32.5,-20.5 parent: 2 - - uid: 33586 + - uid: 33457 components: - type: Transform pos: 24.5,64.5 parent: 2 - - uid: 33587 + - uid: 33458 components: - type: Transform pos: 94.5,11.5 parent: 2 - - uid: 33588 + - uid: 33459 components: - type: Transform pos: 77.5,28.5 parent: 2 - - uid: 33589 + - uid: 33460 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 33590 + - uid: 33461 components: - type: Transform pos: 24.5,68.5 parent: 2 - - uid: 33591 + - uid: 33462 components: - type: Transform pos: -66.5,11.5 parent: 2 - - uid: 33592 + - uid: 33463 components: - type: Transform pos: 26.5,64.5 parent: 2 - - uid: 33593 + - uid: 33464 components: - type: Transform pos: -32.5,81.5 parent: 2 - - uid: 33594 + - uid: 33465 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,81.5 parent: 2 - - uid: 33595 + - uid: 33466 components: - type: Transform pos: 35.5,23.5 parent: 2 - - uid: 33596 + - uid: 33467 components: - type: Transform pos: 17.5,-56.5 parent: 2 - - uid: 33597 + - uid: 33468 components: - type: Transform pos: -13.5,102.5 parent: 2 - - uid: 33598 + - uid: 33469 components: - type: Transform pos: 15.5,89.5 parent: 2 - - uid: 33599 + - uid: 33470 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 33600 + - uid: 33471 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 33601 + - uid: 33472 components: - type: Transform pos: -41.5,-59.5 parent: 2 - - uid: 33602 + - uid: 33473 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 33603 + - uid: 33474 components: - type: Transform pos: 42.5,-56.5 parent: 2 - - uid: 33604 + - uid: 33475 components: - type: Transform pos: 54.5,-5.5 parent: 2 - - uid: 33605 + - uid: 33476 components: - type: Transform pos: 78.5,-15.5 parent: 2 - - uid: 33606 + - uid: 33477 components: - type: Transform pos: 9.5,-78.5 parent: 2 - - uid: 33607 + - uid: 33478 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - uid: 33608 + - uid: 33479 components: - type: Transform pos: 74.5,4.5 parent: 2 - - uid: 33609 + - uid: 33480 components: - type: Transform pos: -55.5,-7.5 parent: 2 - - uid: 33610 + - uid: 33481 components: - type: Transform pos: -49.5,16.5 parent: 2 - - uid: 33611 + - uid: 33482 components: - type: Transform pos: -78.5,-31.5 parent: 2 - - uid: 33612 + - uid: 33483 components: - type: Transform pos: -66.5,17.5 parent: 2 - - uid: 33613 + - uid: 33484 components: - type: Transform pos: -80.5,16.5 parent: 2 - - uid: 33614 + - uid: 33485 components: - type: Transform pos: -57.5,-18.5 parent: 2 - - uid: 33615 + - uid: 33486 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 33616 + - uid: 33487 components: - type: Transform pos: -49.5,-4.5 parent: 2 - - uid: 33617 + - uid: 33488 components: - type: Transform pos: -74.5,2.5 parent: 2 - - uid: 33618 + - uid: 33489 components: - type: Transform pos: -50.5,16.5 parent: 2 - - uid: 33619 + - uid: 33490 components: - type: Transform pos: -79.5,16.5 parent: 2 - - uid: 33620 + - uid: 33491 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 - - uid: 33621 + - uid: 33492 components: - type: Transform pos: -47.5,35.5 parent: 2 - - uid: 33622 + - uid: 33493 components: - type: Transform pos: 36.5,29.5 parent: 2 - - uid: 33623 + - uid: 33494 components: - type: Transform pos: -37.5,38.5 parent: 2 - - uid: 33624 + - uid: 33495 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 33625 + - uid: 33496 components: - type: Transform pos: -68.5,54.5 parent: 2 - - uid: 33626 + - uid: 33497 components: - type: Transform pos: -14.5,70.5 parent: 2 - - uid: 33627 + - uid: 33498 components: - type: Transform pos: 8.5,-78.5 parent: 2 - - uid: 33628 + - uid: 33499 components: - type: Transform pos: 37.5,27.5 parent: 2 - - uid: 33629 + - uid: 33500 components: - type: Transform pos: 37.5,26.5 parent: 2 - - uid: 33630 + - uid: 33501 components: - type: Transform pos: -9.5,105.5 parent: 2 - - uid: 33631 + - uid: 33502 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,42.5 parent: 2 - - uid: 33632 + - uid: 33503 components: - type: Transform pos: -33.5,-80.5 parent: 2 - - uid: 33633 + - uid: 33504 components: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 33634 + - uid: 33505 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 33635 + - uid: 33506 components: - type: Transform pos: -24.5,-28.5 parent: 2 - - uid: 33636 + - uid: 33507 components: - type: Transform pos: -39.5,39.5 parent: 2 - - uid: 33637 + - uid: 33508 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-3.5 parent: 2 - - uid: 33638 + - uid: 33509 components: - type: Transform pos: -62.5,-4.5 parent: 2 - - uid: 33639 + - uid: 33510 components: - type: Transform pos: -42.5,52.5 parent: 2 - - uid: 33640 + - uid: 33511 components: - type: Transform pos: -44.5,53.5 parent: 2 - - uid: 33641 + - uid: 33512 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 33642 + - uid: 33513 components: - type: Transform pos: 38.5,5.5 parent: 2 - - uid: 33643 + - uid: 33514 components: - type: Transform pos: 7.5,-78.5 parent: 2 - - uid: 33644 + - uid: 33515 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-48.5 parent: 2 - - uid: 33645 + - uid: 33516 components: - type: Transform pos: -27.5,98.5 parent: 2 - - uid: 33646 + - uid: 33517 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-47.5 parent: 2 - - uid: 33647 + - uid: 33518 components: - type: Transform pos: -73.5,-18.5 parent: 2 - - uid: 33648 + - uid: 33519 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,51.5 parent: 2 - - uid: 33649 + - uid: 33520 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-49.5 parent: 2 - - uid: 33650 + - uid: 33521 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 33651 + - uid: 33522 components: - type: Transform pos: -66.5,8.5 parent: 2 - - uid: 33652 + - uid: 33523 components: - type: Transform pos: -45.5,26.5 parent: 2 - - uid: 33653 + - uid: 33524 components: - type: Transform pos: -53.5,-30.5 parent: 2 - - uid: 33654 + - uid: 33525 components: - type: Transform pos: 46.5,-62.5 parent: 2 - - uid: 33655 + - uid: 33526 components: - type: Transform pos: -72.5,-25.5 parent: 2 - - uid: 33656 + - uid: 33527 components: - type: Transform pos: -60.5,-15.5 parent: 2 - - uid: 33657 + - uid: 33528 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,58.5 parent: 2 - - uid: 33658 + - uid: 33529 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 33659 + - uid: 33530 components: - type: Transform pos: -78.5,-22.5 parent: 2 - - uid: 33660 + - uid: 33531 components: - type: Transform pos: 30.5,-61.5 parent: 2 - - uid: 33661 + - uid: 33532 components: - type: Transform pos: -54.5,19.5 parent: 2 - - uid: 33662 + - uid: 33533 components: - type: Transform pos: -66.5,13.5 parent: 2 - - uid: 33663 + - uid: 33534 components: - type: Transform pos: -46.5,-23.5 parent: 2 - - uid: 33664 + - uid: 33535 components: - type: Transform pos: -44.5,-23.5 parent: 2 - - uid: 33665 + - uid: 33536 components: - type: Transform pos: 33.5,-61.5 parent: 2 - - uid: 33666 + - uid: 33537 components: - type: Transform pos: -2.5,-41.5 parent: 2 - - uid: 33667 + - uid: 33538 components: - type: Transform pos: 46.5,-61.5 parent: 2 - - uid: 33668 + - uid: 33539 components: - type: Transform pos: -59.5,-15.5 parent: 2 - - uid: 33669 + - uid: 33540 components: - type: Transform pos: -73.5,-4.5 parent: 2 - - uid: 33670 + - uid: 33541 components: - type: Transform pos: -75.5,-20.5 parent: 2 - - uid: 33671 + - uid: 33542 components: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 33672 + - uid: 33543 components: - type: Transform pos: -52.5,-31.5 parent: 2 - - uid: 33673 + - uid: 33544 components: - type: Transform pos: 46.5,-60.5 parent: 2 - - uid: 33674 + - uid: 33545 components: - type: Transform pos: 33.5,-59.5 parent: 2 - - uid: 33675 + - uid: 33546 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 33676 + - uid: 33547 components: - type: Transform pos: -61.5,3.5 parent: 2 - - uid: 33677 + - uid: 33548 components: - type: Transform pos: -27.5,-80.5 parent: 2 - - uid: 33678 + - uid: 33549 components: - type: Transform pos: 2.5,-62.5 parent: 2 - - uid: 33679 + - uid: 33550 components: - type: Transform pos: -26.5,70.5 parent: 2 - - uid: 33680 + - uid: 33551 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 33682 + - uid: 33552 components: - type: Transform pos: 90.5,20.5 parent: 2 - - uid: 33683 + - uid: 33553 components: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 33684 + - uid: 33554 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-23.5 parent: 2 - - uid: 33685 + - uid: 33555 components: - type: Transform pos: -51.5,35.5 parent: 2 - - uid: 33686 + - uid: 33556 components: - type: Transform pos: -50.5,17.5 parent: 2 - - uid: 33687 + - uid: 33557 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-20.5 parent: 2 - - uid: 33688 + - uid: 33558 components: - type: Transform pos: -78.5,-28.5 parent: 2 - - uid: 33689 + - uid: 33559 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 33690 + - uid: 33560 components: - type: Transform pos: -64.5,-4.5 parent: 2 - - uid: 33691 + - uid: 33561 components: - type: Transform pos: -60.5,-10.5 parent: 2 - - uid: 33692 + - uid: 33562 components: - type: Transform pos: -58.5,43.5 parent: 2 - - uid: 33693 + - uid: 33563 components: - type: Transform pos: -38.5,41.5 parent: 2 - - uid: 33694 + - uid: 33564 components: - type: Transform pos: -66.5,14.5 parent: 2 - - uid: 33695 + - uid: 33565 components: - type: Transform pos: -22.5,-54.5 parent: 2 - - uid: 33696 + - uid: 33566 components: - type: Transform pos: -46.5,35.5 parent: 2 - - uid: 33697 + - uid: 33567 components: - type: Transform pos: -114.5,20.5 parent: 2 - - uid: 33698 + - uid: 33568 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-48.5 parent: 2 - - uid: 33699 + - uid: 33569 components: - type: Transform pos: -70.5,-18.5 parent: 2 - - uid: 33700 + - uid: 33570 components: - type: Transform pos: -80.5,12.5 parent: 2 - - uid: 33701 + - uid: 33571 components: - type: Transform pos: -58.5,-10.5 parent: 2 - - uid: 33702 + - uid: 33572 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,5.5 parent: 2 - - uid: 33703 + - uid: 33573 components: - type: Transform pos: 8.5,-36.5 parent: 2 - - uid: 33704 + - uid: 33574 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 33705 + - uid: 33575 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,5.5 parent: 2 - - uid: 33706 + - uid: 33576 components: - type: Transform pos: 9.5,-36.5 parent: 2 - - uid: 33707 + - uid: 33577 components: - type: Transform pos: -24.5,-54.5 parent: 2 - - uid: 33708 + - uid: 33578 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 33709 + - uid: 33579 components: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 33710 + - uid: 33580 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 33711 + - uid: 33581 components: - type: Transform pos: -31.5,-53.5 parent: 2 - - uid: 33713 + - uid: 33582 components: - type: Transform pos: -53.5,-29.5 parent: 2 - - uid: 33714 + - uid: 33583 components: - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 33715 + - uid: 33584 components: - type: Transform pos: -72.5,-37.5 parent: 2 - - uid: 33716 + - uid: 33585 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 33717 + - uid: 33586 components: - type: Transform pos: -21.5,-42.5 parent: 2 - - uid: 33718 + - uid: 33587 components: - type: Transform pos: -15.5,-43.5 parent: 2 - - uid: 33719 + - uid: 33588 components: - type: Transform pos: -15.5,-41.5 parent: 2 - - uid: 33720 + - uid: 33589 components: - type: Transform pos: -15.5,-44.5 parent: 2 - - uid: 33721 + - uid: 33590 components: - type: Transform pos: -21.5,-44.5 parent: 2 - - uid: 33722 + - uid: 33591 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 33723 + - uid: 33592 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 33724 + - uid: 33593 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-46.5 parent: 2 - - uid: 33725 + - uid: 33594 components: - type: Transform pos: -60.5,54.5 parent: 2 - - uid: 33726 + - uid: 33595 components: - type: Transform pos: -43.5,30.5 parent: 2 - - uid: 33727 + - uid: 33596 components: - type: Transform pos: -43.5,-5.5 parent: 2 - - uid: 33728 + - uid: 33597 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,11.5 parent: 2 - - uid: 33729 + - uid: 33598 components: - type: Transform pos: -21.5,-43.5 parent: 2 - - uid: 33730 + - uid: 33599 components: - type: Transform pos: 75.5,3.5 parent: 2 - - uid: 33731 + - uid: 33600 components: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 33732 + - uid: 33601 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 33733 + - uid: 33602 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 33734 + - uid: 33603 components: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 33735 + - uid: 33604 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 33736 + - uid: 33605 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 33737 + - uid: 33606 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 33738 + - uid: 33607 components: - type: Transform pos: -67.5,17.5 parent: 2 - - uid: 33739 + - uid: 33608 components: - type: Transform pos: -61.5,-14.5 parent: 2 - - uid: 33740 + - uid: 33609 components: - type: Transform pos: -44.5,-13.5 parent: 2 - - uid: 33741 + - uid: 33610 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 33742 + - uid: 33611 components: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 33743 + - uid: 33612 components: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 33744 + - uid: 33613 components: - type: Transform pos: 15.5,-15.5 parent: 2 - - uid: 33745 + - uid: 33614 components: - type: Transform pos: -21.5,-48.5 parent: 2 - - uid: 33746 + - uid: 33615 components: - type: Transform pos: -21.5,-46.5 parent: 2 - - uid: 33747 + - uid: 33616 components: - type: Transform pos: -21.5,-47.5 parent: 2 - - uid: 33748 + - uid: 33617 components: - type: Transform pos: -115.5,20.5 parent: 2 - - uid: 33749 + - uid: 33618 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 33750 + - uid: 33619 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-48.5 parent: 2 - - uid: 33751 + - uid: 33620 components: - type: Transform pos: 1.5,-41.5 parent: 2 - - uid: 33752 + - uid: 33621 components: - type: Transform pos: -120.5,21.5 parent: 2 - - uid: 33753 + - uid: 33622 components: - type: Transform pos: 2.5,-41.5 parent: 2 - - uid: 33754 + - uid: 33623 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 33755 + - uid: 33624 components: - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 33756 + - uid: 33625 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 33757 + - uid: 33626 components: - type: Transform pos: 27.5,-21.5 parent: 2 - - uid: 33758 + - uid: 33627 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 33759 + - uid: 33628 components: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 33760 + - uid: 33629 components: - type: Transform pos: -26.5,-36.5 parent: 2 - - uid: 33761 + - uid: 33630 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 33763 + - uid: 33631 components: - type: Transform pos: -75.5,-17.5 parent: 2 - - uid: 33764 + - uid: 33632 components: - type: Transform pos: 41.5,-58.5 parent: 2 - - uid: 33765 + - uid: 33633 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,26.5 parent: 2 - - uid: 33766 + - uid: 33634 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,6.5 parent: 2 - - uid: 33767 + - uid: 33635 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 33768 + - uid: 33636 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 33769 + - uid: 33637 components: - type: Transform pos: 15.5,-10.5 parent: 2 - - uid: 33770 + - uid: 33638 components: - type: Transform pos: -2.5,21.5 parent: 2 - - uid: 33771 + - uid: 33639 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 33772 + - uid: 33640 components: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 33773 + - uid: 33641 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 33774 + - uid: 33642 components: - type: Transform pos: 77.5,11.5 parent: 2 - - uid: 33775 + - uid: 33643 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 33776 + - uid: 33644 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 33777 + - uid: 33645 components: - type: Transform pos: 27.5,-20.5 parent: 2 - - uid: 33778 + - uid: 33646 components: - type: Transform pos: -11.5,-53.5 parent: 2 - - uid: 33779 + - uid: 33647 components: - type: Transform pos: 10.5,17.5 parent: 2 - - uid: 33780 + - uid: 33648 components: - type: Transform pos: 78.5,11.5 parent: 2 - - uid: 33781 + - uid: 33649 components: - type: Transform pos: 79.5,8.5 parent: 2 - - uid: 33782 + - uid: 33650 components: - type: Transform pos: -49.5,4.5 parent: 2 - - uid: 33783 + - uid: 33651 components: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 33784 + - uid: 33652 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 33785 + - uid: 33653 components: - type: Transform pos: -49.5,7.5 parent: 2 - - uid: 33787 + - uid: 33654 components: - type: Transform pos: 3.5,70.5 parent: 2 - - uid: 33788 + - uid: 33655 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,90.5 parent: 2 - - uid: 33789 + - uid: 33656 components: - type: Transform pos: 9.5,-58.5 parent: 2 - - uid: 33790 + - uid: 33657 components: - type: Transform pos: -79.5,-1.5 parent: 2 - - uid: 33791 + - uid: 33658 components: - type: Transform pos: 44.5,23.5 parent: 2 - - uid: 33792 + - uid: 33659 components: - type: Transform pos: 46.5,25.5 parent: 2 - - uid: 33793 + - uid: 33660 components: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 33794 + - uid: 33661 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-45.5 parent: 2 - - uid: 33795 + - uid: 33662 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 33796 + - uid: 33663 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 33797 + - uid: 33664 components: - type: Transform pos: -78.5,-1.5 parent: 2 - - uid: 33798 + - uid: 33665 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 33799 + - uid: 33666 components: - type: Transform pos: 7.5,-79.5 parent: 2 - - uid: 33800 + - uid: 33667 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 33801 + - uid: 33668 components: - type: Transform pos: 9.5,-57.5 parent: 2 - - uid: 33802 + - uid: 33669 components: - type: Transform pos: -40.5,-77.5 parent: 2 - - uid: 33803 + - uid: 33670 components: - type: Transform pos: -27.5,74.5 parent: 2 - - uid: 33804 + - uid: 33671 components: - type: Transform pos: 30.5,25.5 parent: 2 - - uid: 33805 + - uid: 33672 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 33806 + - uid: 33673 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 33807 + - uid: 33674 components: - type: Transform pos: -44.5,7.5 parent: 2 - - uid: 33808 + - uid: 33675 components: - type: Transform pos: 71.5,-37.5 parent: 2 - - uid: 33809 + - uid: 33676 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,74.5 parent: 2 - - uid: 33810 + - uid: 33677 components: - type: Transform pos: 8.5,-72.5 parent: 2 - - uid: 33811 + - uid: 33678 components: - type: Transform pos: 71.5,-36.5 parent: 2 - - uid: 33812 + - uid: 33679 components: - type: Transform pos: 71.5,-51.5 parent: 2 - - uid: 33813 + - uid: 33680 components: - type: Transform pos: 38.5,24.5 parent: 2 - - uid: 33814 + - uid: 33681 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 33815 + - uid: 33682 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 33816 + - uid: 33683 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 33817 + - uid: 33684 components: - type: Transform pos: 33.5,25.5 parent: 2 - - uid: 33818 + - uid: 33685 components: - type: Transform pos: 50.5,10.5 parent: 2 - - uid: 33819 + - uid: 33686 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,75.5 parent: 2 - - uid: 33820 + - uid: 33687 components: - type: Transform pos: 56.5,-44.5 parent: 2 - - uid: 33822 + - uid: 33688 components: - type: Transform pos: 57.5,-37.5 parent: 2 - - uid: 33823 + - uid: 33689 components: - type: Transform pos: 54.5,-41.5 parent: 2 - - uid: 33824 + - uid: 33690 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,0.5 parent: 2 - - uid: 33825 + - uid: 33691 components: - type: Transform pos: 57.5,-36.5 parent: 2 - - uid: 33826 + - uid: 33692 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 33827 + - uid: 33693 components: - type: Transform pos: 27.5,12.5 parent: 2 - - uid: 33828 + - uid: 33694 components: - type: Transform pos: 27.5,10.5 parent: 2 - - uid: 33829 + - uid: 33695 components: - type: Transform pos: 18.5,-56.5 parent: 2 - - uid: 33830 + - uid: 33696 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 - - uid: 33831 + - uid: 33697 components: - type: Transform pos: -58.5,4.5 parent: 2 - - uid: 33832 + - uid: 33698 components: - type: Transform pos: 9.5,-72.5 parent: 2 - - uid: 33833 + - uid: 33699 components: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 33834 + - uid: 33700 components: - type: Transform pos: 12.5,88.5 parent: 2 - - uid: 33835 + - uid: 33701 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 33836 + - uid: 33702 components: - type: Transform pos: 27.5,18.5 parent: 2 - - uid: 33837 + - uid: 33703 components: - type: Transform pos: 22.5,62.5 parent: 2 - - uid: 33838 + - uid: 33704 components: - type: Transform pos: -120.5,22.5 parent: 2 - - uid: 33839 + - uid: 33705 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,28.5 parent: 2 - - uid: 33840 + - uid: 33706 components: - type: Transform pos: 13.5,89.5 parent: 2 - - uid: 33841 + - uid: 33707 components: - type: Transform pos: -80.5,-1.5 parent: 2 - - uid: 33842 + - uid: 33708 components: - type: Transform pos: -75.5,-10.5 parent: 2 - - uid: 33843 + - uid: 33709 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,2.5 parent: 2 - - uid: 33844 + - uid: 33710 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,27.5 parent: 2 - - uid: 33845 + - uid: 33711 components: - type: Transform pos: 56.5,-48.5 parent: 2 - - uid: 33846 + - uid: 33712 components: - type: Transform pos: 76.5,-47.5 parent: 2 - - uid: 33847 + - uid: 33713 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 33848 + - uid: 33714 components: - type: Transform pos: -41.5,-72.5 parent: 2 - - uid: 33849 + - uid: 33715 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,27.5 parent: 2 - - uid: 33850 + - uid: 33716 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 33851 + - uid: 33717 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-41.5 parent: 2 - - uid: 33852 + - uid: 33718 components: - type: Transform pos: 24.5,73.5 parent: 2 - - uid: 33853 + - uid: 33719 components: - type: Transform pos: 28.5,68.5 parent: 2 - - uid: 33854 + - uid: 33720 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,27.5 parent: 2 - - uid: 33855 + - uid: 33721 components: - type: Transform pos: 28.5,20.5 parent: 2 - - uid: 33856 + - uid: 33722 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,27.5 parent: 2 - - uid: 33857 + - uid: 33723 components: - type: Transform pos: 54.5,-33.5 parent: 2 - - uid: 33858 + - uid: 33724 components: - type: Transform pos: 57.5,-35.5 parent: 2 - - uid: 33859 + - uid: 33725 components: - type: Transform pos: 38.5,-56.5 parent: 2 - - uid: 33860 + - uid: 33726 components: - type: Transform pos: 34.5,26.5 parent: 2 - - uid: 33861 + - uid: 33727 components: - type: Transform pos: 44.5,-1.5 parent: 2 - - uid: 33862 + - uid: 33728 components: - type: Transform pos: 30.5,-56.5 parent: 2 - - uid: 33863 + - uid: 33729 components: - type: Transform pos: 54.5,-53.5 parent: 2 - - uid: 33864 + - uid: 33730 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,45.5 parent: 2 - - uid: 33865 + - uid: 33731 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,42.5 parent: 2 - - uid: 33866 + - uid: 33732 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,45.5 parent: 2 - - uid: 33867 + - uid: 33733 components: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 33868 + - uid: 33734 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 33869 + - uid: 33735 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,45.5 parent: 2 - - uid: 33870 + - uid: 33736 components: - type: Transform pos: 22.5,58.5 parent: 2 - - uid: 33871 + - uid: 33737 components: - type: Transform pos: 22.5,64.5 parent: 2 - - uid: 33872 + - uid: 33738 components: - type: Transform pos: -59.5,4.5 parent: 2 - - uid: 33873 + - uid: 33739 components: - type: Transform pos: 24.5,69.5 parent: 2 - - uid: 33874 + - uid: 33740 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,43.5 parent: 2 - - uid: 33875 + - uid: 33741 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,44.5 parent: 2 - - uid: 33876 + - uid: 33742 components: - type: Transform pos: -40.5,-71.5 parent: 2 - - uid: 33877 + - uid: 33743 components: - type: Transform pos: 8.5,89.5 parent: 2 - - uid: 33878 + - uid: 33744 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,45.5 parent: 2 - - uid: 33879 + - uid: 33745 components: - type: Transform pos: -43.5,-24.5 parent: 2 - - uid: 33880 + - uid: 33746 components: - type: Transform pos: -31.5,93.5 parent: 2 - - uid: 33881 + - uid: 33747 components: - type: Transform pos: 22.5,63.5 parent: 2 - - uid: 33882 + - uid: 33748 components: - type: Transform pos: -56.5,-49.5 parent: 2 - - uid: 33883 + - uid: 33749 components: - type: Transform pos: -60.5,-51.5 parent: 2 - - uid: 33884 + - uid: 33750 components: - type: Transform pos: -25.5,-23.5 parent: 2 - - uid: 33885 + - uid: 33751 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 33886 + - uid: 33752 components: - type: Transform pos: -70.5,-46.5 parent: 2 - - uid: 33887 + - uid: 33753 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 33888 + - uid: 33754 components: - type: Transform pos: -34.5,-20.5 parent: 2 - - uid: 33889 + - uid: 33755 components: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 33890 + - uid: 33756 components: - type: Transform pos: 25.5,-61.5 parent: 2 - - uid: 33891 + - uid: 33757 components: - type: Transform pos: -24.5,70.5 parent: 2 - - uid: 33892 + - uid: 33758 components: - type: Transform pos: 8.5,83.5 parent: 2 - - uid: 33893 + - uid: 33759 components: - type: Transform pos: 77.5,7.5 parent: 2 - - uid: 33894 + - uid: 33760 components: - type: Transform pos: 9.5,83.5 parent: 2 - - uid: 33895 + - uid: 33761 components: - type: Transform pos: -56.5,-50.5 parent: 2 - - uid: 33896 + - uid: 33762 components: - type: Transform pos: -60.5,-50.5 parent: 2 - - uid: 33897 + - uid: 33763 components: - type: Transform pos: -72.5,-38.5 parent: 2 - - uid: 33898 + - uid: 33764 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,18.5 parent: 2 - - uid: 33899 + - uid: 33765 components: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 33900 + - uid: 33766 components: - type: Transform pos: 75.5,-50.5 parent: 2 - - uid: 33901 + - uid: 33767 components: - type: Transform pos: -56.5,-51.5 parent: 2 - - uid: 33902 + - uid: 33768 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,40.5 parent: 2 - - uid: 33903 + - uid: 33769 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,19.5 parent: 2 - - uid: 33904 + - uid: 33770 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 33905 + - uid: 33771 components: - type: Transform pos: 37.5,32.5 parent: 2 - - uid: 33906 + - uid: 33772 components: - type: Transform pos: -60.5,-48.5 parent: 2 - - uid: 33907 + - uid: 33773 components: - type: Transform pos: -24.5,-75.5 parent: 2 - - uid: 33908 + - uid: 33774 components: - type: Transform pos: 19.5,21.5 parent: 2 - - uid: 33909 + - uid: 33775 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 33910 + - uid: 33776 components: - type: Transform pos: -35.5,-30.5 parent: 2 - - uid: 33911 + - uid: 33777 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 33912 + - uid: 33778 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,48.5 parent: 2 - - uid: 33913 + - uid: 33779 components: - type: Transform pos: -24.5,-22.5 parent: 2 - - uid: 33914 + - uid: 33780 components: - type: Transform pos: -43.5,-72.5 parent: 2 - - uid: 33915 + - uid: 33781 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 33916 + - uid: 33782 components: - type: Transform pos: -35.5,-20.5 parent: 2 - - uid: 33917 + - uid: 33783 components: - type: Transform pos: -31.5,-31.5 parent: 2 - - uid: 33918 + - uid: 33784 components: - type: Transform pos: 19.5,-50.5 parent: 2 - - uid: 33919 + - uid: 33785 components: - type: Transform pos: -35.5,-21.5 parent: 2 - - uid: 33920 + - uid: 33786 components: - type: Transform pos: 19.5,-48.5 parent: 2 - - uid: 33921 + - uid: 33787 components: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 33922 + - uid: 33788 components: - type: Transform pos: -50.5,43.5 parent: 2 - - uid: 33923 + - uid: 33789 components: - type: Transform pos: -32.5,22.5 parent: 2 - - uid: 33924 + - uid: 33790 components: - type: Transform pos: -37.5,22.5 parent: 2 - - uid: 33925 + - uid: 33791 components: - type: Transform pos: -33.5,22.5 parent: 2 - - uid: 33926 + - uid: 33792 components: - type: Transform pos: -41.5,38.5 parent: 2 - - uid: 33927 + - uid: 33793 components: - type: Transform pos: -73.5,13.5 parent: 2 - - uid: 33928 + - uid: 33794 components: - type: Transform pos: -45.5,35.5 parent: 2 - - uid: 33929 + - uid: 33795 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 33930 + - uid: 33796 components: - type: Transform pos: -74.5,12.5 parent: 2 - - uid: 33931 + - uid: 33797 components: - type: Transform pos: -68.5,13.5 parent: 2 - - uid: 33932 + - uid: 33798 components: - type: Transform pos: -59.5,-18.5 parent: 2 - - uid: 33933 + - uid: 33799 components: - type: Transform pos: -72.5,-26.5 parent: 2 - - uid: 33934 + - uid: 33800 components: - type: Transform pos: -74.5,11.5 parent: 2 - - uid: 33935 + - uid: 33801 components: - type: Transform pos: -74.5,13.5 parent: 2 - - uid: 33936 + - uid: 33802 components: - type: Transform pos: -68.5,12.5 parent: 2 - - uid: 33937 + - uid: 33803 components: - type: Transform pos: -26.5,28.5 parent: 2 - - uid: 33938 + - uid: 33804 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 33939 + - uid: 33805 components: - type: Transform pos: -46.5,7.5 parent: 2 - - uid: 33940 + - uid: 33806 components: - type: Transform pos: -72.5,13.5 parent: 2 - - uid: 33941 + - uid: 33807 components: - type: Transform pos: -74.5,9.5 parent: 2 - - uid: 33942 + - uid: 33808 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,5.5 parent: 2 - - uid: 33943 + - uid: 33809 components: - type: Transform pos: -61.5,-18.5 parent: 2 - - uid: 33944 + - uid: 33810 components: - type: Transform pos: -64.5,3.5 parent: 2 - - uid: 33945 + - uid: 33811 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 33946 + - uid: 33812 components: - type: Transform pos: -55.5,-10.5 parent: 2 - - uid: 33947 + - uid: 33813 components: - type: Transform pos: -43.5,-1.5 parent: 2 - - uid: 33948 + - uid: 33814 components: - type: Transform pos: -63.5,-18.5 parent: 2 - - uid: 33949 + - uid: 33815 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 33950 + - uid: 33816 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 33951 + - uid: 33817 components: - type: Transform pos: -78.5,13.5 parent: 2 - - uid: 33952 + - uid: 33818 components: - type: Transform pos: -79.5,2.5 parent: 2 - - uid: 33953 + - uid: 33819 components: - type: Transform pos: -77.5,2.5 parent: 2 - - uid: 33954 + - uid: 33820 components: - type: Transform pos: -42.5,-34.5 parent: 2 - - uid: 33955 + - uid: 33821 components: - type: Transform pos: 32.5,36.5 parent: 2 - - uid: 33956 + - uid: 33822 components: - type: Transform pos: 32.5,37.5 parent: 2 - - uid: 33957 + - uid: 33823 components: - type: Transform pos: 32.5,38.5 parent: 2 - - uid: 33958 + - uid: 33824 components: - type: Transform pos: -45.5,31.5 parent: 2 - - uid: 33959 + - uid: 33825 components: - type: Transform pos: -48.5,35.5 parent: 2 - - uid: 33960 + - uid: 33826 components: - type: Transform pos: -56.5,-10.5 parent: 2 - - uid: 33961 + - uid: 33827 components: - type: Transform pos: -27.5,-20.5 parent: 2 - - uid: 33962 + - uid: 33828 components: - type: Transform pos: -44.5,54.5 parent: 2 - - uid: 33963 + - uid: 33829 components: - type: Transform pos: -37.5,41.5 parent: 2 - - uid: 33964 + - uid: 33830 components: - type: Transform pos: -44.5,55.5 parent: 2 - - uid: 33965 + - uid: 33831 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,87.5 parent: 2 - - uid: 33966 + - uid: 33832 components: - type: Transform pos: 54.5,-8.5 parent: 2 - - uid: 33967 + - uid: 33833 components: - type: Transform pos: -121.5,20.5 parent: 2 - - uid: 33968 + - uid: 33834 components: - type: Transform pos: -56.5,52.5 parent: 2 - - uid: 33969 + - uid: 33835 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 33970 + - uid: 33836 components: - type: Transform pos: 43.5,24.5 parent: 2 - - uid: 33971 + - uid: 33837 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-41.5 parent: 2 - - uid: 33972 + - uid: 33838 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 33973 + - uid: 33839 components: - type: Transform pos: 66.5,-31.5 parent: 2 - - uid: 33974 + - uid: 33840 components: - type: Transform pos: -43.5,4.5 parent: 2 - - uid: 33975 + - uid: 33841 components: - type: Transform pos: 75.5,-39.5 parent: 2 - - uid: 33976 + - uid: 33842 components: - type: Transform pos: 34.5,27.5 parent: 2 - - uid: 33977 + - uid: 33843 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,5.5 parent: 2 - - uid: 33978 + - uid: 33844 components: - type: Transform pos: -102.5,5.5 parent: 2 - - uid: 33979 + - uid: 33845 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,3.5 parent: 2 - - uid: 33980 + - uid: 33846 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-17.5 parent: 2 - - uid: 33981 + - uid: 33847 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-1.5 parent: 2 - - uid: 33982 + - uid: 33848 components: - type: Transform pos: 89.5,11.5 parent: 2 - - uid: 33983 + - uid: 33849 components: - type: Transform pos: 71.5,-1.5 parent: 2 - - uid: 33984 + - uid: 33850 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,8.5 parent: 2 - - uid: 33985 + - uid: 33851 components: - type: Transform pos: 71.5,-35.5 parent: 2 - - uid: 33986 + - uid: 33852 components: - type: Transform pos: -64.5,-48.5 parent: 2 - - uid: 33987 + - uid: 33853 components: - type: Transform pos: -62.5,-48.5 parent: 2 - - uid: 33988 + - uid: 33854 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 33989 + - uid: 33855 components: - type: Transform pos: -51.5,36.5 parent: 2 - - uid: 33990 + - uid: 33856 components: - type: Transform pos: -51.5,39.5 parent: 2 - - uid: 33991 + - uid: 33857 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,31.5 parent: 2 - - uid: 33992 + - uid: 33858 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 33993 + - uid: 33859 components: - type: Transform pos: -51.5,37.5 parent: 2 - - uid: 33994 + - uid: 33860 components: - type: Transform pos: -16.5,-12.5 parent: 2 - - uid: 33995 + - uid: 33861 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 33996 + - uid: 33862 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 33997 + - uid: 33863 components: - type: Transform pos: -31.5,9.5 parent: 2 - - uid: 33998 + - uid: 33864 components: - type: Transform pos: 90.5,11.5 parent: 2 - - uid: 33999 + - uid: 33865 components: - type: Transform pos: -57.5,21.5 parent: 2 - - uid: 34000 + - uid: 33866 components: - type: Transform pos: -60.5,46.5 parent: 2 - - uid: 34001 + - uid: 33867 components: - type: Transform pos: 16.5,76.5 parent: 2 - - uid: 34002 + - uid: 33868 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,2.5 parent: 2 - - uid: 34003 + - uid: 33869 components: - type: Transform pos: 37.5,28.5 parent: 2 - - uid: 34004 + - uid: 33870 components: - type: Transform pos: 75.5,-37.5 parent: 2 - - uid: 34005 + - uid: 33871 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - uid: 34006 + - uid: 33872 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 34007 + - uid: 33873 components: - type: Transform pos: -43.5,-31.5 parent: 2 - - uid: 34008 + - uid: 33874 components: - type: Transform pos: -59.5,59.5 parent: 2 - - uid: 34009 + - uid: 33875 components: - type: Transform pos: -79.5,-17.5 parent: 2 - - uid: 34011 + - uid: 33876 components: - type: Transform pos: -66.5,-29.5 parent: 2 - - uid: 34012 + - uid: 33877 components: - type: Transform pos: -63.5,-4.5 parent: 2 - - uid: 34013 + - uid: 33878 components: - type: Transform pos: -51.5,-31.5 parent: 2 - - uid: 34014 + - uid: 33879 components: - type: Transform pos: 25.5,-41.5 parent: 2 - - uid: 34015 + - uid: 33880 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 34016 + - uid: 33881 components: - type: Transform pos: 43.5,-59.5 parent: 2 - - uid: 34017 + - uid: 33882 components: - type: Transform pos: 90.5,23.5 parent: 2 - - uid: 34018 + - uid: 33883 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 34019 + - uid: 33884 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,11.5 parent: 2 - - uid: 34020 + - uid: 33885 components: - type: Transform pos: -41.5,-41.5 parent: 2 - - uid: 34021 + - uid: 33886 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 34022 + - uid: 33887 components: - type: Transform pos: -50.5,-49.5 parent: 2 - - uid: 34023 + - uid: 33888 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,7.5 parent: 2 - - uid: 34024 + - uid: 33889 components: - type: Transform pos: -16.5,-14.5 parent: 2 - - uid: 34025 + - uid: 33890 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 34026 + - uid: 33891 components: - type: Transform pos: -2.5,19.5 parent: 2 - - uid: 34027 + - uid: 33892 components: - type: Transform pos: -78.5,2.5 parent: 2 - - uid: 34028 + - uid: 33893 components: - type: Transform pos: 45.5,-59.5 parent: 2 - - uid: 34029 + - uid: 33894 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 34030 + - uid: 33895 components: - type: Transform pos: -40.5,-46.5 parent: 2 - - uid: 34031 + - uid: 33896 components: - type: Transform pos: 24.5,-41.5 parent: 2 - - uid: 34032 + - uid: 33897 components: - type: Transform pos: 59.5,-6.5 parent: 2 - - uid: 34033 + - uid: 33898 components: - type: Transform pos: -42.5,-56.5 parent: 2 - - uid: 34034 + - uid: 33899 components: - type: Transform pos: -50.5,-31.5 parent: 2 - - uid: 34035 + - uid: 33900 components: - type: Transform pos: -24.5,-48.5 parent: 2 - - uid: 34036 + - uid: 33901 components: - type: Transform pos: -16.5,-24.5 parent: 2 - - uid: 34037 + - uid: 33902 components: - type: Transform pos: -8.5,-53.5 parent: 2 - - uid: 34038 + - uid: 33903 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 34039 + - uid: 33904 components: - type: Transform pos: -62.5,-21.5 parent: 2 - - uid: 34041 + - uid: 33905 components: - type: Transform pos: -68.5,-29.5 parent: 2 - - uid: 34042 + - uid: 33906 components: - type: Transform pos: 19.5,-41.5 parent: 2 - - uid: 34043 + - uid: 33907 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-13.5 parent: 2 - - uid: 34044 + - uid: 33908 components: - type: Transform pos: -2.5,-51.5 parent: 2 - - uid: 34045 + - uid: 33909 components: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 34046 + - uid: 33910 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 34047 + - uid: 33911 components: - type: Transform pos: 15.5,-12.5 parent: 2 - - uid: 34048 + - uid: 33912 components: - type: Transform pos: 36.5,-56.5 parent: 2 - - uid: 34049 + - uid: 33913 components: - type: Transform pos: -45.5,42.5 parent: 2 - - uid: 34050 + - uid: 33914 components: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 34051 + - uid: 33915 components: - type: Transform pos: 3.5,8.5 parent: 2 - - uid: 34052 + - uid: 33916 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 34053 + - uid: 33917 components: - type: Transform pos: 3.5,6.5 parent: 2 - - uid: 34054 + - uid: 33918 components: - type: Transform pos: 4.5,6.5 parent: 2 - - uid: 34055 + - uid: 33919 components: - type: Transform pos: 5.5,6.5 parent: 2 - - uid: 34056 + - uid: 33920 components: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 34057 + - uid: 33921 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 34058 + - uid: 33922 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 34059 + - uid: 33923 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 34060 + - uid: 33924 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 34061 + - uid: 33925 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 34062 + - uid: 33926 components: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 34063 + - uid: 33927 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 34064 + - uid: 33928 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 34065 + - uid: 33929 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 34066 + - uid: 33930 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 34067 + - uid: 33931 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 34068 + - uid: 33932 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 34069 + - uid: 33933 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 34070 + - uid: 33934 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 34071 + - uid: 33935 components: - type: Transform pos: -6.5,-2.5 parent: 2 - - uid: 34072 + - uid: 33936 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 34073 + - uid: 33937 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 34074 + - uid: 33938 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 34075 + - uid: 33939 components: - type: Transform pos: -6.5,1.5 parent: 2 - - uid: 34076 + - uid: 33940 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 34077 + - uid: 33941 components: - type: Transform pos: -6.5,3.5 parent: 2 - - uid: 34078 + - uid: 33942 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 34079 + - uid: 33943 components: - type: Transform pos: -6.5,5.5 parent: 2 - - uid: 34080 + - uid: 33944 components: - type: Transform pos: -6.5,6.5 parent: 2 - - uid: 34081 + - uid: 33945 components: - type: Transform pos: -5.5,6.5 parent: 2 - - uid: 34082 + - uid: 33946 components: - type: Transform pos: -4.5,6.5 parent: 2 - - uid: 34083 + - uid: 33947 components: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 34084 + - uid: 33948 components: - type: Transform pos: -4.5,8.5 parent: 2 - - uid: 34085 + - uid: 33949 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 34086 + - uid: 33950 components: - type: Transform pos: 3.5,10.5 parent: 2 - - uid: 34087 + - uid: 33951 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 34088 + - uid: 33952 components: - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 34089 + - uid: 33953 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 34090 + - uid: 33954 components: - type: Transform pos: -1.5,10.5 parent: 2 - - uid: 34091 + - uid: 33955 components: - type: Transform pos: -2.5,10.5 parent: 2 - - uid: 34092 + - uid: 33956 components: - type: Transform pos: -3.5,10.5 parent: 2 - - uid: 34093 + - uid: 33957 components: - type: Transform pos: -4.5,10.5 parent: 2 - - uid: 34094 + - uid: 33958 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 34095 + - uid: 33959 components: - type: Transform pos: 75.5,-35.5 parent: 2 - - uid: 34096 + - uid: 33960 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-19.5 parent: 2 - - uid: 34097 + - uid: 33961 components: - type: Transform pos: -39.5,17.5 parent: 2 - - uid: 34098 + - uid: 33962 components: - type: Transform pos: -31.5,-21.5 parent: 2 - - uid: 34099 + - uid: 33963 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-48.5 parent: 2 - - uid: 34100 + - uid: 33964 components: - type: Transform pos: -8.5,-17.5 parent: 2 - - uid: 34101 + - uid: 33965 components: - type: Transform pos: -40.5,-2.5 parent: 2 - - uid: 34102 + - uid: 33966 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 34103 + - uid: 33967 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,15.5 parent: 2 - - uid: 34104 + - uid: 33968 components: - type: Transform pos: -68.5,8.5 parent: 2 - - uid: 34105 + - uid: 33969 components: - type: Transform pos: -75.5,-32.5 parent: 2 - - uid: 34106 + - uid: 33970 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 34107 + - uid: 33971 components: - type: Transform pos: -41.5,-40.5 parent: 2 - - uid: 34108 + - uid: 33972 components: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 34109 + - uid: 33973 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 34110 + - uid: 33974 components: - type: Transform pos: -62.5,-0.5 parent: 2 - - uid: 34111 + - uid: 33975 components: - type: Transform pos: -17.5,-54.5 parent: 2 - - uid: 34112 + - uid: 33976 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 34113 + - uid: 33977 components: - type: Transform pos: 5.5,-14.5 parent: 2 - - uid: 34114 + - uid: 33978 components: - type: Transform pos: 10.5,-17.5 parent: 2 - - uid: 34115 + - uid: 33979 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,51.5 parent: 2 - - uid: 34116 + - uid: 33980 components: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 34117 + - uid: 33981 components: - type: Transform pos: -38.5,22.5 parent: 2 - - uid: 34118 + - uid: 33982 components: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 34119 + - uid: 33983 components: - type: Transform pos: -50.5,42.5 parent: 2 - - uid: 34120 + - uid: 33984 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 34121 + - uid: 33985 components: - type: Transform pos: 37.5,-56.5 parent: 2 - - uid: 34122 + - uid: 33986 components: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 34123 + - uid: 33987 components: - type: Transform pos: 78.5,-1.5 parent: 2 - - uid: 34124 + - uid: 33988 components: - type: Transform pos: 47.5,25.5 parent: 2 - - uid: 34125 + - uid: 33989 components: - type: Transform pos: -27.5,97.5 parent: 2 - - uid: 34126 + - uid: 33990 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 34127 + - uid: 33991 components: - type: Transform pos: 33.5,22.5 parent: 2 - - uid: 34128 + - uid: 33992 components: - type: Transform pos: 57.5,-43.5 parent: 2 - - uid: 34129 + - uid: 33993 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,43.5 parent: 2 - - uid: 34130 + - uid: 33994 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 34131 + - uid: 33995 components: - type: Transform pos: -50.5,25.5 parent: 2 - - uid: 34132 + - uid: 33996 components: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 34133 + - uid: 33997 components: - type: Transform pos: 34.5,28.5 parent: 2 - - uid: 34134 + - uid: 33998 components: - type: Transform pos: 25.5,-51.5 parent: 2 - - uid: 34135 + - uid: 33999 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 34136 + - uid: 34000 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 34137 + - uid: 34001 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 34138 + - uid: 34002 components: - type: Transform pos: 15.5,1.5 parent: 2 - - uid: 34139 + - uid: 34003 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 34140 + - uid: 34004 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 34141 + - uid: 34005 components: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 34142 + - uid: 34006 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 34143 + - uid: 34007 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 34144 + - uid: 34008 components: - type: Transform pos: 12.5,-62.5 parent: 2 - - uid: 34145 + - uid: 34009 components: - type: Transform pos: -78.5,-24.5 parent: 2 - - uid: 34146 + - uid: 34010 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 34147 + - uid: 34011 components: - type: Transform pos: -44.5,16.5 parent: 2 - - uid: 34148 + - uid: 34012 components: - type: Transform pos: -75.5,12.5 parent: 2 - - uid: 34149 + - uid: 34013 components: - type: Transform pos: 43.5,-65.5 parent: 2 - - uid: 34150 + - uid: 34014 components: - type: Transform pos: -24.5,-29.5 parent: 2 - - uid: 34151 + - uid: 34015 components: - type: Transform pos: 19.5,13.5 parent: 2 - - uid: 34152 + - uid: 34016 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-50.5 parent: 2 - - uid: 34153 + - uid: 34017 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-50.5 parent: 2 - - uid: 34154 + - uid: 34018 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 34155 + - uid: 34019 components: - type: Transform pos: -80.5,-4.5 parent: 2 - - uid: 34156 + - uid: 34020 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 34157 + - uid: 34021 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 34158 + - uid: 34022 components: - type: Transform pos: 66.5,-16.5 parent: 2 - - uid: 34159 + - uid: 34023 components: - type: Transform pos: 45.5,-1.5 parent: 2 - - uid: 34160 + - uid: 34024 components: - type: Transform pos: 39.5,24.5 parent: 2 - - uid: 34161 + - uid: 34025 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 34162 + - uid: 34026 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 - - uid: 34163 + - uid: 34027 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 34164 + - uid: 34028 components: - type: Transform pos: -31.5,-80.5 parent: 2 - - uid: 34165 + - uid: 34029 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 34166 + - uid: 34030 components: - type: Transform pos: -78.5,-17.5 parent: 2 - - uid: 34167 + - uid: 34031 components: - type: Transform pos: -77.5,-17.5 parent: 2 - - uid: 34168 + - uid: 34032 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,2.5 parent: 2 - - uid: 34169 + - uid: 34033 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 34170 + - uid: 34034 components: - type: Transform pos: 42.5,-75.5 parent: 2 - - uid: 34171 + - uid: 34035 components: - type: Transform pos: -56.5,-18.5 parent: 2 - - uid: 34172 + - uid: 34036 components: - type: Transform pos: -70.5,3.5 parent: 2 - - uid: 34173 + - uid: 34037 components: - type: Transform pos: -50.5,-10.5 parent: 2 - - uid: 34174 + - uid: 34038 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 34175 + - uid: 34039 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 34176 + - uid: 34040 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,46.5 parent: 2 - - uid: 34177 + - uid: 34041 components: - type: Transform pos: -43.5,53.5 parent: 2 - - uid: 34178 + - uid: 34042 components: - type: Transform pos: -43.5,-25.5 parent: 2 - - uid: 34179 + - uid: 34043 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 34180 + - uid: 34044 components: - type: Transform pos: -24.5,-72.5 parent: 2 - - uid: 34181 + - uid: 34045 components: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 34182 + - uid: 34046 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 34183 + - uid: 34047 components: - type: Transform pos: -46.5,-10.5 parent: 2 - - uid: 34184 + - uid: 34048 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 34185 + - uid: 34049 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,90.5 parent: 2 - - uid: 34186 + - uid: 34050 components: - type: Transform pos: -60.5,56.5 parent: 2 - - uid: 34187 + - uid: 34051 components: - type: Transform pos: -43.5,31.5 parent: 2 - - uid: 34188 + - uid: 34052 components: - type: Transform pos: -43.5,35.5 parent: 2 - - uid: 34189 + - uid: 34053 components: - type: Transform pos: -31.5,22.5 parent: 2 - - uid: 34190 + - uid: 34054 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 34191 + - uid: 34055 components: - type: Transform pos: 28.5,55.5 parent: 2 - - uid: 34192 + - uid: 34056 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 34193 + - uid: 34057 components: - type: Transform pos: 28.5,66.5 parent: 2 - - uid: 34194 + - uid: 34058 components: - type: Transform pos: 28.5,64.5 parent: 2 - - uid: 34195 + - uid: 34059 components: - type: Transform pos: 28.5,65.5 parent: 2 - - uid: 34196 + - uid: 34060 components: - type: Transform pos: 29.5,-20.5 parent: 2 - - uid: 34197 + - uid: 34061 components: - type: Transform pos: 32.5,-64.5 parent: 2 - - uid: 34198 + - uid: 34062 components: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 34199 + - uid: 34063 components: - type: Transform pos: -36.5,41.5 parent: 2 - - uid: 34200 + - uid: 34064 components: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 34201 + - uid: 34065 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-41.5 parent: 2 - - uid: 34202 + - uid: 34066 components: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 34203 + - uid: 34067 components: - type: Transform pos: 80.5,-17.5 parent: 2 - - uid: 34204 + - uid: 34068 components: - type: Transform pos: 33.5,-56.5 parent: 2 - - uid: 34205 + - uid: 34069 components: - type: Transform pos: 75.5,-36.5 parent: 2 - - uid: 34206 + - uid: 34070 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-50.5 parent: 2 - - uid: 34207 + - uid: 34071 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,26.5 parent: 2 - - uid: 34208 + - uid: 34072 components: - type: Transform pos: -25.5,26.5 parent: 2 - - uid: 34209 + - uid: 34073 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 34210 + - uid: 34074 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 34211 + - uid: 34075 components: - type: Transform pos: -61.5,-15.5 parent: 2 - - uid: 34212 + - uid: 34076 components: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 34213 + - uid: 34077 components: - type: Transform pos: 26.5,-58.5 parent: 2 - - uid: 34214 + - uid: 34078 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-17.5 parent: 2 - - uid: 34215 + - uid: 34079 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,5.5 parent: 2 - - uid: 34216 + - uid: 34080 components: - type: Transform pos: -25.5,28.5 parent: 2 - - uid: 34217 + - uid: 34081 components: - type: Transform pos: -43.5,43.5 parent: 2 - - uid: 34218 + - uid: 34082 components: - type: Transform pos: 14.5,85.5 parent: 2 - - uid: 34219 + - uid: 34083 components: - type: Transform pos: -60.5,45.5 parent: 2 - - uid: 34220 + - uid: 34084 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 34221 + - uid: 34085 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,51.5 parent: 2 - - uid: 34222 + - uid: 34086 components: - type: Transform pos: 30.5,40.5 parent: 2 - - uid: 34223 + - uid: 34087 components: - type: Transform pos: 69.5,-27.5 parent: 2 - - uid: 34224 + - uid: 34088 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 34225 + - uid: 34089 components: - type: Transform pos: -44.5,56.5 parent: 2 - - uid: 34226 + - uid: 34090 components: - type: Transform pos: -43.5,-22.5 parent: 2 - - uid: 34227 + - uid: 34091 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-42.5 parent: 2 - - uid: 34228 + - uid: 34092 components: - type: Transform pos: -59.5,-21.5 parent: 2 - - uid: 34229 + - uid: 34093 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-20.5 parent: 2 - - uid: 34230 + - uid: 34094 components: - type: Transform pos: -61.5,2.5 parent: 2 - - uid: 34231 + - uid: 34095 components: - type: Transform pos: 46.5,-64.5 parent: 2 - - uid: 34232 + - uid: 34096 components: - type: Transform pos: -2.5,-42.5 parent: 2 - - uid: 34233 + - uid: 34097 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 34234 + - uid: 34098 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 34235 + - uid: 34099 components: - type: Transform pos: 19.5,22.5 parent: 2 - - uid: 34236 + - uid: 34100 components: - type: Transform pos: 27.5,68.5 parent: 2 - - uid: 34237 + - uid: 34101 components: - type: Transform pos: -45.5,10.5 parent: 2 - - uid: 34238 + - uid: 34102 components: - type: Transform pos: 24.5,20.5 parent: 2 - - uid: 34239 + - uid: 34103 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 2 - - uid: 34240 + - uid: 34104 components: - type: Transform pos: 54.5,-51.5 parent: 2 - - uid: 34241 + - uid: 34105 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 34242 + - uid: 34106 components: - type: Transform pos: -59.5,12.5 parent: 2 - - uid: 34243 + - uid: 34107 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 34244 + - uid: 34108 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,87.5 parent: 2 - - uid: 34245 + - uid: 34109 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,31.5 parent: 2 - - uid: 34246 + - uid: 34110 components: - type: Transform pos: 17.5,80.5 parent: 2 - - uid: 34247 + - uid: 34111 components: - type: Transform pos: 75.5,-48.5 parent: 2 - - uid: 34248 + - uid: 34112 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,31.5 parent: 2 - - uid: 34249 + - uid: 34113 components: - type: Transform pos: 18.5,73.5 parent: 2 - - uid: 34250 + - uid: 34114 components: - type: Transform pos: -11.5,-60.5 parent: 2 - - uid: 34251 + - uid: 34115 components: - type: Transform pos: -12.5,-60.5 parent: 2 - - uid: 34252 + - uid: 34116 components: - type: Transform pos: -39.5,-20.5 parent: 2 - - uid: 34253 + - uid: 34117 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,90.5 parent: 2 - - uid: 34254 + - uid: 34118 components: - type: Transform pos: -14.5,-60.5 parent: 2 - - uid: 34255 + - uid: 34119 components: - type: Transform pos: -78.5,-20.5 parent: 2 - - uid: 34256 + - uid: 34120 components: - type: Transform pos: 33.5,-71.5 parent: 2 - - uid: 34257 + - uid: 34121 components: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 34258 + - uid: 34122 components: - type: Transform pos: -120.5,20.5 parent: 2 - - uid: 34259 + - uid: 34123 components: - type: Transform pos: 12.5,91.5 parent: 2 - - uid: 34260 + - uid: 34124 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,93.5 parent: 2 - - uid: 34261 + - uid: 34125 components: - type: Transform pos: -13.5,-60.5 parent: 2 - - uid: 34262 + - uid: 34126 components: - type: Transform pos: -43.5,26.5 parent: 2 - - uid: 34263 + - uid: 34127 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,93.5 parent: 2 - - uid: 34264 + - uid: 34128 components: - type: Transform pos: -11.5,-55.5 parent: 2 - - uid: 34265 + - uid: 34129 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 34266 + - uid: 34130 components: - type: Transform pos: 27.5,-64.5 parent: 2 - - uid: 34268 + - uid: 34131 components: - type: Transform pos: -11.5,-56.5 parent: 2 - - uid: 34269 + - uid: 34132 components: - type: Transform pos: -27.5,-79.5 parent: 2 - - uid: 34270 + - uid: 34133 components: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 34271 + - uid: 34134 components: - type: Transform pos: -36.5,-20.5 parent: 2 - - uid: 34272 + - uid: 34135 components: - type: Transform pos: -44.5,36.5 parent: 2 - - uid: 34273 + - uid: 34136 components: - type: Transform pos: -24.5,-24.5 parent: 2 - - uid: 34274 + - uid: 34137 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,28.5 parent: 2 - - uid: 34275 + - uid: 34138 components: - type: Transform pos: 4.5,87.5 parent: 2 - - uid: 34276 + - uid: 34139 components: - type: Transform pos: -29.5,-20.5 parent: 2 - - uid: 34277 + - uid: 34140 components: - type: Transform pos: -44.5,58.5 parent: 2 - - uid: 34278 + - uid: 34141 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 34279 + - uid: 34142 components: - type: Transform pos: -24.5,-30.5 parent: 2 - - uid: 34280 + - uid: 34143 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 34281 + - uid: 34144 components: - type: Transform pos: -17.5,-60.5 parent: 2 - - uid: 34282 + - uid: 34145 components: - type: Transform pos: -19.5,-60.5 parent: 2 - - uid: 34283 + - uid: 34146 components: - type: Transform pos: -23.5,-22.5 parent: 2 - - uid: 34284 + - uid: 34147 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-46.5 parent: 2 - - uid: 34285 + - uid: 34148 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 34286 + - uid: 34149 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 34287 + - uid: 34150 components: - type: Transform pos: -60.5,55.5 parent: 2 - - uid: 34288 + - uid: 34151 components: - type: Transform pos: -11.5,-57.5 parent: 2 - - uid: 34289 + - uid: 34152 components: - type: Transform pos: -31.5,20.5 parent: 2 - - uid: 34290 + - uid: 34153 components: - type: Transform pos: -11.5,-59.5 parent: 2 - - uid: 34291 + - uid: 34154 components: - type: Transform pos: -18.5,-54.5 parent: 2 - - uid: 34292 + - uid: 34155 components: - type: Transform pos: 74.5,-1.5 parent: 2 - - uid: 34293 + - uid: 34156 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 - - uid: 34294 + - uid: 34157 components: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 34295 + - uid: 34158 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-36.5 parent: 2 - - uid: 34296 + - uid: 34159 components: - type: Transform pos: -43.5,-6.5 parent: 2 - - uid: 34297 + - uid: 34160 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-13.5 parent: 2 - - uid: 34298 + - uid: 34161 components: - type: Transform pos: -54.5,-18.5 parent: 2 - - uid: 34299 + - uid: 34162 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 34300 + - uid: 34163 components: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 34301 + - uid: 34164 components: - type: Transform pos: -49.5,-24.5 parent: 2 - - uid: 34302 + - uid: 34165 components: - type: Transform pos: -54.5,-49.5 parent: 2 - - uid: 34303 + - uid: 34166 components: - type: Transform pos: -43.5,-0.5 parent: 2 - - uid: 34304 + - uid: 34167 components: - type: Transform pos: -66.5,16.5 parent: 2 - - uid: 34305 + - uid: 34168 components: - type: Transform pos: -78.5,-2.5 parent: 2 - - uid: 34306 + - uid: 34169 components: - type: Transform pos: -78.5,-4.5 parent: 2 - - uid: 34307 + - uid: 34170 components: - type: Transform pos: -9.5,17.5 parent: 2 - - uid: 34308 + - uid: 34171 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 34309 + - uid: 34172 components: - type: Transform pos: 93.5,11.5 parent: 2 - - uid: 34310 + - uid: 34173 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-42.5 parent: 2 - - uid: 34311 + - uid: 34174 components: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 34312 + - uid: 34175 components: - type: Transform pos: 11.5,-0.5 parent: 2 - - uid: 34313 + - uid: 34176 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 34314 + - uid: 34177 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,5.5 parent: 2 - - uid: 34315 + - uid: 34178 components: - type: Transform pos: -60.5,-18.5 parent: 2 - - uid: 34316 + - uid: 34179 components: - type: Transform pos: 1.5,19.5 parent: 2 - - uid: 34318 + - uid: 34180 components: - type: Transform pos: -74.5,5.5 parent: 2 - - uid: 34319 + - uid: 34181 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-41.5 parent: 2 - - uid: 34320 + - uid: 34182 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-13.5 parent: 2 - - uid: 34321 + - uid: 34183 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-6.5 parent: 2 - - uid: 34322 + - uid: 34184 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 34323 + - uid: 34185 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,5.5 parent: 2 - - uid: 34324 + - uid: 34186 components: - type: Transform pos: -71.5,-18.5 parent: 2 - - uid: 34325 + - uid: 34187 components: - type: Transform pos: -55.5,-4.5 parent: 2 - - uid: 34326 + - uid: 34188 components: - type: Transform pos: 30.5,-20.5 parent: 2 - - uid: 34327 + - uid: 34189 components: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 34328 + - uid: 34190 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 34329 + - uid: 34191 components: - type: Transform pos: -53.5,-49.5 parent: 2 - - uid: 34330 + - uid: 34192 components: - type: Transform pos: -49.5,-25.5 parent: 2 - - uid: 34331 + - uid: 34193 components: - type: Transform pos: 20.5,-53.5 parent: 2 - - uid: 34332 + - uid: 34194 components: - type: Transform pos: -57.5,55.5 parent: 2 - - uid: 34333 + - uid: 34195 components: - type: Transform pos: -47.5,-21.5 parent: 2 - - uid: 34334 + - uid: 34196 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 34335 + - uid: 34197 components: - type: Transform pos: 9.5,89.5 parent: 2 - - uid: 34336 + - uid: 34198 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 34337 + - uid: 34199 components: - type: Transform pos: -24.5,-73.5 parent: 2 - - uid: 34338 + - uid: 34200 components: - type: Transform pos: 22.5,59.5 parent: 2 - - uid: 34339 + - uid: 34201 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,12.5 parent: 2 - - uid: 34340 + - uid: 34202 components: - type: Transform pos: 16.5,73.5 parent: 2 - - uid: 34341 + - uid: 34203 components: - type: Transform pos: -35.5,-31.5 parent: 2 - - uid: 34342 + - uid: 34204 components: - type: Transform pos: -31.5,15.5 parent: 2 - - uid: 34343 + - uid: 34205 components: - type: Transform pos: -24.5,-76.5 parent: 2 - - uid: 34344 + - uid: 34206 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 34345 + - uid: 34207 components: - type: Transform pos: -77.5,-4.5 parent: 2 - - uid: 34346 + - uid: 34208 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,4.5 parent: 2 - - uid: 34347 + - uid: 34209 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,25.5 parent: 2 - - uid: 34348 + - uid: 34210 components: - type: Transform pos: 64.5,-6.5 parent: 2 - - uid: 34349 + - uid: 34211 components: - type: Transform pos: -42.5,53.5 parent: 2 - - uid: 34350 + - uid: 34212 components: - type: Transform pos: -42.5,63.5 parent: 2 - - uid: 34351 + - uid: 34213 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 - - uid: 34352 + - uid: 34214 components: - type: Transform pos: 27.5,64.5 parent: 2 - - uid: 34353 + - uid: 34215 components: - type: Transform pos: 53.5,-45.5 parent: 2 - - uid: 34354 + - uid: 34216 components: - type: Transform pos: 77.5,25.5 parent: 2 - - uid: 34355 + - uid: 34217 components: - type: Transform pos: 17.5,76.5 parent: 2 - - uid: 34356 + - uid: 34218 components: - type: Transform pos: 39.5,-56.5 parent: 2 - - uid: 34357 + - uid: 34219 components: - type: Transform pos: 75.5,-52.5 parent: 2 - - uid: 34358 + - uid: 34220 components: - type: Transform pos: -30.5,-20.5 parent: 2 - - uid: 34359 + - uid: 34221 components: - type: Transform pos: 77.5,30.5 parent: 2 - - uid: 34360 + - uid: 34222 components: - type: Transform pos: -50.5,18.5 parent: 2 - - uid: 34361 + - uid: 34223 components: - type: Transform pos: -27.5,71.5 parent: 2 - - uid: 34362 + - uid: 34224 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 34363 + - uid: 34225 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-80.5 parent: 2 - - uid: 34364 + - uid: 34226 components: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 34365 + - uid: 34227 components: - type: Transform pos: -42.5,55.5 parent: 2 - - uid: 34366 + - uid: 34228 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 34367 + - uid: 34229 components: - type: Transform pos: -31.5,-22.5 parent: 2 - - uid: 34368 + - uid: 34230 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 - - uid: 34369 + - uid: 34231 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 - - uid: 34370 + - uid: 34232 components: - type: Transform pos: -38.5,64.5 parent: 2 - - uid: 34371 + - uid: 34233 components: - type: Transform pos: -50.5,40.5 parent: 2 - - uid: 34372 + - uid: 34234 components: - type: Transform pos: -56.5,59.5 parent: 2 - - uid: 34373 + - uid: 34235 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-44.5 parent: 2 - - uid: 34374 + - uid: 34236 components: - type: Transform pos: -78.5,-23.5 parent: 2 - - uid: 34375 + - uid: 34237 components: - type: Transform pos: -25.5,-55.5 parent: 2 - - uid: 34376 + - uid: 34238 components: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 34377 + - uid: 34239 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 34378 + - uid: 34240 components: - type: Transform pos: 69.5,30.5 parent: 2 - - uid: 34379 + - uid: 34241 components: - type: Transform pos: 54.5,-39.5 parent: 2 - - uid: 34380 + - uid: 34242 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 34381 + - uid: 34243 components: - type: Transform pos: 4.5,74.5 parent: 2 - - uid: 34382 + - uid: 34244 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-51.5 parent: 2 - - uid: 34383 + - uid: 34245 components: - type: Transform pos: 73.5,-25.5 parent: 2 - - uid: 34384 + - uid: 34246 components: - type: Transform pos: 71.5,-38.5 parent: 2 - - uid: 34385 + - uid: 34247 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 - - uid: 34386 + - uid: 34248 components: - type: Transform pos: 15.5,-4.5 parent: 2 - - uid: 34387 + - uid: 34249 components: - type: Transform pos: 83.5,-44.5 parent: 2 - - uid: 34388 + - uid: 34250 components: - type: Transform pos: 75.5,-49.5 parent: 2 - - uid: 34389 + - uid: 34251 components: - type: Transform pos: 26.5,68.5 parent: 2 - - uid: 34390 + - uid: 34252 components: - type: Transform pos: 54.5,-49.5 parent: 2 - - uid: 34391 + - uid: 34253 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 34392 + - uid: 34254 components: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 34393 + - uid: 34255 components: - type: Transform pos: -26.5,81.5 parent: 2 - - uid: 34394 + - uid: 34256 components: - type: Transform pos: -42.5,-72.5 parent: 2 - - uid: 34395 + - uid: 34257 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-49.5 parent: 2 - - uid: 34396 + - uid: 34258 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-49.5 parent: 2 - - uid: 34397 + - uid: 34259 components: - type: Transform pos: -23.5,-78.5 parent: 2 - - uid: 34398 + - uid: 34260 components: - type: Transform pos: -24.5,-71.5 parent: 2 - - uid: 34399 + - uid: 34261 components: - type: Transform pos: -45.5,30.5 parent: 2 - - uid: 34400 + - uid: 34262 components: - type: Transform pos: 43.5,-1.5 parent: 2 - - uid: 34401 + - uid: 34263 components: - type: Transform pos: -54.5,4.5 parent: 2 - - uid: 34402 + - uid: 34264 components: - type: Transform pos: 34.5,-56.5 parent: 2 - - uid: 34403 + - uid: 34265 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 34404 + - uid: 34266 components: - type: Transform pos: -41.5,-76.5 parent: 2 - - uid: 34405 + - uid: 34267 components: - type: Transform pos: 17.5,73.5 parent: 2 - - uid: 34406 + - uid: 34268 components: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 34407 + - uid: 34269 components: - type: Transform pos: 6.5,91.5 parent: 2 - - uid: 34408 + - uid: 34270 components: - type: Transform pos: -38.5,38.5 parent: 2 - - uid: 34409 + - uid: 34271 components: - type: Transform pos: -25.5,-20.5 parent: 2 - - uid: 34410 + - uid: 34272 components: - type: Transform pos: -56.5,-4.5 parent: 2 - - uid: 34411 + - uid: 34273 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,19.5 parent: 2 - - uid: 34412 + - uid: 34274 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,19.5 parent: 2 - - uid: 34413 + - uid: 34275 components: - type: Transform pos: -26.5,-38.5 parent: 2 - - uid: 34414 + - uid: 34276 components: - type: Transform pos: -26.5,-39.5 parent: 2 - - uid: 34415 + - uid: 34277 components: - type: Transform pos: -38.5,17.5 parent: 2 - - uid: 34416 + - uid: 34278 components: - type: Transform pos: 17.5,79.5 parent: 2 - - uid: 34417 + - uid: 34279 components: - type: Transform pos: -8.5,81.5 parent: 2 - - uid: 34418 + - uid: 34280 components: - type: Transform pos: -60.5,53.5 parent: 2 - - uid: 34419 + - uid: 34281 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 34420 + - uid: 34282 components: - type: Transform pos: -78.5,-32.5 parent: 2 - - uid: 34421 + - uid: 34283 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-20.5 parent: 2 - - uid: 34422 + - uid: 34284 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-10.5 parent: 2 - - uid: 34423 + - uid: 34285 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 34424 + - uid: 34286 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-8.5 parent: 2 - - uid: 34425 + - uid: 34287 components: - type: Transform pos: -44.5,-10.5 parent: 2 - - uid: 34426 + - uid: 34288 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 34427 + - uid: 34289 components: - type: Transform pos: -61.5,19.5 parent: 2 - - uid: 34428 + - uid: 34290 components: - type: Transform pos: -45.5,-4.5 parent: 2 - - uid: 34429 + - uid: 34291 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 34430 + - uid: 34292 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,15.5 parent: 2 - - uid: 34431 + - uid: 34293 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 34432 + - uid: 34294 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 34433 + - uid: 34295 components: - type: Transform pos: 17.5,77.5 parent: 2 - - uid: 34434 + - uid: 34296 components: - type: Transform pos: 10.5,-78.5 parent: 2 - - uid: 34435 + - uid: 34297 components: - type: Transform pos: -78.5,17.5 parent: 2 - - uid: 34436 + - uid: 34298 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 34437 + - uid: 34299 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 34438 + - uid: 34300 components: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 34439 + - uid: 34301 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,23.5 parent: 2 - - uid: 34440 + - uid: 34302 components: - type: Transform pos: 14.5,-6.5 parent: 2 - - uid: 34441 + - uid: 34303 components: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 34442 + - uid: 34304 components: - type: Transform pos: -2.5,-50.5 parent: 2 - - uid: 34443 + - uid: 34305 components: - type: Transform pos: 75.5,4.5 parent: 2 - - uid: 34444 + - uid: 34306 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 34445 + - uid: 34307 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 34446 + - uid: 34308 components: - type: Transform pos: 27.5,-22.5 parent: 2 - - uid: 34447 + - uid: 34309 components: - type: Transform pos: -45.5,-20.5 parent: 2 - - uid: 34448 + - uid: 34310 components: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 34449 + - uid: 34311 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 34450 + - uid: 34312 components: - type: Transform pos: -37.5,-7.5 parent: 2 - - uid: 34451 + - uid: 34313 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-46.5 parent: 2 - - uid: 34452 + - uid: 34314 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 34453 + - uid: 34315 components: - type: Transform pos: -11.5,17.5 parent: 2 - - uid: 34454 + - uid: 34316 components: - type: Transform pos: -38.5,-7.5 parent: 2 - - uid: 34455 + - uid: 34317 components: - type: Transform pos: -56.5,-23.5 parent: 2 - - uid: 34456 + - uid: 34318 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 34457 + - uid: 34319 components: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 34458 + - uid: 34320 components: - type: Transform pos: -56.5,-29.5 parent: 2 - - uid: 34459 + - uid: 34321 components: - type: Transform pos: 31.5,-20.5 parent: 2 - - uid: 34460 + - uid: 34322 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 34461 + - uid: 34323 components: - type: Transform pos: -11.5,-54.5 parent: 2 - - uid: 34462 + - uid: 34324 components: - type: Transform pos: -3.5,-53.5 parent: 2 - - uid: 34463 + - uid: 34325 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-4.5 parent: 2 - - uid: 34464 + - uid: 34326 components: - type: Transform pos: 40.5,-75.5 parent: 2 - - uid: 34465 + - uid: 34327 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,5.5 parent: 2 - - uid: 34466 + - uid: 34328 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-8.5 parent: 2 - - uid: 34467 + - uid: 34329 components: - type: Transform pos: 43.5,-71.5 parent: 2 - - uid: 34468 + - uid: 34330 components: - type: Transform pos: 13.5,80.5 parent: 2 - - uid: 34469 + - uid: 34331 components: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 34470 + - uid: 34332 components: - type: Transform pos: -31.5,17.5 parent: 2 - - uid: 34471 + - uid: 34333 components: - type: Transform pos: -51.5,43.5 parent: 2 - - uid: 34472 + - uid: 34334 components: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 34473 + - uid: 34335 components: - type: Transform pos: -41.5,-38.5 parent: 2 - - uid: 34474 + - uid: 34336 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - uid: 34475 + - uid: 34337 components: - type: Transform pos: -16.5,-17.5 parent: 2 - - uid: 34476 + - uid: 34338 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 34477 + - uid: 34339 components: - type: Transform pos: 33.5,-70.5 parent: 2 - - uid: 34478 + - uid: 34340 components: - type: Transform pos: 27.5,-70.5 parent: 2 - - uid: 34479 + - uid: 34341 components: - type: Transform pos: -38.5,-34.5 parent: 2 - - uid: 34480 + - uid: 34342 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 34481 + - uid: 34343 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,7.5 parent: 2 - - uid: 34482 + - uid: 34344 components: - type: Transform pos: -43.5,-29.5 parent: 2 - - uid: 34483 + - uid: 34345 components: - type: Transform pos: -35.5,-22.5 parent: 2 - - uid: 34484 + - uid: 34346 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 34485 + - uid: 34347 components: - type: Transform pos: -74.5,3.5 parent: 2 - - uid: 34486 + - uid: 34348 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-21.5 parent: 2 - - uid: 34487 + - uid: 34349 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,5.5 parent: 2 - - uid: 34488 + - uid: 34350 components: - type: Transform pos: -2.5,-53.5 parent: 2 - - uid: 34489 + - uid: 34351 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-1.5 parent: 2 - - uid: 34490 + - uid: 34352 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,6.5 parent: 2 - - uid: 34491 + - uid: 34353 components: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 34492 + - uid: 34354 components: - type: Transform pos: -52.5,-23.5 parent: 2 - - uid: 34493 + - uid: 34355 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 34494 + - uid: 34356 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 34495 + - uid: 34357 components: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 34496 + - uid: 34358 components: - type: Transform pos: -50.5,26.5 parent: 2 - - uid: 34497 + - uid: 34359 components: - type: Transform pos: -8.5,80.5 parent: 2 - - uid: 34498 + - uid: 34360 components: - type: Transform pos: -25.5,-57.5 parent: 2 - - uid: 34499 + - uid: 34361 components: - type: Transform pos: 3.5,-72.5 parent: 2 - - uid: 34500 + - uid: 34362 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 34501 + - uid: 34363 components: - type: Transform pos: -31.5,98.5 parent: 2 - - uid: 34502 + - uid: 34364 components: - type: Transform pos: -62.5,3.5 parent: 2 - - uid: 34503 + - uid: 34365 components: - type: Transform pos: -30.5,-36.5 parent: 2 - - uid: 34504 + - uid: 34366 components: - type: Transform pos: -53.5,-25.5 parent: 2 - - uid: 34505 + - uid: 34367 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 34506 + - uid: 34368 components: - type: Transform pos: -70.5,13.5 parent: 2 - - uid: 34507 + - uid: 34369 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 34508 + - uid: 34370 components: - type: Transform pos: -66.5,3.5 parent: 2 - - uid: 34509 + - uid: 34371 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-28.5 parent: 2 - - uid: 34510 + - uid: 34372 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 34511 + - uid: 34373 components: - type: Transform pos: -74.5,-18.5 parent: 2 - - uid: 34512 + - uid: 34374 components: - type: Transform pos: 33.5,-58.5 parent: 2 - - uid: 34513 + - uid: 34375 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 34514 + - uid: 34376 components: - type: Transform pos: 36.5,-58.5 parent: 2 - - uid: 34515 + - uid: 34377 components: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 34516 + - uid: 34378 components: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 34517 + - uid: 34379 components: - type: Transform pos: -31.5,97.5 parent: 2 - - uid: 34518 + - uid: 34380 components: - type: Transform pos: 38.5,-58.5 parent: 2 - - uid: 34519 + - uid: 34381 components: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 34521 + - uid: 34382 components: - type: Transform pos: -78.5,-18.5 parent: 2 - - uid: 34522 + - uid: 34383 components: - type: Transform pos: -72.5,-29.5 parent: 2 - - uid: 34523 + - uid: 34384 components: - type: Transform pos: -75.5,-18.5 parent: 2 - - uid: 34524 + - uid: 34385 components: - type: Transform pos: -115.5,34.5 parent: 2 - - uid: 34525 + - uid: 34386 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 34526 + - uid: 34387 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-5.5 parent: 2 - - uid: 34527 + - uid: 34388 components: - type: Transform pos: 43.5,16.5 parent: 2 - - uid: 34528 + - uid: 34389 components: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 34529 + - uid: 34390 components: - type: Transform pos: -33.5,18.5 parent: 2 - - uid: 34530 + - uid: 34391 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-17.5 parent: 2 - - uid: 34531 + - uid: 34392 components: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 34532 + - uid: 34393 components: - type: Transform pos: 13.5,17.5 parent: 2 - - uid: 34533 + - uid: 34394 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 34534 + - uid: 34395 components: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 34535 + - uid: 34396 components: - type: Transform pos: -66.5,18.5 parent: 2 - - uid: 34536 + - uid: 34397 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 34537 + - uid: 34398 components: - type: Transform pos: 66.5,14.5 parent: 2 - - uid: 34538 + - uid: 34399 components: - type: Transform pos: -31.5,96.5 parent: 2 - - uid: 34539 + - uid: 34400 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 34540 + - uid: 34401 components: - type: Transform pos: 75.5,-38.5 parent: 2 - - uid: 34541 + - uid: 34402 components: - type: Transform pos: 43.5,-56.5 parent: 2 - - uid: 34542 + - uid: 34403 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 - - uid: 34543 + - uid: 34404 components: - type: Transform pos: -21.5,-45.5 parent: 2 - - uid: 34544 + - uid: 34405 components: - type: Transform pos: -56.5,-21.5 parent: 2 - - uid: 34545 + - uid: 34406 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-12.5 parent: 2 - - uid: 34546 + - uid: 34407 components: - type: Transform pos: -44.5,-4.5 parent: 2 - - uid: 34547 + - uid: 34408 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 - - uid: 34548 + - uid: 34409 components: - type: Transform pos: -46.5,-49.5 parent: 2 - - uid: 34549 + - uid: 34410 components: - type: Transform pos: 15.5,-16.5 parent: 2 - - uid: 34550 + - uid: 34411 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 34551 + - uid: 34412 components: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 34552 + - uid: 34413 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 - - uid: 34553 + - uid: 34414 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 34554 + - uid: 34415 components: - type: Transform pos: -41.5,-67.5 parent: 2 - - uid: 34555 + - uid: 34416 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-68.5 parent: 2 - - uid: 34556 + - uid: 34417 components: - type: Transform pos: 8.5,84.5 parent: 2 - - uid: 34557 + - uid: 34418 components: - type: Transform pos: -41.5,-69.5 parent: 2 - - uid: 34558 + - uid: 34419 components: - type: Transform pos: 3.5,-77.5 parent: 2 - - uid: 34559 + - uid: 34420 components: - type: Transform pos: -59.5,43.5 parent: 2 - - uid: 34560 + - uid: 34421 components: - type: Transform pos: -44.5,52.5 parent: 2 - - uid: 34561 + - uid: 34422 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 34562 + - uid: 34423 components: - type: Transform pos: 12.5,89.5 parent: 2 - - uid: 34563 + - uid: 34424 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 34564 + - uid: 34425 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-9.5 parent: 2 - - uid: 34565 + - uid: 34426 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,10.5 parent: 2 - - uid: 34566 + - uid: 34427 components: - type: Transform pos: 11.5,91.5 parent: 2 - - uid: 34567 + - uid: 34428 components: - type: Transform pos: -42.5,46.5 parent: 2 - - uid: 34568 + - uid: 34429 components: - type: Transform pos: -47.5,-20.5 parent: 2 - - uid: 34569 + - uid: 34430 components: - type: Transform pos: -35.5,-33.5 parent: 2 - - uid: 34570 + - uid: 34431 components: - type: Transform pos: -42.5,48.5 parent: 2 - - uid: 34571 + - uid: 34432 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 34572 + - uid: 34433 components: - type: Transform pos: 79.5,11.5 parent: 2 - - uid: 34573 + - uid: 34434 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 34574 + - uid: 34435 components: - type: Transform pos: 66.5,-8.5 parent: 2 - - uid: 34575 + - uid: 34436 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 34576 + - uid: 34437 components: - type: Transform pos: 10.5,-66.5 parent: 2 - - uid: 34577 + - uid: 34438 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 34578 + - uid: 34439 components: - type: Transform pos: 76.5,-41.5 parent: 2 - - uid: 34579 + - uid: 34440 components: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 34580 + - uid: 34441 components: - type: Transform pos: 44.5,17.5 parent: 2 - - uid: 34581 + - uid: 34442 components: - type: Transform pos: 59.5,-5.5 parent: 2 - - uid: 34582 + - uid: 34443 components: - type: Transform pos: 80.5,-22.5 parent: 2 - - uid: 34583 + - uid: 34444 components: - type: Transform pos: 54.5,-55.5 parent: 2 - - uid: 34584 + - uid: 34445 components: - type: Transform pos: -14.5,81.5 parent: 2 - - uid: 34585 + - uid: 34446 components: - type: Transform pos: 25.5,-21.5 parent: 2 - - uid: 34586 + - uid: 34447 components: - type: Transform pos: 69.5,-14.5 parent: 2 - - uid: 34587 + - uid: 34448 components: - type: Transform pos: -66.5,4.5 parent: 2 - - uid: 34588 + - uid: 34449 components: - type: Transform pos: 21.5,17.5 parent: 2 - - uid: 34589 + - uid: 34450 components: - type: Transform pos: 32.5,56.5 parent: 2 - - uid: 34590 + - uid: 34451 components: - type: Transform pos: 31.5,62.5 parent: 2 - - uid: 34591 + - uid: 34452 components: - type: Transform pos: 32.5,60.5 parent: 2 - - uid: 34592 + - uid: 34453 components: - type: Transform pos: 30.5,33.5 parent: 2 - - uid: 34593 + - uid: 34454 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 34594 + - uid: 34455 components: - type: Transform pos: 23.5,-56.5 parent: 2 - - uid: 34595 + - uid: 34456 components: - type: Transform pos: -46.5,10.5 parent: 2 - - uid: 34596 + - uid: 34457 components: - type: Transform pos: 27.5,55.5 parent: 2 - - uid: 34597 + - uid: 34458 components: - type: Transform pos: 26.5,55.5 parent: 2 - - uid: 34598 + - uid: 34459 components: - type: Transform pos: -54.5,-47.5 parent: 2 - - uid: 34599 + - uid: 34460 components: - type: Transform pos: 30.5,62.5 parent: 2 - - uid: 34600 + - uid: 34461 components: - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 34601 + - uid: 34462 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 34602 + - uid: 34463 components: - type: Transform pos: -81.5,-1.5 parent: 2 - - uid: 34603 + - uid: 34464 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 34604 + - uid: 34465 components: - type: Transform pos: 3.5,-81.5 parent: 2 - - uid: 34605 + - uid: 34466 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-65.5 parent: 2 - - uid: 34606 + - uid: 34467 components: - type: Transform pos: -59.5,8.5 parent: 2 - - uid: 34607 + - uid: 34468 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-49.5 parent: 2 - - uid: 34608 + - uid: 34469 components: - type: Transform pos: -14.5,80.5 parent: 2 - - uid: 34609 + - uid: 34470 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 34610 + - uid: 34471 components: - type: Transform pos: -9.5,104.5 parent: 2 - - uid: 34611 + - uid: 34472 components: - type: Transform pos: 3.5,-76.5 parent: 2 - - uid: 34612 + - uid: 34473 components: - type: Transform pos: 30.5,38.5 parent: 2 - - uid: 34613 + - uid: 34474 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 34614 + - uid: 34475 components: - type: Transform pos: 3.5,-62.5 parent: 2 - - uid: 34615 + - uid: 34476 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 34616 + - uid: 34477 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 34617 + - uid: 34478 components: - type: Transform pos: 11.5,-64.5 parent: 2 - - uid: 34618 + - uid: 34479 components: - type: Transform pos: -9.5,-82.5 parent: 2 - - uid: 34619 + - uid: 34480 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 34620 + - uid: 34481 components: - type: Transform pos: 84.5,8.5 parent: 2 - - uid: 34621 + - uid: 34482 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 34622 + - uid: 34483 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 34623 + - uid: 34484 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 34624 + - uid: 34485 components: - type: Transform pos: 12.5,-64.5 parent: 2 - - uid: 34625 + - uid: 34486 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,93.5 parent: 2 - - uid: 34626 + - uid: 34487 components: - type: Transform pos: 83.5,-41.5 parent: 2 - - uid: 34627 + - uid: 34488 components: - type: Transform pos: 51.5,-9.5 parent: 2 - - uid: 34628 + - uid: 34489 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-50.5 parent: 2 - - uid: 34629 + - uid: 34490 components: - type: Transform pos: 8.5,-83.5 parent: 2 - - uid: 34630 + - uid: 34491 components: - type: Transform pos: 11.5,-78.5 parent: 2 - - uid: 34631 + - uid: 34492 components: - type: Transform pos: -42.5,43.5 parent: 2 - - uid: 34632 + - uid: 34493 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-41.5 parent: 2 - - uid: 34633 + - uid: 34494 components: - type: Transform pos: -42.5,47.5 parent: 2 - - uid: 34634 + - uid: 34495 components: - type: Transform pos: -27.5,96.5 parent: 2 - - uid: 34635 + - uid: 34496 components: - type: Transform pos: 75.5,-12.5 parent: 2 - - uid: 34636 + - uid: 34497 components: - type: Transform pos: 58.5,-5.5 parent: 2 - - uid: 34637 + - uid: 34498 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-37.5 parent: 2 - - uid: 34638 + - uid: 34499 components: - type: Transform pos: 31.5,55.5 parent: 2 - - uid: 34639 + - uid: 34500 components: - type: Transform pos: 8.5,-75.5 parent: 2 - - uid: 34640 + - uid: 34501 components: - type: Transform pos: 9.5,-75.5 parent: 2 - - uid: 34641 + - uid: 34502 components: - type: Transform pos: 26.5,-21.5 parent: 2 - - uid: 34642 + - uid: 34503 components: - type: Transform pos: -27.5,93.5 parent: 2 - - uid: 34643 + - uid: 34504 components: - type: Transform pos: 10.5,-75.5 parent: 2 - - uid: 34644 + - uid: 34505 components: - type: Transform pos: -42.5,45.5 parent: 2 - - uid: 34645 + - uid: 34506 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 34646 + - uid: 34507 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 34647 + - uid: 34508 components: - type: Transform pos: -40.5,-4.5 parent: 2 - - uid: 34648 + - uid: 34509 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-80.5 parent: 2 - - uid: 34649 + - uid: 34510 components: - type: Transform pos: 55.5,-5.5 parent: 2 - - uid: 34650 + - uid: 34511 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,10.5 parent: 2 - - uid: 34651 + - uid: 34512 components: - type: Transform pos: 38.5,3.5 parent: 2 - - uid: 34652 + - uid: 34513 components: - type: Transform pos: 78.5,-24.5 parent: 2 - - uid: 34653 + - uid: 34514 components: - type: Transform pos: 8.5,91.5 parent: 2 - - uid: 34654 + - uid: 34515 components: - type: Transform pos: -39.5,20.5 parent: 2 - - uid: 34655 + - uid: 34516 components: - type: Transform pos: -82.5,-10.5 parent: 2 - - uid: 34656 + - uid: 34517 components: - type: Transform pos: 76.5,-40.5 parent: 2 - - uid: 34657 + - uid: 34518 components: - type: Transform pos: -27.5,87.5 parent: 2 - - uid: 34658 + - uid: 34519 components: - type: Transform pos: -12.5,-82.5 parent: 2 - - uid: 34659 + - uid: 34520 components: - type: Transform pos: -26.5,80.5 parent: 2 - - uid: 34660 + - uid: 34521 components: - type: Transform pos: -101.5,-21.5 parent: 2 - - uid: 34661 + - uid: 34522 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,5.5 parent: 2 - - uid: 34662 + - uid: 34523 components: - type: Transform pos: 43.5,-73.5 parent: 2 - - uid: 34663 + - uid: 34524 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,7.5 parent: 2 - - uid: 34664 + - uid: 34525 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 34665 + - uid: 34526 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-38.5 parent: 2 - - uid: 34666 + - uid: 34527 components: - type: Transform pos: -48.5,-4.5 parent: 2 - - uid: 34667 + - uid: 34528 components: - type: Transform pos: -59.5,55.5 parent: 2 - - uid: 34668 + - uid: 34529 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 34669 + - uid: 34530 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - uid: 34670 + - uid: 34531 components: - type: Transform pos: -45.5,-18.5 parent: 2 - - uid: 34671 + - uid: 34532 components: - type: Transform pos: 39.5,16.5 parent: 2 - - uid: 34672 + - uid: 34533 components: - type: Transform pos: 14.5,73.5 parent: 2 - - uid: 34673 + - uid: 34534 components: - type: Transform pos: -31.5,18.5 parent: 2 - - uid: 34674 + - uid: 34535 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 34675 + - uid: 34536 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-13.5 parent: 2 - - uid: 34676 + - uid: 34537 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-19.5 parent: 2 - - uid: 34677 + - uid: 34538 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,15.5 parent: 2 - - uid: 34678 + - uid: 34539 components: - type: Transform pos: -35.5,-34.5 parent: 2 - - uid: 34679 + - uid: 34540 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 34680 + - uid: 34541 components: - type: Transform pos: -50.5,-17.5 parent: 2 - - uid: 34681 + - uid: 34542 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 34682 + - uid: 34543 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 34683 + - uid: 34544 components: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 34684 + - uid: 34545 components: - type: Transform pos: -44.5,-17.5 parent: 2 - - uid: 34685 + - uid: 34546 components: - type: Transform pos: -50.5,19.5 parent: 2 - - uid: 34686 + - uid: 34547 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 34687 + - uid: 34548 components: - type: Transform pos: -43.5,-23.5 parent: 2 - - uid: 34688 + - uid: 34549 components: - type: Transform pos: -72.5,-28.5 parent: 2 - - uid: 34689 + - uid: 34550 components: - type: Transform pos: -65.5,-29.5 parent: 2 - - uid: 34690 + - uid: 34551 components: - type: Transform pos: 29.5,33.5 parent: 2 - - uid: 34691 + - uid: 34552 components: - type: Transform pos: -78.5,15.5 parent: 2 - - uid: 34692 + - uid: 34553 components: - type: Transform pos: -44.5,-11.5 parent: 2 - - uid: 34693 + - uid: 34554 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-19.5 parent: 2 - - uid: 34694 + - uid: 34555 components: - type: Transform pos: -58.5,-4.5 parent: 2 - - uid: 34695 + - uid: 34556 components: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 34696 + - uid: 34557 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 34697 + - uid: 34558 components: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 34698 + - uid: 34559 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 34699 + - uid: 34560 components: - type: Transform pos: -35.5,-54.5 parent: 2 - - uid: 34700 + - uid: 34561 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 34701 + - uid: 34562 components: - type: Transform pos: -31.5,-24.5 parent: 2 - - uid: 34702 + - uid: 34563 components: - type: Transform pos: -36.5,-37.5 parent: 2 - - uid: 34703 + - uid: 34564 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-41.5 parent: 2 - - uid: 34704 + - uid: 34565 components: - type: Transform pos: -39.5,40.5 parent: 2 - - uid: 34705 + - uid: 34566 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 34706 + - uid: 34567 components: - type: Transform pos: 75.5,-1.5 parent: 2 - - uid: 34707 + - uid: 34568 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 34708 + - uid: 34569 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 34709 + - uid: 34570 components: - type: Transform pos: 69.5,-12.5 parent: 2 - - uid: 34710 + - uid: 34571 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 34711 + - uid: 34572 components: - type: Transform pos: -55.5,19.5 parent: 2 - - uid: 34712 + - uid: 34573 components: - type: Transform pos: -55.5,20.5 parent: 2 - - uid: 34713 + - uid: 34574 components: - type: Transform pos: -56.5,53.5 parent: 2 - - uid: 34714 + - uid: 34575 components: - type: Transform pos: 38.5,14.5 parent: 2 - - uid: 34715 + - uid: 34576 components: - type: Transform pos: 71.5,-50.5 parent: 2 - - uid: 34716 + - uid: 34577 components: - type: Transform pos: 39.5,-1.5 parent: 2 - - uid: 34717 + - uid: 34578 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 34718 + - uid: 34579 components: - type: Transform pos: 19.5,-52.5 parent: 2 - - uid: 34719 + - uid: 34580 components: - type: Transform pos: -60.5,44.5 parent: 2 - - uid: 34720 + - uid: 34581 components: - type: Transform pos: -53.5,56.5 parent: 2 - - uid: 34721 + - uid: 34582 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-13.5 parent: 2 - - uid: 34722 + - uid: 34583 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - uid: 34723 + - uid: 34584 components: - type: Transform pos: -45.5,-31.5 parent: 2 - - uid: 34724 + - uid: 34585 components: - type: Transform pos: -46.5,-31.5 parent: 2 - - uid: 34725 + - uid: 34586 components: - type: Transform pos: -47.5,-31.5 parent: 2 - - uid: 34726 + - uid: 34587 components: - type: Transform pos: -48.5,-31.5 parent: 2 - - uid: 34727 + - uid: 34588 components: - type: Transform pos: -30.5,-43.5 parent: 2 - - uid: 34728 + - uid: 34589 components: - type: Transform pos: -43.5,5.5 parent: 2 - - uid: 34729 + - uid: 34590 components: - type: Transform pos: -15.5,-47.5 parent: 2 - - uid: 34730 + - uid: 34591 components: - type: Transform pos: 30.5,39.5 parent: 2 - - uid: 34731 + - uid: 34592 components: - type: Transform pos: 53.5,-31.5 parent: 2 - - uid: 34732 + - uid: 34593 components: - type: Transform pos: -43.5,-76.5 parent: 2 - - uid: 34733 + - uid: 34594 components: - type: Transform pos: -24.5,-82.5 parent: 2 - - uid: 34734 + - uid: 34595 components: - type: Transform pos: -27.5,-77.5 parent: 2 - - uid: 34735 + - uid: 34596 components: - type: Transform pos: 77.5,26.5 parent: 2 - - uid: 34736 + - uid: 34597 components: - type: Transform pos: -74.5,1.5 parent: 2 - - uid: 34737 + - uid: 34598 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 - - uid: 34738 + - uid: 34599 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,4.5 parent: 2 - - uid: 34739 + - uid: 34600 components: - type: Transform pos: -6.5,70.5 parent: 2 - - uid: 34740 + - uid: 34601 components: - type: Transform pos: -35.5,-23.5 parent: 2 - - uid: 34741 + - uid: 34602 components: - type: Transform pos: 88.5,11.5 parent: 2 - - uid: 34742 + - uid: 34603 components: - type: Transform pos: -72.5,-4.5 parent: 2 - - uid: 34743 + - uid: 34604 components: - type: Transform pos: 24.5,72.5 parent: 2 - - uid: 34744 + - uid: 34605 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 34745 + - uid: 34606 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 34746 + - uid: 34607 components: - type: Transform pos: -36.5,40.5 parent: 2 - - uid: 34747 + - uid: 34608 components: - type: Transform pos: 33.5,-24.5 parent: 2 - - uid: 34748 + - uid: 34609 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 34749 + - uid: 34610 components: - type: Transform pos: -36.5,-34.5 parent: 2 - - uid: 34750 + - uid: 34611 components: - type: Transform pos: 22.5,73.5 parent: 2 - - uid: 34751 + - uid: 34612 components: - type: Transform pos: 20.5,73.5 parent: 2 - - uid: 34752 + - uid: 34613 components: - type: Transform pos: 15.5,2.5 parent: 2 - - uid: 34754 + - uid: 34614 components: - type: Transform pos: -16.5,-22.5 parent: 2 - - uid: 34755 + - uid: 34615 components: - type: Transform pos: -68.5,62.5 parent: 2 - - uid: 34756 + - uid: 34616 components: - type: Transform pos: -68.5,63.5 parent: 2 - - uid: 34757 + - uid: 34617 components: - type: Transform pos: -67.5,63.5 parent: 2 - - uid: 34758 + - uid: 34618 components: - type: Transform pos: -68.5,61.5 parent: 2 - - uid: 34759 + - uid: 34619 components: - type: Transform pos: -63.5,61.5 parent: 2 - - uid: 34760 + - uid: 34620 components: - type: Transform pos: -68.5,3.5 parent: 2 - - uid: 34761 + - uid: 34621 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 34762 + - uid: 34622 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,52.5 parent: 2 - - uid: 34763 + - uid: 34623 components: - type: Transform pos: -65.5,19.5 parent: 2 - - uid: 34764 + - uid: 34624 components: - type: Transform pos: -56.5,62.5 parent: 2 - - uid: 34765 + - uid: 34625 components: - type: Transform pos: -74.5,-10.5 parent: 2 - - uid: 34766 + - uid: 34626 components: - type: Transform pos: -43.5,-32.5 parent: 2 - - uid: 34767 + - uid: 34627 components: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 34768 + - uid: 34628 components: - type: Transform pos: -101.5,6.5 parent: 2 - - uid: 34769 + - uid: 34629 components: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 34770 + - uid: 34630 components: - type: Transform pos: -81.5,-3.5 parent: 2 - - uid: 34771 + - uid: 34631 components: - type: Transform pos: 38.5,2.5 parent: 2 - - uid: 34772 + - uid: 34632 components: - type: Transform pos: 34.5,23.5 parent: 2 - - uid: 34773 + - uid: 34633 components: - type: Transform pos: 38.5,0.5 parent: 2 - - uid: 34774 + - uid: 34634 components: - type: Transform pos: 27.5,62.5 parent: 2 - - uid: 34775 + - uid: 34635 components: - type: Transform pos: -41.5,-20.5 parent: 2 - - uid: 34776 + - uid: 34636 components: - type: Transform pos: -82.5,-4.5 parent: 2 - - uid: 34777 + - uid: 34637 components: - type: Transform pos: -0.5,33.5 parent: 2 - - uid: 34778 + - uid: 34638 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 34779 + - uid: 34639 components: - type: Transform pos: 12.5,86.5 parent: 2 - - uid: 34780 + - uid: 34640 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-2.5 parent: 2 - - uid: 34781 + - uid: 34641 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 34782 + - uid: 34642 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 34783 + - uid: 34643 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 34784 + - uid: 34644 components: - type: Transform pos: 57.5,-5.5 parent: 2 - - uid: 34785 + - uid: 34645 components: - type: Transform pos: -41.5,-60.5 parent: 2 - - uid: 34786 + - uid: 34646 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 34787 + - uid: 34647 components: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 34788 + - uid: 34648 components: - type: Transform pos: -41.5,-61.5 parent: 2 - - uid: 34789 + - uid: 34649 components: - type: Transform pos: -41.5,64.5 parent: 2 - - uid: 34790 + - uid: 34650 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 34791 + - uid: 34651 components: - type: Transform pos: -42.5,50.5 parent: 2 - - uid: 34792 + - uid: 34652 components: - type: Transform pos: -50.5,24.5 parent: 2 - - uid: 34793 + - uid: 34653 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 2 - - uid: 34794 + - uid: 34654 components: - type: Transform pos: -44.5,22.5 parent: 2 - - uid: 34795 + - uid: 34655 components: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 34796 + - uid: 34656 components: - type: Transform pos: -43.5,24.5 parent: 2 - - uid: 34797 + - uid: 34657 components: - type: Transform pos: -44.5,24.5 parent: 2 - - uid: 34798 + - uid: 34658 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 34799 + - uid: 34659 components: - type: Transform pos: -45.5,25.5 parent: 2 - - uid: 34800 + - uid: 34660 components: - type: Transform pos: 33.5,-62.5 parent: 2 - - uid: 34801 + - uid: 34661 components: - type: Transform pos: 30.5,-59.5 parent: 2 - - uid: 34802 + - uid: 34662 components: - type: Transform pos: -47.5,-1.5 parent: 2 - - uid: 34803 + - uid: 34663 components: - type: Transform pos: -67.5,19.5 parent: 2 - - uid: 34804 + - uid: 34664 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 34805 + - uid: 34665 components: - type: Transform pos: -53.5,-27.5 parent: 2 - - uid: 34806 + - uid: 34666 components: - type: Transform pos: -43.5,-8.5 parent: 2 - - uid: 34807 + - uid: 34667 components: - type: Transform pos: -61.5,-4.5 parent: 2 - - uid: 34808 + - uid: 34668 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-0.5 parent: 2 - - uid: 34809 + - uid: 34669 components: - type: Transform pos: 45.5,14.5 parent: 2 - - uid: 34810 + - uid: 34670 components: - type: Transform pos: 44.5,14.5 parent: 2 - - uid: 34811 + - uid: 34671 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 34812 + - uid: 34672 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,14.5 parent: 2 - - uid: 34813 + - uid: 34673 components: - type: Transform pos: 44.5,15.5 parent: 2 - - uid: 34814 + - uid: 34674 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-47.5 parent: 2 - - uid: 34815 + - uid: 34675 components: - type: Transform pos: -56.5,-47.5 parent: 2 - - uid: 34816 + - uid: 34676 components: - type: Transform pos: -49.5,5.5 parent: 2 - - uid: 34817 + - uid: 34677 components: - type: Transform pos: -63.5,12.5 parent: 2 - - uid: 34818 + - uid: 34678 components: - type: Transform pos: 54.5,-56.5 parent: 2 - - uid: 34819 + - uid: 34679 components: - type: Transform pos: 23.5,64.5 parent: 2 - - uid: 34820 + - uid: 34680 components: - type: Transform pos: -55.5,-49.5 parent: 2 - - uid: 34821 + - uid: 34681 components: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 34822 + - uid: 34682 components: - type: Transform pos: -40.5,38.5 parent: 2 - - uid: 34823 + - uid: 34683 components: - type: Transform pos: -27.5,27.5 parent: 2 - - uid: 34824 + - uid: 34684 components: - type: Transform pos: -81.5,-11.5 parent: 2 - - uid: 34825 + - uid: 34685 components: - type: Transform pos: -62.5,-18.5 parent: 2 - - uid: 34826 + - uid: 34686 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 34827 + - uid: 34687 components: - type: Transform pos: 11.5,-75.5 parent: 2 - - uid: 34828 + - uid: 34688 components: - type: Transform pos: -25.5,27.5 parent: 2 - - uid: 34830 + - uid: 34689 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-25.5 parent: 2 - - uid: 34834 + - uid: 34690 components: - type: Transform pos: -68.5,-21.5 parent: 2 - - uid: 34835 + - uid: 34691 components: - type: Transform pos: -67.5,-21.5 parent: 2 - - uid: 34836 + - uid: 34692 components: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 34837 + - uid: 34693 components: - type: Transform pos: -65.5,-21.5 parent: 2 - - uid: 34838 + - uid: 34694 components: - type: Transform pos: -64.5,-21.5 parent: 2 - - uid: 34840 + - uid: 34695 components: - type: Transform pos: -45.5,43.5 parent: 2 - - uid: 34841 + - uid: 34696 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 34842 + - uid: 34697 components: - type: Transform pos: 28.5,-62.5 parent: 2 - - uid: 34843 + - uid: 34698 components: - type: Transform pos: 81.5,8.5 parent: 2 - - uid: 34844 + - uid: 34699 components: - type: Transform pos: -45.5,16.5 parent: 2 - - uid: 34845 + - uid: 34700 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 34846 + - uid: 34701 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 34847 + - uid: 34702 components: - type: Transform pos: 37.5,-74.5 parent: 2 - - uid: 34848 + - uid: 34703 components: - type: Transform pos: 37.5,-73.5 parent: 2 - - uid: 34849 + - uid: 34704 components: - type: Transform pos: 37.5,-72.5 parent: 2 - - uid: 34850 + - uid: 34705 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 34851 + - uid: 34706 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 34852 + - uid: 34707 components: - type: Transform pos: -72.5,-18.5 parent: 2 - - uid: 34854 + - uid: 34708 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,56.5 parent: 2 - - uid: 34855 + - uid: 34709 components: - type: Transform pos: -37.5,18.5 parent: 2 - - uid: 34856 + - uid: 34710 components: - type: Transform pos: -24.5,-77.5 parent: 2 - - uid: 34857 + - uid: 34711 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-20.5 parent: 2 - - uid: 34858 + - uid: 34712 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 34859 + - uid: 34713 components: - type: Transform pos: -41.5,-70.5 parent: 2 - - uid: 34860 + - uid: 34714 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 34861 + - uid: 34715 components: - type: Transform pos: 32.5,55.5 parent: 2 - - uid: 34862 + - uid: 34716 components: - type: Transform pos: 32.5,62.5 parent: 2 - - uid: 34863 + - uid: 34717 components: - type: Transform pos: 6.5,-56.5 parent: 2 - - uid: 34864 + - uid: 34718 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 34865 + - uid: 34719 components: - type: Transform pos: 4.5,-56.5 parent: 2 - - uid: 34866 + - uid: 34720 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 34867 + - uid: 34721 components: - type: Transform pos: -55.5,4.5 parent: 2 - - uid: 34868 + - uid: 34722 components: - type: Transform pos: -43.5,6.5 parent: 2 - - uid: 34869 + - uid: 34723 components: - type: Transform pos: 76.5,11.5 parent: 2 - - uid: 34870 + - uid: 34724 components: - type: Transform pos: 20.5,20.5 parent: 2 - - uid: 34871 + - uid: 34725 components: - type: Transform pos: 9.5,91.5 parent: 2 - - uid: 34872 + - uid: 34726 components: - type: Transform pos: -39.5,21.5 parent: 2 - - uid: 34873 + - uid: 34727 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-20.5 parent: 2 - - uid: 34874 + - uid: 34728 components: - type: Transform pos: -44.5,-16.5 parent: 2 - - uid: 34875 + - uid: 34729 components: - type: Transform pos: -79.5,4.5 parent: 2 - - uid: 34876 + - uid: 34730 components: - type: Transform pos: -51.5,38.5 parent: 2 - - uid: 34877 + - uid: 34731 components: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 34878 + - uid: 34732 components: - type: Transform pos: -24.5,-27.5 parent: 2 - - uid: 34879 + - uid: 34733 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 34880 + - uid: 34734 components: - type: Transform pos: 33.5,-63.5 parent: 2 - - uid: 34881 + - uid: 34735 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-20.5 parent: 2 - - uid: 34882 + - uid: 34736 components: - type: Transform pos: 69.5,-25.5 parent: 2 - - uid: 34883 + - uid: 34737 components: - type: Transform pos: -43.5,-7.5 parent: 2 - - uid: 34884 + - uid: 34738 components: - type: Transform pos: 11.5,-62.5 parent: 2 - - uid: 34885 + - uid: 34739 components: - type: Transform pos: 3.5,-85.5 parent: 2 - - uid: 34886 + - uid: 34740 components: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 34887 + - uid: 34741 components: - type: Transform pos: 3.5,-83.5 parent: 2 - - uid: 34888 + - uid: 34742 components: - type: Transform pos: 3.5,-86.5 parent: 2 - - uid: 34889 + - uid: 34743 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 34890 + - uid: 34744 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 34891 + - uid: 34745 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 34892 + - uid: 34746 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 34893 + - uid: 34747 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 34894 + - uid: 34748 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-62.5 parent: 2 - - uid: 34895 + - uid: 34749 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-62.5 parent: 2 - - uid: 34896 + - uid: 34750 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-62.5 parent: 2 - - uid: 34897 + - uid: 34751 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,70.5 parent: 2 - - uid: 34898 + - uid: 34752 components: - type: Transform pos: 80.5,8.5 parent: 2 - - uid: 34899 + - uid: 34753 components: - type: Transform pos: 76.5,7.5 parent: 2 - - uid: 34900 + - uid: 34754 components: - type: Transform pos: 83.5,8.5 parent: 2 - - uid: 34901 + - uid: 34755 components: - type: Transform pos: 74.5,20.5 parent: 2 - - uid: 34902 + - uid: 34756 components: - type: Transform pos: 77.5,24.5 parent: 2 - - uid: 34903 + - uid: 34757 components: - type: Transform pos: 9.5,-56.5 parent: 2 - - uid: 34904 + - uid: 34758 components: - type: Transform pos: 11.5,-80.5 parent: 2 - - uid: 34905 + - uid: 34759 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 34906 + - uid: 34760 components: - type: Transform pos: -19.5,-31.5 parent: 2 - - uid: 34907 + - uid: 34761 components: - type: Transform pos: -120.5,24.5 parent: 2 - - uid: 34908 + - uid: 34762 components: - type: Transform pos: -26.5,-48.5 parent: 2 - - uid: 34909 + - uid: 34763 components: - type: Transform pos: -25.5,-48.5 parent: 2 - - uid: 34910 + - uid: 34764 components: - type: Transform pos: -19.5,-28.5 parent: 2 - - uid: 34911 + - uid: 34765 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-20.5 parent: 2 - - uid: 34912 + - uid: 34766 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-65.5 parent: 2 - - uid: 34913 + - uid: 34767 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-64.5 parent: 2 - - uid: 34914 + - uid: 34768 components: - type: Transform pos: -26.5,-55.5 parent: 2 - - uid: 34915 + - uid: 34769 components: - type: Transform pos: -27.5,-55.5 parent: 2 - - uid: 34916 + - uid: 34770 components: - type: Transform pos: -28.5,-55.5 parent: 2 - - uid: 34917 + - uid: 34771 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 34918 + - uid: 34772 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-20.5 parent: 2 - - uid: 34919 + - uid: 34773 components: - type: Transform pos: 75.5,10.5 parent: 2 - - uid: 34920 + - uid: 34774 components: - type: Transform pos: -115.5,31.5 parent: 2 - - uid: 34921 + - uid: 34775 components: - type: Transform pos: 79.5,10.5 parent: 2 - - uid: 34922 + - uid: 34776 components: - type: Transform pos: -17.5,-31.5 parent: 2 - - uid: 34923 + - uid: 34777 components: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 34924 + - uid: 34778 components: - type: Transform pos: -17.5,-28.5 parent: 2 - - uid: 34925 + - uid: 34779 components: - type: Transform pos: -18.5,-31.5 parent: 2 - - uid: 34926 + - uid: 34780 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-20.5 parent: 2 - - uid: 34927 + - uid: 34781 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-38.5 parent: 2 - - uid: 34928 + - uid: 34782 components: - type: Transform pos: 68.5,-5.5 parent: 2 - - uid: 34929 + - uid: 34783 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-20.5 parent: 2 - - uid: 34930 + - uid: 34784 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-20.5 parent: 2 - - uid: 34931 + - uid: 34785 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-20.5 parent: 2 - - uid: 34932 + - uid: 34786 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-21.5 parent: 2 - - uid: 34933 + - uid: 34787 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-21.5 parent: 2 - - uid: 34934 + - uid: 34788 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-19.5 parent: 2 - - uid: 34935 + - uid: 34789 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-19.5 parent: 2 - - uid: 34936 + - uid: 34790 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-21.5 parent: 2 - - uid: 34937 + - uid: 34791 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-21.5 parent: 2 - - uid: 34938 + - uid: 34792 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-1.5 parent: 2 - - uid: 34939 + - uid: 34793 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-9.5 parent: 2 - - uid: 34940 + - uid: 34794 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-9.5 parent: 2 - - uid: 34941 + - uid: 34795 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-8.5 parent: 2 - - uid: 34942 + - uid: 34796 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-13.5 parent: 2 - - uid: 34943 + - uid: 34797 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-14.5 parent: 2 - - uid: 34944 + - uid: 34798 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-10.5 parent: 2 - - uid: 34945 + - uid: 34799 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-16.5 parent: 2 - - uid: 34946 + - uid: 34800 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 34947 + - uid: 34801 components: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 34948 + - uid: 34802 components: - type: Transform pos: -83.5,-10.5 parent: 2 - - uid: 34949 + - uid: 34803 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-42.5 parent: 2 - - uid: 34950 + - uid: 34804 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-45.5 parent: 2 - - uid: 34951 + - uid: 34805 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-42.5 parent: 2 - - uid: 34952 + - uid: 34806 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-48.5 parent: 2 - - uid: 34953 + - uid: 34807 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 - - uid: 34954 + - uid: 34808 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-39.5 parent: 2 - - uid: 34955 + - uid: 34809 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-39.5 parent: 2 - - uid: 34956 + - uid: 34810 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 - - uid: 34957 + - uid: 34811 components: - type: Transform pos: -113.5,34.5 parent: 2 - - uid: 34958 + - uid: 34812 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-41.5 parent: 2 - - uid: 34959 + - uid: 34813 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 34960 + - uid: 34814 components: - type: Transform pos: -124.5,21.5 parent: 2 - - uid: 34961 + - uid: 34815 components: - type: Transform pos: -110.5,22.5 parent: 2 - - uid: 34962 + - uid: 34816 components: - type: Transform pos: -126.5,43.5 parent: 2 - - uid: 34963 + - uid: 34817 components: - type: Transform pos: -111.5,22.5 parent: 2 - - uid: 34964 + - uid: 34818 components: - type: Transform pos: -110.5,24.5 parent: 2 - - uid: 34965 + - uid: 34819 components: - type: Transform pos: -111.5,24.5 parent: 2 - - uid: 34966 + - uid: 34820 components: - type: Transform pos: -124.5,20.5 parent: 2 - - uid: 34967 + - uid: 34821 components: - type: Transform pos: -124.5,22.5 parent: 2 - - uid: 34968 + - uid: 34822 components: - type: Transform pos: -124.5,23.5 parent: 2 - - uid: 34969 + - uid: 34823 components: - type: Transform pos: -124.5,24.5 parent: 2 - - uid: 34970 + - uid: 34824 components: - type: Transform pos: -124.5,25.5 parent: 2 - - uid: 34971 + - uid: 34825 components: - type: Transform pos: -124.5,26.5 parent: 2 - - uid: 34972 + - uid: 34826 components: - type: Transform pos: -123.5,27.5 parent: 2 - - uid: 34973 + - uid: 34827 components: - type: Transform pos: -120.5,26.5 parent: 2 - - uid: 34974 + - uid: 34828 components: - type: Transform pos: -113.5,27.5 parent: 2 - - uid: 34975 + - uid: 34829 components: - type: Transform pos: -112.5,26.5 parent: 2 - - uid: 34976 + - uid: 34830 components: - type: Transform pos: -112.5,25.5 parent: 2 - - uid: 34977 + - uid: 34831 components: - type: Transform pos: -112.5,24.5 parent: 2 - - uid: 34978 + - uid: 34832 components: - type: Transform pos: -112.5,21.5 parent: 2 - - uid: 34979 + - uid: 34833 components: - type: Transform pos: -112.5,22.5 parent: 2 - - uid: 34980 + - uid: 34834 components: - type: Transform pos: -112.5,27.5 parent: 2 - - uid: 34981 + - uid: 34835 components: - type: Transform pos: -109.5,24.5 parent: 2 - - uid: 34982 + - uid: 34836 components: - type: Transform pos: -109.5,22.5 parent: 2 - - uid: 34983 + - uid: 34837 components: - type: Transform pos: -122.5,20.5 parent: 2 - - uid: 34984 + - uid: 34838 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 34985 + - uid: 34839 components: - type: Transform pos: -110.5,34.5 parent: 2 - - uid: 34986 + - uid: 34840 components: - type: Transform pos: -110.5,35.5 parent: 2 - - uid: 34987 + - uid: 34841 components: - type: Transform pos: -110.5,36.5 parent: 2 - - uid: 34988 + - uid: 34842 components: - type: Transform pos: -110.5,37.5 parent: 2 - - uid: 34989 + - uid: 34843 components: - type: Transform pos: -110.5,38.5 parent: 2 - - uid: 34990 + - uid: 34844 components: - type: Transform pos: -110.5,39.5 parent: 2 - - uid: 34991 + - uid: 34845 components: - type: Transform pos: -110.5,40.5 parent: 2 - - uid: 34992 + - uid: 34846 components: - type: Transform pos: -110.5,41.5 parent: 2 - - uid: 34993 + - uid: 34847 components: - type: Transform pos: -110.5,42.5 parent: 2 - - uid: 34994 + - uid: 34848 components: - type: Transform pos: -110.5,43.5 parent: 2 - - uid: 34995 + - uid: 34849 components: - type: Transform pos: -110.5,44.5 parent: 2 - - uid: 34996 + - uid: 34850 components: - type: Transform pos: -112.5,45.5 parent: 2 - - uid: 34997 + - uid: 34851 components: - type: Transform pos: -113.5,45.5 parent: 2 - - uid: 34998 + - uid: 34852 components: - type: Transform pos: -113.5,46.5 parent: 2 - - uid: 34999 + - uid: 34853 components: - type: Transform pos: -113.5,47.5 parent: 2 - - uid: 35000 + - uid: 34854 components: - type: Transform pos: -113.5,48.5 parent: 2 - - uid: 35001 + - uid: 34855 components: - type: Transform pos: -112.5,51.5 parent: 2 - - uid: 35002 + - uid: 34856 components: - type: Transform pos: -113.5,49.5 parent: 2 - - uid: 35003 + - uid: 34857 components: - type: Transform pos: -114.5,51.5 parent: 2 - - uid: 35004 + - uid: 34858 components: - type: Transform pos: -113.5,52.5 parent: 2 - - uid: 35005 + - uid: 34859 components: - type: Transform pos: -113.5,51.5 parent: 2 - - uid: 35006 + - uid: 34860 components: - type: Transform pos: -112.5,52.5 parent: 2 - - uid: 35007 + - uid: 34861 components: - type: Transform pos: -123.5,45.5 parent: 2 - - uid: 35008 + - uid: 34862 components: - type: Transform pos: -123.5,46.5 parent: 2 - - uid: 35009 + - uid: 34863 components: - type: Transform pos: -123.5,47.5 parent: 2 - - uid: 35010 + - uid: 34864 components: - type: Transform pos: -123.5,48.5 parent: 2 - - uid: 35011 + - uid: 34865 components: - type: Transform pos: -120.5,43.5 parent: 2 - - uid: 35012 + - uid: 34866 components: - type: Transform pos: -112.5,47.5 parent: 2 - - uid: 35013 + - uid: 34867 components: - type: Transform pos: -112.5,46.5 parent: 2 - - uid: 35014 + - uid: 34868 components: - type: Transform pos: -116.5,41.5 parent: 2 - - uid: 35015 + - uid: 34869 components: - type: Transform pos: -116.5,42.5 parent: 2 - - uid: 35016 + - uid: 34870 components: - type: Transform pos: -116.5,43.5 parent: 2 - - uid: 35017 + - uid: 34871 components: - type: Transform pos: -116.5,44.5 parent: 2 - - uid: 35018 + - uid: 34872 components: - type: Transform pos: -115.5,44.5 parent: 2 - - uid: 35019 + - uid: 34873 components: - type: Transform pos: -114.5,44.5 parent: 2 - - uid: 35020 + - uid: 34874 components: - type: Transform pos: -122.5,44.5 parent: 2 - - uid: 35021 + - uid: 34875 components: - type: Transform pos: -121.5,44.5 parent: 2 - - uid: 35022 + - uid: 34876 components: - type: Transform pos: -120.5,44.5 parent: 2 - - uid: 35023 + - uid: 34877 components: - type: Transform pos: -120.5,42.5 parent: 2 - - uid: 35024 + - uid: 34878 components: - type: Transform pos: -120.5,41.5 parent: 2 - - uid: 35025 + - uid: 34879 components: - type: Transform pos: -112.5,48.5 parent: 2 - - uid: 35026 + - uid: 34880 components: - type: Transform pos: -120.5,27.5 parent: 2 - - uid: 35027 + - uid: 34881 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 35028 + - uid: 34882 components: - type: Transform pos: -112.5,44.5 parent: 2 - - uid: 35029 + - uid: 34883 components: - type: Transform pos: -111.5,44.5 parent: 2 - - uid: 35030 + - uid: 34884 components: - type: Transform pos: -124.5,45.5 parent: 2 - - uid: 35031 + - uid: 34885 components: - type: Transform pos: -124.5,44.5 parent: 2 - - uid: 35032 + - uid: 34886 components: - type: Transform pos: -125.5,45.5 parent: 2 - - uid: 35033 + - uid: 34887 components: - type: Transform pos: -125.5,44.5 parent: 2 - - uid: 35034 + - uid: 34888 components: - type: Transform pos: -126.5,45.5 parent: 2 - - uid: 35035 + - uid: 34889 components: - type: Transform pos: -126.5,44.5 parent: 2 - - uid: 35036 + - uid: 34890 components: - type: Transform pos: -126.5,42.5 parent: 2 - - uid: 35037 + - uid: 34891 components: - type: Transform pos: -126.5,41.5 parent: 2 - - uid: 35038 + - uid: 34892 components: - type: Transform pos: -126.5,40.5 parent: 2 - - uid: 35039 + - uid: 34893 components: - type: Transform pos: -126.5,39.5 parent: 2 - - uid: 35040 + - uid: 34894 components: - type: Transform pos: -126.5,38.5 parent: 2 - - uid: 35041 + - uid: 34895 components: - type: Transform pos: -126.5,37.5 parent: 2 - - uid: 35042 + - uid: 34896 components: - type: Transform pos: -126.5,36.5 parent: 2 - - uid: 35043 + - uid: 34897 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,34.5 parent: 2 - - uid: 35044 + - uid: 34898 components: - type: Transform pos: -120.5,38.5 parent: 2 - - uid: 35045 + - uid: 34899 components: - type: Transform pos: -115.5,32.5 parent: 2 - - uid: 35046 + - uid: 34900 components: - type: Transform pos: -120.5,35.5 parent: 2 - - uid: 35047 + - uid: 34901 components: - type: Transform pos: -120.5,34.5 parent: 2 - - uid: 35048 + - uid: 34902 components: - type: Transform pos: -120.5,33.5 parent: 2 - - uid: 35049 + - uid: 34903 components: - type: Transform pos: -120.5,32.5 parent: 2 - - uid: 35050 + - uid: 34904 components: - type: Transform pos: -120.5,31.5 parent: 2 - - uid: 35051 + - uid: 34905 components: - type: Transform pos: -121.5,29.5 parent: 2 - - uid: 35052 + - uid: 34906 components: - type: Transform pos: -120.5,30.5 parent: 2 - - uid: 35053 + - uid: 34907 components: - type: Transform pos: -120.5,29.5 parent: 2 - - uid: 35054 + - uid: 34908 components: - type: Transform pos: -121.5,30.5 parent: 2 - - uid: 35055 + - uid: 34909 components: - type: Transform pos: -115.5,30.5 parent: 2 - - uid: 35056 + - uid: 34910 components: - type: Transform pos: -115.5,29.5 parent: 2 - - uid: 35057 + - uid: 34911 components: - type: Transform pos: -120.5,25.5 parent: 2 - - uid: 35058 + - uid: 34912 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 35059 + - uid: 34913 components: - type: Transform pos: -113.5,50.5 parent: 2 - - uid: 35060 + - uid: 34914 components: - type: Transform pos: -120.5,37.5 parent: 2 - - uid: 35061 + - uid: 34915 components: - type: Transform pos: -120.5,36.5 parent: 2 - - uid: 35062 + - uid: 34916 components: - type: Transform pos: -121.5,32.5 parent: 2 - - uid: 35063 + - uid: 34917 components: - type: Transform pos: -112.5,34.5 parent: 2 - - uid: 35064 + - uid: 34918 components: - type: Transform pos: -124.5,48.5 parent: 2 - - uid: 35065 + - uid: 34919 components: - type: Transform pos: -124.5,47.5 parent: 2 - - uid: 35066 + - uid: 34920 components: - type: Transform pos: -124.5,46.5 parent: 2 - - uid: 35067 + - uid: 34921 components: - type: Transform pos: -124.5,27.5 parent: 2 - - uid: 35068 + - uid: 34922 components: - type: Transform pos: -112.5,20.5 parent: 2 - - uid: 35069 + - uid: 34923 components: - type: Transform pos: -114.5,16.5 parent: 2 - - uid: 35070 + - uid: 34924 components: - type: Transform pos: -113.5,20.5 parent: 2 - - uid: 35071 + - uid: 34925 components: - type: Transform pos: -113.5,19.5 parent: 2 - - uid: 35072 + - uid: 34926 components: - type: Transform pos: -113.5,18.5 parent: 2 - - uid: 35073 + - uid: 34927 components: - type: Transform pos: -113.5,17.5 parent: 2 - - uid: 35074 + - uid: 34928 components: - type: Transform pos: -113.5,16.5 parent: 2 - - uid: 35075 + - uid: 34929 components: - type: Transform pos: -115.5,16.5 parent: 2 - - uid: 35076 + - uid: 34930 components: - type: Transform pos: -116.5,16.5 parent: 2 - - uid: 35077 + - uid: 34931 components: - type: Transform pos: -117.5,16.5 parent: 2 - - uid: 35078 + - uid: 34932 components: - type: Transform pos: -118.5,16.5 parent: 2 - - uid: 35079 + - uid: 34933 components: - type: Transform pos: -119.5,16.5 parent: 2 - - uid: 35080 + - uid: 34934 components: - type: Transform pos: -120.5,16.5 parent: 2 - - uid: 35081 + - uid: 34935 components: - type: Transform pos: -121.5,16.5 parent: 2 - - uid: 35082 + - uid: 34936 components: - type: Transform pos: -122.5,16.5 parent: 2 - - uid: 35083 + - uid: 34937 components: - type: Transform pos: -123.5,16.5 parent: 2 - - uid: 35084 + - uid: 34938 components: - type: Transform pos: -123.5,17.5 parent: 2 - - uid: 35085 + - uid: 34939 components: - type: Transform pos: -123.5,18.5 parent: 2 - - uid: 35086 + - uid: 34940 components: - type: Transform pos: -123.5,19.5 parent: 2 - - uid: 35087 + - uid: 34941 components: - type: Transform pos: -123.5,20.5 parent: 2 - - uid: 35088 + - uid: 34942 components: - type: Transform pos: -118.5,52.5 parent: 2 - - uid: 35089 + - uid: 34943 components: - type: Transform pos: -117.5,51.5 parent: 2 - - uid: 35090 + - uid: 34944 components: - type: Transform pos: -112.5,49.5 parent: 2 - - uid: 35091 + - uid: 34945 components: - type: Transform pos: -114.5,52.5 parent: 2 - - uid: 35092 + - uid: 34946 components: - type: Transform pos: -117.5,52.5 parent: 2 - - uid: 35093 + - uid: 34947 components: - type: Transform pos: -112.5,50.5 parent: 2 - - uid: 35094 + - uid: 34948 components: - type: Transform pos: -115.5,52.5 parent: 2 - - uid: 35095 + - uid: 34949 components: - type: Transform pos: -115.5,51.5 parent: 2 - - uid: 35096 + - uid: 34950 components: - type: Transform pos: -116.5,52.5 parent: 2 - - uid: 35097 + - uid: 34951 components: - type: Transform pos: -116.5,51.5 parent: 2 - - uid: 35098 + - uid: 34952 components: - type: Transform pos: -116.5,38.5 parent: 2 - - uid: 35099 + - uid: 34953 components: - type: Transform pos: -122.5,27.5 parent: 2 - - uid: 35100 + - uid: 34954 components: - type: Transform pos: -121.5,27.5 parent: 2 - - uid: 35101 + - uid: 34955 components: - type: Transform pos: -114.5,27.5 parent: 2 - - uid: 35102 + - uid: 34956 components: - type: Transform pos: -116.5,27.5 parent: 2 - - uid: 35103 + - uid: 34957 components: - type: Transform pos: -115.5,27.5 parent: 2 - - uid: 35104 + - uid: 34958 components: - type: Transform pos: -116.5,25.5 parent: 2 - - uid: 35105 + - uid: 34959 components: - type: Transform pos: -116.5,21.5 parent: 2 - - uid: 35106 + - uid: 34960 components: - type: Transform pos: -116.5,22.5 parent: 2 - - uid: 35107 + - uid: 34961 components: - type: Transform pos: -121.5,31.5 parent: 2 - - uid: 35108 + - uid: 34962 components: - type: Transform pos: -114.5,29.5 parent: 2 - - uid: 35109 + - uid: 34963 components: - type: Transform pos: -114.5,30.5 parent: 2 - - uid: 35110 + - uid: 34964 components: - type: Transform pos: -126.5,35.5 parent: 2 - - uid: 35111 + - uid: 34965 components: - type: Transform pos: -116.5,26.5 parent: 2 - - uid: 35112 + - uid: 34966 components: - type: Transform pos: -116.5,34.5 parent: 2 - - uid: 35113 + - uid: 34967 components: - type: Transform pos: -115.5,28.5 parent: 2 - - uid: 35114 + - uid: 34968 components: - type: Transform pos: -114.5,28.5 parent: 2 - - uid: 35115 + - uid: 34969 components: - type: Transform pos: -120.5,28.5 parent: 2 - - uid: 35116 + - uid: 34970 components: - type: Transform pos: -121.5,34.5 parent: 2 - - uid: 35117 + - uid: 34971 components: - type: Transform pos: -123.5,28.5 parent: 2 - - uid: 35118 + - uid: 34972 components: - type: Transform pos: -122.5,28.5 parent: 2 - - uid: 35119 + - uid: 34973 components: - type: Transform pos: -121.5,28.5 parent: 2 - - uid: 35120 + - uid: 34974 components: - type: Transform pos: -116.5,32.5 parent: 2 - - uid: 35121 + - uid: 34975 components: - type: Transform pos: -116.5,33.5 parent: 2 - - uid: 35122 + - uid: 34976 components: - type: Transform pos: -116.5,35.5 parent: 2 - - uid: 35123 + - uid: 34977 components: - type: Transform pos: -113.5,28.5 parent: 2 - - uid: 35124 + - uid: 34978 components: - type: Transform pos: -116.5,31.5 parent: 2 - - uid: 35125 + - uid: 34979 components: - type: Transform pos: -116.5,36.5 parent: 2 - - uid: 35126 + - uid: 34980 components: - type: Transform pos: -116.5,37.5 parent: 2 - - uid: 35127 + - uid: 34981 components: - type: Transform pos: -122.5,29.5 parent: 2 - - uid: 35128 + - uid: 34982 components: - type: Transform pos: -116.5,24.5 parent: 2 - - uid: 35129 + - uid: 34983 components: - type: Transform pos: -116.5,29.5 parent: 2 - - uid: 35130 + - uid: 34984 components: - type: Transform pos: -116.5,30.5 parent: 2 - - uid: 35131 + - uid: 34985 components: - type: Transform pos: -116.5,28.5 parent: 2 - - uid: 35132 + - uid: 34986 components: - type: Transform pos: -119.5,51.5 parent: 2 - - uid: 35133 + - uid: 34987 components: - type: Transform pos: 80.5,11.5 parent: 2 - - uid: 35134 + - uid: 34988 components: - type: Transform pos: -121.5,52.5 parent: 2 - - uid: 35135 + - uid: 34989 components: - type: Transform pos: -121.5,51.5 parent: 2 - - uid: 35136 + - uid: 34990 components: - type: Transform pos: -122.5,52.5 parent: 2 - - uid: 35137 + - uid: 34991 components: - type: Transform pos: -122.5,51.5 parent: 2 - - uid: 35138 + - uid: 34992 components: - type: Transform pos: -120.5,52.5 parent: 2 - - uid: 35139 + - uid: 34993 components: - type: Transform pos: -123.5,51.5 parent: 2 - - uid: 35140 + - uid: 34994 components: - type: Transform pos: -123.5,52.5 parent: 2 - - uid: 35141 + - uid: 34995 components: - type: Transform pos: -120.5,51.5 parent: 2 - - uid: 35142 + - uid: 34996 components: - type: Transform pos: -119.5,52.5 parent: 2 - - uid: 35143 + - uid: 34997 components: - type: Transform pos: -124.5,50.5 parent: 2 - - uid: 35144 + - uid: 34998 components: - type: Transform pos: -124.5,51.5 parent: 2 - - uid: 35145 + - uid: 34999 components: - type: Transform pos: -124.5,52.5 parent: 2 - - uid: 35146 + - uid: 35000 components: - type: Transform pos: -123.5,49.5 parent: 2 - - uid: 35147 + - uid: 35001 components: - type: Transform pos: -123.5,50.5 parent: 2 - - uid: 35148 + - uid: 35002 components: - type: Transform pos: -124.5,49.5 parent: 2 - - uid: 35159 + - uid: 35003 components: - type: Transform pos: -74.5,-1.5 parent: 2 - - uid: 35160 + - uid: 35004 components: - type: Transform pos: -74.5,-0.5 parent: 2 - - uid: 35161 + - uid: 35005 components: - type: Transform pos: 77.5,20.5 parent: 2 - - uid: 35162 + - uid: 35006 components: - type: Transform pos: 87.5,15.5 parent: 2 - - uid: 35163 + - uid: 35007 components: - type: Transform pos: 88.5,15.5 parent: 2 - - uid: 35164 + - uid: 35008 components: - type: Transform pos: 89.5,15.5 parent: 2 - - uid: 35165 + - uid: 35009 components: - type: Transform pos: 90.5,15.5 parent: 2 - - uid: 35166 + - uid: 35010 components: - type: Transform pos: 94.5,12.5 parent: 2 - - uid: 35167 + - uid: 35011 components: - type: Transform pos: 94.5,14.5 parent: 2 - - uid: 35168 + - uid: 35012 components: - type: Transform pos: 94.5,15.5 parent: 2 - - uid: 35169 + - uid: 35013 components: - type: Transform pos: 90.5,24.5 parent: 2 - - uid: 35170 + - uid: 35014 components: - type: Transform pos: 91.5,24.5 parent: 2 - - uid: 35171 + - uid: 35015 components: - type: Transform pos: 94.5,25.5 parent: 2 - - uid: 35172 + - uid: 35016 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 35173 + - uid: 35017 components: - type: Transform pos: 94.5,24.5 parent: 2 - - uid: 35174 + - uid: 35018 components: - type: Transform pos: 94.5,23.5 parent: 2 - - uid: 35175 + - uid: 35019 components: - type: Transform pos: 94.5,22.5 parent: 2 - - uid: 35176 + - uid: 35020 components: - type: Transform pos: 94.5,20.5 parent: 2 - - uid: 35177 + - uid: 35021 components: - type: Transform pos: 94.5,19.5 parent: 2 - - uid: 35178 + - uid: 35022 components: - type: Transform pos: 94.5,16.5 parent: 2 - - uid: 35179 + - uid: 35023 components: - type: Transform pos: 94.5,26.5 parent: 2 - - uid: 35180 + - uid: 35024 components: - type: Transform pos: 94.5,27.5 parent: 2 - - uid: 35181 + - uid: 35025 components: - type: Transform pos: 93.5,27.5 parent: 2 - - uid: 35182 + - uid: 35026 components: - type: Transform pos: 91.5,27.5 parent: 2 - - uid: 35183 + - uid: 35027 components: - type: Transform pos: 90.5,27.5 parent: 2 - - uid: 35184 + - uid: 35028 components: - type: Transform pos: 90.5,26.5 parent: 2 - - uid: 35185 + - uid: 35029 components: - type: Transform pos: 90.5,25.5 parent: 2 - - uid: 35186 + - uid: 35030 components: - type: Transform pos: -20.5,-28.5 parent: 2 - - uid: 35187 + - uid: 35031 components: - type: Transform pos: -16.5,-31.5 parent: 2 - - uid: 35188 + - uid: 35032 components: - type: Transform pos: -77.5,-14.5 parent: 2 - - uid: 35189 + - uid: 35033 components: - type: Transform pos: -77.5,-13.5 parent: 2 - - uid: 35190 + - uid: 35034 components: - type: Transform pos: -77.5,-12.5 parent: 2 - - uid: 35191 + - uid: 35035 components: - type: Transform pos: -77.5,-11.5 parent: 2 - - uid: 35192 + - uid: 35036 components: - type: Transform pos: -39.5,-53.5 parent: 2 - - uid: 35193 + - uid: 35037 components: - type: Transform pos: -38.5,-53.5 parent: 2 - - uid: 35194 + - uid: 35038 components: - type: Transform pos: -37.5,-53.5 parent: 2 - - uid: 35195 + - uid: 35039 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-83.5 parent: 2 - - uid: 35196 + - uid: 35040 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-65.5 parent: 2 - - uid: 35197 + - uid: 35041 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-33.5 parent: 2 - - uid: 35198 + - uid: 35042 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,8.5 parent: 2 - - uid: 35199 + - uid: 35043 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,83.5 parent: 2 - - uid: 35200 + - uid: 35044 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,85.5 parent: 2 - - uid: 35201 + - uid: 35045 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,83.5 parent: 2 - - uid: 35202 + - uid: 35046 components: - type: Transform pos: 98.5,7.5 parent: 2 - - uid: 35203 + - uid: 35047 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-0.5 parent: 2 - - uid: 35204 + - uid: 35048 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,51.5 parent: 2 - - uid: 35205 + - uid: 35049 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 35206 + - uid: 35050 components: - type: Transform pos: -77.5,23.5 parent: 2 - - uid: 35207 + - uid: 35051 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,39.5 parent: 2 - - uid: 35208 + - uid: 35052 components: - type: Transform pos: -63.5,39.5 parent: 2 - - uid: 35209 + - uid: 35053 components: - type: Transform pos: -62.5,39.5 parent: 2 - - uid: 35210 + - uid: 35054 components: - type: Transform pos: -26.5,78.5 parent: 2 - - uid: 35211 + - uid: 35055 components: - type: Transform pos: -32.5,78.5 parent: 2 - - uid: 35212 + - uid: 35056 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,76.5 parent: 2 - - uid: 35213 + - uid: 35057 components: - type: Transform pos: -9.5,6.5 parent: 2 - - uid: 35214 + - uid: 35058 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,31.5 parent: 2 - - uid: 35215 + - uid: 35059 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,35.5 parent: 2 - - uid: 35216 + - uid: 35060 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,43.5 parent: 2 - - uid: 35217 + - uid: 35061 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,47.5 parent: 2 - - uid: 35218 + - uid: 35062 components: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 35219 + - uid: 35063 components: - type: Transform pos: -77.5,24.5 parent: 2 - - uid: 35220 + - uid: 35064 components: - type: Transform pos: -77.5,25.5 parent: 2 - - uid: 35221 + - uid: 35065 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,10.5 parent: 2 - - uid: 35222 + - uid: 35066 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,3.5 parent: 2 - - uid: 35223 + - uid: 35067 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,8.5 parent: 2 - - uid: 35224 + - uid: 35068 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,4.5 parent: 2 - - uid: 35225 + - uid: 35069 components: - type: Transform pos: 98.5,6.5 parent: 2 - - uid: 35226 + - uid: 35070 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,3.5 parent: 2 - - uid: 35227 + - uid: 35071 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-0.5 parent: 2 - - uid: 35228 + - uid: 35072 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 35229 + - uid: 35073 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-0.5 parent: 2 - - uid: 35230 + - uid: 35074 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-0.5 parent: 2 - - uid: 35231 + - uid: 35075 components: - type: Transform pos: 98.5,8.5 parent: 2 - - uid: 35232 + - uid: 35076 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-0.5 parent: 2 - - uid: 35233 + - uid: 35077 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,3.5 parent: 2 - - uid: 35234 + - uid: 35078 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,8.5 parent: 2 - - uid: 35235 + - uid: 35079 components: - type: Transform pos: 97.5,8.5 parent: 2 - - uid: 35236 + - uid: 35080 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-1.5 parent: 2 - - uid: 35237 + - uid: 35081 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,10.5 parent: 2 - - uid: 35238 + - uid: 35082 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 35239 + - uid: 35083 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,11.5 parent: 2 - - uid: 35240 + - uid: 35084 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,11.5 parent: 2 - - uid: 35241 + - uid: 35085 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,11.5 parent: 2 - - uid: 35242 + - uid: 35086 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,11.5 parent: 2 - - uid: 35243 + - uid: 35087 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,11.5 parent: 2 - - uid: 35244 + - uid: 35088 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,14.5 parent: 2 - - uid: 35245 + - uid: 35089 components: - type: Transform pos: 29.5,19.5 parent: 2 - - uid: 35246 + - uid: 35090 components: - type: Transform pos: 29.5,18.5 parent: 2 - - uid: 35247 + - uid: 35091 components: - type: Transform pos: 29.5,17.5 parent: 2 - - uid: 35248 + - uid: 35092 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 35249 + - uid: 35093 components: - type: Transform pos: 29.5,15.5 parent: 2 - - uid: 35250 + - uid: 35094 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 35251 + - uid: 35095 components: - type: Transform pos: 2.5,85.5 parent: 2 - - uid: 35252 + - uid: 35096 components: - type: Transform pos: -110.5,30.5 parent: 2 - - uid: 35253 + - uid: 35097 components: - type: Transform pos: 59.5,20.5 parent: 2 - - uid: 35254 + - uid: 35098 components: - type: Transform pos: 55.5,20.5 parent: 2 - - uid: 35255 + - uid: 35099 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 35256 + - uid: 35100 components: - type: Transform pos: 55.5,19.5 parent: 2 - - uid: 35257 + - uid: 35101 components: - type: Transform pos: 55.5,15.5 parent: 2 - - uid: 35258 + - uid: 35102 components: - type: Transform pos: 58.5,20.5 parent: 2 - - uid: 35259 + - uid: 35103 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 2 - - uid: 35260 + - uid: 35104 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,27.5 parent: 2 - - uid: 35261 + - uid: 35105 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,27.5 parent: 2 - - uid: 35262 + - uid: 35106 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,27.5 parent: 2 - - uid: 35263 + - uid: 35107 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,22.5 parent: 2 - - uid: 35264 + - uid: 35108 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,23.5 parent: 2 - - uid: 35265 + - uid: 35109 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,21.5 parent: 2 - - uid: 35266 + - uid: 35110 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-2.5 parent: 2 - - uid: 35267 + - uid: 35111 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-3.5 parent: 2 - - uid: 35268 + - uid: 35112 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,30.5 parent: 2 - - uid: 35269 + - uid: 35113 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,20.5 parent: 2 - - uid: 35270 + - uid: 35114 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-1.5 parent: 2 - - uid: 35271 + - uid: 35115 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,24.5 parent: 2 - - uid: 35272 + - uid: 35116 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-1.5 parent: 2 - - uid: 35273 + - uid: 35117 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,26.5 parent: 2 - - uid: 35274 + - uid: 35118 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 2 - - uid: 35275 + - uid: 35119 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 2 - - uid: 35276 + - uid: 35120 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,20.5 parent: 2 - - uid: 35277 + - uid: 35121 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-2.5 parent: 2 - - uid: 35278 + - uid: 35122 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,2.5 parent: 2 - - uid: 35279 + - uid: 35123 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,3.5 parent: 2 - - uid: 35280 + - uid: 35124 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-1.5 parent: 2 - - uid: 35281 + - uid: 35125 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-1.5 parent: 2 - - uid: 35282 + - uid: 35126 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2 - - uid: 35283 + - uid: 35127 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,10.5 parent: 2 - - uid: 35284 + - uid: 35128 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 35285 + - uid: 35129 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 - - uid: 35286 + - uid: 35130 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-8.5 parent: 2 - - uid: 35287 + - uid: 35131 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-9.5 parent: 2 - - uid: 35288 + - uid: 35132 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-9.5 parent: 2 - - uid: 35289 + - uid: 35133 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,10.5 parent: 2 - - uid: 35290 + - uid: 35134 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,13.5 parent: 2 - - uid: 35291 + - uid: 35135 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,6.5 parent: 2 - - uid: 35292 + - uid: 35136 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,2.5 parent: 2 - - uid: 35293 + - uid: 35137 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 - - uid: 35294 + - uid: 35138 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,12.5 parent: 2 - - uid: 35295 + - uid: 35139 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,0.5 parent: 2 - - uid: 35296 + - uid: 35140 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2 - - uid: 35297 + - uid: 35141 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 - - uid: 35298 + - uid: 35142 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,8.5 parent: 2 - - uid: 35299 + - uid: 35143 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 - - uid: 35300 + - uid: 35144 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,11.5 parent: 2 - - uid: 35301 + - uid: 35145 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,2.5 parent: 2 - - uid: 35302 + - uid: 35146 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-5.5 parent: 2 - - uid: 35303 + - uid: 35147 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,10.5 parent: 2 - - uid: 35304 + - uid: 35148 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-1.5 parent: 2 - - uid: 35305 + - uid: 35149 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,6.5 parent: 2 - - uid: 35306 + - uid: 35150 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,10.5 parent: 2 - - uid: 35307 + - uid: 35151 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-1.5 parent: 2 - - uid: 35308 + - uid: 35152 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,2.5 parent: 2 - - uid: 35309 + - uid: 35153 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-9.5 parent: 2 - - uid: 35310 + - uid: 35154 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,6.5 parent: 2 - - uid: 35311 + - uid: 35155 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 2 - - uid: 35312 + - uid: 35156 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-9.5 parent: 2 - - uid: 35313 + - uid: 35157 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-4.5 parent: 2 - - uid: 35314 + - uid: 35158 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,1.5 parent: 2 - - uid: 35315 + - uid: 35159 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,28.5 parent: 2 - - uid: 35316 + - uid: 35160 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,29.5 parent: 2 - - uid: 35317 + - uid: 35161 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,27.5 parent: 2 - - uid: 35318 + - uid: 35162 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,20.5 parent: 2 - - uid: 35319 + - uid: 35163 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,20.5 parent: 2 - - uid: 35320 + - uid: 35164 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-1.5 parent: 2 - - uid: 35321 + - uid: 35165 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-5.5 parent: 2 - - uid: 35322 + - uid: 35166 components: - type: Transform pos: 47.5,-5.5 parent: 2 - - uid: 35323 + - uid: 35167 components: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 35324 + - uid: 35168 components: - type: Transform pos: -13.5,-1.5 parent: 2 - - uid: 35325 + - uid: 35169 components: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 35326 + - uid: 35170 components: - type: Transform pos: -13.5,-5.5 parent: 2 - - uid: 35327 + - uid: 35171 components: - type: Transform pos: -13.5,-3.5 parent: 2 - - uid: 35328 + - uid: 35172 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 35329 + - uid: 35173 components: - type: Transform pos: -8.5,1.5 parent: 2 - - uid: 35330 + - uid: 35174 components: - type: Transform pos: -12.5,12.5 parent: 2 - - uid: 35331 + - uid: 35175 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 35332 + - uid: 35176 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 35333 + - uid: 35177 components: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 35334 + - uid: 35178 components: - type: Transform pos: -6.5,12.5 parent: 2 - - uid: 35335 + - uid: 35179 components: - type: Transform pos: -6.5,11.5 parent: 2 - - uid: 35336 + - uid: 35180 components: - type: Transform pos: 23.5,11.5 parent: 2 - - uid: 35337 + - uid: 35181 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 35338 + - uid: 35182 components: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 35339 + - uid: 35183 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 35340 + - uid: 35184 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 35341 + - uid: 35185 components: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 35342 + - uid: 35186 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,7.5 parent: 2 - - uid: 35343 + - uid: 35187 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,7.5 parent: 2 - - uid: 35344 + - uid: 35188 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 35345 + - uid: 35189 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,10.5 parent: 2 - - uid: 35346 + - uid: 35190 components: - type: Transform pos: 19.5,11.5 parent: 2 - - uid: 35347 + - uid: 35191 components: - type: Transform pos: 9.5,-1.5 parent: 2 - - uid: 35348 + - uid: 35192 components: - type: Transform pos: -3.5,12.5 parent: 2 - - uid: 35349 + - uid: 35193 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,9.5 parent: 2 - - uid: 35350 + - uid: 35194 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 - - uid: 35351 + - uid: 35195 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,10.5 parent: 2 - - uid: 35352 + - uid: 35196 components: - type: Transform pos: 25.5,11.5 parent: 2 - - uid: 35353 + - uid: 35197 components: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 35354 + - uid: 35198 components: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 35355 + - uid: 35199 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 39866 + - uid: 39693 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 - parent: 38584 - - uid: 39867 + parent: 38411 + - uid: 39694 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 - parent: 38584 - - uid: 39868 + parent: 38411 + - uid: 39695 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-1.5 - parent: 38584 - - uid: 39869 + parent: 38411 + - uid: 39696 components: - type: Transform pos: 9.5,8.5 - parent: 38584 - - uid: 39870 + parent: 38411 + - uid: 39697 components: - type: Transform pos: 2.5,-0.5 - parent: 38584 - - uid: 39871 + parent: 38411 + - uid: 39698 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 - parent: 38584 - - uid: 39872 + parent: 38411 + - uid: 39699 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 38584 - - uid: 39873 + parent: 38411 + - uid: 39700 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-5.5 - parent: 38584 - - uid: 39874 + parent: 38411 + - uid: 39701 components: - type: Transform pos: 5.5,-0.5 - parent: 38584 - - uid: 39875 + parent: 38411 + - uid: 39702 components: - type: Transform pos: 15.5,3.5 - parent: 38584 - - uid: 39876 + parent: 38411 + - uid: 39703 components: - type: Transform pos: 8.5,-1.5 - parent: 38584 - - uid: 39877 + parent: 38411 + - uid: 39704 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-6.5 - parent: 38584 - - uid: 39878 + parent: 38411 + - uid: 39705 components: - type: Transform pos: 11.5,-8.5 - parent: 38584 - - uid: 39879 + parent: 38411 + - uid: 39706 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 - parent: 38584 - - uid: 39880 + parent: 38411 + - uid: 39707 components: - type: Transform pos: 8.5,-0.5 - parent: 38584 - - uid: 39881 + parent: 38411 + - uid: 39708 components: - type: Transform pos: 6.5,5.5 - parent: 38584 - - uid: 39882 + parent: 38411 + - uid: 39709 components: - type: Transform pos: 13.5,-1.5 - parent: 38584 - - uid: 39883 + parent: 38411 + - uid: 39710 components: - type: Transform pos: 13.5,-3.5 - parent: 38584 - - uid: 39884 + parent: 38411 + - uid: 39711 components: - type: Transform pos: 9.5,-8.5 - parent: 38584 - - uid: 39885 + parent: 38411 + - uid: 39712 components: - type: Transform pos: 2.5,-4.5 - parent: 38584 - - uid: 39886 + parent: 38411 + - uid: 39713 components: - type: Transform pos: 2.5,-5.5 - parent: 38584 - - uid: 39887 + parent: 38411 + - uid: 39714 components: - type: Transform pos: 12.5,-9.5 - parent: 38584 - - uid: 39888 + parent: 38411 + - uid: 39715 components: - type: Transform pos: 7.5,-9.5 - parent: 38584 - - uid: 39889 + parent: 38411 + - uid: 39716 components: - type: Transform pos: 13.5,-8.5 - parent: 38584 - - uid: 39890 + parent: 38411 + - uid: 39717 components: - type: Transform pos: 13.5,-7.5 - parent: 38584 - - uid: 39891 + parent: 38411 + - uid: 39718 components: - type: Transform pos: 7.5,-8.5 - parent: 38584 - - uid: 39892 + parent: 38411 + - uid: 39719 components: - type: Transform pos: 12.5,-0.5 - parent: 38584 - - uid: 39893 + parent: 38411 + - uid: 39720 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 - parent: 38584 - - uid: 39894 + parent: 38411 + - uid: 39721 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 - parent: 38584 - - uid: 39895 + parent: 38411 + - uid: 39722 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 38584 - - uid: 39896 + parent: 38411 + - uid: 39723 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 - parent: 38584 - - uid: 39897 + parent: 38411 + - uid: 39724 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,11.5 - parent: 38584 - - uid: 39898 + parent: 38411 + - uid: 39725 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,11.5 - parent: 38584 - - uid: 39899 + parent: 38411 + - uid: 39726 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 38584 - - uid: 39900 + parent: 38411 + - uid: 39727 components: - type: Transform pos: -3.5,6.5 - parent: 38584 - - uid: 39901 + parent: 38411 + - uid: 39728 components: - type: Transform pos: -3.5,8.5 - parent: 38584 - - uid: 39902 + parent: 38411 + - uid: 39729 components: - type: Transform pos: 1.5,9.5 - parent: 38584 - - uid: 39903 + parent: 38411 + - uid: 39730 components: - type: Transform pos: -0.5,5.5 - parent: 38584 - - uid: 39904 + parent: 38411 + - uid: 39731 components: - type: Transform pos: -2.5,5.5 - parent: 38584 - - uid: 39905 + parent: 38411 + - uid: 39732 components: - type: Transform pos: 2.5,8.5 - parent: 38584 - - uid: 39906 + parent: 38411 + - uid: 39733 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 39907 + parent: 38411 + - uid: 39734 components: - type: Transform pos: 13.5,-0.5 - parent: 38584 - - uid: 39908 + parent: 38411 + - uid: 39735 components: - type: Transform pos: 13.5,-2.5 - parent: 38584 - - uid: 39909 + parent: 38411 + - uid: 39736 components: - type: Transform pos: 13.5,-9.5 - parent: 38584 - - uid: 39910 + parent: 38411 + - uid: 39737 components: - type: Transform pos: 10.5,-9.5 - parent: 38584 - - uid: 39911 + parent: 38411 + - uid: 39738 components: - type: Transform pos: -3.5,9.5 - parent: 38584 - - uid: 39912 + parent: 38411 + - uid: 39739 components: - type: Transform pos: 2.5,9.5 - parent: 38584 - - uid: 39913 + parent: 38411 + - uid: 39740 components: - type: Transform pos: 15.5,5.5 - parent: 38584 - - uid: 39914 + parent: 38411 + - uid: 39741 components: - type: Transform pos: 14.5,5.5 - parent: 38584 - - uid: 39915 + parent: 38411 + - uid: 39742 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-0.5 - parent: 38584 - - uid: 39916 + parent: 38411 + - uid: 39743 components: - type: Transform pos: 11.5,8.5 - parent: 38584 - - uid: 39917 + parent: 38411 + - uid: 39744 components: - type: Transform pos: 14.5,6.5 - parent: 38584 - - uid: 39918 + parent: 38411 + - uid: 39745 components: - type: Transform pos: 14.5,7.5 - parent: 38584 - - uid: 39919 + parent: 38411 + - uid: 39746 components: - type: Transform pos: 13.5,7.5 - parent: 38584 - - uid: 39920 + parent: 38411 + - uid: 39747 components: - type: Transform pos: 12.5,7.5 - parent: 38584 - - uid: 39921 + parent: 38411 + - uid: 39748 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 - parent: 38584 - - uid: 39922 + parent: 38411 + - uid: 39749 components: - type: Transform pos: 18.5,4.5 - parent: 38584 - - uid: 39923 + parent: 38411 + - uid: 39750 components: - type: Transform pos: 18.5,5.5 - parent: 38584 - - uid: 39924 + parent: 38411 + - uid: 39751 components: - type: Transform pos: 12.5,-3.5 - parent: 38584 - - uid: 39925 + parent: 38411 + - uid: 39752 components: - type: Transform pos: 10.5,8.5 - parent: 38584 - - uid: 39926 + parent: 38411 + - uid: 39753 components: - type: Transform pos: 5.5,-6.5 - parent: 38584 - - uid: 39927 + parent: 38411 + - uid: 39754 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,5.5 - parent: 38584 - - uid: 39928 + parent: 38411 + - uid: 39755 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 - parent: 38584 - - uid: 39929 + parent: 38411 + - uid: 39756 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,0.5 - parent: 38584 - - uid: 39930 + parent: 38411 + - uid: 39757 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 - parent: 38584 - - uid: 39931 + parent: 38411 + - uid: 39758 components: - type: Transform pos: 9.5,-0.5 - parent: 38584 - - uid: 39932 + parent: 38411 + - uid: 39759 components: - type: Transform pos: 12.5,0.5 - parent: 38584 - - uid: 39933 + parent: 38411 + - uid: 39760 components: - type: Transform pos: 2.5,-3.5 - parent: 38584 - - uid: 39934 + parent: 38411 + - uid: 39761 components: - type: Transform pos: 2.5,-1.5 - parent: 38584 - - uid: 39935 + parent: 38411 + - uid: 39762 components: - type: Transform pos: 17.5,5.5 - parent: 38584 - - uid: 39936 + parent: 38411 + - uid: 39763 components: - type: Transform pos: 16.5,5.5 - parent: 38584 - - uid: 39937 + parent: 38411 + - uid: 39764 components: - type: Transform pos: 1.5,5.5 - parent: 38584 - - uid: 39938 + parent: 38411 + - uid: 39765 components: - type: Transform pos: -0.5,9.5 - parent: 38584 - - uid: 39939 + parent: 38411 + - uid: 39766 components: - type: Transform pos: 13.5,-4.5 - parent: 38584 - - uid: 39940 + parent: 38411 + - uid: 39767 components: - type: Transform pos: 3.5,5.5 - parent: 38584 - - uid: 39941 + parent: 38411 + - uid: 39768 components: - type: Transform pos: 9.5,-9.5 - parent: 38584 - - uid: 39942 + parent: 38411 + - uid: 39769 components: - type: Transform pos: 7.5,7.5 - parent: 38584 - - uid: 39943 + parent: 38411 + - uid: 39770 components: - type: Transform pos: 8.5,-9.5 - parent: 38584 - - uid: 39944 + parent: 38411 + - uid: 39771 components: - type: Transform pos: 13.5,-6.5 - parent: 38584 - - uid: 39945 + parent: 38411 + - uid: 39772 components: - type: Transform pos: 5.5,5.5 - parent: 38584 - - uid: 39946 + parent: 38411 + - uid: 39773 components: - type: Transform pos: 11.5,-9.5 - parent: 38584 - - uid: 39947 + parent: 38411 + - uid: 39774 components: - type: Transform pos: 7.5,6.5 - parent: 38584 - - uid: 39948 + parent: 38411 + - uid: 39775 components: - type: Transform pos: 13.5,-5.5 - parent: 38584 - - uid: 39949 + parent: 38411 + - uid: 39776 components: - type: Transform pos: -2.5,9.5 - parent: 38584 - - uid: 39950 + parent: 38411 + - uid: 39777 components: - type: Transform pos: -3.5,7.5 - parent: 38584 - - uid: 39951 + parent: 38411 + - uid: 39778 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 39952 + parent: 38411 + - uid: 39779 components: - type: Transform pos: 11.5,-0.5 - parent: 38584 - - uid: 39953 + parent: 38411 + - uid: 39780 components: - type: Transform pos: 12.5,-8.5 - parent: 38584 - - uid: 39954 + parent: 38411 + - uid: 39781 components: - type: Transform pos: 12.5,-7.5 - parent: 38584 - - uid: 39955 + parent: 38411 + - uid: 39782 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-6.5 - parent: 38584 - - uid: 39956 + parent: 38411 + - uid: 39783 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-7.5 - parent: 38584 - - uid: 39957 + parent: 38411 + - uid: 39784 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 - parent: 38584 - - uid: 39958 + parent: 38411 + - uid: 39785 components: - type: Transform pos: -3.5,5.5 - parent: 38584 - - uid: 39959 + parent: 38411 + - uid: 39786 components: - type: Transform pos: 6.5,-0.5 - parent: 38584 - - uid: 39960 + parent: 38411 + - uid: 39787 components: - type: Transform pos: 3.5,-0.5 - parent: 38584 - - uid: 39961 + parent: 38411 + - uid: 39788 components: - type: Transform pos: 6.5,0.5 - parent: 38584 - - uid: 39962 + parent: 38411 + - uid: 39789 components: - type: Transform pos: 7.5,8.5 - parent: 38584 - - uid: 39963 + parent: 38411 + - uid: 39790 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 - parent: 38584 - - uid: 39964 + parent: 38411 + - uid: 39791 components: - type: Transform pos: -3.5,-5.5 - parent: 38584 - - uid: 39965 + parent: 38411 + - uid: 39792 components: - type: Transform pos: 6.5,-6.5 - parent: 38584 - - uid: 39966 + parent: 38411 + - uid: 39793 components: - type: Transform pos: 10.5,-8.5 - parent: 38584 - - uid: 39967 + parent: 38411 + - uid: 39794 components: - type: Transform pos: 2.5,5.5 - parent: 38584 - - uid: 39968 + parent: 38411 + - uid: 39795 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-0.5 - parent: 38584 - - uid: 39969 + parent: 38411 + - uid: 39796 components: - type: Transform pos: 6.5,-7.5 - parent: 38584 - - uid: 39970 + parent: 38411 + - uid: 39797 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 - parent: 38584 - - uid: 39971 + parent: 38411 + - uid: 39798 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 - parent: 38584 - - uid: 39972 + parent: 38411 + - uid: 39799 components: - type: Transform pos: 7.5,-7.5 - parent: 38584 - - uid: 39973 + parent: 38411 + - uid: 39800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 - parent: 38584 - - uid: 39974 + parent: 38411 + - uid: 39801 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,4.5 - parent: 38584 - - uid: 39975 + parent: 38411 + - uid: 39802 components: - type: Transform pos: 12.5,8.5 - parent: 38584 - - uid: 39976 + parent: 38411 + - uid: 39803 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,5.5 - parent: 38584 - - uid: 39977 + parent: 38411 + - uid: 39804 components: - type: Transform pos: 12.5,-2.5 - parent: 38584 - - uid: 39978 + parent: 38411 + - uid: 39805 components: - type: Transform pos: 8.5,-6.5 - parent: 38584 - - uid: 39979 + parent: 38411 + - uid: 39806 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,1.5 - parent: 38584 - - uid: 39980 + parent: 38411 + - uid: 39807 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 38584 - - uid: 39981 + parent: 38411 + - uid: 39808 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,5.5 - parent: 38584 - - uid: 39982 + parent: 38411 + - uid: 39809 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-0.5 - parent: 38584 - - uid: 39983 + parent: 38411 + - uid: 39810 components: - type: Transform pos: 8.5,8.5 - parent: 38584 - - uid: 39984 + parent: 38411 + - uid: 39811 components: - type: Transform pos: 7.5,-0.5 - parent: 38584 - - uid: 39985 + parent: 38411 + - uid: 39812 components: - type: Transform pos: 12.5,-1.5 - parent: 38584 - - uid: 39986 + parent: 38411 + - uid: 39813 components: - type: Transform pos: 13.5,0.5 - parent: 38584 - - uid: 39987 + parent: 38411 + - uid: 39814 components: - type: Transform pos: 14.5,1.5 - parent: 38584 - - uid: 39988 + parent: 38411 + - uid: 39815 components: - type: Transform pos: 12.5,-6.5 - parent: 38584 - - uid: 39989 + parent: 38411 + - uid: 39816 components: - type: Transform pos: 14.5,0.5 - parent: 38584 - - uid: 39990 + parent: 38411 + - uid: 39817 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 - parent: 38584 - - uid: 39991 + parent: 38411 + - uid: 39818 components: - type: Transform pos: 7.5,-6.5 - parent: 38584 - - uid: 39992 + parent: 38411 + - uid: 39819 components: - type: Transform pos: 8.5,-7.5 - parent: 38584 - - uid: 39993 + parent: 38411 + - uid: 39820 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 - parent: 38584 - - uid: 39994 + parent: 38411 + - uid: 39821 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 - parent: 38584 - - uid: 39995 + parent: 38411 + - uid: 39822 components: - type: Transform pos: 18.5,3.5 - parent: 38584 - - uid: 39996 + parent: 38411 + - uid: 39823 components: - type: Transform pos: 14.5,3.5 - parent: 38584 - - uid: 39997 + parent: 38411 + - uid: 39824 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 39998 + parent: 38411 + - uid: 39825 components: - type: Transform pos: 6.5,-1.5 - parent: 38584 - - uid: 39999 + parent: 38411 + - uid: 39826 components: - type: Transform pos: 17.5,3.5 - parent: 38584 - - uid: 40000 + parent: 38411 + - uid: 39827 components: - type: Transform pos: 16.5,3.5 - parent: 38584 - - uid: 40001 + parent: 38411 + - uid: 39828 components: - type: Transform pos: -3.5,-1.5 - parent: 38584 - - uid: 40002 + parent: 38411 + - uid: 39829 components: - type: Transform pos: 2.5,7.5 - parent: 38584 - - uid: 40003 + parent: 38411 + - uid: 39830 components: - type: Transform pos: 12.5,-5.5 - parent: 38584 - - uid: 40004 + parent: 38411 + - uid: 39831 components: - type: Transform pos: 12.5,-4.5 - parent: 38584 - - uid: 40005 + parent: 38411 + - uid: 39832 components: - type: Transform pos: 8.5,-3.5 - parent: 38584 - - uid: 40006 + parent: 38411 + - uid: 39833 components: - type: Transform pos: 1.5,-0.5 - parent: 38584 - - uid: 40007 + parent: 38411 + - uid: 39834 components: - type: Transform pos: -2.5,-0.5 - parent: 38584 - - uid: 40008 + parent: 38411 + - uid: 39835 components: - type: Transform pos: -0.5,-0.5 - parent: 38584 - - uid: 40009 + parent: 38411 + - uid: 39836 components: - type: Transform pos: 6.5,-2.5 - parent: 38584 - - uid: 40010 + parent: 38411 + - uid: 39837 components: - type: Transform pos: 8.5,-2.5 - parent: 38584 - - uid: 40011 + parent: 38411 + - uid: 39838 components: - type: Transform pos: -3.5,-0.5 - parent: 38584 - - uid: 40012 + parent: 38411 + - uid: 39839 components: - type: Transform pos: 2.5,6.5 - parent: 38584 - - uid: 40013 + parent: 38411 + - uid: 39840 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-11.5 - parent: 38584 - - uid: 40014 + parent: 38411 + - uid: 39841 components: - type: Transform pos: -3.5,-2.5 - parent: 38584 - - uid: 40015 + parent: 38411 + - uid: 39842 components: - type: Transform pos: 5.5,-9.5 - parent: 38584 - - uid: 40016 + parent: 38411 + - uid: 39843 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 - parent: 38584 - - uid: 40017 + parent: 38411 + - uid: 39844 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-11.5 - parent: 38584 - - uid: 40018 + parent: 38411 + - uid: 39845 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-9.5 - parent: 38584 - - uid: 40019 + parent: 38411 + - uid: 39846 components: - type: Transform pos: 3.5,-10.5 - parent: 38584 - - uid: 40020 + parent: 38411 + - uid: 39847 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 - parent: 38584 - - uid: 40021 + parent: 38411 + - uid: 39848 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 - parent: 38584 - - uid: 40022 + parent: 38411 + - uid: 39849 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-11.5 - parent: 38584 - - uid: 40023 + parent: 38411 + - uid: 39850 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 - parent: 38584 - - uid: 40024 + parent: 38411 + - uid: 39851 components: - type: Transform pos: 5.5,-7.5 - parent: 38584 - - uid: 40025 + parent: 38411 + - uid: 39852 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-7.5 - parent: 38584 - - uid: 40026 + parent: 38411 + - uid: 39853 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-10.5 - parent: 38584 - - uid: 40027 + parent: 38411 + - uid: 39854 components: - type: Transform pos: 4.5,-10.5 - parent: 38584 - - uid: 40028 + parent: 38411 + - uid: 39855 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-7.5 - parent: 38584 - - uid: 40029 + parent: 38411 + - uid: 39856 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 38584 - - uid: 40030 + parent: 38411 + - uid: 39857 components: - type: Transform pos: 5.5,-10.5 - parent: 38584 - - uid: 40031 + parent: 38411 + - uid: 39858 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-6.5 - parent: 38584 - - uid: 40032 + parent: 38411 + - uid: 39859 components: - type: Transform pos: 5.5,-8.5 - parent: 38584 - - uid: 40033 + parent: 38411 + - uid: 39860 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 - parent: 38584 - - uid: 40034 + parent: 38411 + - uid: 39861 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 38584 - - uid: 40035 + parent: 38411 + - uid: 39862 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,14.5 - parent: 38584 - - uid: 40036 + parent: 38411 + - uid: 39863 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,14.5 - parent: 38584 - - uid: 40037 + parent: 38411 + - uid: 39864 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,11.5 - parent: 38584 - - uid: 40038 + parent: 38411 + - uid: 39865 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,11.5 - parent: 38584 - - uid: 40039 + parent: 38411 + - uid: 39866 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,11.5 - parent: 38584 - - uid: 40040 + parent: 38411 + - uid: 39867 components: - type: Transform pos: -22.5,-0.5 - parent: 38584 - - uid: 40041 + parent: 38411 + - uid: 39868 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,13.5 - parent: 38584 - - uid: 40042 + parent: 38411 + - uid: 39869 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,11.5 - parent: 38584 - - uid: 40043 + parent: 38411 + - uid: 39870 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,11.5 - parent: 38584 - - uid: 40044 + parent: 38411 + - uid: 39871 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,14.5 - parent: 38584 - - uid: 40045 + parent: 38411 + - uid: 39872 components: - type: Transform pos: 6.5,2.5 - parent: 38584 - - uid: 40046 + parent: 38411 + - uid: 39873 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,13.5 - parent: 38584 - - uid: 40047 + parent: 38411 + - uid: 39874 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,11.5 - parent: 38584 - - uid: 40048 + parent: 38411 + - uid: 39875 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,12.5 - parent: 38584 - - uid: 40049 + parent: 38411 + - uid: 39876 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,11.5 - parent: 38584 - - uid: 40050 + parent: 38411 + - uid: 39877 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,14.5 - parent: 38584 - - uid: 40051 + parent: 38411 + - uid: 39878 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,9.5 - parent: 38584 - - uid: 40052 + parent: 38411 + - uid: 39879 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,8.5 - parent: 38584 - - uid: 40053 + parent: 38411 + - uid: 39880 components: - type: Transform pos: -22.5,-3.5 - parent: 38584 - - uid: 40054 + parent: 38411 + - uid: 39881 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,3.5 - parent: 38584 - - uid: 40055 + parent: 38411 + - uid: 39882 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 - - uid: 40056 + parent: 38411 + - uid: 39883 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,0.5 - parent: 38584 - - uid: 40057 + parent: 38411 + - uid: 39884 components: - type: Transform pos: -18.5,-8.5 - parent: 38584 - - uid: 40058 + parent: 38411 + - uid: 39885 components: - type: Transform pos: -21.5,-5.5 - parent: 38584 - - uid: 40059 + parent: 38411 + - uid: 39886 components: - type: Transform pos: -22.5,-5.5 - parent: 38584 - - uid: 40060 + parent: 38411 + - uid: 39887 components: - type: Transform pos: -19.5,-6.5 - parent: 38584 - - uid: 40061 + parent: 38411 + - uid: 39888 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,4.5 - parent: 38584 - - uid: 40062 + parent: 38411 + - uid: 39889 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,5.5 - parent: 38584 - - uid: 40063 + parent: 38411 + - uid: 39890 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,1.5 - parent: 38584 - - uid: 40064 + parent: 38411 + - uid: 39891 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,6.5 - parent: 38584 - - uid: 40065 + parent: 38411 + - uid: 39892 components: - type: Transform pos: -19.5,-7.5 - parent: 38584 - - uid: 40066 + parent: 38411 + - uid: 39893 components: - type: Transform pos: 6.5,4.5 - parent: 38584 - - uid: 40067 + parent: 38411 + - uid: 39894 components: - type: Transform pos: 6.5,3.5 - parent: 38584 - - uid: 40068 + parent: 38411 + - uid: 39895 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 40069 + parent: 38411 + - uid: 39896 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,11.5 - parent: 38584 - - uid: 40070 + parent: 38411 + - uid: 39897 components: - type: Transform pos: -17.5,-8.5 - parent: 38584 - - uid: 40071 + parent: 38411 + - uid: 39898 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-6.5 - parent: 38584 - - uid: 40072 + parent: 38411 + - uid: 39899 components: - type: Transform pos: -22.5,-4.5 - parent: 38584 - - uid: 40073 + parent: 38411 + - uid: 39900 components: - type: Transform pos: -19.5,-5.5 - parent: 38584 - - uid: 40074 + parent: 38411 + - uid: 39901 components: - type: Transform pos: -18.5,-7.5 - parent: 38584 - - uid: 40075 + parent: 38411 + - uid: 39902 components: - type: Transform pos: -22.5,-2.5 - parent: 38584 - - uid: 40076 + parent: 38411 + - uid: 39903 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,2.5 - parent: 38584 - - uid: 40077 + parent: 38411 + - uid: 39904 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 40078 + parent: 38411 + - uid: 39905 components: - type: Transform pos: -22.5,-1.5 - parent: 38584 - - uid: 40079 + parent: 38411 + - uid: 39906 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,11.5 - parent: 38584 - - uid: 40080 + parent: 38411 + - uid: 39907 components: - type: Transform pos: -20.5,-5.5 - parent: 38584 - - uid: 40081 + parent: 38411 + - uid: 39908 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-8.5 - parent: 38584 - - uid: 40082 + parent: 38411 + - uid: 39909 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,11.5 - parent: 38584 - - uid: 40083 + parent: 38411 + - uid: 39910 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,12.5 - parent: 38584 - - uid: 40084 + parent: 38411 + - uid: 39911 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,11.5 - parent: 38584 - - uid: 40085 + parent: 38411 + - uid: 39912 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 - parent: 38584 - - uid: 40086 + parent: 38411 + - uid: 39913 components: - type: Transform pos: 3.5,-6.5 - parent: 38584 - - uid: 40087 + parent: 38411 + - uid: 39914 components: - type: Transform pos: -9.5,-8.5 - parent: 38584 - - uid: 40088 + parent: 38411 + - uid: 39915 components: - type: Transform pos: -10.5,-8.5 - parent: 38584 - - uid: 40089 + parent: 38411 + - uid: 39916 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-0.5 - parent: 38584 - - uid: 40090 + parent: 38411 + - uid: 39917 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,7.5 - parent: 38584 - - uid: 40091 + parent: 38411 + - uid: 39918 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,14.5 - parent: 38584 - - uid: 40092 + parent: 38411 + - uid: 39919 components: - type: Transform pos: 15.5,1.5 - parent: 38584 - - uid: 40093 + parent: 38411 + - uid: 39920 components: - type: Transform pos: 17.5,1.5 - parent: 38584 - - uid: 40094 + parent: 38411 + - uid: 39921 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,11.5 - parent: 38584 - - uid: 40095 + parent: 38411 + - uid: 39922 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,10.5 - parent: 38584 - - uid: 40096 + parent: 38411 + - uid: 39923 components: - type: Transform pos: 16.5,1.5 - parent: 38584 - - uid: 40097 + parent: 38411 + - uid: 39924 components: - type: Transform pos: -3.5,-3.5 - parent: 38584 - - uid: 40098 + parent: 38411 + - uid: 39925 components: - type: Transform pos: 18.5,2.5 - parent: 38584 - - uid: 40099 + parent: 38411 + - uid: 39926 components: - type: Transform pos: 11.5,0.5 - parent: 38584 - - uid: 40100 + parent: 38411 + - uid: 39927 components: - type: Transform pos: 8.5,-5.5 - parent: 38584 - - uid: 40101 + parent: 38411 + - uid: 39928 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 - parent: 38584 - - uid: 40102 + parent: 38411 + - uid: 39929 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,11.5 - parent: 38584 - - uid: 40103 + parent: 38411 + - uid: 39930 components: - type: Transform pos: 18.5,1.5 - parent: 38584 - - uid: 40104 + parent: 38411 + - uid: 39931 components: - type: Transform pos: 8.5,-8.5 - parent: 38584 + parent: 38411 - proto: WallReinforcedRust entities: - - uid: 40105 + - uid: 39932 components: - type: Transform pos: -22.5,35.5 - parent: 38584 - - uid: 40106 + parent: 38411 + - uid: 39933 components: - type: Transform pos: -21.5,35.5 - parent: 38584 - - uid: 40107 + parent: 38411 + - uid: 39934 components: - type: Transform pos: -25.5,28.5 - parent: 38584 - - uid: 40108 + parent: 38411 + - uid: 39935 components: - type: Transform pos: -20.5,35.5 - parent: 38584 - - uid: 40109 + parent: 38411 + - uid: 39936 components: - type: Transform pos: -24.5,25.5 - parent: 38584 - - uid: 40110 + parent: 38411 + - uid: 39937 components: - type: Transform pos: -24.5,31.5 - parent: 38584 - - uid: 40111 + parent: 38411 + - uid: 39938 components: - type: Transform pos: -26.5,27.5 - parent: 38584 - - uid: 40112 + parent: 38411 + - uid: 39939 components: - type: Transform pos: -14.5,32.5 - parent: 38584 - - uid: 40113 + parent: 38411 + - uid: 39940 components: - type: Transform pos: -14.5,31.5 - parent: 38584 - - uid: 40114 + parent: 38411 + - uid: 39941 components: - type: Transform pos: -21.5,36.5 - parent: 38584 - - uid: 40115 + parent: 38411 + - uid: 39942 components: - type: Transform pos: -17.5,28.5 - parent: 38584 - - uid: 40116 + parent: 38411 + - uid: 39943 components: - type: Transform pos: -18.5,28.5 - parent: 38584 - - uid: 40117 + parent: 38411 + - uid: 39944 components: - type: Transform pos: -4.5,15.5 - parent: 38584 - - uid: 40118 + parent: 38411 + - uid: 39945 components: - type: Transform pos: -16.5,38.5 - parent: 38584 - - uid: 40119 + parent: 38411 + - uid: 39946 components: - type: Transform pos: -17.5,38.5 - parent: 38584 - - uid: 40120 + parent: 38411 + - uid: 39947 components: - type: Transform pos: -1.5,26.5 - parent: 38584 - - uid: 40121 + parent: 38411 + - uid: 39948 components: - type: Transform pos: -15.5,38.5 - parent: 38584 + parent: 38411 - proto: WallRock entities: - - uid: 35356 + - uid: 35200 components: - type: Transform pos: -84.5,-22.5 parent: 2 - - uid: 35357 + - uid: 35201 components: - type: Transform pos: -69.5,-14.5 parent: 2 - - uid: 35358 + - uid: 35202 components: - type: Transform pos: -80.5,-22.5 parent: 2 - - uid: 35359 + - uid: 35203 components: - type: Transform pos: -82.5,-22.5 parent: 2 - - uid: 35360 + - uid: 35204 components: - type: Transform pos: -79.5,-22.5 parent: 2 - - uid: 35361 + - uid: 35205 components: - type: Transform pos: -81.5,-23.5 parent: 2 - - uid: 35362 + - uid: 35206 components: - type: Transform pos: -107.5,44.5 parent: 2 - - uid: 35363 + - uid: 35207 components: - type: Transform pos: -109.5,44.5 parent: 2 - - uid: 35364 + - uid: 35208 components: - type: Transform pos: -109.5,47.5 parent: 2 - - uid: 35365 + - uid: 35209 components: - type: Transform pos: -107.5,43.5 parent: 2 - - uid: 35366 + - uid: 35210 components: - type: Transform pos: -79.5,-23.5 parent: 2 - - uid: 35367 + - uid: 35211 components: - type: Transform pos: -80.5,-20.5 parent: 2 - - uid: 35368 + - uid: 35212 components: - type: Transform pos: -80.5,-18.5 parent: 2 - - uid: 35369 + - uid: 35213 components: - type: Transform pos: -80.5,-23.5 parent: 2 - - uid: 35370 + - uid: 35214 components: - type: Transform pos: -80.5,-24.5 parent: 2 - - uid: 35371 + - uid: 35215 components: - type: Transform pos: -80.5,-19.5 parent: 2 - - uid: 35372 + - uid: 35216 components: - type: Transform pos: -81.5,-18.5 parent: 2 - - uid: 35373 + - uid: 35217 components: - type: Transform pos: -109.5,39.5 parent: 2 - - uid: 35374 + - uid: 35218 components: - type: Transform pos: -109.5,40.5 parent: 2 - - uid: 35375 + - uid: 35219 components: - type: Transform pos: -108.5,44.5 parent: 2 - - uid: 35376 + - uid: 35220 components: - type: Transform pos: -109.5,38.5 parent: 2 - - uid: 35377 + - uid: 35221 components: - type: Transform pos: -109.5,36.5 parent: 2 - - uid: 35378 + - uid: 35222 components: - type: Transform pos: -108.5,45.5 parent: 2 - - uid: 35379 + - uid: 35223 components: - type: Transform pos: -108.5,46.5 parent: 2 - - uid: 35380 + - uid: 35224 components: - type: Transform pos: -107.5,46.5 parent: 2 - - uid: 35381 + - uid: 35225 components: - type: Transform pos: -107.5,45.5 parent: 2 - - uid: 35382 + - uid: 35226 components: - type: Transform pos: -108.5,41.5 parent: 2 - - uid: 35383 + - uid: 35227 components: - type: Transform pos: -108.5,42.5 parent: 2 - - uid: 35384 + - uid: 35228 components: - type: Transform pos: -81.5,-22.5 parent: 2 - - uid: 35385 + - uid: 35229 components: - type: Transform pos: -109.5,43.5 parent: 2 - - uid: 35386 + - uid: 35230 components: - type: Transform pos: -109.5,42.5 parent: 2 - - uid: 35387 + - uid: 35231 components: - type: Transform pos: -108.5,47.5 parent: 2 - - uid: 35388 + - uid: 35232 components: - type: Transform pos: -108.5,40.5 parent: 2 - - uid: 35389 + - uid: 35233 components: - type: Transform pos: -108.5,43.5 parent: 2 - - uid: 35390 + - uid: 35234 components: - type: Transform pos: -106.5,44.5 parent: 2 - - uid: 35391 + - uid: 35235 components: - type: Transform pos: -106.5,45.5 parent: 2 - - uid: 35392 + - uid: 35236 components: - type: Transform pos: -79.5,-20.5 parent: 2 - - uid: 35393 + - uid: 35237 components: - type: Transform pos: -79.5,-18.5 parent: 2 - - uid: 35394 + - uid: 35238 components: - type: Transform pos: -126.5,33.5 parent: 2 - - uid: 35395 + - uid: 35239 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 35396 + - uid: 35240 components: - type: Transform pos: -39.5,-80.5 parent: 2 - - uid: 35397 + - uid: 35241 components: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 35398 + - uid: 35242 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 35399 + - uid: 35243 components: - type: Transform pos: -41.5,-79.5 parent: 2 - - uid: 35400 + - uid: 35244 components: - type: Transform pos: -41.5,-81.5 parent: 2 - - uid: 35401 + - uid: 35245 components: - type: Transform pos: -42.5,-80.5 parent: 2 - - uid: 35402 + - uid: 35246 components: - type: Transform pos: -33.5,-84.5 parent: 2 - - uid: 35403 + - uid: 35247 components: - type: Transform pos: -32.5,-84.5 parent: 2 - - uid: 35404 + - uid: 35248 components: - type: Transform pos: -32.5,-83.5 parent: 2 - - uid: 35405 + - uid: 35249 components: - type: Transform pos: -31.5,-84.5 parent: 2 - - uid: 35406 + - uid: 35250 components: - type: Transform pos: -31.5,-83.5 parent: 2 - - uid: 35407 + - uid: 35251 components: - type: Transform pos: -30.5,-83.5 parent: 2 - - uid: 35408 + - uid: 35252 components: - type: Transform pos: -29.5,-83.5 parent: 2 - - uid: 35409 + - uid: 35253 components: - type: Transform pos: -30.5,-82.5 parent: 2 - - uid: 35410 + - uid: 35254 components: - type: Transform pos: -126.5,27.5 parent: 2 - - uid: 35411 + - uid: 35255 components: - type: Transform pos: -125.5,25.5 parent: 2 - - uid: 35412 + - uid: 35256 components: - type: Transform pos: -127.5,30.5 parent: 2 - - uid: 35413 + - uid: 35257 components: - type: Transform pos: -128.5,33.5 parent: 2 - - uid: 35414 + - uid: 35258 components: - type: Transform pos: -127.5,35.5 parent: 2 - - uid: 35415 + - uid: 35259 components: - type: Transform pos: -45.5,-58.5 parent: 2 - - uid: 35416 + - uid: 35260 components: - type: Transform pos: -127.5,32.5 parent: 2 - - uid: 35417 + - uid: 35261 components: - type: Transform pos: -127.5,31.5 parent: 2 - - uid: 35418 + - uid: 35262 components: - type: Transform pos: -54.5,-50.5 parent: 2 - - uid: 35419 + - uid: 35263 components: - type: Transform pos: -30.5,-81.5 parent: 2 - - uid: 35420 + - uid: 35264 components: - type: Transform pos: 9.5,-71.5 parent: 2 - - uid: 35421 + - uid: 35265 components: - type: Transform pos: 10.5,-71.5 parent: 2 - - uid: 35422 + - uid: 35266 components: - type: Transform pos: 13.5,-71.5 parent: 2 - - uid: 35423 + - uid: 35267 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 35424 + - uid: 35268 components: - type: Transform pos: -30.5,-84.5 parent: 2 - - uid: 35425 + - uid: 35269 components: - type: Transform pos: -31.5,-82.5 parent: 2 - - uid: 35426 + - uid: 35270 components: - type: Transform pos: 11.5,-70.5 parent: 2 - - uid: 35427 + - uid: 35271 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 35428 + - uid: 35272 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 35429 + - uid: 35273 components: - type: Transform pos: 56.5,-49.5 parent: 2 - - uid: 35430 + - uid: 35274 components: - type: Transform pos: 56.5,-53.5 parent: 2 - - uid: 35431 + - uid: 35275 components: - type: Transform pos: 55.5,-56.5 parent: 2 - - uid: 35432 + - uid: 35276 components: - type: Transform pos: 58.5,-50.5 parent: 2 - - uid: 35433 + - uid: 35277 components: - type: Transform pos: 57.5,-49.5 parent: 2 - - uid: 35434 + - uid: 35278 components: - type: Transform pos: 57.5,-50.5 parent: 2 - - uid: 35435 + - uid: 35279 components: - type: Transform pos: -51.5,-51.5 parent: 2 - - uid: 35436 + - uid: 35280 components: - type: Transform pos: -34.5,-82.5 parent: 2 - - uid: 35437 + - uid: 35281 components: - type: Transform pos: -28.5,-81.5 parent: 2 - - uid: 35438 + - uid: 35282 components: - type: Transform pos: 44.5,-75.5 parent: 2 - - uid: 35439 + - uid: 35283 components: - type: Transform pos: 45.5,-75.5 parent: 2 - - uid: 35440 + - uid: 35284 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 35441 + - uid: 35285 components: - type: Transform pos: -126.5,29.5 parent: 2 - - uid: 35442 + - uid: 35286 components: - type: Transform pos: -51.5,-50.5 parent: 2 - - uid: 35443 + - uid: 35287 components: - type: Transform pos: -126.5,30.5 parent: 2 - - uid: 35444 + - uid: 35288 components: - type: Transform pos: 44.5,-69.5 parent: 2 - - uid: 35445 + - uid: 35289 components: - type: Transform pos: -51.5,-53.5 parent: 2 - - uid: 35446 + - uid: 35290 components: - type: Transform pos: 47.5,-64.5 parent: 2 - - uid: 35447 + - uid: 35291 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 35448 + - uid: 35292 components: - type: Transform pos: -44.5,-58.5 parent: 2 - - uid: 35449 + - uid: 35293 components: - type: Transform pos: -28.5,-82.5 parent: 2 - - uid: 35450 + - uid: 35294 components: - type: Transform pos: -41.5,-77.5 parent: 2 - - uid: 35451 + - uid: 35295 components: - type: Transform pos: -126.5,32.5 parent: 2 - - uid: 35452 + - uid: 35296 components: - type: Transform pos: 60.5,-38.5 parent: 2 - - uid: 35453 + - uid: 35297 components: - type: Transform pos: 47.5,-65.5 parent: 2 - - uid: 35454 + - uid: 35298 components: - type: Transform pos: 45.5,-76.5 parent: 2 - - uid: 35455 + - uid: 35299 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 35456 + - uid: 35300 components: - type: Transform pos: -127.5,33.5 parent: 2 - - uid: 35457 + - uid: 35301 components: - type: Transform pos: -42.5,-78.5 parent: 2 - - uid: 35458 + - uid: 35302 components: - type: Transform pos: 47.5,-66.5 parent: 2 - - uid: 35459 + - uid: 35303 components: - type: Transform pos: 47.5,-72.5 parent: 2 - - uid: 35460 + - uid: 35304 components: - type: Transform pos: -45.5,-60.5 parent: 2 - - uid: 35461 + - uid: 35305 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - uid: 35462 + - uid: 35306 components: - type: Transform pos: -125.5,30.5 parent: 2 - - uid: 35463 + - uid: 35307 components: - type: Transform pos: -127.5,28.5 parent: 2 - - uid: 35464 + - uid: 35308 components: - type: Transform pos: -127.5,27.5 parent: 2 - - uid: 35465 + - uid: 35309 components: - type: Transform pos: -37.5,-81.5 parent: 2 - - uid: 35466 + - uid: 35310 components: - type: Transform pos: 44.5,-70.5 parent: 2 - - uid: 35467 + - uid: 35311 components: - type: Transform pos: -50.5,-54.5 parent: 2 - - uid: 35468 + - uid: 35312 components: - type: Transform pos: 47.5,-70.5 parent: 2 - - uid: 35469 + - uid: 35313 components: - type: Transform pos: 45.5,-68.5 parent: 2 - - uid: 35470 + - uid: 35314 components: - type: Transform pos: 55.5,-51.5 parent: 2 - - uid: 35471 + - uid: 35315 components: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 35472 + - uid: 35316 components: - type: Transform pos: 48.5,-61.5 parent: 2 - - uid: 35473 + - uid: 35317 components: - type: Transform pos: -50.5,-53.5 parent: 2 - - uid: 35474 + - uid: 35318 components: - type: Transform pos: -126.5,31.5 parent: 2 - - uid: 35475 + - uid: 35319 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 35476 + - uid: 35320 components: - type: Transform pos: 56.5,-52.5 parent: 2 - - uid: 35477 + - uid: 35321 components: - type: Transform pos: -42.5,-77.5 parent: 2 - - uid: 35478 + - uid: 35322 components: - type: Transform pos: 47.5,-73.5 parent: 2 - - uid: 35479 + - uid: 35323 components: - type: Transform pos: 46.5,-67.5 parent: 2 - - uid: 35480 + - uid: 35324 components: - type: Transform pos: 47.5,-60.5 parent: 2 - - uid: 35481 + - uid: 35325 components: - type: Transform pos: 55.5,-50.5 parent: 2 - - uid: 35482 + - uid: 35326 components: - type: Transform pos: 47.5,-74.5 parent: 2 - - uid: 35483 + - uid: 35327 components: - type: Transform pos: -35.5,-82.5 parent: 2 - - uid: 35484 + - uid: 35328 components: - type: Transform pos: -125.5,26.5 parent: 2 - - uid: 35485 + - uid: 35329 components: - type: Transform pos: 43.5,-76.5 parent: 2 - - uid: 35486 + - uid: 35330 components: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 35487 + - uid: 35331 components: - type: Transform pos: 44.5,-76.5 parent: 2 - - uid: 35488 + - uid: 35332 components: - type: Transform pos: 47.5,-75.5 parent: 2 - - uid: 35489 + - uid: 35333 components: - type: Transform pos: -43.5,-58.5 parent: 2 - - uid: 35490 + - uid: 35334 components: - type: Transform pos: -125.5,29.5 parent: 2 - - uid: 35491 + - uid: 35335 components: - type: Transform pos: -45.5,-59.5 parent: 2 - - uid: 35492 + - uid: 35336 components: - type: Transform pos: 46.5,-75.5 parent: 2 - - uid: 35493 + - uid: 35337 components: - type: Transform pos: -125.5,27.5 parent: 2 - - uid: 35494 + - uid: 35338 components: - type: Transform pos: -29.5,-81.5 parent: 2 - - uid: 35495 + - uid: 35339 components: - type: Transform pos: -42.5,-79.5 parent: 2 - - uid: 35496 + - uid: 35340 components: - type: Transform pos: -36.5,-81.5 parent: 2 - - uid: 35497 + - uid: 35341 components: - type: Transform pos: -32.5,-81.5 parent: 2 - - uid: 35498 + - uid: 35342 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 35499 + - uid: 35343 components: - type: Transform pos: -35.5,-81.5 parent: 2 - - uid: 35500 + - uid: 35344 components: - type: Transform pos: -33.5,-83.5 parent: 2 - - uid: 35501 + - uid: 35345 components: - type: Transform pos: -126.5,28.5 parent: 2 - - uid: 35502 + - uid: 35346 components: - type: Transform pos: -40.5,-81.5 parent: 2 - - uid: 35503 + - uid: 35347 components: - type: Transform pos: -51.5,-52.5 parent: 2 - - uid: 35504 + - uid: 35348 components: - type: Transform pos: 44.5,-74.5 parent: 2 - - uid: 35505 + - uid: 35349 components: - type: Transform pos: 45.5,-69.5 parent: 2 - - uid: 35506 + - uid: 35350 components: - type: Transform pos: -45.5,-63.5 parent: 2 - - uid: 35507 + - uid: 35351 components: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 35508 + - uid: 35352 components: - type: Transform pos: -45.5,-64.5 parent: 2 - - uid: 35509 + - uid: 35353 components: - type: Transform pos: -45.5,-65.5 parent: 2 - - uid: 35510 + - uid: 35354 components: - type: Transform pos: 12.5,-70.5 parent: 2 - - uid: 35511 + - uid: 35355 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 35512 + - uid: 35356 components: - type: Transform pos: -34.5,-83.5 parent: 2 - - uid: 35513 + - uid: 35357 components: - type: Transform pos: -33.5,-82.5 parent: 2 - - uid: 35514 + - uid: 35358 components: - type: Transform pos: -35.5,-83.5 parent: 2 - - uid: 35515 + - uid: 35359 components: - type: Transform pos: 58.5,-39.5 parent: 2 - - uid: 35516 + - uid: 35360 components: - type: Transform pos: 58.5,-38.5 parent: 2 - - uid: 35517 + - uid: 35361 components: - type: Transform pos: 59.5,-38.5 parent: 2 - - uid: 35518 + - uid: 35362 components: - type: Transform pos: 61.5,-38.5 parent: 2 - - uid: 35519 + - uid: 35363 components: - type: Transform pos: -124.5,32.5 parent: 2 - - uid: 35520 + - uid: 35364 components: - type: Transform pos: -124.5,33.5 parent: 2 - - uid: 35521 + - uid: 35365 components: - type: Transform pos: -124.5,31.5 parent: 2 - - uid: 35522 + - uid: 35366 components: - type: Transform pos: -124.5,29.5 parent: 2 - - uid: 35523 + - uid: 35367 components: - type: Transform pos: -124.5,28.5 parent: 2 - - uid: 35524 + - uid: 35368 components: - type: Transform pos: -122.5,30.5 parent: 2 - - uid: 35525 + - uid: 35369 components: - type: Transform pos: 58.5,-48.5 parent: 2 - - uid: 35526 + - uid: 35370 components: - type: Transform pos: -123.5,29.5 parent: 2 - - uid: 35527 + - uid: 35371 components: - type: Transform pos: -124.5,30.5 parent: 2 - - uid: 35528 + - uid: 35372 components: - type: Transform pos: -125.5,32.5 parent: 2 - - uid: 35529 + - uid: 35373 components: - type: Transform pos: -125.5,33.5 parent: 2 - - uid: 35530 + - uid: 35374 components: - type: Transform pos: 14.5,83.5 parent: 2 - - uid: 35531 + - uid: 35375 components: - type: Transform pos: 44.5,-73.5 parent: 2 - - uid: 35532 + - uid: 35376 components: - type: Transform pos: 55.5,-53.5 parent: 2 - - uid: 35533 + - uid: 35377 components: - type: Transform pos: 44.5,-68.5 parent: 2 - - uid: 35534 + - uid: 35378 components: - type: Transform pos: 62.5,-38.5 parent: 2 - - uid: 35535 + - uid: 35379 components: - type: Transform pos: 44.5,-71.5 parent: 2 - - uid: 35536 + - uid: 35380 components: - type: Transform pos: 45.5,-74.5 parent: 2 - - uid: 35537 + - uid: 35381 components: - type: Transform pos: 44.5,-67.5 parent: 2 - - uid: 35538 + - uid: 35382 components: - type: Transform pos: 45.5,-73.5 parent: 2 - - uid: 35539 + - uid: 35383 components: - type: Transform pos: 16.5,83.5 parent: 2 - - uid: 35540 + - uid: 35384 components: - type: Transform pos: 15.5,84.5 parent: 2 - - uid: 35541 + - uid: 35385 components: - type: Transform pos: 13.5,84.5 parent: 2 - - uid: 35542 + - uid: 35386 components: - type: Transform pos: 16.5,84.5 parent: 2 - - uid: 35543 + - uid: 35387 components: - type: Transform pos: 17.5,83.5 parent: 2 - - uid: 35544 + - uid: 35388 components: - type: Transform pos: 17.5,84.5 parent: 2 - - uid: 35545 + - uid: 35389 components: - type: Transform pos: 17.5,85.5 parent: 2 - - uid: 35546 + - uid: 35390 components: - type: Transform pos: 18.5,85.5 parent: 2 - - uid: 35547 + - uid: 35391 components: - type: Transform pos: 16.5,74.5 parent: 2 - - uid: 35548 + - uid: 35392 components: - type: Transform pos: 18.5,74.5 parent: 2 - - uid: 35549 + - uid: 35393 components: - type: Transform pos: 19.5,74.5 parent: 2 - - uid: 35550 + - uid: 35394 components: - type: Transform pos: 20.5,74.5 parent: 2 - - uid: 35551 + - uid: 35395 components: - type: Transform pos: 21.5,74.5 parent: 2 - - uid: 35552 + - uid: 35396 components: - type: Transform pos: 58.5,-33.5 parent: 2 - - uid: 35553 + - uid: 35397 components: - type: Transform pos: 21.5,75.5 parent: 2 - - uid: 35554 + - uid: 35398 components: - type: Transform pos: 20.5,75.5 parent: 2 - - uid: 35555 + - uid: 35399 components: - type: Transform pos: 19.5,75.5 parent: 2 - - uid: 35556 + - uid: 35400 components: - type: Transform pos: 18.5,75.5 parent: 2 - - uid: 35557 + - uid: 35401 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 35558 + - uid: 35402 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 35559 + - uid: 35403 components: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 35560 + - uid: 35404 components: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 35561 + - uid: 35405 components: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 35562 + - uid: 35406 components: - type: Transform pos: 37.5,14.5 parent: 2 - - uid: 35563 + - uid: 35407 components: - type: Transform pos: 36.5,14.5 parent: 2 - - uid: 35564 + - uid: 35408 components: - type: Transform pos: 36.5,15.5 parent: 2 - - uid: 35565 + - uid: 35409 components: - type: Transform pos: 35.5,14.5 parent: 2 - - uid: 35566 + - uid: 35410 components: - type: Transform pos: 35.5,15.5 parent: 2 - - uid: 35567 + - uid: 35411 components: - type: Transform pos: 34.5,14.5 parent: 2 - - uid: 35568 + - uid: 35412 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 35569 + - uid: 35413 components: - type: Transform pos: 33.5,15.5 parent: 2 - - uid: 35570 + - uid: 35414 components: - type: Transform pos: 38.5,15.5 parent: 2 - - uid: 35571 + - uid: 35415 components: - type: Transform pos: 58.5,-35.5 parent: 2 - - uid: 35572 + - uid: 35416 components: - type: Transform pos: 58.5,-36.5 parent: 2 - - uid: 35573 + - uid: 35417 components: - type: Transform pos: 58.5,-37.5 parent: 2 - - uid: 35574 + - uid: 35418 components: - type: Transform pos: 59.5,-37.5 parent: 2 - - uid: 35575 + - uid: 35419 components: - type: Transform pos: 59.5,-35.5 parent: 2 - - uid: 35576 + - uid: 35420 components: - type: Transform pos: 59.5,-34.5 parent: 2 - - uid: 35577 + - uid: 35421 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 35578 + - uid: 35422 components: - type: Transform pos: 60.5,-36.5 parent: 2 - - uid: 35579 + - uid: 35423 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 35580 + - uid: 35424 components: - type: Transform pos: 61.5,-36.5 parent: 2 - - uid: 35581 + - uid: 35425 components: - type: Transform pos: 61.5,-37.5 parent: 2 - - uid: 35582 + - uid: 35426 components: - type: Transform pos: 62.5,-36.5 parent: 2 - - uid: 35583 + - uid: 35427 components: - type: Transform pos: 62.5,-37.5 parent: 2 - - uid: 35584 + - uid: 35428 components: - type: Transform pos: 63.5,-36.5 parent: 2 - - uid: 35585 + - uid: 35429 components: - type: Transform pos: 64.5,-37.5 parent: 2 - - uid: 35586 + - uid: 35430 components: - type: Transform pos: 55.5,-52.5 parent: 2 - - uid: 35587 + - uid: 35431 components: - type: Transform pos: 61.5,-39.5 parent: 2 - - uid: 35588 + - uid: 35432 components: - type: Transform pos: 45.5,-72.5 parent: 2 - - uid: 35589 + - uid: 35433 components: - type: Transform pos: 45.5,-71.5 parent: 2 - - uid: 35590 + - uid: 35434 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 35591 + - uid: 35435 components: - type: Transform pos: 47.5,-68.5 parent: 2 - - uid: 35592 + - uid: 35436 components: - type: Transform pos: 46.5,-69.5 parent: 2 - - uid: 35593 + - uid: 35437 components: - type: Transform pos: 47.5,-69.5 parent: 2 - - uid: 35594 + - uid: 35438 components: - type: Transform pos: 45.5,-66.5 parent: 2 - - uid: 35595 + - uid: 35439 components: - type: Transform pos: 45.5,-65.5 parent: 2 - - uid: 35596 + - uid: 35440 components: - type: Transform pos: 46.5,-73.5 parent: 2 - - uid: 35597 + - uid: 35441 components: - type: Transform pos: 46.5,-72.5 parent: 2 - - uid: 35598 + - uid: 35442 components: - type: Transform pos: 46.5,-71.5 parent: 2 - - uid: 35599 + - uid: 35443 components: - type: Transform pos: 46.5,-70.5 parent: 2 - - uid: 35600 + - uid: 35444 components: - type: Transform pos: 46.5,-68.5 parent: 2 - - uid: 35601 + - uid: 35445 components: - type: Transform pos: 45.5,-67.5 parent: 2 - - uid: 35602 + - uid: 35446 components: - type: Transform pos: 47.5,-67.5 parent: 2 - - uid: 35603 + - uid: 35447 components: - type: Transform pos: 46.5,-66.5 parent: 2 - - uid: 35604 + - uid: 35448 components: - type: Transform pos: 48.5,-62.5 parent: 2 - - uid: 35605 + - uid: 35449 components: - type: Transform pos: 48.5,-64.5 parent: 2 - - uid: 35606 + - uid: 35450 components: - type: Transform pos: 48.5,-65.5 parent: 2 - - uid: 35607 + - uid: 35451 components: - type: Transform pos: 48.5,-66.5 parent: 2 - - uid: 35608 + - uid: 35452 components: - type: Transform pos: 48.5,-67.5 parent: 2 - - uid: 35609 + - uid: 35453 components: - type: Transform pos: 48.5,-68.5 parent: 2 - - uid: 35610 + - uid: 35454 components: - type: Transform pos: 48.5,-69.5 parent: 2 - - uid: 35611 + - uid: 35455 components: - type: Transform pos: 48.5,-70.5 parent: 2 - - uid: 35612 + - uid: 35456 components: - type: Transform pos: 48.5,-72.5 parent: 2 - - uid: 35613 + - uid: 35457 components: - type: Transform pos: 48.5,-73.5 parent: 2 - - uid: 35614 + - uid: 35458 components: - type: Transform pos: 48.5,-74.5 parent: 2 - - uid: 35615 + - uid: 35459 components: - type: Transform pos: 67.5,-37.5 parent: 2 - - uid: 35616 + - uid: 35460 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 35617 + - uid: 35461 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 35618 + - uid: 35462 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 35619 + - uid: 35463 components: - type: Transform pos: 66.5,-37.5 parent: 2 - - uid: 35620 + - uid: 35464 components: - type: Transform pos: 49.5,-68.5 parent: 2 - - uid: 35621 + - uid: 35465 components: - type: Transform pos: 49.5,-67.5 parent: 2 - - uid: 35622 + - uid: 35466 components: - type: Transform pos: 50.5,-68.5 parent: 2 - - uid: 35623 + - uid: 35467 components: - type: Transform pos: 50.5,-69.5 parent: 2 - - uid: 35624 + - uid: 35468 components: - type: Transform pos: 50.5,-70.5 parent: 2 - - uid: 35625 + - uid: 35469 components: - type: Transform pos: 49.5,-65.5 parent: 2 - - uid: 35626 + - uid: 35470 components: - type: Transform pos: 49.5,-64.5 parent: 2 - - uid: 35627 + - uid: 35471 components: - type: Transform pos: 49.5,-63.5 parent: 2 - - uid: 35628 + - uid: 35472 components: - type: Transform pos: 68.5,-37.5 parent: 2 - - uid: 35629 + - uid: 35473 components: - type: Transform pos: 69.5,-37.5 parent: 2 - - uid: 35630 + - uid: 35474 components: - type: Transform pos: 69.5,-38.5 parent: 2 - - uid: 35631 + - uid: 35475 components: - type: Transform pos: 70.5,-38.5 parent: 2 - - uid: 35632 + - uid: 35476 components: - type: Transform pos: 69.5,-36.5 parent: 2 - - uid: 35633 + - uid: 35477 components: - type: Transform pos: 70.5,-36.5 parent: 2 - - uid: 35634 + - uid: 35478 components: - type: Transform pos: 70.5,-35.5 parent: 2 - - uid: 35635 + - uid: 35479 components: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 35636 + - uid: 35480 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 35637 + - uid: 35481 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 35638 + - uid: 35482 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 35639 + - uid: 35483 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 35640 + - uid: 35484 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 35641 + - uid: 35485 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 35642 + - uid: 35486 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 35643 + - uid: 35487 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 35644 + - uid: 35488 components: - type: Transform pos: -45.5,-69.5 parent: 2 - - uid: 35645 + - uid: 35489 components: - type: Transform pos: -45.5,-70.5 parent: 2 - - uid: 35646 + - uid: 35490 components: - type: Transform pos: -45.5,-71.5 parent: 2 - - uid: 35647 + - uid: 35491 components: - type: Transform pos: -44.5,-59.5 parent: 2 - - uid: 35648 + - uid: 35492 components: - type: Transform pos: -44.5,-60.5 parent: 2 - - uid: 35649 + - uid: 35493 components: - type: Transform pos: -44.5,-61.5 parent: 2 - - uid: 35650 + - uid: 35494 components: - type: Transform pos: -44.5,-64.5 parent: 2 - - uid: 35651 + - uid: 35495 components: - type: Transform pos: -44.5,-66.5 parent: 2 - - uid: 35652 + - uid: 35496 components: - type: Transform pos: -44.5,-68.5 parent: 2 - - uid: 35653 + - uid: 35497 components: - type: Transform pos: -44.5,-70.5 parent: 2 - - uid: 35654 + - uid: 35498 components: - type: Transform pos: -44.5,-71.5 parent: 2 - - uid: 35655 + - uid: 35499 components: - type: Transform pos: -43.5,-59.5 parent: 2 - - uid: 35656 + - uid: 35500 components: - type: Transform pos: -43.5,-60.5 parent: 2 - - uid: 35657 + - uid: 35501 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 35658 + - uid: 35502 components: - type: Transform pos: -43.5,-66.5 parent: 2 - - uid: 35659 + - uid: 35503 components: - type: Transform pos: -43.5,-67.5 parent: 2 - - uid: 35660 + - uid: 35504 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 35661 + - uid: 35505 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 35662 + - uid: 35506 components: - type: Transform pos: -43.5,-70.5 parent: 2 - - uid: 35663 + - uid: 35507 components: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 35664 + - uid: 35508 components: - type: Transform pos: -42.5,-59.5 parent: 2 - - uid: 35665 + - uid: 35509 components: - type: Transform pos: -42.5,-60.5 parent: 2 - - uid: 35666 + - uid: 35510 components: - type: Transform pos: -42.5,-61.5 parent: 2 - - uid: 35667 + - uid: 35511 components: - type: Transform pos: -42.5,-62.5 parent: 2 - - uid: 35668 + - uid: 35512 components: - type: Transform pos: -42.5,-63.5 parent: 2 - - uid: 35669 + - uid: 35513 components: - type: Transform pos: -42.5,-65.5 parent: 2 - - uid: 35670 + - uid: 35514 components: - type: Transform pos: -42.5,-66.5 parent: 2 - - uid: 35671 + - uid: 35515 components: - type: Transform pos: -42.5,-68.5 parent: 2 - - uid: 35672 + - uid: 35516 components: - type: Transform pos: -42.5,-69.5 parent: 2 - - uid: 35673 + - uid: 35517 components: - type: Transform pos: -42.5,-70.5 parent: 2 - - uid: 35674 + - uid: 35518 components: - type: Transform pos: -42.5,-71.5 parent: 2 - - uid: 35675 + - uid: 35519 components: - type: Transform pos: -46.5,-70.5 parent: 2 - - uid: 35676 + - uid: 35520 components: - type: Transform pos: -46.5,-69.5 parent: 2 - - uid: 35677 + - uid: 35521 components: - type: Transform pos: -46.5,-68.5 parent: 2 - - uid: 35678 + - uid: 35522 components: - type: Transform pos: -46.5,-66.5 parent: 2 - - uid: 35679 + - uid: 35523 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 35680 + - uid: 35524 components: - type: Transform pos: -46.5,-64.5 parent: 2 - - uid: 35681 + - uid: 35525 components: - type: Transform pos: -46.5,-62.5 parent: 2 - - uid: 35682 + - uid: 35526 components: - type: Transform pos: -46.5,-61.5 parent: 2 - - uid: 35683 + - uid: 35527 components: - type: Transform pos: -46.5,-60.5 parent: 2 - - uid: 35684 + - uid: 35528 components: - type: Transform pos: -48.5,-63.5 parent: 2 - - uid: 35685 + - uid: 35529 components: - type: Transform pos: -48.5,-64.5 parent: 2 - - uid: 35686 + - uid: 35530 components: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 35687 + - uid: 35531 components: - type: Transform pos: -47.5,-63.5 parent: 2 - - uid: 35688 + - uid: 35532 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 35689 + - uid: 35533 components: - type: Transform pos: -47.5,-62.5 parent: 2 - - uid: 35690 + - uid: 35534 components: - type: Transform pos: -47.5,-66.5 parent: 2 - - uid: 35691 + - uid: 35535 components: - type: Transform pos: -47.5,-67.5 parent: 2 - - uid: 35692 + - uid: 35536 components: - type: Transform pos: -47.5,-68.5 parent: 2 - - uid: 35693 + - uid: 35537 components: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 35694 + - uid: 35538 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 35695 + - uid: 35539 components: - type: Transform pos: -49.5,-53.5 parent: 2 - - uid: 35696 + - uid: 35540 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 35697 + - uid: 35541 components: - type: Transform pos: -49.5,-51.5 parent: 2 - - uid: 35698 + - uid: 35542 components: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 35699 + - uid: 35543 components: - type: Transform pos: -48.5,-53.5 parent: 2 - - uid: 35700 + - uid: 35544 components: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 35701 + - uid: 35545 components: - type: Transform pos: -48.5,-51.5 parent: 2 - - uid: 35702 + - uid: 35546 components: - type: Transform pos: -48.5,-50.5 parent: 2 - - uid: 35703 + - uid: 35547 components: - type: Transform pos: -47.5,-53.5 parent: 2 - - uid: 35704 + - uid: 35548 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 35705 + - uid: 35549 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 35706 + - uid: 35550 components: - type: Transform pos: -46.5,-53.5 parent: 2 - - uid: 35707 + - uid: 35551 components: - type: Transform pos: -46.5,-51.5 parent: 2 - - uid: 35708 + - uid: 35552 components: - type: Transform pos: -46.5,-50.5 parent: 2 - - uid: 35709 + - uid: 35553 components: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 35710 + - uid: 35554 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 35711 + - uid: 35555 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 35712 + - uid: 35556 components: - type: Transform pos: -44.5,-50.5 parent: 2 - - uid: 35713 + - uid: 35557 components: - type: Transform pos: -44.5,-51.5 parent: 2 - - uid: 35714 + - uid: 35558 components: - type: Transform pos: -44.5,-52.5 parent: 2 - - uid: 35715 + - uid: 35559 components: - type: Transform pos: -43.5,-50.5 parent: 2 - - uid: 35716 + - uid: 35560 components: - type: Transform pos: -52.5,-50.5 parent: 2 - - uid: 35717 + - uid: 35561 components: - type: Transform pos: -52.5,-51.5 parent: 2 - - uid: 35718 + - uid: 35562 components: - type: Transform pos: -53.5,-51.5 parent: 2 - - uid: 35719 + - uid: 35563 components: - type: Transform pos: -48.5,-54.5 parent: 2 - - uid: 35720 + - uid: 35564 components: - type: Transform pos: -128.5,31.5 parent: 2 - - uid: 35721 + - uid: 35565 components: - type: Transform pos: -123.5,33.5 parent: 2 - - uid: 35722 + - uid: 35566 components: - type: Transform pos: -78.5,-33.5 parent: 2 - - uid: 35723 + - uid: 35567 components: - type: Transform pos: -78.5,-34.5 parent: 2 - - uid: 35724 + - uid: 35568 components: - type: Transform pos: -79.5,-34.5 parent: 2 - - uid: 35725 + - uid: 35569 components: - type: Transform pos: -77.5,-33.5 parent: 2 - - uid: 35726 + - uid: 35570 components: - type: Transform pos: -79.5,-32.5 parent: 2 - - uid: 35727 + - uid: 35571 components: - type: Transform pos: -77.5,-34.5 parent: 2 - - uid: 35728 + - uid: 35572 components: - type: Transform pos: -77.5,-35.5 parent: 2 - - uid: 35729 + - uid: 35573 components: - type: Transform pos: -77.5,-36.5 parent: 2 - - uid: 35730 + - uid: 35574 components: - type: Transform pos: -76.5,-34.5 parent: 2 - - uid: 35731 + - uid: 35575 components: - type: Transform pos: -76.5,-35.5 parent: 2 - - uid: 35732 + - uid: 35576 components: - type: Transform pos: -76.5,-36.5 parent: 2 - - uid: 35733 + - uid: 35577 components: - type: Transform pos: -78.5,-35.5 parent: 2 - - uid: 35734 + - uid: 35578 components: - type: Transform pos: -76.5,-38.5 parent: 2 - - uid: 35735 + - uid: 35579 components: - type: Transform pos: -75.5,-37.5 parent: 2 - - uid: 35736 + - uid: 35580 components: - type: Transform pos: -75.5,-38.5 parent: 2 - - uid: 35737 + - uid: 35581 components: - type: Transform pos: -74.5,-37.5 parent: 2 - - uid: 35738 + - uid: 35582 components: - type: Transform pos: -74.5,-38.5 parent: 2 - - uid: 35739 + - uid: 35583 components: - type: Transform pos: -73.5,-37.5 parent: 2 - - uid: 35740 + - uid: 35584 components: - type: Transform pos: -73.5,57.5 parent: 2 - - uid: 35741 + - uid: 35585 components: - type: Transform pos: -73.5,58.5 parent: 2 - - uid: 35742 + - uid: 35586 components: - type: Transform pos: -73.5,59.5 parent: 2 - - uid: 35743 + - uid: 35587 components: - type: Transform pos: -73.5,60.5 parent: 2 - - uid: 35744 + - uid: 35588 components: - type: Transform pos: -73.5,61.5 parent: 2 - - uid: 35745 + - uid: 35589 components: - type: Transform pos: -73.5,62.5 parent: 2 - - uid: 35746 + - uid: 35590 components: - type: Transform pos: -73.5,63.5 parent: 2 - - uid: 35747 + - uid: 35591 components: - type: Transform pos: -74.5,62.5 parent: 2 - - uid: 35748 + - uid: 35592 components: - type: Transform pos: -74.5,61.5 parent: 2 - - uid: 35749 + - uid: 35593 components: - type: Transform pos: -74.5,60.5 parent: 2 - - uid: 35750 + - uid: 35594 components: - type: Transform pos: -72.5,63.5 parent: 2 - - uid: 35751 + - uid: 35595 components: - type: Transform pos: -72.5,61.5 parent: 2 - - uid: 35752 + - uid: 35596 components: - type: Transform pos: -72.5,60.5 parent: 2 - - uid: 35753 + - uid: 35597 components: - type: Transform pos: -71.5,63.5 parent: 2 - - uid: 35754 + - uid: 35598 components: - type: Transform pos: -71.5,62.5 parent: 2 - - uid: 35755 + - uid: 35599 components: - type: Transform pos: -71.5,61.5 parent: 2 - - uid: 35756 + - uid: 35600 components: - type: Transform pos: -71.5,60.5 parent: 2 - - uid: 35757 + - uid: 35601 components: - type: Transform pos: -70.5,63.5 parent: 2 - - uid: 35758 + - uid: 35602 components: - type: Transform pos: -70.5,62.5 parent: 2 - - uid: 35759 + - uid: 35603 components: - type: Transform pos: -70.5,61.5 parent: 2 - - uid: 35760 + - uid: 35604 components: - type: Transform pos: -70.5,60.5 parent: 2 - - uid: 35761 + - uid: 35605 components: - type: Transform pos: -69.5,63.5 parent: 2 - - uid: 35762 + - uid: 35606 components: - type: Transform pos: -69.5,62.5 parent: 2 - - uid: 35763 + - uid: 35607 components: - type: Transform pos: -69.5,61.5 parent: 2 - - uid: 35764 + - uid: 35608 components: - type: Transform pos: -71.5,64.5 parent: 2 - - uid: 35765 + - uid: 35609 components: - type: Transform pos: -70.5,64.5 parent: 2 - - uid: 35766 + - uid: 35610 components: - type: Transform pos: -69.5,64.5 parent: 2 - - uid: 35767 + - uid: 35611 components: - type: Transform pos: -67.5,64.5 parent: 2 - - uid: 35768 + - uid: 35612 components: - type: Transform pos: -68.5,65.5 parent: 2 - - uid: 35769 + - uid: 35613 components: - type: Transform pos: -69.5,65.5 parent: 2 - - uid: 35770 + - uid: 35614 components: - type: Transform pos: -70.5,65.5 parent: 2 - - uid: 35771 + - uid: 35615 components: - type: Transform pos: -109.5,35.5 parent: 2 - - uid: 35772 + - uid: 35616 components: - type: Transform pos: -109.5,34.5 parent: 2 - - uid: 35773 + - uid: 35617 components: - type: Transform pos: -109.5,33.5 parent: 2 - - uid: 35774 + - uid: 35618 components: - type: Transform pos: -109.5,32.5 parent: 2 - - uid: 35775 + - uid: 35619 components: - type: Transform pos: -109.5,31.5 parent: 2 - - uid: 35776 + - uid: 35620 components: - type: Transform pos: -109.5,30.5 parent: 2 - - uid: 35777 + - uid: 35621 components: - type: Transform pos: -109.5,29.5 parent: 2 - - uid: 35778 + - uid: 35622 components: - type: Transform pos: -108.5,30.5 parent: 2 - - uid: 35779 + - uid: 35623 components: - type: Transform pos: -108.5,31.5 parent: 2 - - uid: 35780 + - uid: 35624 components: - type: Transform pos: -108.5,32.5 parent: 2 - - uid: 35781 + - uid: 35625 components: - type: Transform pos: -108.5,34.5 parent: 2 - - uid: 35782 + - uid: 35626 components: - type: Transform pos: -108.5,35.5 parent: 2 - - uid: 35783 + - uid: 35627 components: - type: Transform pos: -108.5,36.5 parent: 2 - - uid: 35784 + - uid: 35628 components: - type: Transform pos: -107.5,34.5 parent: 2 - - uid: 35785 + - uid: 35629 components: - type: Transform pos: -107.5,33.5 parent: 2 - - uid: 35786 + - uid: 35630 components: - type: Transform pos: -107.5,32.5 parent: 2 - - uid: 35787 + - uid: 35631 components: - type: Transform pos: -107.5,31.5 parent: 2 - - uid: 35788 + - uid: 35632 components: - type: Transform pos: -111.5,29.5 parent: 2 - - uid: 35789 + - uid: 35633 components: - type: Transform pos: -110.5,29.5 parent: 2 - - uid: 35790 + - uid: 35634 components: - type: Transform pos: -112.5,28.5 parent: 2 - - uid: 35791 + - uid: 35635 components: - type: Transform pos: -110.5,28.5 parent: 2 - - uid: 35792 + - uid: 35636 components: - type: Transform pos: -111.5,25.5 parent: 2 - - uid: 35793 + - uid: 35637 components: - type: Transform pos: -109.5,26.5 parent: 2 - - uid: 35794 + - uid: 35638 components: - type: Transform pos: -109.5,25.5 parent: 2 - - uid: 35795 + - uid: 35639 components: - type: Transform pos: -110.5,25.5 parent: 2 - - uid: 35796 + - uid: 35640 components: - type: Transform pos: -110.5,27.5 parent: 2 - - uid: 35797 + - uid: 35641 components: - type: Transform pos: -111.5,27.5 parent: 2 - - uid: 35798 + - uid: 35642 components: - type: Transform pos: -111.5,26.5 parent: 2 - - uid: 35799 + - uid: 35643 components: - type: Transform pos: -110.5,47.5 parent: 2 - - uid: 35800 + - uid: 35644 components: - type: Transform pos: -110.5,48.5 parent: 2 - - uid: 35801 + - uid: 35645 components: - type: Transform pos: -110.5,49.5 parent: 2 - - uid: 35802 + - uid: 35646 components: - type: Transform pos: -110.5,50.5 parent: 2 - - uid: 35803 + - uid: 35647 components: - type: Transform pos: -110.5,51.5 parent: 2 - - uid: 35804 + - uid: 35648 components: - type: Transform pos: -110.5,52.5 parent: 2 - - uid: 35805 + - uid: 35649 components: - type: Transform pos: -110.5,53.5 parent: 2 - - uid: 35806 + - uid: 35650 components: - type: Transform pos: -110.5,54.5 parent: 2 - - uid: 35807 + - uid: 35651 components: - type: Transform pos: -110.5,55.5 parent: 2 - - uid: 35808 + - uid: 35652 components: - type: Transform pos: -111.5,47.5 parent: 2 - - uid: 35809 + - uid: 35653 components: - type: Transform pos: -111.5,48.5 parent: 2 - - uid: 35810 + - uid: 35654 components: - type: Transform pos: -111.5,49.5 parent: 2 - - uid: 35811 + - uid: 35655 components: - type: Transform pos: -111.5,50.5 parent: 2 - - uid: 35812 + - uid: 35656 components: - type: Transform pos: -111.5,51.5 parent: 2 - - uid: 35813 + - uid: 35657 components: - type: Transform pos: -111.5,52.5 parent: 2 - - uid: 35814 + - uid: 35658 components: - type: Transform pos: -111.5,54.5 parent: 2 - - uid: 35815 + - uid: 35659 components: - type: Transform pos: -111.5,55.5 parent: 2 - - uid: 35816 + - uid: 35660 components: - type: Transform pos: -106.5,46.5 parent: 2 - - uid: 35817 + - uid: 35661 components: - type: Transform pos: -106.5,47.5 parent: 2 - - uid: 35818 + - uid: 35662 components: - type: Transform pos: -106.5,48.5 parent: 2 - - uid: 35819 + - uid: 35663 components: - type: Transform pos: -106.5,49.5 parent: 2 - - uid: 35820 + - uid: 35664 components: - type: Transform pos: -106.5,50.5 parent: 2 - - uid: 35821 + - uid: 35665 components: - type: Transform pos: -106.5,51.5 parent: 2 - - uid: 35822 + - uid: 35666 components: - type: Transform pos: -106.5,52.5 parent: 2 - - uid: 35823 + - uid: 35667 components: - type: Transform pos: -106.5,53.5 parent: 2 - - uid: 35824 + - uid: 35668 components: - type: Transform pos: -107.5,47.5 parent: 2 - - uid: 35825 + - uid: 35669 components: - type: Transform pos: -107.5,48.5 parent: 2 - - uid: 35826 + - uid: 35670 components: - type: Transform pos: -107.5,50.5 parent: 2 - - uid: 35827 + - uid: 35671 components: - type: Transform pos: -107.5,51.5 parent: 2 - - uid: 35828 + - uid: 35672 components: - type: Transform pos: -107.5,52.5 parent: 2 - - uid: 35829 + - uid: 35673 components: - type: Transform pos: -107.5,53.5 parent: 2 - - uid: 35830 + - uid: 35674 components: - type: Transform pos: -107.5,54.5 parent: 2 - - uid: 35831 + - uid: 35675 components: - type: Transform pos: -108.5,48.5 parent: 2 - - uid: 35832 + - uid: 35676 components: - type: Transform pos: -108.5,49.5 parent: 2 - - uid: 35833 + - uid: 35677 components: - type: Transform pos: -108.5,50.5 parent: 2 - - uid: 35834 + - uid: 35678 components: - type: Transform pos: -108.5,51.5 parent: 2 - - uid: 35835 + - uid: 35679 components: - type: Transform pos: -108.5,52.5 parent: 2 - - uid: 35836 + - uid: 35680 components: - type: Transform pos: -108.5,54.5 parent: 2 - - uid: 35837 + - uid: 35681 components: - type: Transform pos: -108.5,55.5 parent: 2 - - uid: 35838 + - uid: 35682 components: - type: Transform pos: -109.5,48.5 parent: 2 - - uid: 35839 + - uid: 35683 components: - type: Transform pos: -109.5,49.5 parent: 2 - - uid: 35840 + - uid: 35684 components: - type: Transform pos: -109.5,51.5 parent: 2 - - uid: 35841 + - uid: 35685 components: - type: Transform pos: -109.5,52.5 parent: 2 - - uid: 35842 + - uid: 35686 components: - type: Transform pos: -109.5,53.5 parent: 2 - - uid: 35843 + - uid: 35687 components: - type: Transform pos: -109.5,54.5 parent: 2 - - uid: 35844 + - uid: 35688 components: - type: Transform pos: -109.5,55.5 parent: 2 - - uid: 35845 + - uid: 35689 components: - type: Transform pos: -109.5,56.5 parent: 2 - - uid: 35846 + - uid: 35690 components: - type: Transform pos: -105.5,50.5 parent: 2 - - uid: 35847 + - uid: 35691 components: - type: Transform pos: -105.5,49.5 parent: 2 - - uid: 35848 + - uid: 35692 components: - type: Transform pos: -105.5,48.5 parent: 2 - - uid: 35849 + - uid: 35693 components: - type: Transform pos: -105.5,47.5 parent: 2 - - uid: 35850 + - uid: 35694 components: - type: Transform pos: -112.5,54.5 parent: 2 - - uid: 35851 + - uid: 35695 components: - type: Transform pos: -112.5,53.5 parent: 2 - - uid: 35852 + - uid: 35696 components: - type: Transform pos: -113.5,54.5 parent: 2 - - uid: 35853 + - uid: 35697 components: - type: Transform pos: -113.5,53.5 parent: 2 - - uid: 35854 + - uid: 35698 components: - type: Transform pos: -114.5,54.5 parent: 2 - - uid: 35855 + - uid: 35699 components: - type: Transform pos: -114.5,53.5 parent: 2 - - uid: 35856 + - uid: 35700 components: - type: Transform pos: -115.5,54.5 parent: 2 - - uid: 35857 + - uid: 35701 components: - type: Transform pos: -115.5,53.5 parent: 2 - - uid: 35858 + - uid: 35702 components: - type: Transform pos: -116.5,53.5 parent: 2 - - uid: 35859 + - uid: 35703 components: - type: Transform pos: -117.5,54.5 parent: 2 - - uid: 35860 + - uid: 35704 components: - type: Transform pos: -117.5,53.5 parent: 2 - - uid: 35861 + - uid: 35705 components: - type: Transform pos: -118.5,54.5 parent: 2 - - uid: 35862 + - uid: 35706 components: - type: Transform pos: -118.5,53.5 parent: 2 - - uid: 35863 + - uid: 35707 components: - type: Transform pos: -116.5,55.5 parent: 2 - - uid: 35864 + - uid: 35708 components: - type: Transform pos: -115.5,55.5 parent: 2 - - uid: 35865 + - uid: 35709 components: - type: Transform pos: -114.5,55.5 parent: 2 - - uid: 35866 + - uid: 35710 components: - type: Transform pos: -113.5,55.5 parent: 2 - - uid: 35867 + - uid: 35711 components: - type: Transform pos: -81.5,-19.5 parent: 2 - - uid: 35868 + - uid: 35712 components: - type: Transform pos: -81.5,-20.5 parent: 2 - - uid: 35869 + - uid: 35713 components: - type: Transform pos: -79.5,-21.5 parent: 2 - - uid: 35870 + - uid: 35714 components: - type: Transform pos: -82.5,-19.5 parent: 2 - - uid: 35871 + - uid: 35715 components: - type: Transform pos: -83.5,-18.5 parent: 2 - - uid: 35872 + - uid: 35716 components: - type: Transform pos: -81.5,-17.5 parent: 2 - - uid: 35873 + - uid: 35717 components: - type: Transform pos: -80.5,-17.5 parent: 2 - - uid: 35874 + - uid: 35718 components: - type: Transform pos: -80.5,-21.5 parent: 2 - - uid: 35875 + - uid: 35719 components: - type: Transform pos: -78.5,-15.5 parent: 2 - - uid: 35876 + - uid: 35720 components: - type: Transform pos: -77.5,-15.5 parent: 2 - - uid: 35877 + - uid: 35721 components: - type: Transform pos: -75.5,-15.5 parent: 2 - - uid: 35878 + - uid: 35722 components: - type: Transform pos: -76.5,-14.5 parent: 2 - - uid: 35879 + - uid: 35723 components: - type: Transform pos: -76.5,-13.5 parent: 2 - - uid: 35880 + - uid: 35724 components: - type: Transform pos: -76.5,-12.5 parent: 2 - - uid: 35881 + - uid: 35725 components: - type: Transform pos: -76.5,-11.5 parent: 2 - - uid: 35882 + - uid: 35726 components: - type: Transform pos: -75.5,-12.5 parent: 2 - - uid: 35883 + - uid: 35727 components: - type: Transform pos: -75.5,-14.5 parent: 2 - - uid: 35884 + - uid: 35728 components: - type: Transform pos: -74.5,-13.5 parent: 2 - - uid: 35885 + - uid: 35729 components: - type: Transform pos: -74.5,-14.5 parent: 2 - - uid: 35886 + - uid: 35730 components: - type: Transform pos: -73.5,-14.5 parent: 2 - - uid: 35887 + - uid: 35731 components: - type: Transform pos: -68.5,-14.5 parent: 2 - - uid: 35888 + - uid: 35732 components: - type: Transform pos: -67.5,-14.5 parent: 2 - - uid: 35889 + - uid: 35733 components: - type: Transform pos: -66.5,-14.5 parent: 2 - - uid: 35890 + - uid: 35734 components: - type: Transform pos: -65.5,-14.5 parent: 2 - - uid: 35891 + - uid: 35735 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - uid: 35892 + - uid: 35736 components: - type: Transform pos: -67.5,-15.5 parent: 2 - - uid: 35893 + - uid: 35737 components: - type: Transform pos: -68.5,-15.5 parent: 2 - - uid: 35894 + - uid: 35738 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 35895 + - uid: 35739 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 35896 + - uid: 35740 components: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 35897 + - uid: 35741 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 35898 + - uid: 35742 components: - type: Transform pos: -64.5,-9.5 parent: 2 - - uid: 35899 + - uid: 35743 components: - type: Transform pos: -63.5,-9.5 parent: 2 - - uid: 35900 + - uid: 35744 components: - type: Transform pos: -63.5,-11.5 parent: 2 - - uid: 35901 + - uid: 35745 components: - type: Transform pos: -62.5,-10.5 parent: 2 - - uid: 35902 + - uid: 35746 components: - type: Transform pos: -62.5,-9.5 parent: 2 - - uid: 40122 + - uid: 39949 components: - type: Transform pos: 18.5,6.5 - parent: 38584 - - uid: 40123 + parent: 38411 + - uid: 39950 components: - type: Transform pos: 1.5,38.5 - parent: 38584 - - uid: 40124 + parent: 38411 + - uid: 39951 components: - type: Transform pos: 1.5,37.5 - parent: 38584 - - uid: 40125 + parent: 38411 + - uid: 39952 components: - type: Transform pos: 14.5,8.5 - parent: 38584 - - uid: 40126 + parent: 38411 + - uid: 39953 components: - type: Transform pos: 15.5,7.5 - parent: 38584 - - uid: 40127 + parent: 38411 + - uid: 39954 components: - type: Transform pos: 2.5,10.5 - parent: 38584 - - uid: 40128 + parent: 38411 + - uid: 39955 components: - type: Transform pos: 17.5,6.5 - parent: 38584 - - uid: 40129 + parent: 38411 + - uid: 39956 components: - type: Transform pos: 15.5,8.5 - parent: 38584 - - uid: 40130 + parent: 38411 + - uid: 39957 components: - type: Transform pos: 13.5,8.5 - parent: 38584 - - uid: 40131 + parent: 38411 + - uid: 39958 components: - type: Transform pos: 5.5,6.5 - parent: 38584 - - uid: 40132 + parent: 38411 + - uid: 39959 components: - type: Transform pos: 5.5,7.5 - parent: 38584 - - uid: 40133 + parent: 38411 + - uid: 39960 components: - type: Transform pos: 1.5,11.5 - parent: 38584 - - uid: 40134 + parent: 38411 + - uid: 39961 components: - type: Transform pos: -7.5,12.5 - parent: 38584 - - uid: 40135 + parent: 38411 + - uid: 39962 components: - type: Transform pos: 3.5,8.5 - parent: 38584 - - uid: 40136 + parent: 38411 + - uid: 39963 components: - type: Transform pos: 4.5,8.5 - parent: 38584 - - uid: 40137 + parent: 38411 + - uid: 39964 components: - type: Transform pos: 1.5,10.5 - parent: 38584 - - uid: 40138 + parent: 38411 + - uid: 39965 components: - type: Transform pos: 4.5,7.5 - parent: 38584 - - uid: 40139 + parent: 38411 + - uid: 39966 components: - type: Transform pos: 6.5,8.5 - parent: 38584 - - uid: 40140 + parent: 38411 + - uid: 39967 components: - type: Transform pos: -6.5,12.5 - parent: 38584 - - uid: 40141 + parent: 38411 + - uid: 39968 components: - type: Transform pos: 3.5,7.5 - parent: 38584 - - uid: 40142 + parent: 38411 + - uid: 39969 components: - type: Transform pos: 3.5,6.5 - parent: 38584 - - uid: 40143 + parent: 38411 + - uid: 39970 components: - type: Transform pos: 4.5,6.5 - parent: 38584 - - uid: 40144 + parent: 38411 + - uid: 39971 components: - type: Transform pos: 5.5,8.5 - parent: 38584 - - uid: 40145 + parent: 38411 + - uid: 39972 components: - type: Transform pos: 6.5,7.5 - parent: 38584 - - uid: 40146 + parent: 38411 + - uid: 39973 components: - type: Transform pos: -5.5,12.5 - parent: 38584 - - uid: 40147 + parent: 38411 + - uid: 39974 components: - type: Transform pos: 3.5,9.5 - parent: 38584 - - uid: 40148 + parent: 38411 + - uid: 39975 components: - type: Transform pos: 6.5,6.5 - parent: 38584 - - uid: 40149 + parent: 38411 + - uid: 39976 components: - type: Transform pos: 10.5,13.5 - parent: 38584 - - uid: 40150 + parent: 38411 + - uid: 39977 components: - type: Transform pos: 9.5,14.5 - parent: 38584 - - uid: 40151 + parent: 38411 + - uid: 39978 components: - type: Transform pos: 10.5,33.5 - parent: 38584 - - uid: 40152 + parent: 38411 + - uid: 39979 components: - type: Transform pos: 9.5,13.5 - parent: 38584 - - uid: 40153 + parent: 38411 + - uid: 39980 components: - type: Transform pos: 8.5,16.5 - parent: 38584 - - uid: 40154 + parent: 38411 + - uid: 39981 components: - type: Transform pos: 10.5,32.5 - parent: 38584 - - uid: 40155 + parent: 38411 + - uid: 39982 components: - type: Transform pos: 10.5,12.5 - parent: 38584 - - uid: 40156 + parent: 38411 + - uid: 39983 components: - type: Transform pos: 12.5,9.5 - parent: 38584 - - uid: 40157 + parent: 38411 + - uid: 39984 components: - type: Transform pos: 6.5,19.5 - parent: 38584 - - uid: 40158 + parent: 38411 + - uid: 39985 components: - type: Transform pos: 7.5,22.5 - parent: 38584 - - uid: 40159 + parent: 38411 + - uid: 39986 components: - type: Transform pos: 5.5,20.5 - parent: 38584 - - uid: 40160 + parent: 38411 + - uid: 39987 components: - type: Transform pos: 18.5,27.5 - parent: 38584 - - uid: 40161 + parent: 38411 + - uid: 39988 components: - type: Transform pos: 14.5,26.5 - parent: 38584 - - uid: 40162 + parent: 38411 + - uid: 39989 components: - type: Transform pos: 15.5,26.5 - parent: 38584 - - uid: 40163 + parent: 38411 + - uid: 39990 components: - type: Transform pos: 6.5,18.5 - parent: 38584 - - uid: 40164 + parent: 38411 + - uid: 39991 components: - type: Transform pos: 10.5,14.5 - parent: 38584 - - uid: 40165 + parent: 38411 + - uid: 39992 components: - type: Transform pos: 8.5,14.5 - parent: 38584 - - uid: 40166 + parent: 38411 + - uid: 39993 components: - type: Transform pos: 11.5,12.5 - parent: 38584 - - uid: 40167 + parent: 38411 + - uid: 39994 components: - type: Transform pos: 5.5,23.5 - parent: 38584 - - uid: 40168 + parent: 38411 + - uid: 39995 components: - type: Transform pos: 13.5,25.5 - parent: 38584 - - uid: 40169 + parent: 38411 + - uid: 39996 components: - type: Transform pos: 13.5,26.5 - parent: 38584 - - uid: 40170 + parent: 38411 + - uid: 39997 components: - type: Transform pos: 14.5,9.5 - parent: 38584 - - uid: 40171 + parent: 38411 + - uid: 39998 components: - type: Transform pos: 6.5,14.5 - parent: 38584 - - uid: 40172 + parent: 38411 + - uid: 39999 components: - type: Transform pos: 6.5,13.5 - parent: 38584 - - uid: 40173 + parent: 38411 + - uid: 40000 components: - type: Transform pos: 16.5,14.5 - parent: 38584 - - uid: 40174 + parent: 38411 + - uid: 40001 components: - type: Transform pos: 9.5,10.5 - parent: 38584 - - uid: 40175 + parent: 38411 + - uid: 40002 components: - type: Transform pos: 18.5,25.5 - parent: 38584 - - uid: 40176 + parent: 38411 + - uid: 40003 components: - type: Transform pos: 4.5,19.5 - parent: 38584 - - uid: 40177 + parent: 38411 + - uid: 40004 components: - type: Transform pos: 5.5,19.5 - parent: 38584 - - uid: 40178 + parent: 38411 + - uid: 40005 components: - type: Transform pos: 6.5,15.5 - parent: 38584 - - uid: 40179 + parent: 38411 + - uid: 40006 components: - type: Transform pos: 6.5,22.5 - parent: 38584 - - uid: 40180 + parent: 38411 + - uid: 40007 components: - type: Transform pos: 8.5,12.5 - parent: 38584 - - uid: 40181 + parent: 38411 + - uid: 40008 components: - type: Transform pos: 5.5,17.5 - parent: 38584 - - uid: 40182 + parent: 38411 + - uid: 40009 components: - type: Transform pos: 7.5,21.5 - parent: 38584 - - uid: 40183 + parent: 38411 + - uid: 40010 components: - type: Transform pos: 6.5,23.5 - parent: 38584 - - uid: 40184 + parent: 38411 + - uid: 40011 components: - type: Transform pos: 8.5,13.5 - parent: 38584 - - uid: 40185 + parent: 38411 + - uid: 40012 components: - type: Transform pos: 4.5,17.5 - parent: 38584 - - uid: 40186 + parent: 38411 + - uid: 40013 components: - type: Transform pos: 11.5,10.5 - parent: 38584 - - uid: 40187 + parent: 38411 + - uid: 40014 components: - type: Transform pos: 11.5,9.5 - parent: 38584 - - uid: 40188 + parent: 38411 + - uid: 40015 components: - type: Transform pos: 7.5,10.5 - parent: 38584 - - uid: 40189 + parent: 38411 + - uid: 40016 components: - type: Transform pos: 10.5,24.5 - parent: 38584 - - uid: 40190 + parent: 38411 + - uid: 40017 components: - type: Transform pos: 7.5,14.5 - parent: 38584 - - uid: 40191 + parent: 38411 + - uid: 40018 components: - type: Transform pos: 6.5,20.5 - parent: 38584 - - uid: 40192 + parent: 38411 + - uid: 40019 components: - type: Transform pos: 7.5,17.5 - parent: 38584 - - uid: 40193 + parent: 38411 + - uid: 40020 components: - type: Transform pos: 6.5,21.5 - parent: 38584 - - uid: 40194 + parent: 38411 + - uid: 40021 components: - type: Transform pos: 5.5,22.5 - parent: 38584 - - uid: 40195 + parent: 38411 + - uid: 40022 components: - type: Transform pos: 4.5,15.5 - parent: 38584 - - uid: 40196 + parent: 38411 + - uid: 40023 components: - type: Transform pos: 7.5,13.5 - parent: 38584 - - uid: 40197 + parent: 38411 + - uid: 40024 components: - type: Transform pos: 4.5,18.5 - parent: 38584 - - uid: 40198 + parent: 38411 + - uid: 40025 components: - type: Transform pos: 5.5,11.5 - parent: 38584 - - uid: 40199 + parent: 38411 + - uid: 40026 components: - type: Transform pos: 10.5,31.5 - parent: 38584 - - uid: 40200 + parent: 38411 + - uid: 40027 components: - type: Transform pos: 5.5,14.5 - parent: 38584 - - uid: 40201 + parent: 38411 + - uid: 40028 components: - type: Transform pos: 10.5,10.5 - parent: 38584 - - uid: 40202 + parent: 38411 + - uid: 40029 components: - type: Transform pos: 3.5,18.5 - parent: 38584 - - uid: 40203 + parent: 38411 + - uid: 40030 components: - type: Transform pos: 9.5,9.5 - parent: 38584 - - uid: 40204 + parent: 38411 + - uid: 40031 components: - type: Transform pos: 7.5,12.5 - parent: 38584 - - uid: 40205 + parent: 38411 + - uid: 40032 components: - type: Transform pos: 4.5,20.5 - parent: 38584 - - uid: 40206 + parent: 38411 + - uid: 40033 components: - type: Transform pos: 5.5,18.5 - parent: 38584 - - uid: 40207 + parent: 38411 + - uid: 40034 components: - type: Transform pos: 8.5,9.5 - parent: 38584 - - uid: 40208 + parent: 38411 + - uid: 40035 components: - type: Transform pos: 9.5,11.5 - parent: 38584 - - uid: 40209 + parent: 38411 + - uid: 40036 components: - type: Transform pos: 8.5,11.5 - parent: 38584 - - uid: 40210 + parent: 38411 + - uid: 40037 components: - type: Transform pos: 9.5,12.5 - parent: 38584 - - uid: 40211 + parent: 38411 + - uid: 40038 components: - type: Transform pos: 14.5,25.5 - parent: 38584 - - uid: 40212 + parent: 38411 + - uid: 40039 components: - type: Transform pos: -25.5,22.5 - parent: 38584 - - uid: 40213 + parent: 38411 + - uid: 40040 components: - type: Transform pos: -24.5,21.5 - parent: 38584 - - uid: 40214 + parent: 38411 + - uid: 40041 components: - type: Transform pos: -24.5,20.5 - parent: 38584 - - uid: 40215 + parent: 38411 + - uid: 40042 components: - type: Transform pos: -24.5,13.5 - parent: 38584 - - uid: 40216 + parent: 38411 + - uid: 40043 components: - type: Transform pos: -13.5,40.5 - parent: 38584 - - uid: 40217 + parent: 38411 + - uid: 40044 components: - type: Transform pos: -18.5,38.5 - parent: 38584 - - uid: 40218 + parent: 38411 + - uid: 40045 components: - type: Transform pos: -28.5,30.5 - parent: 38584 - - uid: 40219 + parent: 38411 + - uid: 40046 components: - type: Transform pos: -15.5,41.5 - parent: 38584 - - uid: 40220 + parent: 38411 + - uid: 40047 components: - type: Transform pos: -29.5,32.5 - parent: 38584 - - uid: 40221 + parent: 38411 + - uid: 40048 components: - type: Transform pos: -20.5,19.5 - parent: 38584 - - uid: 40222 + parent: 38411 + - uid: 40049 components: - type: Transform pos: 11.5,31.5 - parent: 38584 - - uid: 40223 + parent: 38411 + - uid: 40050 components: - type: Transform pos: 0.5,34.5 - parent: 38584 - - uid: 40224 + parent: 38411 + - uid: 40051 components: - type: Transform pos: 5.5,28.5 - parent: 38584 - - uid: 40225 + parent: 38411 + - uid: 40052 components: - type: Transform pos: 2.5,33.5 - parent: 38584 - - uid: 40226 + parent: 38411 + - uid: 40053 components: - type: Transform pos: 1.5,33.5 - parent: 38584 - - uid: 40227 + parent: 38411 + - uid: 40054 components: - type: Transform pos: 8.5,35.5 - parent: 38584 - - uid: 40228 + parent: 38411 + - uid: 40055 components: - type: Transform pos: 7.5,36.5 - parent: 38584 - - uid: 40229 + parent: 38411 + - uid: 40056 components: - type: Transform pos: 11.5,33.5 - parent: 38584 - - uid: 40230 + parent: 38411 + - uid: 40057 components: - type: Transform pos: 11.5,32.5 - parent: 38584 - - uid: 40231 + parent: 38411 + - uid: 40058 components: - type: Transform pos: -25.5,21.5 - parent: 38584 - - uid: 40232 + parent: 38411 + - uid: 40059 components: - type: Transform pos: -25.5,19.5 - parent: 38584 - - uid: 40233 + parent: 38411 + - uid: 40060 components: - type: Transform pos: -26.5,18.5 - parent: 38584 - - uid: 40234 + parent: 38411 + - uid: 40061 components: - type: Transform pos: -26.5,22.5 - parent: 38584 - - uid: 40235 + parent: 38411 + - uid: 40062 components: - type: Transform pos: -26.5,21.5 - parent: 38584 - - uid: 40236 + parent: 38411 + - uid: 40063 components: - type: Transform pos: -25.5,18.5 - parent: 38584 - - uid: 40237 + parent: 38411 + - uid: 40064 components: - type: Transform pos: -24.5,23.5 - parent: 38584 - - uid: 40238 + parent: 38411 + - uid: 40065 components: - type: Transform pos: -23.5,23.5 - parent: 38584 - - uid: 40239 + parent: 38411 + - uid: 40066 components: - type: Transform pos: -25.5,12.5 - parent: 38584 - - uid: 40240 + parent: 38411 + - uid: 40067 components: - type: Transform pos: -25.5,11.5 - parent: 38584 - - uid: 40241 + parent: 38411 + - uid: 40068 components: - type: Transform pos: -24.5,17.5 - parent: 38584 - - uid: 40242 + parent: 38411 + - uid: 40069 components: - type: Transform pos: -23.5,12.5 - parent: 38584 - - uid: 40243 + parent: 38411 + - uid: 40070 components: - type: Transform pos: -24.5,12.5 - parent: 38584 - - uid: 40244 + parent: 38411 + - uid: 40071 components: - type: Transform pos: -23.5,14.5 - parent: 38584 - - uid: 40245 + parent: 38411 + - uid: 40072 components: - type: Transform pos: -31.5,32.5 - parent: 38584 - - uid: 40246 + parent: 38411 + - uid: 40073 components: - type: Transform pos: -28.5,33.5 - parent: 38584 - - uid: 40247 + parent: 38411 + - uid: 40074 components: - type: Transform pos: -25.5,37.5 - parent: 38584 - - uid: 40248 + parent: 38411 + - uid: 40075 components: - type: Transform pos: -25.5,38.5 - parent: 38584 - - uid: 40249 + parent: 38411 + - uid: 40076 components: - type: Transform pos: -25.5,36.5 - parent: 38584 - - uid: 40250 + parent: 38411 + - uid: 40077 components: - type: Transform pos: -29.5,33.5 - parent: 38584 - - uid: 40251 + parent: 38411 + - uid: 40078 components: - type: Transform pos: -25.5,33.5 - parent: 38584 - - uid: 40252 + parent: 38411 + - uid: 40079 components: - type: Transform pos: -11.5,40.5 - parent: 38584 - - uid: 40253 + parent: 38411 + - uid: 40080 components: - type: Transform pos: -12.5,41.5 - parent: 38584 - - uid: 40254 + parent: 38411 + - uid: 40081 components: - type: Transform pos: -23.5,19.5 - parent: 38584 - - uid: 40255 + parent: 38411 + - uid: 40082 components: - type: Transform pos: -24.5,19.5 - parent: 38584 - - uid: 40256 + parent: 38411 + - uid: 40083 components: - type: Transform pos: -24.5,18.5 - parent: 38584 - - uid: 40257 + parent: 38411 + - uid: 40084 components: - type: Transform pos: -22.5,19.5 - parent: 38584 - - uid: 40258 + parent: 38411 + - uid: 40085 components: - type: Transform pos: -22.5,18.5 - parent: 38584 - - uid: 40259 + parent: 38411 + - uid: 40086 components: - type: Transform pos: -23.5,22.5 - parent: 38584 - - uid: 40260 + parent: 38411 + - uid: 40087 components: - type: Transform pos: -15.5,40.5 - parent: 38584 - - uid: 40261 + parent: 38411 + - uid: 40088 components: - type: Transform pos: -21.5,41.5 - parent: 38584 - - uid: 40262 + parent: 38411 + - uid: 40089 components: - type: Transform pos: -23.5,40.5 - parent: 38584 - - uid: 40263 + parent: 38411 + - uid: 40090 components: - type: Transform pos: -16.5,41.5 - parent: 38584 - - uid: 40264 + parent: 38411 + - uid: 40091 components: - type: Transform pos: -20.5,40.5 - parent: 38584 - - uid: 40265 + parent: 38411 + - uid: 40092 components: - type: Transform pos: -22.5,22.5 - parent: 38584 - - uid: 40266 + parent: 38411 + - uid: 40093 components: - type: Transform pos: -21.5,40.5 - parent: 38584 - - uid: 40267 + parent: 38411 + - uid: 40094 components: - type: Transform pos: -20.5,41.5 - parent: 38584 - - uid: 40268 + parent: 38411 + - uid: 40095 components: - type: Transform pos: -19.5,40.5 - parent: 38584 - - uid: 40269 + parent: 38411 + - uid: 40096 components: - type: Transform pos: -18.5,40.5 - parent: 38584 - - uid: 40270 + parent: 38411 + - uid: 40097 components: - type: Transform pos: -21.5,42.5 - parent: 38584 - - uid: 40271 + parent: 38411 + - uid: 40098 components: - type: Transform pos: -17.5,40.5 - parent: 38584 - - uid: 40272 + parent: 38411 + - uid: 40099 components: - type: Transform pos: -18.5,23.5 - parent: 38584 - - uid: 40273 + parent: 38411 + - uid: 40100 components: - type: Transform pos: -17.5,23.5 - parent: 38584 - - uid: 40274 + parent: 38411 + - uid: 40101 components: - type: Transform pos: -28.5,31.5 - parent: 38584 - - uid: 40275 + parent: 38411 + - uid: 40102 components: - type: Transform pos: -27.5,31.5 - parent: 38584 - - uid: 40276 + parent: 38411 + - uid: 40103 components: - type: Transform pos: -24.5,24.5 - parent: 38584 - - uid: 40277 + parent: 38411 + - uid: 40104 components: - type: Transform pos: -27.5,17.5 - parent: 38584 - - uid: 40278 + parent: 38411 + - uid: 40105 components: - type: Transform pos: -18.5,12.5 - parent: 38584 - - uid: 40279 + parent: 38411 + - uid: 40106 components: - type: Transform pos: -17.5,12.5 - parent: 38584 - - uid: 40280 + parent: 38411 + - uid: 40107 components: - type: Transform pos: -18.5,13.5 - parent: 38584 - - uid: 40281 + parent: 38411 + - uid: 40108 components: - type: Transform pos: -28.5,19.5 - parent: 38584 - - uid: 40282 + parent: 38411 + - uid: 40109 components: - type: Transform pos: -27.5,20.5 - parent: 38584 - - uid: 40283 + parent: 38411 + - uid: 40110 components: - type: Transform pos: -17.5,14.5 - parent: 38584 - - uid: 40284 + parent: 38411 + - uid: 40111 components: - type: Transform pos: -17.5,13.5 - parent: 38584 - - uid: 40285 + parent: 38411 + - uid: 40112 components: - type: Transform pos: -27.5,18.5 - parent: 38584 - - uid: 40286 + parent: 38411 + - uid: 40113 components: - type: Transform pos: -28.5,12.5 - parent: 38584 - - uid: 40287 + parent: 38411 + - uid: 40114 components: - type: Transform pos: -28.5,11.5 - parent: 38584 - - uid: 40288 + parent: 38411 + - uid: 40115 components: - type: Transform pos: -31.5,16.5 - parent: 38584 - - uid: 40289 + parent: 38411 + - uid: 40116 components: - type: Transform pos: -29.5,18.5 - parent: 38584 - - uid: 40290 + parent: 38411 + - uid: 40117 components: - type: Transform pos: -30.5,17.5 - parent: 38584 - - uid: 40291 + parent: 38411 + - uid: 40118 components: - type: Transform pos: -26.5,32.5 - parent: 38584 - - uid: 40292 + parent: 38411 + - uid: 40119 components: - type: Transform pos: -25.5,31.5 - parent: 38584 - - uid: 40293 + parent: 38411 + - uid: 40120 components: - type: Transform pos: -25.5,32.5 - parent: 38584 - - uid: 40294 + parent: 38411 + - uid: 40121 components: - type: Transform pos: -22.5,39.5 - parent: 38584 - - uid: 40295 + parent: 38411 + - uid: 40122 components: - type: Transform pos: -25.5,34.5 - parent: 38584 - - uid: 40296 + parent: 38411 + - uid: 40123 components: - type: Transform pos: -21.5,39.5 - parent: 38584 - - uid: 40297 + parent: 38411 + - uid: 40124 components: - type: Transform pos: -24.5,37.5 - parent: 38584 - - uid: 40298 + parent: 38411 + - uid: 40125 components: - type: Transform pos: -24.5,39.5 - parent: 38584 - - uid: 40299 + parent: 38411 + - uid: 40126 components: - type: Transform pos: -28.5,28.5 - parent: 38584 - - uid: 40300 + parent: 38411 + - uid: 40127 components: - type: Transform pos: -19.5,39.5 - parent: 38584 - - uid: 40301 + parent: 38411 + - uid: 40128 components: - type: Transform pos: -26.5,30.5 - parent: 38584 - - uid: 40302 + parent: 38411 + - uid: 40129 components: - type: Transform pos: -32.5,30.5 - parent: 38584 - - uid: 40303 + parent: 38411 + - uid: 40130 components: - type: Transform pos: -32.5,31.5 - parent: 38584 - - uid: 40304 + parent: 38411 + - uid: 40131 components: - type: Transform pos: -31.5,31.5 - parent: 38584 - - uid: 40305 + parent: 38411 + - uid: 40132 components: - type: Transform pos: -26.5,31.5 - parent: 38584 - - uid: 40306 + parent: 38411 + - uid: 40133 components: - type: Transform pos: -29.5,29.5 - parent: 38584 - - uid: 40307 + parent: 38411 + - uid: 40134 components: - type: Transform pos: -27.5,28.5 - parent: 38584 - - uid: 40308 + parent: 38411 + - uid: 40135 components: - type: Transform pos: -27.5,29.5 - parent: 38584 - - uid: 40309 + parent: 38411 + - uid: 40136 components: - type: Transform pos: -22.5,37.5 - parent: 38584 - - uid: 40310 + parent: 38411 + - uid: 40137 components: - type: Transform pos: -18.5,21.5 - parent: 38584 - - uid: 40311 + parent: 38411 + - uid: 40138 components: - type: Transform pos: -10.5,38.5 - parent: 38584 - - uid: 40312 + parent: 38411 + - uid: 40139 components: - type: Transform pos: -11.5,37.5 - parent: 38584 - - uid: 40313 + parent: 38411 + - uid: 40140 components: - type: Transform pos: -12.5,32.5 - parent: 38584 - - uid: 40314 + parent: 38411 + - uid: 40141 components: - type: Transform pos: -9.5,29.5 - parent: 38584 - - uid: 40315 + parent: 38411 + - uid: 40142 components: - type: Transform pos: -30.5,30.5 - parent: 38584 - - uid: 40316 + parent: 38411 + - uid: 40143 components: - type: Transform pos: -29.5,31.5 - parent: 38584 - - uid: 40317 + parent: 38411 + - uid: 40144 components: - type: Transform pos: -16.5,28.5 - parent: 38584 - - uid: 40318 + parent: 38411 + - uid: 40145 components: - type: Transform pos: 4.5,35.5 - parent: 38584 - - uid: 40319 + parent: 38411 + - uid: 40146 components: - type: Transform pos: 5.5,40.5 - parent: 38584 - - uid: 40320 + parent: 38411 + - uid: 40147 components: - type: Transform pos: 4.5,37.5 - parent: 38584 - - uid: 40321 + parent: 38411 + - uid: 40148 components: - type: Transform pos: 5.5,25.5 - parent: 38584 - - uid: 40322 + parent: 38411 + - uid: 40149 components: - type: Transform pos: 0.5,36.5 - parent: 38584 - - uid: 40323 + parent: 38411 + - uid: 40150 components: - type: Transform pos: 5.5,42.5 - parent: 38584 - - uid: 40324 + parent: 38411 + - uid: 40151 components: - type: Transform pos: 4.5,32.5 - parent: 38584 - - uid: 40325 + parent: 38411 + - uid: 40152 components: - type: Transform pos: 5.5,38.5 - parent: 38584 - - uid: 40326 + parent: 38411 + - uid: 40153 components: - type: Transform pos: 6.5,41.5 - parent: 38584 - - uid: 40327 + parent: 38411 + - uid: 40154 components: - type: Transform pos: 2.5,37.5 - parent: 38584 - - uid: 40328 + parent: 38411 + - uid: 40155 components: - type: Transform pos: 3.5,36.5 - parent: 38584 - - uid: 40329 + parent: 38411 + - uid: 40156 components: - type: Transform pos: 4.5,36.5 - parent: 38584 - - uid: 40330 + parent: 38411 + - uid: 40157 components: - type: Transform pos: 3.5,40.5 - parent: 38584 - - uid: 40331 + parent: 38411 + - uid: 40158 components: - type: Transform pos: 2.5,41.5 - parent: 38584 - - uid: 40332 + parent: 38411 + - uid: 40159 components: - type: Transform pos: 3.5,38.5 - parent: 38584 - - uid: 40333 + parent: 38411 + - uid: 40160 components: - type: Transform pos: 4.5,40.5 - parent: 38584 - - uid: 40334 + parent: 38411 + - uid: 40161 components: - type: Transform pos: 1.5,35.5 - parent: 38584 - - uid: 40335 + parent: 38411 + - uid: 40162 components: - type: Transform pos: 4.5,39.5 - parent: 38584 - - uid: 40336 + parent: 38411 + - uid: 40163 components: - type: Transform pos: 4.5,26.5 - parent: 38584 - - uid: 40337 + parent: 38411 + - uid: 40164 components: - type: Transform pos: 4.5,25.5 - parent: 38584 - - uid: 40338 + parent: 38411 + - uid: 40165 components: - type: Transform pos: 2.5,23.5 - parent: 38584 - - uid: 40339 + parent: 38411 + - uid: 40166 components: - type: Transform pos: 1.5,36.5 - parent: 38584 - - uid: 40340 + parent: 38411 + - uid: 40167 components: - type: Transform pos: 2.5,24.5 - parent: 38584 - - uid: 40341 + parent: 38411 + - uid: 40168 components: - type: Transform pos: 3.5,20.5 - parent: 38584 - - uid: 40342 + parent: 38411 + - uid: 40169 components: - type: Transform pos: 5.5,30.5 - parent: 38584 - - uid: 40343 + parent: 38411 + - uid: 40170 components: - type: Transform pos: 5.5,31.5 - parent: 38584 - - uid: 40344 + parent: 38411 + - uid: 40171 components: - type: Transform pos: 6.5,30.5 - parent: 38584 - - uid: 40345 + parent: 38411 + - uid: 40172 components: - type: Transform pos: 4.5,38.5 - parent: 38584 - - uid: 40346 + parent: 38411 + - uid: 40173 components: - type: Transform pos: 5.5,24.5 - parent: 38584 - - uid: 40347 + parent: 38411 + - uid: 40174 components: - type: Transform pos: 6.5,32.5 - parent: 38584 - - uid: 40348 + parent: 38411 + - uid: 40175 components: - type: Transform pos: 6.5,26.5 - parent: 38584 - - uid: 40349 + parent: 38411 + - uid: 40176 components: - type: Transform pos: 6.5,31.5 - parent: 38584 - - uid: 40350 + parent: 38411 + - uid: 40177 components: - type: Transform pos: 7.5,35.5 - parent: 38584 - - uid: 40351 + parent: 38411 + - uid: 40178 components: - type: Transform pos: 0.5,33.5 - parent: 38584 - - uid: 40352 + parent: 38411 + - uid: 40179 components: - type: Transform pos: 1.5,32.5 - parent: 38584 - - uid: 40353 + parent: 38411 + - uid: 40180 components: - type: Transform pos: 0.5,32.5 - parent: 38584 - - uid: 40354 + parent: 38411 + - uid: 40181 components: - type: Transform pos: 2.5,36.5 - parent: 38584 - - uid: 40355 + parent: 38411 + - uid: 40182 components: - type: Transform pos: 0.5,37.5 - parent: 38584 - - uid: 40356 + parent: 38411 + - uid: 40183 components: - type: Transform pos: 3.5,25.5 - parent: 38584 - - uid: 40357 + parent: 38411 + - uid: 40184 components: - type: Transform pos: 4.5,24.5 - parent: 38584 - - uid: 40358 + parent: 38411 + - uid: 40185 components: - type: Transform pos: 5.5,34.5 - parent: 38584 - - uid: 40359 + parent: 38411 + - uid: 40186 components: - type: Transform pos: 1.5,28.5 - parent: 38584 - - uid: 40360 + parent: 38411 + - uid: 40187 components: - type: Transform pos: 2.5,26.5 - parent: 38584 - - uid: 40361 + parent: 38411 + - uid: 40188 components: - type: Transform pos: 3.5,33.5 - parent: 38584 - - uid: 40362 + parent: 38411 + - uid: 40189 components: - type: Transform pos: 1.5,30.5 - parent: 38584 - - uid: 40363 + parent: 38411 + - uid: 40190 components: - type: Transform pos: 2.5,30.5 - parent: 38584 - - uid: 40364 + parent: 38411 + - uid: 40191 components: - type: Transform pos: 1.5,31.5 - parent: 38584 - - uid: 40365 + parent: 38411 + - uid: 40192 components: - type: Transform pos: -10.5,22.5 - parent: 38584 - - uid: 40366 + parent: 38411 + - uid: 40193 components: - type: Transform pos: 0.5,28.5 - parent: 38584 - - uid: 40367 + parent: 38411 + - uid: 40194 components: - type: Transform pos: 2.5,25.5 - parent: 38584 - - uid: 40368 + parent: 38411 + - uid: 40195 components: - type: Transform pos: 1.5,27.5 - parent: 38584 - - uid: 40369 + parent: 38411 + - uid: 40196 components: - type: Transform pos: 5.5,27.5 - parent: 38584 - - uid: 40370 + parent: 38411 + - uid: 40197 components: - type: Transform pos: 0.5,27.5 - parent: 38584 - - uid: 40371 + parent: 38411 + - uid: 40198 components: - type: Transform pos: 2.5,28.5 - parent: 38584 - - uid: 40372 + parent: 38411 + - uid: 40199 components: - type: Transform pos: 4.5,33.5 - parent: 38584 - - uid: 40373 + parent: 38411 + - uid: 40200 components: - type: Transform pos: 5.5,26.5 - parent: 38584 - - uid: 40374 + parent: 38411 + - uid: 40201 components: - type: Transform pos: 4.5,21.5 - parent: 38584 - - uid: 40375 + parent: 38411 + - uid: 40202 components: - type: Transform pos: 5.5,41.5 - parent: 38584 - - uid: 40376 + parent: 38411 + - uid: 40203 components: - type: Transform pos: 11.5,35.5 - parent: 38584 - - uid: 40377 + parent: 38411 + - uid: 40204 components: - type: Transform pos: 5.5,39.5 - parent: 38584 - - uid: 40378 + parent: 38411 + - uid: 40205 components: - type: Transform pos: 3.5,42.5 - parent: 38584 - - uid: 40379 + parent: 38411 + - uid: 40206 components: - type: Transform pos: 3.5,41.5 - parent: 38584 - - uid: 40380 + parent: 38411 + - uid: 40207 components: - type: Transform pos: 5.5,36.5 - parent: 38584 - - uid: 40381 + parent: 38411 + - uid: 40208 components: - type: Transform pos: 5.5,35.5 - parent: 38584 - - uid: 40382 + parent: 38411 + - uid: 40209 components: - type: Transform pos: 6.5,36.5 - parent: 38584 - - uid: 40383 + parent: 38411 + - uid: 40210 components: - type: Transform pos: 6.5,35.5 - parent: 38584 - - uid: 40384 + parent: 38411 + - uid: 40211 components: - type: Transform pos: 3.5,37.5 - parent: 38584 - - uid: 40385 + parent: 38411 + - uid: 40212 components: - type: Transform pos: 9.5,35.5 - parent: 38584 - - uid: 40386 + parent: 38411 + - uid: 40213 components: - type: Transform pos: 7.5,34.5 - parent: 38584 - - uid: 40387 + parent: 38411 + - uid: 40214 components: - type: Transform pos: 7.5,37.5 - parent: 38584 - - uid: 40388 + parent: 38411 + - uid: 40215 components: - type: Transform pos: 3.5,24.5 - parent: 38584 - - uid: 40389 + parent: 38411 + - uid: 40216 components: - type: Transform pos: 3.5,28.5 - parent: 38584 - - uid: 40390 + parent: 38411 + - uid: 40217 components: - type: Transform pos: 7.5,33.5 - parent: 38584 - - uid: 40391 + parent: 38411 + - uid: 40218 components: - type: Transform pos: 1.5,26.5 - parent: 38584 - - uid: 40392 + parent: 38411 + - uid: 40219 components: - type: Transform pos: 8.5,36.5 - parent: 38584 - - uid: 40393 + parent: 38411 + - uid: 40220 components: - type: Transform pos: 1.5,29.5 - parent: 38584 - - uid: 40394 + parent: 38411 + - uid: 40221 components: - type: Transform pos: 8.5,34.5 - parent: 38584 - - uid: 40395 + parent: 38411 + - uid: 40222 components: - type: Transform pos: 12.5,36.5 - parent: 38584 - - uid: 40396 + parent: 38411 + - uid: 40223 components: - type: Transform pos: 3.5,26.5 - parent: 38584 - - uid: 40397 + parent: 38411 + - uid: 40224 components: - type: Transform pos: 2.5,27.5 - parent: 38584 - - uid: 40398 + parent: 38411 + - uid: 40225 components: - type: Transform pos: 4.5,27.5 - parent: 38584 - - uid: 40399 + parent: 38411 + - uid: 40226 components: - type: Transform pos: 1.5,34.5 - parent: 38584 - - uid: 40400 + parent: 38411 + - uid: 40227 components: - type: Transform pos: 14.5,34.5 - parent: 38584 - - uid: 40401 + parent: 38411 + - uid: 40228 components: - type: Transform pos: -8.5,28.5 - parent: 38584 - - uid: 40402 + parent: 38411 + - uid: 40229 components: - type: Transform pos: 11.5,34.5 - parent: 38584 - - uid: 40403 + parent: 38411 + - uid: 40230 components: - type: Transform pos: -16.5,26.5 - parent: 38584 - - uid: 40404 + parent: 38411 + - uid: 40231 components: - type: Transform pos: -2.5,34.5 - parent: 38584 - - uid: 40405 + parent: 38411 + - uid: 40232 components: - type: Transform pos: 2.5,39.5 - parent: 38584 - - uid: 40406 + parent: 38411 + - uid: 40233 components: - type: Transform pos: 9.5,32.5 - parent: 38584 - - uid: 40407 + parent: 38411 + - uid: 40234 components: - type: Transform pos: 9.5,34.5 - parent: 38584 - - uid: 40408 + parent: 38411 + - uid: 40235 components: - type: Transform pos: 10.5,34.5 - parent: 38584 - - uid: 40409 + parent: 38411 + - uid: 40236 components: - type: Transform pos: 9.5,37.5 - parent: 38584 - - uid: 40410 + parent: 38411 + - uid: 40237 components: - type: Transform pos: 12.5,34.5 - parent: 38584 - - uid: 40411 + parent: 38411 + - uid: 40238 components: - type: Transform pos: 13.5,35.5 - parent: 38584 - - uid: 40412 + parent: 38411 + - uid: 40239 components: - type: Transform pos: 9.5,33.5 - parent: 38584 - - uid: 40413 + parent: 38411 + - uid: 40240 components: - type: Transform pos: 13.5,34.5 - parent: 38584 - - uid: 40414 + parent: 38411 + - uid: 40241 components: - type: Transform pos: 15.5,34.5 - parent: 38584 - - uid: 40415 + parent: 38411 + - uid: 40242 components: - type: Transform pos: 9.5,31.5 - parent: 38584 - - uid: 40416 + parent: 38411 + - uid: 40243 components: - type: Transform pos: -13.5,30.5 - parent: 38584 - - uid: 40417 + parent: 38411 + - uid: 40244 components: - type: Transform pos: -9.5,31.5 - parent: 38584 - - uid: 40418 + parent: 38411 + - uid: 40245 components: - type: Transform pos: -18.5,27.5 - parent: 38584 - - uid: 40419 + parent: 38411 + - uid: 40246 components: - type: Transform pos: -15.5,27.5 - parent: 38584 - - uid: 40420 + parent: 38411 + - uid: 40247 components: - type: Transform pos: -10.5,30.5 - parent: 38584 - - uid: 40421 + parent: 38411 + - uid: 40248 components: - type: Transform pos: -18.5,39.5 - parent: 38584 - - uid: 40422 + parent: 38411 + - uid: 40249 components: - type: Transform pos: -23.5,37.5 - parent: 38584 - - uid: 40423 + parent: 38411 + - uid: 40250 components: - type: Transform pos: -21.5,38.5 - parent: 38584 - - uid: 40424 + parent: 38411 + - uid: 40251 components: - type: Transform pos: -16.5,39.5 - parent: 38584 - - uid: 40425 + parent: 38411 + - uid: 40252 components: - type: Transform pos: -23.5,39.5 - parent: 38584 - - uid: 40426 + parent: 38411 + - uid: 40253 components: - type: Transform pos: -23.5,36.5 - parent: 38584 - - uid: 40427 + parent: 38411 + - uid: 40254 components: - type: Transform pos: -17.5,21.5 - parent: 38584 - - uid: 40428 + parent: 38411 + - uid: 40255 components: - type: Transform pos: 15.5,27.5 - parent: 38584 - - uid: 40429 + parent: 38411 + - uid: 40256 components: - type: Transform pos: -10.5,18.5 - parent: 38584 - - uid: 40430 + parent: 38411 + - uid: 40257 components: - type: Transform pos: -11.5,16.5 - parent: 38584 - - uid: 40431 + parent: 38411 + - uid: 40258 components: - type: Transform pos: -10.5,17.5 - parent: 38584 - - uid: 40432 + parent: 38411 + - uid: 40259 components: - type: Transform pos: -11.5,15.5 - parent: 38584 - - uid: 40433 + parent: 38411 + - uid: 40260 components: - type: Transform pos: -12.5,19.5 - parent: 38584 - - uid: 40434 + parent: 38411 + - uid: 40261 components: - type: Transform pos: -12.5,15.5 - parent: 38584 - - uid: 40435 + parent: 38411 + - uid: 40262 components: - type: Transform pos: -11.5,17.5 - parent: 38584 - - uid: 40436 + parent: 38411 + - uid: 40263 components: - type: Transform pos: -12.5,18.5 - parent: 38584 - - uid: 40437 + parent: 38411 + - uid: 40264 components: - type: Transform pos: -13.5,18.5 - parent: 38584 - - uid: 40438 + parent: 38411 + - uid: 40265 components: - type: Transform pos: -12.5,16.5 - parent: 38584 - - uid: 40439 + parent: 38411 + - uid: 40266 components: - type: Transform pos: -9.5,17.5 - parent: 38584 - - uid: 40440 + parent: 38411 + - uid: 40267 components: - type: Transform pos: -13.5,19.5 - parent: 38584 - - uid: 40441 + parent: 38411 + - uid: 40268 components: - type: Transform pos: -11.5,24.5 - parent: 38584 - - uid: 40442 + parent: 38411 + - uid: 40269 components: - type: Transform pos: -10.5,21.5 - parent: 38584 - - uid: 40443 + parent: 38411 + - uid: 40270 components: - type: Transform pos: -12.5,22.5 - parent: 38584 - - uid: 40444 + parent: 38411 + - uid: 40271 components: - type: Transform pos: -13.5,21.5 - parent: 38584 - - uid: 40445 + parent: 38411 + - uid: 40272 components: - type: Transform pos: 15.5,28.5 - parent: 38584 - - uid: 40446 + parent: 38411 + - uid: 40273 components: - type: Transform pos: 11.5,27.5 - parent: 38584 - - uid: 40447 + parent: 38411 + - uid: 40274 components: - type: Transform pos: -13.5,20.5 - parent: 38584 - - uid: 40448 + parent: 38411 + - uid: 40275 components: - type: Transform pos: 14.5,29.5 - parent: 38584 - - uid: 40449 + parent: 38411 + - uid: 40276 components: - type: Transform pos: 14.5,30.5 - parent: 38584 - - uid: 40450 + parent: 38411 + - uid: 40277 components: - type: Transform pos: 11.5,29.5 - parent: 38584 - - uid: 40451 + parent: 38411 + - uid: 40278 components: - type: Transform pos: 10.5,30.5 - parent: 38584 - - uid: 40452 + parent: 38411 + - uid: 40279 components: - type: Transform pos: -13.5,25.5 - parent: 38584 - - uid: 40453 + parent: 38411 + - uid: 40280 components: - type: Transform pos: 14.5,28.5 - parent: 38584 - - uid: 40454 + parent: 38411 + - uid: 40281 components: - type: Transform pos: 13.5,29.5 - parent: 38584 - - uid: 40455 + parent: 38411 + - uid: 40282 components: - type: Transform pos: 13.5,28.5 - parent: 38584 - - uid: 40456 + parent: 38411 + - uid: 40283 components: - type: Transform pos: -15.5,24.5 - parent: 38584 - - uid: 40457 + parent: 38411 + - uid: 40284 components: - type: Transform pos: -15.5,23.5 - parent: 38584 - - uid: 40458 + parent: 38411 + - uid: 40285 components: - type: Transform pos: 12.5,28.5 - parent: 38584 - - uid: 40459 + parent: 38411 + - uid: 40286 components: - type: Transform pos: 12.5,29.5 - parent: 38584 - - uid: 40460 + parent: 38411 + - uid: 40287 components: - type: Transform pos: 11.5,28.5 - parent: 38584 - - uid: 40461 + parent: 38411 + - uid: 40288 components: - type: Transform pos: 20.5,28.5 - parent: 38584 - - uid: 40462 + parent: 38411 + - uid: 40289 components: - type: Transform pos: 19.5,29.5 - parent: 38584 - - uid: 40463 + parent: 38411 + - uid: 40290 components: - type: Transform pos: -10.5,31.5 - parent: 38584 - - uid: 40464 + parent: 38411 + - uid: 40291 components: - type: Transform pos: 19.5,27.5 - parent: 38584 - - uid: 40465 + parent: 38411 + - uid: 40292 components: - type: Transform pos: 20.5,26.5 - parent: 38584 - - uid: 40466 + parent: 38411 + - uid: 40293 components: - type: Transform pos: 3.5,17.5 - parent: 38584 - - uid: 40467 + parent: 38411 + - uid: 40294 components: - type: Transform pos: 4.5,13.5 - parent: 38584 - - uid: 40468 + parent: 38411 + - uid: 40295 components: - type: Transform pos: 2.5,16.5 - parent: 38584 - - uid: 40469 + parent: 38411 + - uid: 40296 components: - type: Transform pos: 3.5,15.5 - parent: 38584 - - uid: 40470 + parent: 38411 + - uid: 40297 components: - type: Transform pos: 2.5,15.5 - parent: 38584 - - uid: 40471 + parent: 38411 + - uid: 40298 components: - type: Transform pos: 2.5,13.5 - parent: 38584 - - uid: 40472 + parent: 38411 + - uid: 40299 components: - type: Transform pos: 2.5,14.5 - parent: 38584 - - uid: 40473 + parent: 38411 + - uid: 40300 components: - type: Transform pos: 3.5,14.5 - parent: 38584 - - uid: 40474 + parent: 38411 + - uid: 40301 components: - type: Transform pos: 2.5,12.5 - parent: 38584 - - uid: 40475 + parent: 38411 + - uid: 40302 components: - type: Transform pos: 15.5,31.5 - parent: 38584 - - uid: 40476 + parent: 38411 + - uid: 40303 components: - type: Transform pos: 12.5,30.5 - parent: 38584 - - uid: 40477 + parent: 38411 + - uid: 40304 components: - type: Transform pos: -15.5,15.5 - parent: 38584 - - uid: 40478 + parent: 38411 + - uid: 40305 components: - type: Transform pos: -15.5,14.5 - parent: 38584 - - uid: 40479 + parent: 38411 + - uid: 40306 components: - type: Transform pos: -26.5,10.5 - parent: 38584 - - uid: 40480 + parent: 38411 + - uid: 40307 components: - type: Transform pos: -14.5,15.5 - parent: 38584 - - uid: 40481 + parent: 38411 + - uid: 40308 components: - type: Transform pos: -27.5,9.5 - parent: 38584 - - uid: 40482 + parent: 38411 + - uid: 40309 components: - type: Transform pos: -21.5,12.5 - parent: 38584 - - uid: 40483 + parent: 38411 + - uid: 40310 components: - type: Transform pos: -14.5,17.5 - parent: 38584 - - uid: 40484 + parent: 38411 + - uid: 40311 components: - type: Transform pos: -16.5,14.5 - parent: 38584 - - uid: 40485 + parent: 38411 + - uid: 40312 components: - type: Transform pos: -16.5,13.5 - parent: 38584 - - uid: 40486 + parent: 38411 + - uid: 40313 components: - type: Transform pos: -15.5,17.5 - parent: 38584 - - uid: 40487 + parent: 38411 + - uid: 40314 components: - type: Transform pos: -25.5,10.5 - parent: 38584 - - uid: 40488 + parent: 38411 + - uid: 40315 components: - type: Transform pos: -27.5,10.5 - parent: 38584 - - uid: 40489 + parent: 38411 + - uid: 40316 components: - type: Transform pos: -25.5,8.5 - parent: 38584 - - uid: 40490 + parent: 38411 + - uid: 40317 components: - type: Transform pos: -24.5,10.5 - parent: 38584 - - uid: 40491 + parent: 38411 + - uid: 40318 components: - type: Transform pos: -25.5,7.5 - parent: 38584 - - uid: 40492 + parent: 38411 + - uid: 40319 components: - type: Transform pos: -14.5,38.5 - parent: 38584 - - uid: 40493 + parent: 38411 + - uid: 40320 components: - type: Transform pos: -4.5,34.5 - parent: 38584 - - uid: 40494 + parent: 38411 + - uid: 40321 components: - type: Transform pos: -12.5,39.5 - parent: 38584 - - uid: 40495 + parent: 38411 + - uid: 40322 components: - type: Transform pos: -4.5,35.5 - parent: 38584 - - uid: 40496 + parent: 38411 + - uid: 40323 components: - type: Transform pos: -7.5,34.5 - parent: 38584 - - uid: 40497 + parent: 38411 + - uid: 40324 components: - type: Transform pos: -6.5,33.5 - parent: 38584 - - uid: 40498 + parent: 38411 + - uid: 40325 components: - type: Transform pos: -28.5,27.5 - parent: 38584 - - uid: 40499 + parent: 38411 + - uid: 40326 components: - type: Transform pos: -29.5,27.5 - parent: 38584 - - uid: 40500 + parent: 38411 + - uid: 40327 components: - type: Transform pos: -27.5,27.5 - parent: 38584 - - uid: 40501 + parent: 38411 + - uid: 40328 components: - type: Transform pos: -6.5,32.5 - parent: 38584 - - uid: 40502 + parent: 38411 + - uid: 40329 components: - type: Transform pos: -10.5,32.5 - parent: 38584 - - uid: 40503 + parent: 38411 + - uid: 40330 components: - type: Transform pos: -1.5,33.5 - parent: 38584 - - uid: 40504 + parent: 38411 + - uid: 40331 components: - type: Transform pos: -9.5,28.5 - parent: 38584 - - uid: 40505 + parent: 38411 + - uid: 40332 components: - type: Transform pos: -2.5,32.5 - parent: 38584 - - uid: 40506 + parent: 38411 + - uid: 40333 components: - type: Transform pos: -0.5,32.5 - parent: 38584 - - uid: 40507 + parent: 38411 + - uid: 40334 components: - type: Transform pos: -0.5,33.5 - parent: 38584 - - uid: 40508 + parent: 38411 + - uid: 40335 components: - type: Transform pos: -11.5,32.5 - parent: 38584 - - uid: 40509 + parent: 38411 + - uid: 40336 components: - type: Transform pos: -12.5,33.5 - parent: 38584 - - uid: 40510 + parent: 38411 + - uid: 40337 components: - type: Transform pos: -17.5,27.5 - parent: 38584 - - uid: 40511 + parent: 38411 + - uid: 40338 components: - type: Transform pos: -16.5,27.5 - parent: 38584 - - uid: 40512 + parent: 38411 + - uid: 40339 components: - type: Transform pos: -24.5,6.5 - parent: 38584 - - uid: 40513 + parent: 38411 + - uid: 40340 components: - type: Transform pos: -25.5,4.5 - parent: 38584 - - uid: 40514 + parent: 38411 + - uid: 40341 components: - type: Transform pos: -24.5,4.5 - parent: 38584 - - uid: 40515 + parent: 38411 + - uid: 40342 components: - type: Transform pos: 16.5,30.5 - parent: 38584 - - uid: 40516 + parent: 38411 + - uid: 40343 components: - type: Transform pos: -14.5,16.5 - parent: 38584 - - uid: 40517 + parent: 38411 + - uid: 40344 components: - type: Transform pos: -18.5,22.5 - parent: 38584 - - uid: 40518 + parent: 38411 + - uid: 40345 components: - type: Transform pos: 18.5,28.5 - parent: 38584 - - uid: 40519 + parent: 38411 + - uid: 40346 components: - type: Transform pos: 17.5,28.5 - parent: 38584 - - uid: 40520 + parent: 38411 + - uid: 40347 components: - type: Transform pos: 17.5,29.5 - parent: 38584 - - uid: 40521 + parent: 38411 + - uid: 40348 components: - type: Transform pos: 16.5,29.5 - parent: 38584 - - uid: 40522 + parent: 38411 + - uid: 40349 components: - type: Transform pos: 15.5,30.5 - parent: 38584 - - uid: 40523 + parent: 38411 + - uid: 40350 components: - type: Transform pos: -24.5,9.5 - parent: 38584 - - uid: 40524 + parent: 38411 + - uid: 40351 components: - type: Transform pos: 16.5,28.5 - parent: 38584 - - uid: 40525 + parent: 38411 + - uid: 40352 components: - type: Transform pos: 15.5,29.5 - parent: 38584 - - uid: 40526 + parent: 38411 + - uid: 40353 components: - type: Transform pos: -15.5,16.5 - parent: 38584 - - uid: 40527 + parent: 38411 + - uid: 40354 components: - type: Transform pos: -27.5,8.5 - parent: 38584 - - uid: 40528 + parent: 38411 + - uid: 40355 components: - type: Transform pos: -26.5,9.5 - parent: 38584 - - uid: 40529 + parent: 38411 + - uid: 40356 components: - type: Transform pos: -26.5,8.5 - parent: 38584 - - uid: 40530 + parent: 38411 + - uid: 40357 components: - type: Transform pos: -25.5,3.5 - parent: 38584 - - uid: 40531 + parent: 38411 + - uid: 40358 components: - type: Transform pos: -24.5,3.5 - parent: 38584 - - uid: 40532 + parent: 38411 + - uid: 40359 components: - type: Transform pos: -24.5,5.5 - parent: 38584 - - uid: 40533 + parent: 38411 + - uid: 40360 components: - type: Transform pos: -19.5,20.5 - parent: 38584 - - uid: 40534 + parent: 38411 + - uid: 40361 components: - type: Transform pos: -14.5,24.5 - parent: 38584 - - uid: 40535 + parent: 38411 + - uid: 40362 components: - type: Transform pos: -14.5,22.5 - parent: 38584 - - uid: 40536 + parent: 38411 + - uid: 40363 components: - type: Transform pos: -16.5,20.5 - parent: 38584 - - uid: 40537 + parent: 38411 + - uid: 40364 components: - type: Transform pos: -15.5,19.5 - parent: 38584 - - uid: 40538 + parent: 38411 + - uid: 40365 components: - type: Transform pos: -15.5,18.5 - parent: 38584 - - uid: 40539 + parent: 38411 + - uid: 40366 components: - type: Transform pos: -14.5,23.5 - parent: 38584 - - uid: 40540 + parent: 38411 + - uid: 40367 components: - type: Transform pos: -15.5,20.5 - parent: 38584 - - uid: 40541 + parent: 38411 + - uid: 40368 components: - type: Transform pos: -16.5,21.5 - parent: 38584 - - uid: 40542 + parent: 38411 + - uid: 40369 components: - type: Transform pos: -14.5,19.5 - parent: 38584 - - uid: 40543 + parent: 38411 + - uid: 40370 components: - type: Transform pos: -16.5,18.5 - parent: 38584 - - uid: 40544 + parent: 38411 + - uid: 40371 components: - type: Transform pos: -16.5,22.5 - parent: 38584 - - uid: 40545 + parent: 38411 + - uid: 40372 components: - type: Transform pos: -14.5,18.5 - parent: 38584 - - uid: 40546 + parent: 38411 + - uid: 40373 components: - type: Transform pos: 16.5,32.5 - parent: 38584 - - uid: 40547 + parent: 38411 + - uid: 40374 components: - type: Transform pos: 16.5,33.5 - parent: 38584 - - uid: 40548 + parent: 38411 + - uid: 40375 components: - type: Transform pos: 17.5,33.5 - parent: 38584 - - uid: 40549 + parent: 38411 + - uid: 40376 components: - type: Transform pos: 16.5,31.5 - parent: 38584 - - uid: 40550 + parent: 38411 + - uid: 40377 components: - type: Transform pos: 17.5,32.5 - parent: 38584 - - uid: 40551 + parent: 38411 + - uid: 40378 components: - type: Transform pos: -13.5,15.5 - parent: 38584 - - uid: 40552 + parent: 38411 + - uid: 40379 components: - type: Transform pos: -12.5,24.5 - parent: 38584 - - uid: 40553 + parent: 38411 + - uid: 40380 components: - type: Transform pos: -11.5,18.5 - parent: 38584 - - uid: 40554 + parent: 38411 + - uid: 40381 components: - type: Transform pos: -12.5,23.5 - parent: 38584 - - uid: 40555 + parent: 38411 + - uid: 40382 components: - type: Transform pos: -10.5,19.5 - parent: 38584 - - uid: 40556 + parent: 38411 + - uid: 40383 components: - type: Transform pos: -8.5,20.5 - parent: 38584 - - uid: 40557 + parent: 38411 + - uid: 40384 components: - type: Transform pos: -9.5,20.5 - parent: 38584 - - uid: 40558 + parent: 38411 + - uid: 40385 components: - type: Transform pos: -10.5,20.5 - parent: 38584 - - uid: 40559 + parent: 38411 + - uid: 40386 components: - type: Transform pos: -13.5,23.5 - parent: 38584 - - uid: 40560 + parent: 38411 + - uid: 40387 components: - type: Transform pos: -13.5,22.5 - parent: 38584 - - uid: 40561 + parent: 38411 + - uid: 40388 components: - type: Transform pos: -11.5,23.5 - parent: 38584 - - uid: 40562 + parent: 38411 + - uid: 40389 components: - type: Transform pos: -11.5,20.5 - parent: 38584 - - uid: 40563 + parent: 38411 + - uid: 40390 components: - type: Transform pos: 4.5,14.5 - parent: 38584 - - uid: 40564 + parent: 38411 + - uid: 40391 components: - type: Transform pos: 4.5,11.5 - parent: 38584 - - uid: 40565 + parent: 38411 + - uid: 40392 components: - type: Transform pos: 3.5,11.5 - parent: 38584 - - uid: 40566 + parent: 38411 + - uid: 40393 components: - type: Transform pos: 3.5,12.5 - parent: 38584 - - uid: 40567 + parent: 38411 + - uid: 40394 components: - type: Transform pos: 4.5,12.5 - parent: 38584 - - uid: 40568 + parent: 38411 + - uid: 40395 components: - type: Transform pos: 4.5,9.5 - parent: 38584 - - uid: 40569 + parent: 38411 + - uid: 40396 components: - type: Transform pos: 3.5,16.5 - parent: 38584 - - uid: 40570 + parent: 38411 + - uid: 40397 components: - type: Transform pos: 0.5,24.5 - parent: 38584 - - uid: 40571 + parent: 38411 + - uid: 40398 components: - type: Transform pos: 1.5,23.5 - parent: 38584 - - uid: 40572 + parent: 38411 + - uid: 40399 components: - type: Transform pos: -21.5,21.5 - parent: 38584 - - uid: 40573 + parent: 38411 + - uid: 40400 components: - type: Transform pos: -21.5,20.5 - parent: 38584 - - uid: 40574 + parent: 38411 + - uid: 40401 components: - type: Transform pos: 7.5,25.5 - parent: 38584 - - uid: 40575 + parent: 38411 + - uid: 40402 components: - type: Transform pos: 11.5,13.5 - parent: 38584 - - uid: 40576 + parent: 38411 + - uid: 40403 components: - type: Transform pos: 16.5,27.5 - parent: 38584 - - uid: 40577 + parent: 38411 + - uid: 40404 components: - type: Transform pos: 7.5,26.5 - parent: 38584 - - uid: 40578 + parent: 38411 + - uid: 40405 components: - type: Transform pos: 17.5,14.5 - parent: 38584 - - uid: 40579 + parent: 38411 + - uid: 40406 components: - type: Transform pos: -21.5,22.5 - parent: 38584 - - uid: 40580 + parent: 38411 + - uid: 40407 components: - type: Transform pos: -15.5,12.5 - parent: 38584 - - uid: 40581 + parent: 38411 + - uid: 40408 components: - type: Transform pos: -25.5,9.5 - parent: 38584 - - uid: 40582 + parent: 38411 + - uid: 40409 components: - type: Transform pos: 11.5,30.5 - parent: 38584 - - uid: 40583 + parent: 38411 + - uid: 40410 components: - type: Transform pos: -21.5,19.5 - parent: 38584 - - uid: 40584 + parent: 38411 + - uid: 40411 components: - type: Transform pos: -19.5,21.5 - parent: 38584 - - uid: 40585 + parent: 38411 + - uid: 40412 components: - type: Transform pos: -20.5,21.5 - parent: 38584 - - uid: 40586 + parent: 38411 + - uid: 40413 components: - type: Transform pos: -20.5,20.5 - parent: 38584 - - uid: 40587 + parent: 38411 + - uid: 40414 components: - type: Transform pos: -27.5,26.5 - parent: 38584 - - uid: 40588 + parent: 38411 + - uid: 40415 components: - type: Transform pos: 19.5,28.5 - parent: 38584 - - uid: 40589 + parent: 38411 + - uid: 40416 components: - type: Transform pos: 1.5,12.5 - parent: 38584 - - uid: 40590 + parent: 38411 + - uid: 40417 components: - type: Transform pos: -29.5,28.5 - parent: 38584 - - uid: 40591 + parent: 38411 + - uid: 40418 components: - type: Transform pos: -30.5,29.5 - parent: 38584 - - uid: 40592 + parent: 38411 + - uid: 40419 components: - type: Transform pos: 12.5,27.5 - parent: 38584 - - uid: 40593 + parent: 38411 + - uid: 40420 components: - type: Transform pos: 14.5,27.5 - parent: 38584 - - uid: 40594 + parent: 38411 + - uid: 40421 components: - type: Transform pos: -16.5,17.5 - parent: 38584 - - uid: 40595 + parent: 38411 + - uid: 40422 components: - type: Transform pos: -16.5,15.5 - parent: 38584 - - uid: 40596 + parent: 38411 + - uid: 40423 components: - type: Transform pos: -24.5,2.5 - parent: 38584 - - uid: 40597 + parent: 38411 + - uid: 40424 components: - type: Transform pos: -27.5,33.5 - parent: 38584 - - uid: 40598 + parent: 38411 + - uid: 40425 components: - type: Transform pos: 13.5,27.5 - parent: 38584 - - uid: 40599 + parent: 38411 + - uid: 40426 components: - type: Transform pos: -13.5,31.5 - parent: 38584 - - uid: 40600 + parent: 38411 + - uid: 40427 components: - type: Transform pos: -7.5,33.5 - parent: 38584 - - uid: 40601 + parent: 38411 + - uid: 40428 components: - type: Transform pos: -26.5,26.5 - parent: 38584 - - uid: 40602 + parent: 38411 + - uid: 40429 components: - type: Transform pos: -14.5,29.5 - parent: 38584 - - uid: 40603 + parent: 38411 + - uid: 40430 components: - type: Transform pos: 3.5,10.5 - parent: 38584 - - uid: 40604 + parent: 38411 + - uid: 40431 components: - type: Transform pos: 13.5,33.5 - parent: 38584 - - uid: 40605 + parent: 38411 + - uid: 40432 components: - type: Transform pos: 12.5,32.5 - parent: 38584 - - uid: 40606 + parent: 38411 + - uid: 40433 components: - type: Transform pos: 20.5,27.5 - parent: 38584 - - uid: 40607 + parent: 38411 + - uid: 40434 components: - type: Transform pos: 14.5,33.5 - parent: 38584 - - uid: 40608 + parent: 38411 + - uid: 40435 components: - type: Transform pos: 12.5,33.5 - parent: 38584 - - uid: 40609 + parent: 38411 + - uid: 40436 components: - type: Transform pos: -26.5,11.5 - parent: 38584 - - uid: 40610 + parent: 38411 + - uid: 40437 components: - type: Transform pos: -1.5,31.5 - parent: 38584 - - uid: 40611 + parent: 38411 + - uid: 40438 components: - type: Transform pos: -27.5,32.5 - parent: 38584 - - uid: 40612 + parent: 38411 + - uid: 40439 components: - type: Transform pos: 0.5,12.5 - parent: 38584 - - uid: 40613 + parent: 38411 + - uid: 40440 components: - type: Transform pos: 0.5,11.5 - parent: 38584 - - uid: 40614 + parent: 38411 + - uid: 40441 components: - type: Transform pos: 6.5,27.5 - parent: 38584 - - uid: 40615 + parent: 38411 + - uid: 40442 components: - type: Transform pos: 7.5,29.5 - parent: 38584 - - uid: 40616 + parent: 38411 + - uid: 40443 components: - type: Transform pos: 7.5,27.5 - parent: 38584 - - uid: 40617 + parent: 38411 + - uid: 40444 components: - type: Transform pos: 8.5,29.5 - parent: 38584 - - uid: 40618 + parent: 38411 + - uid: 40445 components: - type: Transform pos: 8.5,27.5 - parent: 38584 - - uid: 40619 + parent: 38411 + - uid: 40446 components: - type: Transform pos: 8.5,26.5 - parent: 38584 - - uid: 40620 + parent: 38411 + - uid: 40447 components: - type: Transform pos: 8.5,25.5 - parent: 38584 - - uid: 40621 + parent: 38411 + - uid: 40448 components: - type: Transform pos: 9.5,26.5 - parent: 38584 - - uid: 40622 + parent: 38411 + - uid: 40449 components: - type: Transform pos: 9.5,25.5 - parent: 38584 - - uid: 40623 + parent: 38411 + - uid: 40450 components: - type: Transform pos: 6.5,25.5 - parent: 38584 - - uid: 40624 + parent: 38411 + - uid: 40451 components: - type: Transform pos: 6.5,24.5 - parent: 38584 - - uid: 40625 + parent: 38411 + - uid: 40452 components: - type: Transform pos: 9.5,27.5 - parent: 38584 - - uid: 40626 + parent: 38411 + - uid: 40453 components: - type: Transform pos: 9.5,28.5 - parent: 38584 - - uid: 40627 + parent: 38411 + - uid: 40454 components: - type: Transform pos: 9.5,29.5 - parent: 38584 - - uid: 40628 + parent: 38411 + - uid: 40455 components: - type: Transform pos: 9.5,30.5 - parent: 38584 - - uid: 40629 + parent: 38411 + - uid: 40456 components: - type: Transform pos: 7.5,30.5 - parent: 38584 - - uid: 40630 + parent: 38411 + - uid: 40457 components: - type: Transform pos: 8.5,30.5 - parent: 38584 - - uid: 40631 + parent: 38411 + - uid: 40458 components: - type: Transform pos: 8.5,31.5 - parent: 38584 - - uid: 40632 + parent: 38411 + - uid: 40459 components: - type: Transform pos: 8.5,32.5 - parent: 38584 - - uid: 40633 + parent: 38411 + - uid: 40460 components: - type: Transform pos: 8.5,33.5 - parent: 38584 - - uid: 40634 + parent: 38411 + - uid: 40461 components: - type: Transform pos: 10.5,29.5 - parent: 38584 - - uid: 40635 + parent: 38411 + - uid: 40462 components: - type: Transform pos: 10.5,28.5 - parent: 38584 - - uid: 40636 + parent: 38411 + - uid: 40463 components: - type: Transform pos: 4.5,28.5 - parent: 38584 - - uid: 40637 + parent: 38411 + - uid: 40464 components: - type: Transform pos: 4.5,29.5 - parent: 38584 - - uid: 40638 + parent: 38411 + - uid: 40465 components: - type: Transform pos: 4.5,30.5 - parent: 38584 - - uid: 40639 + parent: 38411 + - uid: 40466 components: - type: Transform pos: 4.5,31.5 - parent: 38584 - - uid: 40640 + parent: 38411 + - uid: 40467 components: - type: Transform pos: 3.5,29.5 - parent: 38584 - - uid: 40641 + parent: 38411 + - uid: 40468 components: - type: Transform pos: 2.5,29.5 - parent: 38584 - - uid: 40642 + parent: 38411 + - uid: 40469 components: - type: Transform pos: 3.5,30.5 - parent: 38584 - - uid: 40643 + parent: 38411 + - uid: 40470 components: - type: Transform pos: 3.5,31.5 - parent: 38584 - - uid: 40644 + parent: 38411 + - uid: 40471 components: - type: Transform pos: 3.5,32.5 - parent: 38584 - - uid: 40645 + parent: 38411 + - uid: 40472 components: - type: Transform pos: 2.5,31.5 - parent: 38584 - - uid: 40646 + parent: 38411 + - uid: 40473 components: - type: Transform pos: 2.5,32.5 - parent: 38584 + parent: 38411 - proto: WallRockArtifactFragment entities: - - uid: 35903 + - uid: 35747 components: - type: Transform pos: -109.5,37.5 parent: 2 - - uid: 35904 + - uid: 35748 components: - type: Transform pos: 46.5,-74.5 parent: 2 - - uid: 35905 + - uid: 35749 components: - type: Transform pos: -32.5,-82.5 parent: 2 - - uid: 35906 + - uid: 35750 components: - type: Transform pos: -31.5,-81.5 parent: 2 - - uid: 35907 + - uid: 35751 components: - type: Transform pos: 22.5,74.5 parent: 2 - - uid: 35908 + - uid: 35752 components: - type: Transform pos: -69.5,60.5 parent: 2 - - uid: 35909 + - uid: 35753 components: - type: Transform pos: -110.5,26.5 parent: 2 - - uid: 35910 + - uid: 35754 components: - type: Transform pos: -63.5,-10.5 parent: 2 - - uid: 40647 + - uid: 40474 components: - type: Transform pos: 5.5,15.5 - parent: 38584 - - uid: 40648 + parent: 38411 + - uid: 40475 components: - type: Transform pos: 4.5,16.5 - parent: 38584 - - uid: 40649 + parent: 38411 + - uid: 40476 components: - type: Transform pos: 5.5,16.5 - parent: 38584 - - uid: 40650 + parent: 38411 + - uid: 40477 components: - type: Transform pos: -25.5,20.5 - parent: 38584 - - uid: 40651 + parent: 38411 + - uid: 40478 components: - type: Transform pos: -27.5,11.5 - parent: 38584 - - uid: 40652 + parent: 38411 + - uid: 40479 components: - type: Transform pos: 3.5,39.5 - parent: 38584 - - uid: 40653 + parent: 38411 + - uid: 40480 components: - type: Transform pos: 2.5,38.5 - parent: 38584 - - uid: 40654 + parent: 38411 + - uid: 40481 components: - type: Transform pos: -15.5,13.5 - parent: 38584 - - uid: 40655 + parent: 38411 + - uid: 40482 components: - type: Transform pos: -14.5,21.5 - parent: 38584 - - uid: 40656 + parent: 38411 + - uid: 40483 components: - type: Transform pos: -26.5,12.5 - parent: 38584 + parent: 38411 - proto: WallRockBananium entities: - - uid: 35911 + - uid: 35755 components: - type: Transform pos: -79.5,-24.5 parent: 2 - - uid: 35912 + - uid: 35756 components: - type: Transform pos: 58.5,-49.5 parent: 2 - - uid: 35913 + - uid: 35757 components: - type: Transform pos: -45.5,-61.5 parent: 2 - - uid: 35914 + - uid: 35758 components: - type: Transform pos: 32.5,16.5 parent: 2 - - uid: 35915 + - uid: 35759 components: - type: Transform pos: 37.5,15.5 parent: 2 - - uid: 35916 + - uid: 35760 components: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 35917 + - uid: 35761 components: - type: Transform pos: 68.5,-36.5 parent: 2 - - uid: 35918 + - uid: 35762 components: - type: Transform pos: -42.5,-67.5 parent: 2 - - uid: 35919 + - uid: 35763 components: - type: Transform pos: -108.5,53.5 parent: 2 - - uid: 40657 + - uid: 40484 components: - type: Transform pos: 5.5,21.5 - parent: 38584 - - uid: 40658 + parent: 38411 + - uid: 40485 components: - type: Transform pos: 10.5,9.5 - parent: 38584 - - uid: 40659 + parent: 38411 + - uid: 40486 components: - type: Transform pos: 3.5,27.5 - parent: 38584 - - uid: 40660 + parent: 38411 + - uid: 40487 components: - type: Transform pos: 3.5,13.5 - parent: 38584 + parent: 38411 - proto: WallRockCoal entities: - - uid: 35920 + - uid: 35764 components: - type: Transform pos: 44.5,-72.5 parent: 2 - - uid: 35921 + - uid: 35765 components: - type: Transform pos: -127.5,34.5 parent: 2 - - uid: 35922 + - uid: 35766 components: - type: Transform pos: -37.5,-82.5 parent: 2 - - uid: 35923 + - uid: 35767 components: - type: Transform pos: -36.5,-82.5 parent: 2 - - uid: 35924 + - uid: 35768 components: - type: Transform pos: 15.5,83.5 parent: 2 - - uid: 35925 + - uid: 35769 components: - type: Transform pos: 14.5,84.5 parent: 2 - - uid: 35926 + - uid: 35770 components: - type: Transform pos: -44.5,-65.5 parent: 2 - - uid: 35927 + - uid: 35771 components: - type: Transform pos: -43.5,-61.5 parent: 2 - - uid: 35928 + - uid: 35772 components: - type: Transform pos: -128.5,32.5 parent: 2 - - uid: 35929 + - uid: 35773 components: - type: Transform pos: -73.5,-38.5 parent: 2 - - uid: 35930 + - uid: 35774 components: - type: Transform pos: -108.5,33.5 parent: 2 - - uid: 35931 + - uid: 35775 components: - type: Transform pos: -76.5,-15.5 parent: 2 - - uid: 35932 + - uid: 35776 components: - type: Transform pos: -75.5,-13.5 parent: 2 - - uid: 40661 + - uid: 40488 components: - type: Transform pos: 13.5,11.5 - parent: 38584 - - uid: 40662 + parent: 38411 + - uid: 40489 components: - type: Transform pos: -22.5,21.5 - parent: 38584 - - uid: 40663 + parent: 38411 + - uid: 40490 components: - type: Transform pos: 12.5,12.5 - parent: 38584 - - uid: 40664 + parent: 38411 + - uid: 40491 components: - type: Transform pos: 13.5,10.5 - parent: 38584 - - uid: 40665 + parent: 38411 + - uid: 40492 components: - type: Transform pos: 13.5,9.5 - parent: 38584 - - uid: 40666 + parent: 38411 + - uid: 40493 components: - type: Transform pos: 11.5,11.5 - parent: 38584 - - uid: 40667 + parent: 38411 + - uid: 40494 components: - type: Transform pos: 10.5,11.5 - parent: 38584 - - uid: 40668 + parent: 38411 + - uid: 40495 components: - type: Transform pos: 12.5,11.5 - parent: 38584 - - uid: 40669 + parent: 38411 + - uid: 40496 components: - type: Transform pos: 12.5,10.5 - parent: 38584 - - uid: 40670 + parent: 38411 + - uid: 40497 components: - type: Transform pos: -22.5,20.5 - parent: 38584 - - uid: 40671 + parent: 38411 + - uid: 40498 components: - type: Transform pos: -26.5,20.5 - parent: 38584 - - uid: 40672 + parent: 38411 + - uid: 40499 components: - type: Transform pos: -26.5,19.5 - parent: 38584 - - uid: 40673 + parent: 38411 + - uid: 40500 components: - type: Transform pos: -25.5,23.5 - parent: 38584 - - uid: 40674 + parent: 38411 + - uid: 40501 components: - type: Transform pos: -26.5,23.5 - parent: 38584 - - uid: 40675 + parent: 38411 + - uid: 40502 components: - type: Transform pos: -24.5,22.5 - parent: 38584 - - uid: 40676 + parent: 38411 + - uid: 40503 components: - type: Transform pos: -23.5,20.5 - parent: 38584 - - uid: 40677 + parent: 38411 + - uid: 40504 components: - type: Transform pos: -27.5,19.5 - parent: 38584 - - uid: 40678 + parent: 38411 + - uid: 40505 components: - type: Transform pos: -28.5,17.5 - parent: 38584 - - uid: 40679 + parent: 38411 + - uid: 40506 components: - type: Transform pos: -28.5,18.5 - parent: 38584 - - uid: 40680 + parent: 38411 + - uid: 40507 components: - type: Transform pos: -25.5,24.5 - parent: 38584 - - uid: 40681 + parent: 38411 + - uid: 40508 components: - type: Transform pos: -28.5,16.5 - parent: 38584 - - uid: 40682 + parent: 38411 + - uid: 40509 components: - type: Transform pos: -29.5,16.5 - parent: 38584 - - uid: 40683 + parent: 38411 + - uid: 40510 components: - type: Transform pos: -29.5,17.5 - parent: 38584 - - uid: 40684 + parent: 38411 + - uid: 40511 components: - type: Transform pos: -13.5,16.5 - parent: 38584 - - uid: 40685 + parent: 38411 + - uid: 40512 components: - type: Transform pos: -13.5,17.5 - parent: 38584 - - uid: 40686 + parent: 38411 + - uid: 40513 components: - type: Transform pos: -12.5,17.5 - parent: 38584 - - uid: 40687 + parent: 38411 + - uid: 40514 components: - type: Transform pos: -9.5,12.5 - parent: 38584 + parent: 38411 - proto: WallRockGold entities: - - uid: 35933 + - uid: 35777 components: - type: Transform pos: -76.5,-37.5 parent: 2 - - uid: 35934 + - uid: 35778 components: - type: Transform pos: 68.5,-38.5 parent: 2 - - uid: 35935 + - uid: 35779 components: - type: Transform pos: -74.5,63.5 parent: 2 - - uid: 35936 + - uid: 35780 components: - type: Transform pos: -119.5,53.5 parent: 2 - - uid: 40688 + - uid: 40515 components: - type: Transform pos: 5.5,29.5 - parent: 38584 - - uid: 40689 + parent: 38411 + - uid: 40516 components: - type: Transform pos: 16.5,26.5 - parent: 38584 - - uid: 40690 + parent: 38411 + - uid: 40517 components: - type: Transform pos: 18.5,26.5 - parent: 38584 - - uid: 40691 + parent: 38411 + - uid: 40518 components: - type: Transform pos: 17.5,25.5 - parent: 38584 - - uid: 40692 + parent: 38411 + - uid: 40519 components: - type: Transform pos: -9.5,18.5 - parent: 38584 - - uid: 40693 + parent: 38411 + - uid: 40520 components: - type: Transform pos: -12.5,21.5 - parent: 38584 - - uid: 40694 + parent: 38411 + - uid: 40521 components: - type: Transform pos: -9.5,19.5 - parent: 38584 - - uid: 40695 + parent: 38411 + - uid: 40522 components: - type: Transform pos: -11.5,22.5 - parent: 38584 - - uid: 40696 + parent: 38411 + - uid: 40523 components: - type: Transform pos: -8.5,19.5 - parent: 38584 - - uid: 40697 + parent: 38411 + - uid: 40524 components: - type: Transform pos: 16.5,25.5 - parent: 38584 - - uid: 40698 + parent: 38411 + - uid: 40525 components: - type: Transform pos: 17.5,27.5 - parent: 38584 - - uid: 40699 + parent: 38411 + - uid: 40526 components: - type: Transform pos: 19.5,26.5 - parent: 38584 - - uid: 40700 + parent: 38411 + - uid: 40527 components: - type: Transform pos: 17.5,26.5 - parent: 38584 - - uid: 40701 + parent: 38411 + - uid: 40528 components: - type: Transform pos: 6.5,29.5 - parent: 38584 - - uid: 40702 + parent: 38411 + - uid: 40529 components: - type: Transform pos: 6.5,28.5 - parent: 38584 - - uid: 40703 + parent: 38411 + - uid: 40530 components: - type: Transform pos: 7.5,28.5 - parent: 38584 - - uid: 40704 + parent: 38411 + - uid: 40531 components: - type: Transform pos: 8.5,28.5 - parent: 38584 + parent: 38411 - proto: WallRockPlasma entities: - - uid: 35937 + - uid: 35781 components: - type: Transform pos: -83.5,-22.5 parent: 2 - - uid: 35938 + - uid: 35782 components: - type: Transform pos: -109.5,41.5 parent: 2 - - uid: 35939 + - uid: 35783 components: - type: Transform pos: -52.5,-52.5 parent: 2 - - uid: 35940 + - uid: 35784 components: - type: Transform pos: -125.5,28.5 parent: 2 - - uid: 35941 + - uid: 35785 components: - type: Transform pos: 59.5,-36.5 parent: 2 - - uid: 35942 + - uid: 35786 components: - type: Transform pos: -46.5,-63.5 parent: 2 - - uid: 35943 + - uid: 35787 components: - type: Transform pos: -47.5,-64.5 parent: 2 - - uid: 35944 + - uid: 35788 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 35945 + - uid: 35789 components: - type: Transform pos: -68.5,64.5 parent: 2 - - uid: 40705 + - uid: 40532 components: - type: Transform pos: 9.5,36.5 - parent: 38584 - - uid: 40706 + parent: 38411 + - uid: 40533 components: - type: Transform pos: 10.5,35.5 - parent: 38584 - - uid: 40707 + parent: 38411 + - uid: 40534 components: - type: Transform pos: 12.5,35.5 - parent: 38584 - - uid: 40708 + parent: 38411 + - uid: 40535 components: - type: Transform pos: 10.5,36.5 - parent: 38584 - - uid: 40709 + parent: 38411 + - uid: 40536 components: - type: Transform pos: 11.5,36.5 - parent: 38584 - - uid: 40710 + parent: 38411 + - uid: 40537 components: - type: Transform pos: 10.5,37.5 - parent: 38584 - - uid: 40711 + parent: 38411 + - uid: 40538 components: - type: Transform pos: 8.5,37.5 - parent: 38584 + parent: 38411 - proto: WallRockQuartz entities: - - uid: 35946 + - uid: 35790 components: - type: Transform pos: 55.5,-54.5 parent: 2 - - uid: 35947 + - uid: 35791 components: - type: Transform pos: 35.5,16.5 parent: 2 - - uid: 35948 + - uid: 35792 components: - type: Transform pos: -46.5,-52.5 parent: 2 - - uid: 35949 + - uid: 35793 components: - type: Transform pos: -53.5,-50.5 parent: 2 - - uid: 35950 + - uid: 35794 components: - type: Transform pos: -105.5,46.5 parent: 2 - - uid: 35951 + - uid: 35795 components: - type: Transform pos: -81.5,-21.5 parent: 2 - - uid: 40712 + - uid: 40539 components: - type: Transform pos: 6.5,11.5 - parent: 38584 - - uid: 40713 + parent: 38411 + - uid: 40540 components: - type: Transform pos: 7.5,9.5 - parent: 38584 - - uid: 40714 + parent: 38411 + - uid: 40541 components: - type: Transform pos: 5.5,10.5 - parent: 38584 - - uid: 40715 + parent: 38411 + - uid: 40542 components: - type: Transform pos: 6.5,10.5 - parent: 38584 - - uid: 40716 + parent: 38411 + - uid: 40543 components: - type: Transform pos: 5.5,13.5 - parent: 38584 - - uid: 40717 + parent: 38411 + - uid: 40544 components: - type: Transform pos: 6.5,9.5 - parent: 38584 - - uid: 40718 + parent: 38411 + - uid: 40545 components: - type: Transform pos: 5.5,12.5 - parent: 38584 - - uid: 40719 + parent: 38411 + - uid: 40546 components: - type: Transform pos: 6.5,12.5 - parent: 38584 - - uid: 40720 + parent: 38411 + - uid: 40547 components: - type: Transform pos: 7.5,11.5 - parent: 38584 - - uid: 40721 + parent: 38411 + - uid: 40548 components: - type: Transform pos: -12.5,40.5 - parent: 38584 - - uid: 40722 + parent: 38411 + - uid: 40549 components: - type: Transform pos: -14.5,40.5 - parent: 38584 - - uid: 40723 + parent: 38411 + - uid: 40550 components: - type: Transform pos: -19.5,38.5 - parent: 38584 - - uid: 40724 + parent: 38411 + - uid: 40551 components: - type: Transform pos: -13.5,39.5 - parent: 38584 - - uid: 40725 + parent: 38411 + - uid: 40552 components: - type: Transform pos: -11.5,38.5 - parent: 38584 - - uid: 40726 + parent: 38411 + - uid: 40553 components: - type: Transform pos: -20.5,38.5 - parent: 38584 - - uid: 40727 + parent: 38411 + - uid: 40554 components: - type: Transform pos: -20.5,39.5 - parent: 38584 - - uid: 40728 + parent: 38411 + - uid: 40555 components: - type: Transform pos: -10.5,37.5 - parent: 38584 - - uid: 40729 + parent: 38411 + - uid: 40556 components: - type: Transform pos: 7.5,41.5 - parent: 38584 - - uid: 40730 + parent: 38411 + - uid: 40557 components: - type: Transform pos: 2.5,40.5 - parent: 38584 - - uid: 40731 + parent: 38411 + - uid: 40558 components: - type: Transform pos: 0.5,26.5 - parent: 38584 - - uid: 40732 + parent: 38411 + - uid: 40559 components: - type: Transform pos: -12.5,38.5 - parent: 38584 - - uid: 40733 + parent: 38411 + - uid: 40560 components: - type: Transform pos: 4.5,10.5 - parent: 38584 - - uid: 40734 + parent: 38411 + - uid: 40561 components: - type: Transform pos: 1.5,25.5 - parent: 38584 - - uid: 40735 + parent: 38411 + - uid: 40562 components: - type: Transform pos: 1.5,24.5 - parent: 38584 - - uid: 40736 + parent: 38411 + - uid: 40563 components: - type: Transform pos: -13.5,38.5 - parent: 38584 - - uid: 40737 + parent: 38411 + - uid: 40564 components: - type: Transform pos: 0.5,25.5 - parent: 38584 + parent: 38411 - proto: WallRockSalt entities: - - uid: 35952 + - uid: 35796 components: - type: Transform pos: -79.5,-19.5 parent: 2 - - uid: 35953 + - uid: 35797 components: - type: Transform pos: -41.5,-78.5 parent: 2 - - uid: 35954 + - uid: 35798 components: - type: Transform pos: -126.5,26.5 parent: 2 - - uid: 35955 + - uid: 35799 components: - type: Transform pos: 18.5,84.5 parent: 2 - - uid: 35956 + - uid: 35800 components: - type: Transform pos: 46.5,-65.5 parent: 2 - - uid: 35957 + - uid: 35801 components: - type: Transform pos: 11.5,-71.5 parent: 2 - - uid: 35958 + - uid: 35802 components: - type: Transform pos: -76.5,-33.5 parent: 2 - - uid: 35959 + - uid: 35803 components: - type: Transform pos: -72.5,62.5 parent: 2 - - uid: 35960 + - uid: 35804 components: - type: Transform pos: -107.5,49.5 parent: 2 - - uid: 40738 + - uid: 40565 components: - type: Transform pos: 7.5,31.5 - parent: 38584 - - uid: 40739 + parent: 38411 + - uid: 40566 components: - type: Transform pos: 5.5,33.5 - parent: 38584 - - uid: 40740 + parent: 38411 + - uid: 40567 components: - type: Transform pos: 5.5,32.5 - parent: 38584 - - uid: 40741 + parent: 38411 + - uid: 40568 components: - type: Transform pos: 4.5,34.5 - parent: 38584 - - uid: 40742 + parent: 38411 + - uid: 40569 components: - type: Transform pos: 6.5,34.5 - parent: 38584 - - uid: 40743 + parent: 38411 + - uid: 40570 components: - type: Transform pos: 7.5,32.5 - parent: 38584 - - uid: 40744 + parent: 38411 + - uid: 40571 components: - type: Transform pos: 6.5,33.5 - parent: 38584 - - uid: 40745 + parent: 38411 + - uid: 40572 components: - type: Transform pos: -3.5,33.5 - parent: 38584 - - uid: 40746 + parent: 38411 + - uid: 40573 components: - type: Transform pos: -3.5,34.5 - parent: 38584 - - uid: 40747 + parent: 38411 + - uid: 40574 components: - type: Transform pos: -8.5,33.5 - parent: 38584 + parent: 38411 - proto: WallRockSilver entities: - - uid: 35961 + - uid: 35805 components: - type: Transform pos: -29.5,-82.5 parent: 2 - - uid: 35962 + - uid: 35806 components: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 35963 + - uid: 35807 components: - type: Transform pos: -27.5,-81.5 parent: 2 - - uid: 35964 + - uid: 35808 components: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 35965 + - uid: 35809 components: - type: Transform pos: 58.5,-34.5 parent: 2 - - uid: 35966 + - uid: 35810 components: - type: Transform pos: 13.5,-75.5 parent: 2 - - uid: 35967 + - uid: 35811 components: - type: Transform pos: -44.5,-69.5 parent: 2 - - uid: 35968 + - uid: 35812 components: - type: Transform pos: -46.5,-67.5 parent: 2 - - uid: 35969 + - uid: 35813 components: - type: Transform pos: -111.5,28.5 parent: 2 - - uid: 35970 + - uid: 35814 components: - type: Transform pos: -110.5,56.5 parent: 2 - - uid: 35971 + - uid: 35815 components: - type: Transform pos: -116.5,54.5 parent: 2 - - uid: 40748 + - uid: 40575 components: - type: Transform pos: 13.5,30.5 - parent: 38584 - - uid: 40749 + parent: 38411 + - uid: 40576 components: - type: Transform pos: 15.5,33.5 - parent: 38584 - - uid: 40750 + parent: 38411 + - uid: 40577 components: - type: Transform pos: 18.5,29.5 - parent: 38584 - - uid: 40751 + parent: 38411 + - uid: 40578 components: - type: Transform pos: 14.5,31.5 - parent: 38584 - - uid: 40752 + parent: 38411 + - uid: 40579 components: - type: Transform pos: -24.5,8.5 - parent: 38584 - - uid: 40753 + parent: 38411 + - uid: 40580 components: - type: Transform pos: -26.5,7.5 - parent: 38584 - - uid: 40754 + parent: 38411 + - uid: 40581 components: - type: Transform pos: -26.5,6.5 - parent: 38584 - - uid: 40755 + parent: 38411 + - uid: 40582 components: - type: Transform pos: -25.5,6.5 - parent: 38584 - - uid: 40756 + parent: 38411 + - uid: 40583 components: - type: Transform pos: -24.5,7.5 - parent: 38584 - - uid: 40757 + parent: 38411 + - uid: 40584 components: - type: Transform pos: -25.5,5.5 - parent: 38584 - - uid: 40758 + parent: 38411 + - uid: 40585 components: - type: Transform pos: 15.5,32.5 - parent: 38584 - - uid: 40759 + parent: 38411 + - uid: 40586 components: - type: Transform pos: 17.5,30.5 - parent: 38584 - - uid: 40760 + parent: 38411 + - uid: 40587 components: - type: Transform pos: 18.5,30.5 - parent: 38584 - - uid: 40761 + parent: 38411 + - uid: 40588 components: - type: Transform pos: 13.5,31.5 - parent: 38584 - - uid: 40762 + parent: 38411 + - uid: 40589 components: - type: Transform pos: 12.5,31.5 - parent: 38584 - - uid: 40763 + parent: 38411 + - uid: 40590 components: - type: Transform pos: 14.5,32.5 - parent: 38584 + parent: 38411 - proto: WallRockTin entities: - - uid: 35972 + - uid: 35816 components: - type: Transform pos: 48.5,-71.5 parent: 2 - - uid: 35973 + - uid: 35817 components: - type: Transform pos: 70.5,-37.5 parent: 2 - - uid: 35974 + - uid: 35818 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - uid: 35975 + - uid: 35819 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 35976 + - uid: 35820 components: - type: Transform pos: -109.5,50.5 parent: 2 - - uid: 35977 + - uid: 35821 components: - type: Transform pos: -82.5,-18.5 parent: 2 - - uid: 40764 + - uid: 40591 components: - type: Transform pos: 7.5,15.5 - parent: 38584 - - uid: 40765 + parent: 38411 + - uid: 40592 components: - type: Transform pos: 6.5,17.5 - parent: 38584 - - uid: 40766 + parent: 38411 + - uid: 40593 components: - type: Transform pos: 7.5,24.5 - parent: 38584 - - uid: 40767 + parent: 38411 + - uid: 40594 components: - type: Transform pos: 12.5,26.5 - parent: 38584 - - uid: 40768 + parent: 38411 + - uid: 40595 components: - type: Transform pos: 8.5,15.5 - parent: 38584 - - uid: 40769 + parent: 38411 + - uid: 40596 components: - type: Transform pos: 8.5,23.5 - parent: 38584 - - uid: 40770 + parent: 38411 + - uid: 40597 components: - type: Transform pos: 7.5,16.5 - parent: 38584 - - uid: 40771 + parent: 38411 + - uid: 40598 components: - type: Transform pos: 8.5,24.5 - parent: 38584 - - uid: 40772 + parent: 38411 + - uid: 40599 components: - type: Transform pos: 6.5,16.5 - parent: 38584 - - uid: 40773 + parent: 38411 + - uid: 40600 components: - type: Transform pos: -31.5,30.5 - parent: 38584 - - uid: 40774 + parent: 38411 + - uid: 40601 components: - type: Transform pos: -29.5,30.5 - parent: 38584 - - uid: 40775 + parent: 38411 + - uid: 40602 components: - type: Transform pos: -24.5,11.5 - parent: 38584 - - uid: 40776 + parent: 38411 + - uid: 40603 components: - type: Transform pos: -30.5,31.5 - parent: 38584 - - uid: 40777 + parent: 38411 + - uid: 40604 components: - type: Transform pos: -24.5,33.5 - parent: 38584 - - uid: 40778 + parent: 38411 + - uid: 40605 components: - type: Transform pos: -24.5,38.5 - parent: 38584 - - uid: 40779 + parent: 38411 + - uid: 40606 components: - type: Transform pos: -14.5,39.5 - parent: 38584 - - uid: 40780 + parent: 38411 + - uid: 40607 components: - type: Transform pos: -26.5,33.5 - parent: 38584 - - uid: 40781 + parent: 38411 + - uid: 40608 components: - type: Transform pos: -23.5,18.5 - parent: 38584 - - uid: 40782 + parent: 38411 + - uid: 40609 components: - type: Transform pos: -30.5,32.5 - parent: 38584 - - uid: 40783 + parent: 38411 + - uid: 40610 components: - type: Transform pos: -16.5,40.5 - parent: 38584 - - uid: 40784 + parent: 38411 + - uid: 40611 components: - type: Transform pos: -11.5,39.5 - parent: 38584 - - uid: 40785 + parent: 38411 + - uid: 40612 components: - type: Transform pos: -27.5,12.5 - parent: 38584 - - uid: 40786 + parent: 38411 + - uid: 40613 components: - type: Transform pos: -28.5,13.5 - parent: 38584 - - uid: 40787 + parent: 38411 + - uid: 40614 components: - type: Transform pos: -24.5,32.5 - parent: 38584 - - uid: 40788 + parent: 38411 + - uid: 40615 components: - type: Transform pos: -22.5,36.5 - parent: 38584 - - uid: 40789 + parent: 38411 + - uid: 40616 components: - type: Transform pos: -17.5,39.5 - parent: 38584 - - uid: 40790 + parent: 38411 + - uid: 40617 components: - type: Transform pos: -23.5,38.5 - parent: 38584 - - uid: 40791 + parent: 38411 + - uid: 40618 components: - type: Transform pos: -26.5,28.5 - parent: 38584 - - uid: 40792 + parent: 38411 + - uid: 40619 components: - type: Transform pos: -24.5,36.5 - parent: 38584 - - uid: 40793 + parent: 38411 + - uid: 40620 components: - type: Transform pos: -26.5,29.5 - parent: 38584 - - uid: 40794 + parent: 38411 + - uid: 40621 components: - type: Transform pos: -21.5,37.5 - parent: 38584 - - uid: 40795 + parent: 38411 + - uid: 40622 components: - type: Transform pos: -12.5,37.5 - parent: 38584 - - uid: 40796 + parent: 38411 + - uid: 40623 components: - type: Transform pos: 3.5,22.5 - parent: 38584 - - uid: 40797 + parent: 38411 + - uid: 40624 components: - type: Transform pos: 10.5,27.5 - parent: 38584 - - uid: 40798 + parent: 38411 + - uid: 40625 components: - type: Transform pos: 4.5,22.5 - parent: 38584 - - uid: 40799 + parent: 38411 + - uid: 40626 components: - type: Transform pos: 3.5,21.5 - parent: 38584 - - uid: 40800 + parent: 38411 + - uid: 40627 components: - type: Transform pos: 4.5,23.5 - parent: 38584 - - uid: 40801 + parent: 38411 + - uid: 40628 components: - type: Transform pos: 2.5,22.5 - parent: 38584 - - uid: 40802 + parent: 38411 + - uid: 40629 components: - type: Transform pos: -15.5,39.5 - parent: 38584 - - uid: 40803 + parent: 38411 + - uid: 40630 components: - type: Transform pos: -26.5,17.5 - parent: 38584 - - uid: 40804 + parent: 38411 + - uid: 40631 components: - type: Transform pos: -26.5,16.5 - parent: 38584 - - uid: 40805 + parent: 38411 + - uid: 40632 components: - type: Transform pos: -12.5,25.5 - parent: 38584 - - uid: 40806 + parent: 38411 + - uid: 40633 components: - type: Transform pos: -11.5,21.5 - parent: 38584 - - uid: 40807 + parent: 38411 + - uid: 40634 components: - type: Transform pos: 11.5,26.5 - parent: 38584 - - uid: 40808 + parent: 38411 + - uid: 40635 components: - type: Transform pos: -12.5,20.5 - parent: 38584 - - uid: 40809 + parent: 38411 + - uid: 40636 components: - type: Transform pos: 10.5,26.5 - parent: 38584 - - uid: 40810 + parent: 38411 + - uid: 40637 components: - type: Transform pos: -20.5,37.5 - parent: 38584 - - uid: 40811 + parent: 38411 + - uid: 40638 components: - type: Transform pos: -13.5,24.5 - parent: 38584 - - uid: 40812 + parent: 38411 + - uid: 40639 components: - type: Transform pos: -11.5,26.5 - parent: 38584 - - uid: 40813 + parent: 38411 + - uid: 40640 components: - type: Transform pos: -12.5,26.5 - parent: 38584 - - uid: 40814 + parent: 38411 + - uid: 40641 components: - type: Transform pos: 11.5,25.5 - parent: 38584 - - uid: 40815 + parent: 38411 + - uid: 40642 components: - type: Transform pos: -28.5,29.5 - parent: 38584 - - uid: 40816 + parent: 38411 + - uid: 40643 components: - type: Transform pos: -25.5,17.5 - parent: 38584 - - uid: 40817 + parent: 38411 + - uid: 40644 components: - type: Transform pos: -20.5,36.5 - parent: 38584 - - uid: 40818 + parent: 38411 + - uid: 40645 components: - type: Transform pos: -25.5,16.5 - parent: 38584 + parent: 38411 - proto: WallRockUranium entities: - - uid: 35978 + - uid: 35822 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 35979 + - uid: 35823 components: - type: Transform pos: -125.5,31.5 parent: 2 - - uid: 35980 + - uid: 35824 components: - type: Transform pos: 17.5,74.5 parent: 2 - - uid: 35981 + - uid: 35825 components: - type: Transform pos: 63.5,-37.5 parent: 2 - - uid: 35982 + - uid: 35826 components: - type: Transform pos: -79.5,-33.5 parent: 2 - - uid: 35983 + - uid: 35827 components: - type: Transform pos: -111.5,53.5 parent: 2 - - uid: 40819 + - uid: 40646 components: - type: Transform pos: -25.5,13.5 - parent: 38584 - - uid: 40820 + parent: 38411 + - uid: 40647 components: - type: Transform pos: -14.5,30.5 - parent: 38584 - - uid: 40821 + parent: 38411 + - uid: 40648 components: - type: Transform pos: -2.5,33.5 - parent: 38584 - - uid: 40822 + parent: 38411 + - uid: 40649 components: - type: Transform pos: 6.5,40.5 - parent: 38584 - - uid: 40823 + parent: 38411 + - uid: 40650 components: - type: Transform pos: 4.5,42.5 - parent: 38584 - - uid: 40824 + parent: 38411 + - uid: 40651 components: - type: Transform pos: 4.5,41.5 - parent: 38584 - - uid: 40825 + parent: 38411 + - uid: 40652 components: - type: Transform pos: -9.5,30.5 - parent: 38584 - - uid: 40826 + parent: 38411 + - uid: 40653 components: - type: Transform pos: 1.5,13.5 - parent: 38584 - - uid: 40827 + parent: 38411 + - uid: 40654 components: - type: Transform pos: -1.5,32.5 - parent: 38584 - - uid: 40828 + parent: 38411 + - uid: 40655 components: - type: Transform pos: -15.5,21.5 - parent: 38584 - - uid: 40829 + parent: 38411 + - uid: 40656 components: - type: Transform pos: -14.5,20.5 - parent: 38584 - - uid: 40830 + parent: 38411 + - uid: 40657 components: - type: Transform pos: 0.5,13.5 - parent: 38584 - - uid: 40831 + parent: 38411 + - uid: 40658 components: - type: Transform pos: 1.5,14.5 - parent: 38584 - - uid: 40832 + parent: 38411 + - uid: 40659 components: - type: Transform pos: -15.5,22.5 - parent: 38584 - - uid: 40833 + parent: 38411 + - uid: 40660 components: - type: Transform pos: -13.5,32.5 - parent: 38584 - - uid: 40834 + parent: 38411 + - uid: 40661 components: - type: Transform pos: -17.5,22.5 - parent: 38584 - - uid: 40835 + parent: 38411 + - uid: 40662 components: - type: Transform pos: -11.5,31.5 - parent: 38584 + parent: 38411 - proto: WallShuttle entities: - - uid: 38558 + - uid: 38385 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 38484 - - uid: 38559 + parent: 38311 + - uid: 38386 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 - parent: 38484 - - uid: 38560 + parent: 38311 + - uid: 38387 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 - parent: 38484 - - uid: 38561 + parent: 38311 + - uid: 38388 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 38484 - - uid: 38562 + parent: 38311 + - uid: 38389 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 - parent: 38484 - - uid: 38563 + parent: 38311 + - uid: 38390 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-0.5 - parent: 38484 - - uid: 38564 + parent: 38311 + - uid: 38391 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 38484 - - uid: 38565 + parent: 38311 + - uid: 38392 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-1.5 - parent: 38484 - - uid: 38566 + parent: 38311 + - uid: 38393 components: - type: Transform pos: 0.5,2.5 - parent: 38484 - - uid: 38567 + parent: 38311 + - uid: 38394 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 - parent: 38484 - - uid: 38568 + parent: 38311 + - uid: 38395 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 - parent: 38484 - - uid: 38569 + parent: 38311 + - uid: 38396 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 38484 - - uid: 38570 + parent: 38311 + - uid: 38397 components: - type: Transform pos: 2.5,2.5 - parent: 38484 - - uid: 38571 + parent: 38311 + - uid: 38398 components: - type: Transform pos: 1.5,-2.5 - parent: 38484 - - uid: 38572 + parent: 38311 + - uid: 38399 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 - parent: 38484 + parent: 38311 - proto: WallShuttleDiagonal entities: - - uid: 38573 + - uid: 38400 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-1.5 - parent: 38484 - - uid: 38574 + parent: 38311 + - uid: 38401 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 - parent: 38484 - - uid: 38575 + parent: 38311 + - uid: 38402 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 - parent: 38484 - - uid: 38576 + parent: 38311 + - uid: 38403 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-3.5 - parent: 38484 - - uid: 38577 + parent: 38311 + - uid: 38404 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 38484 - - uid: 38578 + parent: 38311 + - uid: 38405 components: - type: Transform pos: 2.5,-0.5 - parent: 38484 - - uid: 38579 + parent: 38311 + - uid: 38406 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 38484 - - uid: 38580 + parent: 38311 + - uid: 38407 components: - type: Transform pos: -1.5,3.5 - parent: 38484 + parent: 38311 - proto: WallSilver entities: - - uid: 35984 + - uid: 35828 components: - type: MetaData name: мягкая стена @@ -265790,7 +265858,7 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-36.5 parent: 2 - - uid: 35985 + - uid: 35829 components: - type: MetaData name: мягкая стена @@ -265798,7 +265866,7 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-37.5 parent: 2 - - uid: 35986 + - uid: 35830 components: - type: MetaData name: мягкая стена @@ -265806,7 +265874,7 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-38.5 parent: 2 - - uid: 35987 + - uid: 35831 components: - type: MetaData name: мягкая стена @@ -265816,9236 +265884,9236 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 35988 + - uid: 35832 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,40.5 parent: 2 - - uid: 35989 + - uid: 35833 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-32.5 parent: 2 - - uid: 35990 + - uid: 35834 components: - type: Transform pos: 41.5,-3.5 parent: 2 - - uid: 35991 + - uid: 35835 components: - type: Transform pos: 39.5,-3.5 parent: 2 - - uid: 35992 + - uid: 35836 components: - type: Transform pos: 39.5,-2.5 parent: 2 - - uid: 35993 + - uid: 35837 components: - type: Transform pos: 40.5,-2.5 parent: 2 - - uid: 35994 + - uid: 35838 components: - type: Transform pos: 40.5,-3.5 parent: 2 - - uid: 35995 + - uid: 35839 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 - - uid: 35996 + - uid: 35840 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-34.5 parent: 2 - - uid: 35997 + - uid: 35841 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-34.5 parent: 2 - - uid: 35998 + - uid: 35842 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-33.5 parent: 2 - - uid: 35999 + - uid: 35843 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 - - uid: 36000 + - uid: 35844 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-35.5 parent: 2 - - uid: 36001 + - uid: 35845 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-32.5 parent: 2 - - uid: 36002 + - uid: 35846 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-32.5 parent: 2 - - uid: 36003 + - uid: 35847 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-33.5 parent: 2 - - uid: 36004 + - uid: 35848 components: - type: Transform pos: 43.5,-3.5 parent: 2 - - uid: 36005 + - uid: 35849 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 36006 + - uid: 35850 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-45.5 parent: 2 - - uid: 36007 + - uid: 35851 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-45.5 parent: 2 - - uid: 36008 + - uid: 35852 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,46.5 parent: 2 - - uid: 36009 + - uid: 35853 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 36010 + - uid: 35854 components: - type: Transform pos: -110.5,33.5 parent: 2 - - uid: 36011 + - uid: 35855 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-35.5 parent: 2 - - uid: 36012 + - uid: 35856 components: - type: Transform pos: -53.5,-36.5 parent: 2 - - uid: 36013 + - uid: 35857 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-2.5 parent: 2 - - uid: 36014 + - uid: 35858 components: - type: Transform pos: -55.5,-23.5 parent: 2 - - uid: 36015 + - uid: 35859 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-7.5 parent: 2 - - uid: 36016 + - uid: 35860 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-1.5 parent: 2 - - uid: 36017 + - uid: 35861 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-3.5 parent: 2 - - uid: 36018 + - uid: 35862 components: - type: Transform pos: -3.5,-21.5 parent: 2 - - uid: 36019 + - uid: 35863 components: - type: Transform pos: 14.5,-21.5 parent: 2 - - uid: 36020 + - uid: 35864 components: - type: Transform pos: 22.5,33.5 parent: 2 - - uid: 36021 + - uid: 35865 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 36022 + - uid: 35866 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 36023 + - uid: 35867 components: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 36024 + - uid: 35868 components: - type: Transform pos: 2.5,-21.5 parent: 2 - - uid: 36025 + - uid: 35869 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-71.5 parent: 2 - - uid: 36026 + - uid: 35870 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-58.5 parent: 2 - - uid: 36027 + - uid: 35871 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-59.5 parent: 2 - - uid: 36028 + - uid: 35872 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-68.5 parent: 2 - - uid: 36029 + - uid: 35873 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-68.5 parent: 2 - - uid: 36030 + - uid: 35874 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-68.5 parent: 2 - - uid: 36031 + - uid: 35875 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-68.5 parent: 2 - - uid: 36032 + - uid: 35876 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-69.5 parent: 2 - - uid: 36033 + - uid: 35877 components: - type: Transform pos: -56.5,-31.5 parent: 2 - - uid: 36034 + - uid: 35878 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-33.5 parent: 2 - - uid: 36035 + - uid: 35879 components: - type: Transform pos: -27.5,-62.5 parent: 2 - - uid: 36036 + - uid: 35880 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-35.5 parent: 2 - - uid: 36037 + - uid: 35881 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-38.5 parent: 2 - - uid: 36038 + - uid: 35882 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-37.5 parent: 2 - - uid: 36039 + - uid: 35883 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-60.5 parent: 2 - - uid: 36040 + - uid: 35884 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-63.5 parent: 2 - - uid: 36041 + - uid: 35885 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-61.5 parent: 2 - - uid: 36042 + - uid: 35886 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-63.5 parent: 2 - - uid: 36043 + - uid: 35887 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-60.5 parent: 2 - - uid: 36044 + - uid: 35888 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-39.5 parent: 2 - - uid: 36045 + - uid: 35889 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-68.5 parent: 2 - - uid: 36046 + - uid: 35890 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-63.5 parent: 2 - - uid: 36047 + - uid: 35891 components: - type: Transform pos: -55.5,-32.5 parent: 2 - - uid: 36048 + - uid: 35892 components: - type: Transform pos: -48.5,-32.5 parent: 2 - - uid: 36049 + - uid: 35893 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 - - uid: 36050 + - uid: 35894 components: - type: Transform pos: -10.5,-60.5 parent: 2 - - uid: 36051 + - uid: 35895 components: - type: Transform pos: -39.5,-70.5 parent: 2 - - uid: 36052 + - uid: 35896 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,56.5 parent: 2 - - uid: 36053 + - uid: 35897 components: - type: Transform pos: -53.5,-32.5 parent: 2 - - uid: 36054 + - uid: 35898 components: - type: Transform pos: -74.5,-28.5 parent: 2 - - uid: 36055 + - uid: 35899 components: - type: Transform pos: -63.5,-31.5 parent: 2 - - uid: 36056 + - uid: 35900 components: - type: Transform pos: -72.5,-20.5 parent: 2 - - uid: 36057 + - uid: 35901 components: - type: Transform pos: -56.5,-20.5 parent: 2 - - uid: 36058 + - uid: 35902 components: - type: Transform pos: -39.5,-73.5 parent: 2 - - uid: 36059 + - uid: 35903 components: - type: Transform pos: -14.5,-62.5 parent: 2 - - uid: 36060 + - uid: 35904 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-34.5 parent: 2 - - uid: 36061 + - uid: 35905 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-68.5 parent: 2 - - uid: 36062 + - uid: 35906 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-63.5 parent: 2 - - uid: 36063 + - uid: 35907 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-63.5 parent: 2 - - uid: 36064 + - uid: 35908 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-60.5 parent: 2 - - uid: 36065 + - uid: 35909 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-71.5 parent: 2 - - uid: 36066 + - uid: 35910 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-63.5 parent: 2 - - uid: 36067 + - uid: 35911 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-63.5 parent: 2 - - uid: 36068 + - uid: 35912 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-68.5 parent: 2 - - uid: 36069 + - uid: 35913 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-75.5 parent: 2 - - uid: 36070 + - uid: 35914 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-74.5 parent: 2 - - uid: 36071 + - uid: 35915 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-71.5 parent: 2 - - uid: 36072 + - uid: 35916 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-54.5 parent: 2 - - uid: 36073 + - uid: 35917 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-75.5 parent: 2 - - uid: 36074 + - uid: 35918 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-78.5 parent: 2 - - uid: 36075 + - uid: 35919 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-73.5 parent: 2 - - uid: 36076 + - uid: 35920 components: - type: Transform pos: 8.5,73.5 parent: 2 - - uid: 36077 + - uid: 35921 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-42.5 parent: 2 - - uid: 36078 + - uid: 35922 components: - type: Transform pos: 11.5,26.5 parent: 2 - - uid: 36079 + - uid: 35923 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 36080 + - uid: 35924 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 - - uid: 36081 + - uid: 35925 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,25.5 parent: 2 - - uid: 36082 + - uid: 35926 components: - type: Transform pos: 9.5,71.5 parent: 2 - - uid: 36083 + - uid: 35927 components: - type: Transform pos: 11.5,71.5 parent: 2 - - uid: 36084 + - uid: 35928 components: - type: Transform pos: 9.5,67.5 parent: 2 - - uid: 36085 + - uid: 35929 components: - type: Transform pos: -26.5,59.5 parent: 2 - - uid: 36086 + - uid: 35930 components: - type: Transform pos: -1.5,52.5 parent: 2 - - uid: 36087 + - uid: 35931 components: - type: Transform pos: -13.5,52.5 parent: 2 - - uid: 36088 + - uid: 35932 components: - type: Transform pos: 9.5,69.5 parent: 2 - - uid: 36089 + - uid: 35933 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-12.5 parent: 2 - - uid: 36090 + - uid: 35934 components: - type: Transform pos: 17.5,68.5 parent: 2 - - uid: 36091 + - uid: 35935 components: - type: Transform pos: -6.5,51.5 parent: 2 - - uid: 36092 + - uid: 35936 components: - type: Transform pos: 8.5,71.5 parent: 2 - - uid: 36093 + - uid: 35937 components: - type: Transform pos: 9.5,70.5 parent: 2 - - uid: 36094 + - uid: 35938 components: - type: Transform pos: -35.5,52.5 parent: 2 - - uid: 36095 + - uid: 35939 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 2 - - uid: 36096 + - uid: 35940 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-62.5 parent: 2 - - uid: 36097 + - uid: 35941 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 2 - - uid: 36098 + - uid: 35942 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,29.5 parent: 2 - - uid: 36099 + - uid: 35943 components: - type: Transform pos: -1.5,53.5 parent: 2 - - uid: 36100 + - uid: 35944 components: - type: Transform pos: -4.5,51.5 parent: 2 - - uid: 36101 + - uid: 35945 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,29.5 parent: 2 - - uid: 36102 + - uid: 35946 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-54.5 parent: 2 - - uid: 36103 + - uid: 35947 components: - type: Transform pos: -26.5,44.5 parent: 2 - - uid: 36104 + - uid: 35948 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 - - uid: 36105 + - uid: 35949 components: - type: Transform pos: -13.5,47.5 parent: 2 - - uid: 36106 + - uid: 35950 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,66.5 parent: 2 - - uid: 36107 + - uid: 35951 components: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 36108 + - uid: 35952 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-46.5 parent: 2 - - uid: 36109 + - uid: 35953 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-39.5 parent: 2 - - uid: 36110 + - uid: 35954 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-32.5 parent: 2 - - uid: 36111 + - uid: 35955 components: - type: Transform pos: -8.5,38.5 parent: 2 - - uid: 36112 + - uid: 35956 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - - uid: 36113 + - uid: 35957 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,52.5 parent: 2 - - uid: 36114 + - uid: 35958 components: - type: Transform pos: -24.5,40.5 parent: 2 - - uid: 36115 + - uid: 35959 components: - type: Transform pos: -0.5,42.5 parent: 2 - - uid: 36116 + - uid: 35960 components: - type: Transform pos: 24.5,67.5 parent: 2 - - uid: 36117 + - uid: 35961 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,64.5 parent: 2 - - uid: 36118 + - uid: 35962 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 2 - - uid: 36119 + - uid: 35963 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-54.5 parent: 2 - - uid: 36120 + - uid: 35964 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-46.5 parent: 2 - - uid: 36121 + - uid: 35965 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,47.5 parent: 2 - - uid: 36122 + - uid: 35966 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-54.5 parent: 2 - - uid: 36123 + - uid: 35967 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,56.5 parent: 2 - - uid: 36124 + - uid: 35968 components: - type: Transform pos: 8.5,58.5 parent: 2 - - uid: 36125 + - uid: 35969 components: - type: Transform pos: 0.5,55.5 parent: 2 - - uid: 36126 + - uid: 35970 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-39.5 parent: 2 - - uid: 36127 + - uid: 35971 components: - type: Transform pos: -4.5,43.5 parent: 2 - - uid: 36128 + - uid: 35972 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 36129 + - uid: 35973 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,47.5 parent: 2 - - uid: 36130 + - uid: 35974 components: - type: Transform pos: -30.5,3.5 parent: 2 - - uid: 36131 + - uid: 35975 components: - type: Transform pos: 1.5,35.5 parent: 2 - - uid: 36132 + - uid: 35976 components: - type: Transform pos: -4.5,38.5 parent: 2 - - uid: 36133 + - uid: 35977 components: - type: Transform pos: 9.5,78.5 parent: 2 - - uid: 36134 + - uid: 35978 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,66.5 parent: 2 - - uid: 36135 + - uid: 35979 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,65.5 parent: 2 - - uid: 36136 + - uid: 35980 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,60.5 parent: 2 - - uid: 36137 + - uid: 35981 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,59.5 parent: 2 - - uid: 36138 + - uid: 35982 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 2 - - uid: 36139 + - uid: 35983 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,59.5 parent: 2 - - uid: 36140 + - uid: 35984 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,60.5 parent: 2 - - uid: 36141 + - uid: 35985 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,66.5 parent: 2 - - uid: 36142 + - uid: 35986 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,65.5 parent: 2 - - uid: 36143 + - uid: 35987 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,51.5 parent: 2 - - uid: 36144 + - uid: 35988 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 - - uid: 36145 + - uid: 35989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,54.5 parent: 2 - - uid: 36146 + - uid: 35990 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,53.5 parent: 2 - - uid: 36147 + - uid: 35991 components: - type: Transform pos: -25.5,-0.5 parent: 2 - - uid: 36148 + - uid: 35992 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 36149 + - uid: 35993 components: - type: Transform pos: -6.5,-65.5 parent: 2 - - uid: 36150 + - uid: 35994 components: - type: Transform pos: -0.5,60.5 parent: 2 - - uid: 36151 + - uid: 35995 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,66.5 parent: 2 - - uid: 36152 + - uid: 35996 components: - type: Transform pos: 38.5,-16.5 parent: 2 - - uid: 36153 + - uid: 35997 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,59.5 parent: 2 - - uid: 36154 + - uid: 35998 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,66.5 parent: 2 - - uid: 36155 + - uid: 35999 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,59.5 parent: 2 - - uid: 36156 + - uid: 36000 components: - type: Transform pos: -31.5,-63.5 parent: 2 - - uid: 36157 + - uid: 36001 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,58.5 parent: 2 - - uid: 36158 + - uid: 36002 components: - type: Transform pos: 42.5,-16.5 parent: 2 - - uid: 36159 + - uid: 36003 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 36160 + - uid: 36004 components: - type: Transform pos: -30.5,-63.5 parent: 2 - - uid: 36161 + - uid: 36005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,66.5 parent: 2 - - uid: 36162 + - uid: 36006 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-46.5 parent: 2 - - uid: 36163 + - uid: 36007 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,1.5 parent: 2 - - uid: 36164 + - uid: 36008 components: - type: Transform pos: -53.5,-34.5 parent: 2 - - uid: 36165 + - uid: 36009 components: - type: Transform pos: -8.5,36.5 parent: 2 - - uid: 36166 + - uid: 36010 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-45.5 parent: 2 - - uid: 36167 + - uid: 36011 components: - type: Transform pos: -12.5,25.5 parent: 2 - - uid: 36168 + - uid: 36012 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,59.5 parent: 2 - - uid: 36169 + - uid: 36013 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,54.5 parent: 2 - - uid: 36170 + - uid: 36014 components: - type: Transform pos: 6.5,59.5 parent: 2 - - uid: 36171 + - uid: 36015 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2 - - uid: 36173 + - uid: 36016 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,26.5 parent: 2 - - uid: 36174 + - uid: 36017 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,40.5 parent: 2 - - uid: 36175 + - uid: 36018 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-41.5 parent: 2 - - uid: 36176 + - uid: 36019 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 36177 + - uid: 36020 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,28.5 parent: 2 - - uid: 36178 + - uid: 36021 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,59.5 parent: 2 - - uid: 36179 + - uid: 36022 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 36180 + - uid: 36023 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 - - uid: 36181 + - uid: 36024 components: - type: Transform pos: -48.5,-36.5 parent: 2 - - uid: 36182 + - uid: 36025 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 36183 + - uid: 36026 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 - - uid: 36184 + - uid: 36027 components: - type: Transform pos: 14.5,-56.5 parent: 2 - - uid: 36185 + - uid: 36028 components: - type: Transform pos: -7.5,47.5 parent: 2 - - uid: 36186 + - uid: 36029 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 36187 + - uid: 36030 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,66.5 parent: 2 - - uid: 36188 + - uid: 36031 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,66.5 parent: 2 - - uid: 36189 + - uid: 36032 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 36190 + - uid: 36033 components: - type: Transform pos: 6.5,60.5 parent: 2 - - uid: 36191 + - uid: 36034 components: - type: Transform pos: -47.5,-41.5 parent: 2 - - uid: 36192 + - uid: 36035 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-42.5 parent: 2 - - uid: 36193 + - uid: 36036 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-47.5 parent: 2 - - uid: 36194 + - uid: 36037 components: - type: Transform pos: -3.5,26.5 parent: 2 - - uid: 36195 + - uid: 36038 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 36196 + - uid: 36039 components: - type: Transform pos: -16.5,5.5 parent: 2 - - uid: 36197 + - uid: 36040 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,33.5 parent: 2 - - uid: 36198 + - uid: 36041 components: - type: Transform pos: 24.5,-18.5 parent: 2 - - uid: 36199 + - uid: 36042 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 36200 + - uid: 36043 components: - type: Transform pos: -2.5,55.5 parent: 2 - - uid: 36201 + - uid: 36044 components: - type: Transform pos: -22.5,62.5 parent: 2 - - uid: 36202 + - uid: 36045 components: - type: Transform pos: 1.5,25.5 parent: 2 - - uid: 36203 + - uid: 36046 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 36204 + - uid: 36047 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 36205 + - uid: 36048 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 36206 + - uid: 36049 components: - type: Transform pos: -51.5,-41.5 parent: 2 - - uid: 36207 + - uid: 36050 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 36208 + - uid: 36051 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 36209 + - uid: 36052 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 36210 + - uid: 36053 components: - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 36211 + - uid: 36054 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - uid: 36212 + - uid: 36055 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 36213 + - uid: 36056 components: - type: Transform pos: 12.5,55.5 parent: 2 - - uid: 36214 + - uid: 36057 components: - type: Transform pos: -52.5,-41.5 parent: 2 - - uid: 36215 + - uid: 36058 components: - type: Transform pos: 11.5,62.5 parent: 2 - - uid: 36216 + - uid: 36059 components: - type: Transform pos: 48.5,-49.5 parent: 2 - - uid: 36217 + - uid: 36060 components: - type: Transform pos: 48.5,-54.5 parent: 2 - - uid: 36218 + - uid: 36061 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 36219 + - uid: 36062 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-42.5 parent: 2 - - uid: 36220 + - uid: 36063 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 36221 + - uid: 36064 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,32.5 parent: 2 - - uid: 36222 + - uid: 36065 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-45.5 parent: 2 - - uid: 36223 + - uid: 36066 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - uid: 36224 + - uid: 36067 components: - type: Transform pos: 11.5,25.5 parent: 2 - - uid: 36225 + - uid: 36068 components: - type: Transform pos: 44.5,-12.5 parent: 2 - - uid: 36226 + - uid: 36069 components: - type: Transform pos: 34.5,-5.5 parent: 2 - - uid: 36227 + - uid: 36070 components: - type: Transform pos: 16.5,57.5 parent: 2 - - uid: 36228 + - uid: 36071 components: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 36229 + - uid: 36072 components: - type: Transform pos: -11.5,-73.5 parent: 2 - - uid: 36230 + - uid: 36073 components: - type: Transform pos: 2.5,41.5 parent: 2 - - uid: 36231 + - uid: 36074 components: - type: Transform pos: 32.5,0.5 parent: 2 - - uid: 36232 + - uid: 36075 components: - type: Transform pos: 21.5,64.5 parent: 2 - - uid: 36233 + - uid: 36076 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 36234 + - uid: 36077 components: - type: Transform pos: 29.5,-18.5 parent: 2 - - uid: 36235 + - uid: 36078 components: - type: Transform pos: -32.5,59.5 parent: 2 - - uid: 36236 + - uid: 36079 components: - type: Transform pos: 38.5,-53.5 parent: 2 - - uid: 36237 + - uid: 36080 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 36238 + - uid: 36081 components: - type: Transform pos: 38.5,-17.5 parent: 2 - - uid: 36239 + - uid: 36082 components: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 36240 + - uid: 36083 components: - type: Transform pos: 31.5,3.5 parent: 2 - - uid: 36241 + - uid: 36084 components: - type: Transform pos: -21.5,-71.5 parent: 2 - - uid: 36242 + - uid: 36085 components: - type: Transform pos: -2.5,43.5 parent: 2 - - uid: 36243 + - uid: 36086 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 36244 + - uid: 36087 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 36245 + - uid: 36088 components: - type: Transform pos: -21.5,18.5 parent: 2 - - uid: 36246 + - uid: 36089 components: - type: Transform pos: -21.5,-73.5 parent: 2 - - uid: 36247 + - uid: 36090 components: - type: Transform pos: 23.5,-13.5 parent: 2 - - uid: 36248 + - uid: 36091 components: - type: Transform pos: -21.5,59.5 parent: 2 - - uid: 36249 + - uid: 36092 components: - type: Transform pos: -21.5,-70.5 parent: 2 - - uid: 36250 + - uid: 36093 components: - type: Transform pos: -24.5,-9.5 parent: 2 - - uid: 36251 + - uid: 36094 components: - type: Transform pos: -13.5,-63.5 parent: 2 - - uid: 36252 + - uid: 36095 components: - type: Transform pos: 12.5,37.5 parent: 2 - - uid: 36253 + - uid: 36096 components: - type: Transform pos: 12.5,38.5 parent: 2 - - uid: 36254 + - uid: 36097 components: - type: Transform pos: -11.5,-62.5 parent: 2 - - uid: 36255 + - uid: 36098 components: - type: Transform pos: -12.5,-63.5 parent: 2 - - uid: 36256 + - uid: 36099 components: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 36257 + - uid: 36100 components: - type: Transform pos: -7.5,54.5 parent: 2 - - uid: 36258 + - uid: 36101 components: - type: Transform pos: -15.5,59.5 parent: 2 - - uid: 36259 + - uid: 36102 components: - type: Transform pos: -22.5,56.5 parent: 2 - - uid: 36260 + - uid: 36103 components: - type: Transform pos: -33.5,58.5 parent: 2 - - uid: 36261 + - uid: 36104 components: - type: Transform pos: -22.5,57.5 parent: 2 - - uid: 36262 + - uid: 36105 components: - type: Transform pos: -23.5,60.5 parent: 2 - - uid: 36263 + - uid: 36106 components: - type: Transform pos: -1.5,49.5 parent: 2 - - uid: 36264 + - uid: 36107 components: - type: Transform pos: -14.5,53.5 parent: 2 - - uid: 36265 + - uid: 36108 components: - type: Transform pos: -8.5,55.5 parent: 2 - - uid: 36266 + - uid: 36109 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 36267 + - uid: 36110 components: - type: Transform pos: -34.5,7.5 parent: 2 - - uid: 36268 + - uid: 36111 components: - type: Transform pos: -37.5,-14.5 parent: 2 - - uid: 36269 + - uid: 36112 components: - type: Transform pos: -37.5,-13.5 parent: 2 - - uid: 36270 + - uid: 36113 components: - type: Transform pos: -38.5,-12.5 parent: 2 - - uid: 36271 + - uid: 36114 components: - type: Transform pos: -29.5,14.5 parent: 2 - - uid: 36272 + - uid: 36115 components: - type: Transform pos: -35.5,-1.5 parent: 2 - - uid: 36273 + - uid: 36116 components: - type: Transform pos: -42.5,-18.5 parent: 2 - - uid: 36274 + - uid: 36117 components: - type: Transform pos: -29.5,11.5 parent: 2 - - uid: 36275 + - uid: 36118 components: - type: Transform pos: -35.5,0.5 parent: 2 - - uid: 36276 + - uid: 36119 components: - type: Transform pos: -21.5,25.5 parent: 2 - - uid: 36277 + - uid: 36120 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 36278 + - uid: 36121 components: - type: Transform pos: -40.5,24.5 parent: 2 - - uid: 36279 + - uid: 36122 components: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 36280 + - uid: 36123 components: - type: Transform pos: -51.5,31.5 parent: 2 - - uid: 36281 + - uid: 36124 components: - type: Transform pos: -57.5,38.5 parent: 2 - - uid: 36282 + - uid: 36125 components: - type: Transform pos: 7.5,61.5 parent: 2 - - uid: 36283 + - uid: 36126 components: - type: Transform pos: 8.5,61.5 parent: 2 - - uid: 36284 + - uid: 36127 components: - type: Transform pos: -12.5,35.5 parent: 2 - - uid: 36285 + - uid: 36128 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,55.5 parent: 2 - - uid: 36286 + - uid: 36129 components: - type: Transform pos: -13.5,35.5 parent: 2 - - uid: 36287 + - uid: 36130 components: - type: Transform pos: -35.5,-15.5 parent: 2 - - uid: 36288 + - uid: 36131 components: - type: Transform pos: -35.5,-14.5 parent: 2 - - uid: 36289 + - uid: 36132 components: - type: Transform pos: -16.5,54.5 parent: 2 - - uid: 36290 + - uid: 36133 components: - type: Transform pos: 20.5,25.5 parent: 2 - - uid: 36291 + - uid: 36134 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 36292 + - uid: 36135 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,54.5 parent: 2 - - uid: 36293 + - uid: 36136 components: - type: Transform pos: -1.5,35.5 parent: 2 - - uid: 36294 + - uid: 36137 components: - type: Transform pos: -23.5,24.5 parent: 2 - - uid: 36295 + - uid: 36138 components: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 36296 + - uid: 36139 components: - type: Transform pos: -25.5,-9.5 parent: 2 - - uid: 36297 + - uid: 36140 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 36298 + - uid: 36141 components: - type: Transform pos: -38.5,51.5 parent: 2 - - uid: 36299 + - uid: 36142 components: - type: Transform pos: -0.5,41.5 parent: 2 - - uid: 36300 + - uid: 36143 components: - type: Transform pos: -0.5,43.5 parent: 2 - - uid: 36301 + - uid: 36144 components: - type: Transform pos: -0.5,44.5 parent: 2 - - uid: 36302 + - uid: 36145 components: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 36303 + - uid: 36146 components: - type: Transform pos: -39.5,30.5 parent: 2 - - uid: 36304 + - uid: 36147 components: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 36305 + - uid: 36148 components: - type: Transform pos: -3.5,34.5 parent: 2 - - uid: 36306 + - uid: 36149 components: - type: Transform pos: -3.5,33.5 parent: 2 - - uid: 36307 + - uid: 36150 components: - type: Transform pos: 27.5,-23.5 parent: 2 - - uid: 36308 + - uid: 36151 components: - type: Transform pos: 26.5,-23.5 parent: 2 - - uid: 36309 + - uid: 36152 components: - type: Transform pos: 0.5,49.5 parent: 2 - - uid: 36310 + - uid: 36153 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 36311 + - uid: 36154 components: - type: Transform pos: 38.5,-48.5 parent: 2 - - uid: 36312 + - uid: 36155 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 36313 + - uid: 36156 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 36314 + - uid: 36157 components: - type: Transform pos: 32.5,-32.5 parent: 2 - - uid: 36315 + - uid: 36158 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - uid: 36316 + - uid: 36159 components: - type: Transform pos: 20.5,-12.5 parent: 2 - - uid: 36317 + - uid: 36160 components: - type: Transform pos: 13.5,66.5 parent: 2 - - uid: 36318 + - uid: 36161 components: - type: Transform pos: 51.5,-48.5 parent: 2 - - uid: 36319 + - uid: 36162 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 36320 + - uid: 36163 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 36321 + - uid: 36164 components: - type: Transform pos: 30.5,-12.5 parent: 2 - - uid: 36322 + - uid: 36165 components: - type: Transform pos: 9.5,65.5 parent: 2 - - uid: 36323 + - uid: 36166 components: - type: Transform pos: 14.5,51.5 parent: 2 - - uid: 36324 + - uid: 36167 components: - type: Transform pos: 4.5,55.5 parent: 2 - - uid: 36325 + - uid: 36168 components: - type: Transform pos: 32.5,-12.5 parent: 2 - - uid: 36326 + - uid: 36169 components: - type: Transform pos: -39.5,10.5 parent: 2 - - uid: 36327 + - uid: 36170 components: - type: Transform pos: -5.5,55.5 parent: 2 - - uid: 36328 + - uid: 36171 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 36329 + - uid: 36172 components: - type: Transform pos: 3.5,42.5 parent: 2 - - uid: 36330 + - uid: 36173 components: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 36331 + - uid: 36174 components: - type: Transform pos: 45.5,-29.5 parent: 2 - - uid: 36332 + - uid: 36175 components: - type: Transform pos: 1.5,49.5 parent: 2 - - uid: 36333 + - uid: 36176 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 36334 + - uid: 36177 components: - type: Transform pos: 3.5,59.5 parent: 2 - - uid: 36335 + - uid: 36178 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 36336 + - uid: 36179 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,47.5 parent: 2 - - uid: 36337 + - uid: 36180 components: - type: Transform pos: -40.5,53.5 parent: 2 - - uid: 36338 + - uid: 36181 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 36339 + - uid: 36182 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 36340 + - uid: 36183 components: - type: Transform pos: -28.5,-16.5 parent: 2 - - uid: 36341 + - uid: 36184 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - uid: 36342 + - uid: 36185 components: - type: Transform pos: 12.5,71.5 parent: 2 - - uid: 36343 + - uid: 36186 components: - type: Transform pos: 5.5,61.5 parent: 2 - - uid: 36344 + - uid: 36187 components: - type: Transform pos: -8.5,-56.5 parent: 2 - - uid: 36345 + - uid: 36188 components: - type: Transform pos: 1.5,30.5 parent: 2 - - uid: 36346 + - uid: 36189 components: - type: Transform pos: 1.5,31.5 parent: 2 - - uid: 36347 + - uid: 36190 components: - type: Transform pos: -21.5,-62.5 parent: 2 - - uid: 36348 + - uid: 36191 components: - type: Transform pos: 3.5,44.5 parent: 2 - - uid: 36349 + - uid: 36192 components: - type: Transform pos: -35.5,-16.5 parent: 2 - - uid: 36350 + - uid: 36193 components: - type: Transform pos: 29.5,-8.5 parent: 2 - - uid: 36351 + - uid: 36194 components: - type: Transform pos: -36.5,36.5 parent: 2 - - uid: 36352 + - uid: 36195 components: - type: Transform pos: -41.5,29.5 parent: 2 - - uid: 36353 + - uid: 36196 components: - type: Transform pos: -7.5,55.5 parent: 2 - - uid: 36354 + - uid: 36197 components: - type: Transform pos: -24.5,24.5 parent: 2 - - uid: 36355 + - uid: 36198 components: - type: Transform pos: -36.5,7.5 parent: 2 - - uid: 36356 + - uid: 36199 components: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 36357 + - uid: 36200 components: - type: Transform pos: -28.5,7.5 parent: 2 - - uid: 36358 + - uid: 36201 components: - type: Transform pos: -16.5,-21.5 parent: 2 - - uid: 36359 + - uid: 36202 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 36360 + - uid: 36203 components: - type: Transform pos: 45.5,-21.5 parent: 2 - - uid: 36361 + - uid: 36204 components: - type: Transform pos: 37.5,-6.5 parent: 2 - - uid: 36362 + - uid: 36205 components: - type: Transform pos: 14.5,48.5 parent: 2 - - uid: 36363 + - uid: 36206 components: - type: Transform pos: 15.5,55.5 parent: 2 - - uid: 36364 + - uid: 36207 components: - type: Transform pos: -21.5,53.5 parent: 2 - - uid: 36365 + - uid: 36208 components: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 36366 + - uid: 36209 components: - type: Transform pos: -28.5,66.5 parent: 2 - - uid: 36367 + - uid: 36210 components: - type: Transform pos: -23.5,-76.5 parent: 2 - - uid: 36368 + - uid: 36211 components: - type: Transform pos: 11.5,72.5 parent: 2 - - uid: 36369 + - uid: 36212 components: - type: Transform pos: -4.5,55.5 parent: 2 - - uid: 36370 + - uid: 36213 components: - type: Transform pos: -3.5,55.5 parent: 2 - - uid: 36371 + - uid: 36214 components: - type: Transform pos: 43.5,-14.5 parent: 2 - - uid: 36372 + - uid: 36215 components: - type: Transform pos: -26.5,-10.5 parent: 2 - - uid: 36373 + - uid: 36216 components: - type: Transform pos: -41.5,35.5 parent: 2 - - uid: 36374 + - uid: 36217 components: - type: Transform pos: -43.5,38.5 parent: 2 - - uid: 36375 + - uid: 36218 components: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 36376 + - uid: 36219 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 36377 + - uid: 36220 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 36378 + - uid: 36221 components: - type: Transform pos: 6.5,32.5 parent: 2 - - uid: 36379 + - uid: 36222 components: - type: Transform pos: 6.5,25.5 parent: 2 - - uid: 36380 + - uid: 36223 components: - type: Transform pos: 8.5,38.5 parent: 2 - - uid: 36381 + - uid: 36224 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 36382 + - uid: 36225 components: - type: Transform pos: 1.5,33.5 parent: 2 - - uid: 36383 + - uid: 36226 components: - type: Transform pos: 23.5,25.5 parent: 2 - - uid: 36384 + - uid: 36227 components: - type: Transform pos: -25.5,-64.5 parent: 2 - - uid: 36385 + - uid: 36228 components: - type: Transform pos: -21.5,-75.5 parent: 2 - - uid: 36386 + - uid: 36229 components: - type: Transform pos: -5.5,35.5 parent: 2 - - uid: 36387 + - uid: 36230 components: - type: Transform pos: -4.5,35.5 parent: 2 - - uid: 36388 + - uid: 36231 components: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 36389 + - uid: 36232 components: - type: Transform pos: -35.5,-9.5 parent: 2 - - uid: 36390 + - uid: 36233 components: - type: Transform pos: -39.5,43.5 parent: 2 - - uid: 36391 + - uid: 36234 components: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 36392 + - uid: 36235 components: - type: Transform pos: 8.5,72.5 parent: 2 - - uid: 36393 + - uid: 36236 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - uid: 36394 + - uid: 36237 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 36395 + - uid: 36238 components: - type: Transform pos: -11.5,-52.5 parent: 2 - - uid: 36396 + - uid: 36239 components: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 36397 + - uid: 36240 components: - type: Transform pos: 30.5,-53.5 parent: 2 - - uid: 36398 + - uid: 36241 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 36399 + - uid: 36242 components: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 36400 + - uid: 36243 components: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 36401 + - uid: 36244 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 36402 + - uid: 36245 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 36403 + - uid: 36246 components: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 36404 + - uid: 36247 components: - type: Transform pos: 39.5,-43.5 parent: 2 - - uid: 36405 + - uid: 36248 components: - type: Transform pos: 28.5,-27.5 parent: 2 - - uid: 36406 + - uid: 36249 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 36407 + - uid: 36250 components: - type: Transform pos: 39.5,-37.5 parent: 2 - - uid: 36408 + - uid: 36251 components: - type: Transform pos: -75.5,-27.5 parent: 2 - - uid: 36409 + - uid: 36252 components: - type: Transform pos: 9.5,79.5 parent: 2 - - uid: 36410 + - uid: 36253 components: - type: Transform pos: -21.5,56.5 parent: 2 - - uid: 36411 + - uid: 36254 components: - type: Transform pos: 48.5,-45.5 parent: 2 - - uid: 36412 + - uid: 36255 components: - type: Transform pos: 46.5,-45.5 parent: 2 - - uid: 36413 + - uid: 36256 components: - type: Transform pos: 19.5,-18.5 parent: 2 - - uid: 36414 + - uid: 36257 components: - type: Transform pos: -15.5,25.5 parent: 2 - - uid: 36415 + - uid: 36258 components: - type: Transform pos: 3.5,39.5 parent: 2 - - uid: 36416 + - uid: 36259 components: - type: Transform pos: 2.5,32.5 parent: 2 - - uid: 36417 + - uid: 36260 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 36418 + - uid: 36261 components: - type: Transform pos: 24.5,25.5 parent: 2 - - uid: 36419 + - uid: 36262 components: - type: Transform pos: 3.5,66.5 parent: 2 - - uid: 36420 + - uid: 36263 components: - type: Transform pos: -3.5,28.5 parent: 2 - - uid: 36421 + - uid: 36264 components: - type: Transform pos: -1.5,-66.5 parent: 2 - - uid: 36422 + - uid: 36265 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 36423 + - uid: 36266 components: - type: Transform pos: -76.5,-24.5 parent: 2 - - uid: 36424 + - uid: 36267 components: - type: Transform pos: -1.5,47.5 parent: 2 - - uid: 36425 + - uid: 36268 components: - type: Transform pos: 38.5,-45.5 parent: 2 - - uid: 36426 + - uid: 36269 components: - type: Transform pos: -11.5,-36.5 parent: 2 - - uid: 36427 + - uid: 36270 components: - type: Transform pos: -32.5,-54.5 parent: 2 - - uid: 36428 + - uid: 36271 components: - type: Transform pos: -32.5,-50.5 parent: 2 - - uid: 36429 + - uid: 36272 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 36430 + - uid: 36273 components: - type: Transform pos: -34.5,-50.5 parent: 2 - - uid: 36431 + - uid: 36274 components: - type: Transform pos: -11.5,-37.5 parent: 2 - - uid: 36432 + - uid: 36275 components: - type: Transform pos: 36.5,-45.5 parent: 2 - - uid: 36433 + - uid: 36276 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - uid: 36434 + - uid: 36277 components: - type: Transform pos: 27.5,-26.5 parent: 2 - - uid: 36435 + - uid: 36278 components: - type: Transform pos: -11.5,35.5 parent: 2 - - uid: 36436 + - uid: 36279 components: - type: Transform pos: -22.5,58.5 parent: 2 - - uid: 36437 + - uid: 36280 components: - type: Transform pos: 40.5,-74.5 parent: 2 - - uid: 36438 + - uid: 36281 components: - type: Transform pos: 39.5,-45.5 parent: 2 - - uid: 36439 + - uid: 36282 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - uid: 36440 + - uid: 36283 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-47.5 parent: 2 - - uid: 36441 + - uid: 36284 components: - type: Transform pos: -7.5,35.5 parent: 2 - - uid: 36442 + - uid: 36285 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 - - uid: 36443 + - uid: 36286 components: - type: Transform pos: -41.5,27.5 parent: 2 - - uid: 36444 + - uid: 36287 components: - type: Transform pos: 15.5,-36.5 parent: 2 - - uid: 36445 + - uid: 36288 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 36446 + - uid: 36289 components: - type: Transform pos: 40.5,-72.5 parent: 2 - - uid: 36447 + - uid: 36290 components: - type: Transform pos: 35.5,-46.5 parent: 2 - - uid: 36448 + - uid: 36291 components: - type: Transform pos: 39.5,-33.5 parent: 2 - - uid: 36449 + - uid: 36292 components: - type: Transform pos: -28.5,-18.5 parent: 2 - - uid: 36450 + - uid: 36293 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 36451 + - uid: 36294 components: - type: Transform pos: -40.5,26.5 parent: 2 - - uid: 36452 + - uid: 36295 components: - type: Transform pos: -27.5,31.5 parent: 2 - - uid: 36453 + - uid: 36296 components: - type: Transform pos: 23.5,26.5 parent: 2 - - uid: 36454 + - uid: 36297 components: - type: Transform pos: 40.5,-73.5 parent: 2 - - uid: 36455 + - uid: 36298 components: - type: Transform pos: 29.5,-54.5 parent: 2 - - uid: 36456 + - uid: 36299 components: - type: Transform pos: -6.5,25.5 parent: 2 - - uid: 36457 + - uid: 36300 components: - type: Transform pos: -7.5,34.5 parent: 2 - - uid: 36458 + - uid: 36301 components: - type: Transform pos: -26.5,40.5 parent: 2 - - uid: 36459 + - uid: 36302 components: - type: Transform pos: 25.5,-40.5 parent: 2 - - uid: 36460 + - uid: 36303 components: - type: Transform pos: 16.5,-22.5 parent: 2 - - uid: 36461 + - uid: 36304 components: - type: Transform pos: -20.5,-20.5 parent: 2 - - uid: 36462 + - uid: 36305 components: - type: Transform pos: 37.5,-70.5 parent: 2 - - uid: 36463 + - uid: 36306 components: - type: Transform pos: 23.5,-32.5 parent: 2 - - uid: 36464 + - uid: 36307 components: - type: Transform pos: -75.5,-31.5 parent: 2 - - uid: 36465 + - uid: 36308 components: - type: Transform pos: -75.5,-21.5 parent: 2 - - uid: 36466 + - uid: 36309 components: - type: Transform pos: 39.5,-35.5 parent: 2 - - uid: 36467 + - uid: 36310 components: - type: Transform pos: -34.5,38.5 parent: 2 - - uid: 36468 + - uid: 36311 components: - type: Transform pos: -34.5,41.5 parent: 2 - - uid: 36469 + - uid: 36312 components: - type: Transform pos: -35.5,-12.5 parent: 2 - - uid: 36470 + - uid: 36313 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 36471 + - uid: 36314 components: - type: Transform pos: -34.5,43.5 parent: 2 - - uid: 36472 + - uid: 36315 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 36473 + - uid: 36316 components: - type: Transform pos: -3.5,27.5 parent: 2 - - uid: 36474 + - uid: 36317 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 36475 + - uid: 36318 components: - type: Transform pos: 15.5,-27.5 parent: 2 - - uid: 36476 + - uid: 36319 components: - type: Transform pos: 23.5,-26.5 parent: 2 - - uid: 36477 + - uid: 36320 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 36478 + - uid: 36321 components: - type: Transform pos: 19.5,-24.5 parent: 2 - - uid: 36479 + - uid: 36322 components: - type: Transform pos: -11.5,-39.5 parent: 2 - - uid: 36480 + - uid: 36323 components: - type: Transform pos: -11.5,-41.5 parent: 2 - - uid: 36481 + - uid: 36324 components: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 36482 + - uid: 36325 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,55.5 parent: 2 - - uid: 36483 + - uid: 36326 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 36484 + - uid: 36327 components: - type: Transform pos: -4.5,44.5 parent: 2 - - uid: 36485 + - uid: 36328 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 36486 + - uid: 36329 components: - type: Transform pos: -34.5,33.5 parent: 2 - - uid: 36487 + - uid: 36330 components: - type: Transform pos: -8.5,44.5 parent: 2 - - uid: 36488 + - uid: 36331 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 - - uid: 36489 + - uid: 36332 components: - type: Transform pos: 29.5,-53.5 parent: 2 - - uid: 36490 + - uid: 36333 components: - type: Transform pos: 15.5,-21.5 parent: 2 - - uid: 36491 + - uid: 36334 components: - type: Transform pos: -3.5,25.5 parent: 2 - - uid: 36492 + - uid: 36335 components: - type: Transform pos: -14.5,25.5 parent: 2 - - uid: 36493 + - uid: 36336 components: - type: Transform pos: -33.5,56.5 parent: 2 - - uid: 36494 + - uid: 36337 components: - type: Transform pos: -16.5,21.5 parent: 2 - - uid: 36495 + - uid: 36338 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - uid: 36496 + - uid: 36339 components: - type: Transform pos: -31.5,56.5 parent: 2 - - uid: 36497 + - uid: 36340 components: - type: Transform pos: 15.5,-22.5 parent: 2 - - uid: 36498 + - uid: 36341 components: - type: Transform pos: -32.5,56.5 parent: 2 - - uid: 36499 + - uid: 36342 components: - type: Transform pos: -25.5,40.5 parent: 2 - - uid: 36500 + - uid: 36343 components: - type: Transform pos: 6.5,61.5 parent: 2 - - uid: 36501 + - uid: 36344 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 36502 + - uid: 36345 components: - type: Transform pos: -20.5,7.5 parent: 2 - - uid: 36503 + - uid: 36346 components: - type: Transform pos: 35.5,-49.5 parent: 2 - - uid: 36504 + - uid: 36347 components: - type: Transform pos: -29.5,18.5 parent: 2 - - uid: 36505 + - uid: 36348 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 36506 + - uid: 36349 components: - type: Transform pos: -35.5,-11.5 parent: 2 - - uid: 36507 + - uid: 36350 components: - type: Transform pos: -0.5,34.5 parent: 2 - - uid: 36508 + - uid: 36351 components: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 36509 + - uid: 36352 components: - type: Transform pos: 47.5,-48.5 parent: 2 - - uid: 36510 + - uid: 36353 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 36511 + - uid: 36354 components: - type: Transform pos: 32.5,-8.5 parent: 2 - - uid: 36512 + - uid: 36355 components: - type: Transform pos: 24.5,65.5 parent: 2 - - uid: 36513 + - uid: 36356 components: - type: Transform pos: -39.5,46.5 parent: 2 - - uid: 36514 + - uid: 36357 components: - type: Transform pos: -25.5,-70.5 parent: 2 - - uid: 36515 + - uid: 36358 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 36516 + - uid: 36359 components: - type: Transform pos: 22.5,57.5 parent: 2 - - uid: 36517 + - uid: 36360 components: - type: Transform pos: 39.5,-5.5 parent: 2 - - uid: 36518 + - uid: 36361 components: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 36519 + - uid: 36362 components: - type: Transform pos: 26.5,33.5 parent: 2 - - uid: 36520 + - uid: 36363 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 36521 + - uid: 36364 components: - type: Transform pos: 54.5,-12.5 parent: 2 - - uid: 36522 + - uid: 36365 components: - type: Transform pos: 43.5,-12.5 parent: 2 - - uid: 36523 + - uid: 36366 components: - type: Transform pos: 54.5,-16.5 parent: 2 - - uid: 36524 + - uid: 36367 components: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 36525 + - uid: 36368 components: - type: Transform pos: -22.5,66.5 parent: 2 - - uid: 36526 + - uid: 36369 components: - type: Transform pos: 8.5,51.5 parent: 2 - - uid: 36527 + - uid: 36370 components: - type: Transform pos: -20.5,54.5 parent: 2 - - uid: 36528 + - uid: 36371 components: - type: Transform pos: -35.5,-10.5 parent: 2 - - uid: 36529 + - uid: 36372 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 36530 + - uid: 36373 components: - type: Transform pos: -22.5,-18.5 parent: 2 - - uid: 36531 + - uid: 36374 components: - type: Transform pos: -2.5,47.5 parent: 2 - - uid: 36532 + - uid: 36375 components: - type: Transform pos: -28.5,61.5 parent: 2 - - uid: 36533 + - uid: 36376 components: - type: Transform pos: -28.5,60.5 parent: 2 - - uid: 36534 + - uid: 36377 components: - type: Transform pos: 8.5,62.5 parent: 2 - - uid: 36535 + - uid: 36378 components: - type: Transform pos: 8.5,65.5 parent: 2 - - uid: 36536 + - uid: 36379 components: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 36537 + - uid: 36380 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 36538 + - uid: 36381 components: - type: Transform pos: -29.5,19.5 parent: 2 - - uid: 36539 + - uid: 36382 components: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 36540 + - uid: 36383 components: - type: Transform pos: -36.5,58.5 parent: 2 - - uid: 36541 + - uid: 36384 components: - type: Transform pos: -41.5,58.5 parent: 2 - - uid: 36542 + - uid: 36385 components: - type: Transform pos: -40.5,58.5 parent: 2 - - uid: 36543 + - uid: 36386 components: - type: Transform pos: -39.5,58.5 parent: 2 - - uid: 36544 + - uid: 36387 components: - type: Transform pos: -22.5,59.5 parent: 2 - - uid: 36545 + - uid: 36388 components: - type: Transform pos: -22.5,64.5 parent: 2 - - uid: 36546 + - uid: 36389 components: - type: Transform pos: -22.5,63.5 parent: 2 - - uid: 36547 + - uid: 36390 components: - type: Transform pos: -23.5,64.5 parent: 2 - - uid: 36548 + - uid: 36391 components: - type: Transform pos: -21.5,-18.5 parent: 2 - - uid: 36549 + - uid: 36392 components: - type: Transform pos: -23.5,62.5 parent: 2 - - uid: 36550 + - uid: 36393 components: - type: Transform pos: -11.5,-76.5 parent: 2 - - uid: 36551 + - uid: 36394 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 36552 + - uid: 36395 components: - type: Transform pos: -29.5,29.5 parent: 2 - - uid: 36553 + - uid: 36396 components: - type: Transform pos: -7.5,52.5 parent: 2 - - uid: 36554 + - uid: 36397 components: - type: Transform pos: -8.5,51.5 parent: 2 - - uid: 36555 + - uid: 36398 components: - type: Transform pos: 34.5,-24.5 parent: 2 - - uid: 36556 + - uid: 36399 components: - type: Transform pos: -5.5,46.5 parent: 2 - - uid: 36557 + - uid: 36400 components: - type: Transform pos: -5.5,47.5 parent: 2 - - uid: 36558 + - uid: 36401 components: - type: Transform pos: 37.5,-21.5 parent: 2 - - uid: 36559 + - uid: 36402 components: - type: Transform pos: 15.5,57.5 parent: 2 - - uid: 36560 + - uid: 36403 components: - type: Transform pos: 37.5,-16.5 parent: 2 - - uid: 36561 + - uid: 36404 components: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 36562 + - uid: 36405 components: - type: Transform pos: 42.5,-17.5 parent: 2 - - uid: 36563 + - uid: 36406 components: - type: Transform pos: 49.5,-29.5 parent: 2 - - uid: 36564 + - uid: 36407 components: - type: Transform pos: 38.5,-21.5 parent: 2 - - uid: 36565 + - uid: 36408 components: - type: Transform pos: 15.5,64.5 parent: 2 - - uid: 36566 + - uid: 36409 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 36567 + - uid: 36410 components: - type: Transform pos: 37.5,-19.5 parent: 2 - - uid: 36568 + - uid: 36411 components: - type: Transform pos: 16.5,64.5 parent: 2 - - uid: 36569 + - uid: 36412 components: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 36570 + - uid: 36413 components: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 36571 + - uid: 36414 components: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 36572 + - uid: 36415 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 36573 + - uid: 36416 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 36574 + - uid: 36417 components: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 36575 + - uid: 36418 components: - type: Transform pos: 26.5,-8.5 parent: 2 - - uid: 36576 + - uid: 36419 components: - type: Transform pos: 20.5,-8.5 parent: 2 - - uid: 36577 + - uid: 36420 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 36578 + - uid: 36421 components: - type: Transform pos: 46.5,-23.5 parent: 2 - - uid: 36579 + - uid: 36422 components: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 36580 + - uid: 36423 components: - type: Transform pos: 54.5,-27.5 parent: 2 - - uid: 36581 + - uid: 36424 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 36582 + - uid: 36425 components: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 36583 + - uid: 36426 components: - type: Transform pos: 5.5,55.5 parent: 2 - - uid: 36584 + - uid: 36427 components: - type: Transform pos: 7.5,66.5 parent: 2 - - uid: 36585 + - uid: 36428 components: - type: Transform pos: 8.5,64.5 parent: 2 - - uid: 36586 + - uid: 36429 components: - type: Transform pos: -7.5,53.5 parent: 2 - - uid: 36587 + - uid: 36430 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - uid: 36588 + - uid: 36431 components: - type: Transform pos: -35.5,44.5 parent: 2 - - uid: 36589 + - uid: 36432 components: - type: Transform pos: -34.5,44.5 parent: 2 - - uid: 36590 + - uid: 36433 components: - type: Transform pos: -3.5,43.5 parent: 2 - - uid: 36591 + - uid: 36434 components: - type: Transform pos: -40.5,52.5 parent: 2 - - uid: 36592 + - uid: 36435 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 36593 + - uid: 36436 components: - type: Transform pos: -29.5,-59.5 parent: 2 - - uid: 36594 + - uid: 36437 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - uid: 36595 + - uid: 36438 components: - type: Transform pos: 5.5,66.5 parent: 2 - - uid: 36596 + - uid: 36439 components: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 36597 + - uid: 36440 components: - type: Transform pos: -20.5,-18.5 parent: 2 - - uid: 36598 + - uid: 36441 components: - type: Transform pos: 9.5,73.5 parent: 2 - - uid: 36599 + - uid: 36442 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,52.5 parent: 2 - - uid: 36600 + - uid: 36443 components: - type: Transform pos: -28.5,16.5 parent: 2 - - uid: 36601 + - uid: 36444 components: - type: Transform pos: -41.5,26.5 parent: 2 - - uid: 36602 + - uid: 36445 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 36603 + - uid: 36446 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 36604 + - uid: 36447 components: - type: Transform pos: -42.5,-17.5 parent: 2 - - uid: 36605 + - uid: 36448 components: - type: Transform pos: -36.5,24.5 parent: 2 - - uid: 36606 + - uid: 36449 components: - type: Transform pos: -37.5,24.5 parent: 2 - - uid: 36607 + - uid: 36450 components: - type: Transform pos: -31.5,39.5 parent: 2 - - uid: 36608 + - uid: 36451 components: - type: Transform pos: -4.5,40.5 parent: 2 - - uid: 36609 + - uid: 36452 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 36610 + - uid: 36453 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 36611 + - uid: 36454 components: - type: Transform pos: -59.5,13.5 parent: 2 - - uid: 36612 + - uid: 36455 components: - type: Transform pos: -36.5,25.5 parent: 2 - - uid: 36613 + - uid: 36456 components: - type: Transform pos: -40.5,54.5 parent: 2 - - uid: 36614 + - uid: 36457 components: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 36615 + - uid: 36458 components: - type: Transform pos: -38.5,24.5 parent: 2 - - uid: 36616 + - uid: 36459 components: - type: Transform pos: -29.5,8.5 parent: 2 - - uid: 36617 + - uid: 36460 components: - type: Transform pos: -35.5,-5.5 parent: 2 - - uid: 36618 + - uid: 36461 components: - type: Transform pos: -42.5,-12.5 parent: 2 - - uid: 36619 + - uid: 36462 components: - type: Transform pos: -41.5,-12.5 parent: 2 - - uid: 36620 + - uid: 36463 components: - type: Transform pos: -39.5,8.5 parent: 2 - - uid: 36621 + - uid: 36464 components: - type: Transform pos: 13.5,-53.5 parent: 2 - - uid: 36622 + - uid: 36465 components: - type: Transform pos: -0.5,66.5 parent: 2 - - uid: 36623 + - uid: 36466 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-45.5 parent: 2 - - uid: 36624 + - uid: 36467 components: - type: Transform pos: 23.5,39.5 parent: 2 - - uid: 36625 + - uid: 36468 components: - type: Transform pos: 20.5,-16.5 parent: 2 - - uid: 36626 + - uid: 36469 components: - type: Transform pos: 7.5,46.5 parent: 2 - - uid: 36627 + - uid: 36470 components: - type: Transform pos: 43.5,-36.5 parent: 2 - - uid: 36628 + - uid: 36471 components: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 36629 + - uid: 36472 components: - type: Transform pos: 49.5,-21.5 parent: 2 - - uid: 36630 + - uid: 36473 components: - type: Transform pos: -0.5,46.5 parent: 2 - - uid: 36631 + - uid: 36474 components: - type: Transform pos: -34.5,34.5 parent: 2 - - uid: 36632 + - uid: 36475 components: - type: Transform pos: -7.5,32.5 parent: 2 - - uid: 36633 + - uid: 36476 components: - type: Transform pos: 11.5,73.5 parent: 2 - - uid: 36634 + - uid: 36477 components: - type: Transform pos: -61.5,16.5 parent: 2 - - uid: 36635 + - uid: 36478 components: - type: Transform pos: 8.5,55.5 parent: 2 - - uid: 36636 + - uid: 36479 components: - type: Transform pos: 1.5,37.5 parent: 2 - - uid: 36637 + - uid: 36480 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 36638 + - uid: 36481 components: - type: Transform pos: 39.5,-48.5 parent: 2 - - uid: 36639 + - uid: 36482 components: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 36640 + - uid: 36483 components: - type: Transform pos: 30.5,-16.5 parent: 2 - - uid: 36641 + - uid: 36484 components: - type: Transform pos: 30.5,-17.5 parent: 2 - - uid: 36642 + - uid: 36485 components: - type: Transform pos: 20.5,57.5 parent: 2 - - uid: 36643 + - uid: 36486 components: - type: Transform pos: 1.5,38.5 parent: 2 - - uid: 36644 + - uid: 36487 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 - - uid: 36645 + - uid: 36488 components: - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 36646 + - uid: 36489 components: - type: Transform pos: -11.5,-63.5 parent: 2 - - uid: 36647 + - uid: 36490 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 36648 + - uid: 36491 components: - type: Transform pos: -22.5,-62.5 parent: 2 - - uid: 36649 + - uid: 36492 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 36650 + - uid: 36493 components: - type: Transform pos: 5.5,46.5 parent: 2 - - uid: 36651 + - uid: 36494 components: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 36652 + - uid: 36495 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 36653 + - uid: 36496 components: - type: Transform pos: -57.5,36.5 parent: 2 - - uid: 36654 + - uid: 36497 components: - type: Transform pos: -57.5,32.5 parent: 2 - - uid: 36655 + - uid: 36498 components: - type: Transform pos: -26.5,3.5 parent: 2 - - uid: 36656 + - uid: 36499 components: - type: Transform pos: -34.5,-16.5 parent: 2 - - uid: 36657 + - uid: 36500 components: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 36658 + - uid: 36501 components: - type: Transform pos: -31.5,38.5 parent: 2 - - uid: 36659 + - uid: 36502 components: - type: Transform pos: -34.5,39.5 parent: 2 - - uid: 36660 + - uid: 36503 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 36661 + - uid: 36504 components: - type: Transform pos: -39.5,49.5 parent: 2 - - uid: 36662 + - uid: 36505 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 36663 + - uid: 36506 components: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 36664 + - uid: 36507 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 36665 + - uid: 36508 components: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 36666 + - uid: 36509 components: - type: Transform pos: -18.5,-81.5 parent: 2 - - uid: 36667 + - uid: 36510 components: - type: Transform pos: -9.5,-78.5 parent: 2 - - uid: 36668 + - uid: 36511 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 36669 + - uid: 36512 components: - type: Transform pos: -34.5,-58.5 parent: 2 - - uid: 36670 + - uid: 36513 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-77.5 parent: 2 - - uid: 36671 + - uid: 36514 components: - type: Transform pos: 15.5,63.5 parent: 2 - - uid: 36672 + - uid: 36515 components: - type: Transform pos: -29.5,-61.5 parent: 2 - - uid: 36673 + - uid: 36516 components: - type: Transform pos: -2.5,-62.5 parent: 2 - - uid: 36674 + - uid: 36517 components: - type: Transform pos: -36.5,31.5 parent: 2 - - uid: 36675 + - uid: 36518 components: - type: Transform pos: 11.5,29.5 parent: 2 - - uid: 36676 + - uid: 36519 components: - type: Transform pos: -29.5,26.5 parent: 2 - - uid: 36677 + - uid: 36520 components: - type: Transform pos: -36.5,30.5 parent: 2 - - uid: 36678 + - uid: 36521 components: - type: Transform pos: -41.5,30.5 parent: 2 - - uid: 36679 + - uid: 36522 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 36680 + - uid: 36523 components: - type: Transform pos: 19.5,-32.5 parent: 2 - - uid: 36681 + - uid: 36524 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 36682 + - uid: 36525 components: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 36683 + - uid: 36526 components: - type: Transform pos: -29.5,3.5 parent: 2 - - uid: 36684 + - uid: 36527 components: - type: Transform pos: -42.5,-16.5 parent: 2 - - uid: 36685 + - uid: 36528 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 36686 + - uid: 36529 components: - type: Transform pos: -39.5,26.5 parent: 2 - - uid: 36687 + - uid: 36530 components: - type: Transform pos: -34.5,3.5 parent: 2 - - uid: 36688 + - uid: 36531 components: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 36689 + - uid: 36532 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 36690 + - uid: 36533 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 36691 + - uid: 36534 components: - type: Transform pos: -32.5,61.5 parent: 2 - - uid: 36692 + - uid: 36535 components: - type: Transform pos: -0.5,38.5 parent: 2 - - uid: 36693 + - uid: 36536 components: - type: Transform pos: -0.5,39.5 parent: 2 - - uid: 36694 + - uid: 36537 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 36695 + - uid: 36538 components: - type: Transform pos: -10.5,26.5 parent: 2 - - uid: 36696 + - uid: 36539 components: - type: Transform pos: 19.5,-28.5 parent: 2 - - uid: 36697 + - uid: 36540 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 36698 + - uid: 36541 components: - type: Transform pos: -39.5,24.5 parent: 2 - - uid: 36699 + - uid: 36542 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 36700 + - uid: 36543 components: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 36701 + - uid: 36544 components: - type: Transform pos: -20.5,-4.5 parent: 2 - - uid: 36702 + - uid: 36545 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 36703 + - uid: 36546 components: - type: Transform pos: 13.5,-51.5 parent: 2 - - uid: 36704 + - uid: 36547 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 36705 + - uid: 36548 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - - uid: 36706 + - uid: 36549 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 36707 + - uid: 36550 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-64.5 parent: 2 - - uid: 36708 + - uid: 36551 components: - type: Transform pos: -12.5,51.5 parent: 2 - - uid: 36709 + - uid: 36552 components: - type: Transform pos: -24.5,43.5 parent: 2 - - uid: 36710 + - uid: 36553 components: - type: Transform pos: -18.5,-79.5 parent: 2 - - uid: 36711 + - uid: 36554 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 36712 + - uid: 36555 components: - type: Transform pos: -27.5,29.5 parent: 2 - - uid: 36713 + - uid: 36556 components: - type: Transform pos: 37.5,-63.5 parent: 2 - - uid: 36714 + - uid: 36557 components: - type: Transform pos: -37.5,36.5 parent: 2 - - uid: 36715 + - uid: 36558 components: - type: Transform pos: -28.5,26.5 parent: 2 - - uid: 36716 + - uid: 36559 components: - type: Transform pos: -28.5,65.5 parent: 2 - - uid: 36717 + - uid: 36560 components: - type: Transform pos: -28.5,18.5 parent: 2 - - uid: 36718 + - uid: 36561 components: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 36719 + - uid: 36562 components: - type: Transform pos: -28.5,-68.5 parent: 2 - - uid: 36720 + - uid: 36563 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 36721 + - uid: 36564 components: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 36722 + - uid: 36565 components: - type: Transform pos: -40.5,36.5 parent: 2 - - uid: 36723 + - uid: 36566 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 36724 + - uid: 36567 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 36725 + - uid: 36568 components: - type: Transform pos: -44.5,-45.5 parent: 2 - - uid: 36726 + - uid: 36569 components: - type: Transform pos: 19.5,-20.5 parent: 2 - - uid: 36727 + - uid: 36570 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 36728 + - uid: 36571 components: - type: Transform pos: 2.5,-44.5 parent: 2 - - uid: 36729 + - uid: 36572 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,37.5 parent: 2 - - uid: 36730 + - uid: 36573 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 36731 + - uid: 36574 components: - type: Transform pos: -47.5,-45.5 parent: 2 - - uid: 36732 + - uid: 36575 components: - type: Transform pos: -35.5,47.5 parent: 2 - - uid: 36733 + - uid: 36576 components: - type: Transform pos: -57.5,31.5 parent: 2 - - uid: 36734 + - uid: 36577 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 36735 + - uid: 36578 components: - type: Transform pos: 19.5,-40.5 parent: 2 - - uid: 36736 + - uid: 36579 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 36737 + - uid: 36580 components: - type: Transform pos: -56.5,-45.5 parent: 2 - - uid: 36738 + - uid: 36581 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 36739 + - uid: 36582 components: - type: Transform pos: -9.5,-36.5 parent: 2 - - uid: 36740 + - uid: 36583 components: - type: Transform pos: -4.5,42.5 parent: 2 - - uid: 36741 + - uid: 36584 components: - type: Transform pos: -5.5,45.5 parent: 2 - - uid: 36742 + - uid: 36585 components: - type: Transform pos: -5.5,44.5 parent: 2 - - uid: 36743 + - uid: 36586 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-45.5 parent: 2 - - uid: 36744 + - uid: 36587 components: - type: Transform pos: 14.5,55.5 parent: 2 - - uid: 36745 + - uid: 36588 components: - type: Transform pos: 42.5,-48.5 parent: 2 - - uid: 36746 + - uid: 36589 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - - uid: 36747 + - uid: 36590 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 36748 + - uid: 36591 components: - type: Transform pos: 32.5,-5.5 parent: 2 - - uid: 36749 + - uid: 36592 components: - type: Transform pos: -11.5,-74.5 parent: 2 - - uid: 36750 + - uid: 36593 components: - type: Transform pos: -39.5,-58.5 parent: 2 - - uid: 36751 + - uid: 36594 components: - type: Transform pos: -1.5,43.5 parent: 2 - - uid: 36752 + - uid: 36595 components: - type: Transform pos: -16.5,-54.5 parent: 2 - - uid: 36753 + - uid: 36596 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 36754 + - uid: 36597 components: - type: Transform pos: -8.5,46.5 parent: 2 - - uid: 36755 + - uid: 36598 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,55.5 parent: 2 - - uid: 36756 + - uid: 36599 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 36757 + - uid: 36600 components: - type: Transform pos: -40.5,43.5 parent: 2 - - uid: 36758 + - uid: 36601 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 36759 + - uid: 36602 components: - type: Transform pos: 23.5,68.5 parent: 2 - - uid: 36760 + - uid: 36603 components: - type: Transform pos: -10.5,-32.5 parent: 2 - - uid: 36761 + - uid: 36604 components: - type: Transform pos: -10.5,-31.5 parent: 2 - - uid: 36762 + - uid: 36605 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 36763 + - uid: 36606 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 36764 + - uid: 36607 components: - type: Transform pos: 5.5,50.5 parent: 2 - - uid: 36765 + - uid: 36608 components: - type: Transform pos: 28.5,29.5 parent: 2 - - uid: 36766 + - uid: 36609 components: - type: Transform pos: 18.5,33.5 parent: 2 - - uid: 36767 + - uid: 36610 components: - type: Transform pos: 50.5,-15.5 parent: 2 - - uid: 36768 + - uid: 36611 components: - type: Transform pos: -10.5,-30.5 parent: 2 - - uid: 36769 + - uid: 36612 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-46.5 parent: 2 - - uid: 36770 + - uid: 36613 components: - type: Transform pos: 8.5,60.5 parent: 2 - - uid: 36771 + - uid: 36614 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,42.5 parent: 2 - - uid: 36772 + - uid: 36615 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 36773 + - uid: 36616 components: - type: Transform pos: -22.5,27.5 parent: 2 - - uid: 36774 + - uid: 36617 components: - type: Transform pos: 42.5,-30.5 parent: 2 - - uid: 36775 + - uid: 36618 components: - type: Transform pos: 47.5,-12.5 parent: 2 - - uid: 36776 + - uid: 36619 components: - type: Transform pos: 42.5,-39.5 parent: 2 - - uid: 36777 + - uid: 36620 components: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 36778 + - uid: 36621 components: - type: Transform pos: 42.5,-23.5 parent: 2 - - uid: 36779 + - uid: 36622 components: - type: Transform pos: 53.5,-17.5 parent: 2 - - uid: 36780 + - uid: 36623 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - uid: 36781 + - uid: 36624 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - uid: 36782 + - uid: 36625 components: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 36783 + - uid: 36626 components: - type: Transform pos: 36.5,-17.5 parent: 2 - - uid: 36784 + - uid: 36627 components: - type: Transform pos: 16.5,68.5 parent: 2 - - uid: 36785 + - uid: 36628 components: - type: Transform pos: 51.5,-21.5 parent: 2 - - uid: 36786 + - uid: 36629 components: - type: Transform pos: 32.5,-14.5 parent: 2 - - uid: 36787 + - uid: 36630 components: - type: Transform pos: 43.5,-17.5 parent: 2 - - uid: 36788 + - uid: 36631 components: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 36789 + - uid: 36632 components: - type: Transform pos: 18.5,25.5 parent: 2 - - uid: 36790 + - uid: 36633 components: - type: Transform pos: -21.5,-64.5 parent: 2 - - uid: 36791 + - uid: 36634 components: - type: Transform pos: -25.5,-69.5 parent: 2 - - uid: 36792 + - uid: 36635 components: - type: Transform pos: -50.5,-4.5 parent: 2 - - uid: 36793 + - uid: 36636 components: - type: Transform pos: 54.5,-17.5 parent: 2 - - uid: 36794 + - uid: 36637 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 36795 + - uid: 36638 components: - type: Transform pos: 24.5,-12.5 parent: 2 - - uid: 36796 + - uid: 36639 components: - type: Transform pos: 54.5,-14.5 parent: 2 - - uid: 36797 + - uid: 36640 components: - type: Transform pos: 8.5,48.5 parent: 2 - - uid: 36798 + - uid: 36641 components: - type: Transform pos: 28.5,-16.5 parent: 2 - - uid: 36799 + - uid: 36642 components: - type: Transform pos: 13.5,55.5 parent: 2 - - uid: 36800 + - uid: 36643 components: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 36801 + - uid: 36644 components: - type: Transform pos: 14.5,63.5 parent: 2 - - uid: 36802 + - uid: 36645 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 36803 + - uid: 36646 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 36804 + - uid: 36647 components: - type: Transform pos: -54.5,3.5 parent: 2 - - uid: 36805 + - uid: 36648 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - - uid: 36806 + - uid: 36649 components: - type: Transform pos: 32.5,-16.5 parent: 2 - - uid: 36807 + - uid: 36650 components: - type: Transform pos: -53.5,7.5 parent: 2 - - uid: 36808 + - uid: 36651 components: - type: Transform pos: -3.5,-61.5 parent: 2 - - uid: 36809 + - uid: 36652 components: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 36810 + - uid: 36653 components: - type: Transform pos: 42.5,-38.5 parent: 2 - - uid: 36811 + - uid: 36654 components: - type: Transform pos: 33.5,-2.5 parent: 2 - - uid: 36812 + - uid: 36655 components: - type: Transform pos: 50.5,-25.5 parent: 2 - - uid: 36813 + - uid: 36656 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 36814 + - uid: 36657 components: - type: Transform pos: 8.5,49.5 parent: 2 - - uid: 36815 + - uid: 36658 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 36816 + - uid: 36659 components: - type: Transform pos: 48.5,-51.5 parent: 2 - - uid: 36817 + - uid: 36660 components: - type: Transform pos: 50.5,-37.5 parent: 2 - - uid: 36818 + - uid: 36661 components: - type: Transform pos: 54.5,-26.5 parent: 2 - - uid: 36819 + - uid: 36662 components: - type: Transform pos: 41.5,-21.5 parent: 2 - - uid: 36820 + - uid: 36663 components: - type: Transform pos: 7.5,51.5 parent: 2 - - uid: 36821 + - uid: 36664 components: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 36822 + - uid: 36665 components: - type: Transform pos: 11.5,32.5 parent: 2 - - uid: 36823 + - uid: 36666 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 36824 + - uid: 36667 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 36825 + - uid: 36668 components: - type: Transform pos: 18.5,27.5 parent: 2 - - uid: 36826 + - uid: 36669 components: - type: Transform pos: 1.5,36.5 parent: 2 - - uid: 36827 + - uid: 36670 components: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 36828 + - uid: 36671 components: - type: Transform pos: -15.5,54.5 parent: 2 - - uid: 36829 + - uid: 36672 components: - type: Transform pos: 51.5,-26.5 parent: 2 - - uid: 36830 + - uid: 36673 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 36831 + - uid: 36674 components: - type: Transform pos: 10.5,47.5 parent: 2 - - uid: 36832 + - uid: 36675 components: - type: Transform pos: 12.5,41.5 parent: 2 - - uid: 36833 + - uid: 36676 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 36834 + - uid: 36677 components: - type: Transform pos: 53.5,-26.5 parent: 2 - - uid: 36835 + - uid: 36678 components: - type: Transform pos: 17.5,25.5 parent: 2 - - uid: 36836 + - uid: 36679 components: - type: Transform pos: 12.5,63.5 parent: 2 - - uid: 36837 + - uid: 36680 components: - type: Transform pos: -18.5,-63.5 parent: 2 - - uid: 36838 + - uid: 36681 components: - type: Transform pos: -23.5,54.5 parent: 2 - - uid: 36839 + - uid: 36682 components: - type: Transform pos: -8.5,-57.5 parent: 2 - - uid: 36840 + - uid: 36683 components: - type: Transform pos: 14.5,-53.5 parent: 2 - - uid: 36841 + - uid: 36684 components: - type: Transform pos: -31.5,24.5 parent: 2 - - uid: 36842 + - uid: 36685 components: - type: Transform pos: -20.5,-10.5 parent: 2 - - uid: 36843 + - uid: 36686 components: - type: Transform pos: -29.5,-16.5 parent: 2 - - uid: 36844 + - uid: 36687 components: - type: Transform pos: -23.5,28.5 parent: 2 - - uid: 36845 + - uid: 36688 components: - type: Transform pos: -8.5,-58.5 parent: 2 - - uid: 36846 + - uid: 36689 components: - type: Transform pos: -24.5,44.5 parent: 2 - - uid: 36847 + - uid: 36690 components: - type: Transform pos: -20.5,-11.5 parent: 2 - - uid: 36848 + - uid: 36691 components: - type: Transform pos: 37.5,10.5 parent: 2 - - uid: 36849 + - uid: 36692 components: - type: Transform pos: -30.5,-16.5 parent: 2 - - uid: 36850 + - uid: 36693 components: - type: Transform pos: 4.5,65.5 parent: 2 - - uid: 36851 + - uid: 36694 components: - type: Transform pos: -29.5,22.5 parent: 2 - - uid: 36852 + - uid: 36695 components: - type: Transform pos: 4.5,59.5 parent: 2 - - uid: 36853 + - uid: 36696 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 36854 + - uid: 36697 components: - type: Transform pos: -17.5,-63.5 parent: 2 - - uid: 36855 + - uid: 36698 components: - type: Transform pos: -15.5,55.5 parent: 2 - - uid: 36856 + - uid: 36699 components: - type: Transform pos: 4.5,62.5 parent: 2 - - uid: 36857 + - uid: 36700 components: - type: Transform pos: -23.5,27.5 parent: 2 - - uid: 36858 + - uid: 36701 components: - type: Transform pos: 11.5,27.5 parent: 2 - - uid: 36859 + - uid: 36702 components: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 36860 + - uid: 36703 components: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 36861 + - uid: 36704 components: - type: Transform pos: -11.5,-80.5 parent: 2 - - uid: 36862 + - uid: 36705 components: - type: Transform pos: -23.5,53.5 parent: 2 - - uid: 36863 + - uid: 36706 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 36864 + - uid: 36707 components: - type: Transform pos: -20.5,-12.5 parent: 2 - - uid: 36865 + - uid: 36708 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 36866 + - uid: 36709 components: - type: Transform pos: 5.5,49.5 parent: 2 - - uid: 36867 + - uid: 36710 components: - type: Transform pos: -20.5,-63.5 parent: 2 - - uid: 36868 + - uid: 36711 components: - type: Transform pos: -32.5,7.5 parent: 2 - - uid: 36869 + - uid: 36712 components: - type: Transform pos: -10.5,-62.5 parent: 2 - - uid: 36870 + - uid: 36713 components: - type: Transform pos: -0.5,35.5 parent: 2 - - uid: 36871 + - uid: 36714 components: - type: Transform pos: -33.5,7.5 parent: 2 - - uid: 36872 + - uid: 36715 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 36873 + - uid: 36716 components: - type: Transform pos: -27.5,44.5 parent: 2 - - uid: 36874 + - uid: 36717 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 36875 + - uid: 36718 components: - type: Transform pos: -29.5,-0.5 parent: 2 - - uid: 36876 + - uid: 36719 components: - type: Transform pos: -30.5,0.5 parent: 2 - - uid: 36877 + - uid: 36720 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 36878 + - uid: 36721 components: - type: Transform pos: -34.5,24.5 parent: 2 - - uid: 36879 + - uid: 36722 components: - type: Transform pos: -40.5,47.5 parent: 2 - - uid: 36880 + - uid: 36723 components: - type: Transform pos: -33.5,24.5 parent: 2 - - uid: 36881 + - uid: 36724 components: - type: Transform pos: -10.5,47.5 parent: 2 - - uid: 36882 + - uid: 36725 components: - type: Transform pos: -10.5,35.5 parent: 2 - - uid: 36883 + - uid: 36726 components: - type: Transform pos: 29.5,-45.5 parent: 2 - - uid: 36884 + - uid: 36727 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 36885 + - uid: 36728 components: - type: Transform pos: 29.5,29.5 parent: 2 - - uid: 36886 + - uid: 36729 components: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 36887 + - uid: 36730 components: - type: Transform pos: -11.5,47.5 parent: 2 - - uid: 36888 + - uid: 36731 components: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 36889 + - uid: 36732 components: - type: Transform pos: 13.5,73.5 parent: 2 - - uid: 36890 + - uid: 36733 components: - type: Transform pos: -24.5,28.5 parent: 2 - - uid: 36891 + - uid: 36734 components: - type: Transform pos: -35.5,53.5 parent: 2 - - uid: 36892 + - uid: 36735 components: - type: Transform pos: -75.5,-25.5 parent: 2 - - uid: 36893 + - uid: 36736 components: - type: Transform pos: -75.5,-28.5 parent: 2 - - uid: 36894 + - uid: 36737 components: - type: Transform pos: -39.5,47.5 parent: 2 - - uid: 36895 + - uid: 36738 components: - type: Transform pos: -35.5,54.5 parent: 2 - - uid: 36896 + - uid: 36739 components: - type: Transform pos: -9.5,25.5 parent: 2 - - uid: 36897 + - uid: 36740 components: - type: Transform pos: -6.5,-73.5 parent: 2 - - uid: 36898 + - uid: 36741 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 36899 + - uid: 36742 components: - type: Transform pos: 30.5,-18.5 parent: 2 - - uid: 36900 + - uid: 36743 components: - type: Transform pos: -38.5,44.5 parent: 2 - - uid: 36901 + - uid: 36744 components: - type: Transform pos: 12.5,29.5 parent: 2 - - uid: 36902 + - uid: 36745 components: - type: Transform pos: 36.5,-5.5 parent: 2 - - uid: 36903 + - uid: 36746 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-43.5 parent: 2 - - uid: 36904 + - uid: 36747 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 36905 + - uid: 36748 components: - type: Transform pos: 42.5,-21.5 parent: 2 - - uid: 36906 + - uid: 36749 components: - type: Transform pos: 54.5,-24.5 parent: 2 - - uid: 36907 + - uid: 36750 components: - type: Transform pos: 19.5,10.5 parent: 2 - - uid: 36908 + - uid: 36751 components: - type: Transform pos: 50.5,-39.5 parent: 2 - - uid: 36909 + - uid: 36752 components: - type: Transform pos: 11.5,63.5 parent: 2 - - uid: 36910 + - uid: 36753 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 36911 + - uid: 36754 components: - type: Transform pos: 32.5,29.5 parent: 2 - - uid: 36912 + - uid: 36755 components: - type: Transform pos: 14.5,33.5 parent: 2 - - uid: 36913 + - uid: 36756 components: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 36914 + - uid: 36757 components: - type: Transform pos: 50.5,-16.5 parent: 2 - - uid: 36915 + - uid: 36758 components: - type: Transform pos: -55.5,-41.5 parent: 2 - - uid: 36916 + - uid: 36759 components: - type: Transform pos: -41.5,36.5 parent: 2 - - uid: 36917 + - uid: 36760 components: - type: Transform pos: -41.5,31.5 parent: 2 - - uid: 36918 + - uid: 36761 components: - type: Transform pos: -0.5,37.5 parent: 2 - - uid: 36919 + - uid: 36762 components: - type: Transform pos: -32.5,24.5 parent: 2 - - uid: 36920 + - uid: 36763 components: - type: Transform pos: -39.5,16.5 parent: 2 - - uid: 36921 + - uid: 36764 components: - type: Transform pos: -57.5,39.5 parent: 2 - - uid: 36922 + - uid: 36765 components: - type: Transform pos: -35.5,43.5 parent: 2 - - uid: 36923 + - uid: 36766 components: - type: Transform pos: -33.5,44.5 parent: 2 - - uid: 36924 + - uid: 36767 components: - type: Transform pos: -25.5,56.5 parent: 2 - - uid: 36925 + - uid: 36768 components: - type: Transform pos: -30.5,24.5 parent: 2 - - uid: 36926 + - uid: 36769 components: - type: Transform pos: -21.5,24.5 parent: 2 - - uid: 36927 + - uid: 36770 components: - type: Transform pos: -52.5,39.5 parent: 2 - - uid: 36928 + - uid: 36771 components: - type: Transform pos: -29.5,24.5 parent: 2 - - uid: 36929 + - uid: 36772 components: - type: Transform pos: -27.5,40.5 parent: 2 - - uid: 36930 + - uid: 36773 components: - type: Transform pos: -39.5,15.5 parent: 2 - - uid: 36931 + - uid: 36774 components: - type: Transform pos: -4.5,41.5 parent: 2 - - uid: 36932 + - uid: 36775 components: - type: Transform pos: -22.5,61.5 parent: 2 - - uid: 36933 + - uid: 36776 components: - type: Transform pos: -0.5,49.5 parent: 2 - - uid: 36934 + - uid: 36777 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 36936 + - uid: 36778 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - uid: 36937 + - uid: 36779 components: - type: Transform pos: -9.5,47.5 parent: 2 - - uid: 36938 + - uid: 36780 components: - type: Transform pos: 32.5,-36.5 parent: 2 - - uid: 36939 + - uid: 36781 components: - type: Transform pos: -28.5,22.5 parent: 2 - - uid: 36940 + - uid: 36782 components: - type: Transform pos: 29.5,-37.5 parent: 2 - - uid: 36941 + - uid: 36783 components: - type: Transform pos: 32.5,-53.5 parent: 2 - - uid: 36942 + - uid: 36784 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 36943 + - uid: 36785 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 36944 + - uid: 36786 components: - type: Transform pos: -22.5,53.5 parent: 2 - - uid: 36945 + - uid: 36787 components: - type: Transform pos: -34.5,30.5 parent: 2 - - uid: 36946 + - uid: 36788 components: - type: Transform pos: 10.5,73.5 parent: 2 - - uid: 36947 + - uid: 36789 components: - type: Transform pos: -29.5,16.5 parent: 2 - - uid: 36948 + - uid: 36790 components: - type: Transform pos: -20.5,-7.5 parent: 2 - - uid: 36949 + - uid: 36791 components: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 36950 + - uid: 36792 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-47.5 parent: 2 - - uid: 36951 + - uid: 36793 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 36952 + - uid: 36794 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 36953 + - uid: 36795 components: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 36954 + - uid: 36796 components: - type: Transform pos: 42.5,-24.5 parent: 2 - - uid: 36955 + - uid: 36797 components: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 36956 + - uid: 36798 components: - type: Transform pos: 2.5,49.5 parent: 2 - - uid: 36957 + - uid: 36799 components: - type: Transform pos: -21.5,54.5 parent: 2 - - uid: 36958 + - uid: 36800 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 36959 + - uid: 36801 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-47.5 parent: 2 - - uid: 36960 + - uid: 36802 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 36961 + - uid: 36803 components: - type: Transform pos: 43.5,-11.5 parent: 2 - - uid: 36962 + - uid: 36804 components: - type: Transform pos: 32.5,-13.5 parent: 2 - - uid: 36963 + - uid: 36805 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 36964 + - uid: 36806 components: - type: Transform pos: 54.5,-21.5 parent: 2 - - uid: 36965 + - uid: 36807 components: - type: Transform pos: -16.5,-32.5 parent: 2 - - uid: 36966 + - uid: 36808 components: - type: Transform pos: -25.5,18.5 parent: 2 - - uid: 36967 + - uid: 36809 components: - type: Transform pos: -34.5,27.5 parent: 2 - - uid: 36968 + - uid: 36810 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-47.5 parent: 2 - - uid: 36969 + - uid: 36811 components: - type: Transform pos: 35.5,-48.5 parent: 2 - - uid: 36970 + - uid: 36812 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 36971 + - uid: 36813 components: - type: Transform pos: 35.5,-45.5 parent: 2 - - uid: 36972 + - uid: 36814 components: - type: Transform pos: 8.5,59.5 parent: 2 - - uid: 36973 + - uid: 36815 components: - type: Transform pos: 6.5,58.5 parent: 2 - - uid: 36974 + - uid: 36816 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 36975 + - uid: 36817 components: - type: Transform pos: 50.5,-38.5 parent: 2 - - uid: 36976 + - uid: 36818 components: - type: Transform pos: -64.5,-32.5 parent: 2 - - uid: 36977 + - uid: 36819 components: - type: Transform pos: 32.5,-18.5 parent: 2 - - uid: 36978 + - uid: 36820 components: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 36979 + - uid: 36821 components: - type: Transform pos: 18.5,28.5 parent: 2 - - uid: 36980 + - uid: 36822 components: - type: Transform pos: 50.5,-24.5 parent: 2 - - uid: 36981 + - uid: 36823 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,32.5 parent: 2 - - uid: 36982 + - uid: 36824 components: - type: Transform pos: -26.5,18.5 parent: 2 - - uid: 36983 + - uid: 36825 components: - type: Transform pos: 8.5,54.5 parent: 2 - - uid: 36984 + - uid: 36826 components: - type: Transform pos: -1.5,25.5 parent: 2 - - uid: 36985 + - uid: 36827 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 36986 + - uid: 36828 components: - type: Transform pos: 24.5,-23.5 parent: 2 - - uid: 36987 + - uid: 36829 components: - type: Transform pos: -75.5,-29.5 parent: 2 - - uid: 36988 + - uid: 36830 components: - type: Transform pos: -11.5,-81.5 parent: 2 - - uid: 36989 + - uid: 36831 components: - type: Transform pos: -40.5,46.5 parent: 2 - - uid: 36990 + - uid: 36832 components: - type: Transform pos: -35.5,-6.5 parent: 2 - - uid: 36991 + - uid: 36833 components: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 36992 + - uid: 36834 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 36993 + - uid: 36835 components: - type: Transform pos: -25.5,-65.5 parent: 2 - - uid: 36994 + - uid: 36836 components: - type: Transform pos: 12.5,57.5 parent: 2 - - uid: 36995 + - uid: 36837 components: - type: Transform pos: -31.5,30.5 parent: 2 - - uid: 36996 + - uid: 36838 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 36997 + - uid: 36839 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 36998 + - uid: 36840 components: - type: Transform pos: -27.5,24.5 parent: 2 - - uid: 36999 + - uid: 36841 components: - type: Transform pos: -21.5,-17.5 parent: 2 - - uid: 37000 + - uid: 36842 components: - type: Transform pos: 19.5,-29.5 parent: 2 - - uid: 37001 + - uid: 36843 components: - type: Transform pos: -11.5,-51.5 parent: 2 - - uid: 37002 + - uid: 36844 components: - type: Transform pos: 13.5,65.5 parent: 2 - - uid: 37003 + - uid: 36845 components: - type: Transform pos: -0.5,28.5 parent: 2 - - uid: 37004 + - uid: 36846 components: - type: Transform pos: 50.5,-17.5 parent: 2 - - uid: 37005 + - uid: 36847 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 37006 + - uid: 36848 components: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 37007 + - uid: 36849 components: - type: Transform pos: 4.5,48.5 parent: 2 - - uid: 37008 + - uid: 36850 components: - type: Transform pos: -50.5,3.5 parent: 2 - - uid: 37009 + - uid: 36851 components: - type: Transform pos: 12.5,65.5 parent: 2 - - uid: 37010 + - uid: 36852 components: - type: Transform pos: 49.5,-17.5 parent: 2 - - uid: 37011 + - uid: 36853 components: - type: Transform pos: -34.5,36.5 parent: 2 - - uid: 37012 + - uid: 36854 components: - type: Transform pos: -34.5,28.5 parent: 2 - - uid: 37013 + - uid: 36855 components: - type: Transform pos: -31.5,-16.5 parent: 2 - - uid: 37014 + - uid: 36856 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 37015 + - uid: 36857 components: - type: Transform pos: 34.5,-24.5 parent: 2 - - uid: 37016 + - uid: 36858 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 - - uid: 37017 + - uid: 36859 components: - type: Transform pos: -23.5,18.5 parent: 2 - - uid: 37018 + - uid: 36860 components: - type: Transform pos: -35.5,56.5 parent: 2 - - uid: 37019 + - uid: 36861 components: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 37020 + - uid: 36862 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-43.5 parent: 2 - - uid: 37021 + - uid: 36863 components: - type: Transform pos: 11.5,57.5 parent: 2 - - uid: 37022 + - uid: 36864 components: - type: Transform pos: -60.5,-44.5 parent: 2 - - uid: 37023 + - uid: 36865 components: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 37024 + - uid: 36866 components: - type: Transform pos: 0.5,28.5 parent: 2 - - uid: 37025 + - uid: 36867 components: - type: Transform pos: 50.5,-43.5 parent: 2 - - uid: 37026 + - uid: 36868 components: - type: Transform pos: 39.5,-21.5 parent: 2 - - uid: 37027 + - uid: 36869 components: - type: Transform pos: 50.5,-26.5 parent: 2 - - uid: 37028 + - uid: 36870 components: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 37029 + - uid: 36871 components: - type: Transform pos: 43.5,-10.5 parent: 2 - - uid: 37030 + - uid: 36872 components: - type: Transform pos: 15.5,-53.5 parent: 2 - - uid: 37031 + - uid: 36873 components: - type: Transform pos: 4.5,46.5 parent: 2 - - uid: 37032 + - uid: 36874 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 37033 + - uid: 36875 components: - type: Transform pos: -25.5,44.5 parent: 2 - - uid: 37034 + - uid: 36876 components: - type: Transform pos: -24.5,-62.5 parent: 2 - - uid: 37035 + - uid: 36877 components: - type: Transform pos: -11.5,-71.5 parent: 2 - - uid: 37036 + - uid: 36878 components: - type: Transform pos: 54.5,-15.5 parent: 2 - - uid: 37037 + - uid: 36879 components: - type: Transform pos: 13.5,63.5 parent: 2 - - uid: 37038 + - uid: 36880 components: - type: Transform pos: -38.5,30.5 parent: 2 - - uid: 37039 + - uid: 36881 components: - type: Transform pos: 31.5,-18.5 parent: 2 - - uid: 37040 + - uid: 36882 components: - type: Transform pos: -14.5,-63.5 parent: 2 - - uid: 37041 + - uid: 36883 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 37042 + - uid: 36884 components: - type: Transform pos: 18.5,32.5 parent: 2 - - uid: 37043 + - uid: 36885 components: - type: Transform pos: 43.5,-9.5 parent: 2 - - uid: 37044 + - uid: 36886 components: - type: Transform pos: 11.5,47.5 parent: 2 - - uid: 37045 + - uid: 36887 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,33.5 parent: 2 - - uid: 37046 + - uid: 36888 components: - type: Transform pos: 40.5,-48.5 parent: 2 - - uid: 37047 + - uid: 36889 components: - type: Transform pos: 28.5,-17.5 parent: 2 - - uid: 37048 + - uid: 36890 components: - type: Transform pos: 54.5,-25.5 parent: 2 - - uid: 37049 + - uid: 36891 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 37050 + - uid: 36892 components: - type: Transform pos: 46.5,-29.5 parent: 2 - - uid: 37051 + - uid: 36893 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 37052 + - uid: 36894 components: - type: Transform pos: -11.5,-75.5 parent: 2 - - uid: 37053 + - uid: 36895 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 37054 + - uid: 36896 components: - type: Transform pos: -9.5,51.5 parent: 2 - - uid: 37055 + - uid: 36897 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-48.5 parent: 2 - - uid: 37056 + - uid: 36898 components: - type: Transform pos: 29.5,3.5 parent: 2 - - uid: 37057 + - uid: 36899 components: - type: Transform pos: 11.5,55.5 parent: 2 - - uid: 37058 + - uid: 36900 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 37059 + - uid: 36901 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 37060 + - uid: 36902 components: - type: Transform pos: 5.5,53.5 parent: 2 - - uid: 37061 + - uid: 36903 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 - - uid: 37062 + - uid: 36904 components: - type: Transform pos: 21.5,-16.5 parent: 2 - - uid: 37063 + - uid: 36905 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 37064 + - uid: 36906 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 37065 + - uid: 36907 components: - type: Transform pos: 8.5,63.5 parent: 2 - - uid: 37066 + - uid: 36908 components: - type: Transform pos: 50.5,-21.5 parent: 2 - - uid: 37067 + - uid: 36909 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 37068 + - uid: 36910 components: - type: Transform pos: 7.5,55.5 parent: 2 - - uid: 37069 + - uid: 36911 components: - type: Transform pos: 12.5,34.5 parent: 2 - - uid: 37070 + - uid: 36912 components: - type: Transform pos: 1.5,32.5 parent: 2 - - uid: 37071 + - uid: 36913 components: - type: Transform pos: 4.5,49.5 parent: 2 - - uid: 37072 + - uid: 36914 components: - type: Transform pos: 25.5,25.5 parent: 2 - - uid: 37073 + - uid: 36915 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 37074 + - uid: 36916 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 37075 + - uid: 36917 components: - type: Transform pos: -39.5,45.5 parent: 2 - - uid: 37076 + - uid: 36918 components: - type: Transform pos: -34.5,-9.5 parent: 2 - - uid: 37077 + - uid: 36919 components: - type: Transform pos: 29.5,-38.5 parent: 2 - - uid: 37078 + - uid: 36920 components: - type: Transform pos: 33.5,-26.5 parent: 2 - - uid: 37079 + - uid: 36921 components: - type: Transform pos: -16.5,-44.5 parent: 2 - - uid: 37080 + - uid: 36922 components: - type: Transform pos: 8.5,50.5 parent: 2 - - uid: 37081 + - uid: 36923 components: - type: Transform pos: 14.5,54.5 parent: 2 - - uid: 37082 + - uid: 36924 components: - type: Transform pos: 13.5,47.5 parent: 2 - - uid: 37083 + - uid: 36925 components: - type: Transform pos: -39.5,14.5 parent: 2 - - uid: 37084 + - uid: 36926 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 37085 + - uid: 36927 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,55.5 parent: 2 - - uid: 37086 + - uid: 36928 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 37087 + - uid: 36929 components: - type: Transform pos: -53.5,-41.5 parent: 2 - - uid: 37088 + - uid: 36930 components: - type: Transform pos: 18.5,57.5 parent: 2 - - uid: 37089 + - uid: 36931 components: - type: Transform pos: 22.5,-12.5 parent: 2 - - uid: 37090 + - uid: 36932 components: - type: Transform pos: 38.5,-51.5 parent: 2 - - uid: 37091 + - uid: 36933 components: - type: Transform pos: -10.5,-29.5 parent: 2 - - uid: 37092 + - uid: 36934 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 37093 + - uid: 36935 components: - type: Transform pos: 44.5,-48.5 parent: 2 - - uid: 37094 + - uid: 36936 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 37095 + - uid: 36937 components: - type: Transform pos: -0.5,45.5 parent: 2 - - uid: 37096 + - uid: 36938 components: - type: Transform pos: 9.5,77.5 parent: 2 - - uid: 37097 + - uid: 36939 components: - type: Transform pos: -39.5,51.5 parent: 2 - - uid: 37098 + - uid: 36940 components: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 37099 + - uid: 36941 components: - type: Transform pos: 6.5,46.5 parent: 2 - - uid: 37100 + - uid: 36942 components: - type: Transform pos: -11.5,-78.5 parent: 2 - - uid: 37101 + - uid: 36943 components: - type: Transform pos: -25.5,66.5 parent: 2 - - uid: 37102 + - uid: 36944 components: - type: Transform pos: -34.5,32.5 parent: 2 - - uid: 37103 + - uid: 36945 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 37104 + - uid: 36946 components: - type: Transform pos: -27.5,-9.5 parent: 2 - - uid: 37105 + - uid: 36947 components: - type: Transform pos: -29.5,13.5 parent: 2 - - uid: 37106 + - uid: 36948 components: - type: Transform pos: -35.5,-0.5 parent: 2 - - uid: 37107 + - uid: 36949 components: - type: Transform pos: -34.5,29.5 parent: 2 - - uid: 37108 + - uid: 36950 components: - type: Transform pos: -4.5,39.5 parent: 2 - - uid: 37109 + - uid: 36951 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 37110 + - uid: 36952 components: - type: Transform pos: -25.5,24.5 parent: 2 - - uid: 37111 + - uid: 36953 components: - type: Transform pos: 18.5,-22.5 parent: 2 - - uid: 37112 + - uid: 36954 components: - type: Transform pos: 14.5,30.5 parent: 2 - - uid: 37113 + - uid: 36955 components: - type: Transform pos: 25.5,-23.5 parent: 2 - - uid: 37114 + - uid: 36956 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-47.5 parent: 2 - - uid: 37115 + - uid: 36957 components: - type: Transform pos: -20.5,-44.5 parent: 2 - - uid: 37116 + - uid: 36958 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 37117 + - uid: 36959 components: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 37118 + - uid: 36960 components: - type: Transform pos: -34.5,31.5 parent: 2 - - uid: 37119 + - uid: 36961 components: - type: Transform pos: 40.5,-71.5 parent: 2 - - uid: 37120 + - uid: 36962 components: - type: Transform pos: -3.5,29.5 parent: 2 - - uid: 37121 + - uid: 36963 components: - type: Transform pos: -36.5,35.5 parent: 2 - - uid: 37122 + - uid: 36964 components: - type: Transform pos: 8.5,47.5 parent: 2 - - uid: 37123 + - uid: 36965 components: - type: Transform pos: 12.5,46.5 parent: 2 - - uid: 37124 + - uid: 36966 components: - type: Transform pos: 50.5,-40.5 parent: 2 - - uid: 37125 + - uid: 36967 components: - type: Transform pos: -9.5,-80.5 parent: 2 - - uid: 37126 + - uid: 36968 components: - type: Transform pos: -22.5,24.5 parent: 2 - - uid: 37127 + - uid: 36969 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 37128 + - uid: 36970 components: - type: Transform pos: -34.5,58.5 parent: 2 - - uid: 37129 + - uid: 36971 components: - type: Transform pos: 8.5,53.5 parent: 2 - - uid: 37130 + - uid: 36972 components: - type: Transform pos: 14.5,29.5 parent: 2 - - uid: 37131 + - uid: 36973 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-42.5 parent: 2 - - uid: 37132 + - uid: 36974 components: - type: Transform pos: -28.5,62.5 parent: 2 - - uid: 37133 + - uid: 36975 components: - type: Transform pos: 54.5,-23.5 parent: 2 - - uid: 37134 + - uid: 36976 components: - type: Transform pos: -3.5,52.5 parent: 2 - - uid: 37135 + - uid: 36977 components: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 37136 + - uid: 36978 components: - type: Transform pos: 50.5,-42.5 parent: 2 - - uid: 37137 + - uid: 36979 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 37138 + - uid: 36980 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 37139 + - uid: 36981 components: - type: Transform pos: 54.5,-13.5 parent: 2 - - uid: 37140 + - uid: 36982 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 37141 + - uid: 36983 components: - type: Transform pos: -4.5,47.5 parent: 2 - - uid: 37142 + - uid: 36984 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-66.5 parent: 2 - - uid: 37143 + - uid: 36985 components: - type: Transform pos: -13.5,51.5 parent: 2 - - uid: 37144 + - uid: 36986 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 37145 + - uid: 36987 components: - type: Transform pos: -34.5,46.5 parent: 2 - - uid: 37146 + - uid: 36988 components: - type: Transform pos: -32.5,63.5 parent: 2 - - uid: 37147 + - uid: 36989 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 - - uid: 37148 + - uid: 36990 components: - type: Transform pos: -29.5,-58.5 parent: 2 - - uid: 37149 + - uid: 36991 components: - type: Transform pos: -24.5,45.5 parent: 2 - - uid: 37150 + - uid: 36992 components: - type: Transform pos: -0.5,47.5 parent: 2 - - uid: 37151 + - uid: 36993 components: - type: Transform pos: 5.5,51.5 parent: 2 - - uid: 37152 + - uid: 36994 components: - type: Transform pos: -12.5,47.5 parent: 2 - - uid: 37153 + - uid: 36995 components: - type: Transform pos: -8.5,47.5 parent: 2 - - uid: 37154 + - uid: 36996 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,55.5 parent: 2 - - uid: 37155 + - uid: 36997 components: - type: Transform pos: -5.5,25.5 parent: 2 - - uid: 37156 + - uid: 36998 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,55.5 parent: 2 - - uid: 37157 + - uid: 36999 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 37158 + - uid: 37000 components: - type: Transform pos: 13.5,68.5 parent: 2 - - uid: 37159 + - uid: 37001 components: - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 37160 + - uid: 37002 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 37161 + - uid: 37003 components: - type: Transform pos: 50.5,-33.5 parent: 2 - - uid: 37162 + - uid: 37004 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 37163 + - uid: 37005 components: - type: Transform pos: 45.5,-36.5 parent: 2 - - uid: 37164 + - uid: 37006 components: - type: Transform pos: 19.5,57.5 parent: 2 - - uid: 37165 + - uid: 37007 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,44.5 parent: 2 - - uid: 37166 + - uid: 37008 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 - - uid: 37167 + - uid: 37009 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 37168 + - uid: 37010 components: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 37169 + - uid: 37011 components: - type: Transform pos: -39.5,48.5 parent: 2 - - uid: 37170 + - uid: 37012 components: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 37171 + - uid: 37013 components: - type: Transform pos: 19.5,25.5 parent: 2 - - uid: 37172 + - uid: 37014 components: - type: Transform pos: 48.5,-52.5 parent: 2 - - uid: 37173 + - uid: 37015 components: - type: Transform pos: 42.5,-43.5 parent: 2 - - uid: 37174 + - uid: 37016 components: - type: Transform pos: 42.5,-22.5 parent: 2 - - uid: 37175 + - uid: 37017 components: - type: Transform pos: 40.5,-21.5 parent: 2 - - uid: 37176 + - uid: 37018 components: - type: Transform pos: 4.5,61.5 parent: 2 - - uid: 37177 + - uid: 37019 components: - type: Transform pos: -11.5,-79.5 parent: 2 - - uid: 37178 + - uid: 37020 components: - type: Transform pos: -9.5,-79.5 parent: 2 - - uid: 37179 + - uid: 37021 components: - type: Transform pos: -12.5,-76.5 parent: 2 - - uid: 37180 + - uid: 37022 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 37181 + - uid: 37023 components: - type: Transform pos: -23.5,46.5 parent: 2 - - uid: 37182 + - uid: 37024 components: - type: Transform pos: -45.5,-41.5 parent: 2 - - uid: 37183 + - uid: 37025 components: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 37184 + - uid: 37026 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 37185 + - uid: 37027 components: - type: Transform pos: 46.5,-24.5 parent: 2 - - uid: 37186 + - uid: 37028 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 37187 + - uid: 37029 components: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 37188 + - uid: 37030 components: - type: Transform pos: 9.5,82.5 parent: 2 - - uid: 37189 + - uid: 37031 components: - type: Transform pos: 3.5,46.5 parent: 2 - - uid: 37190 + - uid: 37032 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-37.5 parent: 2 - - uid: 37191 + - uid: 37033 components: - type: Transform pos: -39.5,44.5 parent: 2 - - uid: 37192 + - uid: 37034 components: - type: Transform pos: -34.5,35.5 parent: 2 - - uid: 37193 + - uid: 37035 components: - type: Transform pos: -13.5,25.5 parent: 2 - - uid: 37194 + - uid: 37036 components: - type: Transform pos: -41.5,-18.5 parent: 2 - - uid: 37195 + - uid: 37037 components: - type: Transform pos: 18.5,64.5 parent: 2 - - uid: 37196 + - uid: 37038 components: - type: Transform pos: -22.5,65.5 parent: 2 - - uid: 37197 + - uid: 37039 components: - type: Transform pos: -22.5,60.5 parent: 2 - - uid: 37198 + - uid: 37040 components: - type: Transform pos: -35.5,-8.5 parent: 2 - - uid: 37199 + - uid: 37041 components: - type: Transform pos: -39.5,36.5 parent: 2 - - uid: 37200 + - uid: 37042 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-35.5 parent: 2 - - uid: 37201 + - uid: 37043 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 37202 + - uid: 37044 components: - type: Transform pos: 33.5,-69.5 parent: 2 - - uid: 37203 + - uid: 37045 components: - type: Transform pos: -44.5,-43.5 parent: 2 - - uid: 37204 + - uid: 37046 components: - type: Transform pos: -3.5,35.5 parent: 2 - - uid: 37205 + - uid: 37047 components: - type: Transform pos: -56.5,31.5 parent: 2 - - uid: 37206 + - uid: 37048 components: - type: Transform pos: -4.5,36.5 parent: 2 - - uid: 37207 + - uid: 37049 components: - type: Transform pos: 28.5,-53.5 parent: 2 - - uid: 37208 + - uid: 37050 components: - type: Transform pos: 33.5,-30.5 parent: 2 - - uid: 37209 + - uid: 37051 components: - type: Transform pos: -56.5,-32.5 parent: 2 - - uid: 37210 + - uid: 37052 components: - type: Transform pos: 33.5,-65.5 parent: 2 - - uid: 37211 + - uid: 37053 components: - type: Transform pos: -49.5,-34.5 parent: 2 - - uid: 37212 + - uid: 37054 components: - type: Transform pos: 2.5,-47.5 parent: 2 - - uid: 37213 + - uid: 37055 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 37214 + - uid: 37056 components: - type: Transform pos: 39.5,-44.5 parent: 2 - - uid: 37215 + - uid: 37057 components: - type: Transform pos: 25.5,-36.5 parent: 2 - - uid: 37216 + - uid: 37058 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 37217 + - uid: 37059 components: - type: Transform pos: -24.5,-18.5 parent: 2 - - uid: 37218 + - uid: 37060 components: - type: Transform pos: 9.5,74.5 parent: 2 - - uid: 37219 + - uid: 37061 components: - type: Transform pos: -3.5,-56.5 parent: 2 - - uid: 37220 + - uid: 37062 components: - type: Transform pos: -28.5,64.5 parent: 2 - - uid: 37221 + - uid: 37063 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 37222 + - uid: 37064 components: - type: Transform pos: 22.5,39.5 parent: 2 - - uid: 37223 + - uid: 37065 components: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 37224 + - uid: 37066 components: - type: Transform pos: 33.5,-27.5 parent: 2 - - uid: 37225 + - uid: 37067 components: - type: Transform pos: 8.5,70.5 parent: 2 - - uid: 37226 + - uid: 37068 components: - type: Transform pos: 8.5,66.5 parent: 2 - - uid: 37227 + - uid: 37069 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 37228 + - uid: 37070 components: - type: Transform pos: -2.5,25.5 parent: 2 - - uid: 37229 + - uid: 37071 components: - type: Transform pos: -75.5,-24.5 parent: 2 - - uid: 37230 + - uid: 37072 components: - type: Transform pos: 5.5,54.5 parent: 2 - - uid: 37231 + - uid: 37073 components: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 37232 + - uid: 37074 components: - type: Transform pos: 37.5,-59.5 parent: 2 - - uid: 37233 + - uid: 37075 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - uid: 37234 + - uid: 37076 components: - type: Transform pos: 38.5,-5.5 parent: 2 - - uid: 37235 + - uid: 37077 components: - type: Transform pos: 44.5,-36.5 parent: 2 - - uid: 37236 + - uid: 37078 components: - type: Transform pos: -42.5,24.5 parent: 2 - - uid: 37237 + - uid: 37079 components: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 37238 + - uid: 37080 components: - type: Transform pos: -50.5,-34.5 parent: 2 - - uid: 37239 + - uid: 37081 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-41.5 parent: 2 - - uid: 37240 + - uid: 37082 components: - type: Transform pos: -7.5,-36.5 parent: 2 - - uid: 37241 + - uid: 37083 components: - type: Transform pos: -44.5,-44.5 parent: 2 - - uid: 37242 + - uid: 37084 components: - type: Transform pos: -43.5,-41.5 parent: 2 - - uid: 37243 + - uid: 37085 components: - type: Transform pos: -48.5,-34.5 parent: 2 - - uid: 37244 + - uid: 37086 components: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 37245 + - uid: 37087 components: - type: Transform pos: 22.5,-29.5 parent: 2 - - uid: 37246 + - uid: 37088 components: - type: Transform pos: 42.5,-63.5 parent: 2 - - uid: 37247 + - uid: 37089 components: - type: Transform pos: 34.5,-53.5 parent: 2 - - uid: 37248 + - uid: 37090 components: - type: Transform pos: 35.5,-52.5 parent: 2 - - uid: 37249 + - uid: 37091 components: - type: Transform pos: 35.5,-53.5 parent: 2 - - uid: 37250 + - uid: 37092 components: - type: Transform pos: 23.5,-29.5 parent: 2 - - uid: 37251 + - uid: 37093 components: - type: Transform pos: 26.5,-53.5 parent: 2 - - uid: 37252 + - uid: 37094 components: - type: Transform pos: 18.5,-53.5 parent: 2 - - uid: 37253 + - uid: 37095 components: - type: Transform pos: -76.5,-28.5 parent: 2 - - uid: 37254 + - uid: 37096 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 37255 + - uid: 37097 components: - type: Transform pos: -36.5,44.5 parent: 2 - - uid: 37256 + - uid: 37098 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 37257 + - uid: 37099 components: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 37258 + - uid: 37100 components: - type: Transform pos: 32.5,-6.5 parent: 2 - - uid: 37259 + - uid: 37101 components: - type: Transform pos: 42.5,-44.5 parent: 2 - - uid: 37260 + - uid: 37102 components: - type: Transform pos: -53.5,-35.5 parent: 2 - - uid: 37261 + - uid: 37103 components: - type: Transform pos: 50.5,-22.5 parent: 2 - - uid: 37262 + - uid: 37104 components: - type: Transform pos: 24.5,3.5 parent: 2 - - uid: 37263 + - uid: 37105 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 37264 + - uid: 37106 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 37265 + - uid: 37107 components: - type: Transform pos: 42.5,-36.5 parent: 2 - - uid: 37266 + - uid: 37108 components: - type: Transform pos: 32.5,-3.5 parent: 2 - - uid: 37267 + - uid: 37109 components: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 37268 + - uid: 37110 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 37269 + - uid: 37111 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 - - uid: 37270 + - uid: 37112 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-36.5 parent: 2 - - uid: 37271 + - uid: 37113 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 37272 + - uid: 37114 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 37273 + - uid: 37115 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,3.5 parent: 2 - - uid: 37274 + - uid: 37116 components: - type: Transform pos: -24.5,-13.5 parent: 2 - - uid: 37275 + - uid: 37117 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 37276 + - uid: 37118 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 37277 + - uid: 37119 components: - type: Transform pos: 28.5,-18.5 parent: 2 - - uid: 37278 + - uid: 37120 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 37279 + - uid: 37121 components: - type: Transform pos: -21.5,-13.5 parent: 2 - - uid: 37280 + - uid: 37122 components: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 37281 + - uid: 37123 components: - type: Transform pos: -16.5,-76.5 parent: 2 - - uid: 37282 + - uid: 37124 components: - type: Transform pos: -18.5,-76.5 parent: 2 - - uid: 37283 + - uid: 37125 components: - type: Transform pos: -4.5,-62.5 parent: 2 - - uid: 37284 + - uid: 37126 components: - type: Transform pos: -48.5,-38.5 parent: 2 - - uid: 37285 + - uid: 37127 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 37286 + - uid: 37128 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 37287 + - uid: 37129 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 37288 + - uid: 37130 components: - type: Transform pos: -38.5,3.5 parent: 2 - - uid: 37289 + - uid: 37131 components: - type: Transform pos: -27.5,3.5 parent: 2 - - uid: 37290 + - uid: 37132 components: - type: Transform pos: -29.5,10.5 parent: 2 - - uid: 37291 + - uid: 37133 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 37292 + - uid: 37134 components: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 37293 + - uid: 37135 components: - type: Transform pos: -28.5,40.5 parent: 2 - - uid: 37294 + - uid: 37136 components: - type: Transform pos: -32.5,44.5 parent: 2 - - uid: 37295 + - uid: 37137 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 37296 + - uid: 37138 components: - type: Transform pos: -37.5,56.5 parent: 2 - - uid: 37297 + - uid: 37139 components: - type: Transform pos: -39.5,12.5 parent: 2 - - uid: 37298 + - uid: 37140 components: - type: Transform pos: -34.5,56.5 parent: 2 - - uid: 37299 + - uid: 37141 components: - type: Transform pos: 37.5,18.5 parent: 2 - - uid: 37300 + - uid: 37142 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 37301 + - uid: 37143 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 37302 + - uid: 37144 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 37303 + - uid: 37145 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 - - uid: 37304 + - uid: 37146 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 37305 + - uid: 37147 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 37306 + - uid: 37148 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 37307 + - uid: 37149 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 37308 + - uid: 37150 components: - type: Transform pos: 44.5,-45.5 parent: 2 - - uid: 37309 + - uid: 37151 components: - type: Transform pos: 27.5,-8.5 parent: 2 - - uid: 37310 + - uid: 37152 components: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 37311 + - uid: 37153 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 37312 + - uid: 37154 components: - type: Transform pos: 77.5,-19.5 parent: 2 - - uid: 37313 + - uid: 37155 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 - - uid: 37314 + - uid: 37156 components: - type: Transform pos: 42.5,-45.5 parent: 2 - - uid: 37315 + - uid: 37157 components: - type: Transform pos: 32.5,-7.5 parent: 2 - - uid: 37316 + - uid: 37158 components: - type: Transform pos: 50.5,-36.5 parent: 2 - - uid: 37317 + - uid: 37159 components: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 37318 + - uid: 37160 components: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 37319 + - uid: 37161 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 37320 + - uid: 37162 components: - type: Transform pos: 12.5,42.5 parent: 2 - - uid: 37321 + - uid: 37163 components: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 37322 + - uid: 37164 components: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 37323 + - uid: 37165 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 37324 + - uid: 37166 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 37325 + - uid: 37167 components: - type: Transform pos: 53.5,-42.5 parent: 2 - - uid: 37326 + - uid: 37168 components: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 37327 + - uid: 37169 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,60.5 parent: 2 - - uid: 37328 + - uid: 37170 components: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 37329 + - uid: 37171 components: - type: Transform pos: 41.5,-48.5 parent: 2 - - uid: 37330 + - uid: 37172 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 - - uid: 37331 + - uid: 37173 components: - type: Transform pos: 49.5,-36.5 parent: 2 - - uid: 37332 + - uid: 37174 components: - type: Transform pos: -23.5,58.5 parent: 2 - - uid: 37333 + - uid: 37175 components: - type: Transform pos: 39.5,-31.5 parent: 2 - - uid: 37334 + - uid: 37176 components: - type: Transform pos: 0.5,66.5 parent: 2 - - uid: 37335 + - uid: 37177 components: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 37336 + - uid: 37178 components: - type: Transform pos: 1.5,59.5 parent: 2 - - uid: 37337 + - uid: 37179 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 37338 + - uid: 37180 components: - type: Transform pos: -8.5,-61.5 parent: 2 - - uid: 37339 + - uid: 37181 components: - type: Transform pos: -15.5,-76.5 parent: 2 - - uid: 37340 + - uid: 37182 components: - type: Transform pos: -17.5,-76.5 parent: 2 - - uid: 37341 + - uid: 37183 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 37342 + - uid: 37184 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 37343 + - uid: 37185 components: - type: Transform pos: 46.5,-25.5 parent: 2 - - uid: 37344 + - uid: 37186 components: - type: Transform pos: 2.5,38.5 parent: 2 - - uid: 37345 + - uid: 37187 components: - type: Transform pos: 25.5,33.5 parent: 2 - - uid: 37346 + - uid: 37188 components: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 37347 + - uid: 37189 components: - type: Transform pos: -3.5,31.5 parent: 2 - - uid: 37348 + - uid: 37190 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-48.5 parent: 2 - - uid: 37349 + - uid: 37191 components: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 37350 + - uid: 37192 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 37351 + - uid: 37193 components: - type: Transform pos: -6.5,31.5 parent: 2 - - uid: 37352 + - uid: 37194 components: - type: Transform pos: -24.5,58.5 parent: 2 - - uid: 37353 + - uid: 37195 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 - - uid: 37354 + - uid: 37196 components: - type: Transform pos: -28.5,-66.5 parent: 2 - - uid: 37355 + - uid: 37197 components: - type: Transform pos: -28.5,-63.5 parent: 2 - - uid: 37356 + - uid: 37198 components: - type: Transform pos: -47.5,-38.5 parent: 2 - - uid: 37357 + - uid: 37199 components: - type: Transform pos: -26.5,-14.5 parent: 2 - - uid: 37358 + - uid: 37200 components: - type: Transform pos: -7.5,31.5 parent: 2 - - uid: 37359 + - uid: 37201 components: - type: Transform pos: -26.5,-12.5 parent: 2 - - uid: 37360 + - uid: 37202 components: - type: Transform pos: 13.5,57.5 parent: 2 - - uid: 37361 + - uid: 37203 components: - type: Transform pos: 25.5,55.5 parent: 2 - - uid: 37362 + - uid: 37204 components: - type: Transform pos: 8.5,42.5 parent: 2 - - uid: 37363 + - uid: 37205 components: - type: Transform pos: 23.5,55.5 parent: 2 - - uid: 37364 + - uid: 37206 components: - type: Transform pos: 18.5,55.5 parent: 2 - - uid: 37365 + - uid: 37207 components: - type: Transform pos: 8.5,46.5 parent: 2 - - uid: 37366 + - uid: 37208 components: - type: Transform pos: 14.5,57.5 parent: 2 - - uid: 37367 + - uid: 37209 components: - type: Transform pos: -29.5,-62.5 parent: 2 - - uid: 37368 + - uid: 37210 components: - type: Transform pos: 22.5,55.5 parent: 2 - - uid: 37369 + - uid: 37211 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 37370 + - uid: 37212 components: - type: Transform pos: 37.5,22.5 parent: 2 - - uid: 37371 + - uid: 37213 components: - type: Transform pos: 42.5,-42.5 parent: 2 - - uid: 37372 + - uid: 37214 components: - type: Transform pos: 48.5,-36.5 parent: 2 - - uid: 37373 + - uid: 37215 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 37374 + - uid: 37216 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 37375 + - uid: 37217 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 37376 + - uid: 37218 components: - type: Transform pos: -28.5,39.5 parent: 2 - - uid: 37377 + - uid: 37219 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 37378 + - uid: 37220 components: - type: Transform pos: -6.5,35.5 parent: 2 - - uid: 37379 + - uid: 37221 components: - type: Transform pos: -26.5,-15.5 parent: 2 - - uid: 37380 + - uid: 37222 components: - type: Transform pos: -39.5,13.5 parent: 2 - - uid: 37381 + - uid: 37223 components: - type: Transform pos: -8.5,-60.5 parent: 2 - - uid: 37382 + - uid: 37224 components: - type: Transform pos: 16.5,55.5 parent: 2 - - uid: 37383 + - uid: 37225 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 37384 + - uid: 37226 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 37385 + - uid: 37227 components: - type: Transform pos: 50.5,-23.5 parent: 2 - - uid: 37386 + - uid: 37228 components: - type: Transform pos: 23.5,-15.5 parent: 2 - - uid: 37387 + - uid: 37229 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 37388 + - uid: 37230 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-48.5 parent: 2 - - uid: 37389 + - uid: 37231 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 37390 + - uid: 37232 components: - type: Transform pos: -14.5,-76.5 parent: 2 - - uid: 37391 + - uid: 37233 components: - type: Transform pos: -21.5,-69.5 parent: 2 - - uid: 37392 + - uid: 37234 components: - type: Transform pos: -29.5,9.5 parent: 2 - - uid: 37393 + - uid: 37235 components: - type: Transform pos: -36.5,3.5 parent: 2 - - uid: 37394 + - uid: 37236 components: - type: Transform pos: -40.5,55.5 parent: 2 - - uid: 37395 + - uid: 37237 components: - type: Transform pos: 21.5,55.5 parent: 2 - - uid: 37396 + - uid: 37238 components: - type: Transform pos: -28.5,-62.5 parent: 2 - - uid: 37397 + - uid: 37239 components: - type: Transform pos: -17.5,-78.5 parent: 2 - - uid: 37398 + - uid: 37240 components: - type: Transform pos: 0.5,59.5 parent: 2 - - uid: 37399 + - uid: 37241 components: - type: Transform pos: -19.5,-76.5 parent: 2 - - uid: 37400 + - uid: 37242 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 - - uid: 37401 + - uid: 37243 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 37402 + - uid: 37244 components: - type: Transform pos: -25.5,-13.5 parent: 2 - - uid: 37403 + - uid: 37245 components: - type: Transform pos: -40.5,56.5 parent: 2 - - uid: 37404 + - uid: 37246 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-37.5 parent: 2 - - uid: 37405 + - uid: 37247 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-39.5 parent: 2 - - uid: 37406 + - uid: 37248 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-39.5 parent: 2 - - uid: 37407 + - uid: 37249 components: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 37408 + - uid: 37250 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 37409 + - uid: 37251 components: - type: Transform pos: 19.5,55.5 parent: 2 - - uid: 37410 + - uid: 37252 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 37411 + - uid: 37253 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-34.5 parent: 2 - - uid: 37412 + - uid: 37254 components: - type: Transform pos: -8.5,-62.5 parent: 2 - - uid: 37413 + - uid: 37255 components: - type: Transform pos: -57.5,34.5 parent: 2 - - uid: 37414 + - uid: 37256 components: - type: Transform pos: 9.5,-83.5 parent: 2 - - uid: 37415 + - uid: 37257 components: - type: Transform pos: 4.5,38.5 parent: 2 - - uid: 37416 + - uid: 37258 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 37417 + - uid: 37259 components: - type: Transform pos: 37.5,-2.5 parent: 2 - - uid: 37418 + - uid: 37260 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 37419 + - uid: 37261 components: - type: Transform pos: -29.5,15.5 parent: 2 - - uid: 37420 + - uid: 37262 components: - type: Transform pos: -42.5,-13.5 parent: 2 - - uid: 37421 + - uid: 37263 components: - type: Transform pos: -29.5,7.5 parent: 2 - - uid: 37422 + - uid: 37264 components: - type: Transform pos: 13.5,-48.5 parent: 2 - - uid: 37423 + - uid: 37265 components: - type: Transform pos: 54.5,-11.5 parent: 2 - - uid: 37424 + - uid: 37266 components: - type: Transform pos: -6.5,55.5 parent: 2 - - uid: 37425 + - uid: 37267 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 37426 + - uid: 37268 components: - type: Transform pos: -37.5,30.5 parent: 2 - - uid: 37427 + - uid: 37269 components: - type: Transform pos: 23.5,-24.5 parent: 2 - - uid: 37428 + - uid: 37270 components: - type: Transform pos: 34.5,-36.5 parent: 2 - - uid: 37429 + - uid: 37271 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 37430 + - uid: 37272 components: - type: Transform pos: -32.5,60.5 parent: 2 - - uid: 37431 + - uid: 37273 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 37432 + - uid: 37274 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 37433 + - uid: 37275 components: - type: Transform pos: 39.5,-23.5 parent: 2 - - uid: 37434 + - uid: 37276 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-34.5 parent: 2 - - uid: 37435 + - uid: 37277 components: - type: Transform pos: 26.5,-17.5 parent: 2 - - uid: 37436 + - uid: 37278 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 37437 + - uid: 37279 components: - type: Transform pos: 23.5,-17.5 parent: 2 - - uid: 37438 + - uid: 37280 components: - type: Transform pos: 27.5,-18.5 parent: 2 - - uid: 37439 + - uid: 37281 components: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 37440 + - uid: 37282 components: - type: Transform pos: 47.5,-36.5 parent: 2 - - uid: 37441 + - uid: 37283 components: - type: Transform pos: -31.5,31.5 parent: 2 - - uid: 37442 + - uid: 37284 components: - type: Transform pos: 48.5,-53.5 parent: 2 - - uid: 37443 + - uid: 37285 components: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 37444 + - uid: 37286 components: - type: Transform pos: -18.5,-78.5 parent: 2 - - uid: 37445 + - uid: 37287 components: - type: Transform pos: 13.5,25.5 parent: 2 - - uid: 37446 + - uid: 37288 components: - type: Transform pos: -32.5,58.5 parent: 2 - - uid: 37447 + - uid: 37289 components: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 37448 + - uid: 37290 components: - type: Transform pos: -22.5,-9.5 parent: 2 - - uid: 37449 + - uid: 37291 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 37450 + - uid: 37292 components: - type: Transform pos: -21.5,-72.5 parent: 2 - - uid: 37451 + - uid: 37293 components: - type: Transform pos: -37.5,-12.5 parent: 2 - - uid: 37452 + - uid: 37294 components: - type: Transform pos: -2.5,35.5 parent: 2 - - uid: 37453 + - uid: 37295 components: - type: Transform pos: -3.5,32.5 parent: 2 - - uid: 37454 + - uid: 37296 components: - type: Transform pos: 39.5,-36.5 parent: 2 - - uid: 37455 + - uid: 37297 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 37456 + - uid: 37298 components: - type: Transform pos: 38.5,-49.5 parent: 2 - - uid: 37457 + - uid: 37299 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 37458 + - uid: 37300 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 37459 + - uid: 37301 components: - type: Transform pos: -25.5,-63.5 parent: 2 - - uid: 37460 + - uid: 37302 components: - type: Transform pos: -25.5,-62.5 parent: 2 - - uid: 37461 + - uid: 37303 components: - type: Transform pos: 31.5,-12.5 parent: 2 - - uid: 37462 + - uid: 37304 components: - type: Transform pos: 11.5,58.5 parent: 2 - - uid: 37463 + - uid: 37305 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 37464 + - uid: 37306 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 37465 + - uid: 37307 components: - type: Transform pos: -24.5,60.5 parent: 2 - - uid: 37466 + - uid: 37308 components: - type: Transform pos: -8.5,-59.5 parent: 2 - - uid: 37467 + - uid: 37309 components: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 37468 + - uid: 37310 components: - type: Transform pos: 3.5,41.5 parent: 2 - - uid: 37469 + - uid: 37311 components: - type: Transform pos: 13.5,71.5 parent: 2 - - uid: 37470 + - uid: 37312 components: - type: Transform pos: 3.5,45.5 parent: 2 - - uid: 37471 + - uid: 37313 components: - type: Transform pos: -25.5,58.5 parent: 2 - - uid: 37472 + - uid: 37314 components: - type: Transform pos: -55.5,16.5 parent: 2 - - uid: 37473 + - uid: 37315 components: - type: Transform pos: 22.5,25.5 parent: 2 - - uid: 37474 + - uid: 37316 components: - type: Transform pos: -9.5,35.5 parent: 2 - - uid: 37475 + - uid: 37317 components: - type: Transform pos: -8.5,35.5 parent: 2 - - uid: 37476 + - uid: 37318 components: - type: Transform pos: 49.5,-45.5 parent: 2 - - uid: 37477 + - uid: 37319 components: - type: Transform pos: 37.5,-45.5 parent: 2 - - uid: 37478 + - uid: 37320 components: - type: Transform pos: -55.5,18.5 parent: 2 - - uid: 37479 + - uid: 37321 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 37480 + - uid: 37322 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 37481 + - uid: 37323 components: - type: Transform pos: -20.5,-27.5 parent: 2 - - uid: 37482 + - uid: 37324 components: - type: Transform pos: -20.5,-23.5 parent: 2 - - uid: 37483 + - uid: 37325 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 37484 + - uid: 37326 components: - type: Transform pos: -59.5,0.5 parent: 2 - - uid: 37485 + - uid: 37327 components: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 37486 + - uid: 37328 components: - type: Transform pos: -59.5,16.5 parent: 2 - - uid: 37487 + - uid: 37329 components: - type: Transform pos: 25.5,-54.5 parent: 2 - - uid: 37488 + - uid: 37330 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 37489 + - uid: 37331 components: - type: Transform pos: -26.5,56.5 parent: 2 - - uid: 37490 + - uid: 37332 components: - type: Transform pos: -27.5,56.5 parent: 2 - - uid: 37491 + - uid: 37333 components: - type: Transform pos: -28.5,56.5 parent: 2 - - uid: 37492 + - uid: 37334 components: - type: Transform pos: -30.5,56.5 parent: 2 - - uid: 37493 + - uid: 37335 components: - type: Transform pos: 31.5,-36.5 parent: 2 - - uid: 37494 + - uid: 37336 components: - type: Transform pos: -21.5,7.5 parent: 2 - - uid: 37495 + - uid: 37337 components: - type: Transform pos: 35.5,-50.5 parent: 2 - - uid: 37496 + - uid: 37338 components: - type: Transform pos: -29.5,-9.5 parent: 2 - - uid: 37497 + - uid: 37339 components: - type: Transform pos: 17.5,33.5 parent: 2 - - uid: 37498 + - uid: 37340 components: - type: Transform pos: 42.5,-8.5 parent: 2 - - uid: 37499 + - uid: 37341 components: - type: Transform pos: 43.5,-8.5 parent: 2 - - uid: 37500 + - uid: 37342 components: - type: Transform pos: 43.5,-13.5 parent: 2 - - uid: 37501 + - uid: 37343 components: - type: Transform pos: 42.5,-6.5 parent: 2 - - uid: 37502 + - uid: 37344 components: - type: Transform pos: 41.5,-5.5 parent: 2 - - uid: 37503 + - uid: 37345 components: - type: Transform pos: 42.5,-5.5 parent: 2 - - uid: 37504 + - uid: 37346 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 37505 + - uid: 37347 components: - type: Transform pos: 8.5,52.5 parent: 2 - - uid: 37506 + - uid: 37348 components: - type: Transform pos: -26.5,58.5 parent: 2 - - uid: 37507 + - uid: 37349 components: - type: Transform pos: -28.5,59.5 parent: 2 - - uid: 37508 + - uid: 37350 components: - type: Transform pos: -38.5,58.5 parent: 2 - - uid: 37509 + - uid: 37351 components: - type: Transform pos: -24.5,64.5 parent: 2 - - uid: 37510 + - uid: 37352 components: - type: Transform pos: -24.5,62.5 parent: 2 - - uid: 37511 + - uid: 37353 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 37512 + - uid: 37354 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 37513 + - uid: 37355 components: - type: Transform pos: -15.5,66.5 parent: 2 - - uid: 37514 + - uid: 37356 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 37515 + - uid: 37357 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 37516 + - uid: 37358 components: - type: Transform pos: -36.5,29.5 parent: 2 - - uid: 37517 + - uid: 37359 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-71.5 parent: 2 - - uid: 37518 + - uid: 37360 components: - type: Transform pos: -38.5,-18.5 parent: 2 - - uid: 37519 + - uid: 37361 components: - type: Transform pos: -37.5,-16.5 parent: 2 - - uid: 37520 + - uid: 37362 components: - type: Transform pos: -37.5,-17.5 parent: 2 - - uid: 37521 + - uid: 37363 components: - type: Transform pos: -37.5,-18.5 parent: 2 - - uid: 37522 + - uid: 37364 components: - type: Transform pos: 21.5,57.5 parent: 2 - - uid: 37523 + - uid: 37365 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 37524 + - uid: 37366 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 37525 + - uid: 37367 components: - type: Transform pos: -33.5,39.5 parent: 2 - - uid: 37526 + - uid: 37368 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 37527 + - uid: 37369 components: - type: Transform pos: -19.5,-78.5 parent: 2 - - uid: 37528 + - uid: 37370 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 37529 + - uid: 37371 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-62.5 parent: 2 - - uid: 37530 + - uid: 37372 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 37531 + - uid: 37373 components: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 37532 + - uid: 37374 components: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 37533 + - uid: 37375 components: - type: Transform pos: -35.5,51.5 parent: 2 - - uid: 37534 + - uid: 37376 components: - type: Transform pos: -47.5,-42.5 parent: 2 - - uid: 37535 + - uid: 37377 components: - type: Transform pos: -35.5,46.5 parent: 2 - - uid: 37536 + - uid: 37378 components: - type: Transform pos: 0.5,41.5 parent: 2 - - uid: 37537 + - uid: 37379 components: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 37538 + - uid: 37380 components: - type: Transform pos: 35.5,-17.5 parent: 2 - - uid: 37539 + - uid: 37381 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 37540 + - uid: 37382 components: - type: Transform pos: 52.5,-26.5 parent: 2 - - uid: 37541 + - uid: 37383 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 37542 + - uid: 37384 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 37543 + - uid: 37385 components: - type: Transform pos: -30.5,-0.5 parent: 2 - - uid: 37544 + - uid: 37386 components: - type: Transform pos: 11.5,-83.5 parent: 2 - - uid: 37545 + - uid: 37387 components: - type: Transform pos: -31.5,29.5 parent: 2 - - uid: 37546 + - uid: 37388 components: - type: Transform pos: 20.5,64.5 parent: 2 - - uid: 37547 + - uid: 37389 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 37548 + - uid: 37390 components: - type: Transform pos: 42.5,-33.5 parent: 2 - - uid: 37549 + - uid: 37391 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 37550 + - uid: 37392 components: - type: Transform pos: 19.5,-21.5 parent: 2 - - uid: 37551 + - uid: 37393 components: - type: Transform pos: 37.5,-71.5 parent: 2 - - uid: 37552 + - uid: 37394 components: - type: Transform pos: -5.5,-56.5 parent: 2 - - uid: 37553 + - uid: 37395 components: - type: Transform pos: 38.5,-36.5 parent: 2 - - uid: 37554 + - uid: 37396 components: - type: Transform pos: -28.5,63.5 parent: 2 - - uid: 37555 + - uid: 37397 components: - type: Transform pos: -50.5,7.5 parent: 2 - - uid: 37556 + - uid: 37398 components: - type: Transform pos: 48.5,-29.5 parent: 2 - - uid: 37557 + - uid: 37399 components: - type: Transform pos: -40.5,51.5 parent: 2 - - uid: 37558 + - uid: 37400 components: - type: Transform pos: 50.5,-30.5 parent: 2 - - uid: 37559 + - uid: 37401 components: - type: Transform pos: 46.5,-22.5 parent: 2 - - uid: 37560 + - uid: 37402 components: - type: Transform pos: 50.5,-35.5 parent: 2 - - uid: 37561 + - uid: 37403 components: - type: Transform pos: 2.5,-55.5 parent: 2 - - uid: 37562 + - uid: 37404 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 37563 + - uid: 37405 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 37564 + - uid: 37406 components: - type: Transform pos: 2.5,-53.5 parent: 2 - - uid: 37565 + - uid: 37407 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 37566 + - uid: 37408 components: - type: Transform pos: 4.5,-53.5 parent: 2 - - uid: 37567 + - uid: 37409 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 37568 + - uid: 37410 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 37569 + - uid: 37411 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - uid: 37570 + - uid: 37412 components: - type: Transform pos: 8.5,-53.5 parent: 2 - - uid: 37571 + - uid: 37413 components: - type: Transform pos: 9.5,-53.5 parent: 2 - - uid: 37572 + - uid: 37414 components: - type: Transform pos: 3.5,38.5 parent: 2 - - uid: 37573 + - uid: 37415 components: - type: Transform pos: -4.5,31.5 parent: 2 - - uid: 37574 + - uid: 37416 components: - type: Transform pos: 24.5,55.5 parent: 2 - - uid: 37575 + - uid: 37417 components: - type: Transform pos: -37.5,55.5 parent: 2 - - uid: 37576 + - uid: 37418 components: - type: Transform pos: 1.5,27.5 parent: 2 - - uid: 37577 + - uid: 37419 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 37578 + - uid: 37420 components: - type: Transform pos: 43.5,-16.5 parent: 2 - - uid: 37579 + - uid: 37421 components: - type: Transform pos: 23.5,-36.5 parent: 2 - - uid: 37580 + - uid: 37422 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 37581 + - uid: 37423 components: - type: Transform pos: 19.5,-36.5 parent: 2 - - uid: 37582 + - uid: 37424 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 37583 + - uid: 37425 components: - type: Transform pos: -32.5,62.5 parent: 2 - - uid: 37584 + - uid: 37426 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 37585 + - uid: 37427 components: - type: Transform pos: 37.5,-18.5 parent: 2 - - uid: 37586 + - uid: 37428 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 37587 + - uid: 37429 components: - type: Transform pos: 46.5,-21.5 parent: 2 - - uid: 37588 + - uid: 37430 components: - type: Transform pos: 11.5,-82.5 parent: 2 - - uid: 37589 + - uid: 37431 components: - type: Transform pos: 13.5,-56.5 parent: 2 - - uid: 37590 + - uid: 37432 components: - type: Transform pos: 11.5,-56.5 parent: 2 - - uid: 37591 + - uid: 37433 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 37592 + - uid: 37434 components: - type: Transform pos: -60.5,-39.5 parent: 2 - - uid: 37593 + - uid: 37435 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-12.5 parent: 2 - - uid: 37594 + - uid: 37436 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 37595 + - uid: 37437 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 37596 + - uid: 37438 components: - type: Transform pos: -37.5,51.5 parent: 2 - - uid: 37597 + - uid: 37439 components: - type: Transform pos: 11.5,-79.5 parent: 2 - - uid: 37598 + - uid: 37440 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-40.5 parent: 2 - - uid: 37599 + - uid: 37441 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-76.5 parent: 2 - - uid: 37600 + - uid: 37442 components: - type: Transform pos: 38.5,-42.5 parent: 2 - - uid: 37601 + - uid: 37443 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-42.5 parent: 2 - - uid: 37602 + - uid: 37444 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-42.5 parent: 2 - - uid: 37603 + - uid: 37445 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 - - uid: 37604 + - uid: 37446 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-42.5 parent: 2 - - uid: 37605 + - uid: 37447 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-36.5 parent: 2 - - uid: 37606 + - uid: 37448 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 - - uid: 37607 + - uid: 37449 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-44.5 parent: 2 - - uid: 37608 + - uid: 37450 components: - type: Transform pos: 36.5,-42.5 parent: 2 - - uid: 37609 + - uid: 37451 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-36.5 parent: 2 - - uid: 37610 + - uid: 37452 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-42.5 parent: 2 - - uid: 37611 + - uid: 37453 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-36.5 parent: 2 - - uid: 37612 + - uid: 37454 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-42.5 parent: 2 - - uid: 37613 + - uid: 37455 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-42.5 parent: 2 - - uid: 37614 + - uid: 37456 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-41.5 parent: 2 - - uid: 37616 + - uid: 37457 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-2.5 parent: 2 - - uid: 37617 + - uid: 37458 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-2.5 parent: 2 - - uid: 37618 + - uid: 37459 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 37619 + - uid: 37460 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-73.5 parent: 2 - - uid: 37620 + - uid: 37461 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-75.5 parent: 2 - - uid: 37621 + - uid: 37462 components: - type: Transform pos: -34.5,45.5 parent: 2 - - uid: 37622 + - uid: 37463 components: - type: Transform pos: -25.5,45.5 parent: 2 - - uid: 37623 + - uid: 37464 components: - type: Transform pos: -34.5,54.5 parent: 2 - - uid: 37624 + - uid: 37465 components: - type: Transform pos: -25.5,55.5 parent: 2 - - uid: 37625 + - uid: 37466 components: - type: Transform pos: -24.5,46.5 parent: 2 - - uid: 37626 + - uid: 37467 components: - type: Transform pos: -33.5,55.5 parent: 2 - - uid: 37627 + - uid: 37468 components: - type: Transform pos: -24.5,55.5 parent: 2 - - uid: 37628 + - uid: 37469 components: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 37629 + - uid: 37470 components: - type: Transform pos: -34.5,55.5 parent: 2 - - uid: 37630 + - uid: 37471 components: - type: Transform pos: -39.5,50.5 parent: 2 - - uid: 37631 + - uid: 37472 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 2 - - uid: 37632 + - uid: 37473 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,65.5 parent: 2 - - uid: 37633 + - uid: 37474 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,39.5 parent: 2 - - uid: 37634 + - uid: 37475 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 2 - - uid: 37635 + - uid: 37476 components: - type: Transform pos: -30.5,39.5 parent: 2 - - uid: 37636 + - uid: 37477 components: - type: Transform pos: 30.5,29.5 parent: 2 - - uid: 37637 + - uid: 37478 components: - type: Transform pos: 20.5,55.5 parent: 2 - - uid: 37639 + - uid: 37479 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-32.5 parent: 2 - - uid: 37640 + - uid: 37480 components: - type: Transform pos: -60.5,-36.5 parent: 2 - - uid: 37641 + - uid: 37481 components: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 37642 + - uid: 37482 components: - type: Transform pos: -61.5,-38.5 parent: 2 - - uid: 37643 + - uid: 37483 components: - type: Transform pos: -65.5,-32.5 parent: 2 - - uid: 37644 + - uid: 37484 components: - type: Transform pos: -69.5,-38.5 parent: 2 - - uid: 37645 + - uid: 37485 components: - type: Transform pos: -66.5,-38.5 parent: 2 - - uid: 37646 + - uid: 37486 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 37647 + - uid: 37487 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 37648 + - uid: 37488 components: - type: Transform pos: -63.5,-38.5 parent: 2 - - uid: 37649 + - uid: 37489 components: - type: Transform pos: -60.5,-38.5 parent: 2 - - uid: 37650 + - uid: 37490 components: - type: Transform pos: -60.5,-37.5 parent: 2 - - uid: 37651 + - uid: 37491 components: - type: Transform pos: -60.5,-32.5 parent: 2 - - uid: 37652 + - uid: 37492 components: - type: Transform pos: -67.5,-32.5 parent: 2 - - uid: 37653 + - uid: 37493 components: - type: Transform pos: -71.5,-38.5 parent: 2 - - uid: 37654 + - uid: 37494 components: - type: Transform pos: -70.5,-38.5 parent: 2 - - uid: 37655 + - uid: 37495 components: - type: Transform pos: -68.5,-32.5 parent: 2 - - uid: 37656 + - uid: 37496 components: - type: Transform pos: -66.5,-32.5 parent: 2 - - uid: 37657 + - uid: 37497 components: - type: Transform pos: -60.5,-33.5 parent: 2 - - uid: 37658 + - uid: 37498 components: - type: Transform pos: -64.5,-38.5 parent: 2 - - uid: 37659 + - uid: 37499 components: - type: Transform pos: -70.5,-32.5 parent: 2 - - uid: 37661 + - uid: 37500 components: - type: Transform pos: -65.5,-38.5 parent: 2 - - uid: 37662 + - uid: 37501 components: - type: Transform pos: -68.5,-38.5 parent: 2 - - uid: 37663 + - uid: 37502 components: - type: Transform pos: -23.5,-70.5 parent: 2 - - uid: 37664 + - uid: 37503 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 37665 + - uid: 37504 components: - type: Transform pos: -28.5,-71.5 parent: 2 - - uid: 37666 + - uid: 37505 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 37667 + - uid: 37506 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-34.5 parent: 2 - - uid: 37668 + - uid: 37507 components: - type: Transform pos: -58.5,-46.5 parent: 2 - - uid: 37669 + - uid: 37508 components: - type: Transform pos: -69.5,-31.5 parent: 2 - - uid: 37670 + - uid: 37509 components: - type: Transform pos: -110.5,32.5 parent: 2 - - uid: 37671 + - uid: 37510 components: - type: Transform pos: -110.5,31.5 parent: 2 - - uid: 37672 + - uid: 37511 components: - type: Transform pos: -113.5,30.5 parent: 2 - - uid: 37673 + - uid: 37512 components: - type: Transform pos: -111.5,30.5 parent: 2 - - uid: 37674 + - uid: 37513 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-27.5 parent: 2 - - uid: 37675 + - uid: 37514 components: - type: Transform pos: 40.5,-36.5 parent: 2 - - uid: 37676 + - uid: 37515 components: - type: Transform pos: 42.5,-47.5 parent: 2 - - uid: 40836 + - uid: 40663 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,6.5 - parent: 38584 - - uid: 40837 + parent: 38411 + - uid: 40664 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 38584 - - uid: 40838 + parent: 38411 + - uid: 40665 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 - parent: 38584 - - uid: 40839 + parent: 38411 + - uid: 40666 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,8.5 - parent: 38584 - - uid: 40840 + parent: 38411 + - uid: 40667 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 38584 - - uid: 40841 + parent: 38411 + - uid: 40668 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,6.5 - parent: 38584 - - uid: 40842 + parent: 38411 + - uid: 40669 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,7.5 - parent: 38584 - - uid: 40843 + parent: 38411 + - uid: 40670 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,3.5 - parent: 38584 - - uid: 40844 + parent: 38411 + - uid: 40671 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,11.5 - parent: 38584 - - uid: 40845 + parent: 38411 + - uid: 40672 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,0.5 - parent: 38584 - - uid: 40846 + parent: 38411 + - uid: 40673 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-0.5 - parent: 38584 - - uid: 40847 + parent: 38411 + - uid: 40674 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,10.5 - parent: 38584 - - uid: 40848 + parent: 38411 + - uid: 40675 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,8.5 - parent: 38584 - - uid: 40849 + parent: 38411 + - uid: 40676 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,9.5 - parent: 38584 - - uid: 40850 + parent: 38411 + - uid: 40677 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,10.5 - parent: 38584 - - uid: 40851 + parent: 38411 + - uid: 40678 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,7.5 - parent: 38584 - - uid: 40852 + parent: 38411 + - uid: 40679 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,9.5 - parent: 38584 - - uid: 40853 + parent: 38411 + - uid: 40680 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,1.5 - parent: 38584 - - uid: 40854 + parent: 38411 + - uid: 40681 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,0.5 - parent: 38584 - - uid: 40855 + parent: 38411 + - uid: 40682 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,3.5 - parent: 38584 - - uid: 40856 + parent: 38411 + - uid: 40683 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,2.5 - parent: 38584 - - uid: 40857 + parent: 38411 + - uid: 40684 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,10.5 - parent: 38584 - - uid: 40858 + parent: 38411 + - uid: 40685 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,2.5 - parent: 38584 - - uid: 40859 + parent: 38411 + - uid: 40686 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-0.5 - parent: 38584 - - uid: 40860 + parent: 38411 + - uid: 40687 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,3.5 - parent: 38584 - - uid: 40861 + parent: 38411 + - uid: 40688 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,8.5 - parent: 38584 - - uid: 40862 + parent: 38411 + - uid: 40689 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,7.5 - parent: 38584 - - uid: 40863 + parent: 38411 + - uid: 40690 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,0.5 - parent: 38584 - - uid: 40864 + parent: 38411 + - uid: 40691 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,11.5 - parent: 38584 - - uid: 40865 + parent: 38411 + - uid: 40692 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-0.5 - parent: 38584 - - uid: 40866 + parent: 38411 + - uid: 40693 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-0.5 - parent: 38584 - - uid: 40867 + parent: 38411 + - uid: 40694 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,1.5 - parent: 38584 - - uid: 40868 + parent: 38411 + - uid: 40695 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,2.5 - parent: 38584 - - uid: 40869 + parent: 38411 + - uid: 40696 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,9.5 - parent: 38584 - - uid: 40870 + parent: 38411 + - uid: 40697 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-0.5 - parent: 38584 - - uid: 40871 + parent: 38411 + - uid: 40698 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-0.5 - parent: 38584 - - uid: 40872 + parent: 38411 + - uid: 40699 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 - parent: 38584 - - uid: 40873 + parent: 38411 + - uid: 40700 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-0.5 - parent: 38584 - - uid: 40874 + parent: 38411 + - uid: 40701 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-0.5 - parent: 38584 - - uid: 40875 + parent: 38411 + - uid: 40702 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,8.5 - parent: 38584 - - uid: 40876 + parent: 38411 + - uid: 40703 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,7.5 - parent: 38584 - - uid: 40877 + parent: 38411 + - uid: 40704 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,7.5 - parent: 38584 + parent: 38411 - proto: WallSolidRust entities: - - uid: 37677 + - uid: 37516 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-62.5 parent: 2 - - uid: 37678 + - uid: 37517 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-69.5 parent: 2 - - uid: 37679 + - uid: 37518 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-59.5 parent: 2 - - uid: 37680 + - uid: 37519 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-39.5 parent: 2 - - uid: 37681 + - uid: 37520 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-68.5 parent: 2 - - uid: 37682 + - uid: 37521 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-68.5 parent: 2 - - uid: 37683 + - uid: 37522 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-61.5 parent: 2 - - uid: 37684 + - uid: 37523 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-68.5 parent: 2 - - uid: 37685 + - uid: 37524 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-68.5 parent: 2 - - uid: 37686 + - uid: 37525 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-77.5 parent: 2 - - uid: 37687 + - uid: 37526 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-74.5 parent: 2 - - uid: 37688 + - uid: 37527 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-73.5 parent: 2 - - uid: 37689 + - uid: 37528 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-76.5 parent: 2 - - uid: 37690 + - uid: 37529 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-76.5 parent: 2 - - uid: 37691 + - uid: 37530 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-63.5 parent: 2 - - uid: 37692 + - uid: 37531 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-58.5 parent: 2 - - uid: 37693 + - uid: 37532 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-58.5 parent: 2 - - uid: 37694 + - uid: 37533 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-72.5 parent: 2 - - uid: 37695 + - uid: 37534 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-71.5 parent: 2 - - uid: 37696 + - uid: 37535 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-79.5 parent: 2 - - uid: 37697 + - uid: 37536 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-68.5 parent: 2 - - uid: 37698 + - uid: 37537 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-72.5 parent: 2 - - uid: 37699 + - uid: 37538 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-67.5 parent: 2 - - uid: 37700 + - uid: 37539 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-67.5 parent: 2 - - uid: 37701 + - uid: 37540 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-41.5 parent: 2 - - uid: 37702 + - uid: 37541 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 - - uid: 37703 + - uid: 37542 components: - type: Transform pos: -55.5,-47.5 parent: 2 - - uid: 37704 + - uid: 37543 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 - - uid: 37705 + - uid: 37544 components: - type: Transform pos: -53.5,-38.5 parent: 2 - - uid: 37706 + - uid: 37545 components: - type: Transform pos: -52.5,-34.5 parent: 2 - - uid: 37707 + - uid: 37546 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-41.5 parent: 2 - - uid: 37708 + - uid: 37547 components: - type: Transform pos: -47.5,-36.5 parent: 2 - - uid: 37709 + - uid: 37548 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 37710 + - uid: 37549 components: - type: Transform pos: -51.5,-34.5 parent: 2 - - uid: 37711 + - uid: 37550 components: - type: Transform pos: -45.5,-38.5 parent: 2 - - uid: 37712 + - uid: 37551 components: - type: Transform pos: -46.5,-36.5 parent: 2 - - uid: 37713 + - uid: 37552 components: - type: Transform pos: -45.5,-39.5 parent: 2 - - uid: 37714 + - uid: 37553 components: - type: Transform pos: -50.5,-38.5 parent: 2 - - uid: 37715 + - uid: 37554 components: - type: Transform pos: -46.5,-38.5 parent: 2 - - uid: 37716 + - uid: 37555 components: - type: Transform pos: -53.5,-37.5 parent: 2 - - uid: 37717 + - uid: 37556 components: - type: Transform pos: -46.5,-35.5 parent: 2 - - uid: 37718 + - uid: 37557 components: - type: Transform pos: -60.5,-45.5 parent: 2 - - uid: 37719 + - uid: 37558 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-41.5 parent: 2 - - uid: 37720 + - uid: 37559 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-41.5 parent: 2 - - uid: 37721 + - uid: 37560 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-41.5 parent: 2 - - uid: 37722 + - uid: 37561 components: - type: Transform pos: -56.5,-43.5 parent: 2 - - uid: 37723 + - uid: 37562 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-42.5 parent: 2 - - uid: 37724 + - uid: 37563 components: - type: Transform pos: -60.5,-40.5 parent: 2 - - uid: 37725 + - uid: 37564 components: - type: Transform pos: -60.5,-46.5 parent: 2 - - uid: 37726 + - uid: 37565 components: - type: Transform pos: -56.5,-44.5 parent: 2 - - uid: 37727 + - uid: 37566 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 - - uid: 37728 + - uid: 37567 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 - - uid: 37729 + - uid: 37568 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-46.5 parent: 2 - - uid: 37730 + - uid: 37569 components: - type: Transform pos: -56.5,-34.5 parent: 2 - - uid: 37731 + - uid: 37570 components: - type: Transform pos: -56.5,-46.5 parent: 2 - - uid: 37732 + - uid: 37571 components: - type: Transform pos: -56.5,-39.5 parent: 2 - - uid: 37733 + - uid: 37572 components: - type: Transform pos: -56.5,-38.5 parent: 2 - - uid: 37734 + - uid: 37573 components: - type: Transform pos: -56.5,-33.5 parent: 2 - - uid: 37735 + - uid: 37574 components: - type: Transform pos: -56.5,-42.5 parent: 2 - - uid: 37736 + - uid: 37575 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,8.5 parent: 2 - - uid: 37737 + - uid: 37576 components: - type: Transform pos: -36.5,-74.5 parent: 2 - proto: WardrobeAtmospherics entities: - - uid: 15214 + - uid: 15158 components: - type: Transform pos: -63.5,56.5 @@ -275074,15 +275142,15 @@ entities: showEnts: False occludes: True ents: - - 15216 - - 15215 - - 15218 - - 15217 + - 15160 + - 15159 + - 15162 + - 15161 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15219 + - uid: 15163 components: - type: Transform pos: -65.5,56.5 @@ -275111,15 +275179,15 @@ entities: showEnts: False occludes: True ents: - - 15221 - - 15222 - - 15220 - - 15223 + - 15165 + - 15166 + - 15164 + - 15167 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15224 + - uid: 15168 components: - type: Transform pos: -64.5,56.5 @@ -275148,17 +275216,17 @@ entities: showEnts: False occludes: True ents: - - 15226 - - 15225 - - 15228 - - 15227 + - 15170 + - 15169 + - 15172 + - 15171 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobeBotanistFilled entities: - - uid: 37738 + - uid: 37577 components: - type: Transform pos: -38.5,46.5 @@ -275169,8 +275237,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -275183,7 +275251,7 @@ entities: - 0 - proto: WardrobeChemistryFilled entities: - - uid: 37739 + - uid: 37578 components: - type: Transform pos: -39.5,54.5 @@ -275233,7 +275301,7 @@ entities: isPlaceable: True - proto: WardrobeGreenFilled entities: - - uid: 37740 + - uid: 37579 components: - type: Transform pos: 42.5,-13.5 @@ -275258,7 +275326,7 @@ entities: - 0 - proto: WardrobeGreyFilled entities: - - uid: 37741 + - uid: 37580 components: - type: Transform pos: 42.5,-15.5 @@ -275283,7 +275351,7 @@ entities: - 0 - proto: WardrobeMedicalDoctor entities: - - uid: 37742 + - uid: 37581 components: - type: Transform pos: 12.5,-48.5 @@ -275306,7 +275374,7 @@ entities: - 0 - 0 - 0 - - uid: 37743 + - uid: 37582 components: - type: Transform pos: 11.5,-48.5 @@ -275329,14 +275397,14 @@ entities: - 0 - 0 - 0 - - uid: 37744 + - uid: 37583 components: - type: Transform pos: 40.5,-38.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 37745 + - uid: 37584 components: - type: Transform pos: 42.5,-10.5 @@ -275359,7 +275427,7 @@ entities: - 0 - 0 - 0 - - uid: 37746 + - uid: 37585 components: - type: Transform pos: 42.5,-11.5 @@ -275382,14 +275450,14 @@ entities: - 0 - 0 - 0 - - uid: 37747 + - uid: 37586 components: - type: Transform pos: -59.5,-38.5 parent: 2 - proto: WardrobePinkFilled entities: - - uid: 14947 + - uid: 14888 components: - type: Transform pos: -57.500004,-47.5 @@ -275418,16 +275486,16 @@ entities: showEnts: False occludes: True ents: - - 14948 - - 14950 - - 14949 + - 14889 + - 14891 + - 14890 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePrisonFilled entities: - - uid: 15241 + - uid: 15185 components: - type: Transform pos: 72.5,2.5 @@ -275456,15 +275524,15 @@ entities: showEnts: False occludes: True ents: - - 15245 - - 15244 - - 15243 - - 15242 + - 15189 + - 15188 + - 15187 + - 15186 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15246 + - uid: 15190 components: - type: Transform pos: 72.5,3.5 @@ -275493,15 +275561,15 @@ entities: showEnts: False occludes: True ents: - - 15250 - - 15249 - - 15248 - - 15247 + - 15194 + - 15193 + - 15192 + - 15191 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 29168 + - uid: 28966 components: - type: Transform pos: 87.5,-4.5 @@ -275530,22 +275598,22 @@ entities: showEnts: False occludes: True ents: - - 29169 + - 28967 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 37748 + - uid: 37587 components: - type: Transform pos: 39.5,1.5 parent: 2 - - uid: 37749 + - uid: 37588 components: - type: Transform pos: 39.5,11.5 parent: 2 - - uid: 37750 + - uid: 37589 components: - type: Transform pos: 43.5,1.5 @@ -275568,7 +275636,7 @@ entities: - 0 - 0 - 0 - - uid: 37751 + - uid: 37590 components: - type: Transform pos: 43.5,13.5 @@ -275591,7 +275659,7 @@ entities: - 0 - 0 - 0 - - uid: 37752 + - uid: 37591 components: - type: Transform pos: 43.5,9.5 @@ -275614,7 +275682,7 @@ entities: - 0 - 0 - 0 - - uid: 37753 + - uid: 37592 components: - type: Transform pos: 8.5,-77.5 @@ -275637,7 +275705,7 @@ entities: - 0 - 0 - 0 - - uid: 37754 + - uid: 37593 components: - type: Transform pos: 8.5,-73.5 @@ -275660,12 +275728,12 @@ entities: - 0 - 0 - 0 - - uid: 37755 + - uid: 37594 components: - type: Transform pos: 79.5,-4.5 parent: 2 - - uid: 37756 + - uid: 37595 components: - type: Transform pos: 83.5,-4.5 @@ -275688,69 +275756,69 @@ entities: - 0 - 0 - 0 - - uid: 40878 + - uid: 40705 components: - type: Transform pos: -22.5,2.5 - parent: 38584 - - uid: 40879 + parent: 38411 + - uid: 40706 components: - type: Transform pos: -16.5,8.5 - parent: 38584 - - uid: 40880 + parent: 38411 + - uid: 40707 components: - type: Transform pos: -16.5,2.5 - parent: 38584 - - uid: 40881 + parent: 38411 + - uid: 40708 components: - type: Transform pos: -22.5,8.5 - parent: 38584 - - uid: 40882 + parent: 38411 + - uid: 40709 components: - type: Transform pos: -19.5,8.5 - parent: 38584 - - uid: 40883 + parent: 38411 + - uid: 40710 components: - type: Transform pos: -19.5,2.5 - parent: 38584 - - uid: 40884 + parent: 38411 + - uid: 40711 components: - type: Transform pos: -2.5,-9.5 - parent: 38584 - - uid: 40885 + parent: 38411 + - uid: 40712 components: - type: Transform pos: -2.5,-10.5 - parent: 38584 - - uid: 40886 + parent: 38411 + - uid: 40713 components: - type: Transform pos: -2.5,-8.5 - parent: 38584 - - uid: 40887 + parent: 38411 + - uid: 40714 components: - type: Transform pos: -2.5,-7.5 - parent: 38584 + parent: 38411 - proto: WardrobeSalvageFilled entities: - - uid: 37757 + - uid: 37596 components: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 37758 + - uid: 37597 components: - type: Transform pos: 19.5,30.5 parent: 2 - - uid: 37759 + - uid: 37598 components: - type: Transform pos: 19.5,31.5 @@ -275775,7 +275843,7 @@ entities: - 0 - proto: WardrobeVirology entities: - - uid: 37760 + - uid: 37599 components: - type: Transform pos: 43.5,-63.5 @@ -275800,7 +275868,7 @@ entities: - 0 - proto: WardrobeWhiteFilled entities: - - uid: 37761 + - uid: 37600 components: - type: Transform pos: 42.5,-14.5 @@ -275825,7 +275893,7 @@ entities: - 0 - proto: WarningCO2 entities: - - uid: 37762 + - uid: 37601 components: - type: Transform rot: 1.5707973450558423 rad @@ -275833,33 +275901,33 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 37763 + - uid: 37602 components: - type: Transform rot: 1.5707973450558423 rad pos: -73.49999,37.5 parent: 2 - - uid: 40888 + - uid: 40715 components: - type: Transform pos: 14.5,1.5 - parent: 38584 + parent: 38411 - proto: WarningO2 entities: - - uid: 37764 + - uid: 37603 components: - type: Transform rot: 1.5707973450558423 rad pos: -73.50001,33.5 parent: 2 - - uid: 40889 + - uid: 40716 components: - type: Transform pos: 14.5,3.5 - parent: 38584 + parent: 38411 - proto: WarningPlasma entities: - - uid: 37765 + - uid: 37604 components: - type: Transform rot: 1.5707973450558423 rad @@ -275867,20 +275935,20 @@ entities: parent: 2 - proto: WarningWaste entities: - - uid: 37766 + - uid: 37605 components: - type: Transform rot: 1.5707973450558423 rad pos: -72.49999,19.5 parent: 2 - - uid: 40890 + - uid: 40717 components: - type: Transform pos: 14.5,5.5 - parent: 38584 + parent: 38411 - proto: WarpPoint entities: - - uid: 37767 + - uid: 37606 components: - type: MetaData name: Атмос - Баня @@ -275889,7 +275957,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Баня - - uid: 37768 + - uid: 37607 components: - type: MetaData name: Медотсек - Психолог @@ -275897,7 +275965,7 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-50.5 parent: 2 - - uid: 37769 + - uid: 37608 components: - type: MetaData name: СБ - Зал брифинга @@ -275906,7 +275974,7 @@ entities: parent: 2 - type: WarpPoint location: СБ - Зал брифинга - - uid: 37770 + - uid: 37609 components: - type: MetaData name: Инженерный - Верфь @@ -275915,7 +275983,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Верфь - - uid: 37771 + - uid: 37610 components: - type: MetaData name: Атмос - Стойка ресепшн @@ -275924,7 +275992,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Стойка ресепшн - - uid: 37772 + - uid: 37611 components: - type: MetaData name: Тех тоннели - Свободный офис Север @@ -275933,7 +276001,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Свободный офис Север - - uid: 37773 + - uid: 37612 components: - type: MetaData name: Тех тоннели - Сад @@ -275942,7 +276010,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Сад - - uid: 37774 + - uid: 37613 components: - type: MetaData name: Дормы - Фитнес @@ -275951,7 +276019,7 @@ entities: parent: 2 - type: WarpPoint location: Дормы - Фитнес - - uid: 37775 + - uid: 37614 components: - type: MetaData name: Снабжение - Центральная @@ -275960,7 +276028,7 @@ entities: parent: 2 - type: WarpPoint location: Снабжение - Центральная - - uid: 37776 + - uid: 37615 components: - type: MetaData name: Инженерный - Экипировка @@ -275969,7 +276037,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Экипировка - - uid: 37777 + - uid: 37616 components: - type: MetaData name: Библиотека - Задняя комната @@ -275978,7 +276046,7 @@ entities: parent: 2 - type: WarpPoint location: Библиотека - Задняя комната - - uid: 37778 + - uid: 37617 components: - type: MetaData name: Научный - Исследование и хранилище токсинов @@ -275987,7 +276055,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Исследование и хранилище токсинов - - uid: 37779 + - uid: 37618 components: - type: MetaData name: Научный - Заброшенная ксенобиология @@ -275996,7 +276064,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Заброшенная ксенобиология - - uid: 37780 + - uid: 37619 components: - type: MetaData name: Сервис - Репортеры @@ -276005,7 +276073,7 @@ entities: parent: 2 - type: WarpPoint location: Сервис - Репортеры - - uid: 37781 + - uid: 37620 components: - type: MetaData name: Библиотека - Центральный зал @@ -276014,7 +276082,7 @@ entities: parent: 2 - type: WarpPoint location: Библиотека - Центральный зал - - uid: 37782 + - uid: 37621 components: - type: MetaData name: Инженерный - Техническое помещение @@ -276023,7 +276091,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Техническое помещение - - uid: 37783 + - uid: 37622 components: - type: MetaData name: СБ - Камеры @@ -276032,7 +276100,7 @@ entities: parent: 2 - type: WarpPoint location: СБ - Камеры - - uid: 37784 + - uid: 37623 components: - type: MetaData name: Тех тоннели - Галактоаркада @@ -276041,7 +276109,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Галактоаркада - - uid: 37785 + - uid: 37624 components: - type: MetaData name: Атмос - Север @@ -276050,7 +276118,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Север - - uid: 37786 + - uid: 37625 components: - type: MetaData name: Тех тоннели - Вторичная верфь @@ -276059,7 +276127,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Вторичная верфь - - uid: 37787 + - uid: 37626 components: - type: MetaData name: Научный - Холл @@ -276068,7 +276136,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Холл - - uid: 37788 + - uid: 37627 components: - type: MetaData name: Прибытие - Центральное @@ -276077,7 +276145,7 @@ entities: parent: 2 - type: WarpPoint location: Прибытие - Центральное - - uid: 37789 + - uid: 37628 components: - type: MetaData name: Инженерный - Генератор теслы @@ -276086,7 +276154,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Генератор теслы - - uid: 37790 + - uid: 37629 components: - type: MetaData name: Инженерный - Основная @@ -276095,7 +276163,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Основная - - uid: 37791 + - uid: 37630 components: - type: MetaData name: Научный - Заброшенная комната @@ -276104,40 +276172,40 @@ entities: parent: 2 - type: WarpPoint location: Научный - Заброшенная комната - - uid: 37792 + - uid: 37631 components: - type: Transform pos: 24.5,14.5 parent: 2 - type: WarpPoint location: Командование - Хранилище - - uid: 38581 + - uid: 38408 components: - type: MetaData name: СБ - Шаттл "Стервятник" - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 - parent: 38484 + parent: 38311 - type: WarpPoint location: СБ - Шаттл "Стервятник" - proto: WarpPointBombing entities: - - uid: 37793 + - uid: 37632 components: - type: Transform pos: 22.5,13.5 parent: 2 - type: WarpPoint location: Хранилище - - uid: 37794 + - uid: 37633 components: - type: Transform pos: 8.5,-38.5 parent: 2 - type: WarpPoint location: Клонёрка - - uid: 37795 + - uid: 37634 components: - type: MetaData name: Мостик @@ -276146,7 +276214,7 @@ entities: parent: 2 - type: WarpPoint location: Мостик - - uid: 37796 + - uid: 37635 components: - type: MetaData name: РИТЭГ @@ -276155,7 +276223,7 @@ entities: parent: 2 - type: WarpPoint location: РИТЭГ - - uid: 37797 + - uid: 37636 components: - type: MetaData name: ЕВА @@ -276164,7 +276232,7 @@ entities: parent: 2 - type: WarpPoint location: ЕВА - - uid: 37798 + - uid: 37637 components: - type: MetaData name: Оружейка @@ -276175,178 +276243,193 @@ entities: location: Оружейка - proto: WaterCooler entities: - - uid: 37799 + - uid: 37638 components: - type: Transform pos: -48.5,-39.5 parent: 2 - - uid: 37800 + - uid: 37639 components: - type: Transform pos: -25.5,43.5 parent: 2 - - uid: 37801 + - uid: 37640 components: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 37802 + - uid: 37641 components: - type: Transform pos: 18.5,-41.5 parent: 2 - - uid: 37803 + - uid: 37642 components: - type: Transform pos: -60.5,15.5 parent: 2 - - uid: 37804 + - uid: 37643 components: - type: Transform pos: 5.5,33.5 parent: 2 - - uid: 37805 + - uid: 37644 components: - type: Transform pos: 18.5,-49.5 parent: 2 - - uid: 37806 + - uid: 37645 components: - type: Transform pos: 41.5,6.5 parent: 2 - - uid: 37807 + - uid: 37646 components: - type: Transform pos: -22.5,-41.5 parent: 2 - - uid: 37808 + - uid: 37647 components: - type: Transform pos: -29.5,-10.5 parent: 2 - - uid: 37809 + - uid: 37648 components: - type: Transform pos: -38.5,63.5 parent: 2 - - uid: 40891 + - uid: 40718 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 40892 + parent: 38411 + - uid: 40719 components: - type: Transform pos: -20.5,30.5 - parent: 38584 + parent: 38411 - proto: WaterTankFull entities: - - uid: 37810 + - uid: 30666 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 37649 components: - type: Transform pos: -39.5,35.5 parent: 2 - - uid: 37811 + - uid: 37650 components: - type: Transform pos: -35.5,55.5 parent: 2 - - uid: 37812 + - uid: 37651 components: - type: Transform pos: -60.5,-14.5 parent: 2 - - uid: 37813 + - uid: 37652 components: - type: Transform pos: -51.5,-17.5 parent: 2 - - uid: 37814 + - uid: 37653 components: - type: Transform pos: 7.5,54.5 parent: 2 - - uid: 37815 + - uid: 37654 components: - type: Transform pos: 36.5,28.5 parent: 2 - - uid: 37816 + - uid: 37655 components: - type: Transform pos: 19.5,-55.5 parent: 2 - - uid: 37817 + - uid: 37656 components: - type: Transform pos: -58.5,42.5 parent: 2 - - uid: 37818 + - uid: 37657 components: - type: Transform pos: -29.5,61.5 parent: 2 - - uid: 37819 + - uid: 37658 components: - type: Transform pos: 23.5,54.5 parent: 2 - - uid: 37820 + - uid: 37659 components: - type: Transform pos: -77.5,-31.5 parent: 2 - - uid: 37821 + - uid: 37660 components: - type: Transform pos: -35.5,45.5 parent: 2 - - uid: 37822 + - uid: 37661 components: - type: Transform pos: 0.5,43.5 parent: 2 - - uid: 37823 + - uid: 37662 components: - type: Transform pos: -46.5,-21.5 parent: 2 - - uid: 37824 + - uid: 37663 components: - type: Transform pos: -12.5,-62.5 parent: 2 - - uid: 37825 + - uid: 37664 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - uid: 37826 + - uid: 37665 components: - type: Transform pos: -27.5,15.499999 parent: 2 + - uid: 38307 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 37827 + - uid: 15678 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 37666 components: - type: Transform pos: 97.50001,5.5 parent: 2 - - uid: 37828 + - uid: 37667 components: - type: Transform pos: -30.5,55.5 parent: 2 - proto: WaterVaporCanister entities: - - uid: 37829 + - uid: 37668 components: - type: Transform pos: -61.5,54.5 parent: 2 - - uid: 37830 + - uid: 37669 components: - type: Transform anchored: True @@ -276354,24 +276437,24 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 37831 + - uid: 37670 components: - type: Transform pos: -59.5,56.5 parent: 2 - - uid: 37832 + - uid: 37671 components: - type: Transform pos: -27.5,-50.5 parent: 2 - - uid: 37833 + - uid: 37672 components: - type: Transform pos: -70.5,45.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 37834 + - uid: 37673 components: - type: Transform pos: 56.5,13.5 @@ -276396,17 +276479,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37835 + - uid: 37674 components: - type: Transform pos: -21.5,0.5 parent: 2 - - uid: 37836 + - uid: 37675 components: - type: Transform pos: -34.5,-42.5 parent: 2 - - uid: 37837 + - uid: 37676 components: - type: Transform pos: 50.5,6.5 @@ -276431,7 +276514,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37838 + - uid: 37677 components: - type: Transform pos: 40.5,23.5 @@ -276456,7 +276539,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37839 + - uid: 37678 components: - type: Transform pos: 58.5,13.5 @@ -276481,17 +276564,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37840 + - uid: 37679 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 37841 + - uid: 37680 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 37842 + - uid: 37681 components: - type: Transform pos: 14.5,7.5 @@ -276520,7 +276603,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37843 + - uid: 37682 components: - type: Transform pos: -8.5,-0.5 @@ -276549,13 +276632,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37844 + - uid: 37683 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 37845 + - uid: 37684 components: - type: Transform pos: 12.5,0.5 @@ -276584,13 +276667,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37846 + - uid: 37685 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-31.5 parent: 2 - - uid: 37847 + - uid: 37686 components: - type: Transform pos: -5.5,12.5 @@ -276621,7 +276704,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 37848 + - uid: 37687 components: - type: Transform pos: 6.5,-16.5 @@ -276646,18 +276729,18 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37849 + - uid: 37688 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 37850 + - uid: 37689 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 37851 + - uid: 37690 components: - type: Transform pos: 4.5,12.5 @@ -276688,73 +276771,73 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 37852 + - uid: 37691 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 - - uid: 37853 + - uid: 37692 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,8.5 parent: 2 - - uid: 37854 + - uid: 37693 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,22.5 parent: 2 - - uid: 37855 + - uid: 37694 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-8.5 parent: 2 - - uid: 40893 + - uid: 40720 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 - parent: 38584 + parent: 38411 - proto: WeaponDisabler entities: - - uid: 37856 + - uid: 37695 components: - type: Transform pos: 50.441193,11.60602 parent: 2 - - uid: 37857 + - uid: 37696 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.234957,-27.379057 parent: 2 - - uid: 37858 + - uid: 37697 components: - type: Transform pos: -45.51563,8.636579 parent: 2 - - uid: 37859 + - uid: 37698 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.41266,10.716633 parent: 2 - - uid: 40894 + - uid: 40721 components: - type: Transform pos: 1.483573,-3.8929749 - parent: 38584 + parent: 38411 - proto: WeaponDisablerPractice entities: - - uid: 37860 + - uid: 37699 components: - type: Transform pos: 58.486435,16.114597 parent: 2 - - uid: 37861 + - uid: 37700 components: - type: Transform rot: 3.141592653589793 rad @@ -276762,13 +276845,13 @@ entities: parent: 2 - proto: WeaponDisablerSMG entities: - - uid: 37862 + - uid: 37701 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 61.56592,9.69966 parent: 2 - - uid: 37863 + - uid: 37702 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276783,19 +276866,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37864 + - uid: 37703 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.51477,9.454613 parent: 2 - - uid: 37865 + - uid: 37704 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.539234,9.454613 parent: 2 - - uid: 37866 + - uid: 37705 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276803,132 +276886,132 @@ entities: parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 37867 + - uid: 37706 components: - type: Transform pos: -34.528366,-42.458706 parent: 2 - - uid: 37868 + - uid: 37707 components: - type: Transform pos: 58.490166,18.333502 parent: 2 - - uid: 37869 + - uid: 37708 components: - type: Transform pos: 58.470814,18.520847 parent: 2 - proto: WeaponPistolCobra entities: - - uid: 37870 + - uid: 37709 components: - type: Transform pos: 25.5,67.5 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 37871 + - uid: 37710 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.516697,7.5344276 parent: 2 - - uid: 37872 + - uid: 37711 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.50446,8.512876 parent: 2 - - uid: 37873 + - uid: 37712 components: - type: Transform pos: 58.48871,17.219824 parent: 2 - - uid: 37874 + - uid: 37713 components: - type: Transform pos: 58.470924,17.486412 parent: 2 - - uid: 37875 + - uid: 37714 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 37876 + - uid: 37715 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 37877 + - uid: 37716 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 37878 + - uid: 37717 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 37879 + - uid: 37718 components: - type: Transform pos: 58.475845,17.747644 parent: 2 - - uid: 40895 + - uid: 40722 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.62985,-2.677948 - parent: 38584 + parent: 38411 - proto: WeaponPistolViper entities: - - uid: 40896 + - uid: 40723 components: - type: Transform rot: 3.141592653589793 rad pos: 12.13895,19.323975 - parent: 38584 + parent: 38411 - proto: WeaponRevolverMateba entities: - - uid: 37881 + - uid: 37719 components: - type: Transform pos: 36.47151,18.549223 parent: 2 - proto: WeaponRifleAk entities: - - uid: 37882 + - uid: 37720 components: - type: Transform pos: 40.57007,17.532423 parent: 2 - proto: WeaponRifleLecter entities: - - uid: 37883 + - uid: 37721 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 65.5592,8.563683 parent: 2 - - uid: 37884 + - uid: 37722 components: - type: Transform pos: 65.5,9.5 parent: 2 - - uid: 37885 + - uid: 37723 components: - type: Transform pos: 65.5,9.5 parent: 2 - proto: WeaponShotgunDoubleBarreled entities: - - uid: 37886 + - uid: 37724 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.413765,9.52802 parent: 2 - - uid: 37887 + - uid: 37725 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276936,14 +277019,14 @@ entities: parent: 2 - proto: WeaponShotgunDoubleBarreledRubber entities: - - uid: 1648 + - uid: 1652 components: - type: Transform - parent: 1645 + parent: 1649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37888 + - uid: 37726 components: - type: Transform rot: 1.5707963267948966 rad @@ -276951,171 +277034,171 @@ entities: parent: 2 - proto: WeaponShotgunEnforcer entities: - - uid: 15016 + - uid: 14957 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37889 + - uid: 37727 components: - type: Transform pos: 67.4812,8.740917 parent: 2 - - uid: 37890 + - uid: 37728 components: - type: Transform pos: 67.528076,8.490917 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 37891 + - uid: 37729 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.562634,8.421831 parent: 2 - - uid: 37892 + - uid: 37730 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.550396,8.519675 parent: 2 - - uid: 37893 + - uid: 37731 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.550396,8.556368 parent: 2 - - uid: 40897 + - uid: 40724 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.54236,-4.154785 - parent: 38584 - - uid: 40898 + parent: 38411 + - uid: 40725 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.776735,-4.17041 - parent: 38584 + parent: 38411 - proto: WeaponSubMachineGunDrozd entities: - - uid: 37894 + - uid: 37732 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 67.584465,9.4546175 parent: 2 - - uid: 37895 + - uid: 37733 components: - type: Transform pos: 65.5,7.5 parent: 2 - proto: WeaponTurretHostile entities: - - uid: 37896 + - uid: 37734 components: - type: Transform pos: 9.5,-79.5 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 37897 + - uid: 37735 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 37898 + - uid: 37736 components: - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 37899 + - uid: 37737 components: - type: Transform pos: -43.5,-38.5 parent: 2 - - uid: 37900 + - uid: 37738 components: - type: Transform pos: -114.5,50.5 parent: 2 - - uid: 37901 + - uid: 37739 components: - type: Transform pos: -122.5,50.5 parent: 2 - - uid: 37902 + - uid: 37740 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 37903 + - uid: 37741 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 37904 + - uid: 37742 components: - type: Transform pos: -113.5,26.5 parent: 2 - - uid: 37905 + - uid: 37743 components: - type: Transform pos: -118.5,17.5 parent: 2 - - uid: 37906 + - uid: 37744 components: - type: Transform pos: 48.5,-43.5 parent: 2 - - uid: 37907 + - uid: 37745 components: - type: Transform pos: -68.5,-34.5 parent: 2 - - uid: 37908 + - uid: 37746 components: - type: Transform pos: 52.5,-44.5 parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 37909 + - uid: 37747 components: - type: Transform pos: 67.5,7.5 parent: 2 - proto: WeaponWaterPistol entities: - - uid: 14922 + - uid: 14863 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Welder entities: - - uid: 37910 + - uid: 37748 components: - type: Transform pos: -78.332504,-9.199342 parent: 2 - - uid: 37911 + - uid: 37749 components: - type: Transform pos: 21.382963,54.46153 parent: 2 - - uid: 37912 + - uid: 37750 components: - type: Transform pos: 76.57189,8.456029 parent: 2 - - uid: 37913 + - uid: 37751 components: - type: Transform pos: 23.565264,57.53575 @@ -277124,135 +277207,135 @@ entities: canCollide: False - proto: WelderIndustrial entities: - - uid: 25299 + - uid: 37752 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.42271,-24.841988 parent: 2 - - uid: 37914 + - uid: 37753 components: - type: Transform pos: -47.602818,31.666988 parent: 2 - - uid: 37915 + - uid: 37754 components: - type: Transform pos: -75.5,10.5 parent: 2 - proto: WelderMini entities: - - uid: 37917 + - uid: 37755 components: - type: Transform pos: 13.165333,-14.091633 parent: 2 - - uid: 37918 + - uid: 37756 components: - type: Transform pos: 9.376167,-3.3592515 parent: 2 - proto: WeldingFuelTank entities: - - uid: 37919 + - uid: 37757 components: - type: Transform pos: -20.5,-62.5 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 37920 + - uid: 37758 components: - type: Transform pos: 9.5,88.5 parent: 2 - - uid: 37922 + - uid: 37759 components: - type: Transform pos: -22.5,25.5 parent: 2 - - uid: 37923 + - uid: 37760 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 37924 + - uid: 37761 components: - type: Transform pos: -29.5,60.5 parent: 2 - - uid: 37925 + - uid: 37762 components: - type: Transform pos: 20.5,-22.5 parent: 2 - - uid: 37926 + - uid: 37763 components: - type: Transform pos: 53.5,-29.5 parent: 2 - - uid: 37927 + - uid: 37764 components: - type: Transform pos: 56.5,-43.5 parent: 2 - - uid: 37928 + - uid: 37765 components: - type: Transform pos: -46.5,-17.5 parent: 2 - - uid: 37929 + - uid: 37766 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 37930 + - uid: 37767 components: - type: Transform pos: 22.5,54.5 parent: 2 - - uid: 37931 + - uid: 37768 components: - type: Transform pos: 36.5,32.5 parent: 2 - - uid: 37932 + - uid: 37769 components: - type: Transform pos: -41.5,-14.5 parent: 2 - - uid: 37933 + - uid: 37770 components: - type: Transform pos: -27.5,8.5 parent: 2 - - uid: 37934 + - uid: 37771 components: - type: Transform pos: -43.5,-42.5 parent: 2 - - uid: 37935 + - uid: 37772 components: - type: Transform pos: -28.5,-56.5 parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 37936 + - uid: 37773 components: - type: Transform pos: -78.5,9.5 parent: 2 - proto: WetFloorSign entities: - - uid: 37937 + - uid: 37774 components: - type: Transform pos: -0.45487064,31.574512 parent: 2 - type: Physics canCollide: False - - uid: 37938 + - uid: 37775 components: - type: Transform pos: 1.5470634,47.65113 @@ -277261,14 +277344,14 @@ entities: canCollide: False - proto: WheatSeeds entities: - - uid: 37939 + - uid: 37776 components: - type: Transform pos: -40.5,33.5 parent: 2 - proto: WhiteKnight entities: - - uid: 37921 + - uid: 37777 components: - type: MetaData name: Дон-Жуан @@ -277280,120 +277363,120 @@ entities: radius: 2 - proto: Windoor entities: - - uid: 37940 + - uid: 37778 components: - type: Transform pos: 96.5,6.5 parent: 2 - - uid: 37941 + - uid: 37779 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-34.5 parent: 2 - - uid: 37942 + - uid: 37780 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 37943 + - uid: 37781 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 37944 + - uid: 37782 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - uid: 37945 + - uid: 37783 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-34.5 parent: 2 - - uid: 37946 + - uid: 37784 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - - uid: 37947 + - uid: 37785 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,34.5 parent: 2 - - uid: 37948 + - uid: 37786 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 2 - - uid: 37949 + - uid: 37787 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,60.5 parent: 2 - - uid: 37950 + - uid: 37788 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 - - uid: 37951 + - uid: 37789 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-45.5 parent: 2 - - uid: 37952 + - uid: 37790 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-28.5 parent: 2 - - uid: 37953 + - uid: 37791 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-6.5 parent: 2 - - uid: 37954 + - uid: 37792 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-49.5 parent: 2 - - uid: 37955 + - uid: 37793 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-28.5 parent: 2 - - uid: 37956 + - uid: 37794 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,60.5 parent: 2 - - uid: 37957 + - uid: 37795 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-2.5 parent: 2 - - uid: 37958 + - uid: 37796 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,22.5 parent: 2 - - uid: 37959 + - uid: 37797 components: - type: Transform rot: 1.5707963267948966 rad @@ -277401,7 +277484,7 @@ entities: parent: 2 - proto: WindoorAssemblySecure entities: - - uid: 37960 + - uid: 37798 components: - type: Transform rot: 3.141592653589793 rad @@ -277409,51 +277492,51 @@ entities: parent: 2 - proto: WindoorBarLocked entities: - - uid: 37961 + - uid: 37799 components: - type: Transform pos: -2.5,41.5 parent: 2 - proto: WindoorCargoLocked entities: - - uid: 37962 + - uid: 37800 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,43.5 parent: 2 - - uid: 37963 + - uid: 37801 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,32.5 parent: 2 - - uid: 37964 + - uid: 37802 components: - type: Transform pos: 7.5,44.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 37965 + - uid: 37803 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,53.5 parent: 2 - - uid: 37966 + - uid: 37804 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,51.5 parent: 2 - - uid: 37967 + - uid: 37805 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 - - uid: 37968 + - uid: 37806 components: - type: Transform rot: -1.5707963267948966 rad @@ -277461,136 +277544,136 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 37969 + - uid: 37807 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,19.5 parent: 2 - - uid: 37970 + - uid: 37808 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-0.5 parent: 2 - - uid: 37971 + - uid: 37809 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-0.5 parent: 2 - - uid: 37972 + - uid: 37810 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-0.5 parent: 2 - - uid: 40899 + - uid: 40726 components: - type: Transform pos: -21.5,3.5 - parent: 38584 - - uid: 40900 + parent: 38411 + - uid: 40727 components: - type: Transform pos: -15.5,3.5 - parent: 38584 - - uid: 40901 + parent: 38411 + - uid: 40728 components: - type: Transform pos: -18.5,3.5 - parent: 38584 - - uid: 40902 + parent: 38411 + - uid: 40729 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,7.5 - parent: 38584 - - uid: 40903 + parent: 38411 + - uid: 40730 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,7.5 - parent: 38584 - - uid: 40904 + parent: 38411 + - uid: 40731 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 - parent: 38584 + parent: 38411 - proto: WindoorSecureArmoryLocked entities: - - uid: 37973 + - uid: 37811 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 37974 + - uid: 37812 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 37975 + - uid: 37813 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 37976 + - uid: 37814 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 - - uid: 37977 + - uid: 37815 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 37978 + - uid: 37816 components: - type: Transform pos: 62.5,7.5 parent: 2 - - uid: 37979 + - uid: 37817 components: - type: Transform pos: 66.5,7.5 parent: 2 - - uid: 37980 + - uid: 37818 components: - type: Transform pos: 69.5,8.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - - uid: 37981 + - uid: 37819 components: - type: Transform pos: -46.5,24.5 parent: 2 - - uid: 37982 + - uid: 37820 components: - type: Transform pos: -47.5,24.5 parent: 2 - - uid: 37983 + - uid: 37821 components: - type: Transform pos: -48.5,24.5 parent: 2 - - uid: 37984 + - uid: 37822 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 37985 + - uid: 37823 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - - uid: 37986 + - uid: 37824 components: - type: Transform rot: -1.5707963267948966 rad @@ -277598,19 +277681,19 @@ entities: parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 37987 + - uid: 37825 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 37988 + - uid: 37826 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-7.5 parent: 2 - - uid: 37989 + - uid: 37827 components: - type: Transform rot: 1.5707963267948966 rad @@ -277618,7 +277701,7 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 37990 + - uid: 37828 components: - type: Transform rot: 1.5707963267948966 rad @@ -277626,96 +277709,96 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 37991 + - uid: 37829 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-59.5 parent: 2 - - uid: 37992 + - uid: 37830 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-15.5 parent: 2 - - uid: 37993 + - uid: 37831 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,48.5 parent: 2 - - uid: 37994 + - uid: 37832 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,48.5 parent: 2 - - uid: 37995 + - uid: 37833 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-0.5 parent: 2 - - uid: 37996 + - uid: 37834 components: - type: Transform pos: 31.5,-2.5 parent: 2 - - uid: 37997 + - uid: 37835 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 2 - - uid: 37998 + - uid: 37836 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 2 - - uid: 37999 + - uid: 37837 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 - - uid: 38000 + - uid: 37838 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,14.5 parent: 2 - - uid: 38001 + - uid: 37839 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 - - uid: 38002 + - uid: 37840 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 - - uid: 38003 + - uid: 37841 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 - - uid: 38004 + - uid: 37842 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,1.5 parent: 2 - - uid: 38005 + - uid: 37843 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,45.5 parent: 2 - - uid: 38006 + - uid: 37844 components: - type: Transform rot: 3.141592653589793 rad @@ -277723,19 +277806,19 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 38007 + - uid: 37845 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,14.5 parent: 2 - - uid: 38008 + - uid: 37846 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,23.5 parent: 2 - - uid: 38009 + - uid: 37847 components: - type: Transform rot: 1.5707963267948966 rad @@ -277743,61 +277826,61 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 38010 + - uid: 37848 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - uid: 38011 + - uid: 37849 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-1.5 parent: 2 - - uid: 38012 + - uid: 37850 components: - type: Transform pos: -11.5,-1.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 38013 + - uid: 37851 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-33.5 parent: 2 - - uid: 38014 + - uid: 37852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-33.5 parent: 2 - - uid: 38015 + - uid: 37853 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 38016 + - uid: 37854 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 - - uid: 38017 + - uid: 37855 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-28.5 parent: 2 - - uid: 38018 + - uid: 37856 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - uid: 38019 + - uid: 37857 components: - type: Transform rot: 1.5707963267948966 rad @@ -277805,98 +277888,98 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 38020 + - uid: 37858 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 38021 + - uid: 37859 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 38022 + - uid: 37860 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 38023 + - uid: 37861 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-48.5 parent: 2 - - uid: 38024 + - uid: 37862 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 38025 + - uid: 37863 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 38026 + - uid: 37864 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-24.5 parent: 2 - - uid: 38027 + - uid: 37865 components: - type: Transform pos: -33.5,-25.5 parent: 2 - - uid: 38028 + - uid: 37866 components: - type: Transform pos: -37.5,-30.5 parent: 2 - - uid: 38029 + - uid: 37867 components: - type: Transform pos: -41.5,-30.5 parent: 2 - - uid: 38030 + - uid: 37868 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-34.5 parent: 2 - - uid: 38031 + - uid: 37869 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 - - uid: 38032 + - uid: 37870 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-27.5 parent: 2 - - uid: 38033 + - uid: 37871 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-24.5 parent: 2 - - uid: 38034 + - uid: 37872 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-29.5 parent: 2 - - uid: 38035 + - uid: 37873 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-29.5 parent: 2 - - uid: 38036 + - uid: 37874 components: - type: Transform rot: -1.5707963267948966 rad @@ -277904,13 +277987,13 @@ entities: parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 38037 + - uid: 37875 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 - - uid: 38038 + - uid: 37876 components: - type: Transform rot: -1.5707963267948966 rad @@ -277918,119 +278001,119 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 38039 + - uid: 37877 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 38040 + - uid: 37878 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 38041 + - uid: 37879 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 - - uid: 38042 + - uid: 37880 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 38043 + - uid: 37881 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,24.5 parent: 2 - - uid: 38044 + - uid: 37882 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 38045 + - uid: 37883 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,26.5 parent: 2 - - uid: 38046 + - uid: 37884 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 38047 + - uid: 37885 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,7.5 parent: 2 - - uid: 38048 + - uid: 37886 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,23.5 parent: 2 - - uid: 38049 + - uid: 37887 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,21.5 parent: 2 - - uid: 38582 + - uid: 38409 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 - parent: 38484 - - uid: 38583 + parent: 38311 + - uid: 38410 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,0.5 - parent: 38484 - - uid: 40905 + parent: 38311 + - uid: 40732 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 - - uid: 40906 + parent: 38411 + - uid: 40733 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-3.5 - parent: 38584 - - uid: 40907 + parent: 38411 + - uid: 40734 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 - - uid: 40908 + parent: 38411 + - uid: 40735 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-4.5 - parent: 38584 - - uid: 40909 + parent: 38411 + - uid: 40736 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 40910 + parent: 38411 + - uid: 40737 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-3.5 - parent: 38584 + parent: 38411 - proto: WindoorServiceLocked entities: - - uid: 38050 + - uid: 37888 components: - type: Transform rot: 3.141592653589793 rad @@ -278038,7 +278121,7 @@ entities: parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 38051 + - uid: 37889 components: - type: Transform rot: -1.5707963267948966 rad @@ -278046,458 +278129,462 @@ entities: parent: 2 - proto: Window entities: - - uid: 38052 + - uid: 37890 components: - type: Transform pos: -16.5,19.5 parent: 2 - - uid: 38053 + - type: PointLight + color: '#B6DCFFFF' + - uid: 37891 components: - type: Transform pos: 15.5,19.5 parent: 2 - - uid: 38054 + - type: PointLight + color: '#B6DCFFFF' + - uid: 37892 components: - type: Transform pos: 15.5,18.5 parent: 2 - - uid: 38055 + - uid: 37893 components: - type: Transform pos: -16.5,18.5 parent: 2 - - uid: 38056 + - uid: 37894 components: - type: Transform pos: -16.5,20.5 parent: 2 - - uid: 38057 + - uid: 37895 components: - type: Transform pos: 15.5,20.5 parent: 2 - - uid: 38058 + - uid: 37896 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,3.5 parent: 2 - - uid: 38059 + - uid: 37897 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,3.5 parent: 2 - - uid: 38060 + - uid: 37898 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,3.5 parent: 2 - - uid: 38061 + - uid: 37899 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,3.5 parent: 2 - - uid: 38080 + - uid: 37900 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 38081 + - uid: 37901 components: - type: Transform pos: 3.5,-6.5 parent: 2 - - uid: 38082 + - uid: 37902 components: - type: Transform pos: 45.5,-17.5 parent: 2 - - uid: 38083 + - uid: 37903 components: - type: Transform pos: -35.5,50.5 parent: 2 - - uid: 38084 + - uid: 37904 components: - type: Transform pos: 48.5,-17.5 parent: 2 - - uid: 38085 + - uid: 37905 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 38086 + - uid: 37906 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 - - uid: 38087 + - uid: 37907 components: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 38088 + - uid: 37908 components: - type: Transform pos: -4.5,-66.5 parent: 2 - - uid: 38089 + - uid: 37909 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-45.5 parent: 2 - - uid: 38090 + - uid: 37910 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 38091 + - uid: 37911 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 38092 + - uid: 37912 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 38093 + - uid: 37913 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 38094 + - uid: 37914 components: - type: Transform pos: 46.5,-48.5 parent: 2 - - uid: 38095 + - uid: 37915 components: - type: Transform pos: -36.5,28.5 parent: 2 - - uid: 38096 + - uid: 37916 components: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 38097 + - uid: 37917 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 38098 + - uid: 37918 components: - type: Transform pos: -41.5,32.5 parent: 2 - - uid: 38099 + - uid: 37919 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-52.5 parent: 2 - - uid: 38100 + - uid: 37920 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 - - uid: 38101 + - uid: 37921 components: - type: Transform pos: -41.5,33.5 parent: 2 - - uid: 38102 + - uid: 37922 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 38103 + - uid: 37923 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-47.5 parent: 2 - - uid: 38104 + - uid: 37924 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-45.5 parent: 2 - - uid: 38105 + - uid: 37925 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-45.5 parent: 2 - - uid: 38106 + - uid: 37926 components: - type: Transform pos: -34.5,42.5 parent: 2 - - uid: 38107 + - uid: 37927 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 38108 + - uid: 37928 components: - type: Transform pos: -20.5,10.5 parent: 2 - - uid: 38109 + - uid: 37929 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 38110 + - uid: 37930 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 - - uid: 38111 + - uid: 37931 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-45.5 parent: 2 - - uid: 38112 + - uid: 37932 components: - type: Transform pos: 10.5,65.5 parent: 2 - - uid: 38113 + - uid: 37933 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 38114 + - uid: 37934 components: - type: Transform pos: -2.5,-73.5 parent: 2 - - uid: 38115 + - uid: 37935 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-9.5 parent: 2 - - uid: 38116 + - uid: 37936 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-46.5 parent: 2 - - uid: 38117 + - uid: 37937 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-40.5 parent: 2 - - uid: 38118 + - uid: 37938 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 38119 + - uid: 37939 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 38120 + - uid: 37940 components: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 38121 + - uid: 37941 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 38122 + - uid: 37942 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 38123 + - uid: 37943 components: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 38124 + - uid: 37944 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 38125 + - uid: 37945 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 38126 + - uid: 37946 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-45.5 parent: 2 - - uid: 38127 + - uid: 37947 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-48.5 parent: 2 - - uid: 38128 + - uid: 37948 components: - type: Transform pos: 13.5,70.5 parent: 2 - - uid: 38129 + - uid: 37949 components: - type: Transform pos: -35.5,48.5 parent: 2 - - uid: 38130 + - uid: 37950 components: - type: Transform pos: 11.5,65.5 parent: 2 - - uid: 38131 + - uid: 37951 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 38132 + - uid: 37952 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-58.5 parent: 2 - - uid: 38133 + - uid: 37953 components: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 38134 + - uid: 37954 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 38135 + - uid: 37955 components: - type: Transform pos: 13.5,69.5 parent: 2 - - uid: 38136 + - uid: 37956 components: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 38137 + - uid: 37957 components: - type: Transform pos: -20.5,13.5 parent: 2 - - uid: 38138 + - uid: 37958 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,3.5 parent: 2 - - uid: 38139 + - uid: 37959 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 - - uid: 38140 + - uid: 37960 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-71.5 parent: 2 - - uid: 38141 + - uid: 37961 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 38142 + - uid: 37962 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 38143 + - uid: 37963 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-47.5 parent: 2 - - uid: 38144 + - uid: 37964 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 38145 + - uid: 37965 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 38146 + - uid: 37966 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 38147 + - uid: 37967 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 38148 + - uid: 37968 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 38149 + - uid: 37969 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 38150 + - uid: 37970 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-47.5 parent: 2 - - uid: 38151 + - uid: 37971 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 38152 + - uid: 37972 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-40.5 parent: 2 - - uid: 38153 + - uid: 37973 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-66.5 parent: 2 - - uid: 38154 + - uid: 37974 components: - type: Transform pos: -6.5,-67.5 parent: 2 - - uid: 38155 + - uid: 37975 components: - type: Transform rot: -1.5707963267948966 rad @@ -278505,289 +278592,289 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 38156 + - uid: 37976 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,27.5 parent: 2 - - uid: 38157 + - uid: 37977 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,27.5 parent: 2 - - uid: 38158 + - uid: 37978 components: - type: Transform pos: 95.5,6.5 parent: 2 - - uid: 38159 + - uid: 37979 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-66.5 parent: 2 - - uid: 38160 + - uid: 37980 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-67.5 parent: 2 - - uid: 38161 + - uid: 37981 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-67.5 parent: 2 - - uid: 38162 + - uid: 37982 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-66.5 parent: 2 - - uid: 38163 + - uid: 37983 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,62.5 parent: 2 - - uid: 38164 + - uid: 37984 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,53.5 parent: 2 - - uid: 38165 + - uid: 37985 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,52.5 parent: 2 - - uid: 38166 + - uid: 37986 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 38167 + - uid: 37987 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,63.5 parent: 2 - - uid: 38168 + - uid: 37988 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,54.5 parent: 2 - - uid: 38169 + - uid: 37989 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,64.5 parent: 2 - - uid: 38170 + - uid: 37990 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-4.5 parent: 2 - - uid: 38171 + - uid: 37991 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 38172 + - uid: 37992 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,54.5 parent: 2 - - uid: 38173 + - uid: 37993 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-4.5 parent: 2 - - uid: 38174 + - uid: 37994 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,60.5 parent: 2 - - uid: 38175 + - uid: 37995 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-42.5 parent: 2 - - uid: 38176 + - uid: 37996 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,55.5 parent: 2 - - uid: 38177 + - uid: 37997 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-42.5 parent: 2 - - uid: 38178 + - uid: 37998 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-43.5 parent: 2 - - uid: 38179 + - uid: 37999 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,51.5 parent: 2 - - uid: 38180 + - uid: 38000 components: - type: Transform pos: 6.5,44.5 parent: 2 - - uid: 38181 + - uid: 38001 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 38182 + - uid: 38002 components: - type: Transform pos: 4.5,44.5 parent: 2 - - uid: 38183 + - uid: 38003 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,48.5 parent: 2 - - uid: 38184 + - uid: 38004 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,51.5 parent: 2 - - uid: 38185 + - uid: 38005 components: - type: Transform pos: -3.5,41.5 parent: 2 - - uid: 38186 + - uid: 38006 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,47.5 parent: 2 - - uid: 38187 + - uid: 38007 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 38188 + - uid: 38008 components: - type: Transform pos: -25.5,2.5 parent: 2 - - uid: 38189 + - uid: 38009 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,60.5 parent: 2 - - uid: 38190 + - uid: 38010 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 - - uid: 38191 + - uid: 38011 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-4.5 parent: 2 - - uid: 38192 + - uid: 38012 components: - type: Transform pos: 28.5,59.5 parent: 2 - - uid: 38193 + - uid: 38013 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,59.5 parent: 2 - - uid: 38194 + - uid: 38014 components: - type: Transform pos: 27.5,59.5 parent: 2 - - uid: 38195 + - uid: 38015 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,60.5 parent: 2 - - uid: 38196 + - uid: 38016 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-43.5 parent: 2 - - uid: 38197 + - uid: 38017 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-41.5 parent: 2 - - uid: 38198 + - uid: 38018 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-4.5 parent: 2 - - uid: 38199 + - uid: 38019 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,17.5 parent: 2 - - uid: 38200 + - uid: 38020 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,57.5 parent: 2 - - uid: 38201 + - uid: 38021 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,52.5 parent: 2 - - uid: 38202 + - uid: 38022 components: - type: Transform pos: -55.5,49.5 parent: 2 - - uid: 38203 + - uid: 38023 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,48.5 parent: 2 - - uid: 38204 + - uid: 38024 components: - type: Transform pos: 97.5,6.5 parent: 2 - - uid: 38205 + - uid: 38025 components: - type: MetaData desc: Это я =) @@ -278798,1359 +278885,1359 @@ entities: parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 38206 + - uid: 38026 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-6.5 parent: 2 - - uid: 38207 + - uid: 38027 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-8.5 parent: 2 - - uid: 38208 + - uid: 38028 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,13.5 parent: 2 - - uid: 38209 + - uid: 38029 components: - type: Transform pos: -4.5,-50.5 parent: 2 - - uid: 38210 + - uid: 38030 components: - type: Transform pos: -3.5,-50.5 parent: 2 - - uid: 38211 + - uid: 38031 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,23.5 parent: 2 - - uid: 38212 + - uid: 38032 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,59.5 parent: 2 - - uid: 38213 + - uid: 38033 components: - type: Transform pos: -34.5,62.5 parent: 2 - - uid: 38214 + - uid: 38034 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,60.5 parent: 2 - - uid: 38215 + - uid: 38035 components: - type: Transform pos: -36.5,62.5 parent: 2 - - uid: 38216 + - uid: 38036 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,62.5 parent: 2 - - uid: 38217 + - uid: 38037 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,63.5 parent: 2 - - uid: 38218 + - uid: 38038 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,63.5 parent: 2 - - uid: 38219 + - uid: 38039 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-15.5 parent: 2 - - uid: 38220 + - uid: 38040 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 - - uid: 38221 + - uid: 38041 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-15.5 parent: 2 - - uid: 38222 + - uid: 38042 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 - - uid: 38223 + - uid: 38043 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,62.5 parent: 2 - - uid: 38224 + - uid: 38044 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-6.5 parent: 2 - - uid: 38225 + - uid: 38045 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - - uid: 38226 + - uid: 38046 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 - - uid: 38227 + - uid: 38047 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,60.5 parent: 2 - - uid: 38228 + - uid: 38048 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-37.5 parent: 2 - - uid: 38229 + - uid: 38049 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,12.5 parent: 2 - - uid: 38230 + - uid: 38050 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-8.5 parent: 2 - - uid: 38231 + - uid: 38051 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 40911 + - uid: 40738 components: - type: Transform pos: 12.5,20.5 - parent: 38584 - - uid: 40912 + parent: 38411 + - uid: 40739 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,18.5 - parent: 38584 - - uid: 40913 + parent: 38411 + - uid: 40740 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 - parent: 38584 - - uid: 40914 + parent: 38411 + - uid: 40741 components: - type: Transform pos: 14.5,20.5 - parent: 38584 + parent: 38411 - proto: WindowReinforcedDirectional entities: - - uid: 38232 + - uid: 38052 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 38233 + - uid: 38053 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 2 - - uid: 38234 + - uid: 38054 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 38235 + - uid: 38055 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 38236 + - uid: 38056 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 38237 + - uid: 38057 components: - type: Transform pos: -22.5,21.5 parent: 2 - - uid: 38238 + - uid: 38058 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,51.5 parent: 2 - - uid: 38239 + - uid: 38059 components: - type: Transform pos: -10.5,-1.5 parent: 2 - - uid: 38240 + - uid: 38060 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-1.5 parent: 2 - - uid: 38241 + - uid: 38061 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-1.5 parent: 2 - - uid: 38242 + - uid: 38062 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 38243 + - uid: 38063 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 - - uid: 38244 + - uid: 38064 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,23.5 parent: 2 - - uid: 38245 + - uid: 38065 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 - - uid: 38246 + - uid: 38066 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 - - uid: 38247 + - uid: 38067 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-3.5 parent: 2 - - uid: 38248 + - uid: 38068 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 - - uid: 38249 + - uid: 38069 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 - - uid: 38250 + - uid: 38070 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,8.5 parent: 2 - - uid: 38251 + - uid: 38071 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,10.5 parent: 2 - - uid: 38252 + - uid: 38072 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,19.5 parent: 2 - - uid: 38253 + - uid: 38073 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-26.5 parent: 2 - - uid: 38254 + - uid: 38074 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-67.5 parent: 2 - - uid: 38255 + - uid: 38075 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 38256 + - uid: 38076 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 - - uid: 38257 + - uid: 38077 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 - - uid: 38258 + - uid: 38078 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,0.5 parent: 2 - - uid: 38259 + - uid: 38079 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,11.5 parent: 2 - - uid: 38260 + - uid: 38080 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-26.5 parent: 2 - - uid: 38261 + - uid: 38081 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,18.5 parent: 2 - - uid: 38262 + - uid: 38082 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 38263 + - uid: 38083 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-58.5 parent: 2 - - uid: 38264 + - uid: 38084 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,13.5 parent: 2 - - uid: 38265 + - uid: 38085 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,7.5 parent: 2 - - uid: 38266 + - uid: 38086 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 2 - - uid: 38267 + - uid: 38087 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - uid: 38268 + - uid: 38088 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,13.5 parent: 2 - - uid: 38269 + - uid: 38089 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-29.5 parent: 2 - - uid: 38270 + - uid: 38090 components: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 38271 + - uid: 38091 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,22.5 parent: 2 - - uid: 38272 + - uid: 38092 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 38273 + - uid: 38093 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 38274 + - uid: 38094 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,35.5 parent: 2 - - uid: 38275 + - uid: 38095 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 2 - - uid: 38276 + - uid: 38096 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 - - uid: 38277 + - uid: 38097 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 - - uid: 38278 + - uid: 38098 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 38279 + - uid: 38099 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,23.5 parent: 2 - - uid: 38280 + - uid: 38100 components: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 38281 + - uid: 38101 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 38282 + - uid: 38102 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-50.5 parent: 2 - - uid: 38283 + - uid: 38103 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 38284 + - uid: 38104 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,8.5 parent: 2 - - uid: 38285 + - uid: 38105 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 - - uid: 38286 + - uid: 38106 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,9.5 parent: 2 - - uid: 38287 + - uid: 38107 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-25.5 parent: 2 - - uid: 38288 + - uid: 38108 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 - - uid: 38289 + - uid: 38109 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 - - uid: 38290 + - uid: 38110 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-25.5 parent: 2 - - uid: 38291 + - uid: 38111 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,8.5 parent: 2 - - uid: 38292 + - uid: 38112 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,9.5 parent: 2 - - uid: 38293 + - uid: 38113 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,9.5 parent: 2 - - uid: 38294 + - uid: 38114 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 - - uid: 38295 + - uid: 38115 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,9.5 parent: 2 - - uid: 38296 + - uid: 38116 components: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 38297 + - uid: 38117 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-31.5 parent: 2 - - uid: 38298 + - uid: 38118 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-51.5 parent: 2 - - uid: 38299 + - uid: 38119 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-52.5 parent: 2 - - uid: 38300 + - uid: 38120 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,9.5 parent: 2 - - uid: 38301 + - uid: 38121 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 - - uid: 38302 + - uid: 38122 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-30.5 parent: 2 - - uid: 38303 + - uid: 38123 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-49.5 parent: 2 - - uid: 38304 + - uid: 38124 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 - - uid: 38305 + - uid: 38125 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,33.5 parent: 2 - - uid: 38306 + - uid: 38126 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,14.5 parent: 2 - - uid: 38307 + - uid: 38127 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 2 - - uid: 38308 + - uid: 38128 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-53.5 parent: 2 - - uid: 38309 + - uid: 38129 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-16.5 parent: 2 - - uid: 38310 + - uid: 38130 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-29.5 parent: 2 - - uid: 38311 + - uid: 38131 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-29.5 parent: 2 - - uid: 38312 + - uid: 38132 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-30.5 parent: 2 - - uid: 38313 + - uid: 38133 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,8.5 parent: 2 - - uid: 38314 + - uid: 38134 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-25.5 parent: 2 - - uid: 38315 + - uid: 38135 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-25.5 parent: 2 - - uid: 38316 + - uid: 38136 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-50.5 parent: 2 - - uid: 38317 + - uid: 38137 components: - type: Transform pos: -15.5,-15.5 parent: 2 - - uid: 38318 + - uid: 38138 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-52.5 parent: 2 - - uid: 38319 + - uid: 38139 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,8.5 parent: 2 - - uid: 38320 + - uid: 38140 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-0.5 parent: 2 - - uid: 38321 + - uid: 38141 components: - type: Transform pos: 70.5,8.5 parent: 2 - - uid: 38322 + - uid: 38142 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 38323 + - uid: 38143 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-85.5 parent: 2 - - uid: 38324 + - uid: 38144 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 38325 + - uid: 38145 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-6.5 parent: 2 - - uid: 38326 + - uid: 38146 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,34.5 parent: 2 - - uid: 38327 + - uid: 38147 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-56.5 parent: 2 - - uid: 38328 + - uid: 38148 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,47.5 parent: 2 - - uid: 38329 + - uid: 38149 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-30.5 parent: 2 - - uid: 38330 + - uid: 38150 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 - - uid: 38331 + - uid: 38151 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 38332 + - uid: 38152 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-55.5 parent: 2 - - uid: 38333 + - uid: 38153 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 - - uid: 38334 + - uid: 38154 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 38335 + - uid: 38155 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 - - uid: 38336 + - uid: 38156 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-0.5 parent: 2 - - uid: 38337 + - uid: 38157 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,7.5 parent: 2 - - uid: 38338 + - uid: 38158 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-54.5 parent: 2 - - uid: 38339 + - uid: 38159 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 2 - - uid: 38340 + - uid: 38160 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,13.5 parent: 2 - - uid: 38341 + - uid: 38161 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 2 - - uid: 38342 + - uid: 38162 components: - type: Transform pos: -47.5,-26.5 parent: 2 - - uid: 38343 + - uid: 38163 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,15.5 parent: 2 - - uid: 38344 + - uid: 38164 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 2 - - uid: 38345 + - uid: 38165 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,9.5 parent: 2 - - uid: 38346 + - uid: 38166 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 - - uid: 38347 + - uid: 38167 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 - - uid: 38348 + - uid: 38168 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,10.5 parent: 2 - - uid: 38349 + - uid: 38169 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,10.5 parent: 2 - - uid: 38350 + - uid: 38170 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,7.5 parent: 2 - - uid: 38351 + - uid: 38171 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 2 - - uid: 38352 + - uid: 38172 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,47.5 parent: 2 - - uid: 38353 + - uid: 38173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 2 - - uid: 38354 + - uid: 38174 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-29.5 parent: 2 - - uid: 38355 + - uid: 38175 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-28.5 parent: 2 - - uid: 38356 + - uid: 38176 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,51.5 parent: 2 - - uid: 38357 + - uid: 38177 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,21.5 parent: 2 - - uid: 38358 + - uid: 38178 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 - - uid: 38359 + - uid: 38179 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-51.5 parent: 2 - - uid: 38360 + - uid: 38180 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 2 - - uid: 38361 + - uid: 38181 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 - - uid: 38362 + - uid: 38182 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-84.5 parent: 2 - - uid: 38363 + - uid: 38183 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-83.5 parent: 2 - - uid: 38364 + - uid: 38184 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-82.5 parent: 2 - - uid: 38365 + - uid: 38185 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-82.5 parent: 2 - - uid: 38366 + - uid: 38186 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-82.5 parent: 2 - - uid: 38367 + - uid: 38187 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 38368 + - uid: 38188 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-83.5 parent: 2 - - uid: 38369 + - uid: 38189 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-84.5 parent: 2 - - uid: 38370 + - uid: 38190 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-85.5 parent: 2 - - uid: 38371 + - uid: 38191 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 38372 + - uid: 38192 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-83.5 parent: 2 - - uid: 38373 + - uid: 38193 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 - - uid: 38374 + - uid: 38194 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 2 - - uid: 38375 + - uid: 38195 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-45.5 parent: 2 - - uid: 38376 + - uid: 38196 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-44.5 parent: 2 - - uid: 38377 + - uid: 38197 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-42.5 parent: 2 - - uid: 38378 + - uid: 38198 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-43.5 parent: 2 - - uid: 38379 + - uid: 38199 components: - type: Transform pos: 65.5,7.5 parent: 2 - - uid: 38380 + - uid: 38200 components: - type: Transform pos: 67.5,7.5 parent: 2 - - uid: 38381 + - uid: 38201 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-28.5 parent: 2 - - uid: 38382 + - uid: 38202 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,34.5 parent: 2 - - uid: 38383 + - uid: 38203 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,32.5 parent: 2 - - uid: 38384 + - uid: 38204 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,42.5 parent: 2 - - uid: 38385 + - uid: 38205 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,42.5 parent: 2 - - uid: 38386 + - uid: 38206 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,41.5 parent: 2 - - uid: 38387 + - uid: 38207 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,42.5 parent: 2 - - uid: 38388 + - uid: 38208 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,40.5 parent: 2 - - uid: 38389 + - uid: 38209 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,30.5 parent: 2 - - uid: 38390 + - uid: 38210 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,35.5 parent: 2 - - uid: 38391 + - uid: 38211 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,38.5 parent: 2 - - uid: 38392 + - uid: 38212 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,37.5 parent: 2 - - uid: 38393 + - uid: 38213 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,45.5 parent: 2 - - uid: 38394 + - uid: 38214 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,45.5 parent: 2 - - uid: 38395 + - uid: 38215 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,40.5 parent: 2 - - uid: 38396 + - uid: 38216 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,38.5 parent: 2 - - uid: 38397 + - uid: 38217 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,33.5 parent: 2 - - uid: 38398 + - uid: 38218 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,36.5 parent: 2 - - uid: 38399 + - uid: 38219 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,31.5 parent: 2 - - uid: 38400 + - uid: 38220 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,36.5 parent: 2 - - uid: 38401 + - uid: 38221 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,41.5 parent: 2 - - uid: 38402 + - uid: 38222 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,39.5 parent: 2 - - uid: 38403 + - uid: 38223 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,39.5 parent: 2 - - uid: 38404 + - uid: 38224 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,37.5 parent: 2 - - uid: 38405 + - uid: 38225 components: - type: Transform rot: 3.141592653589793 rad pos: -121.5,23.5 parent: 2 - - uid: 38406 + - uid: 38226 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,32.5 parent: 2 - - uid: 38407 + - uid: 38227 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,30.5 parent: 2 - - uid: 38408 + - uid: 38228 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,31.5 parent: 2 - - uid: 38409 + - uid: 38229 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 - - uid: 38410 + - uid: 38230 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,9.5 parent: 2 - - uid: 38411 + - uid: 38231 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,0.5 parent: 2 - - uid: 38412 + - uid: 38232 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,0.5 parent: 2 - - uid: 38413 + - uid: 38233 components: - type: Transform pos: 71.5,0.5 parent: 2 - - uid: 38414 + - uid: 38234 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 38415 + - uid: 38235 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,7.5 parent: 2 - - uid: 38416 + - uid: 38236 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,9.5 parent: 2 - - uid: 38417 + - uid: 38237 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,9.5 parent: 2 - - uid: 38418 + - uid: 38238 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,7.5 parent: 2 - - uid: 38419 + - uid: 38239 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,9.5 parent: 2 - - uid: 38420 + - uid: 38240 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,9.5 parent: 2 - - uid: 38421 + - uid: 38241 components: - type: Transform pos: 98.5,14.5 parent: 2 - - uid: 40915 + - uid: 40742 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 40916 + parent: 38411 + - uid: 40743 components: - type: Transform pos: 11.5,-4.5 - parent: 38584 - - uid: 40917 + parent: 38411 + - uid: 40744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-3.5 - parent: 38584 - - uid: 40918 + parent: 38411 + - uid: 40745 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-3.5 - parent: 38584 - - uid: 40919 + parent: 38411 + - uid: 40746 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 38584 - - uid: 40920 + parent: 38411 + - uid: 40747 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 - parent: 38584 + parent: 38411 - proto: Wirecutter entities: - - uid: 38422 + - uid: 38242 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 38423 + - uid: 38243 components: - type: Transform pos: 0.5158134,45.46363 parent: 2 - type: Physics canCollide: False - - uid: 38424 + - uid: 38244 components: - type: Transform pos: 54.51428,-42.36651 parent: 2 - type: Physics canCollide: False - - uid: 38425 + - uid: 38245 components: - type: Transform pos: -41.48517,40.437695 parent: 2 - type: Physics canCollide: False - - uid: 38426 + - uid: 38246 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -280158,25 +280245,25 @@ entities: parent: 2 - proto: WoodDoor entities: - - uid: 38427 + - uid: 38247 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-78.5 parent: 2 - - uid: 38428 + - uid: 38248 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-77.5 parent: 2 - - uid: 38429 + - uid: 38249 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-76.5 parent: 2 - - uid: 38430 + - uid: 38250 components: - type: Transform rot: 3.141592653589793 rad @@ -280184,55 +280271,55 @@ entities: parent: 2 - proto: WoodenBench entities: - - uid: 38431 + - uid: 38251 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,54.5 parent: 2 - - uid: 38432 + - uid: 38252 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,54.5 parent: 2 - - uid: 38433 + - uid: 38253 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,54.5 parent: 2 - - uid: 38434 + - uid: 38254 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-20.5 parent: 2 - - uid: 38435 + - uid: 38255 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-19.5 parent: 2 - - uid: 38436 + - uid: 38256 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-24.5 parent: 2 - - uid: 38437 + - uid: 38257 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-19.5 parent: 2 - - uid: 38438 + - uid: 38258 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-24.5 parent: 2 - - uid: 38439 + - uid: 38259 components: - type: Transform rot: -1.5707963267948966 rad @@ -280240,345 +280327,345 @@ entities: parent: 2 - proto: WoodenSign entities: - - uid: 40921 + - uid: 40748 components: - type: MetaData desc: 'Данный знак гласит: "Тут абсолютно НИЧЕГО нет! Просто уходите! За этими огромными подозрительными дверьми ПУСТОТА!"' - type: Transform pos: -11.5,36.5 - parent: 38584 + parent: 38411 - proto: WoodenSupport entities: - - uid: 40922 + - uid: 40749 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,18.5 - parent: 38584 - - uid: 40923 + parent: 38411 + - uid: 40750 components: - type: Transform pos: -26.5,13.5 - parent: 38584 + parent: 38411 - proto: WoodenSupportWall entities: - - uid: 40924 + - uid: 40751 components: - type: Transform pos: -10.5,16.5 - parent: 38584 - - uid: 40925 + parent: 38411 + - uid: 40752 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,13.5 - parent: 38584 - - uid: 40926 + parent: 38411 + - uid: 40753 components: - type: Transform pos: 2.5,17.5 - parent: 38584 - - uid: 40927 + parent: 38411 + - uid: 40754 components: - type: Transform pos: -28.5,14.5 - parent: 38584 + parent: 38411 - proto: WoodenSupportWallBroken entities: - - uid: 40928 + - uid: 40755 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,20.5 - parent: 38584 - - uid: 40929 + parent: 38411 + - uid: 40756 components: - type: Transform pos: 1.5,22.5 - parent: 38584 - - uid: 40930 + parent: 38411 + - uid: 40757 components: - type: Transform pos: -28.5,15.5 - parent: 38584 - - uid: 40931 + parent: 38411 + - uid: 40758 components: - type: Transform pos: -24.5,16.5 - parent: 38584 + parent: 38411 - proto: Wrench entities: - - uid: 38440 + - uid: 38260 components: - type: Transform pos: -58.46594,31.622925 parent: 2 - - uid: 38441 + - uid: 38261 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.422253,23.14012 parent: 2 - - uid: 38442 + - uid: 38262 components: - type: Transform pos: -16.468157,-37.409504 parent: 2 - - uid: 38443 + - uid: 38263 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.17718,21.50901 parent: 2 - - uid: 38444 + - uid: 38264 components: - type: Transform pos: 4.4701343,18.466885 parent: 2 - - uid: 38445 + - uid: 38265 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 38446 + - uid: 38266 components: - type: Transform pos: 74.5,-4.5 parent: 2 - - uid: 38447 + - uid: 38267 components: - type: Transform pos: -7.4624815,-39.412907 parent: 2 - - uid: 38448 + - uid: 38268 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.695988,-70.00492 parent: 2 - - uid: 38449 + - uid: 38269 components: - type: Transform pos: -22.5,-45.5 parent: 2 - - uid: 38450 + - uid: 38270 components: - type: Transform pos: 6.6287384,39.563835 parent: 2 - type: Physics canCollide: False - - uid: 38451 + - uid: 38271 components: - type: Transform pos: -44.537624,-30.411694 parent: 2 - type: Physics canCollide: False - - uid: 38452 + - uid: 38272 components: - type: Transform pos: -78.50845,-5.605592 parent: 2 - - uid: 38453 + - uid: 38273 components: - type: Transform pos: -39.517647,-50.41243 parent: 2 - type: Physics canCollide: False - - uid: 38454 + - uid: 38274 components: - type: Transform pos: 24.454826,-40.436596 parent: 2 - - uid: 38455 + - uid: 38275 components: - type: Transform pos: -35.544933,-35.43443 parent: 2 - - uid: 38456 + - uid: 38276 components: - type: Transform pos: 2.4956002,-37.51832 parent: 2 - type: Physics canCollide: False - - uid: 38457 + - uid: 38277 components: - type: Transform pos: -49.5,-12.5 parent: 2 - type: Physics canCollide: False - - uid: 38458 + - uid: 38278 components: - type: Transform pos: 49.495605,-11.474231 parent: 2 - type: Physics canCollide: False - - uid: 38459 + - uid: 38279 components: - type: Transform pos: 43.5,-38.5 parent: 2 - type: Physics canCollide: False - - uid: 38460 + - uid: 38280 components: - type: Transform pos: -40.493076,-17.417048 parent: 2 - type: Physics canCollide: False - - uid: 38461 + - uid: 38281 components: - type: Transform pos: -59.520313,42.576546 parent: 2 - type: Physics canCollide: False - - uid: 38462 + - uid: 38282 components: - type: Transform pos: 10.479997,74.55022 parent: 2 - type: Physics canCollide: False - - uid: 38463 + - uid: 38283 components: - type: Transform pos: -53.53699,38.476086 parent: 2 - type: Physics canCollide: False - - uid: 38464 + - uid: 38284 components: - type: Transform pos: -34.537655,51.541393 parent: 2 - - uid: 38465 + - uid: 38285 components: - type: Transform pos: -15.437176,-59.397392 parent: 2 - - uid: 38466 + - uid: 38286 components: - type: Transform pos: -31.464987,60.523388 parent: 2 - type: Physics canCollide: False - - uid: 38467 + - uid: 38287 components: - type: Transform pos: 9.504911,87.53533 parent: 2 - type: Physics canCollide: False - - uid: 38468 + - uid: 38288 components: - type: Transform pos: -69.52676,12.527793 parent: 2 - type: Physics canCollide: False - - uid: 38469 + - uid: 38289 components: - type: Transform pos: -55.752308,-13.340677 parent: 2 - type: Physics canCollide: False - - uid: 38470 + - uid: 38290 components: - type: Transform pos: 46.5,-32.5 parent: 2 - type: Physics canCollide: False - - uid: 38471 + - uid: 38291 components: - type: Transform pos: 78.50939,8.518529 parent: 2 - - uid: 38472 + - uid: 38292 components: - type: Transform pos: -45.534843,-17.413626 parent: 2 - type: Physics canCollide: False - - uid: 38473 + - uid: 38293 components: - type: Transform pos: 2.4912405,13.561341 parent: 2 - type: Physics canCollide: False - - uid: 38474 + - uid: 38294 components: - type: Transform pos: 40.473694,-55.415142 parent: 2 - type: Physics canCollide: False - - uid: 38475 + - uid: 38295 components: - type: Transform pos: -33.5,8.5 parent: 2 - type: Physics canCollide: False - - uid: 38476 + - uid: 38296 components: - type: Transform pos: -24.504358,-66.4108 parent: 2 - type: Physics canCollide: False - - uid: 38477 + - uid: 38297 components: - type: Transform pos: -3.5405889,-29.525139 parent: 2 - type: Physics canCollide: False - - uid: 38478 + - uid: 38298 components: - type: Transform pos: -40.5,3.5 parent: 2 - type: Physics canCollide: False - - uid: 38479 + - uid: 38299 components: - type: Transform pos: -56.604393,-1.4317584 parent: 2 - type: Physics canCollide: False - - uid: 38480 + - uid: 38300 components: - type: Transform pos: -29.541601,27.50988 parent: 2 - type: Physics canCollide: False - - uid: 38481 + - uid: 38301 components: - type: Transform pos: -18.545227,-32.40024 parent: 2 - proto: ZiptiesBroken entities: - - uid: 38482 + - uid: 38302 components: - type: Transform pos: -74.245865,-34.43475 parent: 2 - - uid: 38483 + - uid: 38303 components: - type: Transform rot: 1.5707963267948966 rad From d16a23ae7a4a7fd194ae6dd2f947063a2b263a0c Mon Sep 17 00:00:00 2001 From: Dimastra <65184747+Dimastra@users.noreply.github.com> Date: Fri, 19 Jul 2024 10:15:44 +0300 Subject: [PATCH 90/97] Fix book sprite (#2421) Co-authored-by: Dimastra --- Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json index c7b7a099a75..cc25ddeee5f 100644 --- a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json +++ b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json @@ -102,6 +102,9 @@ }, { "name": "book_implant" + }, + { + "name": "book_icon" } ] -} \ No newline at end of file +} From 84e265bf3bd8d52952481db6f2bfcc6c7e7ef3bf Mon Sep 17 00:00:00 2001 From: mtrs163 <153596133+mtrs163@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:39:04 +0700 Subject: [PATCH 91/97] Move lore books text to ftl (#2416) --- .../Locale/ru-RU/corvax/paper/books-lore.ftl | 1028 ++++++++++++++++ .../Corvax/Entities/Objects/Misc/books.yml | 1042 +---------------- 2 files changed, 1082 insertions(+), 988 deletions(-) create mode 100644 Resources/Locale/ru-RU/corvax/paper/books-lore.ftl diff --git a/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl new file mode 100644 index 00000000000..0c10a562e4f --- /dev/null +++ b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl @@ -0,0 +1,1028 @@ +book-expensive-crystal-contents = + Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. + Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целое состояние. Чаще всего встречаются кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. + Также известно, что космеций обладает карбидообразующими свойствами. + + + В природе встречается и иная форма природных кристаллов космеция, а именно космеций с примесью оксида алюминия и хрома. + Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. + Они также анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. + + + Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии, которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. + Этот эффект используется в модулях БС скачков для двигателей космических кораблей. + Отдельными свойствами выделяются кристаллы, измельчённые в мелкодисперсный порошок. + При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению: Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. + Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. + + + Космеций также способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. + Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. + Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. + +book-clones-contents = + По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов не то, что за личностей, а за живых существ как таковых. Некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. Впоследствии это выливалось в гонения клонов, их убийствами и погромами их жилищ. Большими проблемами также стали вопросы о юридических правах клонов, их интеграции в общество, осмысления этичности самого процесса клонирования. + + + Апофеозом всего этого стал “Туртельский Кризис” []Данные удалены[] года, когда несколько десятков клонов начали забастовку на малой научной станции под названием “Туртель”, находившейся на орбите Марса и занимавшейся секретными разработками компании NanoTrasen (именно поэтому на ней было довольно большое количество клонов-экипажа), работа станции была саботирована, а всему не клонированному персоналу было предложено эвакуироваться с неё. После того как все желающие эвакуировались, были и те, кто не являясь клонами, решили всё-таки остаться на станции тем самым выказав поддержку идеям клонов. Клоны и им сочувствующие смогли настроить аппаратуру станции на одну известную медиа-частоту и обратились по ней со своими требованиями, главным из которых было – предоставления всем клонам на территориях ОПЗ и объектах NanoTrasen равных с обычными гуманоидами прав. В результате долгих и не очень продуктивных переговоров, NanoTrasen не нашла ничего лучше, чем послать на станцию отряд зачистки, прибыв на место они устроили настоящую кровавую баню и когда уже подходили к мостику, были взорваны вместе со всей станцией одним из клонов-инженеров, который смог активировать ядерную боеголовку. Когда все произошедшие стало достоянием широкой публики репутации и активам NanoTrasen был нанесен огромный удар, а на многих планетах и станциях прошли митинги и забастовки в поддержку клонов. Массовые беспорядки нарастали, а СМИ лишь ещё больше подливали масло в огонь, так что ОПЗ приняла “Хартию Прав Клонов” и потребовала того же от NanoTrasen, что последние поспешили и сделать. + + + Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. + +book-dam-contents = + Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. + + + Контейнеры с топливом представляют собой магнитные ловушки, где граммы антиматерии парят в полном вакууме, не соприкасаясь со стенками контейнера. + + + Двигатель Антиматерии состоят из ядер и стенок. Ядра являются реакционными камерами, где соприкасаются материя и антиматерия. Для простоты используют Гелий и Антигелий. В ядрах установлены мощнейшие преобразователи, способные улавливать как световую, так и тепловую энергию. Стенки ДАМ выполнены из взрывостойкой, сверхпрочной, плохо проводящей тепло композитов и покрытий с парамагнитными свойствами. + + + Важнейшей частью ДАМ является его контроллер. Это сложное устройство состоит из набора трубок и магнитных бесконтактных транспортёров, которые призваны безопасно и дозированно перенести антиматерию в ядро. Также на контроллере присутствует консоль, показывающая количество оставшегося топлива по показанию сверхточных весов, и система настройки впрыска. Двух условных единиц антиматерии хватает для полной работоспособности одного ядра ДАМ. При этом если превысить это значение, то преобразователи энергии начнут нагреваться и перегреваться. Со временим тепло может проникнуть в камеры с гелием. Увеличение давления выше критической точки спровоцирует нарушение целостности ДАМ, это выведет из строя магнитные системы, под действием гравитации или иных внешних сил антиматерия коснётся любого вещества в помещении и спровоцирует бесконтрольный уничтожающий взрыв. + +book-faks-contents = + Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, а чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. Поэтому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты также заносятся в память. + + Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму, после чего оба потока получают код протокола разбиение на потоки данных, проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, также каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывают адрес станции, сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит, или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. + + + Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд, затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. + + + Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. + + + Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. + +book-famalis-contents = + Семья Дилли Джонсона + + Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом которых выступает власть Дона, а джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане, не заплатившие за услуги «полиции», могут также быть подвергнуты атаке джони или не получать услуги расследования или охраны. Если же так получилось, что джони защитили гражданине без оплаченной услуги, то тот обязуется выплатить пени за оказанную услугу. В случае невыполнения этого обязательства, его долг может быть продан другой Семье, или же джони позаботятся о вечном покое неплатильщика. + + Во внешнем мире джони известны как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D», лентой патронов вокруг и одной красной розой, продетой через букву. + + + Клан Сава + + Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это профессиональные телохранители. также они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают, что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция также является продуктом работы заводов клана Сава. + + Во всей галактике савы – это пираты, налётчики, грабители торговых судов, а также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи, но пока они не наняты, они являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. + + + Союз «Клевер» + + Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Клевер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. + + В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Также их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. + + + Организация «Ворбакс» + + Ворбаки или же ворбы выполняют роль тайной полиции государства, а также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостиниц и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. + + Контрразведывательные управления и организации госбезопасности разных стран тратят достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостиниц «Тенистый Домик» + + + Семья Глазиуса Мора + + Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой, они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. + + За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. + + + Семья Фенарио + + Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. также они вносят пожертвования на образование и благотворительность, также устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. + + В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Также они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. + + + Фонд Мола Гола + + Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. + + + Семья Синий Камень + + Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. + + + Союз Границ + + Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. также управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. + + +book-grav-contents = + Генераторы гравитации отличаются лишь мощностью, но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности, с антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. + + + Генератор же гравитации представляет собой невероятное сочетание уникальной по своей природе плазмы с антиматерией. При облучении плазмы антигелием формируется не обычная фотонная вспышка, а вспышка гравитационного антиполя (оно же «поле искусственной гравитации»). Все тела, попадающие в действие антиполя начинают воспроизводить гравитационное искажение, не меняя свою стандартную массу, а формируя мнимую гравитационную массу. Таким образом у всего в поле действия генератора гравитации увеличивается ньютоновское притяжение друг к другу, не используя центробежное вращение, как в космических кораблях тысячелетней давности. + + + Незначительным побочным эффектом является формирование отрицательной мнимой массы у самого генератора, из-за чего его может переносить один человек, ибо генератор очень лёгкий. + +book-halifat-contents = + Духовная составляющая + + + Шахада + + Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. + + + Намаз + + Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. + + + Саум + + Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. + + + Закят + + Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег, идущих к Духовному собранию, идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, также на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. + + + Хадж + + Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а именно + + 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. + + 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. + + 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. + + + + Земная составляющая + + + Ограниченная монархия + + Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. + + + Национализм + + Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. + + + Народность + + Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. + + + Лациизм + + Установление преимущественно светского характера государства. Недопускания религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. + + + Этатизм + + Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. + + + Революционность + + Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. + + +book-redspace-contents = + Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. + + + Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. + + + Учёные могут лишь предполагать количество осей и орты-операторы, которые по ним отложены. Тем не менее уже есть определённые идеи описания процессов данного пространства. Каждая точка является сочетанием операторов квантовой вероятности, импульса, координаты и понятия существования. Неотъемлемым элементом динамики подобных пространств является оператор эволюции. Он воплощает в себе вариант изменения пространства. + + + По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. + +book-ships-contents = + (S - Sigma) МКК – маленькие космические корабли. + + К гражданским МКК относятся корабли следующий назначений. + + 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. + + 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. + + 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. + + + К военным МКК относят корабли, несущие на себе какое-либо вооружение. Они имеют следующие назначения. + + 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого-либо вооружения и брони. + + 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. + + 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. + + + + (T – Teta) СКК – средние космические корабли. + + К гражданским СКК относятся. + + 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. + + 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. + + + К военным ССК относятся. + + 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. + + 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. + + 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. + + + + (O – Omicron) СККК – Среднекрупные космические корабли. + + 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. + + 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. + + + + (G – Gamma) ККК – Крупный космический корабль. + + 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли, предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. + + 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать недолинкорами. + + 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. + + + + (B – Beta) ТКК – Тяжёлые космические корабли. + + 1) Линкор. Линкоры — это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. + + 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. + + 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. + + 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. + + + + (A – Alpha) СТКК – Сверхтяжёлые боевые корабли. + + Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты — это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится в не меньшую сумму, чем затраты на содержание какой-нибудь около столичной планеты. + + + + ОКК – Особые космические корабли. + + 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. + + 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ, находящихся в состоянии гибернации. + +book-zp-contents = + Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. + + + Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. + + + Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 + + + Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 + + + Коэффициенты по назначении станции: + Административная станция – 2,0; + Бизнес станция – 1,6; + Исследовательская станция – 1,7; + Экспериментальная станция – 1,8; + Коммерческая станция – 1,3; + Медицинская станция – 1,2; + Оборонная станция – 1,7; + Транспортная станция – 1,0. + + + Коэффициенты по цели станции: + Отдел напрямую занимается целью станции – 1,5; + Отдел косвенно связан с целью станции – 1,25; + Отдел не занимается целью станции – 1,0. + + + Коэффициенты по профессиям + + Повар -- 1 + + Уборщик -- 1 + + Сервисный работник -- 1 + + Священник -- 1 + + Репортёр -- 1 + + Музыкант -- 1 + + Мим -- 1 + + Клоун -- 1 + + Зоотехник -- 1 + + Ботаник -- 1 + + Боксёр -- 1 + + Библиотекарь -- 1 + + Бармен -- 1 + + Грузчик -- 1 + + Технический ассистент -- 1 + + Кадет СБ -- 1 + + Научный ассистент -- 1 + + Интерн -- 1 + + + Офицер СБ -- 1.1 + + Врач -- 1.1 + + Инженер -- 1.1 + + Психолог -- 1.1 + + + Химик -- 1.2 + + Утилизатор -- 1.2 + + Атмосферный техник -- 1.2 + + + Парамедик -- 1.3 + + Детектив -- 1.3 + + Учёный -- 1.3 + + + Глава персонала -- 1.4 + + Квартирмейстер -- 1.4 + + + Смотритель -- 1.5 + + Ведущий врач -- 1.5 + + Ведущий инженер -- 1.5 + + Инструктор СБ -- 1.5 + + Ведущий учёный -- 1.5 + + + Старший инженер -- 1.8 + + Научный руководитель -- 1.8 + + Главный Врач -- 1.8 + + Глава Службы Безопасности -- 1.8 + + + Капитан -- 2.5 + + + Коэффициенты штрафов + + Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. + Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. + Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. + Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. + Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. + Гибель вне станции – 0,1. Факт формируется после окончания смены. + Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. + Отстранение от должности и нарушение СРП. При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. + + + Гибель + + В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья. Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получении инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждение - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам; ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. + + + Прибыль станции + + Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. + + + Растраты + + Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. + + + Дополнительное премирование + + Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. + +book-ussp-contents = + Первые среди равных + + Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. + + + Президиум и Советы + + Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. + + Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. + + Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. + + + Народные секретариаты и Генеральный Секретарь + + Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. + + Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. + + + Суды и главное управление красных комиссаров + + Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). + + Суды гражданских дел также классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. + Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. + +book-mirt-contents = + В данный момент в народе доминирует одна единственная идея. + + «Все умрут. Гибель неминуема. Ничто это не остановит. Всё что мы можем – отсрочить конец галактики». Бесконечный рой ксеноморфов показал тщетность существования человечества. Но миртранийцы давно преодолели панику и свыклись с мыслью о своей смерти. Они всегда готовы умереть. Они верят, что являются щитом для Галактики. Не несокрушимым. Щитом с ограниченной толщиной, что истончается с каждым днём. + + Они осознают, что умрут сами. Что умрут их любимые родители. Что умрут их близкие, их друзья. Что, возможно, им придётся хоронить своих детей. Или то что от них осталось. А возможно их детей сожрут с концом и на могильном холмике окажется лишь небольшой памятный камень с фотографией того, от кого не осталось и мизинца. Эта идея живёт в каждом гражданине, но особенно она сильна у жителей планет-крепостей в Линии Надежда и Любовь. Каждый гражданин Империи проходил базовую военную подготовку и умеет пользоваться оружием. Но жители Линий могут соревноваться в умении с солдатами некоторых ЧВК и стран. Они дисциплинированы, живут по практически военному расписанию, знают где находятся склад с оружием и по первому протяжному и рвущему душу сигналу тревоги готовы стиснуть зубы, сжать кулаки до крови, и, стараясь игнорировать подступающие слёзы, заранее хороня своих детей, друзей и близких, идти к ближайшему арсеналу и вооружаться, дабы отсрочить момент гибели человечества хотя бы на мгновение. + + Так умирали люди на планетах-крепостях Линии Вера. Так умирают люди на планетах Линии Надежда прямо сейчас. Так готовы умирать люди на планетах-крепостях Линии любовь. + + И они не уедут. Не улетят. Не потому, что тоталитарное государство их не выпустит. Нет. Просто… они понимают, что гибель неминуема в любом случае. Так лучше встретить с оружием в руках! Когда закончатся патроны – штыками! Когда сломаются штыки – ножами! А когда затупится нож, выгрызать ксеноморфам глотки ногтями и зубами. Ибо нужно отсрочить неминуемое… Хоть на одну наносекунду. Хоть на одного ксеноморфа. + + Легенды гласят о моментах, когда Империя была в шаге от падения. Тогда являлся Император Миртан и создавал Проявление! Оно помогало уничтожить угрозу, но и заставляло Императора угаснуть… А потому каждый гражданин понимает, что Император это не просто небожитель, а буквально равный им спаситель Человечества. Потому он всеми любимый и почитаемый. + + Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… + + Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». + +book-gior-contents = + ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан), идейно ГИОР пришла на замену ООН, организации, некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций, а также контроль за соблюдением принятых законов. + + + Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. + + Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) + + Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) + + Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) + + Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) + + + 1) Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ), является достаточно старым формированием, и именно она изначально и носила название ГИОР, и только позже, после формирования других государств она была переименована в ГИОРиМУ. Целью данной организации является урегулирование вопросов касаемых межрасового общения, а также отслеживание за соблюдением ОПРС (Общие Права Разумных Существ), важным уточнением будет то, что при нарушении ОПРС каким-либо государством или корпорацией, эту ситуацию будет рассматривать Всегалактический Суд Разумных Существ. + + + В состав данной организации входят все расы галактики, интересы которых представляют их представители. От каждой расы может выдвигаться несколько представителей, и их число зависит от численности самой расы (1 представитель на 10 миллиардов представителей этой расы). Из-за того, что точное число представителей какой-либо расы подчитать достаточно сложно, общим решением принято округлять число представителей в меньшую сторону. Также важным уточнением будет, что ГИОРиМУ является надгосударственным формированием, а значит, что представители рас могут являться гражданами разных государств. + + + В состав ГИОРиМУ входят. + + Люди – порядка 71 представителей + + Унатхи – порядка 31 представителей + + Дворфы – порядка 35 представителя + + Слаймолюды – порядка 11 представителей + + Нианаы – порядка 34 представителя + + Воксы – 1 представитель (выступает в качестве наблюдателя) + + Арахниды – порядка 47 представителей + + Дионы – 1 представитель (выступает в качестве наблюдателя) + + Таяраны – порядка 46 представителей + + Вульпакины – порядка 60 представителей + + + 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. + + + В состав ГИОРиГУ входят. + + ОПЗ (Объединённое Правительство Земли) + + Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпакины + + Союз Советских Социалистических Планет + + Умпорская Федерация + + Великая Империя Нотда + + Ноократия Эранта + + СНК (Союз Независимых Колоний) + + Халифатский Божественный Конгломерат + + + В качестве наблюдателей в ГИОР находятся. + + Империя Миртана + + Корпорации Большой Пятёрки + + + 3) Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ), была создана относительно недавно в 2781 году, в ответ на разрешение, выданное правительством ОПЗ, корпорациям на освоение регионов фронтира. Занимается контролем за исполнением принятых резолюций и соглашений, а также подписанием новых. При этом ГИОРиКУ имеет огромную когорту своих представителей, которые постоянно находятся в разъездах по всей галактике и занимаются отслеживанием нарушений. + + + 4) Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР), самая «молодая» организация в составе ГИОР. Занимается тем, что отслеживает всевозможные угрозы галактике, а также старается их предотвратить. Самой первой и на данный момент единственной задачей является отслеживание ситуации с ксеноморфами, а также всевозможная поддержка государств, которые занимаются урегулированием данной проблемы. Постоянными членами СовБезГИОР) являются ОПЗ и Империя Миртана (не смотря на статус наблюдателя в заседаниях самой ГИОРиГУ, с недавних пор Империя Миртана обладает особым правовым статусов в СовБезГИОР из-за того, что именно она является щитом галактики от угрозы ксеноморфов). + + Также в состав СовБезГИОР входят все остальные государства и организации, которые входят в ГИОРиГУ + +book-snk-contents = + С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. + + Немалая часть бюджета уходит на попытки упрочнить политические отношения с Умпорской Федерацией. В этом правительство СНК находит крайне благодатную почву, ибо Умпорская Федерация страдает от внутренних кризисов, постепенно становясь зависимой от поставок гуманитарной помощи и производственного сырья из СНК и СССП. + + К Ноократии Эранта СНК относится нейтрально. Ноократия в своё время также пошла против ОПЗ, что принималось одобрительно со стороны СНК, так как это могло значить появление ценного союзника в будущих конфликтах. К всеобщему удивлению, ОПЗ спокойно согласилось принять независимость при условии выполнения ряда требований, чему СНК могло лишь позавидовать. На данный момент в Ноократии есть филиалы компаний СНК, а сама Ноократия рассматривается скорее как поставщик ценного технологического оборудования и кладезь выдающихся ученых, что крайне интересуют как отделы разработок отдельных компаний СНК, так и всего государства в целом. + + Правительством СНК проводятся мероприятия по налаживанию безопасности торговых путей с Халифатским Божественным Конгломератом, постепенно налаживая активную торговлю и культурный обмен. Однако дальнейшему укреплению дружеских отношений препятствуют активные боевые действия с ОПЗ и неготовность Конгломерата принимать чью-либо сторону. Не менее важной проблемой является подрывная пиратская деятельность Межпланетарного Братства на торговых маршрутах. + + Отношения между СНК и СССП находятся в висячем положении. Политика СНК во многом отличается от ОПЗ, но государство целиком и полностью продолжает полагаться на частные компании, куда меньше ограничивая их в сравнении с компаниями ОПЗ. Они обрели непозволительное для СССП влияние и силу, а также создали огромный разрыв между финансами и влиянием жителей. С другой стороны — именно возгоревшийся очаг революции зарождающейся СНК дал возможность СССП отделиться от ОПЗ относительно бескровно, ровно как и тихий переворот СССП стал ключевым фактором для ОПЗ в прекращении полномасштабных боевых действий против СНК, давая последним время окрепнуть. + + С Миртанийской Империей, как и ожидало правительство СНК, наладить дружественные отношения не вышло из-за ксенофобной политики первых и высокой популяции ксеносов у вторых. Торговых отношений и спейслиза с Империей тоже не ведётся как из-за отсутствия общих границ, так и из-за политики закрытой торговли самой Империи, а также из-за того, что все доступные боевые силы и корабли нужны самой СНК позарез. + + Межпланетарное братство удостоилось особого внимания со стороны СНК, ведь именно Братство, по мнению СНК, может стать очередным столь востребованным союзником в борьбе против ОПЗ, благодаря которому можно значительно расширить информационную сеть. Правда, действия отдельных группировок братства на территориях СНК, порой, носят абсолютно не дружественный характер. Примером могут послужить многочисленные улики, что напрямую указывают на причастность семьи Дилли Джонса к террористическим актам на государственных заводах СНК. + + Конечно же и в ГИОР есть представители СНК. Если отношения с ОПЗ вновь достигнут войны, то именно возможность воззвать к жалости остальных членов ГИОР может помочь быстро пресечь военный конфликт. В других случаях, особых отношений с ГИОР нет. Можно сказать, что предоставляемая СНК помощь и степень выполнения требований ГИОР в основном зависит от настроения компаний СНК. + + С НТ правительство СНК связывает закупка некоторые патентов и научных статей, которые могли бы так или иначе помочь улучшить эффективность своих войск и получить преимущество над ОПЗ. Иные же технологии покупаются отдельными корпорациями, учреждениями и, в общей сложности, разношерстными бизнесменами. Также СНК неоднократно намекало НТ, что если та в будущем решит выйти из состава ОПЗ насильственным способом, то СНК готово предоставить ей место в своем реестре и военную помощь в обмен на финансирование правительства. Потеря НТ была бы крайне сильным ударом для ОПЗ и значительным дополнением казны СНК. + +book-umpor-contents = + В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. + + Когда гуманитарный кризис стал особенно острым на помощь Федерации пришло СНК. Сейчас практически на безвозмездной основе они совершают регулярные поставки (с помощью корпорации «Космологистика») гуманитарной помощи, сырья и готовой продукции. А также присылают своих специалистов. Правительство Умпорцев понимает, что рано или поздно СНК потребует что-то взамен. Что-то очень существенное, но сейчас у них нет выбора, кроме как принимать поставки. + + С Великой Империей Нотда установился нейтралитет. Ведётся торговля, есть определённое политическое взаимодействие, но нет никаких тесных взаимоотношений. + + СССП считают, что основные ценности Федрации очень близки их социалистическому духу коллективизма труда и общего блага, а потому они договорились с Великой Империей Нотда организовать гуманитарный коридор для поставок материалов и гуманитарной помощи. Взамен Умпорцы предоставляют некоторые технические решения в области химии и биологии чрезвычайных ситуаций, а также приёмы быстрого строительства и перестройки. + + Ноократия Эратна является для Умпорской Федреации жутким и непримиримым врагом. Они находятся в постоянной оппозиции, а на границах всегда дежурят свежие боевые части и флоты. Обе стороны осознают. Что хоть вторая война за отделение минула, но впереди ещё будет третья. Между Империей Миртрана и Федерацией нет практически никаких отношений. Они полностью не интересуют друг друга. + + Халифатский Божественный Конгломерат видит в гуманитарном и нравственном кризисе Федерации возможность распространения своей религии и идеологии. На территории государство действую группы проповедников, речи которых находят активный отклик в самых разных слоях населения. + + Гуманитарный, образовательный и нравственный кризис спровоцировал рост преступности. Межпланетарное Братство воспользовалось этим для расширение своего влияния из-за чего появляются всё более организованные ОПГ. + + Для решения экономических проблем Федерация учредила ряд зон с упрощённым налогообложением, ослабленным законодательством и прочими льготами для привлечения внешних корпораций. Это позволило привлечь немало внешнего капитала. Кроме того, из-за особенности планеты Крения на ней были построены судоверфи Космологистики. Космологистика также помогает со снабжение гуманитарной помощью из других государств. Из-за активности пиратов Федераия и её компании часто нанимаю для защиты транспорта авиагруппы корпорации Витезтви. Корпорация Гефест (Глобальная Инициатива) активно продаёт Федерации сырьё и еду. + + У Федерации нет отношений с Накамура Инжениринг, а с НаноТрейзен некоторое время были натянутые отношения из-за их тесного взаимодействия с Ноократией Эранта. Но сейчас отношения выправляются, и Умпорцы интересуются последними научными достижениями в некоторых важных для них областях. + +book-nooc-contents = + Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. + + Разделение по классам происходит на основе сложной проверки интеллектуальных способностей, которая включает в себя целый ряд испытаний, которые каждый гражданин происходит в возрасте 20-ти лет. Испытания проверяют знания, скорость обучения, работу мозга, интуицию, склонность к психическим заболеваниям, способность применять знания, собирать, усваивать и использоваться предметы и информацию в условиях экстренных ситуаций. Весь этот комплекс мероприятий в народе назван Экзамен. Результат Экзамена зачисляет гражданина в конкретный класс. По ходу жизни гражданин имеет право пересдавать Экзамен каждые два года. Оценка Экзамена составляется по шкале баллов Эранта. В шкале 300 баллов, и она разделена на 15 равных промежутков, которые и соответствуют классам. + + Низший класс (15-13) может претендовать на самые низкие должности - шахтёры, уборщики, работники канализации, чернорабочие, батраки на фермах и подобное. Тупой и монотонный тяжёлый труд. Низкий класс (12-10) может рассчитывать на низкоквалифицированные должности в различных конторах и предприятиях - секретари, клерки, техники, грузчики, монтёры, медсёстры, санитары, водители, солдаты и тому подобное. Не слишком ответственное дело. Средний класс (9-7) могут занимать профессиональные должности, но не выше определённого уровня - инженер, врач, фельдшер, лаборант, бухгалтер, офицер младшего состава и тому подобное. Важное и полезное занятие, но без заделов на руководство. Высокий класс (6-4) могут быть руководителями отделов, заведующими отделения, лабораториями, офицерами среднего состава и так далее. Эти люди важные и уважаемые начальники и руководители. Высший класс (3-1) – это директора, акционеры, члены правительства, высшие чины государства и армии и все подобные сильны сего мира и государства. + + Важно понимать, что высший класс пользуются благами, как у королей. У них есть личные слуги из более низких классов. Их слова — это практически закон. Они по одному движению руки получают всё, что хотят. Их личных счетов хватит на покупку целых городов, а у Умнейших и планет. Напротив, низший класс влачит жалкое существование. Заработанных денег едва хватает на поддержание жизни - базовое питание, уплату налогов, транспортные расходы. + + Очень часто классовое расслоение выражается и в раздельном проживании. Гетто низших, трущобы низких, кварталы средних, районы высоких и планеты высших. Это накладывает не просто сильный отпечаток на единстве общества, но приводит к практически полному регрессу института семьи. Желание жить как можно лучше закладывается в каждого гражданина с детства, и если у родителей появляется ребёнок, который после первого Экзамена оказывается более высокого класса, то он вполне может покинуть родителей и разорвать с ними связи. + + Культивирование личного таланта и интеллекта, а также возможностей, которые можно получить, применяя эти самые интеллект и талант становятся центральной идеей внутренней политики Ноократии. Но если в стремящейся к прибыли научной корпорации НаноТрейзен была организована полноценная и сложная система образования, которая требует на своё существование безумное количество сил и финансов, чтобы как можно большее количество образованных людей приносили как можно большее количество полезной работы и научно-технических достижений, то Ноократия на государственном уровне сформировала культ личности гения. Любого гения государства. При это гения природного. Очень часто редкие граждане, которые имеют врождённый талант крайне быстро поднимались по социальной лестнице классов и росли в карьере, тогда как трудолюбивые люди порой достигали границы, которую уже не в силах были преодолеть своим трудом. + +book-nakamura-contents = + Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. + + О колонизации. На изведанную солнечную систему прилетает колонизационная группа, состоящая из нескольких кораблей, которые терраформируют планеты и строят звездную электростанцию, которая снабжает электричеством все звездные системы. Номенклатура экспедиции состоит из двух кораблей-флагманов, нескольких вспомогательных шаттлов, нужных для организации логистики, а также корабль-танкер, способный выдерживать температуру звёзд. Впоследствии один корабль-флагман становится космической станцией-хабом, а второй используется службой безопасности для защиты колонии от внешних и внутренних угроз. + + Подробнее о колонизации Звезда. На ее орбите строят космическую электростанцию, которая, с помощью солнечных панелей вырабатывает массу энергии. Полученное электричество используют для синтеза антиматериевого топлива, которое впоследствии развозят на танкере по всем колониям. Всю работу на станции выполняют борги, люди не переносят высокую жару. + + Планета для сельского хозяйства. Колонизационный отдел выбирает планету с наиболее подходящей почвой для выращивания растительных культур и разведения скота. Впоследствии эту планету начинают терраформировать - Устанавливают генератор гравитации и создают благоприятную атмосферу на планете. После чего на нее завозят почву пригодную для выращивания еды, а также возводят станцию по добычи воды из атмосферы. Когда на планете появляется достаточно воды происходит массовая высадка генномодифицированных деревьев и растений, которые способны к быстрому фотосинтезу и высокой урожайностью. Когда воздушно-водный цикл способен стабильно поддерживаться, на планете начинают разводить домашний скот. Скот используют для получения мяса и удобрений. Большую часть работе на планете выполняют борги. Люди контролируют стабильность цикла, химический состав почвы и допустимость токсичности растений. + + Планета для добычи. Для этих планет выполняется не полный алгоритм терраформирования - Устанавливается генератор гравитации и строится завод для переплавки ресурсов. Всю работу на планете выполняют борги. + + Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura Engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. + + Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизации, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. + +book-vitz-contents = + 1) Разведывательная авиапара + + Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. + + + 2) Истребительная авиапара + + Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. + + + 3) Истребительное звено + + Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. + + + 4) Разведывательное звено + + Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. + + + 5) Легкобомбардировочное звено + + Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. + + + 6) Тяжелобомбардировочное звено + + Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. + + + 7) Истребительная эскадрилья + + Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. + + + 8) Разведывательная эскадрилья + + Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. + + + 9) Легкобомбардировочная эскадрилья + + Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. + + + 10) Тяжелобомбардировочная эскадрилья + + Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. + + + 11) Истребительный авиаполк + + Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. + + + 12) Бомбардировочный авиаполк + + Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. + + + 13) Специальный авиаполк + + Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. + +book-gefest-contents = + Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. + + После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. + + Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. + + С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. + + Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. + + Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией, изучением которых занимаются другие корпорации. + + + По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. + + С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. + + Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. + + Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. + + Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники, особенно проявившие себя. + +book-conarex-contents = + 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. + + 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. + + 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. + + 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. + + 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. + + 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. + + 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. + + 2721 год. В сферу работы попадает и сектор Импор. + + 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. + + 2728 год. Умирает основатель Ноократии. А Симо почему-то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. + + 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. + + 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. + + 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. + + 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. + + 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. + + 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. + + 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. + + 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. + + 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. + + 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. + + 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. + + 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. + + 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. + + 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. + + 2813 год. Онни умирает, оставляя всё брату Юхани. + + 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. + + 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. + + 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. + + 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! + + 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). + + 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того, Conarex начинает работу на Фронтире. + + 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. + + 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. + + 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. + + 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. + + 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. + +book-petr-contents = + Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. + + Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. + + В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. + + Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. + + Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! + + Все боевики вне зависимости от ранга носят одинаковую форму. Это соответствует Петрищевским идеалам всеобщего равенства. Каждый, будь то новобранец, бывалый боевик, специалист, ветеран или командир, носят одинаковые штаны, куртки с багровыми рукавами, одинаковые пилотки и сапоги. + + Плащ ветеранов и командиров олицетворяет окрашенное кровью угнетённого пролетариата красное знамя. Такие плащи доверяют лишь бывалым воякам и сподвижникам идей революции. Это большая честь, это настоящее признание бойца уважаемым Петрищевцем. + + Абсолютным почтением пользуются исторические революционные личности. На каждой базе Петрищевцев можно найти портреты, исторические труды или иную литературу посвящённую отцам-революции СССП и самым разным революционерам Старой Земли. Эти материалы часто используют в политбеседах с революционерами. Многие перечитываются, как библия революции. + + Петрищевцы живут на базах в атмосфере постоянного братства. Это уже больше, чем товарищество, хоть и зовут друг друга товарищами. Боевики просыпаются вместе, едят вместе, тренируются и занимаются снаряжением вместе, вместе идут в бой. У них нет своей собственности, кроме предметов личной гигиены и мелких мелочей. Им не из-за чего толком ругаться. + + Каждый без промедления готов отдать жизнь ради своих братьев-товарищей. Петрищевцы осознают, как на самом деле они одиноки в широкой галактике. И они осознают это особенно явно, когда встаёт вопрос разрыва с СССП и изгнания. Очень ярко это видно по шлемам скафандров, которые выглядят «плачущими, но опасными». Это ощущение одиночества, не исключительности, а именно одиночества усиливает то самое чувство братства! Петрищевцы всегда спасают своих товарищей. Пилоты десантных транспортов, никогда не покинут падающий шаттл, если на борту братья. + +book-saibasan-contents = + Заводы + + Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. + + Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех. обеспечения коммуникаций, а также инженеры выходного контроля. + + + Дизайн центры + + Как правило — это небольшие офисы, расположенные в самых разных местах. В них работают инженеры-проектировщики схемотехники. Они занимаются разработкой схем по заказам различных предприятий и государств. Проектировка происходит, как полностью сквозная, с созданием полностью своей уникальной микросхемы, так и использующая готовые технологические шаблоны одной из имеющихся сборочных линий. + + + Технологически лаборатории + + Данных лабораторий не много. В них учёные-материаловеды и инженеры-технологи проводят исследования и эксперименты над различными параметрами и показателями, варьируя их и добиваясь куда лучших результатов характеристик! (на самом деле они достигают главной истины любого технолога - «Не ТРОГАЙ, МАТЬ ТВОЮ, НАСТРОЙКИ, А ТО Я ТЕБЕ БОШКУ РАЗНЕСУ!» + + + Административное отделение + + В это отделение входят бухгалтерия, директорат корпорации. Тут же отдел приёма заказов, подразделение спикеров и, как ни странно, информационная безопасность, которая на самом деле напрямую связана с директоратом. + + + Взаимодействие с обществом + + Ни у кого не было уверенности, что дочерняя компания корпорации Cybersun Industries, сможет быть чем-то помимо вспомогательного подразделения, созданного для уменьшения расходов на электронику. Но в итоге это, хоть и дочерняя, но крупная компания-производитель электроники, известная по всей изведанной Галактике. Приборы с чипами Saibasan – это гарантия качества и надёжности. + + + Активы корпорации + По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. + +book-unath-ptone-contents = + Мимика и Жесты + + В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. + + При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. + + + Одежда и Украшения + + Традиционная одежда унатхов обычно крайне открытая, с менее строгими стандартами пристойности, чем людская. Текстура материала играет меньшую роль, чем цвет, а в застёжках ценится прочность. Богатая одежда, в противоречие стандарту, очень тёплая и основана на большом количестве замысловато перекрывающих друг друга слоёв. В местах с прохладным климатом, тёплая одежда наслаждается значительно более утилитарным отношением и резко контрастирует с тропическими аналогами своей обыденностью. + + За годы контакта унатхи переняли человеческую одежду, слегка адаптировав её под свою анатомию. В сферах правления, бизнеса, науки и военного дела, человеческая форма одежды стала стандартной даже среди более традиционалистически настроенных родов. + + За пределами родного сектора одежда унатха больше определяется местной культурой, чем какими-то историческими предпочтениями, но некоторые всё равно будут выбирать более свободную одежду для труда, и более тёплую одежду для щегольства. + + Расположенные вдоль шеи и по бокам головы кожные складки и выступы часто украшаются пирсингом или тату. В рисунках преобладают абстрактные узоры с природными мотивами, которые не потеряют своего смысла или структуры при движении кожи. + + Многие унатхи берегут свои рога, хотя не у всех они встречаются, и их отсутствие не считается чем-то унизительным. Боязнь отколов и повреждений выливается в относительно низкую популярность каких-либо модификаций, но иногда можно встретить ящера с вырезанными на рогах узорами. Нарочное спиливание одного или обоих рогов, сверление и стачивание также имеют место быть, но редко. + + В попытках сгладить или наоборот — подчеркнуть естественные неровности черепа, унатхи обоих полов могут использовать краску и макияж. У мужчин встречаются искусственные костяные наросты, прикрепляющиеся на бровные дуги – подобное, как считается, придаёт образу внушительности и серьезности. + +book-unath-ptwo-contents = + Искусство + + Подобное влияние не обязательно было однобоким. После контакта людям открылся мир унатхского искусства. Пройдя через абсолютно другую историю, стили и устои их творчества значительно отличались от привычных людям, но были и объединяющие факторы, но были и параллели. Например, в унатхской живописи существовали одиночные портреты, однако большой популярностью пользовались массивные родовые и семейные картины, также выполнявшие функцию генеалогического древа. С одним отличием — вместо древовидной структуры, унатхские рода сплетались из множества лиан и ростков, вились вместе, потом расплетались снова или меняли свою конфигурацию. От всей запутанности некоторых образцов у зрителей могла закружиться голова. В целом, во всех визуальных медиумах унатхов часто присутствует больше мелких деталей, чем в человеческих. + + Как и музыка любой другой разумной расы, музыка унатхов предстает в невероятном количестве форм, так что покрыть её в достаточной степени в этой статье не представляется возможным. За последние сотни лет в музыке появилось бесчисленное множество электронных, синтезированных звуков, но унатхи не забывают и свои традиционные инструменты. Унатхские песни пользуются умеренной популярностью — некоторые находят их излишне громкими, с большей ролью ударных инструментов и меньшим упором в мелодию. + + С распространением ТрансЛита, к доступной людям части унатхского наследия присоединились кино и литература. Среди рассказываемых унатхами историй выделяется много отличных от человеческих архетипов. Одним из них являются ссен'гха — мореплаватели времён Золотого Века Морей, исследователи, послы, шпионы. Рассказами об их приключениях изобилует как литература унатхской современности, так и популярная культура. Человеческому наблюдателю будет удобно думать о ссен'гха, как об унатхских аналогах рыцарей или ковбоев — в той роли, которую они играют в культурном сознании общества. + + + Война и Мир + + По окончании Последней Войны в обществе унатхов одно из лидирующих мест заняли антимилитаризм и пацифизм. Всем было ясно одно — подобное не должно повториться никогда. Многие участники Кшеса Д’тхун, федерации-предшественника Унатхской Автономии, начали уменьшать свои армии, полагаясь на сеть тесных торговых и дипломатических связей для урегулирования конфликтов. С раннего возраста унатхам объясняли ужасы войны, и обучали способам решать конфликты без насилия. Молодым унатхам и унати показывали, что сотни лет мира привели к совместному процветанию, и поэтому у каждого разумного существа есть моральная обязанность не допустить войны. Такая практика сохранилась с незначительными изменениями до наших дней, но полтысячи лет назад ее популярность пошатнулась. + + Война с воксами, возникновение ненавидящей всех нелюдей Миртанийской Империи и военное присутствие ОПЗ пошатнули повальную веру в послевоенные идеалы. Часть унатхов начала рассматривать войну и армию как необходимые инструменты для обеспечения дальнейшего существования унатхской цивилизации, а пацифизм — как проявление слабости перед лицом неумолимого врага. Популярность унатхов в качестве солдат ОПЗ и наемников также повысила привлекательность милитаристских настроений. В наши дни военный сектор Моргха Унатх постепенно набирает во влиянии и богатстве, что выливается в растущее недовольство идеологической миролюбивостью. + +book-dione-contents = + Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. + + Притом стоит отметить, что нимфы являются самобытным живым организмом, способным существовать без остальных нимф и древовидного тела. Посему у каждой нимфы есть собственные мозг, желудок, печень, почки, лёгкие, сердце и прочие органы. Но при этом в сочетании трёх нимф и древовидного тела некоторые органы начинали видоизменяться, своего рода, срастаясь с растениями тела. Для одной нимфы метаморфозы нескольких органов разом стали бы смертельны, потому нужно минимум три. У одной видоизменяется мозг, у второй – желудок, у третьей – лёгкие. + + По этим причинам примечателен процесс питания дион. При поглощении еды, диона посредством прочных побегов проталкивает пищу или жидкость в углубление в голове, где располагаются рты трёх нимф. Нимфы потребляют не равное количество еды. Нимфа с видоизменённым мозгом ввиду сравнительно малого (в сравнении с другими видоизменёнными органами вместе) энергопотребления есть всего седьмую часть всей еды, диона с видоизменёнными лёгкими – две седьмые, а нимфа с видоизменённым желудком получает в общей сложности четыре седьмые. Притом из полученной третьей нимфой пищи лишь четверть разлагается полностью и передаёт всю энергию самой нимфе, остальное раскладывается на простые сахара, минеральные вещества, углеводороды и воду. Видоизменённый желудок дионы соединяется напрямую с корнями растений. Это позволяет передавать питательные вещества и воду в растениевидное тело. Притом проводящей питательные вещества жидкостью является вода, которая насыщается получаемыми из еды минеральными веществами, витаминами и сахарами, становясь веществом, напоминающим берёзовый сок. + + Дополнительным механизмом питания и жизнеобеспечения является химосинтез, который у дион отличается от фотосинтеза классических растений несколькими деталями и протекает в видоизменённых лёгких одной из них. Это всё ещё квантовохимическое взаимодействие, которое способно за счёт энергии разделять молекулы воды и углекислого газа, формируя молекулярный кислород и простые сахара для питания растениевидного тела (через похожую корневую систему, сплетённую с альвеолами видоизменённых лёгких одной из нимф). Притом энергия, необходимая для химосинтеза, в отличии от фотосинтеза, получается не от поглощения квантов света, а от энергии, получаемой из расщеплённой пищи в желудке нимфы. Получаемый избыток молекулярного кислорода, может быть, не только поглощён лёгкими производящей его нимфы, но и выйти наружу для дыхания двух других. Так дионы способны буквально дышать углекислым газом. + + Видоизменённый мозг одной из нимф является сравнительно небольшим потребителем энергии и к тому же соединён с мозгами других нимф, но является руководящим органом принятия решений. + +book-bss-contents = + Тут описаны бесчисленные диаграммы, графики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... + + Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять, где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. + + Что же это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. + + Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. + + Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. + +book-scaf-contents = + EVA скафандры + + Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя + + 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. + + 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. + + 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. + + + Скафандры специалистов по работе в открытом космосе + + Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя + + • 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. + + • 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. + + • 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. + + • 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. + + Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. + + Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. + +book-mbsone-contents = + Модуль «Маяк-01» + + В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. + + В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли также и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. + + + Суперкомпьютер «Маяк-02» + + Выяснилось, что для таких задач никакого модуля не хватит. В любом случае размещение его на шаттле приводит к плачевным последствиям. Постепенно улучшая систему и наращивая расчётную мощность, увеличивая надёжность и добавляя системы, препятствующие искажению вероятностных волн, инженеры превратили модуль в целый суперкомпьютер «Маяк-02». + + Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками + + 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) + + 2. Производство суперкомпьютера было сверхдорогим и очень долгим. + + 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. + + 4. Он мог отправить только в одну сторону, но не мог вернуть. + + Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. + + Провал эксперимента подал идею создания отправляемого спутника-маяка. + + + Спутник «Маяк-03» + + На помощь пришли промышленные квантовые компьютеры. Они позволили упростить вычисления, производимые суперкомпьютером, хотя и делали их куда менее точными. При этом новый модуль требовал на много меньше энергии, был сложен в производстве, но, как ни странно, сравнительно дешёвым. + + Важнейшей особенностью нового прототипа была поразительная защита от воздействия БС-модуля. Квантовый компьютер «Маяка-03» был способен находить «битые» данные и расчёты после воздействия колебаний вероятностных вол, и сам их устранял при помощи крайне специфических автоматизированных способов исправления ошибок. + + Всё это позволило создать серию лёгких спутников, которые практически случайно рассылались в разные звёздные системы. После прибытия спутники начинали посылать сигнал отбоя, сообщающий, что всё в порядке, или посылающие сигналы ошибки, сообщающие, что со спутником что-то случилось. также часто случалось, что спутник переставал передавать сигналы, что могло служить признаком его уничтожения. + + Рассылка спутников способствовало колонизации и следованиям дальнего космоса. Но всё ещё оставалась значительная погрешность вычислений и ненадёжности систем даже в уже проложенных путях. Маршруты были налажены, но раз в Земной квартал несколько шаттлов уничтожались или пропадали без вести. + +book-mbstwo-contents = + Искажатели «Маяк-04» и «Маяк-05» + + Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. + + Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). + + + Установка «Маяк-06» + + Определённая кульминация серии маяков стала, когда было решено объединить суперкомпьютер «Маяк-02», который переработали, сделав дешевле, быстрей и энергоэффективней, спутник «Маяк-03» и искажатель «Маяк-05». В результате вышла крупная и дорогая установка «Маяк-06», которая давала возможность вычислять прыжки для нескольких шаттлов, а также принимать прилетающие шаттлы и делать всё так, чтобы многие потоки шаттлов между собой не врезались. Это наиболее современная система, устанавливаемая на космических объектах, станциях, верфях, портах. + + + Искажатель «Маяк-07» + + На данный момент это последняя разработанная итерация технологии. Это громадная и крайне мощная версия искажателя «Маяк-05», совмещённая с переработанным суперкомпьютером. Особенностью его является то, что она «вытягивает» объекты не в радиусе, а вытянутой полосе. Это позволило создать установку, способную реализовывать таможенный контроль на границе секторов, заставляя все шаттлы перемещаться к таможенно-пограничной станции. + + Особенностью выступает то, что на длину полосы «вытягивания» влияют самые разны параметры, а потому порой она сокращается или удлиняется. Это даёт некоторое пространство для реализации возможностей различных челноков, подпольных организаций, террористов, контрабандистов и товарищей с чёрного рынка. + + + Искажатель «Маяк-08» + + Искажать «Маяк-04» имел и иной путь развития, нежели выведение судов из БС пространства к самому маяку на некоторое расстояние. Новая модель была оснащена куда более скромным расчётным модулем, менее чувствительными сканерами, но большей мощностью. Кто-то с иронией считал, что такая модель только и способна, что вытягивать к себе линкоры. Остальным объектам просто не хватило бы энергии, чтобы быть точно замеченными. Но идея изобретателей была не в этом. Данный маяк был способен притягивать к себе высокоэнергетические объекты. То есть субстанции. Которые и без БС-модуля имели огромный отклик в пространстве энергий. Например, сбежавшие из-под контроля сингулярности. Таким образом «Маяк-08» стал серьёзным ответом всем тем обществам, которые ежегодно и ежемесячно твердили об отказе в использовании сингулярных двигателей по причине существования вероятности аварии с их побегом и дальнейшим прилётом непойми куда и созданием ещё большей аварии. Теперь сингулярности можно было ловить. + +book-implants-contents = + Импланты NT + + Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. + + + Имплант трекера + + Данный имплант устанавливается в грудную клетку неподалёку от сердца. Сердце является мышцей, которая постоянно пребывает в движении. А от того постоянно генерирует поверхностное напряжение, которого хватает на поддержание работы импланта. Помимо системы зарядки от мышцы имплант имеет антенну-передатчик, которая при каждом движении сердечной мышцы генерирует сигнал. Сигнал достигает антенн системы внутренней связи объекта НТ, а затем АЛУ (Арифметическо-Логическое устройство) при помощи Фурье-преобразований устанавливает положение импланта и передаёт данные на сервер. Таким образом трекер – это система локального позиционирования, но под кожей. Было бы глупо, если бы при остановке сердца от, скажем, инфаркта или прочих неприятных ситуаций имплант вышел из строя. А потому в него встроек небольшой аккумулятор, продолжающий работу импланта после тревожного использования. + + + Имплант света + + Имплант света представляет собой небольшой, но достаточно мощный светодиодный фонарик на аккумуляторе, и устанавливается в руку. Очевидной проблемой может стать подзарядка аккумулятора, но решение подсказали древние фонарики тысячелетней давности с рычажной подзарядкой. Но в случае импланта рычагом для подзарядки являются мышцы. Носитель может совершить несложные движения рукой и подзарядить батарею своего фонарика, что делает имплант крайне полезным и долговечным. + + + Имплант грустного тромбона + + Имплант устанавливается в район диафрагмы. Имеет в себе небольшой аккумулятор, сторожевой таймер, небольшой чип логики и динамик. При дыхании происходит периодическое расширение и сужение диафрагмы, что совершенно не влияет на имплант. Если же диафрагма перестаёт, то начинается отсчёт секунд на сторожевом таймере. Если время превышает среднее максимальное время задержки дыхания, то сторожевой таймер переполняется и активирует чип, заставляя динамик издать грустный тревожный звук. + + + Имплант водокодера + + Встраивается в горло. Имплант включает в себя матрицу подвижных наночастиц, которые способные перестаиваться, «нарастая» и изменяя параметры голосовых связок из-за чего они начинают звучать иначе. Для регулировки требуется итерационное взаимодействие с подкожными регуляторами частоты и тембра. А именно требуется повернуть регулятор и тут же что-то произнести, дабы проверить звучание. + + + Имплант хонк + + И кто-то же придумал идею, что ряду сотрудников понадобится, возможно, издать громкий предупреждающий звук в ситуации, когда, скажем, коридор заполнен стоящими сотрудниками, мешающими пройти. Для этого был разработан имплант он, работающий аналогично импланту света. Четырёх-шести сгибаний руки хватит, чтобы зарядить батарею импланта и издать громкий предупреждающий звук. + + + Mindshield (майндшилд или имплант защиты разума) – имплант защиты разработки корпорации NanoTrasen, позволяющий нивелировать гипнотическое или психологическое воздействие на носителя. + + Имплант представляет из себя вычислительный чип, микросканер ЭЭГ и сложную сеть искусственный нейронов, а также чип, создающий искусственное увеличение лояльности к корпорации НаноТрейзен. Имплант является сложным в производстве, поэтому даже не весь состав станции удостоен быть носителем данного импланта, впрочем, со временем долгих исследований и модификаций, учёным удалось добиться того, что устанавливать его стало сравнительно просто любому обученному врачу при помощи имплантера стандартного образца. Использование искусственных нейронов позволяет как сканировать активность лобной доли головного мозга, выявляя гипноз или психологическое воздействие, так и стимулировать лобную кору, чтобы вывести мозг в нормальное состояние и избавиться от гипноза или психологического воздействия. Данный имплант постоянно сканирует лобную долю носителя, точно соотносит отклонения от нормы, достигая точности нивелирования гипноза или психологического воздействия на 99%. Работает, если воздействие на носителя протекает малое количество времени, иначе действия гипноза входит в нормальное состояние мозга, перестраивая структура мозга, чьи нейронные сети постоянно видоизменяются, и вывести носителя в первоначальное состояние используя имплант невозможно. diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml index 4f602bb80bb..94bf9b46272 100644 --- a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -20,29 +20,7 @@ layers: - state: book_expensive_crystal - type: Paper - content: Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. - Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целого состояния. Чаще всего встречается кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. - Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. - Также известно. Что космеций обладает карбидообразующими свойствами. - - - В природе встречается и иная форма природных кристаллов космеция. А именно космеций с примесью оксида алюминия и хрома. - Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. - Они так же анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. - - - Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии. - Которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. - Этот эффект используется в модулях БС скачков для двигателей космических кораблей. - Отдельными свойствами выделяются кристаллы, измельчённые в мелкодисперсный порошок. - При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению. - Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. - Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. - - - Космеций так же способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. - Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. - Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. + content: book-expensive-crystal-contents - type: entity parent: BookLoreBase @@ -54,13 +32,7 @@ layers: - state: book_clones - type: Paper - content: По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов за не то что личностей, а за живых существ как таковой, некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. В последствии это выливалось гонения на клонов, их убийствами и погромами их жилищ. Большими проблемами также стал вопрос о юридических правах клонов, их интеграция в общество, осмысления этичности самого процесса клонирования. - - - Апофеозом всего этого стал “Туртельский Кризис” []Данные удалены[] года, когда несколько десятков клонов начали забастовку на малой научной станции под названием “Туртель”, находившееся на орбите Марса и занимавшаяся секретными разработками компании NanoTrasen (именно поэтому на ней было довольно большое количество клонов-экипажа), работа станции была саботирована, а всему не клонированному персоналу было предложено эвакуироваться с неё. После того как все желающие эвакуировались, были и те, кто не являясь клонами решили все-таки остаться на станции тем самым выказав поддержку идеям клонов. Клоны и им сочувствующие смогли настроить аппаратуру станции на одну известную медиа-частоту и обратились по ней со своими требованиями, главным из которых было – предоставления всем клонам на территориях ОПЗ и объектах NanoTrasen равных с обычными гуманоидами прав. В результате долгих и не очень продуктивных переговоров, NanoTrasen не нашла ничего лучше, чем послать на станцию отряд зачистки, прибыв на место они устроили настоящую кровавую баню и когда уже подходили к мостику, были взорваны вместе со всей станцией одним из клонов-инженеров, который смог активировать ядерную боеголовку. Когда все произошедшие стало достоянием широкой публики репутации и активам NanoTrasen был нанесен огромный удар, а на многих планетах и станциях прошли митинги и забастовки в поддержку клонов. Массовые беспорядки нарастали, а СМИ лишь ещё больше подливали масло в огонь, так что ОПЗ приняла “Хартию Прав Клонов” и потребовала того же от NanoTrasen, что последние поспешили и сделать. - - - Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. + content: book-clones-contents - type: entity parent: BookLoreBase @@ -72,16 +44,7 @@ layers: - state: book_DAM - type: Paper - content: Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. - - - Контейнеры с топливом представляют собой магнитные ловушки, где граммы антиматерии парят в полном вакууме, не соприкасаясь со стенками контейнера. - - - Двигатель Антиматерии состоят из ядер и стенок. Ядра являются реакционными камерами, где соприкасаются материя и антиматерия. Для простоты используют Гелий и Антигелий. В ядрах установлены мощнейшие преобразователи, способные улавливать как световую, так и тепловую энергию. Стенки ДАМ выполнены из взрывостойкой, сверхпрочной, плохо проводящей тепло композитов и покрытий с парамагнитными свойствами. - - - Важнейшей частью ДАМ является его контроллер. Это сложное устройство состоит из набора трубок и магнитных бесконтактных транспортёров, которые призваны безопасно и дозированно перенести антиматерию в ядро. Так же на контроллере присутствует консоль, показывающая количество остаток топлива по показанию сверхточных весов и система настройки впрыска. Двух условных единиц антиматерии хватает для полной работоспособности одного ядра ДАМ. При этом если превысить это значение, то преобразователи энергии начнут нагреваться и перегреваться. Со временим тепло может проникнуть в камеры с гелием. Увеличение давления выше критической точки спровоцирует нарушение целостности ДАМ, это выведет из строя магнитные системы, под действием гравитации или иных внешних сил антиматерия коснётся любого вещества в помещении и спровоцирует бесконтрольный уничтожающий взрыв. + content: book-dam-contents - type: entity parent: BookLoreBase @@ -93,18 +56,7 @@ layers: - state: book_faks - type: Paper - content: Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. А потому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты так же заносятся в память. - - Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму. После чего оба потока получают код протокола разбиение на потоки данных. проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, так же каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывает адрес станции. Сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. - - - Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд. Затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. - - - Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. - - - Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. + content: book-faks-contents - type: entity parent: BookLoreBase @@ -116,61 +68,7 @@ layers: - state: book_famalis - type: Paper - content: Семья Дилли Джонсона - - Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом готовых выступает власть Дона. А джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане не заплатившие за услуги «полиции» могут так же быть подвергнуты атаке джони или не получают услуги расследования или охраны. Если же так получилось. Что джони защитили гражданине без оплаченной услуги. То тот обязуется выплатить пенни за оказанную услугу. В случае невыполнения этого обязательства его долг может быть продан другой Семье или же джони позаботятся о вечном покое неплатильщика. - - Во внешнем мире джони известны, как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны, как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D». лентой патронов вокруг и одной красной розой, продетой через букву. - - - Клан Сава - - Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это проффессиональные телохранители. Так же они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают. Что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция так же является продуктом работы заводов клана Сава. - - Во всей галактике савы – это пираты, налётчики. Грабители торговых судов. А также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи. Но пока они не наняты, являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. - - - Союз «Клевер» - - Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Кревер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают, как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. - - В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Так же их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. - - - Организация «Ворбакс» - - Ворбаки или же ворбы выполняют роль тайной полиции государства. А также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостинец и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. - - Контрразведывательные управления и организации гос.безопасности разных стран тратит достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостинец «тенистый домик» - - - Семья Глазиуса Мора - - Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. - - За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. - - - Семья Фенарио - - Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. Так же они вносят пожертвования на образование и благотворительность, так же устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. - - В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Так же они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. - - - Фонд Мола Гола - - Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. - - - Семья Синий Камень - - Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. - - - Союз Границ - - Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. Так же управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. + content: book-famalis-contents - type: entity parent: BookLoreBase @@ -182,13 +80,7 @@ layers: - state: book_grav - type: Paper - content: Генераторы гравитации отличаются лишь мощностью. Но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности. С антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. - - - Генератор же гравитации представляет собой невероятное сочетание уникальной по своей природе плазмы с антиматерией. При облучении плазмы антигелием формируется не обычная фотонная вспышка, а вспышка гравитационного антиполя (оно же «поле искусственной гравитации»). Все тела, попадающие в действие антиполя начинают воспроизводить гравитационное искажение, не меняя свою стандартную массу, а формируя мнимую гравитационную массу. Таким образом у всего в поле действия генератора гравитации увеличивается ньютоновское притяжение друг к другу, не используя центробежное вращение, как в космических кораблях тысячелетней давности. - - - Незначительным побочным эффектом является формирование отрицательной мнимой массы у самого генератора, из-за чего его может переносить один человек, ибо генератор очень лёгкий. + content: book-grav-contents - type: entity parent: BookLoreBase @@ -200,72 +92,7 @@ layers: - state: book_halifat - type: Paper - content: Духовная состовляющая - - - Шахада - - Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. - - - Намаз - - Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. - - - Саум - - Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. - - - Закят - - Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег идущих к Духовному собранию идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, так же на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. - - - Хадж - - Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а имено - - 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. - - 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. - - 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. - - - - Земная составляющая - - - Ограниченная монархия - - Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. - - - Национализм - - Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. - - - Народность - - Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. - - - Лациизм - - Установление преимущественно светского характера государства. Недопускаяния религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. - - - Этатизм - - Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. - - - Революционность - - Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. + content: book-halifat-contents - type: entity @@ -278,16 +105,7 @@ layers: - state: book_redspace - type: Paper - content: Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. - - - Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. - - - Учёные могут лишь предполагать количество осей и орты-операторы, которые по ним отложены. Тем не менее уже есть определённые идеи описания процессов данного пространства. Каждая точка является сочетанием операторов квантовой вероятности, импульса, координаты и понятия существования. Неотъемлемым элементом динамики подобных пространств является оператор эволюции. Он воплощает в себе вариант изменения пространства. - - - По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. + content: book-redspace-contents - type: entity parent: BookLoreBase @@ -299,88 +117,7 @@ layers: - state: book_ships - type: Paper - content: (S - Sigma) МКК – маленькие космические корабли. - - К гражданским МКК относятся корабли следующий назначений. - - 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. - - 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. - - 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. - - - К военным МКК относят корабли несущие на себе какое либо вооружение. Они имеют следующие назначения. - - 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого либо вооружения и брони. - - 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. - - 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. - - - - (T – Teta) СКК – средние космические корабли. - - К гражданским СКК относятся. - - 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. - - 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. - - - К военным ССК относятся. - - 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. - - 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. - - 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. - - - - (O – Omicron) СККК – Средне крупные космические корабли. - - 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. - - 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. - - - - (G – Gamma) ККК – Крупный космический корабль. - - 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. - - 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать Недолинкорами. - - 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. - - - - (B – Beta) ТКК – Тяжёлые космические корабли. - - 1) Линкор. Линкоры - это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. - - 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. - - 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. - - 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. - - - - (A – Alpha) СТКК – Сверх тяжёлые боевые корабли. - - Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты - это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится, не меньше чем затраты на содержание какой-нибудь около столичной планеты. - - - - ОКК – Особые космические корабли. - - 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. - - 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ находящихся в состоянии гибернации. - + content: book-ships-contents - type: entity parent: BookLoreBase @@ -392,137 +129,7 @@ layers: - state: book_zp - type: Paper - content: Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. - - - Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. - - - Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 - - - Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 - - - Коэффициенты по назначении станции -- Административная станция – 2,0 Бизнес станция – 1,6 Исследовательская станция – 1,7 Экспериментальная станция – 1,8 Коммерческая станция – 1,3 Медицинская станция – 1,2 Оборонная станция – 1,7 Транспортная станция – 1,0 - - - Коэффициенты по цели станции -- Отдел напрямую занимается целью станции – 1,5 Отдел косвенно связан с целью станции – 1,25 Отдел не занимается целью станции – 1,0 - - - Коэффициенты по профессиям - - Повар -- 1 - - Уборщик -- 1 - - Сервисный работник -- 1 - - Священник -- 1 - - Репортёр -- 1 - - Музыкант -- 1 - - Мим -- 1 - - Клоун -- 1 - - Зоотехник -- 1 - - Ботаник -- 1 - - Боксёр -- 1 - - Библиотекарь -- 1 - - Бармен -- 1 - - Грузчик -- 1 - - Технический ассистент -- 1 - - Кадет СБ -- 1 - - Научный ассистент -- 1 - - Интерн -- 1 - - - Офицер СБ -- 1.1 - - Врач -- 1.1 - - Инженер -- 1.1 - - Психолог -- 1.1 - - - Химик -- 1.2 - - Утилизатор -- 1.2 - - Атмосферный техник -- 1.2 - - - Парамедик -- 1.3 - - Детектив -- 1.3 - - Учёный -- 1.3 - - - Глава персонала -- 1.4 - - Квартирмейстер -- 1.4 - - - Смотритель -- 1.5 - - Ведущий врач -- 1.5 - - Ведущий инженер -- 1.5 - - Инструктор СБ -- 1.5 - - Ведущий учёный -- 1.5 - - - Старший инженер -- 1.8 - - Научный руководитель -- 1.8 - - Главный Врач -- 1.8 - - Глава Службы Безопасности -- 1.8 - - - Капитан -- 2.5 - - - Коэффициенты штрафов - - Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. Гибель вне станции – 0,1. Факт формируется после окончания смены. Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. Отстранение от должности и нарушение СРП При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. - - - Гибель - - В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получения инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждени - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам Ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. - - - Прибыль станции - - Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. - - - Растраты - - Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. - - - Дополнительное премирование - - Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. + content: book-zp-contents - type: entity parent: BookLoreBase @@ -530,153 +137,35 @@ name: Политическая система СССП description: Что там у них делается в этом их социализма... components: - - type: Sprite - layers: - - state: book_polit_USSP - - type: Paper - content: Первые среди равных - - Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. - - - Президиум и Советы - - Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. - - Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. - - Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. - - - Народные секретариаты и Генеральный Секретарь - - Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. - - Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. - - - Суды и главное управление красных комиссаров - - Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). - - Суды гражданских дел так же классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. - Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. - - -- type: entity - parent: BookLoreBase - id: BookMirt - name: Культурный столп Империи Миртана - description: Может быть, если поняти их культуру, то можно и налажить связи? - components: - - type: Sprite - layers: - - state: book_cult_mirt - - type: Paper - content: В данный момент в народе доминирует одна единственная идея. - - «Все умрут. Гибель неминуема. Ничто это не остановит. Всё что мы можем – отсрочить конец галактики». Бесконечный рой ксеноморфов показал тщетность существования человечества. Но миртранийцы давно преодолели панику и свыклись с мыслью о своей смерти. Они всегда готовы умереть. Они верят, что являются щитом для Галактики. Не несокрушимым. Щитом с ограниченой толщиной, что истончается с каждым днём. - - Они осознают, что умрут сами. Что умрут их любимые родители. Что умрут их близкие, их друзья. Что, возможно, им придётся хоронить своих детей. Или то что от них осталось. А возможно их детей сожрут с концом и на могильном холмике окажется лишь небольшой памятный камень с фотографией того, от кого не осталось и мезинца. Эта идея живёт в каждом гражданине, но особенно она сильна у жителей планет-крепостей в Линии Надежда и Любовь. Каждый гражаднин Империи проходил базовую военную подготовку и умеет пользоваться оружием. Но жители Линий могут соревноваться в умении с солдатами некоторых ЧВК и стран. Они дисциплинированы, живут по практически военному расписанию, знают где находятся склад с оружием и по первому протяжному и рвущему душу сигналу тревоги готовы стиснуть зубы, сжать кулаки до крови, и, стараясь игнорировать подступающие слёзы, заранее хороня своих детей, друзей и близких, идти к ближайшему арсеналу и вооружаться, дабы отсрочить момент гибели человечества хотя бы на мгновение. - - Так умирали люди на планетах-крепостя Линии Вера. Так умирают люди на планетах Линии Надежда прямо сейчас. Так готовы умирать люди на планетах-крепостях Линии любовь. - - И они не уедут. Не улетят. Не потому, что тоталитарное государство их не выпустит. Нет. Просто… они понимают, что гибель неминуема в любом случае. Так лучше встретить с оружием в руках! Когда закончатся патроны – штыками! Когда сломаются штыки – ножами! А когда затупится нож, выгрызать ксеноморфам глотки ногтями и зубами. Ибо нужно отсрочить неминуемое… Хоть на одну наносекунду. Хоть на одного ксеноморфа. - - Легенды гласят о моментах, когда Империя была в шаге от падения. Тогда являлся Император Миртан и создавал Проявление! Оно помогало уничтожить угрозу, но и заставляло Императора угаснуть… А потому каждый гражданин понимает, что Император это не просто небожитель, а буквально равный им спаситель Человечества. Потому он всеми любимый и почитаемый. - - Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… - - Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». - -- type: entity - parent: BookLoreBase - id: BookGior - name: ГИОР - description: Что такое Глобальная инициатива Объединённых Рас - components: - - type: Sprite - layers: - - state: book_gior - - type: Paper - content: ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан) , идейно ГИОР пришла на замену ООН, организации некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций а также, контроль за соблюдением принятых законов. - - - Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. - - Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) - - Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) - - Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) - - Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) - - - 1) Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ), является достаточно старым формированием и именно она изначально и носила название ГИОР и только позже, после формирования других государств она была переименована в ГИОРиМУ. Целью данной организации является урегулирование вопросов касаемых межрасового общения, а также отслеживание за соблюдением ОПРС (Общие Права Разумных Существ), важным уточнением будет то, что при нарушении ОПРС каким либо государством или корпорацией, эту ситуацию будет рассматривать Всегалактический Суд Разумных Существ. - - - В состав данной организации входят все расы галактики, интересы которых представляют их представители. От каждой расы может выдвигаться несколько представителей, и их число зависит от численности самой расы (1 представитель на 10 миллиардов представителей этой расы). Из-за того, что точное число представителей какой-либо расы подчитать достаточно сложно, общим решением принято округлять число представителей в меньшую сторону. Также важным уточнением будет, что ГИОРиМУ является надгосударственным формированием, а значит, что представители рас могут являеться гражданами разных государств. - - - В состав ГИОРиМУ входят. - - Люди – порядка 71 представителей - - Унатхи – порядка 31 представителей - - Дворфы – порядка 35 представителя - - Слаймолюды – порядка 11 представителей - - Нианаы – порядка 34 представителя - - Воксы – 1 представитель (выступает в качестве наблюдателя) - - Арахниды – порядка 47 представителей - - Дионы – 1 представитель (выступает в качестве наблюдателя) - - Таяраны – порядка 46 представителей - - Вульпканины – порядка 60 представителей - - - 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. - - - В состав ГИОРиГУ входят. - - ОПЗ (Объединённое Правительство Земли) - - Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпканины - - Союз Советских Социалистических Планет - - Умпорская Федерация - - Великая Империя Нотда - - Ноократия Эранта - - СНК (Союз Независимых Колоний) - - Халифатский Божественный Конгломерат - - - В качестве наблюдателей в ГИОР находятся. - - Империя Миртана - - Корпорации Большой Пятёрки - - - 3) Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ), была создана относительно недавно в 2781 году, в ответ на разрешение, выданное правительством ОПЗ, корпорациям на освоение регионов фронтира. Занимается контролем за исполнением принятых резолюций и соглашений, а также подписанием новых. При этом ГИОРиКУ имеет огромную когорту своих представителей, которые постоянно находятся в разъездах по всей галактике и занимаются отслеживанием нарушений. - + - type: Sprite + layers: + - state: book_polit_USSP + - type: Paper + content: book-ussp-contents - 4) Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР), самая «молодая» организация в составе ГИОР. Занимается тем, что отслеживает всевозможные угрозы галактике, а также старается их предотвратить. Самой первой и на данный момент единственной задачей является отслеживание ситуации с ксеноморфами, а также всевозможная поддержка государств, которые занимаются урегулированием данной проблемы. Постоянными членами СовБезГИОР) являются ОПЗ и Империя Миртана (не смотря на статус наблюдателя в заседаниях самой ГИОРиГУ, с недавних пор Империя Миртана обладает особым правовым статусов в СовБезГИОР из-за того, что именно она является щитом галактики от угрозы ксеноморфов). +- type: entity + parent: BookLoreBase + id: BookMirt + name: Культурный столп Империи Миртана + description: Может быть, если поняти их культуру, то можно и налажить связи? + components: + - type: Sprite + layers: + - state: book_cult_mirt + - type: Paper + content: book-mirt-contents - Также в состав СовБезГИОР входят все остальные государства и организации, которые входят в ГИОРиГУ +- type: entity + parent: BookLoreBase + id: BookGior + name: ГИОР + description: Что такое Глобальная инициатива Объединённых Рас + components: + - type: Sprite + layers: + - state: book_gior + - type: Paper + content: book-gior-contents - type: entity parent: BookLoreBase @@ -688,23 +177,7 @@ layers: - state: book_snk - type: Paper - content: С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. - - Немалая часть бюджета уходит на попытки упрочнить политические отношения с Умпорской Федерацией. В этом правительство СНК находит крайне благодатную почву, ибо Умпорская Федерация страдает от внутренних кризисов, постепенно становясь зависимой от поставок гуманитарной помощи и производственного сырья из СНК и СССП. - - К Ноократии Эранта СНК относится нейтрально. Ноократия в своё время также пошла против ОПЗ, что принималось одобрительно со стороны СНК, так как это могло значить появление ценного союзника в будущих конфликтах. К всеобщему удивлению, ОПЗ спокойно согласилось принять независимость при условии выполнения ряда требований, чему СНК могло лишь позавидовать. На данный момент в Ноократии есть филиалы компаний СНК, а сама Ноократия рассматривается скорее как поставщик ценного технологического оборудования и кладезь выдающихся ученых, что крайне интересуют как отделы разработок отдельных компаний СНК, так и всего государства в целом. - - Правительством СНК проводятся мероприятия по налаживанию безопасности торговых путей с Халифатским Божественным Конгломератом, постепенно налаживая активную торговлю и культурный обмен. Однако дальнейшему укреплению дружеских отношений препятствуют активные боевые действия с ОПЗ и неготовность Конгломерата принимать чью-либо сторону. Не менее важной проблемой является подрывная пиратская деятельность Межпланетарного Братства на торговых маршрутах. - - Отношения между СНК и СССП находятся в висячем положении. Политика СНК во многом отличается от ОПЗ, но государство целиком и полностью продолжает полагаться на частные компании, куда меньше ограничивая их в сравнении с компаниями ОПЗ. Они обрели непозволительное для СССП влияние и силу, а также создали огромный разрыв между финансами и влиянием жителей. С другой стороны — именно возгоревшийся очаг революции зарождающейся СНК дал возможность СССП отделиться от ОПЗ относительно бескровно, ровно как и тихий переворот СССП стал ключевым фактором для ОПЗ в прекращении полномасштабных боевых действий против СНК, давая последним время окрепнуть. - - С Миртанийской Империей, как и ожидало правительство СНК, наладить дружественные отношения не вышло из-за ксенофобной политики первых и высокой популяции ксеносов у вторых. Торговых отношений и спейслиза с Империей тоже не ведётся как из-за отсутствия общих границ, так и из-за политики закрытой торговли самой Империи, а также из-за того, что все доступные боевые силы и корабли нужны самой СНК позарез. - - Межпланетарное братство удостоилось особого внимания со стороны СНК, ведь именно Братство, по мнению СНК, может стать очередным столь востребованным союзником в борьбе против ОПЗ, благодаря которому можно значительно расширить информационную сеть. Правда, действия отдельных группировок братства на территориях СНК, порой, носят абсолютно не дружественный характер. Примером могут послужить многочисленные улики, что напрямую указывают на причастность семьи Дилли Джонса к террористическим актам на государственных заводах СНК. - - Конечно же и в ГИОР есть представители СНК. Если отношения с ОПЗ вновь достигнут войны, то именно возможность воззвать к жалости остальных членов ГИОР может помочь быстро пресечь военный конфликт. В других случаях, особых отношений с ГИОР нет. Можно сказать, что предоставляемая СНК помощь и степень выполнения требований ГИОР в основном зависит от настроения компаний СНК. - - С НТ правительство СНК связывает закупка некоторые патентов и научных статей, которые могли бы так или иначе помочь улучшить эффективность своих войск и получить преимущество над ОПЗ. Иные же технологии покупаются отдельными корпорациями, учреждениями и, в общей сложности, разношерстными бизнесменами. Также СНК неоднократно намекало НТ, что если та в будущем решит выйти из состава ОПЗ насильственным способом, то СНК готово предоставить ей место в своем реестре и военную помощь в обмен на финансирование правительства. Потеря НТ была бы крайне сильным ударом для ОПЗ и значительным дополнением казны СНК. + content: book-snk-contents - type: entity parent: BookLoreBase @@ -716,23 +189,7 @@ layers: - state: book_umpor - type: Paper - content: В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. - - Когда гуманитарный кризис стал особенно острым на помощь Федерации пришло СНК. Сейчас практически на безвозмездной основе они совершают регулярные поставки (с помощью корпорации «Космологистика») гуманитарной помощи, сырья и готовой продукции. А также присылают своих специалистов. Правительство Умпорцев понимает, что рано или поздно СНК потребует что-то взамен. Что-то очень существенное, но сейчас у них нет выбора, кроме как принимать поставки. - - С Великой Империей Нотда установился нейтралитет. Ведётся торговля, есть определённое политическое взаимодействие, но нет никаких тесных взаимоотношений. - - СССП считают, что основные ценности Федрации очень близки их социалистическому духу коллективизма труда и общего блага, а потому они договорились с Великой Империей Нотда организовать гуманитарный коридор для поставок материалов и гуманитарной помощи. Взамен Умпорцы предоставляют некоторые технические решения в области химии и биологии чрезвычайных ситуаций, а также приёмы быстрого строительства и перестройки. - - Ноократия Эратна является для Умпорской Федреации жутким и непримиримым врагом. Они находятся в постоянной оппозиции, а на границах всегда дежурят свежие боевые части и флоты. Обе стороны осознают. Что хоть вторая война за отделение минула, но впереди ещё будет третья. Между Империей Миртрана и Федерацией нет практически никаких отношений. Они полностью не интересуют друг друга. - - Халифатский Божественный Конгломерат видит в гуманитарном и нравственном кризисе Федерации возможность распространения своей религии и идеологии. На территории государство действую группы проповедников, речи которых находят активный отклик в самых разных слоях населения. - - Гуманитарный, образовательный и нравственный кризис спровоцировал рост преступности. Межпланетарное Братство воспользовалось этим для расширение своего влияния из-за чего появляются всё более организованные ОПГ. - - Для решения экономических проблем Федерация учредила ряд зон с упрощённым налогообложением, ослабленным законодательством и прочими льготами для привлечения внешних корпораций. Это позволило привлечь немало внешнего капитала. Кроме того, из-за особенности планеты Крения на ней были построены судоверфи Космологистики. Космологистика также помогает со снабжение гуманитарной помощью из других государств. Из-за активности пиратов Федераия и её компании часто нанимаю для защиты транспорта авиагруппы корпорации Витезтви. Корпорация Гефест (Глобальная Инициатива) активно продаёт Федерации сырьё и еду. - - У Федерации нет отношений с Накамура Инжениринг, а с НаноТрейзен некоторое время были натянутые отношения из-за их тесного взаимодействия с Ноократией Эранта. Но сейчас отношения выправляются, и Умпорцы интересуются последними научными достижениями в некоторых важных для них областях. + content: book-umpor-contents - type: entity parent: BookLoreBase @@ -744,17 +201,7 @@ layers: - state: book_nooc - type: Paper - content: Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. - - Разделение по классам происходит на основе сложной проверки интеллектуальных способностей, которая включает в себя целый ряд испытаний, которые каждый гражданин происходит в возрасте 20-ти лет. Испытания проверяют знания, скорость обучения, работу мозга, интуицию, склонность к психическим заболеваниям, способность применять знания, собирать, усваивать и использоваться предметы и информацию в условиях экстренных ситуаций. Весь этот комплекс мероприятий в народе назван Экзамен. Результат Экзамена зачисляет гражданина в конкретный класс. По ходу жизни гражданин имеет право пересдавать Экзамен каждые два года. Оценка Экзамена составляется по шкале баллов Эранта. В шкале 300 баллов, и она разделена на 15 равных промежутков, которые и соответствуют классам. - - Низший класс (15-13) может претендовать на самые низкие должности - шахтёры, уборщики, работники канализации, чернорабочие, батраки на фермах и подобное. Тупой и монотонный тяжёлый труд. Низкий класс (12-10) может рассчитывать на низкоквалифицированные должности в различных конторах и предприятиях - секретари, клерки, техники, грузчики, монтёры, медсёстры, санитары, водители, солдаты и тому подобное. Не слишком ответственное дело. Средний класс (9-7) могут занимать профессиональные должности, но не выше определённого уровня - инженер, врач, фельдшер, лаборант, бухгалтер, офицер младшего состава и тому подобное. Важное и полезное занятие, но без заделов на руководство. Высокий класс (6-4) могут быть руководителями отделов, заведующими отделения, лабораториями, офицерами среднего состава и так далее. Эти люди важные и уважаемые начальники и руководители. Высший класс (3-1) – это директора, акционеры, члены правительства, высшие чины государства и армии и все подобные сильны сего мира и государства. - - Важно понимать, что высший класс пользуются благами, как у королей. У них есть личные слуги из более низких классов. Их слова — это практически закон. Они по одному движению руки получают всё, что хотят. Их личных счетов хватит на покупку целых городов, а у Умнейших и планет. Напротив, низший класс влачит жалкое существование. Заработанных денег едва хватает на поддержание жизни - базовое питание, уплату налогов, транспортные расходы. - - Очень часто классовое расслоение выражается и в раздельном проживании. Гетто низших, трущёбы низких, кварталы средних, районы высоких и планеты высших. Это накладывает не просто сильный отпечаток на единстве общества, но приводит к практически полному регрессу института семьи. Желание жить как можно лучше закладывается в каждого гражданина с детства, и если у родителей появляется ребёнок, который после первого Экзамена оказывается более высокого класса, то он вполне может покинуть родителей и разорвать с ними связи. - - Культивирование личного таланта и интеллекта, а также возможностей, которые можно получить, применяя эти самые интеллект и талант становятся центральной идеей внутренней политики Ноократии. Но если в стремящейся к прибыли научной корпорации НаноТрейзен была организована полноценная и сложная система образования, которая требует на своё существование безумное количество сил и финансов, чтобы как можно большее количество образованных людей приносили как можно большее количество полезной работы и научно-технических достижений, то Ноократия на государственном уровне сформировала культ личности гения. Любого гения государства. При это гения природного. Очень часто редкие граждане, которые имеют врождённый талант крайне быстро поднимались по социальной лестнице классов и росли в карьере, тогда как трудолюбивые люди порой достигали границы, которую уже не в силах были преодолеть своим трудом. + content: book-nooc-contents - type: entity parent: BookLoreBase @@ -766,19 +213,7 @@ layers: - state: book_nakamura - type: Paper - content: Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. - - О колонизации На изведанную солнечную систему прилетает колонизационная группа состоящая из нескольких кораблей которые трраформируют планеты и строят звездную электростанцию, которая снабжает электричеством все звездные системы. Номенклатура экспедиции состоит из двух кораблей-флагманов, нескольких вспомогательных шаттлов, нужных для организации логистики, а также корабль-танкер, способный выдерживать температуру звёзд. Впоследствии один корабль-флагман становится космической станцией-хабом, а второй используется службой безопасности для защиты колонии от внешних и внутренних угроз. - - Подробнее о колонизации Звезда. На ее орбите строят космическую электростанцию, которая, с помощью солнечных панелей вырабатывает массу энергии. Полученное электричество используют для синтеза антиматерального топлива которое впоследствии развозят на танкере по всем колониям. Всю работу на станции выполняют борги, люди не переносят высокую жару. - - Планета для сельского хозяйства. Колонизационный отдел выбирает планету с наиболее подходящей почвой для выращивания растительных культур и разведения скота. Впоследствии эту планету начинают терраформировать - Устанавливают генератор гравитации и создают благоприятную атмосферу на планете. После чего на нее завозят почву пригодную для выращивания еды, а также возводят станцию по добычи воды из атмосферы. Когда на планете появляется достаточно воды происходит массовая высадка генно модифицированных деревьев и растений, которые способны к быстрому фотосинтезу и высокой урожайностью. Когда воздушно-водный цикл способен стабильно поддерживаться, на планете начинают разводить домашний скот. Скот используют для получения мяса и удобрений. Большую часть работе на планете выполняют борги. Люди контролируют стабильность цикла, химический состав почвы и допустимость токсичности растений. - - Планета для добычи. Для этих планет выполняется не полный алгоритм терраформирования - Устанавливается генератор гравитации и строится завод для переплавки ресурсов. Всю работу на планете выполняют борги. - - Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. - - Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизация, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. + content: book-nakamura-contents - type: entity parent: BookLoreBase @@ -790,69 +225,7 @@ layers: - state: book_vitz - type: Paper - content: 1) Разведывательная авиапара - - Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. - - - 2) Истребительная авиапара - - Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. - - - 3) Истребительное звено - - Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. - - - 4) Разведывательное звено - - Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. - - - 5) Легкобомбардировочное звено - - Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. - - - 6) Тяжелобомбардировочное звено - - Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. - - - 7) Истребительная эскадрилья - - Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. - - - 8) Разведывательная эскадрилья - - Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. - - - 9) Легкобомбардировочная эскадрилья - - Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. - - - 10) Тяжелобомбардировочная эскадрилья - - Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. - - - 11) Истребительный авиаполк - - Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. - - - 12) Бомбордировочный авиаполк - - Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. - - - 13) Специальный авиаполк - - Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. + content: book-vitz-contents - type: entity parent: BookLoreBase @@ -864,28 +237,7 @@ layers: - state: book_gefest - type: Paper - content: Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. - - После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. - - Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. - - С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. - - Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. - - Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией,, изучением которых занимаются другие корпорации. - - - По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. - - С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. - - Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. - - Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. - - Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники особенно проявившие себя. + content: book-gefest-contents - type: entity parent: BookLoreBase @@ -897,77 +249,7 @@ layers: - state: book_conarex - type: Paper - content: 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. - - 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. - - 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. - - 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. - - 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. - - 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. - - 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. - - 2721 год. В сферу работы попадает и сектор Импор. - - 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. - - 2728 год. Умирает основатель Ноократии. А Симо почему то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. - - 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. - - 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. - - 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. - - 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. - - 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. - - 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. - - 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. - - 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. - - 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. - - 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. - - 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. - - 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. - - 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. - - 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. - - 2813 год. Онни умирает, оставляя всё брату Юхани. - - 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. - - 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. - - 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. - - 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! - - 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). - - 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того Conarex начинает работу на Фронтире. - - 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. - - 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. - - 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. - - 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. - - 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. + content: book-conarex-contents - type: entity parent: BookLoreBase @@ -979,25 +261,7 @@ layers: - state: book_petr - type: Paper - content: Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. - - Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. - - В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. - - Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. - - Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! - - Все боевики вне зависимости от ранга носят одинаковую форму. Это соответствует Петрищевским идеалам всеобщего равенства. Каждый, будь то новобранец, бывалый боевик, специалист, ветеран или командир, носят одинаковые штаны, куртки с багровыми рукавами, одинаковые пилотки и сапоги. - - Плащ ветеранов и командиров олицетворяет окрашенное кровью угнетённого пролетариата красное знамя. Такие плащи доверяют лишь бывалым воякам и сподвижникам идей революции. Это большая честь, это настоящее признание бойца уважаемым Петрищевцем. - - Абсолютным почтением пользуются исторические революционные личности. На каждой базе Петрищевцев можно найти портреты, исторические труды или иную литературу посвящённую отцам-революции СССП и самым разным революционерам Старой Земли. Эти материалы часто используют в политбеседах с революционерами. Многие перечитываются, как библия революции. - - Петрищевцы живут на базах в атмосфере постоянного братства. Это уже больше, чем товарищество, хоть и зовут друг друга товарищами. Боевики просыпаются вместе, едят вместе, тренируются и занимаются снаряжением вместе, вместе идут в бой. У них нет своей собственности, кроме предметов личной гигиены и мелких мелочей. Им не из-за чего толком ругаться. - - Каждый без промедления готов отдать жизнь ради своих братьев-товарищей. Петрищевцы осознают, как на самом деле они одиноки в широкой галактике. И они осознают это особенно явно, когда встаёт вопрос разрыва с СССП и изгнания. Лчень ярко это видно по шлемам скафандров, которые выглядят «плачущими, но опасными». Это ощущение одиночества, не исключительности, а именно одиночества усиливает то самое чувство братства! Петрищевцы всегда спасают своих товарищей. Пилоты десантных транспортов, никогда не покинут падающий шаттл, если на борту братья. + content: book-petr-contents - type: entity parent: BookLoreBase @@ -1009,37 +273,7 @@ layers: - state: book_saibasan - type: Paper - content: Заводы - - Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. - - Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех.обеспечения коммуникаций, а также инженеры выходного контроля. - - - Дизайн центры - - Как правило это небольшие офисы, расположенные в самых разных местах. В них работают инженеры-проектировщики схемотехники. Они занимаются разработкой схем по заказам различных предприятий и государств. Проектировка происходит, как полностью сквозная, с созданием полностью своей уникальной микросхемы, так и использующая готовые технологические шаблоны одной из имеющихся сборочных линий. - - - Технологически лаборатории - - Данных лабораторий не много. В них учёные-материаловеды и инженеры-технологи проводят исследования и эксперименты над различными параметрами и показателями, варьируя их и добиваясь куда лучших результатов характеристик! (на самом деле они достигают главной истины любого технолога - «Не ТРОГАЙ, МАТЬ ТВОЮ, НАСТРОЙКИ, А ТО Я ТЕБЕ БОШКУ РАЗНЕСУ!» - - - Административное отделение - - В это отделение входят бухгалтерия, директорат корпорации. Тут же отдел приёма заказов, подразделение спикеров и, как ни странно, информационная безопасность, которая на самом деле напрямую связана с директоратом. - - - Взаимодействие с обществом - - Ни у кого не было уверенности, что дочерняя компания корпорации Cybersun Industries, сможет быть чем-то помимо вспомогательного подразделения, созданного для уменьшения расходов на электронику. Но в итоге это, хоть и дочерняя, но крупная компания-производитель электроники, известная по всей изведанной Галактике. Приборы с чипами Saibasan – это гарантия качества и надёжности. - - - Активы корпорации - По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. - - + content: book-saibasan-contents - type: entity parent: BookLoreBase @@ -1051,27 +285,7 @@ layers: - state: book_unath_1 - type: Paper - content: Мимика и Жесты - - В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. - - При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. - - - Одежда и Украшения - - Традиционная одежда унатхов обычно крайне открытая, с менее строгими стандартами пристойности, чем людская. Текстура материала играет меньшую роль, чем цвет, а в застёжках ценится прочность. Богатая одежда, в противоречие стандарту, очень тёплая и основана на большом количестве замысловато перекрывающих друг друга слоёв. В местах с прохладным климатом, тёплая одежда наслаждается значительно более утилитарным отношением и резко контрастирует с тропическими аналогами своей обыденностью. - - За годы контакта унатхи переняли человеческую одежду, слегка адаптировав её под свою анатомию. В сферах правления, бизнеса, науки и военного дела, человеческая форма одежды стала стандартной даже среди более традиционалистически настроенных родов. - - За пределами родного сектора одежда унатха больше определяется местной культурой, чем какими-то историческими предпочтениями, но некоторые всё равно будут выбирать более свободную одежду для труда, и более тёплую одежду для щегольства. - - Расположенные вдоль шеи и по бокам головы кожные складки и выступы часто украшаются пирсингом или тату. В рисунках преобладают абстрактные узоры с природными мотивами, которые не потеряют своего смысла или структуры при движении кожи. - - Многие унатхи берегут свои рога, хотя не у всех они встречаются, и их отсутствие не считается чем-то унизительным. Боязнь отколов и повреждений выливается в относительно низкую популярность каких-либо модификаций, но иногда можно встретить ящера с вырезанными на рогах узорами. Нарочное спиливание одного или обоих рогов, сверление и стачивание также имеют место быть, но редко. - - В попытках сгладить или наоборот — подчеркнуть естественные неровности черепа, унатхи обоих полов могут использовать краску и макияж. У мужчин встречаются искусственные костяные наросты, прикрепляющиеся на бровные дуги – подобное, как считается, придаёт образу внушительности и серьезности. - + content: book-unath-ptone-contents - type: entity parent: BookLoreBase @@ -1083,21 +297,7 @@ layers: - state: book_unath_2 - type: Paper - content: Искусство - - Подобное влияние не обязательно было однобоким. После контакта людям открылся мир унатхского искусства. Пройдя через абсолютно другую историю, стили и устои их творчества значительно отличались от привычных людям, но были и объединяющие факторы, но были и параллели. Например, в унатхской живописи существовали одиночные портреты, однако большой популярностью пользовались массивные родовые и семейные картины, также выполнявшие функцию генеалогического древа. С одним отличием — вместо древовидной структуры, унатхские рода сплетались из множества лиан и ростков, вились вместе, потом расплетались снова или меняли свою конфигурацию. От всей запутанности некоторых образцов у зрителей могла закружиться голова. В целом, во всех визуальных медиумах унатхов часто присутствует больше мелких деталей, чем в человеческих. - - Как и музыка любой другой разумной расы, музыка унатхов предстает в невероятном количестве форм, так что покрыть её в достаточной степени в этой статье не представляется возможным. За последние сотни лет в музыке появилось бесчисленное множество электронных, синтезированных звуков, но унатхи не забывают и свои традиционные инструменты. Унатхские песни пользуются умеренной популярностью — некоторые находят их излишне громкими, с большей ролью ударных инструментов и меньшим упором в мелодию. - - С распространением ТрансЛита, к доступной людям части унатхского наследия присоединились кино и литература. Среди рассказываемых унатхами историй выделяется много отличных от человеческих архетипов. Одним из них являются ссен'гха — мореплаватели времён Золотого Века Морей, исследователи, послы, шпионы. Рассказами об их приключениях изобилует как литература унатхской современности, так и популярная культура. Человеческому наблюдателю будет удобно думать о ссен'гха, как об унатхских аналогах рыцарей или ковбоев — в той роли, которую они играют в культурном сознании общества. - - - Война и Мир - - По окончании Последней Войны в обществе унатхов одно из лидирующих мест заняли антимилитаризм и пацифизм. Всем было ясно одно — подобное не должно повториться никогда. Многие участники Кшеса Д’тхун, федерации-предшественника Унатхской Автономии, начали уменьшать свои армии, полагаясь на сеть тесных торговых и дипломатических связей для урегулирования конфликтов. С раннего возраста унатхам объясняли ужасы войны, и обучали способам решать конфликты без насилия. Молодым унатхам и унати показывали, что сотни лет мира привели к совместному процветанию, и поэтому у каждого разумного существа есть моральная обязанность не допустить войны. Такая практика сохранилась с незначительными изменениями до наших дней, но полтысячи лет назад ее популярность пошатнулась. - - Война с воксами, возникновение ненавидящей всех не-людей Миртанийской Империи и военное присутствие ОПЗ пошатнули повальную веру в послевоенные идеалы. Часть унатхов начала рассматривать войну и армию как необходимые инструменты для обеспечения дальнейшего существования унатхской цивилизации, а пацифизм — как проявление слабости перед лицом неумолимого врага. Популярность унатхов в качестве солдат ОПЗ и наемников также повысила привлекательность милитаристских настроений. В наши дни военный сектор Моргха Унатх постепенно набирает во влиянии и богатстве, что выливается в растущее недовольство идеологической миролюбивостью. - + content: book-unath-ptwo-contents - type: entity parent: BookLoreBase @@ -1109,15 +309,7 @@ layers: - state: book_dione - type: Paper - content: Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. - - Притом стоит отметить, что нимфы являются самобытным живым организмом, способным существовать без остальных нимф и древовидного тела. Посему у каждой нимфы есть собственные мозг, желудок, печень, почки, лёгкие, сердце и прочие органы. Но при этом в сочетании трёх нимф и древовидного тела некоторые органы начинали видоизменяться, своего рода, срастаясь с растениями тела. Для одной нимфы метаморфозы нескольких органов разом стали бы смертельны, потому нужно минимум три. У одной видоизменяется мозг, у второй – желудок, у третьей – лёгкие. - - По этим причинам примечателен процесс питания дион. При поглощении еды, диона посредством прочных побегов проталкивает пищу или жидкость в углубление в голове, где располагаются рты трёх нимф. Нимфы потребляют не равное количество еды. Нимфа с видоизменённым мозгом ввиду сравнительно малого (в сравнении с другими видоизменёнными органами вместе) энергопотребления есть всего седьмую часть всей еды, диона с видоизменёнными лёгкими – две седьмые, а нимфа с видоизменённым желудком получает в общей сложности четыре седьмые. Притом из полученной третьей нифой пищи лишь четверть разлагается полностью и передаёт всю энергию самой нимфе, остальное раскладывается на простые сахара, минеральные вещества, углеводороды и воду. Видоизменённый желудок дионы соединяется напрямую с корнями растений. Это позволяет передавать питательные вещества и воду в растеневидное тело. Притом проводящей питательные вещества жидкостью является вода, которая насычается получаемыми из еды минеральными веществами, витаминами и сахарами, становясь веществом напоминающим берёзовый сок. - - Дополнительным механизмом питания и жизнеобеспечения является химосинтез, который у дион отличается от фотосинтеза классических растений несколькими деталями и протекает в видоизменённых лёгких одной из них. Это всё ещё квантовохимическое взаимодействие, которое способно за счёт энергии разделять молекулы воды и углекислого газа, формируя молекулярный кислород и простые сахара для питания растеневидного тела (через похожую корневую систему, сплетённую с альвеолами видоизменённых лёгких одной из нимф). Притом энергия, необходимая для химосинтеза, в отличии от фотосинтеза, получается не от поглощения квантов света, а от энергии, получаемой из расщеплённой пищи в желудке нимфы. Получаемый избыток молекулярного кислорода, может быть, не только поглощён лёгкими производящей его нимфы, но и выйти наружу для дыхания двух других. Так дионы способны буквально дышать углекислым газом. - - Видоизменённый мозг одной из нимф является сравнительно небольшим потребителем энергии и к тому же соединён с мозгами других нимф, но является руководящим органом принятия решений. + content: book-dione-contents - type: entity parent: BookLoreBase @@ -1129,15 +321,7 @@ layers: - state: book_BSS - type: Paper - content: Тут описаны бесчисленные диаграммы, грпафики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... - - Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. - - Что эе это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. - - Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. - - Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. + content: book-bss-contents - type: entity parent: BookLoreBase @@ -1149,34 +333,7 @@ layers: - state: book_scaf - type: Paper - content: EVA скафандры - - Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя - - 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. - - 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. - - 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. - - - Скафандры специалистов по работе в открытом космосе - - Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя - - 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. - - 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. - - 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. - - 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. - - Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. - - Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. - - + content: book-scaf-contents - type: entity parent: BookLoreBase @@ -1188,43 +345,7 @@ layers: - state: book_MBS1 - type: Paper - content: Модуль «Маяк-01» - - В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. - - В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли так же и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. - - - Суперкомпьютер «Маяк-02» - - Выяснилось, что для таких задач никакого модуля не хватит. В любом случае размещение его на шаттле приводит к плачевным последствиям. Постепенно улучшая систему и наращивая расчётную мощность, увеличивая надёжность и добавляя системы, препятствующие искажению вероятностных волн, инженеры превратили модуль в целый суперкомпьютер «Маяк-02». - - Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками - - 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) - - 2. Производство суперкомпьютера было сверхдорогим и очень долгим. - - 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. - - 4. Он мог отправить только в одну сторону, но не мог вернуть. - - Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. - - Провал эксперимента подал идею создания отправляемого спутника-маяка. - - - Спутник «Маяк-03» - - На помощь пришли промышленные квантовые компьютеры. Они позволили упростить вычисления, производимые суперкомпьютером, хотя и делали их куда менее точными. При этом новый модуль требовал на много меньше энергии, был сложен в производстве, но, как ни странно, сравнительно дешёвым. - - Важнейшей особенностью нового прототипа была поразительная защита от воздействия БС-модуля. Квантовй компьютер «Маяка-03» был способен находить «битые» данные и расчёты после воздействия колебаний вероятностных вол, и сам их устранял при помощи крайне специфических автоматизированных способов исправления ошибок. - - Всё это позволило создать серию лёгких спутников, которые практически случайно рассылались в разные звёздные системы. После прибытия спутники начинали посылать сигнал отбоя, сообщающий, что всё в порядке, или посылающие сигналы ошибки, сообщающие, что со спутником что-то случилось. Так же часто случалось, что спутник переставал передавать сигналы, что могло служить признаком его уничтожения. - - Рассылка спутников способствовало колонизации и следованиям дальнего космоса. Но всё ещё оставалась значительная погрешность вычислений и ненадёжности систем даже в уже проложенных путях. Маршруты были налажены, но раз в Земной квартал несколько шаттлов уничтожались или пропадали без вести. - - + content: book-mbsone-contents - type: entity parent: BookLoreBase @@ -1236,30 +357,7 @@ layers: - state: book_MBS2 - type: Paper - content: Искажатели «Маяк-04» и «Маяк-05» - - Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. - - Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). - - - Установка «Маяк-06» - - Определённая кульминация серии маяков стала, когда было решено объединить суперкомпьютер «Маяк-02», который переработали, сделав дешевле, быстрей и энергоэффективней, спутник «Маяк-03» и искажатель «Маяк-05». В результате вышла крупная и дорогая установка «Маяк-06», которая давала возможность вычислять прыжки для нескольких шаттлов, а также принимать прилетающие шаттлы и делать всё так, чтобы многие потоки шаттлов между собой не врезались. Это наиболее современная система, устанавливаемая на космических объектах, станциях, верфях, портах. - - - Искажатель «Маяк-07» - - На данный момент это последняя разработанная итерация технологии. Это громадная и крайне мощная версия искажателя «Маяк-05», совмещённая с переработанным суперкомпьютером. Особенностью его является то, что она «вытягивает» объекты не в радиусе, а вытянутой полосе. Это позволило создать установку, способную реализовывать таможенный контроль на границе секторов, заставляя все шаттлы перемещаться к таможенно-пограничной станции. - - Особенностью выступает то, что на длину полосы «вытягивания» влияют самые разны параметры, а потому порой она сокращается или удлиняется. Это даёт некоторое пространство для реализации возможностей различных челноков, подпольных организаций, террористов, контрабандистов и товарищей с чёрного рынка. - - - Искажатель «Маяк-08» - - Искажать «Маяк-04» имел и иной путь развития, нежели выведение судов из БС пространства к самому маяку на некоторое расстояние. Новая модель была оснащена куда более скромным расчётным модулем, менее чувствительными сканерами, но большей мощностью. Кто-то с иронией считал, что такая модель только и способна, что вытягивать к себе линкоры. Остальным объектам просто не хватило бы энергии, чтобы быть точно замеченными. Но идея изобретателей была не в этом. Данный маяк был способен притягивать к себе высокоэнергетические объекты. То есть субстанции. Которые и без БС-модуля имели огромный отклик в пространстве энергий. Например, сбежавшие из-под контроля сингулярности. Таким образом «Маяк-08» стал серьёзным ответом всем тем обществам, которые ежегодно и ежемесячно твердили об отказе в использовании сингулярных двигателей по причине существования вероятности аварии с их побегом и дальнейшим прилётом непойми куда и созданием ещё большей аварии. Теперь сингулярности можно было ловить. - - + content: book-mbstwo-contents - type: entity parent: BookLoreBase @@ -1271,36 +369,4 @@ layers: - state: book_implant - type: Paper - content: Импланты NT - - Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. - - - Имплант трекера - - Данный имплант устанавливается в грудную клетку неподалёку от сердца. Сердце является мышцей, которая постоянно пребывает в движении. А от того постоянно генерирует поверхностное напряжение, которого хватает на поддержание работы импланта. Помимо системы зарядки от мышцы имплант имеет антенну-передатчик, которая при каждом движении сердечной мышцы генерирует сигнал. Сигнал достигает антенн системы внутренней связи объекта НТ, а затем АЛУ (Арифметическо-Логическое устройство) при помощи Фурье-преобразований устанавливает положение импланта и передаёт данные на сервер. Таким образом трекер – это система локального позиционирования, но под кожей. Было бы глупо, если бы при остановке сердца от, скажем, инфаркта или прочих неприятных ситуаций имплант вышел из строя. А потому в него встроек небольшой аккумулятор, продолжающий работу импланта после тревожного использования. - - - Имплант света - - Имплант света представляет собой небольшой, но достаточно мощный светодиодный фонарик на аккумуляторе, и устанавливается в руку.. Очевидной проблемой может стать подзарядка аккумулятора, но решение подсказали древние фонарики тысячелетней давности с рычажной подзарядкой. Но в случае импланта рычагом для подзарядки являются мышцы. Носитель может совершить несложные движения рукой и подзарядить батарею своего фонарика, что делает имплант крайне полезным и долговечным. - - - Имплант грустного тромбона - - Имплант устанавливается в район диафрагмы. Имеет в себе небольшой аккумулятор, сторожевой таймер, небольшой чип логики и динамик. При дыхании происходит периодическое расширение и сужение диафрагмы, что совершенно не влияет на имплант. Если же диафрагма перестаёт, то начинается отсчёт секунд на сторожевом таймере. Если время превышает среднее максимальное время задержки дыхания, то сторожевой таймер переполняется и активирует чип, заставляя динамик издать грустный тревожный звук. - - - Имплант водокодера - - Встраивается в горло. Имплант включает в себя матрицу подвижных наночастиц, которые способные перестаиваться, «нарастая» и изменяя параметры голосовых связок из-за чего они начинают звучать иначе. Для регулировки требуется итерационное взаимодействие с подкожными регуляторами частоты и тембра. А именно требуется повернуть регулятор и тут же что-то произнести, дабы проверить звучание. - - - Имплант хонк - - И кто-то же придумал идею, что ряду сотрудников понадобится, возможно, издать громкий предупреждающий звук в ситуации, когда, скажем, коридор заполнен стоящими сотрудниками, мещающими пройти. Для этого был разработан имплант он, работающий аналогично импланту света. Четырёх-шести сгибаний руки хватит, чтобы зарядить батарею импланта и издать громкий предупреждающий звук. - - - Mindshield (майндшилд или имплант защиты разума) – имплант защиты разработки корпорации NanoTrasen, позволяющий нивелировать гипнотическое или психологическое воздействие на носителя. - - Имплант представляет из себя вычислительный чип, микросканер ЭЭГ и сложную сеть искусственный нейронов, а также чип, создающий искусственное увеличение лояльности к корпорации НаноТрейзен. Имплант является сложным в производстве, поэтому даже не весь состав станции удостоен быть носителем данного импланта, впрочем со временем догих исследований и модификаций, учёным удалось добиться того, что устанавливать его стало сравнительно просто любому обученному врачу при помощи имплантера стандартного образца. Использование искусственных нейронов позволяет как сканировать активность лобной доли головного мозга, выявляя гипноз или психологическое воздействие, так и стимулировать лобную кору, чтобы вывести мозг в нормальное состояние и избавиться от гипноза или психологического воздействия. Данный имплант постоянно сканирует лобную долю носителя, точно соотносит отклонения от нормы, достигая точности нивелирования гипноза или психологического воздействия на 99%. Работает, если воздействие на носителя протекает малое количество времени, иначе действия гипноза входит в нормальное состояние мозга, перестраивая структура мозга, чьи нейронные сети постоянно видоизменяются, и вывести носителя в первоначальное состояние используя имплант невозможно. + content: book-implants-contents From 51e825b1fcba5ecef3f4fa398bcb19344aaa3190 Mon Sep 17 00:00:00 2001 From: UmnayaSvinka <81526909+UmnayaSvinka@users.noreply.github.com> Date: Fri, 19 Jul 2024 10:42:36 +0300 Subject: [PATCH 92/97] Remove some names from datasets (#2020) prevent people from breaking rules --- Resources/Prototypes/Datasets/Names/first.yml | 93 ------------------- .../Datasets/Names/first_female.yml | 25 +---- .../Prototypes/Datasets/Names/first_male.yml | 71 -------------- 3 files changed, 1 insertion(+), 188 deletions(-) diff --git a/Resources/Prototypes/Datasets/Names/first.yml b/Resources/Prototypes/Datasets/Names/first.yml index 7351b620ce6..e1d2de73bf9 100644 --- a/Resources/Prototypes/Datasets/Names/first.yml +++ b/Resources/Prototypes/Datasets/Names/first.yml @@ -2,29 +2,19 @@ id: names_first values: - Аарон - - Абрам - - Аваз - Августин - Авраам - - Агап - - Агапит - - Агат - - Агафон - Адам - Адриан - Азамат - Азат - Азиз - - Аид - Айдар - Айрат - Акакий - Аким - - Алан - Александр - Алексей - - Али - - Алик - Алим - Алихан - Алишер @@ -36,11 +26,9 @@ - Анастасий - Анатолий - Анвар - - Ангел - Андрей - Анзор - Антон - - Анфим - Арам - Аристарх - Аркадий @@ -58,10 +46,8 @@ - Асхан - Асхат - Ахмет - - Ашот - Бахрам - Бенджамин - - Блез - Богдан - Борис - Борислав @@ -76,9 +62,7 @@ - Вениамин - Виктор - Вильгельм - - Вит - Виталий - - Влад - Владимир - Владислав - Владлен @@ -102,7 +86,6 @@ - Давид - Давлат - Дамир - - Дана - Даниил - Данил - Данис @@ -118,13 +101,9 @@ - Джан - Джеймс - Джереми - - Иеремия - Джозеф - Джонатан - - Дик - - Дин - Динар - - Дино - Дмитрий - Добрыня - Доминик @@ -184,7 +163,6 @@ - Клим - Конрад - Константин - - Коре - Корнелий - Кристиан - Кузьма @@ -226,7 +204,6 @@ - Мирон - Мирослав - Михаил - - Моисей - Мстислав - Мурат - Муслим @@ -243,7 +220,6 @@ - Николай - Нильс - Огюст - - Олег - Оливер - Орест - Орландо @@ -260,7 +236,6 @@ - Перри - Пётр - Платон - - Потап - Прохор - Равиль - Радий @@ -299,7 +274,6 @@ - Руслан - Рустам - Рэй - - Савва - Савелий - Саид - Салават @@ -363,7 +337,6 @@ - Чингиз - Шамиль - Шарль - - Шерлок - Эдгар - Эдуард - Эльдар @@ -384,59 +357,14 @@ - Ян - Яромир - Ярослав - - Андрей - - Антон - - Олег - - Роман - - Александр - - Сергей - - Анатолий - - Юрий - - Богдан - - Вениамин - - Виталий - - Владимир - - Дмитрий - - Иван - - Константин - - Алексей - - Артур - - Слава - - Борис - - Богдан - - Славик - - Вадим - - Валера - - Веня - Георг - - Гоша - - Жора - - Марк - - Глеб - Алекс - - Денис - - Егор - Фима - - Илья - - Лева - - Леня - - Матвей - - Митя - - Никита - - Антон - Олег - Петро - - Ростик - - Руслан - Савва - - Семён - - Степан - - Тима - Артем - - Фёдор - - Яша - Терентий - - Ава - Августа - Августина - Авдотья @@ -447,7 +375,6 @@ - Аглая - Агния - Агунда - - Ада - Аделаида - Аделина - Адель @@ -482,7 +409,6 @@ - Альба - Альбина - Альфия - - Аля - Амалия - Амаль - Амина @@ -507,7 +433,6 @@ - Асель - Асия - Астрид - - Ася - Афина - Аэлита - Аяна @@ -576,9 +501,7 @@ - Диана - Дильназ - Дильнара - - Диля - Дилярам - - Дина - Динара - Долорес - Доминика @@ -592,7 +515,6 @@ - Елена - Елизавета - Есения - - Ея - Жаклин - Жанна - Жансая @@ -606,7 +528,6 @@ - Зара - Зарема - Зарина - - Земфира - Зинаида - Зита - Злата @@ -634,7 +555,6 @@ - Ирина - Ирма - Искра - - Ия - Камила - Камилла - Кара @@ -649,25 +569,20 @@ - Корнелия - Кристина - Ксения - - Лада - Лана - Лара - Лариса - Лаура - Лейла - Леона - - Лера - Леся - Лета - Лиана - Лидия - Лиза - - Лика - - Лили - Лилиана - Лилит - Лилия - - Лина - Линда - Лиора - Лира @@ -687,7 +602,6 @@ - Люция - Люче - Ляйсан - - Ляля - Мавиле - Мавлюда - Магда @@ -708,8 +622,6 @@ - Марфа - Мелания - Мелисса - - Мика - - Мила - Милада - Милана - Милен @@ -720,7 +632,6 @@ - Мирослава - Мирра - Мишель - - Мия - Моника - Муза - Надежда @@ -732,7 +643,6 @@ - Наталья - Нелли - Нея - - Ника - Николь - Нина - Нинель @@ -818,7 +728,6 @@ - Тамила - Тара - Татьяна - - Тая - Таяна - Теона - Тереза @@ -880,7 +789,6 @@ - Эльвира - Эльмира - Эльнара - - Эля - Эмили - Эмилия - Эмма @@ -894,7 +802,6 @@ - Этери - Юлианна - Юлия - - Юна - Юния - Юнона - Ядвига diff --git a/Resources/Prototypes/Datasets/Names/first_female.yml b/Resources/Prototypes/Datasets/Names/first_female.yml index 7c8b9eab402..cd228ad4c3d 100644 --- a/Resources/Prototypes/Datasets/Names/first_female.yml +++ b/Resources/Prototypes/Datasets/Names/first_female.yml @@ -1,7 +1,6 @@ -- type: dataset +- type: dataset id: names_first_female values: - - Ава - Августа - Августина - Авдотья @@ -12,7 +11,6 @@ - Аглая - Агния - Агунда - - Ада - Аделаида - Аделина - Адель @@ -47,7 +45,6 @@ - Альба - Альбина - Альфия - - Аля - Амалия - Амаль - Амина @@ -72,7 +69,6 @@ - Асель - Асия - Астрид - - Ася - Афина - Аэлита - Аяна @@ -126,7 +122,6 @@ - Гюзель - Далида - Дамира - - Дана - Даниэла - Дания - Дара @@ -141,9 +136,7 @@ - Диана - Дильназ - Дильнара - - Диля - Дилярам - - Дина - Динара - Долорес - Доминика @@ -157,7 +150,6 @@ - Елена - Елизавета - Есения - - Ея - Жаклин - Жанна - Жансая @@ -171,7 +163,6 @@ - Зара - Зарема - Зарина - - Земфира - Зинаида - Зита - Злата @@ -199,7 +190,6 @@ - Ирина - Ирма - Искра - - Ия - Камила - Камилла - Кара @@ -214,25 +204,20 @@ - Корнелия - Кристина - Ксения - - Лада - Лана - Лара - Лариса - Лаура - Лейла - Леона - - Лера - Леся - Лета - Лиана - Лидия - Лиза - - Лика - - Лили - Лилиана - Лилит - Лилия - - Лина - Линда - Лиора - Лира @@ -252,7 +237,6 @@ - Люция - Люче - Ляйсан - - Ляля - Мавиле - Мавлюда - Магда @@ -273,8 +257,6 @@ - Марфа - Мелания - Мелисса - - Мика - - Мила - Милада - Милана - Милен @@ -285,7 +267,6 @@ - Мирослава - Мирра - Мишель - - Мия - Моника - Муза - Надежда @@ -297,7 +278,6 @@ - Наталья - Нелли - Нея - - Ника - Николь - Нина - Нинель @@ -383,7 +363,6 @@ - Тамила - Тара - Татьяна - - Тая - Таяна - Теона - Тереза @@ -445,7 +424,6 @@ - Эльвира - Эльмира - Эльнара - - Эля - Эмили - Эмилия - Эмма @@ -459,7 +437,6 @@ - Этери - Юлианна - Юлия - - Юна - Юния - Юнона - Ядвига diff --git a/Resources/Prototypes/Datasets/Names/first_male.yml b/Resources/Prototypes/Datasets/Names/first_male.yml index 09601d414c9..3dc6aa1ae3f 100644 --- a/Resources/Prototypes/Datasets/Names/first_male.yml +++ b/Resources/Prototypes/Datasets/Names/first_male.yml @@ -2,29 +2,19 @@ id: names_first_male values: - Аарон - - Абрам - - Аваз - Августин - Авраам - - Агап - - Агапит - - Агат - - Агафон - Адам - Адриан - Азамат - Азат - Азиз - - Аид - Айдар - Айрат - Акакий - Аким - - Алан - Александр - Алексей - - Али - - Алик - Алим - Алихан - Алишер @@ -36,11 +26,9 @@ - Анастасий - Анатолий - Анвар - - Ангел - Андрей - Анзор - Антон - - Анфим - Арам - Аристарх - Аркадий @@ -58,10 +46,8 @@ - Асхан - Асхат - Ахмет - - Ашот - Бахрам - Бенджамин - - Блез - Богдан - Борис - Борислав @@ -76,9 +62,7 @@ - Вениамин - Виктор - Вильгельм - - Вит - Виталий - - Влад - Владимир - Владислав - Владлен @@ -102,7 +86,6 @@ - Давид - Давлат - Дамир - - Дана - Даниил - Данил - Данис @@ -118,13 +101,9 @@ - Джан - Джеймс - Джереми - - Иеремия - Джозеф - Джонатан - - Дик - - Дин - Динар - - Дино - Дмитрий - Добрыня - Доминик @@ -184,7 +163,6 @@ - Клим - Конрад - Константин - - Коре - Корнелий - Кристиан - Кузьма @@ -226,7 +204,6 @@ - Мирон - Мирослав - Михаил - - Моисей - Мстислав - Мурат - Муслим @@ -243,7 +220,6 @@ - Николай - Нильс - Огюст - - Олег - Оливер - Орест - Орландо @@ -260,7 +236,6 @@ - Перри - Пётр - Платон - - Потап - Прохор - Равиль - Радий @@ -299,7 +274,6 @@ - Руслан - Рустам - Рэй - - Савва - Савелий - Саид - Салават @@ -363,7 +337,6 @@ - Чингиз - Шамиль - Шарль - - Шерлок - Эдгар - Эдуард - Эльдар @@ -384,55 +357,11 @@ - Ян - Яромир - Ярослав - - Андрей - - Антон - - Олег - - Роман - - Александр - - Сергей - - Анатолий - - Юрий - - Богдан - - Вениамин - - Виталий - - Владимир - - Дмитрий - - Иван - - Константин - - Алексей - - Артур - - Слава - - Борис - - Богдан - - Славик - - Вадим - - Валера - - Веня - Георг - - Гоша - - Жора - - Марк - - Глеб - Алекс - - Денис - - Егор - Фима - - Илья - - Лева - - Леня - - Матвей - - Митя - - Никита - - Антон - Олег - Петро - - Ростик - - Руслан - Савва - - Семён - - Степан - - Тима - Артем - - Фёдор - - Яша - Терентий From 113aacce0148dd994550340d59b027761c1d690d Mon Sep 17 00:00:00 2001 From: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Date: Fri, 19 Jul 2024 18:41:10 +0300 Subject: [PATCH 93/97] [Maps] New terminal (#2423) --- Resources/ConfigPresets/Corvax/mrp.toml | 2 +- Resources/Maps/Misc/corvax_terminal.yml | 16677 +++++++++++++++------- 2 files changed, 11141 insertions(+), 5538 deletions(-) diff --git a/Resources/ConfigPresets/Corvax/mrp.toml b/Resources/ConfigPresets/Corvax/mrp.toml index 4b329bfe4fa..6f6c5eb49c0 100644 --- a/Resources/ConfigPresets/Corvax/mrp.toml +++ b/Resources/ConfigPresets/Corvax/mrp.toml @@ -16,7 +16,7 @@ space_wind_max_velocity = 22.0 [shuttle] emergency_early_launch_allowed = true -#arrivals_map = "/Maps/Misc/corvax_terminal.yml" +arrivals_map = "/Maps/Misc/corvax_terminal.yml" auto_call_time = 150 [vote] diff --git a/Resources/Maps/Misc/corvax_terminal.yml b/Resources/Maps/Misc/corvax_terminal.yml index fb6e4aa301b..e5717d12b5e 100644 --- a/Resources/Maps/Misc/corvax_terminal.yml +++ b/Resources/Maps/Misc/corvax_terminal.yml @@ -3,70 +3,112 @@ meta: postmapinit: false tilemap: 0: Space - 43: FloorGlass - 48: FloorGrassLight - 70: FloorPlastic - 71: FloorRGlass - 84: FloorSteel - 99: FloorTechMaint2 - 102: FloorWhite - 112: FloorWood - 115: Plating + 20: FloorArcadeBlue + 21: FloorArcadeBlue2 + 7: FloorAsteroidSand + 1: FloorAstroGrass + 24: FloorBlue + 29: FloorDark + 16: FloorDarkDiagonal + 11: FloorDarkHerringbone + 14: FloorDarkMini + 3: FloorDarkMono + 4: FloorDarkOffset + 26: FloorDarkPavementVertical + 38: FloorDarkPlastic + 13: FloorGlass + 47: FloorGrass + 23: FloorKitchen + 25: FloorLino + 10: FloorMetalDiamond + 17: FloorMining + 22: FloorMiningLight + 2: FloorPlanetDirt + 76: FloorRGlass + 77: FloorReinforced + 89: FloorSteel + 15: FloorSteelCheckerDark + 19: FloorSteelHerringbone + 27: FloorSteelLime + 18: FloorSteelMono + 12: FloorSteelOffset + 104: FloorTechMaint + 105: FloorTechMaint2 + 9: FloorWoodChessDark + 6: FloorWoodDark + 8: FloorWoodLargeDark + 5: FloorWoodParquetBlack + 120: Lattice + 121: Plating entities: - proto: "" entities: - - uid: 1 + - uid: 818 components: - - name: NT-EZ Космопорт FC-742 - type: MetaData - - pos: 0.0859375,-0.05438137 - parent: 1295 - type: Transform - - chunks: + - type: MetaData + name: NT-EM Terminal + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAAHQAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: ZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAARgAAAAAAVAAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAARwAAAAAARwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAARgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAAwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAADQAAAAAADQAAAAAADAAAAAAADAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAHQAAAAAADgAAAAAAHQAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAVAAAAAAAYwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAYwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAZgAAAAAAZgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAARgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAAAwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAeQAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAEgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAADQAAAAAADQAAAAAADAAAAAAADAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcwAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAwAAAAAABgAAAAAACAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAA version: 6 - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAZgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAADgAAAAAABAAAAAAA version: 6 1,0: ind: 1,0 - tiles: RwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 - - id: Empty - type: BecomesStation + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Empty - 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: @@ -74,6751 +116,12312 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 116: 3,-1 - 117: 3,0 - 118: 3,1 - 119: 12,0 - 220: 24,-4 - 221: 24,3 - 223: 17,0 + 958: 14,-9 + 959: 14,-2 + 960: 14,2 + 961: 14,-15 + 962: 14,-23 + 977: 3,4 + 978: 3,-11 + 979: 7,-11 + 980: 11,-11 + 981: 7,-4 + 982: 7,-3 + 983: 11,-3 + 984: 11,-4 + 985: 7,4 + 986: 11,4 + 991: -4,4 + 992: -4,-11 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 987: -6,-4 + 988: -8,-4 + 989: 0,-4 + 990: 2,-4 + - node: + color: '#9FED5895' id: Bot decals: - 120: 17,-5 - 121: 17,-4 - 122: 17,-6 - 123: 17,-7 + 994: 2,-19 - node: color: '#FFFFFFFF' - id: BotLeft + id: BotGreyscale decals: - 125: 17,-8 + 993: -6,-19 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BotRight + id: BotGreyscale + decals: + 944: 7,-13 + 945: 6,-13 + 947: 8,-13 + - node: + color: '#3EB38896' + id: BrickLineOverlayE decals: - 124: 17,-3 + 759: -9,-11 + - node: + color: '#3EB38896' + id: BrickLineOverlayN + decals: + 756: -8,-12 + 757: -7,-12 + - node: + color: '#3EB38896' + id: BrickLineOverlayS + decals: + 760: -8,-10 + 761: -7,-10 + - node: + color: '#3EB38896' + id: BrickLineOverlayW + decals: + 758: -6,-11 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndE + id: BrickTileDarkBox decals: - 284: 23,-4 - 285: 23,3 + 93: -1,0 + 652: -5,-11 + 715: -2,-13 + 892: -3,6 + 893: -3,2 + 949: -3,-9 + 963: 11,-31 + 964: 11,-27 + 1108: -5,0 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndW + id: BrickTileDarkCornerNe decals: - 277: 20,-4 - 278: 20,3 + 150: 3,1 + 338: 13,3 + 339: 13,-5 + 340: 8,-5 + 341: 8,3 + 656: -6,-10 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileDarkCornerNw decals: - 68: 6,0 - 69: 13,0 - 302: 19,6 - 315: 19,-7 - 316: 19,-8 - 317: 19,-1 - 318: 19,0 - 319: 19,6 + 145: 0,1 + 333: 6,-5 + 334: 11,-5 + 335: 6,3 + 336: 11,3 + 654: -9,-10 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileDarkCornerSe decals: - 70: 7,-1 - 71: 8,-1 - 72: 9,-1 - 73: 14,-1 - 74: 15,-1 - 75: 16,-1 - 280: 21,3 - 281: 22,3 - 282: 21,-4 - 283: 22,-4 - 297: 20,5 - 298: 21,5 - 299: 22,5 - 300: 22,5 - 301: 23,5 - 320: 20,5 - 321: 20,-2 - 322: 21,-2 - 323: 22,-2 - 324: 23,-2 - 325: 20,-9 - 326: 21,-9 - 327: 22,-9 - 328: 23,-9 + 343: 8,-10 + 344: 13,-10 + 345: 13,-2 + 346: 8,-2 + 658: -6,-12 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileDarkCornerSw decals: - 76: 7,1 - 77: 8,1 - 78: 9,1 - 79: 14,1 - 80: 15,1 - 81: 16,1 - 287: 22,3 - 289: 21,3 - 290: 22,-4 - 291: 21,-4 - 303: 20,7 - 304: 21,7 - 305: 22,7 - 306: 23,7 - 307: 23,1 - 308: 21,1 - 309: 22,1 - 310: 20,1 - 311: 23,-6 - 312: 22,-6 - 313: 21,-6 - 314: 20,-6 + 328: 6,-2 + 329: 11,-2 + 330: 6,-10 + 331: 11,-10 + 660: -9,-12 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileDarkEndE decals: - 82: 17,0 - 329: 24,-8 - 330: 24,-7 - 331: 24,-1 - 332: 24,0 - 333: 24,6 + 102: 3,-1 - node: color: '#FFFFFFFF' - id: BushCThree + id: BrickTileDarkEndN decals: - 208: -3.9886756,0.785882 + 837: 9,-17 + 838: 9,-21 - node: color: '#FFFFFFFF' - id: BushCTwo + id: BrickTileDarkEndS decals: - 186: -5.5815344,3.7170653 - 201: -5.4554768,-0.01960951 - 222: -6.1048346,-1.7984271 + 835: 9,-23 + 836: 9,-19 - node: color: '#FFFFFFFF' - id: Busha2 + id: BrickTileDarkEndW decals: - 203: -6.9867268,2.121015 + 97: 0,-1 - node: color: '#FFFFFFFF' - id: Busha3 + id: BrickTileDarkInnerNe decals: - 256: 21.531738,-0.36497682 + 350: 6,-10 + 351: 11,-10 + 352: 6,-2 + 353: 11,-2 + 668: -6,-11 + 712: 1,4 + 753: 1,-11 + 829: 11,-21 + 830: 11,-16 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushc1 + id: BrickTileDarkInnerNe decals: - 187: -4.5971594,3.9127421 - 202: -4.5648518,-0.06648433 + 606: 8,-5 + 607: 13,-5 + 608: 13,3 + 609: 8,3 - node: color: '#FFFFFFFF' - id: Bushc3 + id: BrickTileDarkInnerNw decals: - 224: -7.1048346,-1.8609273 + 158: 0,0 + 348: 8,-2 + 349: 13,-2 + 364: 8,-10 + 365: 13,-10 + 711: -2,4 + 752: -2,-11 + 827: 11,-16 + 828: 11,-21 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushi4 + id: BrickTileDarkInnerNw decals: - 114: 0,-4 + 602: 6,-5 + 603: 11,-5 + 604: 6,3 + 605: 11,3 - node: color: '#FFFFFFFF' - id: Bushl3 + id: BrickTileDarkInnerSe decals: - 115: 0,3 + 354: 6,3 + 355: 11,3 + 356: 11,-5 + 357: 6,-5 + 666: -6,-11 + 710: 1,4 + 754: 1,-11 + 833: 11,-19 + 834: 11,-24 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushm2 + id: BrickTileDarkInnerSe decals: - 112: 0,-2 + 610: 8,-2 + 611: 13,-2 + 612: 13,-10 + 613: 8,-10 - node: color: '#FFFFFFFF' - id: Bushm4 + id: BrickTileDarkInnerSw decals: - 113: 0,4 + 161: 0,0 + 358: 8,-5 + 359: 13,-5 + 360: 8,3 + 361: 13,3 + 713: -2,4 + 755: -2,-11 + 831: 11,-24 + 832: 11,-19 - node: - angle: 4.71238898038469 rad + zIndex: 1 color: '#FFFFFFFF' - id: DirtHeavy + id: BrickTileDarkInnerSw decals: - 126: 4,3 - 132: 15,7 - 133: 15,3 - 139: 14,9 + 614: 6,-10 + 615: 11,-10 + 616: 11,-2 + 617: 6,-2 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtHeavyMonotile + id: BrickTileDarkLineE decals: - 127: 4,7 - 136: 14,4 - 137: 15,10 - 138: 14,10 + 156: 3,0 + 164: -1,0 + 245: 6,-6 + 246: 6,-7 + 247: 6,-8 + 248: 6,-9 + 249: 8,-9 + 250: 8,-8 + 251: 8,-7 + 254: 8,-6 + 255: 13,-9 + 256: 13,-8 + 257: 13,-7 + 258: 13,-6 + 261: 13,-1 + 262: 13,0 + 263: 13,1 + 265: 13,2 + 266: 8,-1 + 267: 8,0 + 268: 8,1 + 269: 8,2 + 271: 6,2 + 272: 6,1 + 273: 6,0 + 274: 6,-1 + 275: 11,-1 + 276: 11,0 + 277: 11,2 + 280: 11,-6 + 281: 11,-7 + 282: 11,-8 + 283: 11,-9 + 304: 11,1 + 702: -3,4 + 746: -3,-11 + 811: 10,-24 + 812: 10,-23 + 813: 10,-22 + 814: 10,-21 + 815: 10,-19 + 816: 10,-19 + 817: 10,-18 + 818: 10,-17 + 819: 10,-17 + 820: 10,-16 + 841: 9,-18 + 842: 9,-22 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtLight + id: BrickTileDarkLineN decals: - 128: 7,5 - 129: 11,1 - 130: 12,8 - 131: 15,9 - 140: 2,0 - 141: -2,5 - 142: 1,-5 + 105: 1,-1 + 106: 2,-1 + 151: 1,1 + 152: 2,1 + 166: 0,-1 + 167: 1,-1 + 168: 2,-1 + 169: 3,-1 + 189: 7,-10 + 191: 12,-10 + 192: 12,-2 + 194: 7,-2 + 195: 7,3 + 196: 12,3 + 198: 12,-5 + 199: 7,-5 + 390: 5,-5 + 391: 9,-5 + 392: 10,-5 + 393: 10,3 + 394: 9,3 + 395: 5,3 + 584: 5,-12 + 585: 6,-12 + 586: 7,-12 + 587: 8,-12 + 588: 9,-12 + 589: 10,-12 + 590: 11,-12 + 591: 12,-12 + 592: 13,-12 + 650: -8,-10 + 651: -7,-10 + 703: -2,3 + 704: -2,3 + 705: -1,3 + 706: 0,3 + 707: 0,3 + 708: 0,3 + 709: 1,3 + 748: -2,-12 + 749: -1,-12 + 750: 0,-12 + 751: 1,-12 + 825: 11,-25 + 826: 11,-20 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtMedium + id: BrickTileDarkLineS decals: - 134: 14,3 - 135: 15,4 - 143: 4,-5 - 144: 6,-3 - 145: 8,7 + 103: 1,-1 + 104: 2,-1 + 202: 7,-10 + 203: 12,-10 + 204: 12,-2 + 205: 7,-2 + 206: 7,3 + 207: 12,3 + 208: 12,-5 + 209: 7,-5 + 382: 5,-2 + 383: 9,-2 + 384: 10,-2 + 385: 9,-10 + 386: 10,-10 + 388: 5,-10 + 593: 13,5 + 594: 12,5 + 595: 10,5 + 596: 11,5 + 597: 9,5 + 598: 8,5 + 599: 7,5 + 600: 6,5 + 601: 5,5 + 663: -8,-12 + 664: -7,-12 + 697: -2,5 + 698: -1,5 + 699: -1,5 + 700: 0,5 + 701: 1,5 + 742: -2,-10 + 743: -1,-10 + 744: 0,-10 + 745: 1,-10 + 823: 11,-15 + 824: 11,-20 - node: color: '#FFFFFFFF' - id: FlowersBROne + id: BrickTileDarkLineW decals: - 105: 0,2 - 206: -6.3929768,0.07414031 - 214: -6.9810414,-0.7972784 + 212: 6,-9 + 213: 6,-8 + 214: 6,-7 + 215: 6,-6 + 217: 11,-9 + 218: 11,-8 + 219: 11,-7 + 220: 11,-6 + 221: 13,-9 + 222: 13,-8 + 223: 13,-7 + 224: 13,-6 + 225: 6,-1 + 226: 6,0 + 228: 6,1 + 229: 6,2 + 232: 8,-1 + 233: 8,0 + 234: 8,1 + 235: 8,2 + 236: 13,-1 + 238: 13,0 + 239: 13,1 + 240: 13,2 + 288: 8,-9 + 289: 8,-8 + 290: 8,-7 + 291: 8,-6 + 296: 11,-1 + 298: 11,0 + 299: 11,0 + 300: 11,1 + 302: 11,2 + 662: -9,-11 + 747: 2,-11 + 802: 12,-16 + 803: 12,-17 + 804: 12,-17 + 805: 12,-18 + 806: 12,-19 + 807: 12,-21 + 808: 12,-22 + 809: 12,-22 + 810: 12,-24 + 839: 9,-22 + 840: 9,-18 + 955: 12,-23 + 976: 2,4 - node: color: '#FFFFFFFF' - id: FlowersBRThree + id: BrickTileSteelBox + decals: + 714: -5,-11 + 766: 11,-13 + 886: 4,4 + 887: 4,-11 + 948: -5,4 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerNe decals: - 215: -5.934167,-1.0785282 + 548: -2,13 - node: color: '#FFFFFFFF' - id: FlowersBRTwo + id: BrickTileSteelCornerNe decals: - 216: -7.0591664,-1.0316534 + 673: 3,5 + 735: 3,-10 + 784: 12,-14 - node: color: '#FFFFFFFF' - id: Flowersbr1 + id: BrickTileSteelCornerNw + decals: + 674: -4,5 + 736: -4,-10 + 783: 10,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerSe decals: - 217: -6.215417,0.2629112 + 556: -2,7 - node: color: '#FFFFFFFF' - id: Flowersbr2 + id: BrickTileSteelCornerSe decals: - 213: -6.184167,-0.9379033 + 672: 3,3 + 717: 3,-12 + 786: 12,-26 - node: color: '#FFFFFFFF' - id: Flowerspv1 + id: BrickTileSteelCornerSw decals: - 241: -5.390686,-4.3862576 - 268: 21.102154,-7.160489 + 671: -4,3 + 716: -4,-12 + 785: 10,-26 - node: color: '#FFFFFFFF' - id: Flowerspv2 + id: BrickTileSteelEndN decals: - 240: -5.062561,-3.590027 - 269: 21.258404,-7.676114 + 884: 4,-3 - node: color: '#FFFFFFFF' - id: Flowerspv3 + id: BrickTileSteelEndS + decals: + 885: 4,-4 + - node: + color: '#00FFFFFF' + id: BrickTileSteelEndW decals: - 207: -6.908602,3.0497417 - 239: -4.843811,-3.902527 - 267: 21.610348,-7.4933586 + 628: -6,7 + 629: -6,9 + 630: -6,11 + 631: -6,13 - node: color: '#FFFFFFFF' - id: Flowersy1 + id: BrickTileSteelInnerNe + decals: + 643: -7,-11 + 676: -3,5 + 686: 3,4 + 688: 2,5 + 720: 3,-11 + 738: -3,-10 + 800: 11,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerNw decals: - 106: 0,-3 - 262: 22.964508,-0.9238496 - 276: 21.753397,5.9578614 + 574: -4,11 + 575: -4,9 + 576: -4,7 - node: color: '#FFFFFFFF' - id: Flowersy2 + id: BrickTileSteelInnerNw + decals: + 644: -8,-11 + 675: -3,5 + 678: -4,4 + 689: 2,5 + 718: -4,-11 + 737: -3,-10 + 799: 11,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerSe decals: - 263: 22.558258,-0.9394747 + 578: -3,7 - node: color: '#FFFFFFFF' - id: Flowersy3 + id: BrickTileSteelInnerSe + decals: + 641: -7,-11 + 687: 3,4 + 696: -3,3 + 721: 3,-11 + 741: -2,-12 + 797: 11,-26 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerSw decals: - 205: -4.049227,2.8553905 + 557: -3,7 + 558: -4,9 + 559: -4,11 + 560: -4,13 - node: color: '#FFFFFFFF' - id: Grassa1 + id: BrickTileSteelInnerSw + decals: + 642: -8,-11 + 677: -4,4 + 695: -3,3 + 719: -4,-11 + 740: -2,-12 + 798: 11,-26 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineE decals: - 243: -3.9063113,-3.9331326 + 549: -2,12 + 550: -2,11 + 551: -2,10 + 552: -2,9 + 553: -2,9 + 554: -2,8 - node: color: '#FFFFFFFF' - id: Grassa2 + id: BrickTileSteelLineE + decals: + 635: -9,-11 + 787: 12,-25 + 788: 12,-24 + 789: 12,-22 + 790: 12,-22 + 791: 12,-21 + 792: 12,-20 + 793: 12,-19 + 794: 12,-18 + 795: 12,-17 + 796: 12,-16 + 956: 12,-23 + 957: 12,-15 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineN decals: - 209: -3.9886754,1.835907 + 539: -6,13 + 540: -5,13 + 541: -4,13 + 542: -3,13 + 565: -6,7 + 566: -5,7 + 567: -6,9 + 568: -5,9 + 569: -6,11 + 570: -5,11 - node: color: '#FFFFFFFF' - id: Grassa3 + id: BrickTileSteelLineN + decals: + 639: -8,-12 + 640: -7,-12 + 690: -2,5 + 691: -1,5 + 692: -1,5 + 693: 0,5 + 694: 1,5 + 728: -2,-10 + 729: -1,-10 + 730: 0,-10 + 731: 0,-10 + 732: 1,-10 + 733: 1,-10 + 734: 2,-10 + 739: -2,-13 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineS decals: - 229: -7.3704596,5.30355 + 530: -6,7 + 531: -5,7 + 532: -4,7 + 533: -6,9 + 534: -5,9 + 535: -6,11 + 536: -5,11 + 537: -6,13 + 538: -5,13 - node: color: '#FFFFFFFF' - id: Grassa4 + id: BrickTileSteelLineS + decals: + 636: -8,-10 + 637: -7,-10 + 679: -2,3 + 680: -1,3 + 681: 0,3 + 682: 0,3 + 683: 1,3 + 684: 2,3 + 685: 2,3 + 722: -1,-12 + 723: 0,-12 + 724: 1,-12 + 725: 1,-12 + 726: 2,-12 + 727: -3,-12 + 801: 11,-13 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineW decals: - 232: -4.018718,-1.0518935 - 245: -3.9857244,-5.234917 - 248: -6.6769233,-4.833899 + 562: -4,10 + 563: -4,8 + 572: -4,12 - node: color: '#FFFFFFFF' - id: Grassa5 + id: BrickTileSteelLineW decals: - 189: -5.9252844,2.756492 - 196: -6.0320826,4.6379585 - 250: -6.2081733,-3.880341 - 261: 20.792633,-0.0801 - 275: 20.331522,-7.8011136 + 638: -6,-11 + 767: 10,-23 + 768: 10,-24 + 769: 10,-24 + 770: 10,-25 + 771: 10,-23 + 772: 10,-22 + 773: 10,-21 + 774: 10,-21 + 775: 10,-20 + 776: 10,-19 + 777: 10,-18 + 778: 10,-18 + 779: 10,-17 + 780: 10,-16 + 781: 10,-16 + 782: 10,-15 - node: color: '#FFFFFFFF' - id: Grassb1 - decals: - 192: -5.0346594,1.5002525 - 211: -4.051175,5.0709352 - 218: -5.1529164,-0.8777136 - 231: -5.425367,5.4573126 - 246: -4.8607244,-5.318274 - 249: -7.6144233,-4.3647165 - 251: -5.7970634,-3.2865913 - 260: 20.886383,-0.81810236 - 271: 22.024029,-7.0823636 + id: Bushh3 + decals: + 436: -5.001849,-7.7211533 - node: color: '#FFFFFFFF' - id: Grassb2 - decals: - 193: -5.034659,0.93623257 - 195: -5.1229305,4.572853 - 200: -7.377351,-5.2854385 - 230: -6.4017096,5.5041876 - 236: -3.6905925,-2.4268932 - 244: -3.703186,-3.08527 - 253: -3.7540362,-0.10736734 - 254: -3.691537,5.673626 - 255: -6.010816,-4.507654 - 266: 21.901247,0.013650417 - 286: 22.519846,6.0359864 - 288: 23.066721,6.0672364 + id: Bushk1 + decals: + 438: -4.954974,-6.7836533 - node: color: '#FFFFFFFF' - id: Grassb3 + id: Bushk2 decals: - 210: -3.769925,3.9952374 - 237: -5.828186,-2.5431523 - 259: 20.203613,-0.81810206 - 264: 21.933258,-0.84572476 - 272: 22.305279,-7.8167386 - 279: 20.972147,6.0672364 + 439: -1.0018489,-7.1586533 - node: color: '#FFFFFFFF' - id: Grassb4 - decals: - 188: -4.9096594,3.1627421 - 194: -5.784659,0.90498257 - 197: -6.3602076,3.716083 - 199: -6.9516315,4.4348326 - 204: -6.7054768,1.1678903 - 225: -7.6048346,-1.3765525 - 226: -7.7142096,-0.25155234 - 227: -7.52671,1.3421977 - 247: -5.7982244,-5.2088995 - 257: 22.422363,-0.3024767 - 258: 20.141113,-0.05247712 - 273: 23.024029,-7.7854886 + id: Bushm4 + decals: + 440: -1.0330989,-5.9242783 - node: + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: Grassb5 + id: Caution decals: - 219: -5.121667,-1.5171772 - 228: -7.3860846,3.6246834 - 238: -6.953186,-2.7306523 - 242: -4.531311,-4.6362576 - 265: 22.963747,-0.064474374 - 274: 20.102154,-7.035489 - 292: 20.127335,5.9734864 + 971: 13.595629,2.003996 + 972: 13.595629,-2.0041823 + 973: 13.600033,-9.000203 + 974: 13.600033,-15.003099 + 975: 13.600033,-23.005238 + - node: + color: '#9FED585D' + id: CheckerNESW + decals: + 1055: 3,-22 + 1056: 3,-21 - node: color: '#FFFFFFFF' - id: Grassd2 + id: CheckerNWSE + decals: + 1057: -7,-22 + 1058: -7,-21 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerNe + decals: + 447: -4,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerSe + decals: + 448: -3,-3 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerSw + decals: + 445: -2,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimInnerNw + decals: + 450: -3,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimInnerSe decals: - 108: 0,4 - 109: 0,3 + 449: -3,-4 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Grassd3 + id: DeliveryGreyscale decals: - 111: 0,-2 + 946: 5,-13 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Grasse1 + id: FlowersBROne decals: - 110: 0,-4 + 622: 6.8216906,10.010503 - node: color: '#FFFFFFFF' - id: Grasse3 + id: FlowersBRThree decals: - 107: 0,3 + 51: -0.9850607,-1.9918964 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelCornerNe + id: FlowersBRThree decals: - 85: 15,-3 - 159: 25,8 - 338: 25,1 - 339: 25,-6 + 623: 11.132726,9.995637 + 625: 5.9594836,5.9358044 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelCornerNw + id: FlowersBRTwo decals: - 84: 12,-3 - 152: 18,8 + 624: 12.128723,5.903023 - node: color: '#FFFFFFFF' - id: MiniTileSteelCornerSe + id: Flowersbr1 decals: - 83: 15,-8 - 176: 25,-12 - 340: 25,-2 - 341: 25,5 + 422: -4.986224,-6.3617783 - node: color: '#FFFFFFFF' - id: MiniTileSteelCornerSw + id: Flowerspv1 decals: - 0: 18,-12 - 86: 12,-8 + 50: -5.0475607,-1.9762714 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerNe + id: Flowerspv1 decals: - 42: 7,3 - 43: 11,3 - 342: 24,1 - 343: 24,-6 + 633: 11.146828,5.949858 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerNw + id: Flowerspv2 decals: - 44: 12,3 - 49: 8,3 - 296: 18,1 + 626: 6.47978,5.9506707 + 632: 12.12796,10.008332 + 634: 11.205407,9.958935 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerSe + id: Flowerspv3 decals: - 45: 11,10 - 48: 7,7 - 344: 24,-2 - 345: 24,5 + 627: 6.34599,10.052931 - node: color: '#FFFFFFFF' - id: MiniTileSteelInnerSw + id: Flowersy1 decals: - 46: 12,10 - 47: 8,7 - 295: 18,-1 + 431: -0.98622394,-6.4242783 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 33: 7,4 - 34: 7,5 - 35: 7,6 - 36: 11,4 - 37: 11,5 - 38: 11,6 - 39: 11,7 - 40: 11,8 - 41: 11,9 - 89: 15,-7 - 90: 15,-6 - 91: 15,-4 - 160: 25,7 - 161: 25,6 - 162: 25,0 - 163: 25,0 - 164: 25,-1 - 165: 25,-1 - 166: 25,-8 - 167: 25,-8 - 168: 25,-7 - 169: 25,-9 - 170: 25,-9 - 171: 25,-9 - 172: 25,-10 - 173: 25,-11 - 174: 25,-11 - 334: 24,-5 - 335: 24,-3 - 336: 24,2 - 337: 24,4 + id: Flowersy1 + decals: + 618: 5.9743495,10.0997 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 2: 17,1 - 3: 16,1 - 4: 15,1 - 5: 14,1 - 6: 13,1 - 11: 10,1 - 12: 9,1 - 13: 7,1 - 14: 6,1 - 15: 5,1 - 92: 14,-3 - 153: 19,8 - 154: 20,8 - 155: 21,8 - 156: 22,8 - 157: 23,8 - 158: 24,8 + id: Flowersy2 + decals: + 619: 11.786814,10.02537 - node: color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 7: 17,-1 - 8: 16,-1 - 9: 15,-1 - 10: 14,-1 - 16: 5,-1 - 17: 6,-1 - 18: 7,-1 - 19: 8,-1 - 20: 9,-1 - 21: 10,-1 - 22: 11,-1 - 23: 12,-1 - 87: 13,-8 - 88: 14,-8 - 178: 24,-12 - 179: 23,-12 - 180: 21,-12 - 181: 22,-12 - 182: 21,-12 - 183: 19,-12 - 184: 19,-12 - 185: 20,-12 + id: Flowersy3 + decals: + 426: -0.98622394,-7.9711533 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 1: 18,-11 - 24: 12,4 - 25: 12,5 - 26: 12,6 - 27: 12,7 - 28: 12,8 - 29: 12,9 - 30: 8,6 - 31: 8,5 - 32: 8,4 - 93: 12,-5 - 94: 12,-6 - 95: 12,-7 - 146: 18,2 - 147: 18,3 - 148: 18,4 - 149: 18,5 - 150: 18,6 - 151: 18,7 - 293: 18,-2 - 294: 18,-9 + id: Flowersy3 + decals: + 620: 6.9257503,5.937163 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Rock01 + id: Flowersy4 decals: - 190: -4.909659,2.3346171 - 252: -7.1703386,-3.6615915 - 270: 22.805279,-7.1604886 + 621: 11.311113,5.9074306 - node: color: '#FFFFFFFF' - id: Rock02 + id: Grassc1 decals: - 191: -5.9409094,1.7971272 + 48: -5.0006857,-1.9450214 + 421: -5.017474,-7.9711533 + 424: -1.0330989,-6.1274033 - node: color: '#FFFFFFFF' - id: Rock03 + id: Grassd1 decals: - 198: -4.4695826,4.8410835 - 212: -7.262292,0.2339716 - 233: -4.378093,-2.1768935 + 418: -5.001849,-6.1742783 - node: color: '#FFFFFFFF' - id: Rock04 + id: Grassd2 decals: - 234: -5.268718,-2.4268937 + 425: -1.0174739,-7.9242783 + 953: 6.818325,5.9747634 - node: color: '#FFFFFFFF' - id: Rock05 + id: Grassd3 decals: - 235: -4.3937173,-3.0831435 + 47: -5.0319357,-1.9450214 + 419: -5.017474,-6.9711533 + 423: -1.0487239,-7.0649033 + 952: 6.08395,6.0060134 + 954: 11.4277,6.0685134 - node: color: '#FFFFFFFF' - id: WarnBox + id: Grasse3 decals: - 175: 26,-4 - 177: 26,3 + 49: -1.0163107,-1.9293964 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerNe + id: GrayConcreteTrimInnerNe decals: - 50: 16,4 - 51: 16,7 - 52: 16,10 - 96: 10,-3 + 22: -6,-3 + 26: -2,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerNw + id: GrayConcreteTrimInnerNw decals: - 53: 14,10 - 54: 14,7 - 55: 14,4 - 98: 8,-3 + 24: -4,-3 + 25: 0,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerSe + id: GrayConcreteTrimInnerSe decals: - 59: 16,9 - 60: 16,6 - 61: 16,3 - 103: 10,-6 + 78: -2,-1 + 91: -6,-5 + 310: -6,-5 + 1121: -2,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerSw + id: GrayConcreteTrimInnerSw decals: - 101: 8,-6 + 30: 0,-1 + 74: -4,-1 + 95: -4,-5 + 96: 0,-5 + 109: 0,-1 + 134: 0,-1 + 312: 0,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineE + id: GrayConcreteTrimLineE decals: - 104: 10,-5 + 29: -2,-2 + 88: -2,-8 + 89: -2,-7 + 90: -2,-6 + 171: -6,-6 + 172: -6,-7 + 186: -2,-8 + 368: -6,-8 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineN + id: GrayConcreteTrimLineN decals: - 56: 15,4 - 57: 15,7 - 58: 15,10 - 97: 9,-3 + 23: -5,-3 + 27: -1,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineS + id: GrayConcreteTrimLineS decals: - 62: 15,3 - 63: 14,3 - 64: 15,6 - 65: 14,6 - 66: 15,9 - 67: 14,9 - 102: 9,-6 + 94: -5,-5 + 98: -1,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineW + id: GrayConcreteTrimLineW decals: - 99: 8,-4 - 100: 8,-5 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 36863 - 0,-1: - 0: 65535 - 0,2: - 0: 8 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 15 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 52431 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 0,-2: - 0: 65408 - 1,-2: - 0: 65520 - 1,-1: - 0: 65535 - 2,-2: - 0: 65528 - 2,-1: - 0: 65535 - 2,-3: - 0: 34952 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -1,-2: - 0: 65280 - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 4095 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 4,-4: - 0: 61440 - 5,-4: - 0: 65024 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65280 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 7,-4: - 0: 65024 - 7,-3: - 0: 65535 - 7,-2: - 0: 16383 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 238 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 3839 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 4095 - 7,1: - 0: 65328 - 7,2: - 0: 65535 - 7,3: - 0: 3839 - 8,1: - 0: 65472 - 8,2: - 0: 65535 - 8,3: - 0: 2047 - 9,1: - 0: 65296 - 9,2: - 0: 65535 - 9,3: - 0: 4095 - 10,1: - 0: 12544 - 10,2: - 0: 13107 - 10,3: - 0: 307 - 8,-4: - 0: 63232 - 8,-3: - 0: 65535 - 8,-2: - 0: 53247 - 9,-4: - 0: 65280 - 9,-3: - 0: 65535 - 9,-2: - 0: 8191 - 10,-4: - 0: 12544 - 10,-3: - 0: 13107 - 10,-2: - 0: 307 - 2,-4: - 0: 32768 - 3,-4: - 0: 61440 - -2,-2: - 0: 65280 - -2,-1: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 4095 - 6,-1: - 0: 30719 - 6,0: - 0: 65399 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - uid: 1295 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: Sky - type: Parallax - - space: False - mixture: - volume: 2500 - temperature: 298.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: MapAtmosphere - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - ambientLightColor: '#778899FF' - type: MapLight -- proto: Airlock - entities: - - uid: 2 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 3 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 4 - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 5 - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 6 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 7 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 8 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 9 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 10 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AirlockArmoryGlassLocked - entities: - - uid: 11 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AirlockArmoryLocked - entities: - - uid: 12 - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AirlockExternalGlass - entities: - - uid: 202 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - links: - - 488 - type: DeviceLinkSink - missingComponents: - - Destructible - - uid: 263 - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - links: - - 21 - type: DeviceLinkSink - missingComponents: - - Destructible -- proto: AirlockGlass - entities: - - uid: 17 + 20: -4,-2 + 28: 0,-2 + 99: -4,-6 + 100: -4,-7 + 101: -4,-8 + 173: 0,-6 + 174: 0,-7 + 175: 0,-8 + 187: -4,-8 + 342: 0,-8 + 404: 0,-2 + - node: + color: '#639137FF' + id: MiniTileBoxOverlay + decals: + 905: 3,-15 + 906: 3,-16 + - node: + color: '#FFFFFFA4' + id: MiniTileBoxOverlay + decals: + 894: -7,-16 + 895: -7,-15 + - node: + color: '#FFFFFF5D' + id: MiniTileCornerOverlaySE + decals: + 940: -3,-18 + - node: + color: '#639137FF' + id: MiniTileCornerOverlaySW + decals: + 931: -1,-18 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 995: 2,-17 + 997: -4,-17 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndW + decals: + 996: -6,-17 + 998: 0,-17 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 999: -1,-17 + 1000: -1,-16 + 1001: -1,-15 + 1034: -3,-16 + 1040: -7,-17 + 1053: -1,-14 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 1051: -5,-17 + 1052: 1,-17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 1131: -9,1 + 1132: -8,1 + 1133: -7,1 + 1134: -6,1 + 1135: -6,0 + 1136: -7,0 + 1137: -8,0 + 1138: -9,0 + 1139: -9,0 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 1049: -5,-17 + 1050: 1,-17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 1140: -9,0 + 1141: -8,0 + 1142: -7,0 + 1143: -6,0 + 1144: -6,0 + 1148: -6,-1 + 1149: -8,-1 + 1150: -9,-1 + 1151: -7,-1 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1007: -3,-17 + 1008: -3,-16 + 1009: -3,-15 + 1027: -1,-16 + 1042: 3,-17 + 1054: -3,-14 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlayNE + decals: + 763: -7,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlayNW + decals: + 762: -8,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlaySE + decals: + 765: -7,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlaySW + decals: + 764: -8,-11 + - node: + color: '#FFFFFF5D' + id: MiniTileLineOverlayE + decals: + 941: -3,-17 + 942: -3,-15 + 943: -3,-14 + - node: + color: '#639137FF' + id: MiniTileLineOverlayS + decals: + 932: 0,-18 + 933: 1,-18 + 934: 2,-18 + 935: 3,-18 + - node: + color: '#FFFFFF5D' + id: MiniTileLineOverlayS + decals: + 936: -7,-18 + 937: -6,-18 + 938: -5,-18 + 939: -4,-18 + - node: + color: '#639137FF' + id: MiniTileLineOverlayW + decals: + 928: -1,-14 + 929: -1,-15 + 930: -1,-17 + - node: + zIndex: 1 + color: '#5C473CFF' + id: OldConcreteTrimCornerNw + decals: + 1120: -3,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 965: 11,-30 + 966: 11,-29 + 967: 11,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1098: 15,-23 + 1099: 16,-23 + 1100: 15,-15 + 1101: 16,-15 + 1102: 15,-9 + 1103: 16,-9 + 1104: 15,-2 + 1105: 16,-2 + 1106: 15,2 + 1107: 16,2 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 968: 11,-30 + 969: 11,-29 + 970: 11,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1088: 15,2 + 1089: 16,2 + 1090: 15,-2 + 1091: 16,-2 + 1092: 15,-9 + 1093: 16,-9 + 1094: 15,-15 + 1095: 16,-15 + 1096: 15,-23 + 1097: 16,-23 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerNeWhite + decals: + 67: -2,1 + 433: -4,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNeWhite + decals: + 483: 7,9 + 484: 12,9 + 1035: 1,-19 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerNwWhite + decals: + 68: -4,1 + - node: + color: '#463126FF' + id: WoodTrimThinCornerNwWhite + decals: + 1112: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNwWhite + decals: + 485: 6,9 + 486: 11,9 + 1036: -5,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerNwWhite + decals: + 555: 5,-15 + - node: + color: '#281E18FF' + id: WoodTrimThinCornerSeWhite + decals: + 324: 3,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerSeWhite + decals: + 270: 3,-5 + 435: -4,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSeWhite + decals: + 487: 12,7 + 488: 7,7 + 1037: 1,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerSeWhite + decals: + 561: 8,-15 + 564: 7,-17 + - node: + color: '#281E18FF' + id: WoodTrimThinCornerSwWhite + decals: + 319: -9,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerSwWhite + decals: + 293: -9,-5 + 437: -2,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSwWhite + decals: + 489: 6,7 + 490: 11,7 + 1038: -5,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerSwWhite + decals: + 571: 5,-17 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerNeWhite + decals: + 36: -6,-3 + 37: -2,-3 + 69: -3,1 + 81: -2,0 + 87: 3,-3 + 454: -3,-3 + 455: -2,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerNeWhite + decals: + 1119: -4,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerNeWhite + decals: + 1039: -5,-22 + 1041: 1,-19 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerNwWhite + decals: + 32: -4,-3 + 38: 0,-3 + 70: -3,1 + 71: -4,0 + 84: -9,-3 + 452: -3,-3 + 453: -4,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerNwWhite + decals: + 1118: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerNwWhite + decals: + 1043: 1,-22 + 1044: -5,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinInnerNwWhite + decals: + 583: 6,-15 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerSeWhite + decals: + 79: -2,0 + 80: -2,-1 + 86: 3,-4 + 135: -6,-5 + 201: -3,-8 + 314: -6,-5 + 457: -2,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerSeWhite + decals: + 1115: -3,-5 + 1116: -4,-3 + 1122: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerSeWhite + decals: + 1045: -5,-19 + 1046: 1,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinInnerSeWhite + decals: + 582: 7,-15 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerSwWhite + decals: + 45: 0,-1 + 72: -4,0 + 75: -4,-1 + 85: -9,-4 + 136: 0,-1 + 143: -4,-5 + 162: 0,-5 + 197: -3,-8 + 313: 0,-5 + 451: -4,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerSwWhite + decals: + 1114: -3,-5 + 1117: -2,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerSwWhite + decals: + 1047: 1,-19 + 1048: -5,-22 + - node: + color: '#281E18FF' + id: WoodTrimThinLineEWhite + decals: + 325: 3,-7 + 326: 3,-6 + - node: + color: '#422E23FF' + id: WoodTrimThinLineEWhite + decals: + 40: -2,-2 + 77: -2,-1 + 121: 3,-2 + 123: 3,-5 + 153: -2,-8 + 154: -2,-7 + 155: -2,-6 + 178: -6,-6 + 179: -6,-7 + 188: -2,-8 + 372: -6,-8 + 443: -5,-4 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineEWhite + decals: + 491: 12,8 + 492: 7,8 + 1030: -5,-21 + 1031: -5,-20 + 1032: 1,-21 + 1033: 1,-20 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineEWhite + decals: + 579: 7,-16 + 581: 8,-14 + - node: + color: '#422E23FF' + id: WoodTrimThinLineNWhite + decals: + 31: -5,-3 + 39: -1,-3 + 441: -3,-6 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineNWhite + decals: + 1015: -4,-22 + 1016: -3,-22 + 1017: -2,-22 + 1018: -1,-22 + 1019: 0,-22 + 1020: 0,-19 + 1021: -1,-19 + 1022: -2,-19 + 1023: -3,-19 + 1024: -4,-19 + - node: + color: '#281E18FF' + id: WoodTrimThinLineSWhite + decals: + 320: -8,-8 + 321: -7,-8 + 322: 1,-8 + 323: 2,-8 + 327: 0,-8 + 366: -6,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinLineSWhite + decals: + 115: 0,-1 + 117: 1,-1 + 118: 2,-1 + 119: 3,-1 + 139: -5,-5 + 159: -1,-5 + 182: -4,-8 + 185: -2,-8 + 278: 2,-5 + 279: 1,-5 + 284: -8,-5 + 287: -7,-5 + 306: 0,-5 + 307: -6,-5 + 398: 0,-2 + 399: 1,-2 + 400: 2,-2 + 401: 3,-2 + 444: -3,-2 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineSWhite + decals: + 1002: -4,-22 + 1003: -3,-22 + 1004: -2,-22 + 1005: -1,-22 + 1006: 0,-22 + 1010: -4,-19 + 1011: -3,-19 + 1012: -2,-19 + 1013: -1,-19 + 1014: 0,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineSWhite + decals: + 544: 5,-13 + 545: 6,-13 + 546: 7,-13 + 547: 8,-13 + 580: 6,-17 + - node: + color: '#281E18FF' + id: WoodTrimThinLineWWhite + decals: + 317: -9,-6 + 318: -9,-7 + - node: + color: '#422E23FF' + id: WoodTrimThinLineWWhite + decals: + 33: -4,-2 + 41: 0,-2 + 73: -4,-1 + 146: -4,-6 + 148: -4,-7 + 149: -4,-8 + 170: -1,0 + 181: 0,-6 + 183: 0,-7 + 184: 0,-8 + 190: -4,-8 + 363: 0,-8 + 406: 0,-2 + 442: -1,-4 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineWWhite + decals: + 493: 6,8 + 494: 11,8 + 1025: 1,-21 + 1026: 1,-20 + 1028: -5,-21 + 1029: -5,-20 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineWWhite + decals: + 573: 5,-16 + 577: 6,-14 + - type: GridAtmosphere + version: 2 + data: + tiles: + -4,-4: + 0: 62540 + -5,-4: + 0: 32768 + -4,-2: + 1: 65535 + -5,-2: + 1: 60608 + -4,-1: + 1: 65535 + -5,-1: + 1: 52974 + -4,0: + 1: 255 + -3,-4: + 0: 12847 + 1: 2048 + -3,-2: + 1: 48056 + -3,-1: + 1: 48127 + -3,-5: + 0: 4383 + -3,-3: + 0: 8465 + 1: 2184 + -3,0: + 1: 32907 + 0: 4096 + -2,-3: + 1: 2039 + -2,-2: + 1: 63351 + -2,-1: + 1: 30719 + -2,-4: + 1: 3310 + -2,0: + 1: 28799 + -2,-5: + 1: 61134 + -1,-4: + 1: 20479 + -1,-3: + 1: 12287 + -1,-2: + 1: 63351 + -1,-1: + 1: 30719 + -1,-5: + 1: 65535 + -1,0: + 1: 62079 + 0,-4: + 1: 2047 + 0,-3: + 1: 4095 + 0,-2: + 1: 65535 + 0,-1: + 1: 65535 + 0,0: + 1: 61695 + 0,1: + 1: 62719 + -1,1: + 1: 29439 + 0,2: + 1: 65535 + 0,3: + 1: 4095 + 0,4: + 0: 11810 + 1,1: + 1: 53487 + 1,2: + 1: 4573 + 1,3: + 1: 3551 + 1,0: + 1: 61166 + 1,4: + 0: 61713 + 1,-1: + 1: 61183 + 2,0: + 1: 65535 + 2,1: + 1: 63487 + 2,2: + 1: 2047 + 2,3: + 1: 4095 + 2,-1: + 1: 65535 + 2,4: + 0: 61713 + 3,0: + 1: 16179 + 3,1: + 1: 4147 + 3,2: + 1: 17 + 0: 35016 + 3,3: + 1: 273 + 0: 35976 + 3,-1: + 1: 16179 + 3,4: + 0: 63897 + 4,0: + 1: 256 + 0,-5: + 1: 65407 + 1,-3: + 1: 61182 + 1,-4: + 1: 60654 + 1,-2: + 1: 61166 + 1,-5: + 1: 57344 + 0: 14 + 2,-4: + 1: 40412 + 2,-3: + 1: 65535 + 2,-2: + 1: 65535 + 2,-5: + 1: 61164 + 3,-4: + 1: 497 + 3,-3: + 1: 62259 + 3,-2: + 1: 13107 + 3,-5: + 1: 4369 + 4,-4: + 1: 16 + 4,-3: + 1: 4096 + 4,-1: + 1: 256 + -5,0: + 1: 12 + 0: 32768 + -4,1: + 0: 20224 + -5,1: + 0: 2297 + -4,2: + 0: 196 + -3,1: + 0: 8977 + 1: 136 + -3,2: + 0: 8946 + -3,3: + 0: 738 + -2,1: + 1: 49279 + -2,2: + 0: 16 + 1: 49344 + -2,3: + 0: 16 + 1: 49344 + -2,4: + 1: 12 + 0: 17408 + -1,2: + 1: 30583 + -1,3: + 1: 29303 + -1,4: + 1: 7 + 0: 17408 + 0,-8: + 0: 8944 + -1,-8: + 0: 240 + 0,-7: + 1: 8704 + 0: 130 + -1,-7: + 1: 43520 + 0,-6: + 1: 65522 + -1,-6: + 1: 65530 + 1,-8: + 0: 18192 + 1,-7: + 0: 17652 + 1,-6: + 0: 14 + 2,-7: + 0: 16 + 1: 52360 + 2,-6: + 1: 61164 + 2,-8: + 1: 34944 + 3,-7: + 1: 4352 + 3,-6: + 1: 4593 + 4,-6: + 1: 16 + -3,-7: + 0: 4596 + -3,-6: + 0: 4383 + -3,-8: + 0: 19456 + -2,-8: + 0: 35312 + -2,-7: + 0: 56 + 1: 34816 + -2,-6: + 1: 61160 + -6,-2: + 0: 7974 + -6,-1: + 0: 61713 + -6,0: + 0: 50274 + -6,-3: + 0: 19584 + -5,-3: + 0: 2207 + -6,1: + 0: 8 + -2,5: + 0: 228 + -1,5: + 0: 8820 + -1,6: + 0: 59942 + 0,5: + 1: 13056 + 0: 130 + 0,6: + 1: 3 + 0: 62472 + 1,5: + 0: 4369 + 1,6: + 0: 4369 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap + - type: RestrictedRange + range: 48 +- proto: AirAlarm + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 1089 + - 761 + - 138 + - 971 + - 844 + - 954 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 818 + - uid: 1009 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 1721 + - 1712 + - 1718 + - 1711 + - 1710 + - 1511 + - 138 + - uid: 1038 + components: + - type: Transform + pos: -3.5,6.5 + parent: 818 + - type: DeviceList + devices: + - 969 + - 652 + - 970 + - 788 + - 642 + - 17 + - 797 + - 1732 + - 622 + - 596 + - 1868 + - 1876 + - uid: 1040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 818 + - type: DeviceList + devices: + - 108 + - 109 + - 1174 + - 1177 + - 1176 + - 1173 + - 298 + - 970 + - 777 + - 841 + - 971 + - 592 + - 583 + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 519 + - 13 + - 954 + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 818 + - type: DeviceList + devices: + - 931 + - 636 + - 601 + - 602 + - 603 + - 474 + - 461 + - 8 + - 652 + - 777 + - 841 + - 844 + - 837 + - 755 + - 766 + - 757 + - 568 +- proto: Airlock + entities: + - uid: 14 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 818 + - uid: 15 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 818 + - uid: 20 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - uid: 21 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 818 + - uid: 473 + components: + - type: Transform + pos: -4.5,13.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 549 + components: + - type: Transform + pos: -4.5,9.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 595 + components: + - type: Transform + pos: -4.5,7.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 791 + components: + - type: Transform + pos: -4.5,11.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 818 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 764 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 +- proto: AirlockBarGlassLocked + entities: + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 818 +- proto: AirlockEngineeringLocked + entities: + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 818 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 28 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 550 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 561 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1221 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1363 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible +- proto: AirlockExternalShuttleLocked + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 1363: + - DockStatus: AutoClose + 1960: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 28: + - DockStatus: AutoClose + 1959: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 561: + - DockStatus: AutoClose + 1957: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 550: + - DockStatus: AutoClose + 1958: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 462: + - DockStatus: AutoClose + 1911: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1373 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible +- proto: AirlockGlass + entities: + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 818 + - uid: 1337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 818 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 818 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 +- proto: AirlockMaint + entities: + - uid: 1704 + components: + - type: Transform + pos: -2.5,14.5 + parent: 818 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 730 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 818 +- proto: AirSensor + entities: + - uid: 568 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 +- proto: APCBasic + entities: + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 572 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 818 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 818 + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 818 +- proto: ArrivalsShuttleTimer + entities: + - uid: 318 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 818 + - uid: 486 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 818 + - uid: 487 + components: + - type: Transform + pos: 14.5,3.5 + parent: 818 + - uid: 802 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 818 + - uid: 803 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 818 +- proto: Ash + entities: + - uid: 1660 + components: + - type: Transform + pos: -1.54991,12.886424 + parent: 818 +- proto: Ashtray + entities: + - uid: 1661 + components: + - type: Transform + pos: -1.596785,12.459861 + parent: 818 +- proto: AtmosDeviceFanTiny + entities: + - uid: 34 + components: + - type: Transform + pos: 16.5,2.5 + parent: 818 + - uid: 322 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 818 + - uid: 463 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 818 + - uid: 484 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 818 + - uid: 635 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 818 + - uid: 1209 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 818 +- proto: BarSign + entities: + - uid: 648 + components: + - type: Transform + pos: 2.5,2.5 + parent: 818 +- proto: BaseComputer + entities: + - uid: 1648 + components: + - type: MetaData + name: касса + - type: Transform + pos: -1.5,-19.5 + parent: 818 +- proto: BenchRedComfy + entities: + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 818 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 818 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 818 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 818 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 818 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 818 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 818 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 818 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 818 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 818 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 818 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 818 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 818 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 818 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 818 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 818 + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 818 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 818 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 818 + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 818 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 818 + - uid: 660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 818 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 818 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 818 +- proto: BlockGameArcade + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 818 +- proto: BookRandomStory + entities: + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.68713,-1.3668416 + parent: 818 +- proto: BoozeDispenser + entities: + - uid: 513 + components: + - type: Transform + pos: 1.5,1.5 + parent: 818 +- proto: BowImprovised + entities: + - uid: 157 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 142 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 818 + - uid: 143 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 818 + - uid: 472 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 818 + - uid: 477 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 818 + - uid: 512 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 818 + - uid: 604 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 818 + - uid: 665 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 818 + - uid: 806 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 818 + - uid: 1010 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 818 + - uid: 1238 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 818 + - uid: 1384 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 818 + - uid: 1394 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 818 + - uid: 1395 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 818 + - uid: 1396 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 818 + - uid: 1397 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 1398 + components: + - type: Transform + pos: -0.5,5.5 + parent: 818 + - uid: 1399 + components: + - type: Transform + pos: -0.5,4.5 + parent: 818 + - uid: 1401 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 818 + - uid: 1402 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 818 + - uid: 1403 + components: + - type: Transform + pos: -1.5,4.5 + parent: 818 + - uid: 1404 + components: + - type: Transform + pos: -2.5,4.5 + parent: 818 + - uid: 1405 + components: + - type: Transform + pos: -3.5,4.5 + parent: 818 + - uid: 1406 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - uid: 1407 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 1408 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 1409 + components: + - type: Transform + pos: 0.5,4.5 + parent: 818 + - uid: 1410 + components: + - type: Transform + pos: 1.5,4.5 + parent: 818 + - uid: 1411 + components: + - type: Transform + pos: 2.5,4.5 + parent: 818 + - uid: 1415 + components: + - type: Transform + pos: -2.5,5.5 + parent: 818 + - uid: 1416 + components: + - type: Transform + pos: -2.5,6.5 + parent: 818 + - uid: 1417 + components: + - type: Transform + pos: -2.5,7.5 + parent: 818 + - uid: 1418 + components: + - type: Transform + pos: -2.5,8.5 + parent: 818 + - uid: 1419 + components: + - type: Transform + pos: -2.5,9.5 + parent: 818 + - uid: 1420 + components: + - type: Transform + pos: -2.5,10.5 + parent: 818 + - uid: 1421 + components: + - type: Transform + pos: -2.5,11.5 + parent: 818 + - uid: 1424 + components: + - type: Transform + pos: -2.5,12.5 + parent: 818 + - uid: 1426 + components: + - type: Transform + pos: -2.5,13.5 + parent: 818 + - uid: 1443 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 818 + - uid: 1444 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 818 + - uid: 1445 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 818 + - uid: 1446 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 818 + - uid: 1449 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 818 + - uid: 1450 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 818 + - uid: 1451 + components: + - type: Transform + pos: 12.5,0.5 + parent: 818 + - uid: 1452 + components: + - type: Transform + pos: 12.5,1.5 + parent: 818 + - uid: 1453 + components: + - type: Transform + pos: 12.5,2.5 + parent: 818 + - uid: 1454 + components: + - type: Transform + pos: 13.5,2.5 + parent: 818 + - uid: 1456 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 818 + - uid: 1457 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 818 + - uid: 1458 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 818 + - uid: 1459 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 818 + - uid: 1460 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 818 + - uid: 1461 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 818 + - uid: 1462 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 818 + - uid: 1463 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 818 + - uid: 1464 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 818 + - uid: 1465 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 818 + - uid: 1466 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 818 + - uid: 1467 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 818 + - uid: 1468 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 818 + - uid: 1469 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 818 + - uid: 1470 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 818 + - uid: 1471 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 818 + - uid: 1472 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 818 + - uid: 1473 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 818 + - uid: 1474 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 818 + - uid: 1475 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 818 + - uid: 1476 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 818 + - uid: 1477 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 818 + - uid: 1478 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 818 + - uid: 1479 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 818 + - uid: 1480 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 818 + - uid: 1481 + components: + - type: Transform + pos: 6.5,0.5 + parent: 818 + - uid: 1482 + components: + - type: Transform + pos: 6.5,1.5 + parent: 818 + - uid: 1483 + components: + - type: Transform + pos: 6.5,2.5 + parent: 818 + - uid: 1484 + components: + - type: Transform + pos: 6.5,3.5 + parent: 818 + - uid: 1485 + components: + - type: Transform + pos: 6.5,4.5 + parent: 818 + - uid: 1486 + components: + - type: Transform + pos: 7.5,4.5 + parent: 818 + - uid: 1487 + components: + - type: Transform + pos: 8.5,4.5 + parent: 818 + - uid: 1488 + components: + - type: Transform + pos: 9.5,4.5 + parent: 818 + - uid: 1489 + components: + - type: Transform + pos: 9.5,5.5 + parent: 818 + - uid: 1490 + components: + - type: Transform + pos: 9.5,6.5 + parent: 818 + - uid: 1491 + components: + - type: Transform + pos: 9.5,7.5 + parent: 818 + - uid: 1492 + components: + - type: Transform + pos: 9.5,8.5 + parent: 818 + - uid: 1493 + components: + - type: Transform + pos: 9.5,9.5 + parent: 818 + - uid: 1494 + components: + - type: Transform + pos: 8.5,8.5 + parent: 818 + - uid: 1495 + components: + - type: Transform + pos: 10.5,8.5 + parent: 818 + - uid: 1496 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 818 + - uid: 1497 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 818 + - uid: 1498 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 818 + - uid: 1499 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 818 + - uid: 1500 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 818 + - uid: 1501 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 818 + - uid: 1502 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 818 + - uid: 1503 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 818 + - uid: 1504 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 818 + - uid: 1505 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 818 + - uid: 1506 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 818 + - uid: 1507 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 818 + - uid: 1508 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 818 + - uid: 1509 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 818 + - uid: 1510 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 818 + - uid: 1519 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 818 + - uid: 1520 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 818 + - uid: 1521 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 818 + - uid: 1522 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 818 + - uid: 1523 + components: + - type: Transform + pos: -1.5,0.5 + parent: 818 + - uid: 1524 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 818 + - uid: 1525 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 818 + - uid: 1526 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 818 + - uid: 1527 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 818 + - uid: 1528 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - uid: 1529 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 818 + - uid: 1530 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 818 + - uid: 1531 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 818 + - uid: 1532 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 818 + - uid: 1533 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 818 + - uid: 1534 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 818 + - uid: 1535 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 818 + - uid: 1536 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 1538 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 818 + - uid: 1539 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - uid: 1540 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 818 + - uid: 1542 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 818 + - uid: 1543 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 818 + - uid: 1544 + components: + - type: Transform + pos: -0.5,0.5 + parent: 818 + - uid: 1546 + components: + - type: Transform + pos: 0.5,0.5 + parent: 818 + - uid: 1547 + components: + - type: Transform + pos: -3.5,0.5 + parent: 818 + - uid: 1548 + components: + - type: Transform + pos: -4.5,0.5 + parent: 818 + - uid: 1549 + components: + - type: Transform + pos: -5.5,0.5 + parent: 818 + - uid: 1550 + components: + - type: Transform + pos: -6.5,0.5 + parent: 818 + - uid: 1551 + components: + - type: Transform + pos: 1.5,0.5 + parent: 818 + - uid: 1553 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 818 + - uid: 1554 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 1555 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 818 + - uid: 1556 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 818 + - uid: 1557 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 818 + - uid: 1558 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 818 + - uid: 1559 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 818 + - uid: 1560 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 818 + - uid: 1561 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 818 + - uid: 1562 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 + - uid: 1563 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 818 + - uid: 1564 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 818 + - uid: 1565 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 818 + - uid: 1579 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 818 + - uid: 1591 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 818 + - uid: 1592 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 818 + - uid: 1593 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 818 + - uid: 1594 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 818 + - uid: 1595 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 818 + - uid: 1597 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1598 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 818 + - uid: 1599 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 818 + - uid: 1600 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 818 + - uid: 1601 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 818 + - uid: 1602 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 818 + - uid: 1603 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 818 + - uid: 1604 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 818 + - uid: 1605 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 818 + - uid: 1606 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 818 + - uid: 1607 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 818 + - uid: 1608 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 818 + - uid: 1609 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 818 + - uid: 1610 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 818 + - uid: 1611 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 818 + - uid: 1612 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 818 + - uid: 1613 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 818 + - uid: 1615 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 818 + - uid: 1616 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 818 + - uid: 1617 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 818 + - uid: 1822 + components: + - type: Transform + pos: -2.5,14.5 + parent: 818 + - uid: 1824 + components: + - type: Transform + pos: -2.5,15.5 + parent: 818 + - uid: 1825 + components: + - type: Transform + pos: -3.5,15.5 + parent: 818 + - uid: 1826 + components: + - type: Transform + pos: -4.5,15.5 + parent: 818 + - uid: 1871 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 818 + - uid: 1901 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 818 +- proto: CableHV + entities: + - uid: 946 + components: + - type: Transform + pos: -5.5,3.5 + parent: 818 + - uid: 947 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 948 + components: + - type: Transform + pos: -5.5,5.5 + parent: 818 + - uid: 949 + components: + - type: Transform + pos: -6.5,5.5 + parent: 818 + - uid: 951 + components: + - type: Transform + pos: -7.5,5.5 + parent: 818 + - uid: 952 + components: + - type: Transform + pos: -8.5,5.5 + parent: 818 +- proto: CableMV + entities: + - uid: 57 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 207 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 818 + - uid: 227 + components: + - type: Transform + pos: -8.5,5.5 + parent: 818 + - uid: 291 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 818 + - uid: 293 + components: + - type: Transform + pos: -7.5,4.5 + parent: 818 + - uid: 294 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 818 + - uid: 297 + components: + - type: Transform + pos: -8.5,4.5 + parent: 818 + - uid: 699 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 974 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - uid: 984 + components: + - type: Transform + pos: -3.5,4.5 + parent: 818 + - uid: 985 + components: + - type: Transform + pos: -2.5,4.5 + parent: 818 + - uid: 986 + components: + - type: Transform + pos: -1.5,4.5 + parent: 818 + - uid: 987 + components: + - type: Transform + pos: -0.5,4.5 + parent: 818 + - uid: 988 + components: + - type: Transform + pos: -0.5,5.5 + parent: 818 + - uid: 989 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 1000 + components: + - type: Transform + pos: 0.5,4.5 + parent: 818 + - uid: 1001 + components: + - type: Transform + pos: 1.5,4.5 + parent: 818 + - uid: 1002 + components: + - type: Transform + pos: 2.5,4.5 + parent: 818 + - uid: 1003 + components: + - type: Transform + pos: 3.5,4.5 + parent: 818 + - uid: 1004 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - uid: 1005 + components: + - type: Transform + pos: 5.5,4.5 + parent: 818 + - uid: 1006 + components: + - type: Transform + pos: 6.5,4.5 + parent: 818 + - uid: 1007 + components: + - type: Transform + pos: 7.5,4.5 + parent: 818 + - uid: 1008 + components: + - type: Transform + pos: 8.5,4.5 + parent: 818 + - uid: 1012 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 818 + - uid: 1023 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 818 + - uid: 1024 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 818 + - uid: 1025 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 818 + - uid: 1026 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - uid: 1027 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 818 + - uid: 1028 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 818 + - uid: 1029 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 818 + - uid: 1033 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 818 + - uid: 1034 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 1039 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 818 + - uid: 1041 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 818 + - uid: 1042 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 818 + - uid: 1043 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 818 + - uid: 1044 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 818 + - uid: 1045 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 818 + - uid: 1046 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 818 + - uid: 1047 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 818 + - uid: 1048 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 818 + - uid: 1049 + components: + - type: Transform + pos: 8.5,3.5 + parent: 818 + - uid: 1050 + components: + - type: Transform + pos: 8.5,2.5 + parent: 818 + - uid: 1051 + components: + - type: Transform + pos: 8.5,1.5 + parent: 818 + - uid: 1052 + components: + - type: Transform + pos: 8.5,0.5 + parent: 818 + - uid: 1053 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 818 + - uid: 1054 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 818 + - uid: 1055 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 818 + - uid: 1056 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 818 + - uid: 1057 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 818 + - uid: 1058 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 818 + - uid: 1059 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 818 + - uid: 1060 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 818 + - uid: 1061 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 818 + - uid: 1062 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 818 + - uid: 1063 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 818 + - uid: 1064 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 818 + - uid: 1065 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 818 + - uid: 1066 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 818 + - uid: 1067 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 818 + - uid: 1068 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 818 + - uid: 1069 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 818 + - uid: 1094 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 818 + - uid: 1125 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - uid: 1126 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 818 + - uid: 1127 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 818 + - uid: 1128 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 818 + - uid: 1129 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 1130 + components: + - type: Transform + pos: -2.5,1.5 + parent: 818 + - uid: 1131 + components: + - type: Transform + pos: -2.5,2.5 + parent: 818 + - uid: 1132 + components: + - type: Transform + pos: -2.5,3.5 + parent: 818 + - uid: 1133 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 818 + - uid: 1134 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 818 + - uid: 1135 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 818 +- proto: CableTerminal + entities: + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 818 +- proto: CandleBlackInfinite + entities: + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.2142973,-7.1859117 + parent: 818 +- proto: CandleGreenSmallInfinite + entities: + - uid: 842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.7767973,-7.3265367 + parent: 818 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 772 + components: + - type: Transform + pos: -7.2544527,-7.1859117 + parent: 818 +- proto: CandleRedInfinite + entities: + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.7544527,-7.2327867 + parent: 818 +- proto: Carpet + entities: + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 818 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 818 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 818 + - uid: 257 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 818 + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 818 + - uid: 554 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 818 + - uid: 990 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 818 + - uid: 996 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 818 + - uid: 1183 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 818 + - uid: 1186 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 818 + - uid: 1207 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 818 + - uid: 1215 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 818 + - uid: 1217 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1218 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1219 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 818 +- proto: CarpetBlack + entities: + - uid: 617 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 818 + - uid: 1145 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 818 + - uid: 1184 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 818 + - uid: 1362 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 818 +- proto: CarpetGreen + entities: + - uid: 1167 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 818 + - uid: 1168 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 818 + - uid: 1169 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 818 + - uid: 1170 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 818 + - uid: 1171 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 818 + - uid: 1172 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 818 +- proto: CarpetWhite + entities: + - uid: 1157 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 818 + - uid: 1158 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 818 + - uid: 1159 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 818 + - uid: 1160 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 818 + - uid: 1161 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 818 + - uid: 1162 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 818 +- proto: Catwalk + entities: + - uid: 599 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 609 + components: + - type: Transform + pos: -8.5,4.5 + parent: 818 + - uid: 792 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 853 + components: + - type: Transform + pos: -7.5,4.5 + parent: 818 +- proto: Chair + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 818 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 818 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 818 + - uid: 430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 818 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 818 + - uid: 457 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 818 + - uid: 1114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 818 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 818 + - uid: 1146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 818 +- proto: ChairGreyscale + entities: + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 818 +- proto: ChairOfficeDark + entities: + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5282974,-14.420438 + parent: 818 +- proto: ChairWood + entities: + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 818 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 818 + - uid: 1392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 818 + - uid: 1625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 818 + - uid: 1626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 818 +- proto: CigaretteMold + entities: + - uid: 1763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.691752,12.017473 + parent: 818 +- proto: CigaretteSpent + entities: + - uid: 1671 + components: + - type: Transform + pos: -1.70616,12.589549 + parent: 818 + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.378035,12.433299 + parent: 818 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.315535,12.433299 + parent: 818 +- proto: ClothingBeltQuiver + entities: + - uid: 156 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatBeretFrench + entities: + - uid: 1518 + components: + - type: Transform + parent: 1516 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBunny + entities: + - uid: 1744 + components: + - type: Transform + pos: 1.321607,-25.619549 + parent: 818 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 154 + components: + - type: MetaData + name: повязка службы безопасности + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatUshanka + entities: + - uid: 1514 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 153 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoat + entities: + - uid: 1079 + components: + - type: Transform + pos: -6.765032,-16.31055 + parent: 818 + - uid: 1513 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterEngi + entities: + - uid: 1731 + components: + - type: MetaData + name: коричневая зимняя куртка + - type: Transform + pos: -6.793171,-17.483648 + parent: 818 +- proto: ClothingOuterWinterGen + entities: + - uid: 1087 + components: + - type: MetaData + name: бело-синяя зимняя куртка + - type: Transform + pos: -6.786134,-16.921467 + parent: 818 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 1733 + components: + - type: Transform + pos: 2.352745,-13.342463 + parent: 818 +- proto: ClothingShoesBootsWinter + entities: + - uid: 1338 + components: + - type: Transform + pos: -5.3679223,-13.595501 + parent: 818 +- proto: ClothingShoesBootsWinterCargo + entities: + - uid: 1187 + components: + - type: MetaData + name: коричневые зимние ботинки + - type: Transform + pos: -3.6020138,-13.568881 + parent: 818 +- proto: ClothingShoesBootsWinterMed + entities: + - uid: 1254 + components: + - type: MetaData + name: синие зимние ботинки + - type: Transform + pos: -4.5038624,-13.212091 + parent: 818 +- proto: ClothingShoesBootsWork + entities: + - uid: 1634 + components: + - type: Transform + pos: 1.3232573,-13.656497 + parent: 818 +- proto: ClothingShoesColorBlack + entities: + - uid: 1588 + components: + - type: Transform + pos: 0.50740063,-13.279211 + parent: 818 +- proto: ClothingShoesColorBlue + entities: + - uid: 37 + components: + - type: Transform + pos: 0.4818722,-13.819506 + parent: 818 +- proto: ClothingShoesColorRed + entities: + - uid: 1011 + components: + - type: Transform + pos: 2.2520154,-13.7933235 + parent: 818 +- proto: ClothingShoesDameDane + entities: + - uid: 1766 + components: + - type: Transform + pos: 2.990286,-16.449436 + parent: 818 +- proto: ClothingShoesLeather + entities: + - uid: 1319 + components: + - type: Transform + pos: 1.5809284,-13.332744 + parent: 818 +- proto: ClothingShoesSlippers + entities: + - uid: 1745 + components: + - type: Transform + pos: 1.727857,-25.275799 + parent: 818 +- proto: ClothingShoesTourist + entities: + - uid: 152 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtBlackElegantDress + entities: + - uid: 1382 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: чёрное элегантное платье. + - type: Transform + pos: 3.8379946,-16.860613 + parent: 818 + - uid: 1517 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: чёрное элегантное платье + - type: Transform + parent: 1516 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtGreenTurtleneckDress + entities: + - uid: 1191 + components: + - type: MetaData + desc: Платье с водолазкой и уникальным дизайном. + name: зелёное платье с водолазкой + - type: Transform + pos: 3.8496308,-17.384262 + parent: 818 +- proto: ClothingUniformJumpskirtPurpleElegantDress + entities: + - uid: 1233 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: фиолетовое элегантное платье + - type: Transform + pos: 3.8296533,-16.31055 + parent: 818 +- proto: ClothingUniformJumpsuitCasualRed + entities: + - uid: 155 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 1515 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ComfyChair + entities: + - uid: 341 + components: + - type: Transform + pos: 6.5,9.5 + parent: 818 + - uid: 466 + components: + - type: Transform + pos: 12.5,9.5 + parent: 818 + - uid: 481 + components: + - type: Transform + pos: 7.5,9.5 + parent: 818 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 818 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 818 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 818 + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 818 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 818 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 818 + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 818 + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 818 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 818 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 818 + - uid: 771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 818 + - uid: 827 + components: + - type: Transform + pos: 11.5,9.5 + parent: 818 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 818 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 818 + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 818 + - uid: 836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 818 + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 818 + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 818 + - uid: 1752 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 818 +- proto: ComputerCriminalRecords + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 818 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 818 +- proto: ConveyorBelt + entities: + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 818 + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 818 + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 818 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 818 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 818 + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 818 +- proto: CowToolboxFilled + entities: + - uid: 1645 + components: + - type: Transform + pos: -6.457727,-11.454361 + parent: 818 +- proto: CrateTrashCartFilled + entities: + - uid: 1682 + components: + - type: Transform + pos: -5.5,15.5 + parent: 818 +- proto: CurtainsWhite + entities: + - uid: 916 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 818 +- proto: CurtainsWhiteOpen + entities: + - uid: 19 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 818 + - uid: 917 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 818 + - uid: 938 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 818 +- proto: DisposalBend + entities: + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 818 + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 818 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 818 + - uid: 1313 + components: + - type: Transform + pos: 5.5,4.5 + parent: 818 + - uid: 1335 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 818 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 818 +- proto: DisposalJunction + entities: + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 818 + - uid: 1251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 818 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - uid: 1666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 818 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 818 +- proto: DisposalJunctionFlipped + entities: + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 818 + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 818 + - uid: 1663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 818 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 818 + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 818 +- proto: DisposalPipe + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 818 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 818 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 818 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 818 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 818 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 818 + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 818 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 818 + - uid: 1153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 818 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 818 + - uid: 1155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 818 + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 818 + - uid: 1250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 818 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 818 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 818 + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 818 + - uid: 1258 + components: + - type: Transform + pos: -3.5,8.5 + parent: 818 + - uid: 1264 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 818 + - uid: 1265 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 818 + - uid: 1267 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 818 + - uid: 1268 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - uid: 1269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 818 + - uid: 1270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 818 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 818 + - uid: 1272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 818 + - uid: 1273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 818 + - uid: 1274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 818 + - uid: 1278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 818 + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 818 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 818 + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 818 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 818 + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 818 + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 818 + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 818 + - uid: 1303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 818 + - uid: 1304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 818 + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 818 + - uid: 1306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 818 + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 818 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 818 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 818 + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 818 + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 818 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 818 + - uid: 1664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 818 + - uid: 1665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 818 + - uid: 1670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 818 + - uid: 1672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 818 + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 818 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 818 +- proto: DisposalTrunk + entities: + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 818 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 818 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 818 + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 818 + - uid: 1275 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 818 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 818 + - uid: 1653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 818 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 818 + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 818 + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 818 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 818 +- proto: DisposalUnit + entities: + - uid: 309 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 818 + - uid: 325 + components: + - type: Transform + pos: -1.5,7.5 + parent: 818 + - uid: 468 + components: + - type: Transform + pos: -3.5,1.5 + parent: 818 + - uid: 503 + components: + - type: Transform + pos: 5.5,3.5 + parent: 818 + - uid: 783 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 818 + - uid: 1327 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 818 +- proto: DrinkBadTouchGlass + entities: + - uid: 1912 + components: + - type: Transform + pos: 2.7226288,-0.3183478 + parent: 818 +- proto: DrinkColaCan + entities: + - uid: 111 + components: + - type: Transform + pos: -5.311922,-0.20970154 + parent: 818 + - uid: 171 + components: + - type: Transform + pos: -5.4770956,-0.40791774 + parent: 818 + - uid: 235 + components: + - type: Transform + pos: -5.6800737,-0.25959373 + parent: 818 +- proto: DrinkGlass + entities: + - uid: 659 + components: + - type: Transform + pos: 3.1884108,1.6255958 + parent: 818 + - uid: 877 + components: + - type: Transform + pos: 3.2977858,1.7662208 + parent: 818 + - uid: 880 + components: + - type: Transform + pos: 3.4696608,1.6099708 + parent: 818 + - uid: 1412 + components: + - type: Transform + pos: -6.3673034,-20.542006 + parent: 818 + - uid: 1422 + components: + - type: Transform + pos: 3.49748,-21.225851 + parent: 818 + - uid: 1725 + components: + - type: Transform + pos: 3.6521113,-20.442896 + parent: 818 + - uid: 1727 + components: + - type: Transform + pos: -6.555601,-21.315048 + parent: 818 +- proto: DrinkHotCoffee + entities: + - uid: 1695 + components: + - type: Transform + pos: 6.602686,8.518019 + parent: 818 + - uid: 1696 + components: + - type: Transform + pos: 7.524561,8.736769 + parent: 818 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 818 + - uid: 1676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 818 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 818 +- proto: Firelock + entities: + - uid: 596 + components: + - type: Transform + pos: -2.5,6.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 818 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1038 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 818 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 86 + - uid: 954 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - 86 + - uid: 969 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 +- proto: FirelockGlass + entities: + - uid: 138 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - 1009 + - uid: 298 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1040 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1040 + - uid: 970 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1038 + - uid: 971 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - 1040 +- proto: FoodBoxDonut + entities: + - uid: 1698 + components: + - type: Transform + pos: 12.368311,8.596144 + parent: 818 +- proto: FoodBoxPizzaFilled + entities: + - uid: 240 + components: + - type: Transform + pos: -5.4837027,1.7526376 + parent: 818 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 1966 + components: + - type: MetaData + name: газодобытчик воздуха + - type: Transform + pos: -8.5,-13.5 + parent: 818 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 673 + components: + - type: MetaData + name: газодобытчик воздуха + - type: Transform + pos: -8.5,-13.5 + parent: 818 +- proto: GasPassiveVent + entities: + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeBend + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 64 + components: + - type: Transform + pos: 8.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 110 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 818 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 509 + components: + - type: Transform + pos: 11.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 632 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 732 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeFourway + entities: + - uid: 795 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 933 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 991 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1719 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23 + components: + - type: Transform + pos: -1.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36 + components: + - type: Transform + pos: -1.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 818 + - uid: 50 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 100 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 117 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 118 components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 18 + - type: Transform + pos: 11.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 119 components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 19 + - type: Transform + pos: 11.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 120 components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AirlockMaint - entities: - - uid: 20 + - type: Transform + pos: 10.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 121 components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AirlockShuttle - entities: - - uid: 228 + - type: Transform + pos: 10.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 122 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform - - linkedPorts: - 488: - - DoorStatus: Input - type: DeviceLinkSource - missingComponents: - - Destructible - - uid: 429 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 125 components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - linkedPorts: - 21: - - DoorStatus: Input - type: DeviceLinkSource - missingComponents: - - Destructible -- proto: APCBasic - entities: - - uid: 746 + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 128 components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: AtmosDeviceFanTiny - entities: - - uid: 461 + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 134 components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - uid: 462 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 136 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 360 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 139 components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 361 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 818 + - uid: 147 components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 362 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 149 components: - - pos: 16.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 387 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 818 + - uid: 150 components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: BedsheetHOS - entities: - - uid: 388 + - type: Transform + pos: 10.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 158 components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 363 + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 159 components: - - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 364 + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 160 components: - - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 365 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 161 components: - - pos: 16.5,10.5 - parent: 1 - type: Transform -- proto: BlastDoor - entities: - - uid: 377 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 162 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: BookshelfFilled - entities: - - uid: 253 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 319 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 320 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 321 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 485 components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 254 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 501 components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 255 + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 502 components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: CableApcExtension - entities: - - uid: 14 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 504 components: - - pos: 24.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 15 + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 505 components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 209 + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 527 components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 210 + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 528 components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 211 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 529 components: - - pos: 24.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 212 + - type: Transform + pos: -0.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 530 components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 223 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 536 components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 224 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 537 components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 225 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 548 components: - - pos: 20.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 286 + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 556 components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 296 + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 559 components: - - pos: 24.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 297 + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 560 components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 298 + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 565 components: - - pos: 24.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 299 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 605 components: - - pos: 20.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 301 + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 606 components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 302 + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 607 components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 451 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 612 components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 452 + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 613 components: - - pos: 24.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 453 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 615 components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 455 + - type: Transform + pos: -6.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 616 components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 456 + - type: Transform + pos: 1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 623 components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 463 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 639 components: - - pos: 23.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 464 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 640 components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 466 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 641 components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 483 + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 646 components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 485 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 662 components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 486 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 668 components: - - pos: 24.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 504 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 671 components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 505 + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 692 components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 506 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 694 components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 511 + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 696 components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 512 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 698 components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 523 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 702 components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - uid: 524 + - type: Transform + pos: 11.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 703 components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform - - uid: 525 + - type: Transform + pos: 8.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 716 components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - uid: 526 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 718 components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - uid: 597 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 721 components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 753 + - type: Transform + pos: 7.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 722 components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 754 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 723 components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 755 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 724 components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 756 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 725 components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 795 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 726 components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 796 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 727 components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 797 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 728 components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 798 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 729 components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 799 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 736 components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 800 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 737 components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 802 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 746 components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 803 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 756 components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 804 + - type: Transform + pos: -0.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 760 components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 805 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 765 components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 806 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 768 components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 807 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 784 components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 808 + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 786 components: - - pos: 19.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 809 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 787 components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 810 + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 793 components: - - pos: 19.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 811 + - type: Transform + pos: -6.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 798 components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 812 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 800 components: - - pos: 19.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 813 + - type: Transform + pos: -1.5,9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 801 components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 814 + - type: Transform + pos: -2.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 807 components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 815 + - type: Transform + pos: 1.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 814 components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 816 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 820 components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 817 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 832 components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 818 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 847 components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 819 + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 849 components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 863 components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + pos: -1.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 864 components: - - pos: 16.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + pos: -1.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 865 components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 866 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 867 components: - - pos: 13.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 868 - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 869 - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 870 - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 871 - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 872 components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 873 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 881 components: - - pos: 7.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 874 + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 883 components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 875 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 891 components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 876 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 892 components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 877 + - type: Transform + pos: -2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 900 components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 878 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 903 components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 879 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 907 components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 880 + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 909 components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 881 + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 912 components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 882 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 913 components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 883 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 914 components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 884 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 915 components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 885 + - type: Transform + pos: -1.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 919 components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 886 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 920 components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 887 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 921 components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 888 + - type: Transform + pos: -1.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 922 components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 889 + - type: Transform + pos: 2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 923 components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 890 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 926 components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 891 + - type: Transform + pos: -7.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 927 components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 892 + - type: Transform + pos: 2.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 928 components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 893 + - type: Transform + pos: 2.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 929 components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 894 + - type: Transform + pos: -7.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 930 components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 895 + - type: Transform + pos: 1.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 934 components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 896 + - type: Transform + pos: 2.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 937 components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 897 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 942 components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 898 + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 943 components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 899 + - type: Transform + pos: -2.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 992 components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 900 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1147 components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 901 + - type: Transform + pos: 8.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1148 + components: + - type: Transform + pos: 8.5,0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1149 components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 902 + - type: Transform + pos: 11.5,1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1185 components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 903 + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1211 components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 904 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1212 components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 905 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1213 components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 906 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1214 components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 907 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1326 components: - - pos: 7.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 908 + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1389 components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 909 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1683 components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 910 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1707 components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 911 + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1708 components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 912 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1715 components: - - pos: 5.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 913 + - type: Transform + pos: -0.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1716 components: - - pos: 12.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 914 + - type: Transform + pos: -0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1717 components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 915 + - type: Transform + pos: -1.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1722 components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 916 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1773 components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 917 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1776 components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 918 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1793 components: - - pos: 12.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 919 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1800 components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 920 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1827 components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 921 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1836 components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 922 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1845 components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 923 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1856 components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 924 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1864 components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 925 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1895 components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 926 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 4 components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 927 + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 97 components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 928 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 112 components: - - pos: 13.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 929 + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 818 + - uid: 129 components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 930 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 145 components: - - pos: 15.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 931 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 818 + - uid: 146 components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 932 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 220 components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 933 + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 344 components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 934 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 349 components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 935 + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 354 components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 936 + - type: Transform + pos: -3.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 387 components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 937 + - type: Transform + pos: 2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 465 components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 938 + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 483 components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 939 + - type: Transform + pos: -3.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 570 components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 940 + - type: Transform + pos: 6.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 661 components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 941 + - type: Transform + pos: -0.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 682 components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 942 + - type: Transform + pos: 7.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 754 components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: CableHV - entities: - - uid: 747 + - type: Transform + pos: -3.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 776 components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 748 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 821 components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 749 + - type: Transform + pos: 1.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 831 components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 750 + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 840 components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 751 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 908 components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 954 + - type: Transform + pos: -2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 918 components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 955 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1163 components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 956 + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1164 components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: CableMV - entities: - - uid: 752 + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1165 components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: CableTerminal - entities: - - uid: 745 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1166 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Catwalk - entities: - - uid: 229 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1205 components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 291 + - type: Transform + pos: -1.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1726 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Chair + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVentPump entities: - - uid: 16 + - uid: 13 components: - - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 33 + - type: Transform + pos: -6.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 108 components: - - rot: 3.141592653589793 rad - pos: 20.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 36 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 254 components: - - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 38 + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 461 components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 39 + - type: Transform + pos: 1.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 583 components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 40 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 602 components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 42 + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 603 components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 43 + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 622 components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 44 + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 636 components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 45 + - type: Transform + pos: -6.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 642 components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 47 + - type: Transform + pos: -2.5,9.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 761 components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 54 + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 797 components: - - rot: -1.5707963267948966 rad - pos: 25.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 55 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1173 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 203 + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1174 components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 214 + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1711 components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 226 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1718 components: - - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 227 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1721 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 241 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1868 components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 280 + - type: Transform + pos: -2.5,16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 8 components: - - pos: 20.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 281 + - type: Transform + pos: 2.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17 components: - - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 282 + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 109 components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 284 + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 253 components: - - rot: -1.5707963267948966 rad - pos: 25.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 288 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 474 components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 477 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 519 components: - - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 478 + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 592 components: - - rot: 3.141592653589793 rad - pos: 21.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 479 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 601 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ChairOfficeDark - entities: - - uid: 348 + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 788 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ChairWood - entities: - - uid: 257 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 931 components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Cigar - entities: - - uid: 213 + - type: Transform + pos: -7.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1089 components: - - pos: 18.440437,6.6923804 - parent: 1 - type: Transform -- proto: CigarCase - entities: - - uid: 396 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1176 components: - - rot: 1.5707963267948966 rad - pos: 9.48009,-2.38844 - parent: 1 - type: Transform -- proto: ClosetBase - entities: - - uid: 496 + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1177 components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ComfyChair - entities: - - uid: 394 + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1511 components: - - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 519 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1710 components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 520 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1712 components: - - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ComputerCriminalRecords - entities: - - uid: 349 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1732 components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 350 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1876 components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ConveyorBelt + - type: Transform + pos: -1.5,16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GeneratorRTG entities: - - uid: 372 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible - - uid: 373 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible - - uid: 374 + - uid: 747 components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible - - uid: 375 + - type: Transform + pos: -5.5,5.5 + parent: 818 + - type: PowerSupplier + supplyRate: 30000 + - uid: 748 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible - - uid: 386 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible -- proto: d4Dice + - type: Transform + pos: -5.5,3.5 + parent: 818 + - type: PowerSupplier + supplyRate: 30000 +- proto: GravityGeneratorMini entities: - - uid: 181 + - uid: 950 components: - - pos: 22.540943,-10.567083 - parent: 1 - type: Transform -- proto: DiceBag + - type: Transform + pos: -8.5,3.5 + parent: 818 +- proto: Grille entities: - - uid: 269 + - uid: 243 components: - - rot: -1.5707963267948966 rad - pos: 22.056568,-10.395208 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 27 + - type: Transform + pos: 14.5,-4.5 + parent: 818 + - uid: 260 components: - - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 384 + - type: Transform + pos: 14.5,-5.5 + parent: 818 + - uid: 392 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 503 + - type: Transform + pos: 13.5,-19.5 + parent: 818 + - uid: 418 components: - - rot: 3.141592653589793 rad - pos: 19.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 717 + - type: Transform + pos: 13.5,-17.5 + parent: 818 + - uid: 456 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 733 + - type: Transform + pos: 8.5,-22.5 + parent: 818 + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 818 + - uid: 1136 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 818 + - uid: 1179 components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 734 + - type: Transform + pos: 8.5,-21.5 + parent: 818 + - uid: 1180 components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalJunction + - type: Transform + pos: 8.5,-20.5 + parent: 818 +- proto: LockerAtmospherics entities: - - uid: 735 + - uid: 957 components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalJunctionFlipped + - type: Transform + pos: -7.5,-9.5 + parent: 818 +- proto: LockerSecurity entities: - - uid: 277 + - uid: 151 components: - - pos: 19.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 716 + - type: Transform + pos: 6.5,-16.5 + parent: 818 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 157 + - 156 + - 155 + - 154 + - 153 + - 152 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Mannequin + entities: + - uid: 1512 components: - - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalPipe + - type: Transform + pos: -2.5,-13.5 + parent: 818 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1515 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1513 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1514 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: RussianAccent + - uid: 1516 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 818 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1517 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1518 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: FrenchAccent +- proto: Mirror entities: - - uid: 23 + - uid: 1736 components: - - rot: -1.5707963267948966 rad - pos: 21.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 24 + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 818 + - uid: 1737 components: - - rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 28 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 818 + - uid: 1738 components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 29 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 818 + - uid: 1739 components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 31 + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 818 +- proto: Paper + entities: + - uid: 22 components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 32 + - type: Transform + rot: 3.141592653589793 rad + pos: 9.765255,-4.4293413 + parent: 818 + - uid: 830 components: - - pos: 19.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 34 + - type: Transform + rot: 3.141592653589793 rad + pos: 9.921505,-4.4762163 + parent: 818 + - uid: 1639 components: - - pos: 19.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 204 + - type: Transform + pos: -0.11029482,-19.458694 + parent: 818 + - uid: 1646 components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 219 + - type: Transform + pos: -0.35465497,-19.342327 + parent: 818 + - uid: 1647 components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 220 + - type: Transform + pos: -0.5408342,-19.505241 + parent: 818 +- proto: Pen + entities: + - uid: 1649 components: - - rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 221 + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.18060982,-19.551788 + parent: 818 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1315 components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 222 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 818 +- proto: PlushieAtmosian + entities: + - uid: 1753 components: - - rot: 3.141592653589793 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 266 + - type: Transform + pos: -8.480301,-11.51842 + parent: 818 +- proto: PlushieLizardMirrored + entities: + - uid: 163 components: - - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 267 + - type: Transform + pos: 5.5931134,-0.44783163 + parent: 818 +- proto: PlushiePenguin + entities: + - uid: 355 components: - - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 270 + - type: MetaData + desc: Надо было ставить Линукс. + - type: Transform + pos: 9.50761,2.5900903 + parent: 818 +- proto: PlushieSlime + entities: + - uid: 965 components: - - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 271 + - type: MetaData + desc: Уверяю вас. Мне можно доверить огнестрельное оружие... + name: плюшевый Керн + - type: Transform + parent: 964 + - type: Physics + canCollide: False + - uid: 1381 components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 272 + - type: Transform + pos: 9.412727,-6.492947 + parent: 818 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1754 components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 273 + - type: Transform + pos: -9.5,-11.5 + parent: 818 +- proto: PottedPlant11 + entities: + - uid: 770 components: - - rot: -1.5707963267948966 rad - pos: 23.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 274 + - type: Transform + pos: -7.0200777,-7.4046617 + parent: 818 +- proto: PottedPlant13 + entities: + - uid: 1747 components: - - rot: -1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 275 + - type: Transform + pos: -3.5,-20.5 + parent: 818 +- proto: PottedPlant17 + entities: + - uid: 738 components: - - rot: -1.5707963267948966 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 495 + - type: Transform + pos: 2.010267,-7.4168715 + parent: 818 +- proto: PottedPlant7 + entities: + - uid: 964 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 499 + - type: Transform + pos: 5.5,-16.5 + parent: 818 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 965 +- proto: PottedPlantAlt2 + entities: + - uid: 2 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 500 + - type: Transform + pos: 8.25,10.5 + parent: 818 + - uid: 41 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 501 + - type: Transform + pos: 10.75,10.5 + parent: 818 +- proto: PottedPlantAlt8 + entities: + - uid: 1746 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 502 + - type: Transform + pos: 0.5,-20.5 + parent: 818 +- proto: PottedPlantRandom + entities: + - uid: 24 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 507 + - type: Transform + pos: 6.5,5.5 + parent: 818 + - uid: 179 components: - - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 508 + - type: Transform + pos: -1.5,1.5 + parent: 818 + - uid: 506 components: - - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 509 + - type: Transform + pos: -1.5,13.5 + parent: 818 + - uid: 693 components: - - rot: 3.141592653589793 rad - pos: 19.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 510 + - type: Transform + pos: -3.5,-7.5 + parent: 818 + - uid: 790 components: - - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 709 + - type: Transform + pos: 12.5,5.5 + parent: 818 + - uid: 813 components: - - rot: -1.5707963267948966 rad - pos: 18.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 710 + - type: Transform + pos: 13.5,-11.5 + parent: 818 + - uid: 972 components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 711 + - type: Transform + pos: 10.5,-13.5 + parent: 818 + - uid: 1073 components: - - rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 712 + - type: Transform + pos: 12.5,-13.5 + parent: 818 + - uid: 1103 components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 713 + - type: Transform + pos: 10.5,-25.5 + parent: 818 + - uid: 1104 components: - - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 714 + - type: Transform + pos: 12.5,-25.5 + parent: 818 +- proto: Poweredlight + entities: + - uid: 12 components: - - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 715 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 818 + - uid: 46 components: - - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 718 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 818 + - uid: 106 components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 719 + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 818 + - uid: 526 components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 720 + - type: Transform + pos: 0.5,1.5 + parent: 818 + - uid: 631 components: - - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 721 + - type: Transform + pos: -1.5,1.5 + parent: 818 + - uid: 654 components: - - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 722 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 818 + - uid: 656 components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 723 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 818 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 818 + - uid: 850 components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 724 + - type: Transform + pos: -3.5,1.5 + parent: 818 + - uid: 999 components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 725 + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 818 + - uid: 1084 components: - - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 726 + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 818 + - uid: 1085 components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 727 + - type: Transform + pos: 9.5,-16.5 + parent: 818 + - uid: 1091 components: - - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 728 + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 818 + - uid: 1216 components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 729 + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 818 + - uid: 1227 components: - - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 730 + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 818 + - uid: 1228 components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 731 + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 818 + - uid: 1230 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 732 + - type: Transform + pos: 10.5,-13.5 + parent: 818 + - uid: 1232 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 736 + - type: Transform + pos: 12.5,-13.5 + parent: 818 + - uid: 1236 components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 737 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 818 + - uid: 1237 components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 738 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 818 + - uid: 1239 components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 739 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 818 + - uid: 1240 components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 740 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 818 + - uid: 1243 components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 741 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 818 + - uid: 1244 components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalTrunk - entities: - - uid: 196 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 818 + - uid: 1245 components: - - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 242 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 818 + - uid: 1247 components: - - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 383 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 818 + - uid: 1248 components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 497 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 818 + - uid: 1249 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 628 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 818 + - uid: 1262 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 630 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 818 + - uid: 1263 components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalUnit - entities: - - uid: 50 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 818 + - uid: 1276 components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 217 + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 818 + - uid: 1294 components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 283 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 818 + - uid: 1302 components: - - pos: 25.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 347 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 818 + - uid: 1320 components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 598 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 818 + - uid: 1324 components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DisposalYJunction - entities: - - uid: 674 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 818 + - uid: 1357 components: - - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DresserFilled - entities: - - uid: 367 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 818 + - uid: 1366 components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 368 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 818 + - uid: 1374 components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 369 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 818 + - uid: 1633 components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 390 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 818 + - uid: 1635 components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DrinkCognacBottleFull - entities: - - uid: 398 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 818 + - uid: 1636 components: - - pos: 8.776965,-2.247815 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: DrinkMug - entities: - - uid: 208 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 818 + - uid: 1759 components: - - pos: 18.690437,6.5205054 - parent: 1 - type: Transform -- proto: DrinkShotGlass - entities: - - uid: 395 + - type: Transform + pos: -3.5,-13.5 + parent: 818 + - uid: 1760 components: - - pos: 8.366743,-2.404844 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: EdgeDetector - entities: - - uid: 21 + - type: Transform + pos: 0.5,-13.5 + parent: 818 + - uid: 1761 components: - - anchored: True - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 1 - type: Transform - - links: - - 429 - type: DeviceLinkSink - - linkedPorts: - 263: - - OutputHigh: Toggle - - OutputHigh: DoorBolt - - OutputLow: DoorBolt - - OutputLow: Toggle - type: DeviceLinkSource - - canCollide: False - bodyType: Static - type: Physics - - uid: 488 - components: - - anchored: True - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 1 - type: Transform - - links: - - 228 - type: DeviceLinkSink - - linkedPorts: - 202: - - OutputHigh: Toggle - - OutputHigh: DoorBolt - - OutputLow: DoorBolt - - OutputLow: Toggle - type: DeviceLinkSource - - canCollide: False - bodyType: Static - type: Physics -- proto: FloraTree02 - entities: - - uid: 268 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 818 + - uid: 1762 components: - - pos: -5.936533,-2.33474 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: FloraTree04 + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 818 +- proto: PoweredlightPink entities: - - uid: 459 + - uid: 93 components: - - pos: -5.749033,5.0442405 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: FloraTreeLarge06 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 818 +- proto: PoweredSmallLight entities: - - uid: 194 + - uid: 141 components: - - pos: -4.295908,1.1454458 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: FoodBoxDonut - entities: - - uid: 357 + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 818 + - uid: 315 components: - - rot: 1.5707963267948966 rad - pos: 14.405981,-5.326151 - parent: 1 - type: Transform -- proto: FoodDonutCaramel - entities: - - uid: 358 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 818 + - uid: 459 components: - - pos: 14.796606,-5.263651 - parent: 1 - type: Transform -- proto: GeneratorBasic15kW - entities: - - uid: 951 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 818 + - uid: 471 components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 952 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 818 + - uid: 782 components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 953 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-22.5 + parent: 818 + - uid: 805 components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1011 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 818 + - uid: 810 components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1012 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 818 + - uid: 1202 components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1013 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 818 + - uid: 1206 components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: GravityGeneratorMini - entities: - - uid: 1046 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 818 + - uid: 1234 components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Grille - entities: - - uid: 183 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 818 + - uid: 1345 components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 201 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 818 + - uid: 1346 components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 206 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 818 + - uid: 1354 components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 245 + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 818 + - uid: 1393 components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 293 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 818 + - uid: 1705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 818 + - uid: 1735 components: - - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 294 + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 818 + - uid: 1740 components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 303 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 818 + - uid: 1741 components: - - pos: 26.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 305 + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 818 +- proto: Rack + entities: + - uid: 704 components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 306 + - type: Transform + pos: -5.5,-11.5 + parent: 818 + - uid: 962 components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 308 + - type: Transform + pos: -6.5,-11.5 + parent: 818 +- proto: Railing + entities: + - uid: 888 components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 309 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 818 + - uid: 889 components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 443 + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 818 + - uid: 1019 components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 444 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 818 + - uid: 1021 components: - - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 460 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 818 + - uid: 1086 components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 474 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 818 + - uid: 1101 components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 493 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 818 + - uid: 1351 components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1009 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 818 + - uid: 1353 components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1010 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 818 + - uid: 1364 components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1014 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 818 + - uid: 1365 components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1015 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 818 +- proto: RailingCornerSmall + entities: + - uid: 649 components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1016 + - type: Transform + pos: 8.5,-12.5 + parent: 818 + - uid: 712 components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1017 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + pos: -6.5,-16.5 + parent: 818 + - uid: 713 components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1018 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 818 + - uid: 1196 components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1019 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 818 + - uid: 1242 components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1020 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 818 + - uid: 1246 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1021 + - type: MetaData + desc: Вешалка для одежды. + name: вешалка + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 818 +- proto: RandomDrinkBottle + entities: + - uid: 29 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1022 + - type: Transform + pos: 3.5,1.5 + parent: 818 +- proto: RandomDrinkGlass + entities: + - uid: 611 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1023 + - type: Transform + pos: -6.5,-5.5 + parent: 818 + - uid: 1750 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 1024 + - type: Transform + pos: 11.5,8.5 + parent: 818 +- proto: RandomFoodBakedSingle + entities: + - uid: 742 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: HospitalCurtainsOpen + - type: Transform + pos: 1.5,-5.5 + parent: 818 +- proto: RandomFoodBakedWhole entities: - - uid: 389 + - uid: 591 components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Lighter + - type: Transform + pos: 2.5,-6.5 + parent: 818 +- proto: RandomFoodMeal entities: - - uid: 397 + - uid: 569 components: - - pos: 9.089465,-2.435315 - parent: 1 - type: Transform -- proto: LockerHeadOfSecurity + - type: Transform + pos: -7.5,-6.5 + parent: 818 + - uid: 1080 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 818 +- proto: RandomPosterLegit entities: - - uid: 393 + - uid: 178 components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: MagicDiceBag + - type: Transform + pos: 1.5,6.5 + parent: 818 +- proto: RandomVendingDrinks entities: - - uid: 470 + - uid: 175 components: - - pos: 20.416056,-10.745677 - parent: 1 - type: Transform -- proto: Mirror + - type: Transform + pos: -7.5,-2.5 + parent: 818 + - uid: 338 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 818 + - uid: 1442 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 818 +- proto: RandomVendingSnacks entities: - - uid: 341 + - uid: 164 components: - - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - uid: 342 + - type: Transform + pos: 5.5,-1.5 + parent: 818 + - uid: 226 components: - - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - uid: 343 + - type: Transform + pos: -8.5,-2.5 + parent: 818 +- proto: Recycler + entities: + - uid: 1697 components: - - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 1 - type: Transform -- proto: Paper + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 818 +- proto: ReinforcedPlasmaWindow entities: - - uid: 180 + - uid: 600 components: - - rot: -1.5707963267948966 rad - pos: 21.578796,-9.629583 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 355 + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 818 +- proto: SignalButton + entities: + - uid: 597 components: - - rot: 3.141592653589793 rad - pos: 15.447807,-5.2844315 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 356 + - type: Transform + pos: -5.5,10.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 549: + - Pressed: DoorBolt + - uid: 598 components: - - rot: 3.141592653589793 rad - pos: 15.432182,-5.3156815 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 513 + - type: Transform + pos: -5.5,12.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 791: + - Pressed: DoorBolt + - uid: 749 components: - - rot: -1.5707963267948966 rad - pos: 20.49418,-11.401927 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 515 + - type: Transform + pos: -5.5,14.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 473: + - Pressed: DoorBolt + - uid: 932 components: - - rot: -1.5707963267948966 rad - pos: 20.728556,-11.136302 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: PlasticFlapsAirtightOpaque + - type: Transform + pos: -5.5,8.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 595: + - Pressed: DoorBolt +- proto: SignalTimer entities: - - uid: 154 + - uid: 1911 components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: PlushieLizard - entities: - - uid: 300 + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 462: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1957 components: - - desc: Картонная версия плюшевого унатха. - name: Taburetka24 - type: MetaData - - pos: 16.526121,6.9472337 - parent: 1 - type: Transform - - uid: 454 + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 561: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 550: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 28: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1960 components: - - pos: 22.024916,0.01206398 - parent: 1 - type: Transform -- proto: PlushieRouny + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 1363: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer +- proto: SignArcade entities: - - uid: 404 + - uid: 94 components: - - pos: 16.470612,9.797383 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard + - type: Transform + pos: -4.5,-0.5 + parent: 818 +- proto: SignAtmos entities: - - uid: 403 + - uid: 1030 components: - - pos: 16.69722,4.366211 - parent: 1 - type: Transform -- proto: PottedPlant1 + - type: Transform + pos: -4.5,-9.5 + parent: 818 +- proto: SignBar entities: - - uid: 402 + - uid: 148 components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Poweredlight + - type: Transform + pos: 4.5,-1.5 + parent: 818 +- proto: SignDisposalSpace entities: - - uid: 527 + - uid: 1703 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 528 + - type: Transform + pos: -1.5,14.5 + parent: 818 +- proto: SignEngineering + entities: + - uid: 1657 components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - uid: 601 + - type: Transform + pos: -4.5,5.5 + parent: 818 +- proto: SignJanitor + entities: + - uid: 1702 components: - - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 602 + - type: Transform + pos: -1.5,6.5 + parent: 818 +- proto: SignShipDock + entities: + - uid: 1656 components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 603 + - type: Transform + pos: 14.5,1.5 + parent: 818 + - uid: 1686 components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 604 + - type: Transform + pos: 14.5,-9.5 + parent: 818 +- proto: SignSmoking + entities: + - uid: 1669 components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 605 + - type: Transform + pos: -0.5,12.5 + parent: 818 +- proto: Sink + entities: + - uid: 859 components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 615 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 818 +- proto: SinkStemlessWater + entities: + - uid: 169 components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 618 + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 818 + - uid: 794 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 620 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.8169644,11.372251 + parent: 818 + - uid: 811 components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 621 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.8013394,9.356626 + parent: 818 +- proto: SMESBasic + entities: + - uid: 944 components: - - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 627 + - type: Transform + pos: -7.5,5.5 + parent: 818 +- proto: SodaDispenser + entities: + - uid: 634 components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 629 + - type: Transform + pos: 2.5,1.5 + parent: 818 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 98 components: - - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 742 + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 818 + - uid: 177 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: PoweredSmallLight + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 818 +- proto: SpawnPointLatejoin entities: - - uid: 606 + - uid: 707 components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 609 + - type: Transform + pos: 5.5,1.5 + parent: 818 + - uid: 708 components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 619 + - type: Transform + pos: 10.5,-0.5 + parent: 818 + - uid: 1081 components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 622 + - type: Transform + pos: 9.5,-8.5 + parent: 818 + - uid: 1204 components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 623 + - type: Transform + pos: 10.5,-6.5 + parent: 818 + - uid: 1252 components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 624 + - type: Transform + pos: 9.5,-7.5 + parent: 818 + - uid: 1288 components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 625 + - type: Transform + pos: 9.5,-5.5 + parent: 818 + - uid: 1289 components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 626 + - type: Transform + pos: 5.5,0.5 + parent: 818 + - uid: 1870 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Railing - entities: - - uid: 328 + - type: Transform + pos: 10.5,-5.5 + parent: 818 + - uid: 1902 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 329 + - type: Transform + pos: 5.5,-8.5 + parent: 818 + - uid: 1903 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 330 + - type: Transform + pos: 9.5,-0.5 + parent: 818 + - uid: 1904 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 331 + - type: Transform + pos: 9.5,0.5 + parent: 818 + - uid: 1905 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: RailingCornerSmall - entities: - - uid: 332 + - type: Transform + pos: 9.5,1.5 + parent: 818 + - uid: 1906 components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 333 + - type: Transform + pos: 10.5,0.5 + parent: 818 + - uid: 1907 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: RandomDrinkGlass - entities: - - uid: 195 + - type: Transform + pos: 10.5,1.5 + parent: 818 + - uid: 1908 components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 973 + - type: Transform + pos: 5.5,2.5 + parent: 818 + - uid: 1909 components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 974 + - type: Transform + pos: 10.5,2.5 + parent: 818 + - uid: 1961 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - uid: 978 + - type: Transform + pos: 10.5,-7.5 + parent: 818 + - uid: 1962 components: - - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 981 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 985 + - type: Transform + pos: 10.5,-8.5 + parent: 818 + - uid: 1963 components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 986 + - type: Transform + pos: 5.5,-7.5 + parent: 818 + - uid: 1964 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband + - type: Transform + pos: 5.5,-6.5 + parent: 818 + - uid: 1965 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 818 +- proto: Spoon entities: - - uid: 982 + - uid: 1734 components: - - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 983 + - type: MetaData + name: ложка для обуви + - type: Transform + rot: -0.5235987755982988 rad + pos: 1.7093852,-16.486588 + parent: 818 + - uid: 1764 components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform -- proto: RandomVending + - type: MetaData + name: ложка для обуви + - type: Transform + rot: -0.8726646259971648 rad + pos: -4.697705,-16.59065 + parent: 818 +- proto: StairDark entities: - - uid: 465 + - uid: 759 components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - uid: 599 + - type: Transform + pos: 8.5,6.5 + parent: 818 + - uid: 762 components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 600 + - type: Transform + pos: 10.5,6.5 + parent: 818 + - uid: 769 components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: RandomVendingDrinks + - type: Transform + pos: 9.5,6.5 + parent: 818 +- proto: Stairs entities: - - uid: 48 + - uid: 1348 components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 192 + - type: MetaData + name: полки для обуви + - type: Transform + pos: -5.5,-13.5 + parent: 818 + - uid: 1349 components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 522 + - type: MetaData + name: полки для обуви + - type: Transform + pos: -4.5,-13.5 + parent: 818 + - uid: 1350 components: - - pos: 18.5,8.5 - parent: 1 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 276 + - type: MetaData + name: полки для обуви + - type: Transform + pos: -3.5,-13.5 + parent: 818 + - uid: 1358 components: - - pos: 25.5,5.5 - parent: 1 - type: Transform - - uid: 448 + - type: MetaData + name: полки для обуви + - type: Transform + pos: 0.5,-13.5 + parent: 818 + - uid: 1359 components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform -- proto: Recycler + - type: MetaData + name: полки для обуви + - type: Transform + pos: 1.5,-13.5 + parent: 818 + - uid: 1360 + components: + - type: MetaData + name: полки для обуви + - type: Transform + pos: 2.5,-13.5 + parent: 818 +- proto: SteelBench entities: - - uid: 376 + - uid: 1628 components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - links: - - 385 - type: DeviceLinkSink - missingComponents: - - Destructible -- proto: ReinforcedWindow + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 818 + - uid: 1629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-25.5 + parent: 818 + - uid: 1630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 818 + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 818 +- proto: StoolBar entities: - - uid: 25 + - uid: 27 components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 26 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 818 + - uid: 43 components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 197 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 818 + - uid: 173 components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 200 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 818 + - uid: 376 components: - - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 233 + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 818 + - uid: 525 components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 240 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 818 + - uid: 539 components: - - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 243 + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 818 + - uid: 670 components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 244 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 818 +- proto: SubstationBasic + entities: + - uid: 469 components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 246 + - type: Transform + pos: -8.5,5.5 + parent: 818 +- proto: SuitStorageBase + entities: + - uid: 959 components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 285 + - type: Transform + pos: -8.5,-9.5 + parent: 818 +- proto: SurveillanceCameraGeneral + entities: + - uid: 99 components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 289 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Южный коридор + - uid: 234 components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 290 + - type: Transform + pos: -6.5,3.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Инженерия + - uid: 479 components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 292 + - type: Transform + pos: -0.5,3.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Северный коридор + - uid: 1400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Атмос + - uid: 1587 components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 335 + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Бар + - uid: 1589 components: - - pos: 26.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 430 + - type: Transform + pos: -5.5,-7.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Ресторан + - uid: 1596 components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 432 + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Рекреация + - uid: 1614 components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 433 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Одежда + - uid: 1620 components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 437 + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 1 + - uid: 1621 components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: RubberStampApproved - entities: - - uid: 353 + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 2 + - uid: 1622 components: - - pos: 15.650932,-5.538704 - parent: 1 - type: Transform -- proto: RubberStampDenied + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 3 +- proto: SurveillanceCameraRouterGeneral entities: - - uid: 354 + - uid: 1581 components: - - pos: 15.260307,-5.538704 - parent: 1 - type: Transform -- proto: SignDirectionalDorms + - type: Transform + pos: -6.5,3.5 + parent: 818 +- proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 971 + - uid: 1956 components: - - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: SignHead + - type: Transform + pos: -8.5,4.5 + parent: 818 +- proto: TableCarpet entities: - - uid: 970 + - uid: 11 components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: SinkStemlessWater - entities: - - uid: 344 + - type: Transform + pos: 2.5,1.5 + parent: 818 + - uid: 516 components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 345 + - type: Transform + pos: 1.5,1.5 + parent: 818 + - uid: 647 components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 346 + - type: Transform + pos: 3.5,1.5 + parent: 818 + - uid: 1414 components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: SMESBasic - entities: - - uid: 744 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 818 + - uid: 1425 components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: SpawnMobButterfly + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 818 +- proto: TableCounterWood entities: - - uid: 529 + - uid: 346 components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 530 + - type: Transform + pos: 1.5,-0.5 + parent: 818 + - uid: 491 components: - - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 531 + - type: Transform + pos: 3.5,-0.5 + parent: 818 + - uid: 524 components: - - pos: -4.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin + - type: Transform + pos: 2.5,-0.5 + parent: 818 + - uid: 630 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 818 + - uid: 1137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 818 + - uid: 1140 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 818 + - uid: 1640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 818 + - uid: 1641 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 818 + - uid: 1642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 818 + - uid: 1643 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 818 + - uid: 1650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 818 + - uid: 1651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 818 +- proto: TableFancyBlack entities: - - uid: 417 + - uid: 358 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 418 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 818 + - uid: 497 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 419 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 818 + - uid: 498 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 420 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 818 + - uid: 522 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 421 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 818 + - uid: 627 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 422 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 818 + - uid: 628 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 423 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 818 + - uid: 629 components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 424 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 818 + - uid: 657 components: - - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 425 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 818 + - uid: 658 components: - - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 426 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 818 + - uid: 781 components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 427 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 818 + - uid: 843 components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - uid: 428 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 818 + - uid: 845 components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform -- proto: SteelBench + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 818 +- proto: TableGlass entities: - - uid: 405 + - uid: 283 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 406 + - type: Transform + pos: 9.5,-21.5 + parent: 818 +- proto: TableReinforced + entities: + - uid: 181 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 407 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 818 + - uid: 224 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 408 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 818 + - uid: 706 components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 409 + - type: Transform + pos: 6.5,-13.5 + parent: 818 + - uid: 743 components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 410 + - type: Transform + pos: 7.5,-13.5 + parent: 818 + - uid: 861 components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 411 + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 818 +- proto: TableReinforcedGlass + entities: + - uid: 107 components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 412 + - type: Transform + pos: 10.5,-4.5 + parent: 818 + - uid: 126 components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 413 + - type: Transform + pos: 10.5,-1.5 + parent: 818 + - uid: 330 components: - - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 414 + - type: Transform + pos: 9.5,-1.5 + parent: 818 + - uid: 336 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 415 + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 818 + - uid: 337 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 416 + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 818 + - uid: 340 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Stool - entities: - - uid: 13 + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 818 + - uid: 697 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 193 + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 818 + - uid: 963 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 259 + - type: Transform + pos: 9.5,-4.5 + parent: 818 + - uid: 1198 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 260 + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 818 + - uid: 1199 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 265 + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 818 + - uid: 1200 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 482 + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 818 + - uid: 1201 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: SubstationBasic + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 818 +- proto: TableStone entities: - - uid: 743 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 818 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 818 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 818 + - uid: 925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 818 + - uid: 935 components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: Table + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 818 +- proto: TableWood entities: - - uid: 51 + - uid: 1413 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 487 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 818 + - uid: 1423 components: - - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: TableCarpet + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 818 +- proto: TelecomServerFilled entities: - - uid: 198 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 230 + - uid: 953 components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 249 + - type: Transform + pos: -7.5,3.5 + parent: 818 +- proto: TintedWindow + entities: + - uid: 76 components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-4.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 258 + - uid: 172 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-5.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 334 + - uid: 232 components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 431 + - uid: 445 components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 434 + - uid: 961 components: - - rot: 3.141592653589793 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 439 + - uid: 993 components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-20.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 442 + - uid: 994 components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-21.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 458 + - uid: 995 components: - - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-22.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible -- proto: TableWood +- proto: ToiletEmpty entities: - - uid: 351 + - uid: 758 components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 352 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 391 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 818 + - uid: 809 components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 392 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 818 + - uid: 812 components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 401 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 818 + - uid: 852 components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ToiletEmpty + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 818 +- proto: ToolboxElectrical entities: - - uid: 338 + - uid: 1637 components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 339 + - type: Transform + pos: -5.395227,-11.313736 + parent: 818 +- proto: ToolboxMechanical + entities: + - uid: 1638 components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 340 + - type: Transform + pos: -5.582727,-11.532486 + parent: 818 +- proto: ToyFigurineBartender + entities: + - uid: 614 components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: ToyAmongPequeno + - type: Transform + pos: 0.45116568,-0.33467317 + parent: 818 +- proto: TrashBag entities: - - uid: 966 + - uid: 1678 components: - - name: маленький соник - type: MetaData - - pos: 12.475545,-10.68522 - parent: 1 - type: Transform - - uid: 967 + - type: MetaData + name: пакет для покупок + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.547278,-20.178963 + parent: 818 + - uid: 1701 + components: + - type: MetaData + name: пакет для покупок + - type: Transform + pos: -3.0217736,-20.58265 + parent: 818 +- proto: TrashBagBlue + entities: + - uid: 1680 components: - - name: маленький мота - type: MetaData - - pos: 13.053669,-10.99772 - parent: 1 - type: Transform + - type: MetaData + name: пакет для покупок + - type: Transform + pos: -2.9506664,-20.171206 + parent: 818 - proto: TwoWayLever entities: - - uid: 385 + - uid: 1700 components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - linkedPorts: - 375: + - type: Transform + pos: -4.5,15.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 1689: - Left: Forward - Right: Reverse - Middle: Off - 374: + 1690: - Left: Forward - Right: Reverse - Middle: Off - 372: + 1691: - Left: Forward - Right: Reverse - Middle: Off - 376: + 1697: - Left: Forward - Right: Reverse - Middle: Off - 373: + 1692: - Left: Forward - Right: Reverse - Middle: Off - 386: + 1693: - Left: Forward - Right: Reverse - Middle: Off - type: DeviceLinkSource - missingComponents: - - Destructible -- proto: VendingMachineCart + 1694: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: VendingMachineBooze entities: - - uid: 399 + - uid: 511 components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform + - type: Transform + pos: 0.5,1.5 + parent: 818 missingComponents: - - Destructible + - AccessReader +- proto: VendingMachineChang + entities: + - uid: 1441 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 818 +- proto: VendingMachineCigs + entities: + - uid: 3 + components: + - type: Transform + pos: 5.5,5.5 + parent: 818 + - uid: 62 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 818 + - uid: 1175 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 818 - proto: VendingMachineClothing entities: - - uid: 498 + - uid: 1143 components: - - pos: 12.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + pos: 3.5,-15.5 + parent: 818 + - uid: 1144 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 818 - proto: VendingMachineCoffee entities: - - uid: 400 + - uid: 174 components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: VendingMachineGames + - type: Transform + pos: -6.5,-2.5 + parent: 818 + - uid: 906 + components: + - type: Transform + pos: 13.5,5.5 + parent: 818 + - uid: 1178 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 818 +- proto: VendingMachineSecDrobe entities: - - uid: 256 + - uid: 719 components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + pos: 7.5,-16.5 + parent: 818 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 750 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 818 +- proto: VendingMachineWinter + entities: + - uid: 1118 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 818 + - uid: 1119 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 818 - proto: WallmountTelevision entities: - - uid: 521 + - uid: 518 components: - - rot: 1.5707963267948966 rad - pos: 17.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible -- proto: WallRiveted + - type: Transform + pos: 9.5,11.5 + parent: 818 +- proto: WallPlastitaniumIndestructible entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 818 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 818 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 818 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 818 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 818 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 818 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 818 + - uid: 51 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 818 - uid: 52 components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 53 + - type: Transform + pos: -5.5,-8.5 + parent: 818 + - uid: 54 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 65 + - type: Transform + pos: -9.5,-4.5 + parent: 818 + - uid: 56 components: - - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 66 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 818 + - uid: 58 components: - - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 818 + - uid: 59 + components: + - type: Transform + pos: 2.5,6.5 + parent: 818 + - uid: 60 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 818 - uid: 67 components: - - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 68 + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 818 + - uid: 70 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 818 + - uid: 75 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 818 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 818 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 818 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 818 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 818 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 818 + - uid: 102 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 818 + - uid: 105 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 818 + - uid: 123 + components: + - type: Transform + pos: 1.5,6.5 + parent: 818 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 818 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 818 + - uid: 176 + components: + - type: Transform + pos: 3.5,6.5 + parent: 818 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 818 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 818 + - uid: 193 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 818 + - uid: 199 components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 69 + - type: Transform + pos: -6.5,-1.5 + parent: 818 + - uid: 201 components: - - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 70 + - type: Transform + pos: 5.5,-17.5 + parent: 818 + - uid: 202 components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 71 + - type: Transform + pos: 7.5,-17.5 + parent: 818 + - uid: 203 components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 72 + - type: Transform + pos: 4.5,-15.5 + parent: 818 + - uid: 206 components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 73 + - type: Transform + pos: -9.5,0.5 + parent: 818 + - uid: 208 components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 74 + - type: Transform + pos: -8.5,-1.5 + parent: 818 + - uid: 209 components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 75 + - type: Transform + pos: -7.5,-1.5 + parent: 818 + - uid: 211 components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 76 + - type: Transform + pos: -9.5,-8.5 + parent: 818 + - uid: 212 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 77 + - type: Transform + pos: -8.5,-8.5 + parent: 818 + - uid: 221 components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 78 + - type: Transform + pos: 1.5,-26.5 + parent: 818 + - uid: 222 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 79 + - type: Transform + pos: 2.5,-26.5 + parent: 818 + - uid: 225 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 80 + - type: Transform + pos: -9.5,-7.5 + parent: 818 + - uid: 228 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 81 + - type: Transform + pos: -9.5,2.5 + parent: 818 + - uid: 237 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 82 + - type: Transform + pos: 6.5,-17.5 + parent: 818 + - uid: 238 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 83 + - type: Transform + pos: 4.5,-16.5 + parent: 818 + - uid: 239 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 84 + - type: Transform + pos: 4.5,-17.5 + parent: 818 + - uid: 241 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 85 + - type: Transform + pos: -7.5,-22.5 + parent: 818 + - uid: 244 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 86 + - type: Transform + pos: -9.5,-11.5 + parent: 818 + - uid: 245 components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 87 + - type: Transform + pos: -6.5,-12.5 + parent: 818 + - uid: 246 components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 88 + - type: Transform + pos: -9.5,-12.5 + parent: 818 + - uid: 247 components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 89 + - type: Transform + pos: -7.5,-16.5 + parent: 818 + - uid: 248 components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 90 + - type: Transform + pos: -9.5,-13.5 + parent: 818 + - uid: 249 components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 91 + - type: Transform + pos: -5.5,-25.5 + parent: 818 + - uid: 250 components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 92 + - type: Transform + pos: -7.5,-15.5 + parent: 818 + - uid: 262 components: - - pos: 5.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 93 + - type: Transform + pos: 0.5,-23.5 + parent: 818 + - uid: 263 components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 94 + - type: Transform + pos: 4.5,-23.5 + parent: 818 + - uid: 264 components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 95 + - type: Transform + pos: 3.5,-23.5 + parent: 818 + - uid: 265 components: - - pos: 5.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 96 + - type: Transform + pos: 3.5,-18.5 + parent: 818 + - uid: 266 components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 97 + - type: Transform + pos: 2.5,-25.5 + parent: 818 + - uid: 267 components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 98 + - type: Transform + pos: 0.5,-26.5 + parent: 818 + - uid: 268 components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 99 + - type: Transform + pos: 0.5,-25.5 + parent: 818 + - uid: 269 components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 100 + - type: Transform + pos: -3.5,-24.5 + parent: 818 + - uid: 275 components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 101 + - type: Transform + pos: -3.5,-25.5 + parent: 818 + - uid: 292 components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 102 + - type: Transform + pos: -5.5,-1.5 + parent: 818 + - uid: 326 components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 103 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 818 + - uid: 327 components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 104 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 818 + - uid: 328 components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 105 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 818 + - uid: 329 components: - - pos: 9.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 106 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 818 + - uid: 356 components: - - pos: 9.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 107 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 818 + - uid: 357 components: - - pos: 9.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 108 + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 818 + - uid: 364 components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 109 + - type: Transform + pos: -3.5,-23.5 + parent: 818 + - uid: 366 components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 110 + - type: Transform + pos: -9.5,-6.5 + parent: 818 + - uid: 367 components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 111 + - type: Transform + pos: -4.5,-11.5 + parent: 818 + - uid: 368 components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 112 + - type: Transform + pos: -6.5,-13.5 + parent: 818 + - uid: 369 components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 113 + - type: Transform + pos: -7.5,-23.5 + parent: 818 + - uid: 374 components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 114 + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 818 + - uid: 377 components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 115 + - type: Transform + pos: -3.5,-26.5 + parent: 818 + - uid: 378 components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 116 + - type: Transform + pos: -5.5,-23.5 + parent: 818 + - uid: 379 components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 117 + - type: Transform + pos: -1.5,-23.5 + parent: 818 + - uid: 380 components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 118 + - type: Transform + pos: 2.5,-12.5 + parent: 818 + - uid: 381 components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 119 + - type: Transform + pos: 4.5,-19.5 + parent: 818 + - uid: 382 components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 120 + - type: Transform + pos: 2.5,-23.5 + parent: 818 + - uid: 383 components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 121 + - type: Transform + pos: 4.5,-20.5 + parent: 818 + - uid: 384 components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 122 + - type: Transform + pos: 4.5,-21.5 + parent: 818 + - uid: 388 components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 123 + - type: Transform + pos: -9.5,-9.5 + parent: 818 + - uid: 400 components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 124 + - type: Transform + pos: -9.5,1.5 + parent: 818 + - uid: 402 components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 125 + - type: Transform + pos: -9.5,-1.5 + parent: 818 + - uid: 403 components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 126 + - type: Transform + pos: -4.5,-8.5 + parent: 818 + - uid: 404 components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 127 + - type: Transform + pos: -9.5,-5.5 + parent: 818 + - uid: 405 components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 128 + - type: Transform + pos: -7.5,-8.5 + parent: 818 + - uid: 406 components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 129 + - type: Transform + pos: -6.5,-8.5 + parent: 818 + - uid: 407 components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 130 + - type: Transform + pos: -4.5,-12.5 + parent: 818 + - uid: 408 components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 131 + - type: Transform + pos: -4.5,-9.5 + parent: 818 + - uid: 409 components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 132 + - type: Transform + pos: -7.5,-12.5 + parent: 818 + - uid: 410 components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 133 + - type: Transform + pos: -7.5,-19.5 + parent: 818 + - uid: 411 components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 134 + - type: Transform + pos: -7.5,-18.5 + parent: 818 + - uid: 412 components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 135 + - type: Transform + pos: -7.5,-17.5 + parent: 818 + - uid: 413 components: - - pos: 17.5,3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 136 + - type: Transform + pos: -2.5,-26.5 + parent: 818 + - uid: 414 components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 137 + - type: Transform + pos: -5.5,-26.5 + parent: 818 + - uid: 415 components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 138 + - type: Transform + pos: -5.5,-24.5 + parent: 818 + - uid: 416 components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 139 + - type: Transform + pos: -1.5,-24.5 + parent: 818 + - uid: 417 components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 140 + - type: Transform + pos: -6.5,-23.5 + parent: 818 + - uid: 421 components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 141 + - type: Transform + pos: -5.5,-12.5 + parent: 818 + - uid: 427 components: - - pos: 13.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 142 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 818 + - uid: 428 components: - - pos: 13.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 143 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 818 + - uid: 437 components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 144 + - type: Transform + pos: -7.5,-14.5 + parent: 818 + - uid: 438 components: - - pos: 15.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 145 + - type: Transform + pos: -9.5,-10.5 + parent: 818 + - uid: 439 components: - - pos: 16.5,5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 146 + - type: Transform + pos: -6.5,-18.5 + parent: 818 + - uid: 440 components: - - pos: 13.5,7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 147 + - type: Transform + pos: -7.5,-20.5 + parent: 818 + - uid: 442 components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 148 + - type: Transform + pos: -7.5,-13.5 + parent: 818 + - uid: 450 components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 149 + - type: Transform + pos: -4.5,-26.5 + parent: 818 + - uid: 451 components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 150 + - type: Transform + pos: -0.5,-26.5 + parent: 818 + - uid: 452 components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 151 + - type: Transform + pos: 4.5,-18.5 + parent: 818 + - uid: 453 components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 152 + - type: Transform + pos: -1.5,-26.5 + parent: 818 + - uid: 455 components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 153 + - type: Transform + pos: 3.5,-12.5 + parent: 818 + - uid: 460 components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 155 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 818 + - uid: 523 components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 156 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 818 + - uid: 532 components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 157 + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 818 + - uid: 533 components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 158 + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 818 + - uid: 534 components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 159 + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 818 + - uid: 535 components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 160 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 818 + - uid: 542 components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 161 + - type: Transform + pos: 0.5,-8.5 + parent: 818 + - uid: 543 components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 162 + - type: Transform + pos: -0.5,-8.5 + parent: 818 + - uid: 544 components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 163 + - type: Transform + pos: 1.5,-8.5 + parent: 818 + - uid: 545 components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 164 + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 818 + - uid: 551 components: - - pos: 9.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 165 + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 552 components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 166 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 818 + - uid: 553 components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 167 + - type: Transform + pos: -3.5,-12.5 + parent: 818 + - uid: 557 components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 168 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 818 + - uid: 558 components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 169 + - type: Transform + pos: -8.5,-14.5 + parent: 818 + - uid: 562 components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 170 + - type: Transform + pos: -1.5,-8.5 + parent: 818 + - uid: 563 components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 171 + - type: Transform + pos: -1.5,-25.5 + parent: 818 + - uid: 566 components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 172 + - type: Transform + pos: -9.5,-14.5 + parent: 818 + - uid: 575 components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 173 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 818 + - uid: 576 components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 174 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 818 + - uid: 577 components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 175 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 818 + - uid: 578 components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 176 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 818 + - uid: 579 components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 177 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 818 + - uid: 585 components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 178 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 818 + - uid: 586 components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 179 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 818 + - uid: 589 components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 182 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 818 + - uid: 590 components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 184 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 818 + - uid: 593 components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 185 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 818 + - uid: 594 components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 186 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 818 + - uid: 663 components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 187 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 818 + - uid: 664 components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 188 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 818 + - uid: 666 components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 189 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 818 + - uid: 669 components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 190 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 818 + - uid: 672 components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 191 + - type: Transform + pos: 3.5,-13.5 + parent: 818 + - uid: 674 components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 207 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 818 + - uid: 677 components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 216 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 818 + - uid: 678 components: - - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 231 + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 818 + - uid: 683 components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 232 + - type: Transform + pos: 0.5,-12.5 + parent: 818 + - uid: 684 components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 234 + - type: Transform + pos: -2.5,-12.5 + parent: 818 + - uid: 685 components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 235 + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 818 + - uid: 686 components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 236 + - type: Transform + pos: -0.5,-12.5 + parent: 818 + - uid: 687 components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 237 + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 818 + - uid: 688 components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 238 + - type: Transform + pos: 2.5,-24.5 + parent: 818 + - uid: 689 components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 239 + - type: Transform + pos: -7.5,-21.5 + parent: 818 + - uid: 711 components: - - pos: 21.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 264 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 818 + - uid: 775 components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 295 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 818 + - uid: 846 components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 304 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 818 + - uid: 854 components: - - pos: 26.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 307 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 818 + - uid: 855 components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 336 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 818 + - uid: 870 components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 435 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 818 + - uid: 871 components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 445 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 818 + - uid: 873 components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 446 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 818 + - uid: 874 components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 447 + - type: Transform + pos: -9.5,5.5 + parent: 818 + - uid: 876 components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 449 + - type: Transform + pos: 2.5,-8.5 + parent: 818 + - uid: 879 components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 468 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 818 + - uid: 885 components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 471 + - type: Transform + pos: -9.5,3.5 + parent: 818 + - uid: 886 components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 472 + - type: Transform + pos: -9.5,4.5 + parent: 818 + - uid: 887 components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 473 + - type: Transform + pos: 3.5,-8.5 + parent: 818 + - uid: 894 components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 475 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 818 + - uid: 897 components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 476 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 818 + - uid: 898 components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 489 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 818 + - uid: 904 components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 490 + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 818 + - uid: 905 components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 491 + - type: Transform + pos: -9.5,6.5 + parent: 818 + - uid: 910 components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 492 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 818 + - uid: 911 components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 494 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 818 + - uid: 1623 components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 517 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 818 + - uid: 1658 components: - - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 518 + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 818 + - uid: 1659 components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 957 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 818 + - uid: 1677 components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 958 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 818 + - uid: 1679 components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 959 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 818 + - uid: 1684 components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 960 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 818 + - uid: 1685 components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - missingComponents: - - Destructible - - uid: 961 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 818 +- proto: WallRiveted + entities: + - uid: 45 components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 962 + - uid: 53 components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 963 + - uid: 65 components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 964 + - uid: 66 components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 965 + - uid: 68 components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1025 + - uid: 69 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1026 + - uid: 71 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1027 + - uid: 72 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,4.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1028 + - uid: 73 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1029 + - uid: 74 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1030 + - uid: 89 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1031 + - uid: 90 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1032 + - uid: 91 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1033 + - uid: 92 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1034 + - uid: 95 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1035 + - uid: 96 components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1036 + - uid: 168 components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1037 + - uid: 182 components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1038 + - uid: 183 components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1039 + - uid: 187 components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1040 + - uid: 188 components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1041 + - uid: 189 components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1042 + - uid: 190 components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1043 + - uid: 191 components: - - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1044 + - uid: 194 components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1045 + - uid: 195 components: - - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeGreenFilled - entities: - - uid: 371 + - uid: 196 components: - - pos: 14.5,10.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeWhiteFilled - entities: - - uid: 366 + - uid: 197 components: - - pos: 14.5,4.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeYellowFilled - entities: - - uid: 370 + - uid: 198 components: - - pos: 14.5,7.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: Windoor - entities: - - uid: 359 + - uid: 200 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 382 + - uid: 204 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1 - type: Transform + - type: Transform + pos: 10.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WindoorSecureArmoryLocked - entities: - - uid: 310 + - uid: 205 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: Window - entities: - - uid: 56 + - uid: 210 components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform + - type: Transform + pos: 9.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 57 + - uid: 223 components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform + - type: Transform + pos: 12.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 58 + - uid: 229 components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 59 + - uid: 230 components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform + - type: Transform + pos: 12.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 60 + - uid: 231 components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 61 + - uid: 233 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 62 + - uid: 236 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 63 + - uid: 242 components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 10.5,-30.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 64 + - uid: 258 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 469 + - uid: 259 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 484 + - uid: 261 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WindowDirectional - entities: - - uid: 22 + - uid: 270 components: - - pos: 23.5,-7.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 30 + - uid: 271 components: - - pos: 21.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 35 + - uid: 272 components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 9.5,-19.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 37 + - uid: 273 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-18.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 41 + - uid: 274 components: - - pos: 20.5,-7.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-19.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 46 + - uid: 290 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 49 + - uid: 300 components: - - pos: 21.5,-7.5 - parent: 1 - type: Transform + - type: Transform + pos: 10.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 199 + - uid: 301 components: - - rot: -1.5707963267948966 rad - pos: 20.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 13.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 205 + - uid: 370 components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform + - type: Transform + pos: 8.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 215 + - uid: 371 components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-10.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 218 + - uid: 385 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 1 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 247 + - uid: 390 components: - - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 9.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 248 + - uid: 391 components: - - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 250 + - uid: 393 components: - - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 251 + - uid: 419 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-11.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 252 + - uid: 420 components: - - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 261 + - uid: 424 components: - - pos: 22.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 262 + - uid: 425 components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 278 + - uid: 426 components: - - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 279 + - uid: 446 components: - - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 14.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 287 + - uid: 454 components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 12.5,-30.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 311 + - uid: 458 components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 312 + - uid: 464 components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 313 + - uid: 531 components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 314 + - uid: 546 components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 315 + - uid: 555 components: - - pos: 0.5,2.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 316 + - uid: 567 components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 317 + - uid: 571 components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 318 + - uid: 574 components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 319 + - uid: 580 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 320 + - uid: 618 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 321 + - uid: 637 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 322 + - uid: 667 components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 323 + - uid: 675 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 324 + - uid: 676 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 325 + - uid: 679 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 326 + - uid: 681 components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: -0.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 327 + - uid: 734 components: - - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 337 + - uid: 751 components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 378 + - uid: 752 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 379 + - uid: 753 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - type: Transform + - type: Transform + pos: 16.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 380 + - uid: 767 components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform + - type: Transform + pos: 15.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 381 + - uid: 804 components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 436 + - uid: 878 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 438 + - uid: 882 components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 440 + - uid: 884 components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 441 + - uid: 901 components: - - pos: 23.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 450 + - uid: 902 components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 457 + - uid: 1352 components: - - pos: 20.5,6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 467 + - uid: 1369 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 480 + - uid: 1706 components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 481 + - uid: 1709 components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-27.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 514 + - uid: 1713 components: - - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 516 + - uid: 1714 components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 818 missingComponents: + - Damageable - Destructible +- proto: WardrobeAtmospherics + entities: + - uid: 956 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 818 +- proto: WardrobeMixedFilled + entities: + - uid: 308 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 818 +- proto: WardrobeWhiteFilled + entities: + - uid: 1182 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 818 +- proto: WarningAir + entities: + - uid: 276 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 818 +- proto: WaterCooler + entities: + - uid: 1624 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 818 + - uid: 1627 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 818 +- proto: Windoor + entities: + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 818 + - uid: 741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 818 + - uid: 1390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 818 + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 818 +- proto: WindoorSecure + entities: + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 818 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 735 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 818 + - uid: 740 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 818 +- proto: Window + entities: + - uid: 55 + components: + - type: Transform + pos: 12.5,6.5 + parent: 818 + - uid: 63 + components: + - type: Transform + pos: 12.5,10.5 + parent: 818 + - uid: 77 + components: + - type: Transform + pos: 7.5,6.5 + parent: 818 + - uid: 79 + components: + - type: Transform + pos: 11.5,10.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 82 + components: + - type: Transform + pos: 6.5,6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 84 + components: + - type: Transform + pos: 11.5,6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 132 + components: + - type: Transform + pos: 7.5,10.5 + parent: 818 + - uid: 278 + components: + - type: Transform + pos: 6.5,10.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 818 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 3 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 818 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 818 + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 818 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 3 +- proto: WindowDirectional + entities: + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 818 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 818 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 818 + - uid: 1340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 818 + - uid: 1343 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 818 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 818 + - uid: 1372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 818 + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 818 + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 818 + - uid: 1377 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 818 + - uid: 1378 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 818 + - uid: 1379 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 818 + - uid: 1380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 818 + - uid: 1383 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 818 + - uid: 1385 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 818 + - uid: 1386 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 818 + - uid: 1387 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 818 + - uid: 1388 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 818 + - uid: 1447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 818 + - uid: 1448 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 818 + - uid: 1742 + components: + - type: MetaData + name: зеркало + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 818 + - uid: 1743 + components: + - type: MetaData + name: зеркало + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 818 +- proto: WindowFrostedDirectional + entities: + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 818 + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 818 +- proto: WindowReinforcedDirectional + entities: + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 818 + - uid: 1321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 818 + - uid: 1687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 818 + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 818 ... From 51059ac9f5dc478ef2bb9877df6230185a455a9a Mon Sep 17 00:00:00 2001 From: Schrodinger71 Date: Sun, 21 Jul 2024 12:48:20 +0300 Subject: [PATCH 94/97] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20TranslatorSyst?= =?UTF-8?q?em=20=D0=9C=D0=B5=D0=BD=D1=8F=D0=B5=D0=BC=20SetPowerCellDrawEna?= =?UTF-8?q?bled=20=D0=BD=D0=B0=20=D0=BD=D0=BE=D0=B2=D1=8B=D0=B9=20=D0=BC?= =?UTF-8?q?=D0=B5=D1=82=D0=BE=D0=B4=20SetDrawEnabled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Server/ADT/Language/TranslatorSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Server/ADT/Language/TranslatorSystem.cs b/Content.Server/ADT/Language/TranslatorSystem.cs index e19b2b29d71..7e3b8cfd0a7 100644 --- a/Content.Server/ADT/Language/TranslatorSystem.cs +++ b/Content.Server/ADT/Language/TranslatorSystem.cs @@ -162,7 +162,7 @@ private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponen isEnabled &= hasPower; UpdateBoundIntrinsicComp(component, intrinsic, isEnabled); component.Enabled = isEnabled; - _powerCell.SetPowerCellDrawEnabled(translator, isEnabled); + _powerCell.SetDrawEnabled(translator, isEnabled); _language.EnsureValidLanguage(holder); UpdatedLanguages(holder); @@ -171,7 +171,7 @@ private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponen { // This is a standalone translator (e.g. lying on the ground). Simply toggle its state. component.Enabled = !component.Enabled && hasPower; - _powerCell.SetPowerCellDrawEnabled(translator, !component.Enabled && hasPower); + _powerCell.SetDrawEnabled(translator, !component.Enabled && hasPower); } OnAppearanceChange(translator, component); @@ -188,7 +188,7 @@ private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponen private void OnPowerCellSlotEmpty(EntityUid translator, HandheldTranslatorComponent component, PowerCellSlotEmptyEvent args) { component.Enabled = false; - _powerCell.SetPowerCellDrawEnabled(translator, false); + _powerCell.SetDrawEnabled(translator, false); OnAppearanceChange(translator, component); if (Transform(translator).ParentUid is { Valid: true } holder && EntityManager.HasComponent(holder)) From 22ec224b7d0a59bbcad248a2247e032064f38f6a Mon Sep 17 00:00:00 2001 From: Schrodinger71 Date: Sun, 21 Jul 2024 13:24:42 +0300 Subject: [PATCH 95/97] Fix YAml Linter? --- .../Prototypes/ADT/Entities/Objects/Device/translators.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml b/Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml index 97280e5348e..76929a0b173 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml @@ -46,6 +46,8 @@ components: - type: PowerCellDraw drawRate: 1 + - type: ItemToggle + onUse: false # above component does the toggling - type: entity id: TranslatorEmtpy From 9ed5aa9db9da88dfffae66ad3e303a265b6a857e Mon Sep 17 00:00:00 2001 From: Schrodinger71 Date: Fri, 26 Jul 2024 23:04:34 +0300 Subject: [PATCH 96/97] Fix YAml Linter --- Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml index 03ad2a0bff0..a2edb13f52d 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml @@ -20,7 +20,7 @@ - type: entity id: ActionToggleMagbootsERT - parent: ActionBaseToggleMagboots + parent: ActionToggleMagboots noSpawn: true components: - type: InstantAction From cf8279f393b0e6696661879c9d105ecddd3329d6 Mon Sep 17 00:00:00 2001 From: Schrodinger71 Date: Fri, 26 Jul 2024 23:22:33 +0300 Subject: [PATCH 97/97] maybe Fix --- Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml index a2edb13f52d..f2d42ba2717 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml @@ -16,7 +16,8 @@ - type: StaticPrice price: 2000 - type: Magboots - toggleAction: ActionToggleMagbootsERT + - type: ToggleClothing + action: ActionToggleMagbootsERT - type: entity id: ActionToggleMagbootsERT